Get user prohibitions rules
POST /api/v1/user/prohibition/rules HTTP/1.1
- Response structure
| Parameter | Type | Description |
|---|---|---|
[] | Array | Array of user prohibition rules |
[]..rule | String | rule |
[]..isProhibited | Boolean | isProhibited |
- Example request
$ GET /api/v1/user/prohibition/rules HTTP/1.1
Content-Type: application/json
X-Tenant-ID: default
Host: localhost:8080
- Example response
HTTP/1.1 200 OK
X-co-request-id: 16MKl8UAJg0hES9v0XUv0hrTNpfwRE4L
Content-Type: application/json
Content-Length: 125
[ {
}, {
"rule" : "print_and_download",
"isProhibited" : false
"rule" : "share_on_tenan",
"isProhibited" : false
} ]