LeMUR

Purge LeMUR request data

DEL
Delete the data for a previously submitted LeMUR request. The LLM response data, as well as any context provided in the original request will be removed.

Path parameters

request_idstringRequired
The ID of the LeMUR request whose data you want to delete. This would be found in the response of the original request.

Response

This endpoint returns an object
request_id
string
The ID of the deletion request of the LeMUR request
request_id_to_purge
string
The ID of the LeMUR request to purge the data for
deleted
boolean
Whether the request data was deleted
DEL
1curl -X DELETE https://api.assemblyai.com/lemur/v3/request_id \
2 -H "Authorization: <apiKey>"
200
Deleted
1{
2 "request_id": "914fe7e4-f10a-4364-8946-34614c2873f6",
3 "request_id_to_purge": "b7eb03ec-1650-4181-949b-75d9de317de1",
4 "deleted": true
5}