PATCH
/
v3
/
settings
curl --request PATCH \
  --url https://api.supermemory.ai/v3/settings \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "shouldLLMFilter": true,
  "filterPrompt": "<string>",
  "includeItems": [
    "<string>"
  ],
  "excludeItems": [
    "<string>"
  ],
  "filterTags": {}
}'
{
  "orgId": "<string>",
  "orgSlug": "<string>",
  "updated": {
    "shouldLLMFilter": true,
    "filterPrompt": "<string>",
    "includeItems": [
      "<string>"
    ],
    "excludeItems": [
      "<string>"
    ],
    "filterTags": {}
  }
}

Authorizations

Authorization
string
header
required

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

Body

application/json

Response

200
application/json

Settings updated successfully

The response is of type object.