POST api/LocationAgreement/BaseGetAll

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of LocationAgreement
NameDescriptionTypeAdditional 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": "3e72ad67-9f2f-4774-8d03-67cb8a05330c",
    "DocumentId": 2,
    "Signed": true,
    "LastMaintenanceName": "sample string 4",
    "LastMaintenanceDate": "2024-09-11T21:38:30.5896849+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>2024-09-11T21:38:30.5896849+00:00</LastMaintenanceDate>
    <LastMaintenanceName>sample string 4</LastMaintenanceName>
    <Location i:nil="true" />
    <LocationId>3e72ad67-9f2f-4774-8d03-67cb8a05330c</LocationId>
    <Signed>true</Signed>
  </LocationAgreement>
  <LocationAgreement z:Ref="i1" xmlns:z="http://schemas.microsoft.com/2003/10/Serialization/" />
</ArrayOfLocationAgreement>