GET api/orgPlacePerson/{id}
Return a single value from the PlacePersons table using the primary key as ID.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
The PlacePersons Primary Key. |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
orgPlacePersonDb| Name | Description | Type | Additional information |
|---|---|---|---|
| PlacePersonID | integer |
None. |
|
| PlaceID | integer |
Required |
|
| PersonID | integer |
Required |
|
| Title | string |
Max length: 50 |
|
| IsDefaultPlace | boolean |
None. |
|
| IsDefaultPerson | boolean |
None. |
|
| CreatedBy | integer |
None. |
|
| CreatedDate | date |
None. |
|
| UpdatedBy | integer |
None. |
|
| UpdatedDate | date |
None. |
|
| results | Collection of ValidationResult |
None. |
Response Formats
application/json, text/json
Sample:
{
"results": null,
"PlacePersonID": 1,
"PlaceID": 2,
"PersonID": 3,
"Title": "sample string 4",
"IsDefaultPlace": true,
"IsDefaultPerson": true,
"CreatedBy": 7,
"CreatedDate": "2025-12-06T23:40:49.872689+00:00",
"UpdatedBy": 9,
"UpdatedDate": "2025-12-06T23:40:49.872689+00:00"
}
application/xml, text/xml
Sample:
<orgPlacePersonDb 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" />
<CreatedBy>7</CreatedBy>
<CreatedDate xmlns:d2p1="http://schemas.datacontract.org/2004/07/System">
<d2p1:DateTime>2025-12-06T23:40:49.872689Z</d2p1:DateTime>
<d2p1:OffsetMinutes>0</d2p1:OffsetMinutes>
</CreatedDate>
<IsDefaultPerson>true</IsDefaultPerson>
<IsDefaultPlace>true</IsDefaultPlace>
<PersonID>3</PersonID>
<PlaceID>2</PlaceID>
<PlacePersonID>1</PlacePersonID>
<Title>sample string 4</Title>
<UpdatedBy>9</UpdatedBy>
<UpdatedDate xmlns:d2p1="http://schemas.datacontract.org/2004/07/System">
<d2p1:DateTime>2025-12-06T23:40:49.872689Z</d2p1:DateTime>
<d2p1:OffsetMinutes>0</d2p1:OffsetMinutes>
</UpdatedDate>
</orgPlacePersonDb>