API Documentation
- Introduction
- Authentication
- Jobs
- Categories
- Terms
- Plans
- Other
Terms
Create term
Create a new job term
POST
/
terms.json
Copy
curl --request POST \
--url https://elixir.jobkit.io/terms.json \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '{
"name": "<string>"
}'
Copy
{
"id": 123,
"name": "<string>"
}
Requires admin authentication
The name of the category
Copy
{
"id": 123,
"name": "<string>"
}
Copy
curl --request POST \
--url https://elixir.jobkit.io/terms.json \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '{
"name": "<string>"
}'
Copy
{
"id": 123,
"name": "<string>"
}
Assistant
Responses are generated using AI and may contain mistakes.