Formlets api has limited access at the moment, and all actions are done only using Basic Authentication.
Endpoint: https://www.formlets.com/api
curl --location --request GET 'https://www.formlets.com/api/forms' \
--header 'Authorization: Basic {{ base64_of_username_and_password }}'
Model Schema:
{
"_id": String,
"responseStorage": String,
"responseStatusLists": String,
"notifyUseTemplate": String,
"notifySubmitter": String,
"elements": Json,
"tags": Json,
"name": String,
"useResponseNumber": Boolean,
"useCustomResponseLabel": Boolean,
"trackGeoAndTimezone": Boolean,
"customResponseLabel": String,
"responseNumStart": Integer,
"responseNumLabel": String,
"blockCommentLink": Boolean,
"views": Integer,
"active": Boolean,
"dateCreated": String
}