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 GroupFormDataName | 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-07-06T01:48:59.7199135+02:00", "Signed": "2025-07-06T01:48:59.7199135+02:00", "Answers": [ { "Data": "sample string 1", "SectionItemId": "3007ff42-7ffe-48c2-bbdc-debed4b60d00" }, { "Data": "sample string 1", "SectionItemId": "3007ff42-7ffe-48c2-bbdc-debed4b60d00" } ] }, { "Id": 1, "Group": "sample string 2", "Created": "2025-07-06T01:48:59.7199135+02:00", "Signed": "2025-07-06T01:48:59.7199135+02:00", "Answers": [ { "Data": "sample string 1", "SectionItemId": "3007ff42-7ffe-48c2-bbdc-debed4b60d00" }, { "Data": "sample string 1", "SectionItemId": "3007ff42-7ffe-48c2-bbdc-debed4b60d00" } ] } ]