GET shows/{showId}/showUsers/{showUserId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
showUserId

integer

Required

showId

string

None.

Body Parameters

None.

Response Information

Resource Description

ShowUserDto
NameDescriptionTypeAdditional information
Id

integer

None.

ShowId

integer

None.

UserId

integer

None.

AllOrderReceipts

boolean

None.

User

UserDto

None.

ShowUserPermissions

Collection of ShowUserPermissionDto

None.

Response Information

Response body formats

application/json, text/json

Sample:
{
  "Id": 1,
  "ShowId": 2,
  "UserId": 3,
  "AllOrderReceipts": true,
  "User": {
    "Id": 1,
    "FederatedUserId": "sample string 2",
    "UserName": "sample string 3",
    "FirstName": "sample string 4",
    "LastName": "sample string 5",
    "DisplayName": "sample string 6",
    "EmailAddress": "sample string 7",
    "ExternalUserId": "sample string 8",
    "EmailOn": true,
    "TFCNumber": 1,
    "FOLAccountName": "sample string 10",
    "UserType": 1,
    "RoleType": 0,
    "UserPreferences": {
      "DefaultSiteDashboardViewType": 1,
      "DefaultDashboardVendorFilterType": 0
    },
    "Active": true
  },
  "ShowUserPermissions": [
    {
      "Id": 1,
      "ShowUserId": 2,
      "Permission": 0
    },
    {
      "Id": 1,
      "ShowUserId": 2,
      "Permission": 0
    }
  ]
}