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": "7df8a465-a711-450c-a506-7e5ce5f84557",
"UserId": "sample string 2",
"Created": "2026-01-16T10:37:36.2665657+00:00"
},
{
"Id": "7df8a465-a711-450c-a506-7e5ce5f84557",
"UserId": "sample string 2",
"Created": "2026-01-16T10:37:36.2665657+00:00"
}
]