GET api/Map/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Shop| Name | Description | Type | Additional information |
|---|---|---|---|
| ShopId | integer |
None. |
|
| ShopName | string |
None. |
|
| OwnerName | string |
None. |
|
| Description | string |
None. |
|
| Lane | string |
None. |
|
| ShopNumber | string |
None. |
|
| ShopXCoordinate | decimal number |
None. |
|
| ShopYCoordinate | decimal number |
None. |
|
| Category | string |
None. |
|
| CreatedDate | date |
None. |
|
| CreatedBy | integer |
None. |
|
| UpdatedDate | date |
None. |
|
| UpdatedBy | integer |
None. |
|
| MaxItemAllowed | integer |
None. |
|
| Lat | string |
None. |
|
| Long | string |
None. |
|
| PhoneNumber | string |
None. |
|
| Pin | string |
None. |
|
| IsActive | boolean |
None. |
|
| OTP | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"ShopId": 1,
"ShopName": "sample string 2",
"OwnerName": "sample string 3",
"Description": "sample string 4",
"Lane": "sample string 5",
"ShopNumber": "sample string 6",
"ShopXCoordinate": 1.0,
"ShopYCoordinate": 1.0,
"Category": "sample string 7",
"CreatedDate": "2025-12-11T15:27:51.124002+05:30",
"CreatedBy": 1,
"UpdatedDate": "2025-12-11T15:27:51.124002+05:30",
"UpdatedBy": 1,
"MaxItemAllowed": 1,
"Lat": "sample string 8",
"Long": "sample string 9",
"PhoneNumber": "sample string 10",
"Pin": "sample string 11",
"IsActive": true,
"OTP": "sample string 12"
}
application/xml, text/xml
Sample:
<Shop xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BaliYatraApi.DataAccess"> <Category>sample string 7</Category> <CreatedBy>1</CreatedBy> <CreatedDate>2025-12-11T15:27:51.124002+05:30</CreatedDate> <Description>sample string 4</Description> <IsActive>true</IsActive> <Lane>sample string 5</Lane> <Lat>sample string 8</Lat> <Long>sample string 9</Long> <MaxItemAllowed>1</MaxItemAllowed> <OTP>sample string 12</OTP> <OwnerName>sample string 3</OwnerName> <PhoneNumber>sample string 10</PhoneNumber> <Pin>sample string 11</Pin> <ShopId>1</ShopId> <ShopName>sample string 2</ShopName> <ShopNumber>sample string 6</ShopNumber> <ShopXCoordinate>1</ShopXCoordinate> <ShopYCoordinate>1</ShopYCoordinate> <UpdatedBy>1</UpdatedBy> <UpdatedDate>2025-12-11T15:27:51.124002+05:30</UpdatedDate> </Shop>