GET api/LeadStage/{id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

None.

Response Information

Resource Description

LeadStage
NameDescriptionTypeAdditional information
LeadStageId

integer

None.

LeadStageName

string

None.

CreatedDate

date

Data type: DateTime

CreatedBy

string

None.

Response Formats

application/json, text/json

Sample:
{
  "LeadStageId": 1,
  "LeadStageName": "sample string 2",
  "CreatedDate": "2025-12-08T01:08:36.8457372+05:30",
  "CreatedBy": "sample string 4"
}

application/xml, text/xml

Sample:
<LeadStage xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Morph.Domain.Entities">
  <CreatedBy>sample string 4</CreatedBy>
  <CreatedDate>2025-12-08T01:08:36.8457372+05:30</CreatedDate>
  <LeadStageId>1</LeadStageId>
  <LeadStageName>sample string 2</LeadStageName>
</LeadStage>