Update a description template
Jobs
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.eyJzdWIiOiIxNTczIiwic2NwIjoidXNlciIsImF1ZCI6bnVsbCwiaWF0IjoxNzUzMjY2MjE3LCJleHAiOjE3NTU4NTgyMTcsImp0aSI6IjUzYmNkNzNmLTg4OGYtNGRlNy1hMThkLTExMDAwMjc4OWIwYiJ9.b7fRJLJORt8ILrcTtSPWsxAq9GQ9q_23IzB6JVtSflE
Host: example.org
Cookie:
Body
{
"template": {
"title": "Sales Strategist",
"description": "Saepe pariatur degenero. Praesentium tempora velit."
}
}
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/"7ebeae8bcae2b381ff0c6aa608fccce7"
cache-control: max-age=0, private, must-revalidate
x-request-id: 570a2242-689f-428e-9295-2f7da59c1e3d
x-runtime: 0.023413
content-length: 117
Body
{
"template": {
"id": 11,
"description": "Saepe pariatur degenero. Praesentium tempora velit.",
"title": "Sales Strategist"
}
}