Get workflow action details

Get the workflow action details for a particular workflow action.

Get workflow action details

GET https://ris.rightsline.com/v4/processes/:processID/actions/:actionID

This endpoint allows you to retrieve workflow actions for a given workflow process.

Path Parameters

NameTypeDescription

processID*

int

The workflow process ID.

actionID*

int

The workflow action ID.

Headers

NameTypeDescription

x-api-key*

string

Your company's API key.

Authentication*

string

Authentication token.

{
    "actionId": 16,
    "actionName": "Greenlit",
    "isInitialAction": false,
    "resultingStatus": "Greenlit",
    "chainedActions": [
        {
            "processId": 5,
            "actionId": 2
        }
    ],
    "roleNotifications": [
        {
            "roleId": 20,
            "notificationId": 466
        }
    ],
    "partyNotifications": [
        {
            "partyId": 10,
            "notificationId": 200
        }
    ]
}

Last updated