返回已登记但尚未入账的 Pix 收款记录。
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)