GET api/TargetDetail/{id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

None.

Response Information

Resource Description

TargetDetail
NameDescriptionTypeAdditional information
TargetDetailId

integer

None.

TargetId

integer

None.

TargetAmount

decimal number

None.

AchievedAmount

decimal number

None.

FYMonthId

integer

None.

FYMonth

FYMonth

None.

CreatedDate

date

Data type: DateTime

CreatedBy

string

None.

Response Formats

application/json, text/json

Sample:
{
  "TargetDetailId": 1,
  "TargetId": 2,
  "TargetAmount": 3.1,
  "AchievedAmount": 4.1,
  "FYMonthId": 5,
  "FYMonth": {
    "FYMonthId": 1,
    "FinancialYearId": 2,
    "FYMonthStartDate": "2025-12-08T01:09:49.2832193+05:30",
    "MonthYear": "sample string 4",
    "MonthSlNo": 5,
    "MonthStartDate": "2025-12-08T01:09:49.2832193+05:30",
    "MonthEndDate": "2025-12-08T01:09:49.2832193+05:30",
    "CreatedDate": "2025-12-08T01:09:49.2832193+05:30",
    "CreatedBy": "sample string 7"
  },
  "CreatedDate": "2025-12-08T01:09:49.2832193+05:30",
  "CreatedBy": "sample string 7"
}

application/xml, text/xml

Sample:
<TargetDetail xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Morph.Domain.Entities">
  <CreatedBy>sample string 7</CreatedBy>
  <CreatedDate>2025-12-08T01:09:49.2832193+05:30</CreatedDate>
  <AchievedAmount>4.1</AchievedAmount>
  <FYMonth>
    <CreatedBy>sample string 7</CreatedBy>
    <CreatedDate>2025-12-08T01:09:49.2832193+05:30</CreatedDate>
    <FYMonthId>1</FYMonthId>
    <FYMonthStartDate>2025-12-08T01:09:49.2832193+05:30</FYMonthStartDate>
    <FinancialYearId>2</FinancialYearId>
    <MonthEndDate>2025-12-08T01:09:49.2832193+05:30</MonthEndDate>
    <MonthSlNo>5</MonthSlNo>
    <MonthStartDate>2025-12-08T01:09:49.2832193+05:30</MonthStartDate>
    <MonthYear>sample string 4</MonthYear>
  </FYMonth>
  <FYMonthId>5</FYMonthId>
  <TargetAmount>3.1</TargetAmount>
  <TargetDetailId>1</TargetDetailId>
  <TargetId>2</TargetId>
</TargetDetail>