Update an existing item. Requires authentication.
Input
Encoding
application/jsoncategory
string
Optional
No description available.
maxLength: 100 bytesdescription
string
Optional
No description available.
maxLength: 3000 bytesexternalLink
stringuri
Optional
A valid URI.
maxLength: 2048 bytesimages
array
Optional
No description available.
maxLength: 6 itemsmetadata
unknown
Optional
No description available.
tags
array
Optional
No description available.
maxLength: 20 itemstitle
string
Optional
No description available.
maxLength: 300 bytesuri
stringat-uri
Required
The AT-URI of the item
visibility
string
Optional
No description available.
maxLength: 10 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",
"required": [
"uri"
],
"properties": {
"uri": {
"type": "string",
"format": "at-uri",
"description": "The AT-URI of the item"
},
"tags": {
"type": "array",
"items": {
"type": "string",
"maxLength": 64
},
"maxLength": 20
},
"title": {
"type": "string",
"maxLength": 300
},
"images": {
"type": "array",
"items": {
"ref": "social.showcase.defs#itemImage",
"type": "ref"
},
"maxLength": 6
},
"category": {
"type": "string",
"maxLength": 100
},
"metadata": {
"type": "unknown"
},
"visibility": {
"type": "string",
"maxLength": 10,
"knownValues": [
"public",
"unlisted",
"private"
]
},
"description": {
"type": "string",
"maxLength": 3000
},
"externalLink": {
"type": "string",
"format": "uri",
"maxLength": 2048
}
}
},
"encoding": "application/json"
},
"output": {
"schema": {
"ref": "social.showcase.defs#itemView",
"type": "ref"
},
"encoding": "application/json"
},
"description": "Update an existing item. Requires authentication."
}