Skip to content

List flow versions

Request

List all versions saved for a flow. Each version is an immutable snapshot.

Security
bearerAuth
Path
flowUuidstringrequired

Automation UUID.

GET
/flows/api/flows/{flowUuid}/flow-versions
curl -i -X GET \
  'https://leadgen.grinfi.io/flows/api/flows/{flowUuid}/flow-versions' \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>'

Responses

List of flow versions.

Bodyapplication/json
Array [
uuidstring, (uuid)
flow_uuidstring, (uuid)
nodesArray of any
contact_sourcesArray of any
created_atstring, (date-time)
]
Response
[ { "uuid": "095be615-a8ad-4c33-8e9c-c7612fbf6c9f", "flow_uuid": "11840a54-032e-452f-857e-bb369a5e7afa", "nodes": [], "contact_sources": [], "created_at": "2019-08-24T14:15:22Z" } ]