For the complete documentation index, see llms.txt. This page is also available as Markdown.

Malleable Profiles

Read Profile

get
Path parameters
uidintegerRequired
Responses
200

Successful Response

application/json
idintegerRequired
namestringRequired
file_pathstring · nullableOptional
categorystringRequired
datastringRequired
created_atstring · date-timeRequired
updated_atstring · date-timeRequired
get/api/v2/malleable-profiles/{uid}
GET /api/v2/malleable-profiles/{uid} HTTP/1.1
Accept: */*
{
  "id": 1,
  "name": "text",
  "file_path": "text",
  "category": "text",
  "data": "text",
  "created_at": "2026-01-01T00:00:00.000Z",
  "updated_at": "2026-01-01T00:00:00.000Z"
}

Update Profile

put
Path parameters
uidintegerRequired
Body
datastringRequired
Responses
200

Successful Response

application/json
idintegerRequired
namestringRequired
file_pathstring · nullableOptional
categorystringRequired
datastringRequired
created_atstring · date-timeRequired
updated_atstring · date-timeRequired
put/api/v2/malleable-profiles/{uid}
PUT /api/v2/malleable-profiles/{uid} HTTP/1.1
Content-Type: application/json
Accept: */*
Content-Length: 15

{
  "data": "text"
}
{
  "id": 1,
  "name": "text",
  "file_path": "text",
  "category": "text",
  "data": "text",
  "created_at": "2026-01-01T00:00:00.000Z",
  "updated_at": "2026-01-01T00:00:00.000Z"
}

Delete Profile

delete
Path parameters
uidintegerRequired
Responses
204

Successful Response

No content

delete/api/v2/malleable-profiles/{uid}
DELETE /api/v2/malleable-profiles/{uid} HTTP/1.1
Accept: */*

No content

Read Profiles

get
Responses
200

Successful Response

application/json
get/api/v2/malleable-profiles
GET /api/v2/malleable-profiles HTTP/1.1
Accept: */*
{
  "records": [
    {
      "id": 1,
      "name": "text",
      "file_path": "text",
      "category": "text",
      "data": "text",
      "created_at": "2026-01-01T00:00:00.000Z",
      "updated_at": "2026-01-01T00:00:00.000Z"
    }
  ]
}

Create Profile

post
Body
namestringRequired
categorystringRequired
datastringRequired
Responses
201

Successful Response

application/json
idintegerRequired
namestringRequired
file_pathstring · nullableOptional
categorystringRequired
datastringRequired
created_atstring · date-timeRequired
updated_atstring · date-timeRequired
post/api/v2/malleable-profiles
POST /api/v2/malleable-profiles HTTP/1.1
Content-Type: application/json
Accept: */*
Content-Length: 47

{
  "name": "text",
  "category": "text",
  "data": "text"
}
{
  "id": 1,
  "name": "text",
  "file_path": "text",
  "category": "text",
  "data": "text",
  "created_at": "2026-01-01T00:00:00.000Z",
  "updated_at": "2026-01-01T00:00:00.000Z"
}

Reload Profiles

post
Responses
204

Successful Response

No content

post/api/v2/malleable-profiles/reload
POST /api/v2/malleable-profiles/reload HTTP/1.1
Accept: */*

No content

Reset Profiles

post
Responses
204

Successful Response

No content

post/api/v2/malleable-profiles/reset
POST /api/v2/malleable-profiles/reset HTTP/1.1
Accept: */*

No content

Last updated

Was this helpful?