Get Order

GET
/order/{orderId}
/order/{orderId}

The Authorization access token

Authorization

Authorization
Required
Bearer <token>

In: header

Path Parameters

orderId
Required
string

curl -X GET "https://api.t4b.top/order/string" \
  -H "Authorization: Bearer <token>"

Ok

{
  "data": {
    "order": {
      "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"
    }
  },
  "statusCode": 200
}