Skip to main content
POST
/
ai-apply
/
career-sites
Create a career site
curl --request POST \
  --url https://api.kombo.dev/v1/ai-apply/career-sites \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "label": "Acme Inc. California"
}'
{
"status": "success",
"data": {
"id": "mK7pQw9xNvEr2LdY5sGh8TcZ",
"label": "Acme Inc. California"
}
}

Authorizations

Authorization
string
header
required

Create an API key on the Secrets page in the Kombo dashboard.

Body

application/json

POST /ai-apply/career-sites Request body

label
string
required

The label of the career site

Response

POST /ai-apply/career-sites Positive response

status
string
required
Allowed value: "success"
data
object
required
Examples:
{
"id": "mK7pQw9xNvEr2LdY5sGh8TcZ",
"label": "Acme Inc. California"
}