Create a department
This endpoint lets you create new departments for a given organization_reference
new department
POST https://www.welcomekit.co/api/v1/external/departments
Query Parameters
Name
Type
Description
organization_reference*
string
Organization reference
name*
string
Name
slug
string
Slug (used on careers websites)
is_active
boolean
Department active?
description
string
Description
{
"id": 42,
"name": "Tech",
"is_active": true,
"slug": "tech",
"description": "Foo bar"
}NB: the slug is automatically generated from the department’s name
Request example
Last updated
Was this helpful?