Skip to main content
PUT
/
api
/
user
/
collection
/
{id}
Update collection (rename, move vault)
curl --request PUT \
  --url https://pria.praxislxp.com/api/user/collection/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "institution": "<string>",
  "account_shared": true,
  "parent": "<string>",
  "color": "<string>"
}
'

Documentation Index

Fetch the complete documentation index at: https://docs.praxis-ai.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

JWT token passed in authorization header

Path Parameters

id
string
required

Body

application/json
name
string
institution
string
account_shared
boolean
parent
string | null

New parent collection ID (null to move to root)

color
string | null

Accent color (#RGB / #RRGGBB). Pass null or "" to clear and revert to the default outline icon.

Pattern: ^#(?:[0-9a-fA-F]{3}|[0-9a-fA-F]{6})$

Response

Collection updated