Skip to content
Wazapin
Esc
navigateopen⌘Jpreview

Update IVR flow

PUT/v1/ivr-flows/{flowID}
Authorization
bearerAuthbearerAuthrequired
or
apiKeyAuthapiKeyAuthrequired
Path parameters
flowIDstringrequired
Flow ID
Request body
requiredapplication/json
descriptionstring
Flow description
graphobject
v2 flow graph
is_activeboolean
Whether the flow is active
is_call_startboolean
Auto-start on incoming calls
is_outgoing_endboolean
Use for outgoing calls
namestring
Flow name
Responses
200OK
created_atstringrequired
descriptionstringrequired
graphobjectrequired
idstringrequired
is_activebooleanrequired
is_call_startbooleanrequired
is_outgoing_endbooleanrequired
namestringrequired
updated_atstringrequired
400Bad Request
errorErrorBodyrequired
Show properties
codestringrequired
detailsErrorDetail[] | null
Show properties
Array of ErrorDetail
codestring
fieldstring
locationstring
messagestringrequired
messagestringrequired
request_idstring
401Unauthorized
errorErrorBodyrequired
Show properties
codestringrequired
detailsErrorDetail[] | null
Show properties
Array of ErrorDetail
codestring
fieldstring
locationstring
messagestringrequired
messagestringrequired
request_idstring
403Forbidden
errorErrorBodyrequired
Show properties
codestringrequired
detailsErrorDetail[] | null
Show properties
Array of ErrorDetail
codestring
fieldstring
locationstring
messagestringrequired
messagestringrequired
request_idstring
404Not Found
errorErrorBodyrequired
Show properties
codestringrequired
detailsErrorDetail[] | null
Show properties
Array of ErrorDetail
codestring
fieldstring
locationstring
messagestringrequired
messagestringrequired
request_idstring
422Unprocessable Entity
errorErrorBodyrequired
Show properties
codestringrequired
detailsErrorDetail[] | null
Show properties
Array of ErrorDetail
codestring
fieldstring
locationstring
messagestringrequired
messagestringrequired
request_idstring
500Internal Server Error
errorErrorBodyrequired
Show properties
codestringrequired
detailsErrorDetail[] | null
Show properties
Array of ErrorDetail
codestring
fieldstring
locationstring
messagestringrequired
messagestringrequired
request_idstring
Request
curl -X PUT "/v1/ivr-flows/string" \
  -H "Content-Type: application/json" \
  -d '{
  "description": "string",
  "graph": {},
  "is_active": true,
  "is_call_start": true,
  "is_outgoing_end": true,
  "name": "string"
}'
Response
{
  "created_at": "string",
  "description": "string",
  "graph": {},
  "id": "string",
  "is_active": true,
  "is_call_start": true,
  "is_outgoing_end": true,
  "name": "string",
  "updated_at": "string"
}