GET api/BlockedUsers
Returns all blocked users for the authenticated tenant. Only 100 blocked user can be returned at a time. The following OData query options are allowed: $filter, $orderby, $select, $skip, $top.
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of BlockedUser| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| UserId |
ID of the blocked user. |
string |
Required |
| Created |
The date when the user was blocked (in the ISO 8601 format). |
date |
Required |
Status Codes
All HTTP status codes must be expected, but the following status codes are the most probable:
- OK (200) - All found blocked users are successfully returned.
- BadRequest (400) - The OData query is invalid.
Response Formats
application/json, text/json
Sample:
[
{
"Id": "dc6391ce-1461-450c-9f96-a84e8d3eb544",
"UserId": "sample string 2",
"Created": "2025-11-19T20:12:29.7986063+00:00"
},
{
"Id": "dc6391ce-1461-450c-9f96-a84e8d3eb544",
"UserId": "sample string 2",
"Created": "2025-11-19T20:12:29.7986063+00:00"
}
]