Skip to main content
Delete conversation
curl --request DELETE \
  --url https://api.dimedove.com/v1/apps/{app_id}/conversations/{conversation_id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "object": "conversation",
  "deleted": true
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

app_id
string
required

The unique identifier of the app.

conversation_id
string
required

The unique identifier of the conversation.

Response

OK

id
string
required

The ID of the deleted conversation.

object
string
default:conversation

The object type. Always 'conversation'.

deleted
boolean
default:true

Indicates the conversation was successfully deleted. Always true.