GET api/orgPlacePersonVw/{id}

Return a single value from the PlacePersonVw view using the primary key as ID.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

The PlacePersonVw Primary Key.

integer

Required

Body Parameters

None.

Response Information

Resource Description

orgPlacePersonVwDb
NameDescriptionTypeAdditional information
PlacePersonID

integer

Required

PlaceID

integer

Required

PlaceName

string

Max length: 60

PersonID

integer

Required

FirstName

string

Max length: 50

LastName

string

Max length: 50

Gender

string

Max length: 1

BirthDate

date

None.

IsActive

boolean

Required

IsDefaultPlace

boolean

None.

IsDefaultPerson

boolean

None.

CreatedBy

integer

Required

CreatedDate

date

Required

UpdatedBy

integer

Required

UpdatedDate

date

Required

P3PLPersonID

integer

None.

PhoneNumber

string

Required

Max length: 30

PhoneType

string

Required

Max length: 20

EmailAddress

string

Required

Max length: 120

EmailType

string

Required

Max length: 20

results

Collection of ValidationResult

None.

Response Formats

application/json, text/json

Sample:
{
  "results": null,
  "PlacePersonID": 1,
  "PlaceID": 2,
  "PlaceName": "sample string 3",
  "PersonID": 4,
  "FirstName": "sample string 5",
  "LastName": "sample string 6",
  "Gender": "sample string 7",
  "BirthDate": "2025-12-06T23:43:10.8404202+00:00",
  "IsActive": true,
  "IsDefaultPlace": true,
  "IsDefaultPerson": true,
  "CreatedBy": 11,
  "CreatedDate": "2025-12-06T23:43:10.8404202+00:00",
  "UpdatedBy": 13,
  "UpdatedDate": "2025-12-06T23:43:10.8404202+00:00",
  "P3PLPersonID": 1,
  "PhoneNumber": "sample string 15",
  "PhoneType": "sample string 16",
  "EmailAddress": "sample string 17",
  "EmailType": "sample string 18"
}

application/xml, text/xml

Sample:
<orgPlacePersonVwDb 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" />
  <BirthDate xmlns:d2p1="http://schemas.datacontract.org/2004/07/System">
    <d2p1:DateTime>2025-12-06T23:43:10.8404202Z</d2p1:DateTime>
    <d2p1:OffsetMinutes>0</d2p1:OffsetMinutes>
  </BirthDate>
  <CreatedBy>11</CreatedBy>
  <CreatedDate xmlns:d2p1="http://schemas.datacontract.org/2004/07/System">
    <d2p1:DateTime>2025-12-06T23:43:10.8404202Z</d2p1:DateTime>
    <d2p1:OffsetMinutes>0</d2p1:OffsetMinutes>
  </CreatedDate>
  <EmailAddress>sample string 17</EmailAddress>
  <EmailType>sample string 18</EmailType>
  <FirstName>sample string 5</FirstName>
  <Gender>sample string 7</Gender>
  <IsActive>true</IsActive>
  <IsDefaultPerson>true</IsDefaultPerson>
  <IsDefaultPlace>true</IsDefaultPlace>
  <LastName>sample string 6</LastName>
  <P3PLPersonID>1</P3PLPersonID>
  <PersonID>4</PersonID>
  <PhoneNumber>sample string 15</PhoneNumber>
  <PhoneType>sample string 16</PhoneType>
  <PlaceID>2</PlaceID>
  <PlaceName>sample string 3</PlaceName>
  <PlacePersonID>1</PlacePersonID>
  <UpdatedBy>13</UpdatedBy>
  <UpdatedDate xmlns:d2p1="http://schemas.datacontract.org/2004/07/System">
    <d2p1:DateTime>2025-12-06T23:43:10.8404202Z</d2p1:DateTime>
    <d2p1:OffsetMinutes>0</d2p1:OffsetMinutes>
  </UpdatedDate>
</orgPlacePersonVwDb>