Malleable Profiles
Path parameters
uidintegerRequired
Responses
200
Successful Response
application/json
idintegerRequired
namestringRequired
file_pathstring · nullableOptional
categorystringRequired
datastringRequired
created_atstring · date-timeRequired
updated_atstring · date-timeRequired
400
Bad request
application/json
404
Not found
application/json
422
Validation Error
application/json
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"
}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
400
Bad request
application/json
404
Not found
application/json
422
Validation Error
application/json
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"
}Responses
200
Successful Response
application/json
400
Bad request
application/json
404
Not found
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"
}
]
}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
400
Bad request
application/json
404
Not found
application/json
422
Validation Error
application/json
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"
}Last updated
Was this helpful?