Skip to main content
GET
/
workflows
/
{id}
/
versions
List Workflow Versions
curl --request GET \
  --url https://app.splox.io/api/v1/workflows/{id}/versions \
  --header 'Authorization: Bearer <token>'
{
  "versions": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "workflow_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "version_number": 123,
      "name": "<string>",
      "status": "draft",
      "description": "<string>",
      "metadata": {},
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z"
    }
  ]
}
Lists all versions of a workflow. Not paginated — returns all versions.

Usage

curl https://app.splox.io/api/v1/workflows/019c3221-29d7-70e1-aa1e-dee02589289b/versions \
  -H "Authorization: Bearer YOUR_TOKEN"

Path Parameters

ParameterTypeDescription
idstring (uuid)Workflow ID

Response

{
  "versions": [
    {
      "id": "019c3221-29da-7d08-93fa-c48dbaa8b1db",
      "workflow_id": "019c3221-29d7-70e1-aa1e-dee02589289b",
      "version_number": 1,
      "name": "My Workflow",
      "description": "Initial version",
      "status": "draft",
      "created_at": "2025-10-22T10:00:00Z",
      "updated_at": "2025-10-22T10:00:00Z"
    },
    {
      "id": "019c3221-29da-7d08-93fa-c48dbaa8b1dc",
      "workflow_id": "019c3221-29d7-70e1-aa1e-dee02589289b",
      "version_number": 2,
      "name": "My Workflow v2",
      "description": "Published version",
      "status": "published",
      "created_at": "2025-10-25T14:00:00Z",
      "updated_at": "2025-10-25T14:00:00Z"
    }
  ]
}

Version Status

StatusDescription
draftWork in progress — can be edited
publishedPublished and immutable
archivedNo longer active

Notes

Authentication required. The authenticated user must own the workflow.
Use Get Latest Version if you only need the most recent version for running a workflow.

Authorizations

Authorization
string
header
required

API token generated from your Splox account settings. Create tokens at https://app.splox.io/account?tab=settings

Path Parameters

id
string<uuid>
required

Workflow ID

Response

Versions retrieved successfully

versions
object[]