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.eyJzdWIiOiIxNTI0Iiwic2NwIjoidXNlciIsImF1ZCI6bnVsbCwiaWF0IjoxNzM3NTUxNTg1LCJleHAiOjE3NDAxNDM1ODUsImp0aSI6ImMyNDFkZDM0LTBlY2QtNDM2Mi05MWRlLWIwZWYyNWJhNmNjZCJ9.M7_8sVe9pdnsd_OePjrbhBFDmUkMzXWgNAo-5ZGS20A
Host: example.org
Cookie: 

Body

{
  "template": {
    "title": "Future Executive",
    "description": "Vita dolores odit. Non sum vulgaris."
  }
}

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/"7764c66eaf3883f7030b0edaf3314164"
cache-control: max-age=0, private, must-revalidate
x-request-id: ccdd09be-9c0a-4a1e-a1c6-fe156ba86638
x-runtime: 0.012304
content-length: 102

Body

{
  "template": {
    "id": 11,
    "description": "Vita dolores odit. Non sum vulgaris.",
    "title": "Future Executive"
  }
}