Skip to main content
POST
/
v1
/
admin
/
companies
Create Company
curl --request POST \
  --url https://api.ontora.com/v1/admin/companies \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "domain": "<string>",
  "description": "<string>",
  "location": "<string>",
  "industry": "<string>",
  "linkedin_url": "<string>",
  "logo_url": "<string>"
}
'
{
  "id": "<string>",
  "name": "<string>",
  "slug": "<string>",
  "logo_url": "<string>",
  "status": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.ontora.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
name
string
required
domain
string | null
description
string | null
location
string | null
industry
string | null
linkedin_url
string | null
logo_url
string | null

Response

Successful Response

id
string
required
name
string
required
slug
string
required
logo_url
string | null
required
status
string
required