Context Memory | Dropzone AI Documentation

Create a new user Context Memory Item

post/app/api/v1/context-memory/create

Create a new user Context Memory Item (+ optional tenant union OR tenant id/label). Prefer tenant_union_id for union-scoped context (multiple integration slots); tenant_id+tenant_label for upstream tenant scoping.

Authorizations

Body

Responses

Example HTTP Request

POST /app/api/v1/context-memory/create HTTP/1.1
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 86

{
  "content": "Hello world",
  "tenant_id": "text",
  "tenant_label": "text",
  "tenant_union_id": 1
}

Response

{
  "item_id": 1
}

Delete an existing user Context Memory Item

delete/app/api/v1/context-memory/delete/{item_id}

Authorizations

Path parameters

Responses

Example HTTP Request

DELETE /app/api/v1/context-memory/delete/{item_id} HTTP/1.1
Authorization: YOUR_API_KEY
Accept: */*

Response

{
  "item_id": 1
}

Update an existing user Context Memory Item

put/app/api/v1/context-memory/update/{item_id}

Update an existing user Context Memory Item (+ optional tenant union OR tenant id/label). Prefer tenant_union_id for union-scoped context (multiple integration slots); tenant_id+tenant_label for upstream tenant scoping.

Authorizations

Path parameters

Body

Responses

Example HTTP Request

PUT /app/api/v1/context-memory/update/{item_id} HTTP/1.1
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 86

{
  "content": "Hello world",
  "tenant_id": "text",
  "tenant_label": "text",
  "tenant_union_id": 1
}

Response

{
  "item_id": 1
}

Last updated 8 months ago.