Help Center/ Host Security Service/ API Reference/ API Description/ Asset Management/ Asset Fingerprint - Account Information
Updated on 2025-09-22 GMT+08:00

Asset Fingerprint - Account Information

Function

This API is used to check account information in asset fingerprints.

URI

GET /v5/{project_id}/asset/user/statistics

Table 1 Path Parameters

Parameter

Mandatory

Type

Description

project_id

Yes

String

Project ID

Table 2 Query Parameters

Parameter

Mandatory

Type

Description

user_name

No

String

Account name. It must comply with the Windows file naming rules. The value can contain letters, digits, underscores (_), and the following special characters: !@.-.

enterprise_project_id

No

String

Enterprise project ID. To query all enterprise projects, set this parameter to all_granted_eps.

limit

No

Integer

Number of records displayed on each page. The default value is 10.

offset

No

Integer

Offset, which specifies the start position of the record to be returned. The value must be a number no less than 0.

Request Parameters

Table 3 Request header parameters

Parameter

Mandatory

Type

Description

X-Auth-Token

Yes

String

User token.

It can be obtained by calling the IAM API used to obtain a user token. The value of X-Subject-Token in the response header is a token.

Response Parameters

Status code: 200

Table 4 Response body parameters

Parameter

Type

Description

total_num

Integer

Total number of accounts

data_list

Array of UserStatisticInfoResponseInfo objects

Account statistics list

Table 5 UserStatisticInfoResponseInfo

Parameter

Type

Description

user_name

String

Account name. It must comply with the Windows file naming rules. The value can contain letters, digits, underscores (_), and the following special characters: !@.-.

num

Integer

Number of servers of the account

Example Requests

The first 10 accounts are queried by default.

GET https://{endpoint}/v5/{project_id}/asset/user/statistics

Example Responses

Status code: 200

Number of servers having the account

{
  "total_num" : 1,
  "data_list" : [ {
    "user_name" : "bin",
    "num" : 5
  } ]
}

Status Codes

Status Code

Description

200

Number of servers having the account

Error Codes

See Error Codes.