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

Authorizations

Authorization
string
header
required

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

Response

User accounts retrieved successfully

accounts
object[]