secret_search
Search object for the search request. Attributes can be comma-separated strings (or in case of keyword, comma or space-separated). Individual attributes form a AND query and multiple values within an attribute form an OR query. E.g. search "dev 10.0" translates to WHERE (field1 like %dev% OR field2 like %dev%) AND (field1 like %10.0% OR field2 like %10.0%)
keywordsstring
Comma or space-separated strings to search in secrets' names. The leading and trailing wildcards for the keywords are implicit.
owner_idstring[]
List of users IDs that owns secrets.
filterstring
Defines what type of secrets to search for
Possible values: [personal
, shared
, readable
, writable
, accessible
, empty string
]
secret_search
{
"keywords": "string",
"owner_id": [
"string"
],
"filter": "personal"
}