返回单笔待审批存款的明细。
curl -X GET "https://api.payzu.processamento.com/v1/user/deposit-pending/cm3w7r1u50005q8f2m1g6c8fj" \ -H "Authorization: Bearer {{token}}"fetch("https://api.payzu.processamento.com/v1/user/deposit-pending/cm3w7r1u50005q8f2m1g6c8fj", { method: "GET", headers: { "Authorization": "Bearer {{token}}" }})import requestsurl = "https://api.payzu.processamento.com/v1/user/deposit-pending/cm3w7r1u50005q8f2m1g6c8fj"response = requests.request("GET", url, headers = { "Authorization": "Bearer {{token}}"})print(response.text)