Workflow Execution Step Details API

GET/qflowapi/v1/executions/{executionId}/steps/{nodeId}

Use this API to get detailed information for a specific execution step. This includes step status, time stamps, and any errors encountered during execution.

Required Permissions

The following permissions are needed to get the workflow execution step details.

  • LIST ALL
  • LIST WF BY TAGS
  • LIST MY

Input ParametersInput Parameters

Parameter

Mandatory/Optional

Data Type

Description

executionId

Mandatory

 String

Provide a valid execution ID. Ensure it is UUID.

For example: '0ffaf046-768b-79fc-83f6-aa25be52c2a1'.

nodeId

Mandatory

String

Provide a node ID.

For example: node-67649155-filter

Note: Ensure Node ID must not empty.

Authorization 

Mandatory

String

Authorization token to authenticate to the Qualys Cloud Platform.

Prepend token with 'Bearer' and one space.

For example - Bearer <authToken>

Sample: Get detailed information for a specific execution stepSample: Get detailed information for a specific execution step

API Request

curl -X GET
'<qualys_base_url>/qflowapi/v1/executions/0e72b4a1-abea-45b2-9ae9-91cd87506404/steps/node-e3a84822-qualysevent'
-H "Accept: application/json"
-H "Content-Type: application/json"
-H "Authorization: Bearer <jwt token>"

Response

{
    "id":"01JT3585YRG0DHQNS9DNN432X3",
    "createdAt":1746010380248,
    "updatedAt":1746010380248,
    "tags":[
        "created_by=0ffaf046-768b-79fc-83f6-aa25be52c2a1"
    ],
    "customerId":"54f50897-26f3-c9af-83f9-e71459be70d9",
    "eventOrder":2,
    "nodeId":"node-e3a84822-qualysevent",
    "execution":"0e72b4a1-abea-45b2-9ae9-91cd87506404",
    "nodeType":"qualysevent",
    "

    },
    "parDateKey":"2025-04-30T00:00:00.000Z"
}