GET
/
v1
/
users
/
me
/
accounts
Get User Accounts
curl --request GET \
  --url https://api.tradearies.dev/v1/users/me/accounts \
  --header 'Authorization: Bearer <token>' \
  --header 'X-API-Key: <api-key>'
{
  "accounts": [
    {
      "id": 123,
      "fdid": "<string>",
      "apex_id": "<string>",
      "apex_account_id": "<string>",
      "sterling_account_id": "<string>",
      "status": "<string>",
      "apex_status": "<string>",
      "is_sim": true,
      "primary_user_id": 123,
      "account_number": "<string>",
      "type": "<string>",
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z"
    }
  ]
}

Authorizations

X-API-Key
string
header
required
Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200
application/json

User accounts retrieved successfully

The response is of type object.