GET Api/planRevision?id={id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

None.

Response Information

Resource Description

PLAN_REVISION
NameDescriptionTypeAdditional information
PLAN_REVISION_ID

integer

None.

PARCEL_ID

integer

None.

PLAN_CHANGE_RQ_DT

date

None.

PLAN_CHANGE_RCVD_DT

date

None.

PLAN_SHEET

string

None.

PLAN_CHANGE_RQ_NOTES

string

None.

PARCEL

PARCEL

None.

Response Formats

application/json, text/json

Sample:
{
  "PLAN_REVISION_ID": 1,
  "PARCEL_ID": 2,
  "PLAN_CHANGE_RQ_DT": "2026-04-03T22:36:18.3780042+00:00",
  "PLAN_CHANGE_RCVD_DT": "2026-04-03T22:36:18.3780042+00:00",
  "PLAN_SHEET": "sample string 4",
  "PLAN_CHANGE_RQ_NOTES": "sample string 5"
}

text/xml

Sample:
<PLAN_REVISION xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EF">
  <PARCEL_ID>2</PARCEL_ID>
  <PLAN_CHANGE_RCVD_DT>2026-04-03T22:36:18.3780042+00:00</PLAN_CHANGE_RCVD_DT>
  <PLAN_CHANGE_RQ_DT>2026-04-03T22:36:18.3780042+00:00</PLAN_CHANGE_RQ_DT>
  <PLAN_CHANGE_RQ_NOTES>sample string 5</PLAN_CHANGE_RQ_NOTES>
  <PLAN_REVISION_ID>1</PLAN_REVISION_ID>
  <PLAN_SHEET>sample string 4</PLAN_SHEET>
</PLAN_REVISION>