Claude Platform Docs

Issuers

Create Federation Issuer
BetaFederationIssuer beta().organization().federation().issuers().create(IssuerCreateParamsparams, RequestOptionsrequestOptions = RequestOptions.none())
POST/v1/organizations/federation_issuers
List Federation Issuers
IssuerListPage beta().organization().federation().issuers().list(IssuerListParamsparams = IssuerListParams.none(), RequestOptionsrequestOptions = RequestOptions.none())
GET/v1/organizations/federation_issuers
Get Federation Issuer
BetaFederationIssuer beta().organization().federation().issuers().retrieve(IssuerRetrieveParamsparams = IssuerRetrieveParams.none(), RequestOptionsrequestOptions = RequestOptions.none())
GET/v1/organizations/federation_issuers/{federation_issuer_id}
Update Federation Issuer
BetaFederationIssuer beta().organization().federation().issuers().update(IssuerUpdateParamsparams = IssuerUpdateParams.none(), RequestOptionsrequestOptions = RequestOptions.none())
POST/v1/organizations/federation_issuers/{federation_issuer_id}
Archive Federation Issuer
BetaFederationIssuer beta().organization().federation().issuers().archive(IssuerArchiveParamsparams = IssuerArchiveParams.none(), RequestOptionsrequestOptions = RequestOptions.none())
POST/v1/organizations/federation_issuers/{federation_issuer_id}/archive
Models
class BetaFederationIssuer:

Registered external OIDC identity provider.

Records an external IdP the organization trusts for the RFC 7523 jwt-bearer grant. The issuer_url must match the JWT iss claim exactly.

class BetaFederationIssuerPollStatus:

Status of automatic JWKS polling for a federation issuer.

Anthropic periodically fetches the issuer's signing keys in the background. These fields summarize the most recent fetches so the health of the JWKS endpoint can be monitored.

long consecutiveFailures

Consecutive fetch failures since the last success.

Optional<LocalDateTime> lastFetchedAt

When the last successful fetch completed.

formatdate-time
Optional<LocalDateTime> nextPollAt

When the next fetch is scheduled. Null if paused.

formatdate-time
class BetaJwksDiscovery:

JWKS via the issuer's OIDC discovery document.

JsonValue type "discovery"constant
Optional<String> caCertPem

Optional custom CA (PEM) for TLS verification of the JWKS fetch.

maxLength8192
Optional<String> discoveryBase

Set when the discovery URL differs from issuer_url.

class BetaJwksExplicitUrl:

JWKS fetched from a fixed endpoint.

JsonValue type "explicit_url"constant
String url

JWKS endpoint.

minLength1
Optional<String> caCertPem

Optional custom CA (PEM) for TLS verification of the JWKS fetch.

maxLength8192
class BetaJwksInline:

JWKS supplied directly; no network fetch.

List<Key> keys

Inline JWK objects.

minItems1
JsonValue type "inline"constant