Update user profile. Requires authentication.
Input
Encoding
application/jsonavatar
blob
Optional
No description available.
banner
blob
Optional
No description available.
bio
string
Optional
No description available.
maxLength: 256 bytesdisplayName
string
Optional
No description available.
maxLength: 64 bytesshowcase
array
Optional
Featured showcase items
maxLength: 4 itemstags
array
Optional
No description available.
maxLength: 10 itemswebsite
stringuri
Optional
A valid URI.
maxLength: 2048 bytesOutput
Encoding
application/jsonTry 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",
"properties": {
"bio": {
"type": "string",
"maxLength": 256
},
"tags": {
"type": "array",
"items": {
"type": "string",
"maxLength": 64
},
"maxLength": 10
},
"avatar": {
"type": "blob"
},
"banner": {
"type": "blob"
},
"website": {
"type": "string",
"format": "uri",
"maxLength": 2048
},
"showcase": {
"type": "array",
"items": {
"ref": "social.showcase.defs#showcaseItem",
"type": "ref"
},
"maxLength": 4,
"description": "Featured showcase items"
},
"displayName": {
"type": "string",
"maxLength": 64
}
}
},
"encoding": "application/json"
},
"output": {
"schema": {
"ref": "social.showcase.defs#profileView",
"type": "ref"
},
"encoding": "application/json"
},
"description": "Update user profile. Requires authentication."
}