POST
/
companies
curl --request POST \
  --url https://api.klipycrm.com/api/v1/companies \
  --header 'Content-Type: application/json' \
  --header 'X-KLIPY-API-KEY: <api-key>' \
  --data '{
  "domain": "<string>",
  "name": "<string>",
  "description": "A software company specializing in AI solutions",
  "address": "123 Main St",
  "city": "San Francisco",
  "state": "CA",
  "country": "USA",
  "linkedin": "company/example-corp",
  "twitter": "examplecorp",
  "facebook": "examplecorp",
  "instagram": "examplecorp",
  "crunchbase": "organization/example-corp",
  "phone": "+1234567890",
  "remarks": "Potential enterprise client"
}'
{
  "success": true,
  "data": {
    "id": "<string>"
  }
}

Authorizations

X-KLIPY-API-KEY
string
header
required

Body

application/json

Company record to create

The body is of type object.

Response

200
application/json

Success

The response is of type object.