Returns a list of questions and answers for a form table
group.
Table 1. Parameters| Parameter | Type | Max Length | Required | Description |
|---|
| apiToken | string | 20 | Y | Your API security token configured in Field View. |
| formId | string | 20 | Y | The unique ID of the form. |
| formTemplateLinkId | integer | | Y | The table form template link Id, in the form you wish to retrieve the
answers for. |
Table 2. Returns| Field | Type | Description |
|---|
| FormTableGroupResponse | FormTableGroupResponse | Form table group response. Contains the questions and the
answers. |
<FormTableGroupResponse>
<Status>
SUCCESS
<Message>Success.</Message>
</Status>
<Questions>
<TableGroupQuestions>
<FormTemplateID></FormTemplateID>
<QuestionType></QuestionType>
<DataType></DataType>
<Question>Question 1</Question>
<Alias></Alias>
<SortOrder></SortOrder>
</TableGroupQuestions>
..........
..........
</Questions>
<Answers>
<TableGroupAnswers>
<ID></ID>
<FormAnswerLinkID></FormAnswerLinkID>
<SortOrder></SortOrder>
<Question 1>Answer Text</Question 1>
..........
..........
<AnsweredBy></AnsweredBy>
<AnsweredDateTime></AnsweredDateTime>
<HasActions></HasActions>
<HasImages></HasImages>
<HasComments></HasComments>
<HasDocuments></HasDocuments>
</TableGroupAnswers>
..........
..........
</Answers>
</FormTableGroupResponse>