POST
/
categories.json
curl --request POST \
  --url https://elixir.jobkit.io/categories.json \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "<string>"
}'
  {
    "id": 123,
    "name": "<string>"
  }
Requires admin authentication
name
string
required

The name of the category

  {
    "id": 123,
    "name": "<string>"
  }