Skip to main content
GET
/
workflows
/
authorization
List workflow authorizations
curl --request GET \
  --url https://v1.api.altostrat.io/workflows/authorization \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "auth_2m3h5n7k9j8g7f6e5d4c3b2a1",
    "user_id": "usr_2m3h5n7k9j8g7f6e5d4c3b2a1",
    "provider": "altostrat",
    "status": "active",
    "created_at": "2026-04-20T00:00:00Z"
  }
]

Documentation Index

Fetch the complete documentation index at: https://altostrat.io/docs/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Standard JWT for user sessions obtained via Altostrat authentication.

Response

Workflow authorizations.

id
string

The workflow authorization identifier.

Example:

"auth_2m3h5n7k9j8g7f6e5d4c3b2a1"

user_id
string | null

The user associated with the delegated authorization.

Example:

"usr_2m3h5n7k9j8g7f6e5d4c3b2a1"

provider
string | null

The authorization provider or account type.

Example:

"altostrat"

status
string
Example:

"active"

created_at
string<date-time>
Example:

"2026-04-20T00:00:00Z"