Skip to main content
POST
/
companies
Create company
curl --request POST \
  --url https://app.dilli.studio/api/v1/companies \
  --header 'Content-Type: application/json' \
  --header 'X-Api-Key: <api-key>' \
  --data '
{
  "name": "<string>"
}
'
{
  "id": "<string>",
  "name": "<string>",
  "domain": "<string>",
  "notes": "<string>",
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z"
}
Use the API Playground below to send this request with your X-Api-Key. The base URL and headers are prefilled; update any path, query, or body fields and click Send.

Authorizations

X-Api-Key
string
header
required

Body

application/json
name
string
required
domain
string | null
notes
string | null
contact_ids
string[]

Response

201 - application/json

Created

id
string

ULID

name
string
domain
string | null
notes
string | null
created_at
string<date-time>
updated_at
string<date-time>