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",
    "actionDescription": "Record is Greenlit",
    "isInitialAction": false,
    "resultingStatus": "Greenlit",
    "sequenceNumber": 1,
    "documentOption": {
        "documentOptionId": 0,
        "documentOptionName": "None"
    },
    "associatedRoles": [
        {
            "roleId": 1,
            "roleName": "External User"
        },
        {
            "roleId": 2,
            "roleName": "Admin User"
        },
        {
            "roleId": 3,
            "roleName": "Super Admin"
        },
        {
            "roleId": 6,
            "roleName": "Full User"
        }
    ],
    "chainedActions": [
        {
            "processId": 5,
            "actionId": 2
        }
    ],
    "roleNotifications": [
        {
            "roleId": 20,
            "notificationId": 466
        }
    ],
    "partyNotifications": [
        {
            "partyId": 10,
            "notificationId": 200
        }
    ]
}

Last updated