Skip to main content

Get Member Resource Usage Statistics API

Introduction

Retrieves member-level resource usage statistics for the current organization on a specified date.


Plan Description

This is a paid advanced feature. For details, contact our Sales Team.


API Version

API Version

Updated On

Description

v1

2026-05-28

Initial release


API Call

Rate Limit: 1 request/second

Method: POST

Request Parameters

Parameter

Type

Required

Description

date

String

No

The statistics date in yyyy-MM-dd format. If omitted or set to an empty string, the API queries statistics for the previous day, namely T-1.

member_ids

String[]

No

The list of member IDs. Up to 10 member IDs are supported. If omitted or set to an empty array, all members are queried with pagination.

skip

Number

No

The pagination offset. Default: 0.

limit

Number

No

The page size. Default: 20. Maximum: 100.

Notes:

  1. When date is specified, it must not be later than the previous day, namely T-1. The API supports querying data from the last 180 days only.

  2. This API does not return total. Use has_next to determine whether more pages are available.

  3. date is based on UTC+8 by default.

    1. For example, if the local date in the United States is 2026-05-28 and the date in China is 2026-05-27, passing 2026-05-28 as date will not return the corresponding data.

    2. This is because date is interpreted in UTC+8. In this case, the UTC+8 date is 2026-05-27, and date must not be later than the previous day. Therefore, only data for 2026-05-26 or earlier can be queried.

  4. Before using this API, make sure that the Admin Console > Management Tools > Usage Statistics feature has been enabled and used. Otherwise, the related data cannot be retrieved, and the metric fields will return 0.

Request Example:

{

"date": "2026-05-08",

"member_ids": [

"65f000000000000000000011"

],

"skip": 0,

"limit": 20

}

Response Parameters:

Parameter

Description

date

The statistics date.

has_next

Indicates whether more pages are available.

items

The list of member usage statistics.

items[].member

Basic information about the member.

items[].member.member_id

The member ID.

items[].member.name

The member name.

items[].metrics

Member-level metrics. The metric fields are listed below.

  • app:The number of apps.

  • form_coop:The number of standard forms.

  • form_workflow:The number of workflow forms.

  • dash:The number of dashboards.

  • etl:The number of Data Factories.

  • aggregate:The number of aggregate tables.

  • public_link:The number of enabled public links.

  • data_trigger:The number of Smart Assistants.

  • automation:The number of Smart Assistant Pro automations.

  • bpa:The number of Process Analyses

  • data :The total data volume.

Response Example:

{
"date": "2026-05-08",
"has_next": false,
"items": [
{
"member": {
"member_id": "65f000000000000000000011",
"name": "Tom"
},
"metrics": {
"app": 2,
"form_coop": 10,
"form_workflow": 1,
"dash": 3,
"etl": 1,
"aggregate": 0,
"public_link": 2,
"data_trigger": 1,
"automation": 1,
"bpa": 0
}
}
]
}
Did this answer your question?