v1
latestOpenAPI 3.0.02026-07-26166415635.8 KBAccounts
Update an Account
This operation updates account information.
If all parameters are valid and updates have been made, it returns with status code 200. The response is the account model.
Multi-Live Accounts (MLA): The primary_account_holder_id field is read-only after the account is created. Omitting it or supplying the value already associated with the account is a no-op; supplying a different value returns HTTP 400.
patch/v1/accounts/{account_id}
Request body
Example request
{
"agreements": [
{
"agreement": "customer_agreement",
"ip_address": "185.13.21.99",
"signed_at": "2019-09-11T18:09:33Z"
}
],
"beneficiaries": [
{
"date_of_birth": "1970-01-01",
"family_name": "Doe",
"given_name": "Jane",
"middle_name": "P",
"relationship": "spouse",
"share_pct": "100",
"tax_id": "xxx-xx-xxxx",
"tax_id_type": "USA_SSN",
"type": "primary"
}
],
"cash_interest": {
"USD": {
"apr_tier_name": "gold",
"status": "ACTIVE"
}
},
"contact": {
"city": "San Mateo",
"country": "USA",
"email_address": "john.doe@example.com",
"phone_number": "+15556667788",
"postal_code": "94401",
"state": "CA",
"street_address": [
"20 N San Mateo Dr"
]
},
"disclosures": {
"immediate_family_exposed": false,
"is_affiliated_exchange_or_finra": false,
"is_control_person": false,
"is_politically_exposed": false
},
"fpsl": {
"US": {
"status": "ACTIVE",
"tier_id": "61e69015-8549-4bfd-b9c3-01e75843f47d"
}
},
"identity": {
"country_of_birth": "AUS",
"country_of_citizenship": "AUS",
"country_of_tax_residence": "USA",
"date_of_birth": "1990-01-01",
"family_name": "Doe",
"funding_source": [
"employment_income"
],
"given_name": "John",
"tax_id": "666-55-4321",
"tax_id_type": "USA_SSN"
},
"trusted_contact": {
"email_address": "jane.doe@example.com",
"family_name": "Doe",
"given_name": "Jane"
}
}Response
If all parameters are valid and updates have been made, it returns with status code 200. The response is the account model.
Example response
{
"account_sub_type": "traditional",
"account_type": "trading",
"agreements": [
{
"agreement": "customer_agreement",
"ip_address": "185.13.21.99",
"signed_at": "2019-09-11T18:09:33Z"
}
],
"beneficiaries": [
{
"date_of_birth": "1970-01-01",
"family_name": "Doe",
"given_name": "Jane",
"middle_name": "P",
"relationship": "spouse",
"share_pct": "100",
"tax_id": "xxx-xx-xxxx",
"tax_id_type": "USA_SSN",
"type": "primary"
}
],
"cash_interest": {
"USD": {
"apr_tier_name": "gold",
"status": "ACTIVE"
}
},
"contact": {
"city": "San Mateo",
"country": "USA",
"email_address": "john.doe@example.com",
"phone_number": "+15556667788",
"postal_code": "94401",
"state": "CA",
"street_address": [
"20 N San Mateo Dr"
]
},
"crypto_status": "ACTIVE",
"disclosures": {
"immediate_family_exposed": false,
"is_affiliated_exchange_or_finra": false,
"is_control_person": false,
"is_politically_exposed": false
},
"documents": [
{
"created_at": "2019-09-30T23:55:31.185998Z",
"document_sub_type": "passport",
"document_type": "identity_verification",
"id": "0d18ae51-3c94-4511-b209-101e1666416b",
"mime_type": "image/jpeg"
}
],
"fpsl": {
"US": {
"status": "ACTIVE",
"tier_id": "61e69015-8549-4bfd-b9c3-01e75843f47d"
}
},
"identity": {
"country_of_birth": "AUS",
"country_of_citizenship": "AUS",
"country_of_tax_residence": "USA",
"date_of_birth": "1990-01-01",
"family_name": "Doe",
"funding_source": [
"employment_income"
],
"given_name": "John",
"tax_id": "666-55-4321",
"tax_id_type": "USA_SSN"
},
"minor_identity": {
"tax_id_type": "USA_SSN"
},
"status": "ACTIVE",
"trusted_contact": {
"email_address": "jane.doe@example.com",
"family_name": "Doe",
"given_name": "Jane"
},
"usd": {
"last_equity": "123.45"
}
}