Skip to main content
POST
/
api2
/
v1
/
projects
/
{projectUid}
/
applyTemplate
/
{templateUid}
/
assignProviders
/
forJobParts
Assigns providers from template (specific jobs)
curl --request POST \
  --url https://cloud.memsource.com/web/api2/v1/projects/{projectUid}/applyTemplate/{templateUid}/assignProviders/forJobParts \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "jobs": [
    {
      "uid": "<string>"
    }
  ]
}
'
{
  "jobs": [
    {
      "uid": "<string>",
      "status": "NEW",
      "providers": [
        {
          "type": "<string>",
          "id": "<string>",
          "uid": "<string>"
        }
      ],
      "targetLang": "<string>",
      "workflowLevel": 123,
      "workflowStep": {
        "name": "<string>",
        "id": "<string>",
        "uid": "<string>",
        "order": 123,
        "lqaEnabled": true
      },
      "filename": "<string>",
      "dateDue": "2023-11-07T05:31:56Z",
      "dateCreated": "2023-11-07T05:31:56Z",
      "updateSourceDate": "2023-11-07T05:31:56Z",
      "imported": true,
      "jobAssignedEmailTemplate": {},
      "notificationIntervalInMinutes": 123,
      "continuous": true,
      "sourceFileUid": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Get a token from auth/login endpoint and then pass it in the Authorization HTTP header in every subsequent API call. For more information visit our help center.

Path Parameters

templateUid
string
required
projectUid
string
required

Body

application/json
jobs
object[]
required
Required array length: 1 - 100 elements

Response

successful operation

jobs
object[]