GET v1/Groups/PointInTime

Retrieves aggregate data for an group based on the group id, one or more series types, and a specific point in time. For a list of series types available, refer to the Series Types API.

Request Information

Parameters

Name Type Description Additional information
request GroupGetPointInTimeRequest

Define this parameter in the request URI.

Parameter Information

Parameter Name: request

Property Type Description
IdList String Comma-delimeted list of Group IDs.
SeriesTypes String A comma-delimeted list of data points to retrieve for the specified group id. Valid Series Types can be retrieved from the Series Type Service.
PointInTime DateTime The date for which you want to retrieve data.
SdkVersion String If the client is using the SDK, the version number will be passed along with the request. This field is optional.

Response Information

Response body formats

application/json, text/json

Sample:
{
  "dataPoints": [
    {
      "id": "sample string 1",
      "seriesType": "sample string 2",
      "dataDate": "2026-06-05T15:02:08.0270028+00:00",
      "value": "sample string 4",
      "currency": "sample string 5",
      "scale": 6,
      "requiresSubscription": false
    },
    {
      "id": "sample string 1",
      "seriesType": "sample string 2",
      "dataDate": "2026-06-05T15:02:08.0270028+00:00",
      "value": "sample string 4",
      "currency": "sample string 5",
      "scale": 6,
      "requiresSubscription": false
    },
    {
      "id": "sample string 1",
      "seriesType": "sample string 2",
      "dataDate": "2026-06-05T15:02:08.0270028+00:00",
      "value": "sample string 4",
      "currency": "sample string 5",
      "scale": 6,
      "requiresSubscription": false
    }
  ],
  "errorOccurred": false,
  "errorMessages": [
    "sample string 1",
    "sample string 2",
    "sample string 3"
  ],
  "request": {
    "idList": "sample string 1",
    "seriesTypes": "sample string 2",
    "pointInTime": "2026-06-05T15:02:08.0270028+00:00",
    "sdkVersion": "sample string 4"
  }
}

application/xml, text/xml

Sample:
<GroupGetPointInTimeResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MA.CreditEdge.Web.Api.Contract.Messages.Groups">
  <ErrorMessages xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays" xmlns="">
    <d2p1:string>sample string 1</d2p1:string>
    <d2p1:string>sample string 2</d2p1:string>
    <d2p1:string>sample string 3</d2p1:string>
  </ErrorMessages>
  <ErrorOccurred xmlns="">false</ErrorOccurred>
  <Request xmlns:d2p1="http://schemas.datacontract.org/2004/07/MA.CreditEdge.Web.Api.Contract.Messages.Groups" xmlns="">
    <SdkVersion>sample string 4</SdkVersion>
    <d2p1:IdList>sample string 1</d2p1:IdList>
    <d2p1:PointInTime>2026-06-05T15:02:08.0270028+00:00</d2p1:PointInTime>
    <d2p1:SeriesTypes>sample string 2</d2p1:SeriesTypes>
  </Request>
  <DataPoints>
    <PointInTimeDataPoint xmlns="">
      <Currency>sample string 5</Currency>
      <DataDate>2026-06-05T15:02:08.0270028+00:00</DataDate>
      <Id>sample string 1</Id>
      <RequiresSubscription>false</RequiresSubscription>
      <Scale>6</Scale>
      <SeriesType>sample string 2</SeriesType>
      <Value>sample string 4</Value>
    </PointInTimeDataPoint>
    <PointInTimeDataPoint xmlns="">
      <Currency>sample string 5</Currency>
      <DataDate>2026-06-05T15:02:08.0270028+00:00</DataDate>
      <Id>sample string 1</Id>
      <RequiresSubscription>false</RequiresSubscription>
      <Scale>6</Scale>
      <SeriesType>sample string 2</SeriesType>
      <Value>sample string 4</Value>
    </PointInTimeDataPoint>
    <PointInTimeDataPoint xmlns="">
      <Currency>sample string 5</Currency>
      <DataDate>2026-06-05T15:02:08.0270028+00:00</DataDate>
      <Id>sample string 1</Id>
      <RequiresSubscription>false</RequiresSubscription>
      <Scale>6</Scale>
      <SeriesType>sample string 2</SeriesType>
      <Value>sample string 4</Value>
    </PointInTimeDataPoint>
  </DataPoints>
</GroupGetPointInTimeResponse>