Updates the last updated timestamp of a form session to now().
By updating the timestamp the session timeout (default one hour) won't expire the form session.
Parameters
Name | Type | Description |
---|---|---|
formSessionIds | Array<String> | An array of form session IDs to update. Either formSessionIds or pageSessionIds must be set |
pageSessionIds | Array<String> | An array of page session IDs. Updates the form session IDs within those page sessions. Either formSessionIds or pageSessionIds must be set |
Example Request
{
"id": 1,
"method": "updateFormSessionLastUpdated",
"params": {
"formSessionIds": ["147CE963-8D0B-469D-A9B1-EE4E604BF16C"]
}
}
Example Response
{
"jsonrpc": "2.0",
"id": 1984,
"result": {
"updatedCount": 1
}
}
Last modified on June 27, 2023