Skip to main content

Execute Workflow as an API (POST)

Select

Customer Managed

This operation executes a workflow that looks like an API to the caller.

Path Parameters
  • workflowname string required

    Name of the workflow to execute

Request Body
  • ClientGroupName string

    ClientGroupName if the workflow needs

  • ClientName string

    ClientName as input if workflow needs

Responses

OK


Schema
  • jobId integer
  • processId integer
POST /wapi/:workflowname    

Authorization

type: apiKeyname: Authtokenin: header

Request

Click Edit to configure Base URL
https://CommandCenterHostName/commandcenter/api
Security Scheme
token
workflowname — path required
Body

{
"ClientGroupName": "string",
"ClientName": "string"
}
curl -L -X POST 'https://CommandCenterHostName/commandcenter/api/wapi/:workflowname' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authtoken: <API_KEY_VALUE>' \
--data-raw '{
"ClientGroupName": "string",
"ClientName": "string"
}'