Update Company
Updates company details. ATS keys can update companies they created; direct client keys can update their own company.
Overview
The update company endpoint allows you to modify company information without recreating it. This supports partial updates, meaning you only need to provide the fields you want to change. Regular API keys can update their own company, while ATS keys can update companies they’ve created.Access Rules
Regular API Keys
Regular API keys can only update their associated company:ATS Integration Keys
ATS keys can update any company they’ve created:Use Cases
- Company Profile Updates: Update company name, website, or industry
- Settings Management: Modify company settings (timezone, locale)
- Client Management: Update client company information for ATS platforms
Partial Updates
You can update any combination of fields:Error Scenarios
- 404 Not Found: Company doesn’t exist
- 403 Forbidden: Company is not accessible or updatable with your API key type
- 400 Bad Request: Invalid field values or validation errors
Related Resources
ATS Integration Guide
Companies Resource Guide
Get Company
Authorizations
API key for authentication using Bearer scheme
Path Parameters
Query Parameters
Required for ATS API keys to specify which company to access. Ignored for standard company API keys.
Body
Company name
2 - 100"Acme Corporation"
Company description
1 - 1000"Leading technology company specializing in enterprise software"
Custom metadata (merged with existing metadata, max 10KB, 5 levels deep, 50 keys)
{
"industry": "Technology",
"size": "50-200"
}Email of the company owner. If provided, the system will automatically assign or invite the user.
254"owner@example.com"
Response
Company ID
"123e4567-e89b-12d3-a456-426614174000"
Company name
"Acme Corporation"
Created timestamp
"2024-11-16T10:30:00Z"
Updated timestamp
"2024-11-16T10:30:00Z"
Company description
"Leading technology company"
Email of the company owner
254"owner@example.com"
Custom metadata
{
"externalCompanyId": "COMP-12345",
"industry": "Technology"
}