GET api/LeadSource

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of LeadSource
NameDescriptionTypeAdditional information
LeadSourceId

integer

None.

LeadSourceName

string

None.

CreatedDate

date

Data type: DateTime

CreatedBy

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "LeadSourceId": 1,
    "LeadSourceName": "sample string 2",
    "CreatedDate": "2025-12-08T01:07:30.0332302+05:30",
    "CreatedBy": "sample string 4"
  },
  {
    "LeadSourceId": 1,
    "LeadSourceName": "sample string 2",
    "CreatedDate": "2025-12-08T01:07:30.0332302+05:30",
    "CreatedBy": "sample string 4"
  }
]

application/xml, text/xml

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