POST shows/{showId}/accounts/{accountId}/vendorSearch

Request Information

URI Parameters

NameDescriptionTypeAdditional information
showId

integer

Required

accountId

integer

Required

Body Parameters

VendorSearchRequestDto
NameDescriptionTypeAdditional information
Name

string

None.

City

string

None.

Venue

string

None.

IsOnPriceList

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "Name": "sample string 1",
  "City": "sample string 2",
  "Venue": "sample string 3",
  "IsOnPriceList": true
}

Response Information

Resource Description

Collection of VendorSearchResultDto
NameDescriptionTypeAdditional information
Id

integer

None.

Name

string

None.

City

string

None.

Venue

string

None.

IsOnPriceList

boolean

None.

Response Information

Response body formats

application/json, text/json

Sample:
[
  {
    "Id": 1,
    "Name": "sample string 2",
    "City": "sample string 3",
    "Venue": "sample string 4",
    "IsOnPriceList": true
  },
  {
    "Id": 1,
    "Name": "sample string 2",
    "City": "sample string 3",
    "Venue": "sample string 4",
    "IsOnPriceList": true
  }
]