List pending deposits
Returns the recorded incoming Pix that have not been credited to the account yet.
curl -X GET "https://api.payzu.processamento.com/v1/user/deposit-pending" \ -H "Authorization: Bearer {{token}}"fetch("https://api.payzu.processamento.com/v1/user/deposit-pending", { method: "GET", headers: { "Authorization": "Bearer {{token}}" }})import requestsurl = "https://api.payzu.processamento.com/v1/user/deposit-pending"response = requests.request("GET", url, headers = { "Authorization": "Bearer {{token}}"})print(response.text)