Write Form History

When a form is opened, save this to a list on the server.

The form history is the list of previously opened form records. The display of the history menu is managed here. Every time we open a form, we tell the server to keep this list for next time we login.

Write App Studio Form History

POST AppStudio/WriteFormHistory

This is a POST method which passes both the API and session keys as headers, and a body.

Headers

Name
Value

Content-Type

application/json

SiteKey

API Key

DataServicesKey

Session Key

Body

Name
Type
Description

UserId

Integer

The logged in user ID in their database. See this API.

Item

JSON Object

{
    "DisplayString": "Port Rush Golf Club",
    "PageName": "GolfClub",
    "RecordId": "abc123-port-rush"
}

Response Format/Sample

{
  "Success": true
}

Last updated