Pixxel

Get Workflows By Id

Get workflows by a ID

GET/v0/workflows/{workflow_id}
Authorisations
AuthorizationString
Path Parameters
workflow_idstringrequired
Unique UUID identifier for the target workflow
Query Parameters
project_idstringrequired
Project identifier that the workflow belongs to
Response
application/json
OK
idstring
Unique identifier for the workflow
estimated_costinteger
Token cost estimated for this workflow
namestring
Display name of the workflow
created_bystring
Identifies the user who created this workflow
descriptionstring
Provides details about the workflow's purpose
specinteger[]
Contains the raw specification data for the workflow
created_atstring
Timestamp when the workflow was created
updated_atstring
Timestamp when the workflow was last modified
val_errorsobject[]
Validation errors encountered with this workflow
Show child attributes
project_idstring
Identifier of the project this workflow belongs to
Get Workflows By Id
1curl -X GET 'https://api.pixxel.space/v0/workflows/{workflow_id}' \
2 -H 'Authorization: YOUR_API_KEY'
Response:
{
"id": "string",
"estimated_cost": 0,
"name": "string",
"created_by": "string",
"description": "string",
"spec": [
0
],
"created_at": "string",
"updated_at": "string",
"val_errors": [
{
"from": "string",
"to": "string",
"err": "string",
"reason": "string",
"component_name": "string"
}
],
"project_id": "string"
}