# Orders
# Order Created
| Payload | Type | Description |
|---|---|---|
| event | string | Name of the event that occurred (OrderCreated) |
| number | integer | The n-th order you have received eg 1 => 1st order |
| id_order | string | A unique identifier for each order |
| amount | integer | Cost of the order in cents |
| currency | string | Currency used to pay for the order. Denotes amount. |
| date | date | When the order occurred |
| status | string | Status of the order. Eg. "completed", "error", "refunded" |
# Order Updated
| Payload | Type | Description |
|---|---|---|
| event | string | Name of the event that occurred (OrderUpdated) |
| number | integer | The n-th order you have received eg 1 => 1st order |
| id_order | string | A unique identifier for each order |
| amount | integer | Cost of the order in cents |
| currency | string | Currency used to pay for the order. Denotes amount. |
| date | date | When the order was updated |
| status | string | Status of the order. Eg. "completed", "error", "refunded" |