POST api/LocationAgreement/BaseGetAll
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of LocationAgreement| Name | Description | Type | Additional information |
|---|---|---|---|
| LocationId | globally unique identifier |
None. |
|
| DocumentId | integer |
None. |
|
| Signed | boolean |
None. |
|
| LastMaintenanceName | string |
None. |
|
| LastMaintenanceDate | date |
None. |
|
| Location | Location |
None. |
|
| ChangeTracker | ObjectChangeTracker |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"$id": "1",
"LocationId": "1b6e4079-60d8-4d93-8f9f-4ba62ed50d2b",
"DocumentId": 2,
"Signed": true,
"LastMaintenanceName": "sample string 4",
"LastMaintenanceDate": "2025-10-29T06:01:44.0039365+00:00",
"ChangeTracker": {
"$id": "2",
"State": 2,
"ObjectsRemovedFromCollectionProperties": {},
"OriginalValues": {},
"ExtendedProperties": {},
"ObjectsAddedToCollectionProperties": {}
}
},
{
"$ref": "1"
}
]
application/xml, text/xml
Sample:
<ArrayOfLocationAgreement xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Pioneer.Trials.Domain.Model">
<LocationAgreement z:Id="i1" xmlns:z="http://schemas.microsoft.com/2003/10/Serialization/">
<ChangeTracker z:Id="i2">
<ExtendedProperties />
<ObjectsAddedToCollectionProperties />
<ObjectsRemovedFromCollectionProperties />
<OriginalValues />
<State>Added</State>
</ChangeTracker>
<DocumentId>2</DocumentId>
<LastMaintenanceDate>2025-10-29T06:01:44.0039365+00:00</LastMaintenanceDate>
<LastMaintenanceName>sample string 4</LastMaintenanceName>
<Location i:nil="true" />
<LocationId>1b6e4079-60d8-4d93-8f9f-4ba62ed50d2b</LocationId>
<Signed>true</Signed>
</LocationAgreement>
<LocationAgreement z:Ref="i1" xmlns:z="http://schemas.microsoft.com/2003/10/Serialization/" />
</ArrayOfLocationAgreement>