Skip to main content
DELETE
/
v1
/
agents
/
{agent_id}
/
post-call-questions
/
{question_id}
Delete post-call question
curl --request DELETE \
  --url https://api.callrounded.com/v1/agents/{agent_id}/post-call-questions/{question_id} \
  --header 'X-Api-Key: <api-key>'
{
"message": "<string>",
"data": "<unknown>",
"error": {
"details": [
{
"field": "email",
"message": "Invalid email format"
}
],
"message": "An error occurred while processing your request",
"status": 400,
"type": "generic_error"
},
"status": 200
}

Authorizations

X-Api-Key
string
header
required

The API Key created in Rounded Studio.

Path Parameters

agent_id
string<uuid>
required

Agent ID

question_id
string<uuid>
required

Question ID

Query Parameters

soft_delete
boolean
default:true

Perform soft delete (deactivate) instead of hard delete

Response

Successfully deleted post-call question

Post-call question deletion API response.

message
string
required
data
null
error
ApiResponseError · object
Example:
{
"details": [
{
"field": "email",
"message": "Invalid email format"
}
],
"message": "An error occurred while processing your request",
"status": 400,
"type": "generic_error"
}
status
integer
default:200

HTTP status code of the response.