Skip to main content
User Form Query API

User Form Query API enables you to query all forms under an app.

Updated over 4 months ago

What is the User Form Query API?

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 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"
        }
    ]


I have finished reading. 🏆

👉I can't wait to USE THE API.

👉I need more HELP in Discord Forum.

Did this answer your question?