Overview

Provide journey of chart and related stages data

Summary

This request will return journey and related stages data of chart

Request Arguments

Name Type Description Required
module String Record module True
record Object Object containing id of the current record True
selected Boolean True if current record is selected otherwise false False

Request Example

{
    "module": "DRI_Workflows",
    "record": {
        "id": "e00ce644-2ce5-11ed-8ea1-0242ac120006",
    },
    "selected": {
        "selected": true,
    }
}

Response

The response will be an object containing the following fields:
Name Type Description
data Array Journey Attributes with related Stages

Response Example

{
    "data" : [
        "id" => "e00ce644-2ce5-11ed-8ea1-0242ac120006",
        "name" => "Test",
        "state" => "in_progress",
        "progress" => 0.41,
        "stages" => [
            "id" => "5ae66ac8-3369-11ed-a7a3-34cff6a7288f",
            "label" => "01. Phase 1 - Research",
            "name" => "Test Stage",
            "state" => "not_started",
        ],
    ]
}