v2

latestOpenAPI 3.0.02026-08-07103189636.5 KB
Workflow Assignment

Search For Account Assignments

Search for workflow step assignments within account

post/people-api/v3/accounts/{accountUid}/users/workflow-steps

Path parameters

accountUidstring uid required

The account’s unique identifier. This can be found in the Smartling Dashboard under Account Settings > API.

Request body

workflowStepUidsstring[]

Optional workflow steps uids.

userUidstring

Optional user identifier.

offsetTokenstring

Offset token for next data batch or null

limitinteger

Size of batch for single request

Example request

{
  "workflowStepUids": [
    "8312172ed60d",
    "42121ad3df2c"
  ],
  "userUid": "ac48ht4qy",
  "offsetToken": "d966008f-c341-4c75-a986-7e25a0135e01",
  "limit": 1000
}

Response

OK

Example response

{
  "response": {
    "data": {
      "workflowStepUserAssignments": [
        {
          "workflowStepAssignments": [
            {
              "workflowStepUid": "8312172ed60d",
              "localePairs": {
                "sourceLocaleId": "en-US",
                "targetLocaleIds": [
                  "fr-FR",
                  "es-ES"
                ]
              }
            }
          ]
        }
      ]
    }
  }
}