POST api/LogFacts/BaseGetAll
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of LogFactsName | Description | Type | Additional information |
---|---|---|---|
UsageId | globally unique identifier |
None. |
|
FactLookupId | integer |
None. |
|
Value | string |
None. |
|
ChangeTracker | ObjectChangeTracker |
None. |
Response Formats
application/json, text/json
Sample:
[ { "$id": "1", "UsageId": "8d9695c9-32a7-41e2-864d-01592c6c04d6", "FactLookupId": 2, "Value": "sample string 3", "ChangeTracker": { "$id": "2", "State": 2, "ObjectsRemovedFromCollectionProperties": {}, "OriginalValues": {}, "ExtendedProperties": {}, "ObjectsAddedToCollectionProperties": {} } }, { "$ref": "1" } ]
application/xml, text/xml
Sample:
<ArrayOfLogFacts xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Pioneer.Trials.Domain.Model"> <LogFacts z:Id="i1" xmlns:z="http://schemas.microsoft.com/2003/10/Serialization/"> <ChangeTracker z:Id="i2"> <ExtendedProperties /> <ObjectsAddedToCollectionProperties /> <ObjectsRemovedFromCollectionProperties /> <OriginalValues /> <State>Added</State> </ChangeTracker> <FactLookupId>2</FactLookupId> <UsageId>8d9695c9-32a7-41e2-864d-01592c6c04d6</UsageId> <Value>sample string 3</Value> </LogFacts> <LogFacts z:Ref="i1" xmlns:z="http://schemas.microsoft.com/2003/10/Serialization/" /> </ArrayOfLogFacts>