All account groups related paths
/users/{user_id}/account_groupsLists the account groups of a user specified by ID.
sortstringSort the result by created_at, updated_at.
orderstringSort order of the result list if the sort parameter is specified. Use ASC for ascending or DESC for descending sort order.
offsetintUse the offset argument to specify where in the list of results to start when returning items for a particular query.
limitintUse the limit argument to specify the maximum number of items returned.
OK
{
"meta": {
"offset": 0,
"limit": 100,
"count": 1,
"total_count": 1,
"sort": "id",
"order": "ASC"
},
"data": [
{
"id": "9d95820d-4333-46b6-98de-04ab7512e76f",
"created_at": "2020-08-24T14:15:22Z",
"updated_at": "2020-08-24T14:15:22Z",
"type": "PERSONAL",
"status": "ACTIVE",
"users": [
{
"id": "9c36af78-91a0-4174-a515-fc81214e3dab",
"type": "OWNER"
}
],
"securities_account_number": "123456789"
}
]
}/account_groups/{account_group_id}Returns the account group specified by its ID.
account_group_idstringrequired
Account group unique identifier.
OK
{
"id": "9d95820d-4333-46b6-98de-04ab7512e76f",
"created_at": "2020-08-24T14:15:22Z",
"updated_at": "2020-08-24T14:15:22Z",
"type": "PERSONAL",
"status": "ACTIVE",
"users": [
{
"id": "413715f2-5401-4b97-8055-034a6b879f8c",
"type": "OWNER"
}
],
"securities_account_number": "123456789"
}/account_groups/{account_group_id}Initiates the closure request for an account group specified by its ID.
closure_reasonstringRecords the reason for the account group closure.
notification_onlybooleanIndicates whether the request notifies of an intended future closing.
The request has been successfully accepted and will be processed asynchronously.
Empty response
/account_groupsReturns a list of all account groups.
sortstringSort the result by created_at, updated_at.
orderstringSort order of the result list if the sort parameter is specified. Use ASC for ascending or DESC for descending sort order.
offsetintUse the offset argument to specify where in the list of results to start when returning items for a particular query.
limitintUse the limit argument to specify the maximum number of items returned.
OK
{
"meta": {
"offset": 0,
"limit": 100,
"count": 1,
"total_count": 1,
"sort": "created_at",
"order": "ASC"
},
"data": [
{
"id": "9d95820d-4333-46b6-98de-04ab7512e76f",
"created_at": "2020-08-24T14:15:22Z",
"updated_at": "2020-08-24T14:15:22Z",
"type": "PERSONAL",
"status": "ACTIVE",
"users": [
{
"id": "9c36af78-91a0-4174-a515-fc81214e3dab",
"type": "OWNER"
}
],
"securities_account_number": "123456789"
}
]
}/account_groupsCreates an account group.
user_idstringrequired
User unique identifier.
typestringrequired
Account group type.
{
"user_id": "413715f2-5401-4b97-8055-034a6b879f8c",
"type": "PERSONAL"
}Account group created.
{
"id": "9d95820d-4333-46b6-98de-04ab7512e76f",
"created_at": "2020-08-24T14:15:22Z",
"updated_at": "2020-08-24T14:15:22Z",
"type": "PERSONAL",
"status": "ACTIVE",
"users": [
{
"id": "413715f2-5401-4b97-8055-034a6b879f8c",
"type": "OWNER"
}
],
"securities_account_number": "123456789"
}idstringrequired
Event unique identifier
created_atstringrequired
Date and time when the event was created. RFC 3339-5, ISO8601 UTC
typestringrequired
Event type
objectobject (Account Group)required
idstringrequired
Account group unique identifier.
created_atstringrequired
Date and time when the resource was created. RFC 3339-5, ISO8601 UTC
updated_atstringrequired
Date and time when the resource was last updated. RFC 3339-5, ISO8601 UTC
usersarrayrequired
statusstringrequired
Status of the account group
typestringrequired
Account group type.
securities_account_numberstringrequired
Securities account number
webhook_idstringrequired
Webhook unique identifier.
{
"id": "72da9e41-9926-419f-976e-4c8069a04249",
"created_at": "2021-07-21T14:10:00.00Z",
"type": "ACCOUNT_GROUP.CREATED",
"object": {
"id": "9d95820d-4333-46b6-98de-04ab7512e76f",
"created_at": "2020-08-24T14:15:22Z",
"updated_at": "2020-08-24T14:15:22Z",
"type": "PERSONAL",
"status": "ACTIVE",
"users": [
{
"id": "413715f2-5401-4b97-8055-034a6b879f8c",
"type": "OWNER"
}
],
"securities_account_number": "123456789"
},
"webhook_id": "9df39835-be87-4243-9018-f2500b39cee6"
}Request has been processed successfully.
Empty response
Was this page helpful?