Jobs

Update a description template

PUT update description template

Endpoint

PUT /api/v1/jobs/templates/:id

Parameters

Name Description
template[title] required Template title
template[description] required Template description

Request

Route

PUT /api/v1/jobs/templates/11

Headers

Accept: application/json
Content-Type: application/json
Authorization: Bearer eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiIxNTUyIiwic2NwIjoidXNlciIsImF1ZCI6bnVsbCwiaWF0IjoxNzYwOTUwNDY5LCJleHAiOjE3NjM1NDI0NjksImp0aSI6IjlhNTRmYTViLTQ5NWMtNDMyNC1hNjE4LWY4NDkxMTZiMjg4OCJ9.QHcGL4KFd3EfppJRkGtXjZSHYPTBFNgAakHjd6pWXWA
Host: example.org
Cookie: 

Body

{
  "template": {
    "title": "Education Coordinator",
    "description": "Pecunia audacia abduco. Cura at suggero."
  }
}

Response

Simulated Response

Status

200

Headers

x-frame-options: SAMEORIGIN
x-xss-protection: 0
x-content-type-options: nosniff
x-permitted-cross-domain-policies: none
referrer-policy: strict-origin-when-cross-origin
content-type: application/json; charset=utf-8
vary: Accept, Origin
etag: W/"dcb3f1d6f13f4f73a34d4ef364d90563"
cache-control: max-age=0, private, must-revalidate
x-request-id: bb07e835-e761-41f3-8c89-185789c083fb
x-runtime: 0.011114
content-length: 111

Body

{
  "template": {
    "id": 11,
    "description": "Pecunia audacia abduco. Cura at suggero.",
    "title": "Education Coordinator"
  }
}