For the complete documentation index, see llms.txt. This page is also available as Markdown.

Change Call Flow

Change call flow for a specific number

GET or POST Request

https://v1.api19.com/dids/callflow/change

Argument

Required

Type

did

yes

int

call_flow_id

yes

int

fax_flow_id

no

int

Send us a POST or GET with the number and either the fax flow id or the call flow id.

curl -X POST https://v1.api19.com/dids/callflow/change \
 -d 'did=3038821111' \
 -d 'call_flow_id=10' \
 -d 'key=api_token'
curl https://v1.api19.com/dids/callflow/change?number=3039921111&call_flow_id=10&key=apitoken \
{"status":"ok"}

OR

{"status":"error", "error":"invalid callflow"}

Last updated