No description available.
Input
application/jsonavatar
blob
OptionalNullable
Blob reference for the new avatar. Send null to clear it; omit the field to leave it unchanged.
maxSize: 1.0 MBbanner
blob
OptionalNullable
Blob reference for the new banner. Send null to clear it; omit the field to leave it unchanged.
maxSize: 1.0 MBbio
string
OptionalNullable
New profile description. Send null to clear it; omit the field to leave it unchanged.
maxLength: 2560 bytesmaxGraphemes: 256 graphemesdisplayName
string
OptionalNullable
New display name. Send null to clear it; omit the field to leave it unchanged.
maxLength: 640 bytesmaxGraphemes: 64 graphemeslinks
array
OptionalNullable
Replacement set of external links. Send null to clear them; omit the field to leave them unchanged.
maxLength: 10 itemsOutput
application/jsoncid
string
Required
No description available.
uri
stringat-uri
Required
An AT Protocol URI (e.g., at://did:plc:xyz/app.bsky.feed.post/abc).
Errors
Unauthenticated
InvalidProfile
Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "procedure",
"input": {
"schema": {
"type": "object",
"nullable": [
"displayName",
"bio",
"avatar",
"banner",
"links"
],
"properties": {
"bio": {
"type": "string",
"maxLength": 2560,
"description": "New profile description. Send null to clear it; omit the field to leave it unchanged.",
"maxGraphemes": 256
},
"links": {
"type": "array",
"items": {
"ref": "app.bivri.actor.profile#link",
"type": "ref"
},
"maxLength": 10,
"description": "Replacement set of external links. Send null to clear them; omit the field to leave them unchanged."
},
"avatar": {
"type": "blob",
"accept": [
"image/png",
"image/jpeg",
"image/webp"
],
"maxSize": 1000000,
"description": "Blob reference for the new avatar. Send null to clear it; omit the field to leave it unchanged."
},
"banner": {
"type": "blob",
"accept": [
"image/png",
"image/jpeg",
"image/webp"
],
"maxSize": 1000000,
"description": "Blob reference for the new banner. Send null to clear it; omit the field to leave it unchanged."
},
"displayName": {
"type": "string",
"maxLength": 640,
"description": "New display name. Send null to clear it; omit the field to leave it unchanged.",
"maxGraphemes": 64
}
}
},
"encoding": "application/json"
},
"errors": [
{
"name": "Unauthenticated"
},
{
"name": "InvalidProfile"
}
],
"output": {
"schema": {
"type": "object",
"required": [
"uri",
"cid"
],
"properties": {
"cid": {
"type": "string"
},
"uri": {
"type": "string",
"format": "at-uri"
}
}
},
"encoding": "application/json"
}
}