Call Flows
List call flow versions
Returns a list of versions of a Call Flow.
Permissions
The API token used to authenticate must have the following scope(s) enabled to make a successful request: Voice, Messaging, Fax, or Video.
Learn more about API scopes.
get/api/fabric/resources/call_flow/{id}/versions
Path parameters
idstring required
The unique identifier of the Call Flow.
Response
The request has succeeded.
Example response
{
"data": [
{
"version": "1.0.0",
"created_at": "2023-01-01T12:00:00Z",
"updated_at": "2023-01-01T12:00:00Z",
"flow_data": {},
"relayml": {
"sections": {
"main": [
{
"answer": {
"max_duration": 3600,
"codecs": "PCMU,PCMA,OPUS",
"username": "user123",
"password": "securepassword"
}
}
]
}
}
}
],
"links": {
"self": "https://example.signalwire.com/api/fabric/call_flows/versions?page_number=0&page_size=50&type=call_flow",
"first": "https://example.signalwire.com/api/fabric/call_flows/versions?page_number=0&page_size=50&type=call_flow",
"next": "https://example.signalwire.com/api/fabric/call_flows/versions?page_number=1&page_size=50&page_token=PAbff61159-faab-48b3-959a-3021a8f5beca&type=call_flow",
"prev": "https://example.signalwire.com/api/fabric/call_flows/versions?page_number=0&page_size=50&page_token=PAbff61159-faab-48b3-959a-3021a8f5beca&type=call_flow"
}
}