POST
/
identity
/
account-members
Add Account Members
curl --request POST \
  --url https://api.paxos.com/v2/identity/account-members \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "account_id": "79c27a0e-46a2-4276-9769-e1ebc055fa72",
  "members": [
    {
      "identity_id": "11a3122a-0c50-4950-9934-2ad48a782b78",
      "roles": [
        "FINANCIAL_ADVISOR"
      ]
    },
    {
      "identity_id": "08ba6b70-bcc0-4e4a-a67f-1d28842dedfc",
      "roles": [
        "AUTHORIZED_USER"
      ]
    }
  ]
}'
{
  "account_id": "79c27a0e-46a2-4276-9769-e1ebc055fa72",
  "members": [
    {
      "identity_id": "11a3122a-0c50-4950-9934-2ad48a782b78",
      "roles": [
        "FINANCIAL_ADVISOR"
      ],
      "id": "01516495-031a-4c6c-b277-5734ea9cb99c"
    },
    {
      "identity_id": "08ba6b70-bcc0-4e4a-a67f-1d28842dedfc",
      "roles": [
        "AUTHORIZED_USER"
      ],
      "id": "1039d953-808f-495f-902d-c15480942885"
    }
  ]
}

Authorizations

Authorization
string
header
required

Paxos APIs use OAuth 2 with the client credentials grant flow.

Token URLs:

Learn more in the API credentials guide →

Body

application/json

Response

200 - application/json

A successful response.

The response is of type object.