Skip to main content
GET
/
public
/
v2
/
workflows
/
{workflow_id}
/
versions
Get workflow version history
curl --request GET \
  --url https://api.dualentry.com/public/v2/workflows/{workflow_id}/versions/ \
  --header 'X-API-KEY: <api-key>'
[
  {
    "id": 123,
    "version_number": 123,
    "changed_by": {
      "id": 123,
      "first_name": "<string>",
      "last_name": "<string>",
      "email": "<string>"
    },
    "changed_at": "2023-11-07T05:31:56Z",
    "changes_summary": "<string>",
    "snapshot": {}
  }
]

Documentation Index

Fetch the complete documentation index at: https://docs.dualentry.com/llms.txt

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

Authorizations

X-API-KEY
string
header
required

Path Parameters

workflow_id
integer
required

Query Parameters

include_snapshot
boolean
default:false

Response

OK

id
integer
required
version_number
integer
required
changed_by
PublicChangedBySchema · object
required

Schema for user who made a change.

changed_at
string<date-time>
required
changes_summary
string
required
snapshot
Snapshot · object
Last modified on May 28, 2026