CredentialFilterResponse

Paginated list of credentials matching search criteria

Properties

Name Type Description
list array Array of credential records
page object
View JSON Schema on GitHub

JSON Schema

automation-anywhere-credentialfilterresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CredentialFilterResponse",
  "title": "CredentialFilterResponse",
  "type": "object",
  "description": "Paginated list of credentials matching search criteria",
  "properties": {
    "list": {
      "type": "array",
      "description": "Array of credential records",
      "items": {
        "$ref": "#/components/schemas/Credential"
      }
    },
    "page": {
      "$ref": "#/components/schemas/PageInfo"
    }
  }
}