/
var
/
www
/
html
/
sugardemo
/
include
/
api
/
help
/
Upload File
HOME
<!-- /* * Your installation or use of this SugarCRM file is subject to the applicable * terms available at * http://support.sugarcrm.com/Resources/Master_Subscription_Agreements/. * If you do not agree to all of the applicable terms or do not have the * authority to bind the entity as an authorized representative, then do not * install or use this SugarCRM file. * * Copyright (C) SugarCRM Inc. All rights reserved. */ --> <h2 xmlns="http://www.w3.org/1999/html">Overview</h2> <span class="lead"> Provide journey of chart and related stages data </span> <h2>Summary</h2> <span class="lead"> This request will return journey and related stages data of chart </span> <h2>Request Arguments</h2> <table class="table table-hover"> <thead> <tr> <th>Name</th> <th>Type</th> <th>Description</th> <th>Required</th> </tr> </thead> <tbody> <tr> <td> module </td> <td> String </td> <td> Record module </td> <td> True </td> </tr> <tr> <td> record </td> <td> Object </td> <td> Object containing id of the current record </td> <td> True </td> </tr> <tr> <td> selected </td> <td> Boolean </td> <td> True if current record is selected otherwise false </td> <td> False </td> </tr> </tbody> </table> <br> <h3>Request Example</h3> <pre class="pre-scrollable"> { "module": "DRI_Workflows", "record": { "id": "e00ce644-2ce5-11ed-8ea1-0242ac120006", }, "selected": { "selected": true, } } </pre> <h2>Response</h2> <span class="lead"> The response will be an object containing the following fields: </span> <table class="table table-hover"> <thead> <tr> <th>Name</th> <th>Type</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td> data </td> <td> Array </td> <td> Journey Attributes with related Stages </td> </tr> </tbody> </table> <h3>Response Example</h3> <pre class="pre-scrollable">{ "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", ], ] }</pre>