Skip to main content
POST
/
organizations
Create a new organization
curl --request POST \
  --url https://api.recruitifi.com/v1/organizations \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "Acme Corp"
}
'
{
  "id": "<string>",
  "created_at": "<string>",
  "updated_at": "<string>",
  "name": "<string>"
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the Partner OAuth 2.0 Client Credentials grant flow.

Body

application/json

Organization object to be created

name
string
required
Example:

"Acme Corp"

Response

201 - application/json

Organization created

id
string
created_at
string
updated_at
string
name
string