Citizen Hangar - OAuth2 / OpenID Connect API
    Citizen Hangar - OAuth2 / OpenID Connect API
    • Authorization
      • Authorization endpoint (Authorization Code with PKCE)
        GET
    • Token
      • Token endpoint
        POST
    • Userinfo
      • UserInfo endpoint
        GET
    • Introspection
      • Token introspection (RFC 7662)
        POST
    • Revocation
      • Token revocation (RFC 7009)
        POST
    • Interaction
      • Provider interaction entrypoint
        GET
      • Confirm consent/interaction
        POST
    • Schemas
      • ErrorResponse
      • TokenResponse
      • PledgeSummary
      • HangarContents

    TokenResponse

    {
        "access_token": "string",
        "token_type": "Bearer",
        "expires_in": 0,
        "refresh_token": "string",
        "id_token": "string",
        "scope": "string"
    }
    Built with