Enumerate the accounts blocked by the authenticated viewer (their own block list). Viewer-private: requires a session (AuthRequired logged-out). No actor parameter — only the caller's own list is accessible. Each row is the medium profileView (identity-only; no viewer object, since the block relationship is trivially known). Unbounded and unordered this version; cursor is reserved for future pagination and is never emitted.
Parameters
Output
application/jsonblocks
array
Required
The blocked accounts, identity-only.
cursor
string
Optional
Reserved for future pagination; absent this version.
Errors
AuthRequired
The caller is not authenticated; the block list is viewer-private and requires a session. Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "query",
"errors": [
{
"name": "AuthRequired",
"description": "The caller is not authenticated; the block list is viewer-private and requires a session."
}
],
"output": {
"schema": {
"type": "object",
"required": [
"blocks"
],
"properties": {
"blocks": {
"type": "array",
"items": {
"ref": "community.gifthood.actor.defs#profileView",
"type": "ref"
},
"description": "The blocked accounts, identity-only."
},
"cursor": {
"type": "string",
"description": "Reserved for future pagination; absent this version."
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"properties": {
"cursor": {
"type": "string",
"description": "Reserved for future pagination; the full list is returned this version and no cursor is emitted."
}
}
},
"description": "Enumerate the accounts blocked by the authenticated viewer (their own block list). Viewer-private: requires a session (AuthRequired logged-out). No actor parameter — only the caller's own list is accessible. Each row is the medium profileView (identity-only; no viewer object, since the block relationship is trivially known). Unbounded and unordered this version; cursor is reserved for future pagination and is never emitted."
}