GET api/suppliers/{supplierId}/SearchMapDetails/{addressId}
Search Suppliers Details for Map
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| supplierId |
Supplier Id |
integer |
Required |
| addressId |
Address Id |
integer |
Required |
Body Parameters
None.
Response Information
search result
| Name | Description | Type | Additional information |
|---|---|---|---|
| SupplierId |
Supplier Id |
integer |
None. |
| Name |
Name |
string |
None. |
| Address |
Address |
None. |
Response Formats
application/json, text/json
Sample:
{
"supplierId": 1,
"name": "sample string 2",
"address": {
"addressId": 1,
"detail": "sample string 1",
"latitude": 1.1,
"longitude": 1.1
},
"discountInfo": {
"info": "sample string 1"
},
"supplierImage": "sample string 3",
"isSpecialOffer": true
}