Skip to main content

projects/{pid}/workflows/{did}/status

Provides workflow information and status for a document across ALL its target languages.

Note: Each target language possesses a distinct workflow, separate and independent from others.

URL

CODE
(GET) /api/projects/{pid}/workflows/{did}/status

PARAMETERS

The URL parameters are:

pid

The project ID

int, Mandatory

did

The document ID

int, Mandatory

RESULTS

The JSON result includes the workflow details for each branch language (aka target language).

In below example, we have a file to translate into Spanish and French. The details for the 2 workflows are contained in the array:

CODE
[
    {
        "branch": "es",
        "status": 3,
        "statusTitle": "Action required",
        "statusDate": "2024-03-27T10:29:35.183Z",
        "openJobs": 1,
        "steps": 1,
        "file": {
            "exists": true,
            "date": "2024-03-28T09:40:45.5804981Z",
            "name": "specialname.htm",
            "size": 96,
            "encoding": "UTF-8"
        }
    },
    {
        "branch": "fr",
        "status": 4,
        "statusTitle": "Work delivered",
        "statusDate": "2024-04-03T06:32:37.683Z",
        ...
    }
]

For a detailed explanation of the properties please refer to:

projects/{pid}/workflows/{did}/status/{trg}

JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.