GET api/Lead?dbname={dbname}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
dbname

string

Required

Body Parameters

None.

Response Information

Resource Description

Collection of Leadfollow
NameDescriptionTypeAdditional information
ID

integer

None.

followup_name

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "ID": 1,
    "followup_name": "sample string 2"
  },
  {
    "ID": 1,
    "followup_name": "sample string 2"
  }
]

application/xml, text/xml

Sample:
<ArrayOfLeadfollow xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/apiAndroid.Controllers">
  <Leadfollow>
    <ID>1</ID>
    <followup_name>sample string 2</followup_name>
  </Leadfollow>
  <Leadfollow>
    <ID>1</ID>
    <followup_name>sample string 2</followup_name>
  </Leadfollow>
</ArrayOfLeadfollow>