Skip to main content
POST
/
api2
/
v1
/
projects
/
{projectUid}
/
jobs
/
{jobUid}
/
setStatus
Edit job status
curl --request POST \
  --url https://cloud.memsource.com/web/api2/v1/projects/{projectUid}/jobs/{jobUid}/setStatus \
  --header 'Content-Type: application/json' \
  --data '{
  "requestedStatus": "NEW",
  "notifyOwner": true,
  "propagateStatus": true
}'

Path Parameters

projectUid
string
required
jobUid
string
required

Body

application/json
requestedStatus
enum<string>
Available options:
NEW,
ACCEPTED,
DECLINED,
REJECTED,
DELIVERED,
EMAILED,
COMPLETED,
CANCELLED
notifyOwner
boolean

Default: false; Both project owner and job owner are notified; the parameter is subordinated to notification settings in the project

propagateStatus
boolean

Default: false; Controls both job status and email notifications to previous/next provider

Response

No Content

I