Skip to main content
DELETE
/
api
/
v1
/
skills
/
{id}
/
memories
/
{memoryId}
Delete a memory
curl --request DELETE \
  --url https://api.staging.getmodus.com/api/v1/skills/{id}/memories/{memoryId} \
  --header 'Authorization: Bearer <token>'
{
  "error": {
    "message": "Skill was not found or you lack permission.",
    "requestId": "req_01HQ7K8ABCDEFGHIJKLMNOPQRS",
    "info": {
      "skillId": "sk_abc123"
    }
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
number
required

Numeric skill id.

Example:

42

memoryId
string
required

Opaque memory id as returned by the list / search endpoints.

Example:

"mem_01HRQX...ABC"

Response