API Documentation
- Analysis
- Authentication
- Conversations
- Job
- Project
- Project Template
- Quality Assurance
- Translation
- User
Job
Edit jobs (with possible partial updates)
Allows partial update, not breaking whole batch if single job fails and returns list of errors
PATCH
/
api2
/
v3
/
jobs
Edit jobs (with possible partial updates)
Copy
Ask AI
curl --request PATCH \
--url https://cloud.memsource.com/web/api2/v3/jobs \
--header 'Content-Type: application/json' \
--data '{
"jobs": [
{
"uid": "<string>"
}
],
"status": "NEW",
"dateDue": "2023-11-07T05:31:56Z",
"clearDateDue": true,
"providers": [
{
"type": "<string>",
"id": "<string>"
}
],
"customFields": {
"addInstances": [
{
"customField": {
"uid": "<string>"
},
"selectedOptions": [
{
"uid": "<string>"
}
],
"value": "<string>"
}
],
"removeInstances": [
{
"uid": "<string>"
}
],
"updateInstances": [
{
"customFieldInstance": {
"uid": "<string>"
},
"customField": {
"uid": "<string>"
},
"selectedOptions": [
{
"uid": "<string>"
}
],
"value": "<string>"
}
]
}
}'
Copy
Ask AI
{
"updated": 123,
"errors": [
{
"code": "<string>",
"args": {},
"message": "<string>"
}
]
}
Body
application/json
Response
200
application/json
successful operation
The response is of type object
.
Was this page helpful?
Edit jobs (with possible partial updates)
Copy
Ask AI
curl --request PATCH \
--url https://cloud.memsource.com/web/api2/v3/jobs \
--header 'Content-Type: application/json' \
--data '{
"jobs": [
{
"uid": "<string>"
}
],
"status": "NEW",
"dateDue": "2023-11-07T05:31:56Z",
"clearDateDue": true,
"providers": [
{
"type": "<string>",
"id": "<string>"
}
],
"customFields": {
"addInstances": [
{
"customField": {
"uid": "<string>"
},
"selectedOptions": [
{
"uid": "<string>"
}
],
"value": "<string>"
}
],
"removeInstances": [
{
"uid": "<string>"
}
],
"updateInstances": [
{
"customFieldInstance": {
"uid": "<string>"
},
"customField": {
"uid": "<string>"
},
"selectedOptions": [
{
"uid": "<string>"
}
],
"value": "<string>"
}
]
}
}'
Copy
Ask AI
{
"updated": 123,
"errors": [
{
"code": "<string>",
"args": {},
"message": "<string>"
}
]
}
Assistant
Responses are generated using AI and may contain mistakes.