Update memory bank disposition
PUT/v1/default/banks/{bank_id}/profileUpdate bank's disposition traits (skepticism, literalism, empathy)
Authentication required — include an
Authorization: Bearer hsk_...header. See Authentication for details.
Path Parameters
| Name | Type | Required | Description |
|---|---|---|---|
bank_id | string | Yes |
Request Body
Content-Type: application/json
json
{
"disposition": {
"empathy": 3,
"literalism": 3,
"skepticism": 3
}
}Example Request
bash
curl -X PUT 'https://api.hindsight.vectorize.io/v1/default/banks/your-bank-id/profile' \
-H 'Authorization: Bearer hsk_your_api_key' \
-H 'Content-Type: application/json' \
-d '{
"disposition": {
"empathy": 3,
"literalism": 3,
"skepticism": 3
}
}'Responses
200 — Successful Response
json
{
"bank_id": "user123",
"disposition": {
"empathy": 3,
"literalism": 3,
"skepticism": 3
},
"mission": "I am a software engineer helping my team stay organized and ship quality code",
"name": "Alice"
}422 — Validation Error
json
{
"detail": [
{
"loc": [
null
],
"msg": "Message",
"type": "Error Type",
"input": null,
"ctx": {},
"url": "URL"
}
]
}