API:Companies:Create
Contents
API » Create Companies
Base URL
Endpoint
/api/companies/new/
Purpose
Creates a new contact company (account/company record) in your CallProof company. Use this to add a company name that contacts can later be associated with.
HTTP Method
POST
Headers
| Header | Required | Description |
|---|---|---|
| Content-Type | Yes | Must be application/json.
|
Security
- Yes – Requires a valid API key and secret with permission to create companies. Credentials are sent in the request body.
Parameters
Path Parameters
None.
Query Parameters
None.
Request Body
| Parameter | Type | Required | Description |
|---|---|---|---|
| api_key | object | Yes | Authentication credentials object. |
| api_key.key | string | Yes | Public API key assigned to your CallProof account. |
| api_key.secret | string | Yes | Private API secret paired with the API key. |
| companies | object | Yes | Company creation payload. |
| companies.name | string | Yes | Name of the company to create. Cannot be empty. |
cURL Example
curl -X POST "https://app.callproof.com/api/companies/new/" \
-H "Content-Type: application/json" \
-d '{
"api_key": {
"key": "YOUR_API_KEY",
"secret": "YOUR_API_SECRET"
},
"companies": {
"name": "Acme Corp"
}
}'
Successful Response (200)
Indicates the company was created successfully. The response returns the new company details.
| Field | Type | Description |
|---|---|---|
| results | object | Newly created company details. |
| results.id | integer | Unique identifier for the company. |
| results.primary_contact | integer or string | Primary contact identifier associated with the company, or empty if none is set. |
| results.name | string | Company name. |
| results.updated | string | Date and time the company was last updated (YYYY-MM-DD HH:MM:SS).
|
| results.created | string | Date and time the company was created (YYYY-MM-DD HH:MM:SS).
|
| errors | array | Empty list when the request succeeds. |
| code | integer | HTTP-style status value; 200 on success.
|
Example response:
{
"results": {
"id": 321,
"primary_contact": "",
"name": "Acme Corp",
"updated": "2024-06-15 14:30:00",
"created": "2024-06-15 14:30:00"
},
"errors": [],
"code": 200
}
Notes
- Only the company name is required to create a company record.
- A newly created company typically has no primary contact until one is assigned later.
- This creates a contact company/account record within your CallProof company, not a new CallProof tenant.
- Field-level validation failures typically return HTTP
200with details in theerrorsarray and an emptyresultsobject. - To update an existing company, use
/api/companies/update/.
Error Responses
| Status Code | Meaning |
|---|---|
| 200 | Validation issue – The company name is missing/empty, or the company could not be created. Details are provided in the errors array.
|
| 401 | Unauthorized – The API key and/or secret is missing, invalid, inactive, associated with a disabled account, or lacks permission to create companies. |
| 405 | Method Not Allowed – A method other than POST was used. |
| 500 | Internal Server Error – An unexpected server problem occurred. Not specified in Swagger. |
200 validation response examples:
{
"results": {},
"errors": [
{"name": "required field"}
],
"code": 200
}
{
"results": {},
"errors": [
{"name": "Unable to create company"}
],
"code": 200
}
401 response body example:
{
"results": [],
"errors": ["Invalid API Key"],
"code": 401
}
405 response body example:
{
"results": [],
"errors": ["Method not allowed"],
"code": 405
}