Skip to main content
DELETE
/
workflow
/
call
/
{workflowId}
cURL
curl --request DELETE \
  --url https://api.subverseai.com/api/workflow/call/{workflowId} \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '{
  "customer_number": "+912298765432"
}'
{
"responseCode": 200,
"message": "Workflow call details updated successfully",
"data": null
}

Authorizations

x-api-key
string
header
required

Authentication header containing API key from SubVerse dashboard.

Path Parameters

workflowId
string
required

Unique identifier of the workflow.

Body

application/json
customer_number
string
required

User's phone number. Must be a valid phone number with country code, with or without '+' prefix.

Response

200 - application/json

Returns error or success response

responseCode
integer
required

Always returns 200 value, with error or success response details in message.

message
string
required

Success or error message with description.

data
any

Additional details if available.

I