POST
/v1/mgmt/flow/list

Authorization

AuthorizationRequiredBearer <token>

< Project ID >:< Management Key > as bearer

In: header

Request Body

application/jsonRequired
idsarray<string>
curl -X POST "https://api.descope.com/v1/mgmt/flow/list" \
  -H "Authorization: Bearer <token>" \
  -H "Content-Type: application/json" \
  -d '{
    "ids": [
      "string"
    ]
  }'

OK

{
  "flows": [
    {
      "id": "string",
      "version": 0,
      "name": "string",
      "description": "string",
      "dsl": {},
      "modifiedTime": "string",
      "etag": "string",
      "disabled": true,
      "translate": true,
      "translateConnectorID": "string",
      "translateSourceLang": "string",
      "translateTargetLangs": [
        "string"
      ],
      "fingerprint": true,
      "widget": true,
      "sharedInteractions": [
        {
          "id": "string",
          "type": "string",
          "label": "string",
          "icon": "string",
          "subType": "string"
        }
      ]
    }
  ],
  "total": 0
}

Was this helpful?