Skip to main content
DELETE
/
learnings
/
{learning_id}
Delete Learning
curl --request DELETE \
  --url https://api.example.com/learnings/{learning_id} \
  --header 'Authorization: Bearer <token>'
{
  "detail": "Unauthenticated access",
  "error_code": "UNAUTHENTICATED"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

learning_id
string
required

The learning ID

Query Parameters

db_id
string | null

Database ID to use

table
string | null

The database table to use (requires db_id)

Response

Learning deleted successfully