POST shows/{showId}/showUsers

Request Information

URI Parameters

NameDescriptionTypeAdditional information
showId

string

None.

Body Parameters

ShowUserCreateDto
NameDescriptionTypeAdditional information
ShowId

integer

None.

ExternalUserId

string

Required

UserType

UserType

None.

AllOrderReceipts

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "ShowId": 1,
  "ExternalUserId": "sample string 2",
  "UserType": 1,
  "AllOrderReceipts": true
}

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
    }
  ]
}