Skip to main content
POST
/
v1
/
payments
/
notifications
Notify incoming payment
curl --request POST \
  --url https://api-sandbox.superbank.com/v1/payments/notifications \
  --header 'Content-Type: application/json' \
  --header 'X-Api-Key: <api-key>' \
  --data '
{
  "type": "INCOMING_PAYMENT",
  "referenceId": "ref_abc123def456",
  "rail": "WIRE"
}
'
{}

Authorizations

X-Api-Key
string
header
required

Body

application/json
type
enum<string>
required

Notification type

Available options:
INCOMING_PAYMENT
Example:

"INCOMING_PAYMENT"

referenceId
string
required

Reference ID from the payment creation response

Example:

"ref_abc123def456"

rail
enum<string>
required

Payment rail used for the incoming fiat payment

Available options:
WIRE
Example:

"WIRE"

Response

Notification processed successfully, transfer initiated

The response is of type object.