Get Started
Connections
Workflows
Case Management
- GETList Records from Case Management Table
- DELDelete a Record from Case Management Table
- PUTUpdate Field for Case Management Table
- POSTCreate an Alert
- PUTUpdate an Alert
- POSTCreate an Attachment
- PUTUpdate an Attachment
- POSTCreate a Case
- PUTUpdate a Case
- POSTCreate an Observable
- PUTUpdate an Observable
- POSTCreate a Task
- PUTUpdate a Task
Users
Executions
Workspaces
Executions
Get Workflow's execution output
Gets the output of a specific workflow execution by ID.
GET
/
workspace
/
{ws_id}
/
executions
/
{id}
/
outputs
Copy
Ask AI
curl --request GET \
--url https://app.blinkops.com/api/v1/workspace/{ws_id}/executions/{id}/outputs \
--header 'BLINK-API-KEY: <api-key>'
Copy
Ask AI
{
"app_id": "<string>",
"async_parent_execution_id": "<string>",
"cancel_reason": "<string>",
"created_at": 123,
"created_by": "<string>",
"ctrl_id": "<string>",
"draft_execution_number": 123,
"execution_depth": 123,
"execution_number": 123,
"finished_at": 123,
"id": "<string>",
"last_playbook_name": "<string>",
"name": "<string>",
"parent_execution_id": "<string>",
"playbook": "<string>",
"playbook_id": "<string>",
"runner_cluster_version": "<string>",
"runner_group_id": "<string>",
"runner_id": "<string>",
"runner_version": "<string>",
"started_at": 123,
"state": "<string>",
"state_ui": "<string>",
"step_results": {},
"tenant_id": "<string>",
"timeout": 123,
"timeout_at": 123,
"top_execution_id": "<string>",
"trigger_type": "<string>",
"type": "<string>",
"updated_at": 123,
"updated_by": "<string>",
"version": "<string>",
"with_concurrency_limit": true,
"workspace_id": "<string>"
}
Authorizations
Use your API key to access BlinkOps API. To generate an API key, please log in to your BlinkOps account and navigate to the API Keys section in the user settings page. Add the generated key to your request headers as BLINK-API-KEY.
Response
200
application/json
ok
The response is of type object
.
Was this page helpful?
Copy
Ask AI
curl --request GET \
--url https://app.blinkops.com/api/v1/workspace/{ws_id}/executions/{id}/outputs \
--header 'BLINK-API-KEY: <api-key>'
Copy
Ask AI
{
"app_id": "<string>",
"async_parent_execution_id": "<string>",
"cancel_reason": "<string>",
"created_at": 123,
"created_by": "<string>",
"ctrl_id": "<string>",
"draft_execution_number": 123,
"execution_depth": 123,
"execution_number": 123,
"finished_at": 123,
"id": "<string>",
"last_playbook_name": "<string>",
"name": "<string>",
"parent_execution_id": "<string>",
"playbook": "<string>",
"playbook_id": "<string>",
"runner_cluster_version": "<string>",
"runner_group_id": "<string>",
"runner_id": "<string>",
"runner_version": "<string>",
"started_at": 123,
"state": "<string>",
"state_ui": "<string>",
"step_results": {},
"tenant_id": "<string>",
"timeout": 123,
"timeout_at": 123,
"top_execution_id": "<string>",
"trigger_type": "<string>",
"type": "<string>",
"updated_at": 123,
"updated_by": "<string>",
"version": "<string>",
"with_concurrency_limit": true,
"workspace_id": "<string>"
}
Assistant
Responses are generated using AI and may contain mistakes.