POST /jobTypes

Add a new job type.

application/json

Body Required

  • jobTypeID integer
  • name string
  • description string

Responses

  • 201

    Job type created successfully

  • 500

    Error occurred while creating job type

POST /jobTypes
curl \
 -X POST http://api.example.com/jobTypes \
 -H "Content-Type: application/json" \
 -d '{"jobTypeID":42,"name":"string","description":"string"}'
Request example
{
  "jobTypeID": 42,
  "name": "string",
  "description": "string"
}