GET api/Source/{id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

None.

Response Information

Resource Description

Source
NameDescriptionTypeAdditional information
SourceId

integer

None.

SourceName

string

None.

Status

boolean

None.

CreatedDate

date

Data type: DateTime

CreatedBy

string

None.

Response Formats

application/json, text/json

Sample:
{
  "SourceId": 1,
  "SourceName": "sample string 2",
  "Status": true,
  "CreatedDate": "2025-12-08T01:57:40.8926167+05:30",
  "CreatedBy": "sample string 5"
}

application/xml, text/xml

Sample:
<Source xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Netsoft.Domain.Entities">
  <CreatedBy>sample string 5</CreatedBy>
  <CreatedDate>2025-12-08T01:57:40.8926167+05:30</CreatedDate>
  <SourceId>1</SourceId>
  <SourceName>sample string 2</SourceName>
  <Status>true</Status>
</Source>