Security AI Assistant API
Get anonymization fields
Spaces method and path for this operation:
<div><span class="operation-verb get">get</span> <span class="operation-path">/s/{space_id}/api/security_ai_assistant/anonymization_fields/_find</span></div>Refer to Spaces for more information.
Get a list of all anonymization fields.
get/api/security_ai_assistant/anonymization_fields/_find
Query parameters
fieldsstring[]
Fields to return
filterstring
Search query
sort_field'created_at' | 'anonymized' | 'allowed' | 'field' | 'updated_at'
Field to sort by
sort_order'asc' | 'desc'
The order in which results are sorted.
Example:asc
Sort order
pageinteger
Page number
per_pageinteger
AnonymizationFields per page
all_databoolean
If true, additionally fetch all anonymization fields, otherwise fetch only the provided page
Response
Indicates a successful call.
Example response
{
"all": [
{
"allowed": true,
"createdAt": "2023-10-31T12:00:00Z",
"createdBy": "user1",
"field": "url.domain",
"id": "I am a string",
"namespace": "default",
"timestamp": "2023-10-31T12:00:00Z",
"updatedAt": "2023-10-31T12:00:00Z",
"updatedBy": "user1"
}
],
"data": [
{
"allowed": true,
"createdAt": "2023-10-31T12:00:00Z",
"createdBy": "user1",
"field": "url.domain",
"id": "I am a string",
"namespace": "default",
"timestamp": "2023-10-31T12:00:00Z",
"updatedAt": "2023-10-31T12:00:00Z",
"updatedBy": "user1"
}
]
}