POST accounts/{accountId}/vendorSearch
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| accountId | integer |
Required |
Body Parameters
VendorSearchRequestDto| Name | Description | Type | Additional 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| Name | Description | Type | Additional 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
}
]