List albums for an author, excluding unlisted/permissioned unless caller is authorized.
Parameters
Output
Encoding
application/jsonalbums
array
Required
No description available.
cursor
string
Optional
No description available.
Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "query",
"output": {
"schema": {
"type": "object",
"required": [
"albums"
],
"properties": {
"albums": {
"type": "array",
"items": {
"ref": "net.atpix.gallery.defs#albumView",
"type": "ref"
}
},
"cursor": {
"type": "string"
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"required": [
"did"
],
"properties": {
"did": {
"type": "string",
"format": "did"
},
"limit": {
"type": "integer",
"default": 20,
"maximum": 100,
"minimum": 1
},
"cursor": {
"type": "string"
},
"visibility": {
"enum": [
"public",
"unlisted",
"permissioned"
],
"type": "string"
}
}
},
"description": "List albums for an author, excluding unlisted/permissioned unless caller is authorized."
}