Skip to main content
POST
/
api
/
conversations
/
{conversation_id}
/
events
/
respond_to_confirmation
Respond To Confirmation
curl --request POST \
  --url https://api.example.com/api/conversations/{conversation_id}/events/respond_to_confirmation \
  --header 'Content-Type: application/json' \
  --data '
{
  "accept": true,
  "reason": "User rejected the action."
}
'
{
  "success": true
}

Path Parameters

conversation_id
string<uuid>
required

Body

application/json

Payload to accept or reject a pending action.

accept
boolean
required
reason
string
default:User rejected the action.

Response

Successful Response

success
boolean
default:true