Update an existing collection rule.
Input
application/jsonactive
boolean
Optional
No description available.
description
string
Optional
No description available.
maxLength: 2000 bytesfollowedActors
array
Optional
No description available.
hashtags
array
Optional
No description available.
includeOwnPhotos
boolean
Optional
No description available.
name
string
Optional
No description available.
maxLength: 200 bytestargetAlbumUri
stringat-uri
Optional
An AT Protocol URI (e.g., at://did:plc:xyz/app.bsky.feed.post/abc).
targetScope
refnet.atpix.gallery.defs#targetScope
Optional
No description available.
uri
stringat-uri
Required
An AT Protocol URI (e.g., at://did:plc:xyz/app.bsky.feed.post/abc).
useFollowGraph
boolean
Optional
No description available.
Output
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
},
"active": {
"type": "boolean"
},
"hashtags": {
"type": "array",
"items": {
"type": "string",
"maxLength": 64
}
},
"description": {
"type": "string",
"maxLength": 2000
},
"targetScope": {
"ref": "net.atpix.gallery.defs#targetScope",
"type": "ref"
},
"followedActors": {
"type": "array",
"items": {
"type": "string",
"format": "did"
}
},
"targetAlbumUri": {
"type": "string",
"format": "at-uri"
},
"useFollowGraph": {
"type": "boolean"
},
"includeOwnPhotos": {
"type": "boolean"
}
}
},
"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 an existing collection rule."
}