Enterprises
Create an enterprise
Create a new enterprise for Branded Calling / Number Reputation services.
Registers the enterprise in the Branded Calling / Number Reputation services, enabling it to create Display Identity Records (DIRs) or enroll in Number Reputation monitoring.
Required Fields: legal_name, doing_business_as, organization_type, country_code, website, fein, industry, number_of_employees, organization_legal_type, organization_contact, billing_contact, organization_physical_address, billing_address
post/enterprises
Request body
Example request
{
"legal_name": "Acme Corp Inc.",
"doing_business_as": "Acme",
"organization_type": "commercial",
"country_code": "US",
"website": "https://acme.com",
"fein": "12-3456789",
"industry": "technology",
"number_of_employees": "51-200",
"organization_legal_type": "corporation",
"primary_business_domain_sic_code": "7372",
"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 created 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"
}
}
}