Process a Push Notification
Our system sends an HTTP POST request to the push URL. The JSON body contains information about the object and the event it was generated for.
POST /order/payment/status-push?order=OID_100716
Host: shop.example.com
Content-Type: application/json
Accept: */*
...
{
"object"
:
"event.pushes"
,
"id"
:
"evt_d7a9cbd91c125ae409398b4e0e3199be"
,
"created"
:
"2021-06-21T08:30:28+02:00"
,
"target"
:
"payment.transactions"
,
"type"
:
"changed"
,
"data"
: [
{
"object"
:
"payment.transactions"
,
"id"
:
"PCI_2FY48DT0P2X6G636N5QK64UK2ADZAZ"
}
]
}
The message is sent repeatedly until your system responds with 200 OK. After 24 hours without such acknowledgement, our system discards the notification for this event.
These are the details of the notification:
Field |
Type |
Meaning |
object |
string |
Object type (always "event.pushes") |
id |
string |
Object ID of the push event |
created |
string |
Time of the event |
target |
string |
Object type:
|
type |
string |
Event type:
|
data |
array |
Related data objects. There should be only one object /data/0. |
Every related object (data) has these fields:
Field |
Type |
Meaning |
object |
string |
Object type; same as target (see above) |
id |
string |
Object ID |
Now you would read the related data object.