GET api/orgPlaceVw

Get all values from the PlaceVw view

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

orgPlaceVwDb
NameDescriptionTypeAdditional information
PlaceID

integer

Required

EntityID

integer

None.

EntityName

string

Max length: 100

PlaceType

string

Required

Max length: 50

PlaceName

string

Max length: 60

Address1

string

Max length: 50

Address2

string

Max length: 50

Address

string

Max length: 101

City

string

Max length: 30

StateProvinceCode

string

Max length: 2

PostalCode

string

Max length: 10

CountryCode

string

Max length: 3

CSC

string

Required

Max length: 38

AirportCode

string

Max length: 3

OpenHours

string

Max length: 120

IsCarrier

boolean

Required

IsCrossDock

boolean

Required

IsTerminal

boolean

Required

IsActive

boolean

Required

Comment

string

Max length: 240

results

Collection of ValidationResult

None.

Response Formats

application/json, text/json

Sample:
{
  "results": null,
  "PlaceID": 1,
  "EntityID": 1,
  "EntityName": "sample string 2",
  "PlaceType": "sample string 3",
  "PlaceName": "sample string 4",
  "Address1": "sample string 5",
  "Address2": "sample string 6",
  "Address": "sample string 7",
  "City": "sample string 8",
  "StateProvinceCode": "sample string 9",
  "PostalCode": "sample string 10",
  "CountryCode": "sample string 11",
  "CSC": "sample string 12",
  "AirportCode": "sample string 13",
  "OpenHours": "sample string 14",
  "IsCarrier": true,
  "IsCrossDock": true,
  "IsTerminal": true,
  "IsActive": true,
  "Comment": "sample string 19"
}

application/xml, text/xml

Sample:
<orgPlaceVwDb xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebAPI.Data.Tables">
  <results xmlns:d2p1="http://schemas.datacontract.org/2004/07/System.ComponentModel.DataAnnotations" i:nil="true" xmlns="http://schemas.datacontract.org/2004/07/WebAPI.Data.Utility" />
  <Address>sample string 7</Address>
  <Address1>sample string 5</Address1>
  <Address2>sample string 6</Address2>
  <AirportCode>sample string 13</AirportCode>
  <CSC>sample string 12</CSC>
  <City>sample string 8</City>
  <Comment>sample string 19</Comment>
  <CountryCode>sample string 11</CountryCode>
  <EntityID>1</EntityID>
  <EntityName>sample string 2</EntityName>
  <IsActive>true</IsActive>
  <IsCarrier>true</IsCarrier>
  <IsCrossDock>true</IsCrossDock>
  <IsTerminal>true</IsTerminal>
  <OpenHours>sample string 14</OpenHours>
  <PlaceID>1</PlaceID>
  <PlaceName>sample string 4</PlaceName>
  <PlaceType>sample string 3</PlaceType>
  <PostalCode>sample string 10</PostalCode>
  <StateProvinceCode>sample string 9</StateProvinceCode>
</orgPlaceVwDb>