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