Find us at our new Help Center where we've combined our documentation and knowledgebase articles in one easy-to-search location.
We aren't updating the Developer Portal anymore, except for the Element Docs — all updates happen in the Help Center. We're retiring the Developer Portal as you know it in:
In formula instances, you replace the Element Instance and Value variables in the template with specific element instances and values. You can set up formula instances to notify you of any errors through email or a webhook URL.
To create a formula instance:
You can create temporary formula instances that exist for a specified amount of time. Specify the time in seconds, such as 86400
for a day or 3600
for an hour. Every hour, Cloud Elements checks for temporary formula instances that have expired and deletes them. You can create temporary formula instances only through the Cloud Elements APIs.
To create a temporary formula instance, add "formula.instance.time.to.live": <seconds>
to the settings
object in a POST /formulas/{id}/instances
request. Here's an example where the formula instance expires after one hour:
{
"active": true,
"configuration": {
"<key>": "string"
},
"settings": {
"notification.email": "string",
"notification.webhook.url": "string",
"api": "string",
"formula.instance.time.to.live": 3600
},
"createdDate": "2018-01-23T16:33:47.431Z",
"formula": {
"active": true,
"id": 0
},
"name": "string",
"updatedDate": "2018-01-23T16:33:47.431Z"
}
You can deactivate a formula to temporarily stop executions until you reactivate it.
To deactivate a formula instance:
You can troubleshoot formulas instances or review successful executions. The executions appear in three columns from left to right:
To review formula instance executions:
To delete a formula instance:
You can update the following information in a formula instances:
To edit a formula variable:
The Formula Instance ID is a unique identifier for each formula instance. You can see the formula ID on a formula instance card under the title.