按 webhook 重新发送回调
将某个 webhook 上投递失败的回调排队重发。
Confira nosso tutorial
POST
https://api.payzu.processamento.com/v1/user/callbacks/resend/webhook/{webhookId}Responses
curl -X POST "https://api.payzu.processamento.com/v1/user/callbacks/resend/webhook/cm3w7k1t40000q8f2r5b9x3ad" \ -H "Authorization: Bearer {{token}}"fetch("https://api.payzu.processamento.com/v1/user/callbacks/resend/webhook/cm3w7k1t40000q8f2r5b9x3ad", { method: "POST", headers: { "Authorization": "Bearer {{token}}" }})import requestsurl = "https://api.payzu.processamento.com/v1/user/callbacks/resend/webhook/cm3w7k1t40000q8f2r5b9x3ad"response = requests.request("POST", url, headers = { "Authorization": "Bearer {{token}}"})print(response.text)