History

POST https://api.agilizepay.com/pix/payment-history

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}"
}
body
{ 
    [required]
    'init': 'string - datetime yyyy-MM-dd HH:mm',
    
    [required]
    'end': 'string - datetime yyyy-MM-dd HH:mm'
}
🟒 200 - Successfully

Response body

[{
 date = 'string datetime yyyy-MM-dd HH:mm',
 pixKey = string,
 name = string,
 document = string,
 txid = string,
 codUser = string,
 pixType = string,
 situation = string,
 amount = float,
 end2end = string,
 fee = float
}]
πŸ”΄400 - Bad request

πŸ”΄401 - Unauthorized

πŸ”΄500 - Internal server error

Last updated