POST api/address/getlist

Request Information

URI Parameters

None.

Body Parameters

AddressFilter
NameDescriptionTypeAdditional information
AddressId

string

None.

CompanyId

string

None.

TypeId

string

None.

Request Formats

application/json, text/json

Sample:
{
  "AddressId": "sample string 1",
  "CompanyId": "sample string 2",
  "TypeId": "sample string 3"
}

application/xml, text/xml

Sample:
<AddressFilter xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GPSTracking.Model">
  <AddressId>sample string 1</AddressId>
  <CompanyId>sample string 2</CompanyId>
  <TypeId>sample string 3</TypeId>
</AddressFilter>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

AddressResponse
NameDescriptionTypeAdditional information
Status

boolean

None.

StatusText

string

None.

Msg

string

None.

DL

Collection of AddressView

None.

Response Formats

application/json, text/json

Sample:
{
  "Status": true,
  "StatusText": "sample string 2",
  "Msg": "sample string 3",
  "DL": [
    {
      "AddressId": "sample string 1",
      "AddressName": "sample string 2",
      "Description": "sample string 3",
      "Longitude": "sample string 4",
      "CompanyId": "sample string 5",
      "UserName": "sample string 6",
      "TypeId": "sample string 7",
      "Latitude": "sample string 8",
      "TypeHead": "sample string 9",
      "AddressDetails": "sample string 10",
      "EntryDate": "sample string 11"
    },
    {
      "AddressId": "sample string 1",
      "AddressName": "sample string 2",
      "Description": "sample string 3",
      "Longitude": "sample string 4",
      "CompanyId": "sample string 5",
      "UserName": "sample string 6",
      "TypeId": "sample string 7",
      "Latitude": "sample string 8",
      "TypeHead": "sample string 9",
      "AddressDetails": "sample string 10",
      "EntryDate": "sample string 11"
    }
  ]
}

application/xml, text/xml

Sample:
<AddressResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GPSTracking.Model">
  <DL>
    <AddressView>
      <AddressDetails>sample string 10</AddressDetails>
      <AddressId>sample string 1</AddressId>
      <AddressName>sample string 2</AddressName>
      <CompanyId>sample string 5</CompanyId>
      <Description>sample string 3</Description>
      <EntryDate>sample string 11</EntryDate>
      <Latitude>sample string 8</Latitude>
      <Longitude>sample string 4</Longitude>
      <TypeHead>sample string 9</TypeHead>
      <TypeId>sample string 7</TypeId>
      <UserName>sample string 6</UserName>
    </AddressView>
    <AddressView>
      <AddressDetails>sample string 10</AddressDetails>
      <AddressId>sample string 1</AddressId>
      <AddressName>sample string 2</AddressName>
      <CompanyId>sample string 5</CompanyId>
      <Description>sample string 3</Description>
      <EntryDate>sample string 11</EntryDate>
      <Latitude>sample string 8</Latitude>
      <Longitude>sample string 4</Longitude>
      <TypeHead>sample string 9</TypeHead>
      <TypeId>sample string 7</TypeId>
      <UserName>sample string 6</UserName>
    </AddressView>
  </DL>
  <Msg>sample string 3</Msg>
  <Status>true</Status>
  <StatusText>sample string 2</StatusText>
</AddressResponse>