GET api/Registration/getAllRecords/LeadStage/{Key}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| Key | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of BRLeadStageDto| Name | Description | Type | Additional information |
|---|---|---|---|
| LeadStageId | decimal number |
None. |
|
| LeadStageName | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"LeadStageId": 1.0,
"LeadStageName": "sample string 2"
},
{
"LeadStageId": 1.0,
"LeadStageName": "sample string 2"
}
]
application/xml, text/xml
Sample:
<ArrayOfRegistrationController.BRLeadStageDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ZenoxERP.API.Controllers">
<RegistrationController.BRLeadStageDto>
<LeadStageId>1</LeadStageId>
<LeadStageName>sample string 2</LeadStageName>
</RegistrationController.BRLeadStageDto>
<RegistrationController.BRLeadStageDto>
<LeadStageId>1</LeadStageId>
<LeadStageName>sample string 2</LeadStageName>
</RegistrationController.BRLeadStageDto>
</ArrayOfRegistrationController.BRLeadStageDto>