Update/reorder a collection. Requires authentication.
Input
Encoding
application/jsoncoverImage
blob
Optional
No description available.
description
string
Optional
No description available.
maxLength: 1000 bytesitems
array
Optional
No description available.
maxLength: 500 itemsname
string
Optional
No description available.
maxLength: 200 bytestags
array
Optional
No description available.
maxLength: 10 itemsuri
stringat-uri
Required
The AT-URI of the collection
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 collection"
},
"name": {
"type": "string",
"maxLength": 200
},
"tags": {
"type": "array",
"items": {
"type": "string",
"maxLength": 64
},
"maxLength": 10
},
"items": {
"type": "array",
"items": {
"ref": "social.showcase.defs#collectionItem",
"type": "ref"
},
"maxLength": 500
},
"coverImage": {
"type": "blob"
},
"visibility": {
"type": "string",
"maxLength": 10,
"knownValues": [
"public",
"private"
]
},
"description": {
"type": "string",
"maxLength": 1000
}
}
},
"encoding": "application/json"
},
"output": {
"schema": {
"ref": "social.showcase.defs#collectionView",
"type": "ref"
},
"encoding": "application/json"
},
"description": "Update/reorder a collection. Requires authentication."
}