Request Information

URI Parameters

System.Collections.ObjectModel.Collection`1[Connections.API.Areas.HelpPage.ModelDescriptions.ParameterDescription] IList
id globally unique identifier Required

Guid ID of the trend value to update.

tz string

Optional parameter to set time zone information.

Body Parameters (TrendValue)

This object takes all the parameters needed to update a trend value.

System.Collections.ObjectModel.Collection`1[Connections.API.Areas.HelpPage.ModelDescriptions.ParameterDescription] IList
ID globally unique identifier Required on Update

ID of the Metric Data.

MetricID globally unique identifier Required on Create

ID of the metric.

Date date Required

Date of the metric data

Value decimal number Required

Value of the metric data

MetricName string ReadOnly

Name of the metric.

ArchiveID globally unique identifier ReadOnly

ID of the archive were the metric data is stored.

ArchiveName string ReadOnly

Name of the archive were the metric data is stored.

ArchiveDate date ReadOnly

Date the metric data was archived.

Request Formats

application/xml, text/xml

Sample
<TrendValue xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://col4.com/api/v4">
  <ID>d6d44650-9ab0-487c-a52f-592fc2e94c5b</ID>
  <MetricID>5dd5b5a1-8fb6-4c70-a424-4b61b0db9994</MetricID>
  <Date xmlns:d2p1="http://schemas.datacontract.org/2004/07/System">
    <d2p1:DateTime>2024-04-13T04:07:06.6245498Z</d2p1:DateTime>
    <d2p1:OffsetMinutes>0</d2p1:OffsetMinutes>
  </Date>
  <Value>1</Value>
</TrendValue>

application/json, text/json

Sample
{
  "ID": "d6d44650-9ab0-487c-a52f-592fc2e94c5b",
  "MetricID": "5dd5b5a1-8fb6-4c70-a424-4b61b0db9994",
  "Date": "2024-04-13T04:07:06.6245498+00:00",
  "Value": 1.0
}

Response Information

Resource Description (TrendValue)

System.Collections.ObjectModel.Collection`1[Connections.API.Areas.HelpPage.ModelDescriptions.ParameterDescription] IList
ID globally unique identifier Required on Update

ID of the Metric Data.

MetricID globally unique identifier Required on Create

ID of the metric.

Date date Required

Date of the metric data

Value decimal number Required

Value of the metric data

MetricName string ReadOnly

Name of the metric.

ArchiveID globally unique identifier ReadOnly

ID of the archive were the metric data is stored.

ArchiveName string ReadOnly

Name of the archive were the metric data is stored.

ArchiveDate date ReadOnly

Date the metric data was archived.

Response Formats

application/xml, text/xml

Sample
<TrendValue xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://col4.com/api/v4">
  <ID>a230703e-87ec-4c17-993b-bf73ecc1a35e</ID>
  <MetricID>10fb21d6-534e-49c1-b7fc-cb336aab64c3</MetricID>
  <Date xmlns:d2p1="http://schemas.datacontract.org/2004/07/System">
    <d2p1:DateTime>2024-04-13T04:07:06.6245498Z</d2p1:DateTime>
    <d2p1:OffsetMinutes>0</d2p1:OffsetMinutes>
  </Date>
  <Value>1</Value>
  <MetricName>sample string 1</MetricName>
  <ArchiveID>13f3e97e-99b4-4d0d-ac9b-a39f9b5a5963</ArchiveID>
  <ArchiveName>sample string 2</ArchiveName>
  <ArchiveDate xmlns:d2p1="http://schemas.datacontract.org/2004/07/System">
    <d2p1:DateTime>2024-04-13T04:07:06.6245498Z</d2p1:DateTime>
    <d2p1:OffsetMinutes>0</d2p1:OffsetMinutes>
  </ArchiveDate>
</TrendValue>

application/json, text/json

Sample
{
  "ID": "a230703e-87ec-4c17-993b-bf73ecc1a35e",
  "MetricID": "10fb21d6-534e-49c1-b7fc-cb336aab64c3",
  "Date": "2024-04-13T04:07:06.6245498+00:00",
  "Value": 1.0,
  "MetricName": "sample string 1",
  "ArchiveID": "13f3e97e-99b4-4d0d-ac9b-a39f9b5a5963",
  "ArchiveName": "sample string 2",
  "ArchiveDate": "2024-04-13T04:07:06.6245498+00:00"
}