Remove albumItem junction record(s). When uri is provided, deletes exactly that albumItem (albumUri and photoUri are ignored). When uri is omitted, albumUri and photoUri are required and ALL matching junction records are removed.
Input
application/jsonalbumUri
stringat-uri
Required
An AT Protocol URI (e.g., at://did:plc:xyz/app.bsky.feed.post/abc).
photoUri
string
Required
Photo record URI (public at:// or permissioned at://…/space/…). Used with albumUri when uri is omitted.
maxLength: 512 bytesuri
stringat-uri
Optional
Specific net.atpix.gallery.albumItem record URI. When set, removes only this junction record.
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": [
"albumUri",
"photoUri"
],
"properties": {
"uri": {
"type": "string",
"format": "at-uri",
"description": "Specific net.atpix.gallery.albumItem record URI. When set, removes only this junction record."
},
"albumUri": {
"type": "string",
"format": "at-uri"
},
"photoUri": {
"type": "string",
"maxLength": 512,
"description": "Photo record URI (public at:// or permissioned at://…/space/…). Used with albumUri when uri is omitted."
}
}
},
"encoding": "application/json"
},
"description": "Remove albumItem junction record(s). When uri is provided, deletes exactly that albumItem (albumUri and photoUri are ignored). When uri is omitted, albumUri and photoUri are required and ALL matching junction records are removed."
}