Skip to main content
DELETE
/
api
/
v1
/
context
/
items
/
{uid}
Delete a user-created context item
curl --request DELETE \
  --url https://api.staging.getmodus.com/api/v1/context/items/{uid} \
  --header 'Authorization: Bearer <token>'
{
  "uid": "7a3f9d2c-1111-4000-a000-000000000abc",
  "contextType": "note"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

uid
string
required

UUID of the context item.

Response

uid
string
required

UUID of the deleted context item.

Example:

"7a3f9d2c-1111-4000-a000-000000000abc"

contextType
string
required

Resolved context type at delete time. Always one of note, link, saved_query, golden_query, file_upload.

Example:

"note"