| Name | Description |
---|
1 | |
Add a new environment variable to the current app.
Name | Description |
---|
URL | /app/environment | HTTP Method | POST | Body Parameters | Parameter | Description |
---|
id | Environment variable ID. | value | Environment variable value. | remarks | Description of environment variable. |
| Sample Response |
{
"value": "I exist via API.",
"remarks": "This is an environment variable created with API Builder.",
"id": "apiEnvVar"
}
|
|
2 | |
Create a new app version based on the specified version of the current app.
Name | Description |
---|
URL | /app/new/{version} | HTTP Method | POST | Path Parameters | Parameter | Description |
---|
version | Version of current app to base on. Expects an integer value. |
| Sample Response |
{
"published": false,
"description": null,
"meta": null,
"id": "expenseclaim",
"version": 2,
"name": "Expenses Claim",
"dateCreated": "Aug 26, 2019 4:37:19 PM",
"dateModified": "Aug 26, 2019 4:37:22 PM"
}
|
|
3 | Delete environment variable |
Delete the specified environment variable in the current app.
Name | Description |
---|
URL | /app/environment/{id} | HTTP Method | DELETE | Path Parameters | Parameter | Description |
---|
id | ID of environment variable to remove. Expects a string. |
| Sample Response |
{
"date": "Mon Aug 26 16:57:53 SGT 2019",
"code": "200",
"message": "Successful operation"
}
|
|
4 | Delete version |
Delete the specified app version of the current app.
Name | Description |
---|
URL | /app/delete/{version} | HTTP Method | DELETE | Path Parameters | Parameter | Description |
---|
version | Version of current app to remove. Expects an integer value. |
| Sample Response |
{
"date": "Mon Aug 26 17:02:35 SGT 2019",
"code": "200",
"message": "Successful operation"
}
|
|
5 | Deploy XPDL |
Deploy a XPDL file as a new/updated process design to the current app.
Name | Description |
---|
URL | /app/deploy/xpdl | HTTP Method | POST | Body Parameters | Parameter | Description |
---|
File | Expects a XPDL file. |
| Sample Response |
{
"date": "Mon Aug 26 18:17:30 SGT 2019",
"code": "200",
"message": "Successful operation"
}
|
|
6 | Download XPDL |
Download the process definition of all process(es) as XPDL file.
Name | Description |
---|
URL | /app/xpdl | HTTP Method | GET | Parameters | - | Sample Response | |
|
7 | Download addon builder definition | Download the specified addon builder JSON definition. Name | Description |
---|
URL | /app/{builder}/definition/{id} | HTTP Method | GET | Path Parameters | | Sample Response | |
|
8 | Download datalist definition | Download the specified datalist JSON definition. Name | Description |
---|
URL | /app/datalist/definition/{id} | HTTP Method | GET | Path Parameters | | Sample Response | |
|
9 | Download form definition | Download the specified form JSON definition. Name | Description |
---|
URL | /app/form/definition/{id} | HTTP Method | GET | Path Parameters | | Sample Response | |
|
10 | Download userview definition | Download the specified userview JSON definition. Name | Description |
---|
URL | /app/userview/definition/{id} | HTTP Method | GET | Path Parameters | | Sample Response | |
|
11 | Find environment variable | Get values of all environment variable(s) in the current app by default. Able to filter or sort the returned results via parameters. Name | Description |
---|
URL | /app/environment/find | HTTP Method | GET | Path Parameters | | Sample Response | |
|
12 | Get environment variable by ID | Get values of an environment variable by its specified ID. Name | Description |
---|
URL | /app/environment/{id} | HTTP Method | GET | Path Parameters | | Sample Response | |
|
13 | Increase environment variable counter value | Increments the specified environment variable counter value by 1. Name | Description |
---|
URL | /app/environment/increaseCounter | HTTP Method | PUT | Path Parameters | | Sample Response | |
|
14 | List created addon builder element | List ID of all created addon builder element(s) present in the current app. Name | Description |
---|
URL | /app/list/{builder} | HTTP Method | GET | Path Parameters | | Sample Response | |
|
15 | List created datalist | List ID of all created datalist(s) present in the current app. Name | Description |
---|
URL | /app/list/datalist | HTTP Method | GET | Path Parameters | | Sample Response | |
|
16 | List created form | List ID of all created form(s) present in the current app. Name | Description |
---|
URL | /app/list/form | HTTP Method | GET | Path Parameters | | Sample Response | |
|
17 | List created userview | List ID of all created userview(s) present in the current app. Name | Description |
---|
URL | /app/list/userview | HTTP Method | GET | Path Parameters | | Sample Response | |
|
18 | List versions | List ID of all created app version(s) of the current app. Name | Description |
---|
URL | /app/versions | HTTP Method | GET | Path Parameters | | Sample Response | |
|
19 | Published version | Get the currently published app version of the current app. Name | Description |
---|
URL | /app/published | HTTP Method | GET | Path Parameters | | Sample Response | |
|
20 | Retrieve created addon builder element as options | List label & value of all addon builder element(s) present in the current app. Name | Description |
---|
URL | /app/{builder}/options | HTTP Method | GET | Path Parameters | | Sample Response | |
|
21 | Retrieve created datalist as options | List label & value of all datalist(s) present in the current app. Name | Description |
---|
URL | /app/datalist/options | HTTP Method | GET | Path Parameters | | Sample Response | |
|
22 | Retrieve created form as options | List label & value of all form(s) present in the current app. Name | Description |
---|
URL | /app/form/options | HTTP Method | GET | Path Parameters | | Sample Response | |
|
23 | Retrieve created userview as options | List label & value of all userview(s) present in the current app. Name | Description |
---|
URL | /app/userview/options | HTTP Method | GET | Path Parameters | | Sample Response | |
|
24 | Retrieve processes as options | List label & value of all process(es) present in the current app. Name | Description |
---|
URL | /app/process/options | HTTP Method | GET | Path Parameters | | Sample Response | |
|
25 | Update environment variable | Update the value of an environment variable in the current app. Name | Description |
---|
URL | /app/environment | HTTP Method | PUT | Path Parameters | | Sample Response | |
|