GET shows/{showId}/representatives

Request Information

URI Parameters

NameDescriptionTypeAdditional information
showId

integer

Required

Body Parameters

None.

Response Information

Resource Description

Collection of CustomerRepresentativeDto
NameDescriptionTypeAdditional information
Id

integer

None.

ShowId

integer

None.

FirstName

string

None.

LastName

string

None.

EmailAddress

string

None.

ReceiveEmail

boolean

None.

Response Information

Response body formats

application/json, text/json

Sample:
[
  {
    "Id": 1,
    "ShowId": 2,
    "FirstName": "sample string 3",
    "LastName": "sample string 4",
    "EmailAddress": "sample string 5",
    "ReceiveEmail": true
  },
  {
    "Id": 1,
    "ShowId": 2,
    "FirstName": "sample string 3",
    "LastName": "sample string 4",
    "EmailAddress": "sample string 5",
    "ReceiveEmail": true
  }
]