curl --request PATCH \
--url https://api.bland.ai/v1/personas/{persona_id}/inbound/{phone_number}/settings \
--header 'Content-Type: application/json' \
--header 'authorization: <authorization>' \
--data '
{
"persona_settings": {
"pathway_id": "<string>",
"pathway_version": 123,
"start_node_id": "<string>"
}
}
'{
"persona_settings": {
"pathway_id": "pathway_abc123",
"pathway_version": 2,
"start_node_id": "node_xyz"
}
}
Update persona-specific settings for a phone number attached to a persona. Use this to configure per-number pathway overrides while still using the persona’s base configuration.
curl --request PATCH \
--url https://api.bland.ai/v1/personas/{persona_id}/inbound/{phone_number}/settings \
--header 'Content-Type: application/json' \
--header 'authorization: <authorization>' \
--data '
{
"persona_settings": {
"pathway_id": "<string>",
"pathway_version": 123,
"start_node_id": "<string>"
}
}
'{
"persona_settings": {
"pathway_id": "pathway_abc123",
"pathway_version": 2,
"start_node_id": "node_xyz"
}
}
null to clear all per-number settings and fall back to the persona’s defaults.Show inbound number object
null if cleared.null on success, or a list of error objects if the request failed.{
"persona_settings": {
"pathway_id": "pathway_abc123",
"pathway_version": 2,
"start_node_id": "node_xyz"
}
}
Was this page helpful?