POST shows/{showId}/showUserPermissions
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| showId | string |
None. |
Body Parameters
ShowUserPermissionCreateDto| Name | Description | Type | Additional information |
|---|---|---|---|
| ShowUserId | integer |
None. |
|
| Permission | PermissionType |
None. |
|
| ShowId | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"ShowUserId": 1,
"Permission": 0,
"ShowId": 2
}
Response Information
Resource Description
ShowUserPermissionDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| ShowUserId | integer |
None. |
|
| Permission | PermissionType |
None. |
Response Information
Response body formats
application/json, text/json
Sample:
{
"Id": 1,
"ShowUserId": 2,
"Permission": 0
}