Get callback
Returns the detail of a callback, with the body sent, the response received and the response time.
curl -X GET "https://api.payzu.processamento.com/v1/user/callbacks/cm3w7l9v20001q8f2u6c1y4be" \ -H "Authorization: Bearer {{token}}"fetch("https://api.payzu.processamento.com/v1/user/callbacks/cm3w7l9v20001q8f2u6c1y4be", { method: "GET", headers: { "Authorization": "Bearer {{token}}" }})import requestsurl = "https://api.payzu.processamento.com/v1/user/callbacks/cm3w7l9v20001q8f2u6c1y4be"response = requests.request("GET", url, headers = { "Authorization": "Bearer {{token}}"})print(response.text)