Cancel response endpoint
POST
/v1/responses/{response_id}/cancel
const url = 'https://example.com/v1/responses/example/cancel';const options = {method: 'POST'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request POST \ --url https://example.com/v1/responses/example/cancelParameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ” response_id
required
string
The ID of the response to cancel
Responses
Section titled “ Responses ”Response cancelled