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-11-07T16:06:37.4511794+01:00",
"Signed": "2025-11-07T16:06:37.4511794+01:00",
"Answers": [
{
"Data": "sample string 1",
"SectionItemId": "1b68be86-b010-4aea-96f3-41101abb9374"
},
{
"Data": "sample string 1",
"SectionItemId": "1b68be86-b010-4aea-96f3-41101abb9374"
}
]
},
{
"Id": 1,
"Group": "sample string 2",
"Created": "2025-11-07T16:06:37.4511794+01:00",
"Signed": "2025-11-07T16:06:37.4511794+01:00",
"Answers": [
{
"Data": "sample string 1",
"SectionItemId": "1b68be86-b010-4aea-96f3-41101abb9374"
},
{
"Data": "sample string 1",
"SectionItemId": "1b68be86-b010-4aea-96f3-41101abb9374"
}
]
}
]