SmartMemory
GET
/memory/pipeline/profiles

List all available pipeline profiles (built-in + custom).

Returns both built-in profiles and custom profiles for the current tenant.

Response Body

application/json

curl -X GET "https://example.com/memory/pipeline/profiles"
{
  "profiles": [
    {
      "id": "string",
      "name": "string",
      "display_name": "string",
      "description": "string",
      "is_builtin": true,
      "is_active": true,
      "composition": {
        "property1": "string",
        "property2": "string"
      },
      "overrides": {
        "property1": {},
        "property2": {}
      },
      "tags": [
        "string"
      ],
      "usage_count": 0
    }
  ],
  "total": 0
}