put
https://api.suresend.ai/api/partner/companies/
Update an existing company. Only provide fields you want to change - all fields are optional.
Partial Updates:
- Only include fields you want to update
- Omitted fields will remain unchanged
- To clear a field, send
nullor empty string
Tag Handling:
- Use
mergeTags=truequery parameter to add tags without removing existing ones - Use
mergeTags=false(or omit) to replace all tags - For more control, use the dedicated tag endpoints:
/companies/{id}/tags/applyand/companies/{id}/tags/delete
Examples:
Update Name and Industry:
{
"name": "Acme Corp",
"industry": "Software"
}
Update Revenue:
{
"annualRevenue": 7500000
}
Add Tags (with mergeTags=true):
{
"tags": ["customer", "enterprise"]
}
Replace All Tags (with mergeTags=false or omitted):
{
"tags": ["archived"]
}