v1
latestOpenAPI 3.0.02026-07-26167441.9 MBEntities (Banking Connectivity)
Update Entity (Banking Connectivity)
patch/banking/entities/{entity_id}
Path parameters
entity_idstring required
The id of the entity obtained from Create Entity.
Request body
Example request
{
"account_id": "550e8400-e29b-41d4-a716-446655440000",
"merchant_entity_id": "merchant_user_12345",
"phone": {
"country_code": "+1",
"number": "2025559999"
},
"address": {
"address_line_1": "456 Oak Ave",
"address_line_2": "Suite 100",
"building_number_1": "456",
"city": "San Francisco",
"state": "CA",
"zip_code": "94105",
"country": "US"
},
"entity_detail": {
"individual": {
"email": "john.new@example.com",
"country_of_residence": "US"
},
"entity": {
"name": "Acme Corp LLC"
}
}
}Response
OK
Example response
{
"id": "ent_660e8400-e29b-41d4-a716-446655440000",
"account_id": "550e8400-e29b-41d4-a716-446655440000",
"merchant_entity_id": "merchant_user_12345",
"national_entity": "INDIVIDUAL",
"phone": {
"country_code": "+1",
"number": "2025559999"
},
"address": {
"address_line_1": "456 Oak Ave",
"address_line_2": "Suite 100",
"building_number_1": "456",
"city": "San Francisco",
"state": "CA",
"zip_code": "94105",
"country": "US"
},
"entity_detail": {
"individual": {
"first_name": "John",
"last_name": "Doe",
"email": "john.new@example.com",
"date_of_birth": "1990-01-15",
"gender": "M",
"country_of_residence": "US",
"tax_information": [
{
"country": "US",
"tax_id_last_4": "6789",
"tax_id_type": "SSN",
"is_primary": true
}
],
"document": {
"document_type": "SSN",
"document_number_last_4": "6789",
"issuing_country": "US",
"issued_at": "2010-01-15",
"expires_at": "2030-01-15"
}
}
},
"created_at": "2026-02-01T10:00:00Z",
"updated_at": "2026-02-01T12:00:00Z"
}