Query Application Users (2.0)
POST/v2.0/api/tenants/:tenant_id/monitor/application/users
Query the application users.
Request
Path Parameters
tenant_id stringrequired
The tenant ID.
- application/json
Body
Filters for application qos point metrics
application_name stringrequired
Filter by application name.
end_time date
Filter by end time.
name string
Filter by app name.
start_time date
Filter by end time.
Responses
- 200
- 400
Successful Operation
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
data ApplicationUserData[]
Data
client_ip string
The client IP address.
email string
The email ID of the application user.
site string
The site.
user_name string
The user name of the application user.
{
"data": [
{
"client_ip": "string",
"email": "string",
"site": "string",
"user_name": "string"
}
]
}
Bad Request
- application/json
- Schema
- Example (from schema)
- Example
Schema
- Array [
- ]
_error ErrorResponse[]
code string
The error code.
message string
The error message.
{
"_error": [
{
"code": "string",
"message": "string"
}
]
}
{
"value": {
"_error": [
{
"code": "REQUIRED_PROPERTY"
},
{
"code": "INVALID_STATS_REQUEST_BODY"
},
{
"code": "APPLICATION_NOT_SUPPORTED"
},
{
"code": "START_TIME_GREATER_THAN_END_TIME"
},
{
"code": "SERVICE_UNAVAILABLE"
}
]
}
}
Loading...