Orders
Orders API
Order#create
POST https://api.vidi.cc/api/v2/orders
This endpoint allows you to create new orders.
Headers
Name
Type
Description
X-Api-Key
string
Authentication token based from the user_api_key
Request Body
Name
Type
Description
big_member_id
string
e.g "123456789321456"
payment_method
string
e.g Adyen
{
"data": {
"id": "2951",
"type": "order",
"attributes": {
"id": 2951,
"created_at": "2018-08-17T15:46:43.651+08:00",
"updated_at": "2018-08-17T15:46:43.651+08:00",
"status": "failure",
"message": null,
"payment_method": "Adyen",
"payment_status": "pending",
"big_member_id": "1234567893214",
"offer_id": 1024
}
}
}Last updated