返回单个回调的明细,包含发送的内容、收到的响应和响应耗时。
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)