Skip to content

List all workflows in the environment

GET
/v1/workflows
curl --request GET \
--url https://your-notavia-host/v1/workflows \
--header 'Authorization: Bearer <token>'

Workflow list returned.

Media type application/json
object
data
Array<object>
object
id
required
string format: uuid
key
required
string
name
required
string
status
required
string
Allowed values: draft active disabled
active_version
integer
nullable
trigger_count_7d
required
integer format: int64
created_at
required
string format: date-time
Example
{
"data": [
{
"status": "draft"
}
]
}

Missing or invalid credentials.

Media type application/json
object
error
required
object
type
required
string
code
required
string
message
required
string
param
string
nullable
Example generated
{
"error": {
"type": "example",
"code": "example",
"message": "example",
"param": "example"
}
}

Credentials do not have the required scope.

Media type application/json
object
error
required
object
type
required
string
code
required
string
message
required
string
param
string
nullable
Example generated
{
"error": {
"type": "example",
"code": "example",
"message": "example",
"param": "example"
}
}