Claude Platform Docs

외부 키 검증

$ ant beta:organization:external-keys validate
POST/v1/organizations/external_keys/{external_key_id}/validate

고객의 KMS에 대해 외부 키 구성을 검증합니다.

Anthropic은 구성된 KMS 키에 대해 암호화/복호화 왕복을 수행하고 결과를 최대 30초 동안 기다립니다. 왕복이 성공하면 응답 상태는 success이고, 실패하거나 시간이 초과되면 오류 메시지와 함께 failure입니다.

Parameters
--external-key-id: string

ID of the External Key.

maxLength2048
Returns
BetaOrganizationExternalKeyValidateResponse: object{ error, status, type }

Result of a validation roundtrip against the customer's KMS.

HTTP 200 for both outcomes — the operation completed; status says whether the key works.

error: string

Error message when status is failure. Null otherwise.

status: "failure" or "success"

success — encrypt/decrypt roundtrip succeeded. failure — the roundtrip failed or timed out; see error.

One of the following:
"failure"
"success"
type: "external_key_validation"
외부 키 검증
ant beta:organization:external-keys validate \
  --api-key my-anthropic-api-key \
  --external-key-id external_key_id
Returns Examples
Response 200
{
  "error": "error",
  "status": "failure",
  "type": "external_key_validation"
}