curl --request POST \
--url https://cloud.memsource.com/web/api2/v1/projects/{projectUid}/jobs/search \
--header 'Content-Type: application/json' \
--data '{
"jobs": [
{
"uid": "<string>"
}
]
}'
{
"jobs": [
{
"uid": "<string>",
"innerId": "<string>",
"status": "NEW",
"providers": [
{
"type": "<string>",
"id": "<string>",
"uid": "<string>"
}
],
"sourceLang": "<string>",
"targetLang": "<string>",
"workflowLevel": 123,
"workflowStep": {
"name": "<string>",
"id": "<string>",
"order": 123,
"workflowLevel": 123
},
"filename": "<string>",
"dateDue": "2023-11-07T05:31:56Z",
"wordsCount": 123,
"beginIndex": 123,
"endIndex": 123,
"isParentJobSplit": true,
"updateSourceDate": "2023-11-07T05:31:56Z",
"updateTargetDate": "2023-11-07T05:31:56Z",
"dateCreated": "2023-11-07T05:31:56Z",
"jobReference": {
"uid": "<string>",
"filename": "<string>"
},
"project": {
"name": "<string>",
"uid": "<string>"
},
"lastWorkflowLevel": 123,
"workUnit": {},
"importStatus": {
"status": "RUNNING",
"errorMessage": "<string>"
},
"imported": true,
"continuous": true,
"continuousJobInfo": {
"dateUpdated": "2023-11-07T05:31:56Z"
},
"originalFileDirectory": "<string>",
"serverTaskId": "<string>"
}
]
}
This API call can be used to verify (search) which of the provided jobs belong to the specified project. For the jobs that belong to the project, a subset of Get job information will be returned and the rest of the jobs will be filtered out.
curl --request POST \
--url https://cloud.memsource.com/web/api2/v1/projects/{projectUid}/jobs/search \
--header 'Content-Type: application/json' \
--data '{
"jobs": [
{
"uid": "<string>"
}
]
}'
{
"jobs": [
{
"uid": "<string>",
"innerId": "<string>",
"status": "NEW",
"providers": [
{
"type": "<string>",
"id": "<string>",
"uid": "<string>"
}
],
"sourceLang": "<string>",
"targetLang": "<string>",
"workflowLevel": 123,
"workflowStep": {
"name": "<string>",
"id": "<string>",
"order": 123,
"workflowLevel": 123
},
"filename": "<string>",
"dateDue": "2023-11-07T05:31:56Z",
"wordsCount": 123,
"beginIndex": 123,
"endIndex": 123,
"isParentJobSplit": true,
"updateSourceDate": "2023-11-07T05:31:56Z",
"updateTargetDate": "2023-11-07T05:31:56Z",
"dateCreated": "2023-11-07T05:31:56Z",
"jobReference": {
"uid": "<string>",
"filename": "<string>"
},
"project": {
"name": "<string>",
"uid": "<string>"
},
"lastWorkflowLevel": 123,
"workUnit": {},
"importStatus": {
"status": "RUNNING",
"errorMessage": "<string>"
},
"imported": true,
"continuous": true,
"continuousJobInfo": {
"dateUpdated": "2023-11-07T05:31:56Z"
},
"originalFileDirectory": "<string>",
"serverTaskId": "<string>"
}
]
}
successful operation
The response is of type object
.
Was this page helpful?