Update party information
Update related party information or submit changes to the organization after your client is approved and live. This replaces coordinating updates through support channels to update supported fields, add related parties, and deactivate related parties.
Use this feature for clients in the United States and Canada with supported legal entity types.
Before you begin
Confirm the client is in APPROVED status before starting post-onboarding updates.
How the update process works
Follow these steps to process an update.
- Start a request: Create an update by sending a
PATCHrequest to/onboarding/v1/parties/{partyId}for an onboarded client, or for a party that belongs to an onboarded client. Send only the fields that have changed.- To add a new related party, send a
POSTrequest to/onboarding/v1/parties. - When the request is in draft (
NEWstatus), the system bundles multiple changes made through multiple patch requests under the samerequestId.
- To add a new related party, send a
- Submit for review: Upload and submit the required documents listed in the outstanding block, if applicable. Complete required attestations, then send a
POSTrequest to/onboarding/v1/clients/{id}/verificationsto submit. - Receive notification upon completion: Notifications return
APPROVEDorDECLINEDoutcomes.GETresponses show approved data within 24 to 48 hours after the approval. Refer to the next steps section for details.
Each client supports only one open requestId at a time. To start a new request, complete the existing request if it has been submitted. If the request remains in NEW status, cancel it by sending a DELETE request to /onboarding/v1/maintenance-requests/{requestId}.
Understand the updateRequest object
The updateRequest object tracks each change and manages the lifecycle from draft to final outcome. After you submit an update, the response includes the updateRequest object, which has the following attributes:
requestId: Unique identifier for the update request. Only one is active per client.status: Current lifecycle status. Refer to the request status lifecycle.action: Update action:ADD,MODIFY, orDELETE.submittedAt: Timestamp when the system receives the request.
Request status lifecycle
The following table explains the updateRequest.status lifecycle:
| Status | Details |
|---|---|
NEW |
The system creates the request in the initial draft state. Changes remain available before submission. |
REVIEW_IN_PROGRESS |
The system moves the request to this status after you call /verifications. You cannot make further changes. |
INFORMATION_REQUESTED |
The system requires additional information during processing. |
APPROVED |
The system processed and approved the request. Terminal state. |
DECLINED |
The system processed but declined the request. Terminal state. |
TERMINATED |
The system canceled or auto-closed the request. Terminal state. |
A TERMINATED status occurs in any of the following scenarios:
- The platform cancels the request before calling
/verifications. - The client does not respond to information requests within 30 days.
- The updated country is not supported.
- The updated country is supported, and the request includes a different tax identification number that requires new onboarding.
Allowed updates
This section includes relevant notes, sample requests, and responses for the following update scenarios.
| Update scenario | Notes |
|---|---|
| Modify client legal name or doing business as (DBA) name |
|
| Modify client address |
|
| Add a related party |
|
| Remove a related party |
|
| Modify a related party |
|
Modify client legal name or DBA name
The following is an example of modifying a client legal name or DBA name.
Method: PATCH
Endpoint: /onboarding/v1/parties/{partyId}
Request:
{
"organizationDetails": {
"dbaName": "DBA NAME UPDATED"
}
}Response:
{
"id": "2000000035",
"partyType": "ORGANIZATION",
"roles": ["CLIENT"],
"organizationDetails": {
"organizationName": "Original Legal Name LLC",
"dbaName": "RAINBOW",
"addresses": [
{
"addressType": "BUSINESS_ADDRESS",
"addressLines": ["8934 Geary Blvd."],
"city": "San Francisco",
"postalCode": "94105",
"country": "US"
}
],
"countryOfFormation": "US",
"website": "www.yahoo.com"
},
"updateRequest": {
"requestId": "123456789",
"status": "NEW",
"action": "MODIFY",
"submittedAt": "2026-03-13T14:35:00Z"
}
}Modify client address
The following is an example of modifying a client address.
Method: PATCH
Endpoint: /onboarding/v1/parties/{partyId}
Request for single address:
{
"organizationDetails": {
"addresses": [
{
"addressType": "BUSINESS_ADDRESS",
"addressLines": [
"300 Candy St.",
"Suite 500"
],
"city": "Redwood City",
"state": "CA",
"postalCode": "94603",
"country": "US"
}
]
}
}Request for multiple addresses:
{
"organizationDetails": {
"addresses": [
{
"addressType": "BUSINESS_ADDRESS",
"addressLines": ["100 Main Street"],
"city": "San Francisco",
"state": "CA",
"postalCode": "94105",
"country": "US"
},
{
"addressType": "MAILING_ADDRESS",
"addressLines": ["PO Box 12345"],
"city": "Palo Alto",
"state": "CA",
"postalCode": "94303",
"country": "US"
}
]
}
}Response:
{
"id": "2000000035",
"partyType": "ORGANIZATION",
"roles": ["CLIENT"],
"organizationDetails": {
"organizationName": "Original Legal Name LLC",
"dbaName": "RAINBOW",
"addresses": [
{
"addressType": "BUSINESS_ADDRESS",
"addressLines": ["8934 Geary Blvd."],
"city": "San Francisco",
"postalCode": "94105",
"country": "US"
}
],
"countryOfFormation": "US",
"industryCategory": "Agriculture, Forestry, Fishing and Hunting",
"industryType": "Soybean Farming",
"website": "www.yahoo.com"
},
"updateRequest": {
"requestId": "123456789",
"status": "NEW",
"action": "MODIFY",
"submittedAt": "2026-03-13T14:30:00Z"
}
}Add a related party
The following is an example of adding a related party.
Method: POST
Endpoint: /onboarding/v1/parties
Request:
{
"parentPartyId": "2000000035",
"partyType": "INDIVIDUAL",
"roles": ["BENEFICIAL_OWNER"],
"individualDetails": {
"firstName": "David",
"lastName": "Smith",
"birthDate": "1990-01-01",
"addresses": [
{
"addressType": "RESIDENTIAL_ADDRESS",
"addressLines": [
"300 Candy St.",
"Suite 500"
],
"city": "Redwood City",
"state": "CA",
"postalCode": "94603",
"country": "US"
}
],
"natureOfOwnership": "Direct",
"countryOfResidence": "US",
"individualIds": [
{
"idType": "SSN",
"value": "444331111",
"issuer": "US"
}
],
"jobTitle": "CEO"
}
}Response:
{
"id": "2000000040",
"partyType": "INDIVIDUAL",
"roles": ["BENEFICIAL_OWNER"],
"active": true,
"profileStatus": "NEW",
"individualDetails": {
"firstName": "David",
"lastName": "Smith",
"birthDate": "1990-01-01",
"addresses": [
{
"addressType": "RESIDENTIAL_ADDRESS",
"addressLines": ["300 Candy St.", "Suite 500"],
"city": "Redwood City",
"state": "CA",
"postalCode": "94603",
"country": "US"
}
],
"natureOfOwnership": "Direct",
"countryOfResidence": "US",
"individualIds": [
{
"idType": "SSN",
"value": "444331111",
"issuer": "US"
}
],
"jobTitle": "CEO"
},
"updateRequest": {
"requestId": "123456789",
"status": "NEW",
"action": "ADD",
"submittedAt": "2026-03-13T14:30:00Z"
}
}Remove a related party
The following is an example of removing a related party.
Method: PATCH
Endpoint: /onboarding/v1/parties/{partyId}
Request:
{
"active": false
}Response:
{
"id": "2000000036",
"partyType": "INDIVIDUAL",
"roles": ["CONTROLLER"],
"active": false,
"individualDetails": {
"firstName": "Original First",
"lastName": "Original Last",
"birthDate": "1990-01-01",
"countryOfResidence": "US",
"addresses": [
{
"addressType": "RESIDENTIAL_ADDRESS",
"addressLines": ["300 Candy St.", "Suite 500"],
"city": "Redwood City",
"state": "CA",
"postalCode": "94603",
"country": "US"
}
]
},
"updateRequest": {
"requestId": "123456789",
"status": "NEW",
"action": "MODIFY",
"submittedAt": "2026-03-13T14:30:00Z"
}
}Modify a related party
The following is an example of modifying a related party.
Method: PATCH
Endpoint: /onboarding/v1/parties/{partyId}
Request:
{
"individualDetails": {
"firstName": "Updated First",
"middleName": "Updated Middle",
"lastName": "Updated Last"
}
}Response:
{
"id": "2000000035",
"partyType": "INDIVIDUAL",
"email": "super.user@testcompany.com",
"roles": ["CONTROLLER"],
"individualDetails": {
"firstName": "Original First",
"middleName": "Original Middle",
"lastName": "Original Last",
"birthDate": "1998-02-23",
"countryOfResidence": "US",
"addresses": [
{
"addressType": "BUSINESS_ADDRESS",
"addressLines": ["8934 Geary Blvd."],
"city": "San Francisco",
"postalCode": "94105",
"country": "US"
}
],
"individualIds": [
{
"idType": "SSN",
"value": "100-01-0001",
"issuer": "US"
}
],
"phone": {
"countryCode": "+1",
"phoneType": "BUSINESS_PHONE",
"phoneNumber": "4153333343"
}
},
"updateRequest": {
"requestId": "123456789",
"status": "NEW",
"action": "MODIFY",
"submittedAt": "2026-03-13T14:30:00Z"
}
}Retrieve update requests
Check the status of update requests as follows:
- Send a
GETrequest to/onboarding/v1/maintenance-requests?clientId={clientId}to retrieve all update requests for a givenclientId. - Send a
GETrequest to/onboarding/v1/maintenance-requests?partyId={partyId}to retrieve all update requests for a givenpartyId. - Send a
GETrequest to/onboarding/v1/maintenance-requests/{requestId}to retrieve update requests for arequestId.
Sample partial response:
The following shows the relevant portion of a sample response:
{
"active": false,
"updateRequest": {
"requestId": "123456789",
"status": "NEW",
"action": "MODIFY"
}
}Cancel an update request
To cancel an update request before submission when the request is in NEW status, send a DELETE request to /onboarding/v1/maintenance-requests/{requestId}?partyId={partyId} to cancel the update for a specific party.
Canceling the request changes the updateRequest.status to TERMINATED.
Submit the update for review
When all changes, documents, and attestations are complete, submit by sending a POST request to /onboarding/v1/clients/{id}/verifications. This moves the updateRequest.status from NEW to REVIEW_IN_PROGRESS. All changes are final after submission.
Next steps
After submitting, monitor the request status by subscribing to the notification events webhook channel or by polling with a GET request to /onboarding/v1/maintenance-requests/{requestId}. If the status returns INFORMATION_REQUESTED, provide the additional information within 30 days to avoid automatic termination.