API Documentation
- Additional Workflow Step
- Analysis
- Async Request
- Authentication
- Bilingual File
- Business Unit
- Buyer
- Client
- Connector
- Conversations
- Cost Center
- Custom Fields
- Custom File Type
- Domain
- Due Date Scheme
- Email Template
- File
- Glossary
- Import settings
- Job
- GETGet Job Preview Package assets.
- GETDownload handover file(s)
- PUTUpload handover file
- DELDelete handover file
- POSTCreate job
- PUTEdit jobs (batch)
- DELDelete job (batch)
- POSTDownload bilingual file
- POSTCompare jobs on workflow levels
- POSTCreate job from connector asynchronous download task
- POSTCopy Source to Target
- POSTNotify assigned users
- POSTSearch jobs in project
- POSTGet segments count
- POSTUpdate source
- POSTUpdate target
- DELDelete all translations
- GETGet custom fields
- PUTEdit custom fields (batch)
- POSTCreate custom field instances
- GETGet custom field
- PUTEdit custom field
- DELDelete custom field
- GETGet job
- PUTEdit job
- PATCHPatch job
- POSTCopy Source to Target job
- GETGet import settings for job
- PUTEdit job import settings
- GETDownload original file
- GETDownload preview file
- POSTDownload preview file
- GETGet PDF preview
- POSTPseudo-translates job
- GETGet segments
- POSTEdit job status
- POSTSplit job
- GETGet status changes
- GETGet target file's warnings
- GETGet translation resources
- GETGet job's workflowStep
- GETList jobs
- POSTPseudo-translate job
- DELDelete specific translations
- POSTGet Web Editor URL
- GETDownload target file based on async request
- PUTDownload target file (async)
- PATCHEdit jobs (with possible partial updates)
- POSTExport jobs to online repository
- PUTDownload target file (async)
- POSTSearch job's translation memories
- POSTWildcard search job's translation memories
- GET
- Language AI
- Language Quality Assessment
- Machine Translation
- Machine Translation Settings
- Mapping
- Net Rate Scheme
- Notifications
- Price List
- Project
- Project Reference File
- Project Template
- Provider
- Quality Assurance
- Quote
- SCIM
- Segmentation Rules
- Service
- Spell Check
- SubDomain
- Supported Languages
- Term Base
- Translation
- Translation Memory
- User
- Vendor
- Webhook
- Workflow changes
- Workflow Step
- XML Assistant
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.