PUT
/jobs
curl \
-X PUT http://api.example.com/jobs?jobID=42 \
-H "Content-Type: application/json" \
-d '{"jobID":42,"jobTitle":"string","jobDescription":"string","scheduleLater":true,"Rrule":"string","companyID":42,"propertyID":42,"jobStatusID":42,"clientID":42,"jobTypeID":42,"createdBy":42,"updatedBy":42}'
Request example
{
"jobID": 42,
"jobTitle": "string",
"jobDescription": "string",
"scheduleLater": true,
"Rrule": "string",
"companyID": 42,
"propertyID": 42,
"jobStatusID": 42,
"clientID": 42,
"jobTypeID": 42,
"createdBy": 42,
"updatedBy": 42
}
Response examples (200)
{
"jobID": 42,
"jobTitle": "string",
"jobDescription": "string",
"scheduleLater": true,
"Rrule": "string",
"companyID": 42,
"propertyID": 42,
"jobStatusID": 42,
"clientID": 42,
"jobTypeID": 42,
"createdBy": 42,
"updatedBy": 42
}