Create Orders
This API is used to perform transactions, this transaction will use your account balance.
POST /api/v1/orders
Headers
Name
Value
Content-Type
application/json
API_SECRET
your secret key
API_KEY
your api key
Body
Name
Type
Description
item_id
int
product id
target
string
id player or server id, join with comma if target is more than 1
string
your email, for receive information orders
Response
{
"status": true,
"message": "SUCCESS",
"data": {
"order_id": "EG202302287"
}
}{
"status": false,
"message": "unrecognized API data",
"data": []
}Last updated