User App Query APIAPI Explorer
Introduction
API Introduction
User App Query API enables you to query the apps that are within the app permission scope in Open Platform > API Key.
API Calling
The API enables you to query the apps that are within the app permission scope in Open Platform > API Key.
Request URL: https://api.jodoo.com/api/v5/app/list
Request Frequency: 30 times/second
Request Method: POST
Request Parameters:
Parameter | Type | Required | Description |
limit | Number | No | The number of records to be retrieved in a single request. It should be between 1 and 100. The default value is 100. |
skip | Number | No | The number of records to be skipped. By default, it is set to 0. |
For example:
If you want to query data from the 500th to 599th row in the database, the number of records to be queried is 100, and the number to be skipped is 499. In this case, you need to set the skip as 499, and the limit as 100.
Responses:
Parameter | Description |
apps | App information |
apps[].name | App name |
apps[].app_id | App ID |
Sample Response:
{
"apps": [
{
"name": "App name 1",
"app_id": "5d5a5bbb850a6d0604ab119"
},
{
"name": "App name 2",
"app_id": "5d5a5c14850a6d0604ab11a4"
}
]
}