Overview

Call specific LB Flowchart Service.

Request Arguments

Name Type Description Required
arguments Map Input service parameters passed to the flowchart as key-value pairs, where key is a name of service parameter, and value is a value of service parameter. false

Request Example

{
    "arguments": {
        "currency_iso_code": "EUR"
    }
}

Response Arguments

Name Type Description
arguments Map Output service parameters returned from the flowchart as key-value pairs.

Response Example

{
    "arguments": {
        "currency_iso_code": "EUR",
        "new_currency_rate": "0.83"
    }
}

Change Log

Version Change
v10 Added /flowchart/service/call/:serviceName POST endpoint.