Create transaction

POST https://api.agilizepay.com/pix

SUMMARY:

access_token= Access token code generated by authentication

CLIENT_ID = Your client_id can be found within the dashboard.

header
{ 
    'accept': 'application/json',
    'client_id': '{CLIENT_ID}',
    'Authorization': "Bearer {access_token}"
}
Body Param
{
  "code": "string",
  "amount": 0,
  "email": "string",
  "document": "string",
  "url": "string"
}

Webhook PAYLOADPOST

header
{
    'client_id': '{CLIENT_ID}'
}
🟒 200 - Successfully

Response body

πŸ”΄400 - Bad request

πŸ”΄401 - Unauthorized

πŸ”΄500 - Internal server error

Last updated