v2

latestOpenAPI 3.0.3Apache 2.0raw.githubusercontent.com2026-01-12412664.0 KB
Policies

List Attestation Policies

Retrieve a list of attestation policies used for agent bootstrapping. These policies control which workloads can bootstrap agent identities.

get/policies/attestation

Query parameters

skipinteger

Number of records to skip for pagination

limitinteger

Maximum number of records to return

Response

List of attestation policies retrieved successfully

idstring uuid
platform'kubernetes' | 'aws' | 'azure' | 'docker'
selectorobject

Platform-specific selector criteria

effect'allow' | 'deny'
created_atstring date-time
updated_atstring date-time

Example response

[
  {
    "platform": "kubernetes",
    "selector": {
      "namespace": "production",
      "service_account": "ai-agents"
    },
    "effect": "allow"
  }
]