Saves the calling person's own profile — the name they are shown by, their…
Saves the calling person's own profile — the name they are shown by, their picture, a line about themselves and a link.
PUT /v1/iam/account
| Address | https://api.hanzo.ai/v1/iam/account |
| Method | PUT |
| Operation | put_iam_account |
| Auth | Authorization: Bearer $HANZO_API_KEY |
Saves the calling person's own profile — the name they are shown by, their picture, a line about themselves and a link.
Only their own: the request names nobody, so it cannot reach another account. Send only what you are changing; a field you leave out keeps the value it had, and a field you send empty is cleared.
A picture is an https link or an inline image up to 96 KiB, the same value an organization's mark is (schema.AvatarRef) — one rule for how a subject appears, whether the subject is a person or an organization.
Request
6 fields, body application/json (required).
| Field | In | Type | Required | Description |
|---|---|---|---|---|
Cookie | header | string | — | |
Authorization | header | string | — | |
avatar | body | string | — | |
bio | body | string | — | |
displayName | body | string | — | |
homepage | body | string | — |
Response
| Status | Body | Meaning |
|---|---|---|
200 | iam.Answer | ok |
400 | iam.Answer | bad request |
200 body — 8 fields.
| Field | In | Type | Always | Description |
|---|---|---|---|---|
code | body | string | — | |
data | body | object | — | |
data2 | body | object | — | |
data3 | body | object | — | |
msg | body | string | — | |
name | body | string | — | |
status | body | string | — | |
sub | body | string | — |
Failure carries the platform error shape — see Errors.
Examples
hanzo iam account replaceimport { Configuration, IamApi } from 'hanzoai';
const api = new IamApi(new Configuration({ accessToken: process.env.HANZO_API_KEY }));
const { data } = await api.putIamAccount({ avatar: "<avatar>", bio: "<bio>" });from hanzoai.cloud import ApiClient, Configuration
from hanzoai.cloud.api import IamApi
client = ApiClient(Configuration(access_token=os.environ["HANZO_API_KEY"]))
result = IamApi(client).put_iam_account(avatar="<avatar>", bio="<bio>")cfg := cloud.NewConfiguration()
cfg.AddDefaultHeader("Authorization", "Bearer "+os.Getenv("HANZO_API_KEY"))
client := cloud.NewAPIClient(cfg)
resp, _, err := client.IamAPI.PutIamAccount(context.Background()).Execute()
if err != nil {
return err
}use hanzo_cloud::apis::{configuration::Configuration, iam_api};
let mut cfg = Configuration::new();
cfg.bearer_access_token = std::env::var("HANZO_API_KEY").ok();
let result = iam_api::put_iam_account(&cfg, Default::default()).await?;import ai.hanzo.cloud.ApiClient;
import ai.hanzo.cloud.api.IamApi;
ApiClient client = new ApiClient();
client.setRequestInterceptor(b -> b.header("Authorization", "Bearer " + System.getenv("HANZO_API_KEY")));
var result = new IamApi(client).putIamAccount();curl -X PUT https://api.hanzo.ai/v1/iam/account \
-H "Authorization: Bearer $HANZO_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"avatar": "<avatar>",
"bio": "<bio>"
}'The door reaches iam through the iam tool, which names its 75 operations with its own verbs — this one among them, under a name only the door declares. describe explains any of them:
curl -X POST https://api.hanzo.ai/v1/mcp \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "describe",
"arguments": {
"op": "list__well_known_jwks"
}
}
}'How is this guide?