Get Filter Suggestions
POST/audit/api/v1/filter/suggest
Get UI Filter Suggestions for Resource Types and User
Rate Limits
The following rate limits apply:
- Request rate limit: 10/sec
- Burst limit: 10/sec
Request
- application/json
Body
required
The name of the filter
Case-insensitive query to suggest filter values. Includes only items that contain the query as a substring.
Responses
- 200
- 400
- 401
- 403
- 429
Successful Operation
- application/json
- Schema
- Example (from schema)
Schema
List of Suggestions
Query Remainder
{
"suggestions": [
"string"
],
"queryRemainder": "string"
}
Bad Request
- application/json
- Schema
- Example (from schema)
Schema
error object
The actual error object
Error Codes: BadRequest(400), Unauthorized(401), Forbidden(403), TooManyRequests(429).
A human-readable representation of the error.
The target of the error
An array of details about specific errors that led to this reported error
{
"error": {
"code": "string",
"message": "string",
"target": "string",
"details": [
null
]
}
}
Unauthorized
- application/json
- Schema
- Example (from schema)
Schema
error object
The actual error object
Error Codes: BadRequest(400), Unauthorized(401), Forbidden(403), TooManyRequests(429).
A human-readable representation of the error.
The target of the error
An array of details about specific errors that led to this reported error
{
"error": {
"code": "string",
"message": "string",
"target": "string",
"details": [
null
]
}
}
Forbidden
- application/json
- Schema
- Example (from schema)
Schema
error object
The actual error object
Error Codes: BadRequest(400), Unauthorized(401), Forbidden(403), TooManyRequests(429).
A human-readable representation of the error.
The target of the error
An array of details about specific errors that led to this reported error
{
"error": {
"code": "string",
"message": "string",
"target": "string",
"details": [
null
]
}
}
Too Many Requests
- application/json
- Schema
- Example (from schema)
Schema
error object
The actual error object
Error Codes: BadRequest(400), Unauthorized(401), Forbidden(403), TooManyRequests(429).
A human-readable representation of the error.
The target of the error
An array of details about specific errors that led to this reported error
{
"error": {
"code": "string",
"message": "string",
"target": "string",
"details": [
null
]
}
}