Get Full Stocks

Get Full Stocks of the User. This endpoint is used to get the full stocks (with check codes) of the user. It will return the full stocks of the user. Note: Pin must be set first. Attach the pin in the header as `x-stock-pin`.

POST
/stock/full
/stock/full

The Authorization access token

Authorization

Authorization
Required
Bearer <token>

In: header

Header Parameters

x-stock-pin
Required
string

curl -X POST "https://api.t4b.top/stock/full" \
  -H "x-stock-pin: string" \
  -H "Authorization: Bearer <token>"

Ok

{
  "data": {
    "stocks": [
      {
        "game": "string",
        "checkCode": "string",
        "createdAt": "2019-08-24"
      }
    ]
  },
  "statusCode": 200
}