Deposit payment details

This webhook is responsible for sending notifications containing deposit payment data.

When configured to receive this webhook, for every deposit that is completed, the system will automatically send a notification with the payer's bank details to the registered URL.

Authentication

It supports authentication via the x-pixer-api-key header, with a value provided by Pay2free.

● x-pixer-api-key: API_KEY

Example: x-pixer-api-key: xyz

--header 'x-pixer-api-key: <API_KEY>' \
--header 'Content-Type: application/json' \
--date '{
  "ispb": "XXX",
  "branch": "XXX",
  "account": "XXX",
  "accountType": "XXX",
  "payerCpf": "XXX",
  "externalId": "XXX",
  "txid": "XXX"
}' 

Callback payload

Webhook payload example:  
{
  "ispb": "XXX",
  "branch": "XXX",
  "account": "XXX",
  "accountType": "XXX",
  "payerCpf": "XXX",
  "externalId": "XXX",
  "txid": "XXX"
}