Update album metadata. Does not change visibility class or space binding.
Input
Encoding
application/jsoncollectionRuleUris
array
Optional
No description available.
maxLength: 20 itemscoverPhotoUri
stringat-uri
Optional
An AT Protocol URI (e.g., at://did:plc:xyz/app.bsky.feed.post/abc).
description
string
Optional
No description available.
maxLength: 5000 bytesname
string
Optional
No description available.
maxLength: 200 bytesuri
stringat-uri
Required
An AT Protocol URI (e.g., at://did:plc:xyz/app.bsky.feed.post/abc).
Output
Encoding
application/jsoncid
stringcid
Required
A content identifier (CID) referencing immutable data.
uri
stringat-uri
Required
An AT Protocol URI (e.g., at://did:plc:xyz/app.bsky.feed.post/abc).
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",
"required": [
"uri"
],
"properties": {
"uri": {
"type": "string",
"format": "at-uri"
},
"name": {
"type": "string",
"maxLength": 200
},
"description": {
"type": "string",
"maxLength": 5000
},
"coverPhotoUri": {
"type": "string",
"format": "at-uri"
},
"collectionRuleUris": {
"type": "array",
"items": {
"type": "string",
"format": "at-uri"
},
"maxLength": 20
}
}
},
"encoding": "application/json"
},
"output": {
"schema": {
"type": "object",
"required": [
"uri",
"cid"
],
"properties": {
"cid": {
"type": "string",
"format": "cid"
},
"uri": {
"type": "string",
"format": "at-uri"
}
}
},
"encoding": "application/json"
},
"description": "Update album metadata. Does not change visibility class or space binding."
}