Callback notifications

Callback notifications are used to notify merchants about changes to the payment status. The notification is only sent when the Callback URL is configured in the Shop settings.

When callback is received you can call the get payment information endpoint to receive up to date details about the payment. No response body is expected in response to the notifications.

Failure to deliver the notification will trigger retries with an increasing delay - after 1 second, 5 minutes, 1 hour, 1 day, 2 days, 3 days. If all retry attempts are unsuccessful no further requests will be made.

Callback notification

post

Notifies the merchant about payment status changes.

Header parameters
X-Request-Idstring · uuidRequired

ID of the request, unique to the call, as determined by the initiating party

Body
typestring · enumRequired

The type of the notification, possible values:

  • PAYMENT - notification about payment status changes
Possible values:
paymentIdstring · max: 64Optional

Unique ID of the payment

paymentStatusstring · enumOptional

The new status of the payment

Possible values:
Responses
2XX
Notification received. Any other response code will be treated as a failure and the notification will be retried at a later time.
post
POST / HTTP/1.1
Host: hostname
X-Request-Id: 123e4567-e89b-12d3-a456-426614174000
Content-Type: application/json
Accept: */*
Content-Length: 75

{
  "type": "PAYMENT",
  "paymentId": "text",
  "paymentStatus": "SENT_FOR_PROCESSING"
}
2XX

Notification received.

Any other response code will be treated as a failure and the notification will be retried at a later time.

No content

Last updated

Was this helpful?