Get Accounts

Get All Stock Account(SHELL ACCOUNT's) of the User available.

GET
/stock/account
/stock/account

The Authorization access token

Authorization

Authorization
Required
Bearer <token>

In: header

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

Ok

{
  "data": {
    "stockAccounts": [
      {
        "id": 0,
        "owner": 0,
        "game": "FREE_FIRE_SHELL",
        "active": true,
        "accountType": "GARENA_SHELL",
        "credentials": {
          "username": "string"
        },
        "region": "MY",
        "lastBalance": 0,
        "createdAt": "2019-08-24T14:15:22Z",
        "updatedAt": "2019-08-24T14:15:22Z"
      }
    ]
  },
  "statusCode": 200
}