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 BlockedUserName | 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": "c36ce55b-1460-47e0-aaa4-17ba4ec956b4", "UserId": "sample string 2", "Created": "2024-10-02T17:11:17.6545268+00:00" }, { "Id": "c36ce55b-1460-47e0-aaa4-17ba4ec956b4", "UserId": "sample string 2", "Created": "2024-10-02T17:11:17.6545268+00:00" } ]