GET Api/ROUTE?id={id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

None.

Response Information

Resource Description

ROUTE
NameDescriptionTypeAdditional information
ROUTE_ID

integer

None.

ROUTE_NAME

string

None.

SRI

string

None.

ROUTE_DESCRIPTION

string

None.

IS_ASCENDING

integer

None.

IS_EXPRESS

integer

None.

NOTES

string

None.

ROUTE_SEGMENT

string

None.

ROADWAY_ID

integer

None.

IS_ACTIVE

integer

None.

IS_ALLOW_ROADWAY_CLOSING

integer

None.

LANE_CLOSURE

Collection of LANE_CLOSURE

None.

ROADWAY

ROADWAY

None.

Response Formats

application/json, text/json

Sample:
{
  "ROUTE_ID": 1,
  "ROUTE_NAME": "sample string 2",
  "SRI": "sample string 3",
  "ROUTE_DESCRIPTION": "sample string 4",
  "IS_ASCENDING": 5,
  "IS_EXPRESS": 6,
  "NOTES": "sample string 7",
  "ROUTE_SEGMENT": "sample string 8",
  "ROADWAY_ID": 9,
  "IS_ACTIVE": 10,
  "IS_ALLOW_ROADWAY_CLOSING": 11
}

text/xml

Sample:
<ROUTE xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/njdotEF">
  <IS_ACTIVE>10</IS_ACTIVE>
  <IS_ALLOW_ROADWAY_CLOSING>11</IS_ALLOW_ROADWAY_CLOSING>
  <IS_ASCENDING>5</IS_ASCENDING>
  <IS_EXPRESS>6</IS_EXPRESS>
  <NOTES>sample string 7</NOTES>
  <ROADWAY_ID>9</ROADWAY_ID>
  <ROUTE_DESCRIPTION>sample string 4</ROUTE_DESCRIPTION>
  <ROUTE_ID>1</ROUTE_ID>
  <ROUTE_NAME>sample string 2</ROUTE_NAME>
  <ROUTE_SEGMENT>sample string 8</ROUTE_SEGMENT>
  <SRI>sample string 3</SRI>
</ROUTE>