List API can retrieve list data from the specified datalist.
| Name | Description |
---|
1 | List |
Select any datalist present in the current app, for interaction with API.
|
2 | Short Description | |
3 | Retrieve list data |
Get all records from the specified datalist.
Name | Description |
---|
URL | /list/{datalistId} | HTTP Method | GET | Path Parameters | Parameter | Description |
---|
datalistId | Datalist ID to get records from. |
| Query String Parameters | Parameter | Description |
---|
filters | Filters the returned datalist records by querying the search terms with the datalist columns. Similar to the LIKE operator for database querying. | startOffset | Starting position of records to start query. Expects an integer. | pageSize | Number of results to return. Expects an integer. |
| Sample Response |
{
"total": 4,
"size": 4,
"data": [
{
"ref": "0003",
"total": "5.00",
"dateCreated": "Aug 21, 2019",
"remark": "",
"title": "Business Trip CEO",
"claimant": "Admin Admin",
"SelectApprover": "admin",
"status": "<span style='color:orange;font-weight:bold;'>Submitted</span>"
},
.....
]
}
|
|