Skip to main content
PUT
/
api
/
v1
/
conversation_flow
/
{conversation_flow_id}
Update Conversation Flow By Id
curl --request PUT \
  --url 'https://api.example.com/api/v1/conversation_flow/{conversation_flow_id}?api_key=' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "num_nodes": 123,
  "num_edges": 123,
  "flow": {}
}
'
{
  "message": "Data updated successfully",
  "meta": {},
  "data": {
    "name": "<string>",
    "num_nodes": 123,
    "num_edges": 123,
    "flow": {}
  }
}

Authorizations

api_key
string
query
required

Your API key for authentication. You can generate it from the Settings page. Format: starts with in-.

Path Parameters

conversation_flow_id
string<uuid>
required

Body

application/json
name
string | null
num_nodes
integer | null
num_edges
integer | null
flow
Flow · object

Response

Successful Response

message
string | null
default:Data updated successfully
meta
Meta · object
data
IConversationFlowUpdate · object