Authlete Federation Endpoint API
API endpoints for implementing OpenID Federation using Authlete.
API endpoints for implementing OpenID Federation using Authlete.
Every API here is available over the APIs.io API and to AI agents over MCP.
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
find_apisBrowse and filter every API in the catalog.get_api_artifactsOne API's artifacts, grouped by type.get_openapiThe primary OpenAPI for this API.find_similar_apisAPIs that look like this one.apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.resolveTurn a domain, URL or GitHub org into the provider it belongs to.find_cohortsEvery scored population of providers in the catalog.curl "https://apis.io/api/v1/apis/authlete-federation-endpoint-api"
curl "https://apis.io/api/v1/apis?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.
A second provider on the same verified email joins the account you already have.
openapi: 3.2.0
info:
title: Authlete Federation Endpoint API
description: Welcome to the **Authlete API documentation**.
version: 3.0.16
license:
name: Apache 2.0
url: https://www.apache.org/licenses/LICENSE-2.0.html
servers:
- description: 🇺🇸 US Cluster
url: https://us.authlete.com
- description: 🇯🇵 Japan Cluster
url: https://jp.authlete.com
- description: 🇪🇺 Europe Cluster
url: https://eu.authlete.com
- description: 🇧🇷 Brazil Cluster
url: https://br.authlete.com
security:
- bearer: []
tags:
- name: Federation Endpoint
description: API endpoints for implementing OpenID Federation using Authlete.
x-tag-expanded: false
paths:
/api/{serviceId}/federation/configuration:
post:
summary: Process Entity Configuration Request
description: 'This API gathers the federation configuration about a service.
The authorization server implementation should
retrieve the value of the `action`
response parameter from the API response and take the following steps
according to the value.'
x-mint:
metadata:
description: This API gathers the federation configuration about a service. The authorization server implementation should retrieve the value of the `action` response parameter from the API response and take the following steps according to the value.
content: '<Accordion title="Full description" defaultOpen={false}>
### `OK`
When the value of the `action` response
parameter is `OK`, it means that Authlete
could prepare an entity configuration successfully.
In this case, the implementation of the entity configuration endpoint of the
authorization server should return an HTTP response to the client application
with the HTTP status code "`200 OK`" and the content type
"`application/entity-statement+jwt`". The message body (= an entity
configuration in the JWT format) of the response has been prepared by
Authlete''s `/federation/configuration` API and it is available as the
`responseContent` response parameter.
The implementation of the entity configuration endpoint can construct an
HTTP response by doing like below.
```
200 OK
Content-Type: application/entity-statement+jwt
(Other HTTP headers)
(the value of the responseContent response parameter)
```
### `NOT_FOUND`
When the value of the `action` response
parameter is `NOT_FOUND`, it means that
the service configuration has not enabled the feature of [OpenID Connect
Federation 1.0](https://openid.net/specs/openid-connect-federation-1_0.html) and so the client application should have not access the
entity configuration endpoint.
In this case, the implementation of the entity configuration endpoint of the
authorization server should return an HTTP response to the client application
with the HTTP status code "`404 Not Found`" and the content type
"`application/json`". The message body (= error information in the JSON
format) of the response has been prepared by Authlete''s
`/federation/configuration` API and it is available as the
`responseContent` response parameter.
The implementation of the entity configuration endpoint can construct an
HTTP response by doing like below.
```
404 Not Found
Content-Type: application/json
(Other HTTP headers)
(the value of the responseContent response parameter)
```
### `INTERNAL_SERVER_ERROR`
could prepare an entity configuration successfully.
In this case, the implementation of the entity configuration endpoint of the
authorization server should return an HTTP response to the client application
with the HTTP status code "`200 OK`" and the content type
"`application/entity-statement+jwt`". The message body (= an entity
configuration in the JWT format) of the response has been prepared by
Authlete''s `/federation/configuration` API and it is available as the
`responseContent` response parameter.
The implementation of the entity configuration endpoint can construct an
HTTP response by doing like below.
```
200 OK
Content-Type: application/entity-statement+jwt
(Other HTTP headers)
(the value of the responseContent response parameter)
```
</Accordion>
'
parameters:
- in: path
name: serviceId
description: A service ID.
required: true
schema:
type: string
requestBody:
content:
application/json:
schema:
type: object
responses:
'200':
description: Federation configuration retrieved successfully
content:
application/json:
schema:
$ref: '#/components/schemas/federation_configuration_response'
'400':
$ref: '#/components/responses/400'
'401':
$ref: '#/components/responses/401'
'403':
$ref: '#/components/responses/403'
'500':
$ref: '#/components/responses/500'
operationId: federation_configuration_api
x-code-samples:
- lang: shell
label: curl
source: 'curl -v https://us.authlete.com/api/21653835348762/federation/configuration \
-H ''Authorization: Bearer V5a40R6dWvw2gMkCOBFdZcM95q4HC0Z-T0YKD9-nR6F''
'
- lang: java
label: java
source: 'AuthleteConfiguration conf = ...;
AuthleteApi api = AuthleteApiFactory.create(conf);
api.getFederationConfiguration();
'
- lang: python
source: 'conf = ...
api = AuthleteApiImpl(conf)
api.getFederationConfiguration(True)
'
tags:
- Federation Endpoint
/api/{serviceId}/federation/registration:
post:
summary: Process Federation Registration Request
description: 'The Authlete API is for implementations of the **federation registration
endpoint** that accepts "explicit client registration". Its details are
defined in OpenID Connect Federation 1.0.
The endpoint accepts `POST` requests whose `Content-Type`
is either of the following.
1. `application/entity-statement+jwt`- `application/trust-chain+json`
When the `Content-Type` of a request is
`application/entity-statement+jwt`, the content of the request is
the entity configuration of a relying party that is to be registered.
In this case, the implementation of the federation registration endpoint
should call Authlete''s `/federation/registration` API with the
entity configuration set to the `entityConfiguration` request
parameter.
On the other hand, when the `Content-Type` of a request is
`application/trust-chain+json`, the content of the request is a
JSON array that contains entity statements in JWT format. The sequence
of the entity statements composes the trust chain of a relying party
that is to be registered. In this case, the implementation of the
federation registration endpoint should call Authlete''s
`/federation/registration` API with the trust chain set to the
`trustChain` request parameter.'
parameters:
- in: path
name: serviceId
description: A service ID.
required: true
schema:
type: string
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/federation_registration_request'
application/x-www-form-urlencoded:
schema:
$ref: '#/components/schemas/federation_registration_request'
responses:
'200':
description: ''
content:
application/json:
schema:
$ref: '#/components/schemas/federation_registration_response'
'400':
$ref: '#/components/responses/400'
'401':
$ref: '#/components/responses/401'
'403':
$ref: '#/components/responses/403'
'500':
$ref: '#/components/responses/500'
operationId: federation_registration_api
tags:
- Federation Endpoint
components:
schemas:
federation_registration_response:
type: object
properties:
resultCode:
type: string
description: The code which represents the result of the API call.
resultMessage:
type: string
description: A short message which explains the result of the API call.
action:
type: string
enum:
- OK
- BAD_REQUEST
- NOT_FOUND
- INTERNAL_SERVER_ERROR
description: The next action that the authorization server implementation should take.
responseContent:
type: string
description: 'The content that the authorization server implementation can use as the value of `WWW-Authenticate`
header on errors.
'
client:
$ref: '#/components/schemas/client'
federation_registration_request:
type: object
properties:
entityConfiguration:
type: string
description: 'The entity configuration of a relying party.
'
trustChain:
type: string
description: 'The trust chain of a relying party.
'
result:
type: object
properties:
resultCode:
type: string
description: The code which represents the result of the API call.
resultMessage:
type: string
description: A short message which explains the result of the API call.
jws_alg:
type:
- string
- 'null'
description: "The signature algorithm for JWT. This value is represented on 'alg' attribute\nof the header of JWT.\n\nit's semantics depends upon where is this defined, for instance:\n - as service accessTokenSignAlg value, it defines that access token are JWT and the algorithm used to sign it. Check your [KB article](https://kb.authlete.com/en/s/oauth-and-openid-connect/a/jwt-based-access-token).\n - as client authorizationSignAlg value, it represents the signature algorithm used when [creating a JARM response](https://kb.authlete.com/en/s/oauth-and-openid-connect/a/enabling-jarm).\n - or as client requestSignAlg value, it specifies which is the expected signature used by [client on a Request Object](https://kb.authlete.com/en/s/oauth-and-openid-connect/a/request-objects).\n"
enum:
- NONE
- HS256
- HS384
- HS512
- RS256
- RS384
- RS512
- ES256
- ES384
- ES512
- PS256
- PS384
- PS512
- ES256K
- EdDSA
application_type:
type: string
description: 'The application type. The value of this property affects the validation steps for a redirect URI.
See the description about `redirectUris` property for more details.
'
enum:
- WEB
- NATIVE
jwe_enc:
type:
- string
- 'null'
description: "This is the encryption algorithm to be used when encrypting a JWT on client or server side.\nDepending upon the context, this refers to encryption done by the client or by the server. For instance:\n - as `authorizationEncryptionEnc` value, it refers to the encryption algorithm used by server when creating a JARM response\n - as `requestEncryptionEnc` value, it refers to the expected encryption algorithm used by the client when encrypting a Request Object\n - as `idTokenEncryptionEnc` value, it refers to the algorithm used by the server to encrypt id_tokens\n"
enum:
- A128CBC_HS256
- A192CBC_HS384
- A256CBC_HS512
- A128GCM
- A192GCM
- A256GCM
client_extension:
type: object
properties:
requestableScopes:
type: array
items:
type: string
description: 'The set of scopes that the client application is allowed to request. This paramter will be one
of the following.
'
x-mint:
metadata:
description: The set of scopes that the client application is allowed to request. This paramter will be one of the following.
content: "<Accordion title=\"Full description\" defaultOpen={false}>\n - `null`\n - an empty set\n - a set with at least one element\n\nWhen the value of this parameter is `null`, it means that the set of scopes that the client\napplication is allowed to request is the set of the scopes that the service supports. When the\nvalue of this parameter is an empty set, it means that the client application is not allowed to\nrequest any scopes. When the value of this parameter is a set with at least one element, it means\nthat the set is the set of scopes that the client application is allowed to request.\n</Accordion>\n"
requestableScopesEnabled:
type: boolean
description: 'The flag to indicate whether "Requestable Scopes per Client" is enabled or not. If `true`, you
can define the set of scopes which this client application can request. If `false`, this client
application can request any scope which is supported by the authorization server.
'
accessTokenDuration:
type: integer
format: int64
description: 'The value of the duration of access tokens per client in seconds. In normal cases, the value of
the service''s `accessTokenDuration` property is used as the duration of access tokens issued by
the service. However, if this `accessTokenDuration` property holds a non-zero positive number
and its value is less than the duration configured by the service, the value is used as the duration
of access tokens issued to the client application.
Note that the duration of access tokens can be controlled by the scope attribute `access_token.duration`,
too. Authlete chooses the minimum value among the candidates.
'
refreshTokenDuration:
type: integer
format: int64
description: 'The value of the duration of refresh tokens per client in seconds. In normal cases, the value
of the service''s `refreshTokenDuration` property is used as the duration of refresh tokens issued
by the service. However, if this `refreshTokenDuration` property holds a non-zero positive number
and its value is less than the duration configured by the service, the value is used as the duration
of refresh tokens issued to the client application.
Note that the duration of refresh tokens can be controlled by the scope attribute `refresh_token.duration`,
too. Authlete chooses the minimum value among the candidates.
'
idTokenDuration:
type: integer
format: int64
description: 'The value of the duration of ID tokens per client in seconds. In normal cases, the value
of the service''s `idTokenDuration` property is used as the duration of ID tokens issued
by the service. However, if this `idTokenDuration` property holds a non-zero positive number
and its value is less than the duration configured by the service, the value is used as the duration
of ID tokens issued to the client application.
Note that the duration of refresh tokens can be controlled by the scope attribute `id_token.duration`,
too. Authlete chooses the minimum value among the candidates.
'
tokenExchangePermitted:
type: boolean
description: 'Get the flag indicating whether the client is explicitly given a
permission to make token exchange requests ([RFC 8693][https://www.rfc-editor.org/rfc/rfc8693.html])
'
grant_type:
type: string
description: 'The grant type of the access token when the access token was created.
'
enum:
- AUTHORIZATION_CODE
- IMPLICIT
- PASSWORD
- CLIENT_CREDENTIALS
- REFRESH_TOKEN
- CIBA
- DEVICE_CODE
- TOKEN_EXCHANGE
- JWT_BEARER
- PRE_AUTHORIZED_CODE
jwe_alg:
type:
- string
- 'null'
description: 'this is the ''alg'' header value for encrypted JWT tokens.
Depending upon the context, this refers to key transport scheme to be used by the client and by the server. For instance:
- as `authorizationEncryptionAlg` value, it refers to the encoding algorithm used by server for transporting they keys on JARM objects
- as `requestEncryptionAlg` value, it refers to the expected key transport encoding algorithm that server expect from client when encrypting a Request Object
- as `idTokenEncryptionAlg` value, it refers to the algorithm used by the server to key transport of id_tokens
**Please note that some of the algorithms are more secure than others, some are not supported very well cross platforms and some (like RSA1_5) is known to be weak**.
'
enum:
- RSA1_5
- RSA_OAEP
- RSA_OAEP_256
- A128KW
- A192KW
- A256KW
- DIR
- ECDH_ES
- ECDH_ES_A128KW
- ECDH_ES_A192KW
- ECDH_ES_A256KW
- A128GCMKW
- A192GCMKW
- A256GCMKW
- PBES2_HS256_A128KW
- PBES2_HS384_A192KW
- PBES2_HS512_A256KW
client_registration_type:
type: string
description: "Values for the `client_registration_types` RP metadata and the\n `client_registration_types_supported` OP metadata that are defined in\n [OpenID Connect Federation 1.0](https://openid.net/specs/openid-connect-federation-1_0.html).\n"
enum:
- AUTOMATIC
- EXPLICIT
client_type:
type: string
description: 'The client type, either `CONFIDENTIAL` or `PUBLIC`. See [RFC 6749, 2.1. Client Types](https://datatracker.ietf.org/doc/html/rfc6749#section-2.1)
for details.
'
enum:
- PUBLIC
- CONFIDENTIAL
fapi_mode:
type: string
enum:
- FAPI1_ADVANCED
- FAPI1_BASELINE
- FAPI2_MESSAGE_SIGNING_AUTH_REQ
- FAPI2_MESSAGE_SIGNING_AUTH_RES
- FAPI2_MESSAGE_SIGNING_INTROSPECTION_RES
- FAPI2_SECURITY
response_type:
type: string
enum:
- NONE
- CODE
- TOKEN
- ID_TOKEN
- CODE_TOKEN
- CODE_ID_TOKEN
- ID_TOKEN_TOKEN
- CODE_ID_TOKEN_TOKEN
pair:
type: object
properties:
key:
type: string
description: The key part.
value:
type: string
description: The value part.
client:
type: object
additionalProperties: true
example:
number: 1140735077
serviceNumber: 715948317
clientName: My Test Client
clientId: '1140735077'
clientSecret: gXz97ISgLs4HuXwOZWch8GEmgL4YMvUJwu3er_kDVVGcA0UOhA9avLPbEmoeZdagi9yC_-tEiT2BdRyH9dbrQQ
clientType: PUBLIC
redirectUris:
- https://example.com/callback
responseTypes:
- CODE
grantTypes:
- AUTHORIZATION_CODE
properties:
number:
type: integer
format: int32
readOnly: true
description: 'The sequential number of the client. The value of this property is assigned by Authlete.
'
serviceNumber:
type: integer
format: int32
readOnly: true
description: 'The sequential number of the service of the client application. The value of this property is
assigned by Authlete.
'
clientName:
type: string
description: 'The name of the client application. This property corresponds to `client_name` in
[OpenID Connect Dynamic Client Registration 1.0, 2. Client Metadata](https://openid.net/specs/openid-connect-registration-1_0.html#ClientMetadata).
'
clientNames:
type: array
items:
$ref: '#/components/schemas/tagged_value'
description: 'Client names with language tags. If the client application has different names for different
languages, this property can be used to register the names.
'
description:
type: string
description: The description about the client application.
descriptions:
type: array
items:
$ref: '#/components/schemas/tagged_value'
description: 'Descriptions about the client application with language tags. If the client application has different
descriptions for different languages, this property can be used to register the descriptions.
'
clientId:
type: integer
format: int64
readOnly: true
description: The client identifier used in Authlete API calls. The value of this property is assigned by Authlete.
clientSecret:
type: string
readOnly: true
description: 'The client secret. A random 512-bit value encoded by base64url (86 letters). The value of this
property is assigned by Authlete.
'
x-mint:
metadata:
description: The client secret. A random 512-bit value encoded by base64url (86 letters). The value of this property is assigned by Authlete.
content: '<Accordion title="Full description" defaultOpen={false}>
Note that Authlete issues a client secret even to a "public" client application, but the client
application should not use the client secret unless it changes its client type to "confidential".
That is, a public client application should behave as if it had not been issued a client secret.
To be specific, a token request from a public client of Authlete should not come along with a
client secret although [RFC 6749, 3.2.1. Client Authentication](https://datatracker.ietf.org/doc/html/rfc6749#section-3.2.1)
says as follows.
> Confidential clients or other clients issued client credentials MUST authenticate with the
authorization server as described in Section 2.3 when making requests to the token endpoint.
</Accordion>
'
clientIdAlias:
type: string
description: 'The value of the client''s `client_id` property used in OAuth and OpenID Connect calls. By
default, this is a string version of the `clientId` property.
'
clientIdAliasEnabled:
type: boolean
description: Deprecated. Always set to `true`.
clientType:
$ref: '#/components/schemas/client_type'
applicationType:
$ref: '#/components/schemas/application_type'
logoUri:
type: string
description: 'The URL pointing to the logo image of the client application.
This property corresponds to `logo_uri` in [OpenID Connect Dynamic Client Registration 1.0, 2.
Client Metadata](https://openid.net/specs/openid-connect-registration-1_0.html#ClientMetadata).
'
logoUris:
type: array
items:
$ref: '#/components/schemas/tagged_value'
description: 'Logo image URLs with language tags. If the client application has different logo images for
different languages, this property can be used to register URLs of the images.
'
contacts:
type: array
items:
type: string
description: 'An array of email addresses of people responsible for the client application.
This property corresponds to contacts in [OpenID Connect Dynamic Client Registration 1.0, 2. Client
Metadata](https://openid.net/specs/openid-connect-registration-1_0.html#ClientMetadata).
'
tlsClientCertificateBoundAccessTokens:
type: boolean
description: 'The flag to indicate whether this client use TLS client certificate bound access tokens.
'
dynamicallyRegistered:
type: boolean
readOnly: true
description: 'The flag to indicate whether this client has been registered dynamically.
For more details, see [RFC 7591](https://datatracker.ietf.org/doc/html/rfc7591).
'
softwareId:
type: string
description: 'The unique identifier string assigned by the client developer or software publisher used by
registration endpoints to identify the client software to be dynamically registered.
This property corresponds to the `software_id metadata` defined in [2. Client Metadata](https://datatracker.ietf.org/doc/html/rfc7591#section-2)
of [RFC 7591](https://datatracker.ietf.org/doc/html/rfc7591).
'
developer:
type: string
description: 'The unique identifier of the developer who created this client application.
'
softwareVersion:
type: string
description: 'The version identifier string for the client software identified by the software ID.
This property corresponds to the software_version metadata defined in [2. Client Metadata](https://datatracker.ietf.org/doc/html/rfc7591#section-2)
of [RFC 7591](https://datatracker.ietf.org/doc/html/rfc7591).
'
registrationAccessTokenHash:
type: string
description: 'The hash of the registration access token for this client.
'
createdAt:
type: integer
format: int64
readOnly: true
description: The time at which this client was created. The value is represented as milliseconds since the UNIX epoch (1970-01-01).
modifiedAt:
type: integer
format: int64
readOnly: true
description: The time at which this client was last modified. The value is represented as milliseconds since the UNIX epoch (1970-01-01).
grantTypes:
type: array
items:
$ref: '#/components/schemas/grant_type'
description: 'A string array of grant types which the client application declares that it will restrict itself to using.
This property corresponds to `grant_types` in [OpenID Connect Dynamic Client Registration 1.0,
2. Client Metadata](https://openid.net/specs/openid-connect-registration-1_0.html#ClientMetadata).
'
responseTypes:
type: array
items:
$ref: '#/components/schemas/response_type'
description: 'A string array of response types which the client application declares that it will restrict itself to using.
This property corresponds to `response_types` in [OpenID Connect Dynamic Client Registration 1.0,
2. Client Metadata](https://openid.net/specs/openid-connect-registration-1_0.html#ClientMetadata).
'
redirectUris:
type: array
items:
type: string
description: 'Redirect URIs that the client application uses to receive a response from the authorization endpoint.
Requirements for a redirect URI are as follows.
'
x-mint:
metadata:
description: Redirect URIs that the client application uses to receive a response from the authorization endpoint. Requirements for a redirect URI are as follows.
content: '<Accordion title="Full description" defaultOpen={false}>
**Requirements by RFC 6749** (From [RFC 6749, 3.1.2. Redirection Endpoint](https://datatracker.ietf.org/doc/html/rfc6749#section-3.1.2))
- Must be an absolute URI.
- Must not have a fragment component.
**Requirements by OpenID Connect** (From "[OpenID Connect Dynamic Client Registration 1.0, 2.
Client Metadata](https://openid.net/specs/openid-connect-registration-1_0.html#ClientMetadata),
application_type")
- The scheme of the redirect URI used for Implicit Grant by a client application whose application
is `web` must be `https`. This is checked at runtime by Authlete.
- The hostname of the redirect URI used for Implicit Grant by a client application whose application
type is `web` must not be `localhost`. This is checked at runtime by Authlete.
- The scheme of the redirect URI used by a client application whose application type is `native`
must be either (1) a custom scheme or (2) `http`, which is allowed only when the hostname part
is `localhost`. This is checked at runtime by Authlete.
## Requirements by Authlete
- Must consist of printable ASCII letters only.
- Must not exceed 200 letters.
Note that Authlete allows the application type to be `null`. In other words, a client application
does not have to choose `web` or `native` as its application type.
If the application type is `null`, the requirements by OpenID Connect are not checked at runtime.
An authorization request from a client application which has not registered any redirect URI
fails unless at least all the following conditions are satisfied.
- The client type of the client application is `confidential`.
- The value of `response_type` request parameter is `code`.
- The authorization request has the `redirect_uri` request parameter.
- The value of `scope` request parameter does not contain `openid`.
RFC 6749 allows partial match of redirect URI under some conditions (see [RFC 6749, 3.1.2.2.
Registration Requirements](https://datatracker.ietf.org/doc/html/rfc6749#section-3.1.2.2) for
details), but OpenID Connect requires exact match.
</Accordion>
'
authorizationSignAlg:
$ref: '#/components/schemas/jws_alg'
authorizationEncryptionAlg:
$ref: '#/components/schemas/jwe_alg'
authorizationEncryptionEnc:
$ref: '#/components/schemas/jwe_enc'
tokenAuthMethod:
$ref: '#/components/schemas/client_auth_method'
tokenAuthSignAlg:
$ref: '#/components/schemas/jws_alg'
selfSignedCertificateKeyId:
type: string
description: 'The key ID of a JWK containing a self-signed certificate of this client.
'
tlsClientAuthSubjectDn:
type: string
description: 'The string representation of the expected subject distinguished name of the certificate this
client will use in mutual TLS authentication.
See `tls_client_auth_subject_dn` in "Mutual TLS Profiles for OAuth Clients, 2.3. Dynamic Client
Registration" for details.
'
tlsClientAuthSanDns:
type: string
description: 'The string representation of the expected DNS subject alternative name of the certificate this
client will use in mutual TLS authentication.
See `tls_client_auth_san_dns` in "Mutual TLS Profiles for OAuth Clients, 2.3. Dynamic Client
Registration" for details.
'
tlsClientAuthSanUri:
type: string
description: 'The string representation of the expected URI subject alternative name of the certificate this
client will use in mutual TLS authentication.
See `tls_client_auth_san_uri` in "Mutual TLS Profiles for OAuth Clients, 2.3. Dynamic Client
Registration" for d
# --- truncated at 32 KB (65 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/authlete/refs/heads/main/openapi/authlete-federation-endpoint-api-openapi.yml