Delete chat completion
DELETE/chat/completions/{completion_id}
Delete a stored chat completion. Only Chat Completions that have been
created with the store parameter set to true can be deleted.
Path Parameters
completion_id: string
Returns
Delete chat completion
curl https://api.openai.com/v1/chat/completions/$COMPLETION_ID \
-X DELETE \
-H "Authorization: Bearer $OPENAI_API_KEY"{
"id": "id",
"deleted": true,
"object": "chat.completion.deleted"
}Returns Examples
{
"id": "id",
"deleted": true,
"object": "chat.completion.deleted"
}