Skip to main content
PUT
/
categories
/
{id}
.json
Update category
curl --request PUT \
  --url https://elixir.jobkit.io/categories/{id}.json \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>"
}
'
  {
    "id": 123,
    "name": "<string>"
  }

Documentation Index

Fetch the complete documentation index at: https://docs.jobkit.io/llms.txt

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

Requires admin authentication
id
integer
required
The id of the category to update
name
string
required
The new name of the category
  {
    "id": 123,
    "name": "<string>"
  }