post
https://api.suresend.ai/api/partner/companies
Create a new company (organization/account) in your team. Companies represent businesses and organizations in your B2B CRM.
Use Cases:
- Add prospects from website forms
- Import companies from external systems
- Create accounts manually
- Sync companies from LinkedIn or other platforms
Required vs Optional:
- Only
nameis required - Emails, phones, and addresses are optional but recommended
- Tags can be added during creation for immediate categorization
- Custom fields can be set using the pattern
customFieldName
Example - Minimal Company:
{
"name": "Acme Corporation"
}
Example - Full Company:
{
"name": "Acme Corporation",
"industry": "Technology",
"website": "https://acme.com",
"description": "Leading provider of innovative solutions",
"companySize": "51-200",
"annualRevenue": 5000000,
"foundedDate": "2010-01-15T00:00:00Z",
"registrationNumber": "12345678",
"taxId": "98-7654321",
"stage": "Prospect",
"source": "Referral",
"assignedUserId": "user-uuid",
"emails": [
{"value": "[email protected]", "type": "work", "isPrimary": true}
],
"phones": [
{"value": "+1-555-1234", "type": "main", "isPrimary": true}
],
"addresses": [
{
"type": "headquarters",
"street": "123 Business St",
"city": "San Francisco",
"state": "CA",
"code": "94105",
"country": "US"
}
],
"tags": ["enterprise", "prospect"]
}