PUT /api/Job/Update

PUT /api/Job/Update

Body

  • id integer(int32)
  • title string | null
  • description string | null
  • employerId integer(int32)
  • Additional properties are NOT allowed

Responses

  • 200

    Success

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 examples
{
  "id": 42,
  "title": "string",
  "description": "string",
  "employerId": 42
}