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": "da93af54-4f0e-4696-aa60-0d6c8f0c71dd",
"UserId": "sample string 2",
"Created": "2025-10-26T13:07:29.4020154+00:00"
},
{
"Id": "da93af54-4f0e-4696-aa60-0d6c8f0c71dd",
"UserId": "sample string 2",
"Created": "2025-10-26T13:07:29.4020154+00:00"
}
]