POST ExperimentLocation/GetExperimentByExpAndLocId/{experimentId}/{locationId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
experimentId

globally unique identifier

Required

locationId

globally unique identifier

Required

Body Parameters

None.

Response Information

Resource Description

ExperimentLocation
NameDescriptionTypeAdditional information
ExperimentLocationId

globally unique identifier

None.

ExperimentId

globally unique identifier

None.

LocationId

globally unique identifier

None.

AddName

string

None.

AddDate

date

None.

Experiment

Experiment

None.

Location

Location

None.

ChangeTracker

ObjectChangeTracker

None.

Response Formats

application/json, text/json

Sample:
{
  "ExperimentLocationId": "0ef842be-19a4-450d-914a-c24b7d97dcbe",
  "ExperimentId": "00981231-f9ab-4ea2-8bb4-617cfd9f1ee7",
  "LocationId": "270d2d26-4286-43c9-8451-bd6c13c3ada0",
  "AddName": "sample string 4",
  "AddDate": "2024-09-12T23:14:07.7003739+00:00",
  "ChangeTracker": {
    "$id": "2",
    "State": 2,
    "ObjectsRemovedFromCollectionProperties": {},
    "OriginalValues": {},
    "ExtendedProperties": {},
    "ObjectsAddedToCollectionProperties": {}
  }
}

application/xml, text/xml

Sample:
<ExperimentLocation xmlns:i="http://www.w3.org/2001/XMLSchema-instance" z:Id="i1" xmlns:z="http://schemas.microsoft.com/2003/10/Serialization/" xmlns="http://schemas.datacontract.org/2004/07/Pioneer.Trials.Domain.Model">
  <AddDate>2024-09-12T23:14:07.7003739+00:00</AddDate>
  <AddName>sample string 4</AddName>
  <ChangeTracker z:Id="i2">
    <ExtendedProperties />
    <ObjectsAddedToCollectionProperties />
    <ObjectsRemovedFromCollectionProperties />
    <OriginalValues />
    <State>Added</State>
  </ChangeTracker>
  <Experiment i:nil="true" />
  <ExperimentId>00981231-f9ab-4ea2-8bb4-617cfd9f1ee7</ExperimentId>
  <ExperimentLocationId>0ef842be-19a4-450d-914a-c24b7d97dcbe</ExperimentLocationId>
  <Location i:nil="true" />
  <LocationId>270d2d26-4286-43c9-8451-bd6c13c3ada0</LocationId>
</ExperimentLocation>