Get withdraw

GET https://api.agilizepay.com/pix/payment/{txid}

SUMMARY:

access_token= Access token code generated by authentication

CLIENT_ID = Your client_id can be found within the dashboard.

CLIENT_SECRET = Your client_secret can be found within the dashboard.

header
{ 
    'client_id: {CLIENT_ID}',
    'client_secret: {CLIENT_SECRET}',
    'accept': 'application/json',
    'Authorization': "Bearer {access_token}"
}
Query Params
{ 
    [required]
    txid { get; set; }
}
🟒 200 - Successfully

Response body

{
    'txid' = string, 
    'auth' = string, 
    'status' = "pago", 
    'EndToEnd' = string, 
    'date' = "2025/03/22 18:20",
    "amount": 10.2,
    "tax_amount": 0.1
}
πŸ”΄400 - Bad request

πŸ”΄401 - Unauthorized

πŸ”΄500 - Internal server error

Last updated