GET api/HistoryRecords/GetHistoryRecords?RefNo={RefNo}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
RefNo

string

Required

Body Parameters

None.

Response Information

Resource Description

Collection of HistoryRecords
NameDescriptionTypeAdditional information
REF_NO

string

None.

STATUS

string

None.

DESCRIPTION

string

None.

REMARKS

string

None.

CREATED_ON

date

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "REF_NO": "sample string 1",
    "STATUS": "sample string 2",
    "DESCRIPTION": "sample string 3",
    "REMARKS": "sample string 4",
    "CREATED_ON": "2024-07-27T01:56:33.9109598+05:30"
  },
  {
    "REF_NO": "sample string 1",
    "STATUS": "sample string 2",
    "DESCRIPTION": "sample string 3",
    "REMARKS": "sample string 4",
    "CREATED_ON": "2024-07-27T01:56:33.9109598+05:30"
  }
]

application/xml, text/xml

Sample:
<ArrayOfHistoryRecords xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SyncService.Models">
  <HistoryRecords>
    <CREATED_ON>2024-07-27T01:56:33.9109598+05:30</CREATED_ON>
    <DESCRIPTION>sample string 3</DESCRIPTION>
    <REF_NO>sample string 1</REF_NO>
    <REMARKS>sample string 4</REMARKS>
    <STATUS>sample string 2</STATUS>
  </HistoryRecords>
  <HistoryRecords>
    <CREATED_ON>2024-07-27T01:56:33.9109598+05:30</CREATED_ON>
    <DESCRIPTION>sample string 3</DESCRIPTION>
    <REF_NO>sample string 1</REF_NO>
    <REMARKS>sample string 4</REMARKS>
    <STATUS>sample string 2</STATUS>
  </HistoryRecords>
</ArrayOfHistoryRecords>