The GetProjectFormsListUpdated() command returns a list of updated form answers that satisfy the given filter parameters. Includes both deleted and non-deleted forms.
Note: This method is being deprecated. Use GetProjectFormsAnswers() instead.
|
| Parameter | Type | Max Length | Required | Description |
|---|---|---|---|---|
| apiToken | string | 20 | Y | Your API security token configured in Field View. |
| projectId | integer | Y | The unique ID of the project. | |
| formTemplateLinkIds | Integer[] | Y | The form template link ID of the form template. The form template link id will go across versions of the form template. | |
| lastmodifiedDateFrom | DateTime | The last modified date from, form answers to retrieve. | ||
| lastmodifiedDateTo | DateTime | The last modified date to, form answers to retrieve. | ||
| AnswerLastModifiedOnServerFrom | DateTime | Beginning date of when the answer was last modified on the web or synced to the server from mobile. | ||
| AnswerLastModifiedOnServerTo | DateTime | End date of when the answer was last modified on the web or synced to the server from mobile. | ||
|
Note: At least one date range is required and none may be
greater than 3 months. If you provide more than one date range in the same
call, the system returns only results that meet both ranges, thereby
potentially narrowing your results.
| ||||
| Field | Type | Description |
|---|---|---|
| ProjectFormsListUpdatedInfomation | ProjectFormsListUpdatedInformation | Project forms updated answers between a data range, enabling the return of all additional, updated or deleted form answers. |
Note: To identify table row answers use the
FormAnswerLinkId column that gets returned. Answers can share a FormAnswerLinkId value
to identify that its on the same row as other answers.
<ProjectFormsListUpdatedResponse>
<Status>
<Code>SUCCESS</Code>
<Message>Success.</Message>
</Status>
<ProjectFormsListUpdatedInfomation>
<FormTemplateID></FormTemplateID>
<FormID></FormID>
<FormAnswerId></FormAnswerId>
<FormAnswerLinkId></FormAnswerLinkId>
<QuestionType></QuestionType>
<DataType></DataType>
<Question></Question>
<Answer></Answer>
<Alias></Alias>
<SortOrder></SortOrder>
<AnsweredBy></AnsweredBy>
<AnsweredDateTime></AnsweredDateTime>
<IsTableGroup></IsTableGroup>
<Deleted></Deleted>
<HasActions></HasActions>
<HasImages></HasImages>
<HasComments></HasComments>
<HasDocuments></HasDocuments>
<AnswerLastModifiedOnServer></AnswerLastModifiedOnServer>
</ProjectFormsListUpdatedInfomation>
</ProjectFormsListUpdatedResponse>