PUT
/api/Job/Update
cURL (application/json-patch+json)
curl \
-X PUT http://api.example.com/api/Job/Update \
-H "Authorization: $API_KEY" \
-H "Content-Type: application/json-patch+json"
curl \
-X PUT http://api.example.com/api/Job/Update \
-H "Authorization: $API_KEY" \
-H "Content-Type: application/json" \
-d '{"id":42,"title":"string","description":"string","employerId":42}'
curl \
-X PUT http://api.example.com/api/Job/Update \
-H "Authorization: $API_KEY" \
-H "Content-Type: text/json"
curl \
-X PUT http://api.example.com/api/Job/Update \
-H "Authorization: $API_KEY" \
-H "Content-Type: application/*+json"
Request examples
{
"id": 42,
"title": "string",
"description": "string",
"employerId": 42
}
Request example
{
"id": 42,
"title": "string",
"description": "string",
"employerId": 42
}
Request examples
{
"id": 42,
"title": "string",
"description": "string",
"employerId": 42
}
Request examples
{
"id": 42,
"title": "string",
"description": "string",
"employerId": 42
}