GET api/orgPersonSimpleVw

Get all values from the PersonSimpleVw view

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

orgPersonSimpleVwDb
NameDescriptionTypeAdditional information
EntityID

integer

None.

Title

string

Max length: 50

PlaceID

integer

None.

PersonID

integer

Required

FirstName

string

Max length: 50

LastName

string

Max length: 50

PersonName

string

Max length: 101

IsActive

boolean

Required

results

Collection of ValidationResult

None.

Response Formats

application/json, text/json

Sample:
{
  "results": null,
  "EntityID": 1,
  "Title": "sample string 1",
  "PlaceID": 1,
  "PersonID": 2,
  "FirstName": "sample string 3",
  "LastName": "sample string 4",
  "PersonName": "sample string 5",
  "IsActive": true
}

application/xml, text/xml

Sample:
<orgPersonSimpleVwDb 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" />
  <EntityID>1</EntityID>
  <FirstName>sample string 3</FirstName>
  <IsActive>true</IsActive>
  <LastName>sample string 4</LastName>
  <PersonID>2</PersonID>
  <PersonName>sample string 5</PersonName>
  <PlaceID>1</PlaceID>
  <Title>sample string 1</Title>
</orgPersonSimpleVwDb>