查询已发送的回调
返回某个 webhook 已发送回调的投递明细。
Confira nosso tutorial
GET
https://api.payzu.processamento.com/v1/user/webhooks/{id}/sent/{callbackId}Responses
curl -X GET "https://api.payzu.processamento.com/v1/user/webhooks/cm3w7k1t40000q8f2r5b9x3ad/sent/cm3w7l9v20001q8f2u6c1y4be" \ -H "Authorization: Bearer {{token}}"fetch("https://api.payzu.processamento.com/v1/user/webhooks/cm3w7k1t40000q8f2r5b9x3ad/sent/cm3w7l9v20001q8f2u6c1y4be", { method: "GET", headers: { "Authorization": "Bearer {{token}}" }})import requestsurl = "https://api.payzu.processamento.com/v1/user/webhooks/cm3w7k1t40000q8f2r5b9x3ad/sent/cm3w7l9v20001q8f2u6c1y4be"response = requests.request("GET", url, headers = { "Authorization": "Bearer {{token}}"})print(response.text)