Get Orders(Query)

GET
/order
/order

The Authorization access token

Authorization

Authorization
Required
Bearer <token>

In: header

Query Parameters

offset
Required
string

limit
Required
string

orderIdstring

userIdstring

gamestring

Value in: "FREE_FIRE" | "FREE_FIRE_SHELL" | "FREE_FIRE_SG" | "FREE_FIRE_ID"

uidstring

statestring

curl -X GET "https://api.t4b.top/order?offset=string&limit=string&orderId=string&userId=string&game=FREE_FIRE&uid=string&state=string" \
  -H "Authorization: Bearer <token>"

Ok

{
  "data": {
    "orders": [
      {
        "game": "FREE_FIRE",
        "amount": "1000",
        "uid": "123456",
        "callbackUrl": "http://localhost:3000/callback",
        "id": 1,
        "userId": 1,
        "node_id": 1,
        "state": 0,
        "createdAt": "2021-09-29T08:24:00.000Z"
      }
    ],
    "totalCount": 1
  },
  "statusCode": 200
}