返回某一笔收款的明细
GET
https://api.payzu.io/v1/charges/{chargeId}Responses
curl -X GET "https://api.payzu.io/v1/charges/string" \ -H "Authorization: Bearer {{token}}"fetch("https://api.payzu.io/v1/charges/string", { method: "GET", headers: { "Authorization": "Bearer {{token}}" }})import requestsurl = "https://api.payzu.io/v1/charges/string"response = requests.request("GET", url, headers = { "Authorization": "Bearer {{token}}"})print(response.text)200