DELETE
/
v1
/
pathway
/
{pathway_id}
/
version
/
{version_id}
Delete Pathway Version
curl --request DELETE \
  --url https://api.bland.ai/v1/pathway/{pathway_id}/version/{version_id} \
  --header 'authorization: <authorization>'
{
  "status": "success",
  "message": "Version deleted successfully"
}

Headers

authorization
string
required
Your API key for authentication.

Path Parameters

pathway_id
string
required
The ID of the pathway containing the version to be deleted.
version_id
string
required
The ID of the version to be deleted.

Response

status
string
The status of the operation (e.g., “success”).
message
string
A message describing the result of the operation.
{
  "status": "success",
  "message": "Version deleted successfully"
}