Skip to main content

GetTableGroupByAlias()

Modified: 10 May 2026 Viewpoint Field View Developer / API Help

The GetTableGroupByAlias() command returns the table group questions and answers within a form, and other information which may be useful.

  • Quota: 10
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.
tableGroupAlias string 100 Y The table group alias, in the form, you wish to retrieve the answer 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>
           <FormTemplateID></FormTemplateID>
           <QuestionType></QuestionType>
           <DataType></DataType>
           <Question></Question>
           <Alias></Alias>
           <SortOrder></SortOrder>
       </Questions>
       <Answers>
           <ID></ID>
           <FormAnswerLinkID></FormAnswerLinkID>
           <SortOrder></SortOrder>
           ..........
           ..........
           <AnsweredBy></AnsweredBy>
           <AnsweredDateTime></AnsweredDateTime>
           <HasActions></HasActions>
           <HasImages></HasImages>
           <HasComments></HasComments>
           <HasDocuments></HasDocuments>
       </Answers>
   </FormTableGroupResponse>
Submit

Table of Contents