User Form Query APIAPI Explorer
Introduction
API Introduction
User Form Query API enables you to query all forms under an app.
API Calling
The API enables you to query all forms under an app.
Request URL: https://api.jodoo.com/api/v5/app/entry/list
Request Frequency: 30 times/second
Request Method: POST
Request Parameters:
Parameter | Type | Required | Description |
app_id | String | Yes | App ID |
limit | Number | No | The number of records retrieved in a single query can be set from 0 to 100. It is set as 100 by default. |
skip | Number | No | The number of records to be skipped. It is set as 0 by default. |
{
"app_id": "5e0dca0cc9a2790006c11e02"
}
Responses:
Parameter | Description |
forms | App information |
forms[].name | App name |
forms[].app_id | App ID |
forms[].entry_id | Form ID |
Sample Response:
{
"forms": [
{
"name": "Form name 1",
"app_id": "5e0dca0cc9a2790006c11e02",
"entry_id": "56fcab0f02c4675e3fe9694a"
},
{
"name": "Form name 2",
"app_id": "5e0dca0cc9a2790006c11e02",
"entry_id": "5ed750af3c07c70f9c6eef78"
}
]
}