POST vendors/vendorMasterSearch

Request Information

URI Parameters

None.

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