List Call Flow Versions
GET/resources/call_flow/:id/versions
Returns a list of versions of a Call Flow.
Request
Path Parameters
id uuidrequired
The ID of the Call Flow
Responses
- 200
A list of Call Flow versions
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
links
object
self uri
first uri
next uri
prev uri
data
object[]
id uuid
created_at date-time
updated_at date-time
document_version integer
The current revision of the call flow.
flow_data string
relayml string
A SWML document. For more information on SWML, please go to https://developer.signalwire.com/swml
{
"links": {
"self": "https://{space_name}.signalwire.com/api/fabric/resources/016e5773-c197-4446-bcc2-9c48f14e2d0a/addresses?page_size=50",
"first": "https://{space_name}.signalwire.com/api/fabric/resources/016e5773-c197-4446-bcc2-9c48f14e2d0a/addresses?page_size=50",
"next": "https://{space_name}.signalwire.com/api/fabric/resources/016e5773-c197-4446-bcc2-9c48f14e2d0a/addresses?page_number=1&page_size=50&page_token=PA6581c1fa-d985-4c8f-b53e-2fee11b579ad",
"prev": "https://{space_name}.signalwire.com/api/fabric/resources/016e5773-c197-4446-bcc2-9c48f14e2d0a/addresses?page_number=0&page_size=50&page_token=PA6581c1fa-d985-4c8f-b53e-2fee11b579ad"
},
"data": [
{
"id": "993ed018-9e79-4e50-b97b-984bd5534095",
"created_at": "2024-01-02T00:00:00Z",
"updated_at": "2024-01-02T00:00:00Z",
"document_version": 1,
"flow_data": "{}",
"relayml": "{}"
}
]
}
Loading...