Enterprises
Update an enterprise
Update enterprise information. All fields are optional — only the provided fields will be updated.
put/enterprises/{enterprise_id}
Path parameters
enterprise_idstring uuid required
Example:6a09cdc3-8948-47f0-aa62-74ac943d6c58
Unique identifier of the enterprise (UUID)
Request body
Example request
{
"organization_contact": {
"first_name": "Jane",
"last_name": "Smith",
"email": "jane.smith@acme.com",
"job_title": "VP of Engineering",
"phone": "+16035551234"
},
"billing_contact": {
"first_name": "John",
"last_name": "Doe",
"email": "billing@acme.com",
"phone_number": "15551234568"
},
"organization_physical_address": {
"country": "United States",
"administrative_area": "Illinois",
"city": "Chicago",
"postal_code": "60601",
"street_address": "123 Main St",
"extended_address": "Suite 400"
},
"billing_address": {
"country": "United States",
"administrative_area": "Illinois",
"city": "Chicago",
"postal_code": "60601",
"street_address": "123 Main St",
"extended_address": "Suite 400"
}
}Response
Enterprise updated successfully
Example response
{
"data": {
"id": "6a09cdc3-8948-47f0-aa62-74ac943d6c58",
"legal_name": "Acme Corp Inc.",
"doing_business_as": "Acme",
"country_code": "US",
"organization_contact": {
"first_name": "Jane",
"last_name": "Smith",
"email": "jane.smith@acme.com",
"job_title": "VP of Engineering",
"phone": "+16035551234"
},
"billing_contact": {
"first_name": "John",
"last_name": "Doe",
"email": "billing@acme.com",
"phone_number": "15551234568"
},
"organization_physical_address": {
"country": "United States",
"administrative_area": "Illinois",
"city": "Chicago",
"postal_code": "60601",
"street_address": "123 Main St",
"extended_address": "Suite 400"
},
"billing_address": {
"country": "United States",
"administrative_area": "Illinois",
"city": "Chicago",
"postal_code": "60601",
"street_address": "123 Main St",
"extended_address": "Suite 400"
}
}
}