POST api/User/GetWlPoiList

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

ApiInfoEntityOfListOfWlPoiEntity
NameDescriptionTypeAdditional information
data

Collection of WlPoiEntity

None.

code

integer

None.

msg

string

None.

Response Formats

application/json, text/json

Sample:
{
  "data": [
    {
      "PName": "sample string 1",
      "PLongitude": 2.1,
      "PLatitude": 3.1
    },
    {
      "PName": "sample string 1",
      "PLongitude": 2.1,
      "PLatitude": 3.1
    }
  ],
  "code": 1,
  "msg": "sample string 2"
}

application/xml, text/xml

Sample:
<ApiInfoEntityOfArrayOfWlPoiEntityNdF_SKQEZ xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WisdomMobileCar.Model">
  <Code>1</Code>
  <Message>sample string 2</Message>
  <Data>
    <WlPoiEntity>
      <PLatitude>3.1</PLatitude>
      <PLongitude>2.1</PLongitude>
      <PName>sample string 1</PName>
    </WlPoiEntity>
    <WlPoiEntity>
      <PLatitude>3.1</PLatitude>
      <PLongitude>2.1</PLongitude>
      <PName>sample string 1</PName>
    </WlPoiEntity>
  </Data>
</ApiInfoEntityOfArrayOfWlPoiEntityNdF_SKQEZ>