GET api/BusinessIntelligence/GetGroupFormData?groupFormType={groupFormType}&from={from}&to={to}

Get group form data for a specific group form type.

Request Information

URI Parameters

Name Description Type Additional Information
groupFormType

The group form type that data should be retrived for. Existing group form types can be retrived from 'GetGroupFormTypes()'

string

Required

from

Filter forms signed after this date (inclusive), must be before or equal to .

date

Required

to

Filter forms signed before this date (inclusive), must be after or equal to .

date

Required

Body Parameters

None.

Response Information

Resource Description

Collection of GroupFormData
Name Description Type Additional Information
Id

The internal id of a group form in Epsilon.

integer

None.

Group

Name of the group that the form was created in.

string

None.

Created

Timestamp of when the form saved/created.

date

None.

Signed

Timestamp of when the form was finalized/signed.

date

None.

Answers

List of all the answers in a particular form. Each item in the list represents an answer to a question.

Collection of GroupFormAnswer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": 1,
    "Group": "sample string 2",
    "Created": "2025-05-23T20:02:16.1598201+02:00",
    "Signed": "2025-05-23T20:02:16.1598201+02:00",
    "Answers": [
      {
        "Data": "sample string 1",
        "SectionItemId": "dfe1b71c-c03e-4123-bc70-6305460f9438"
      },
      {
        "Data": "sample string 1",
        "SectionItemId": "dfe1b71c-c03e-4123-bc70-6305460f9438"
      }
    ]
  },
  {
    "Id": 1,
    "Group": "sample string 2",
    "Created": "2025-05-23T20:02:16.1598201+02:00",
    "Signed": "2025-05-23T20:02:16.1598201+02:00",
    "Answers": [
      {
        "Data": "sample string 1",
        "SectionItemId": "dfe1b71c-c03e-4123-bc70-6305460f9438"
      },
      {
        "Data": "sample string 1",
        "SectionItemId": "dfe1b71c-c03e-4123-bc70-6305460f9438"
      }
    ]
  }
]