View Workflow Configuration Names

get

/api/restapi/workflowInstance/workflowConfiguration

Send a request to this endpoint to view workflow configuration names under the given workspaces.

Request

Query Parameters

There's no request body for this operation.

Back to Top

Response

Supported Media Types

200 Response

Response will be in the format of two maps: configurationGroupedByWorkspaceId and configurationGroupedByWorkspaceCode. As the name suggests, first field maps the given workspaceIds to list of workflow configuration names present in it and the later one maps the given workspace codes to the list of workflow configuration names present it. For example:
{
"configurationGroupedByWorkspaceId": {
"4001": [
"Configutation 1",
"Configutation 2"
]
},
"configurationGroupedByWorkspaceCode": {
"Workspace Code": [
"Configuration 3",
"Configuration 4"
]
}
}
Projection, pagination & record count will be the supported OOTB features.
Body ()
Root Schema : List<ApiEntityWorkflowConfiguration>
Type: array
Title: List<ApiEntityWorkflowConfiguration>
Show Source
Nested Schema : ApiEntityWorkflowConfiguration
Type: object
Title: ApiEntityWorkflowConfiguration
Show Source
Nested Schema : configurationGroupedByWorkspaceCode
Type: object
Workflow configuration names grouped by workspace code.
Nested Schema : configurationGroupedByWorkspaceId
Type: object
Workflow configuration names grouped by workspace ID.

204 Response

Successful operation with no content.

400 Response

Invalid Input.
Back to Top