返回单条对账单记录的明细。
curl -X GET "https://api.payzu.processamento.com/v1/user/bank-statements/cm3w7q8s10004q8f2k9f5b7eh" \ -H "Authorization: Bearer {{token}}"fetch("https://api.payzu.processamento.com/v1/user/bank-statements/cm3w7q8s10004q8f2k9f5b7eh", { method: "GET", headers: { "Authorization": "Bearer {{token}}" }})import requestsurl = "https://api.payzu.processamento.com/v1/user/bank-statements/cm3w7q8s10004q8f2k9f5b7eh"response = requests.request("GET", url, headers = { "Authorization": "Bearer {{token}}"})print(response.text)