POST api/LogFacts/BaseGetAll
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of LogFacts| Name | 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": "6ef40c02-e416-4412-b467-968c2a9ca80f",
"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>6ef40c02-e416-4412-b467-968c2a9ca80f</UsageId>
<Value>sample string 3</Value>
</LogFacts>
<LogFacts z:Ref="i1" xmlns:z="http://schemas.microsoft.com/2003/10/Serialization/" />
</ArrayOfLogFacts>