POST
/
api2
/
v1
/
projects
/
{projectUid}
/
jobs
/
search
Search jobs in project
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>"
    }
  ]
}

Path Parameters

projectUid
string
required

Body

application/json

Response

200
application/json

successful operation

The response is of type object.