Skip to main content
GET
Fetch Blocked Users
Returns a paginated list of the users the acting user has blocked (their outbound blocks), each row carrying a public summary of the blocked user. This is the private “manage / way back to unblock” surface.
A block list is private — only the blocker can read their own list. It exposes only the caller’s outbound blocks; there is no way to read who has blocked the caller.
Requires the moderation bundle. A project without the moderation bundle returns 403 database/tables-not-available. See Bundles.

Query Parameters

number
default:"1"
Page number for pagination.
number
default:"20"
Number of results per page. Max 100.
string
The user whose own block list to read (the blocker). Only service/master keys may supply a userId other than the caller’s own; with a user token the subject is derived from the token.

Response

On success, returns HTTP 200 with a paginated response:
array
Array of block entries.
object
Pagination metadata.

See Also