curl --request PATCH \
--url https://api.enterprise.sandbox.uphold.com/core/kyb/associated-persons/{personId}/processes/profile \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"input": {
"fullName": "John Doe",
"role": "CEO",
"birthdate": "1980-01-01",
"address": {
"line1": "123 Main St",
"line2": "Suite 100",
"city": "Anytown",
"postalCode": "12345",
"subdivision": "US-CA",
"country": "US"
},
"legalIds": [
{
"type": "tax-id",
"id": "123456789",
"country": "US"
}
],
"ownershipPercentage": 51
}
}
'{
"profile": {
"code": "profile",
"status": "ok",
"input": {
"type": "beneficial-owner",
"fullName": "John Doe",
"role": "CEO",
"birthdate": "1980-01-01",
"address": {
"line1": "123 Main St",
"line2": "Suite 100",
"city": "Anytown",
"postalCode": "12345",
"subdivision": "US-CA",
"country": "US"
},
"legalIds": [
{
"type": "tax-id",
"id": "123456789",
"country": "US"
}
],
"ownershipPercentage": 51
}
}
}Associated persons
Update associated person profile
Update the profile information for an associated person.
PATCH
/
core
/
kyb
/
associated-persons
/
{personId}
/
processes
/
profile
curl --request PATCH \
--url https://api.enterprise.sandbox.uphold.com/core/kyb/associated-persons/{personId}/processes/profile \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"input": {
"fullName": "John Doe",
"role": "CEO",
"birthdate": "1980-01-01",
"address": {
"line1": "123 Main St",
"line2": "Suite 100",
"city": "Anytown",
"postalCode": "12345",
"subdivision": "US-CA",
"country": "US"
},
"legalIds": [
{
"type": "tax-id",
"id": "123456789",
"country": "US"
}
],
"ownershipPercentage": 51
}
}
'{
"profile": {
"code": "profile",
"status": "ok",
"input": {
"type": "beneficial-owner",
"fullName": "John Doe",
"role": "CEO",
"birthdate": "1980-01-01",
"address": {
"line1": "123 Main St",
"line2": "Suite 100",
"city": "Anytown",
"postalCode": "12345",
"subdivision": "US-CA",
"country": "US"
},
"legalIds": [
{
"type": "tax-id",
"id": "123456789",
"country": "US"
}
],
"ownershipPercentage": 51
}
}
}This endpoint is currently available in Sandbox only. It is not yet available in Production.
Authorizations
OAuth 2.0 authentication.
Path Parameters
The unique identifier of the associated person.
Body
application/json
Show child attributes
Show child attributes
Response
Associated person profile updated successfully.
The profile process for an associated person.
Show child attributes
Show child attributes
Was this page helpful?