Update a user’s profile information. Providing a parameter will overwrite the existing value.Documentation Index
Fetch the complete documentation index at: https://docs.blobhub.io/llms.txt
Use this file to discover all available pages before exploring further.
PATCH /users/:id
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
id | string | Yes | The unique ID or alias of the user to update. |
Request Body
| Parameter | Type | Required | Description |
|---|---|---|---|
alias | string | No | New alias for the user. Must be globally unique. |
name | string | No | User’s full name. |
description | string | No | A short bio or description. |
url | string | No | URL to a personal website or profile. |
Response
Returns an empty JSON object upon success.Example
Identifier
Theid parameter accepts a UUID, alias, or me.
Permissions
Only the user themselves can update their profile. Requests targeting a different user return403 Forbidden.
The
alias field can only be set once. Attempting to change an existing alias returns an error.
