Load metadata

Returns all the metadata of a digital journey, such as the form driven flow(s), the steps within them, the attributes, etc.

Syntax

Copy
GET <host_address>/ftosapi/digital-journeys/<digital_journey_name>/load-metadata
 
 
Parameter Description
host_address The URL of the FintechOS platform server.
digital_journey_name The name of the digital journey.
 
 

Response

Copy
{
  "formDrivenFlows": [
    {
      "name": "string",
      "steps": [
        {
          "properties": {
            "nextButton": {
              "label": "string",
              "show": true
            },
            "previousButton": {
              "label": "string",
              "show": true
            }
          },
          "fields": [
            {
              "name": "string",
              "displayName": "string",
              "type": "string",
              "value": "string",
              "requiredLevel": 0,
              "isReadOnly": true,
              "optionSetValues": {
                "id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
                "displayName": "string",
                "name": "string",
                "value": 0,
                "orderIndex": 0
              },
              "virtualType": "string"
            }
          ],
          "stepActions": [
            {
              "id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
              "displayName": "string",
              "type": "string",
              "endpointName": "string",
              "formActionName": "string",
              "navigateNextStep": true
            }
          ],
          "isLastStep": true,
          "isFirstStep": true,
          "journeyStepType": "string",
          "journeyName": "string",
          "journeyItem": "string",
          "journeyStep": "string"
        }
      ]
    }
  ],
  "journeyName": "string"

Examples