Hiyve Components - v1.0.0
    Preparing search index...

    An OAuth 2.1 client application.

    OAuth clients enable third-party applications to authenticate users via the authorization code flow with PKCE. The client secret is only available at creation time.

    interface OAuthClient {
        brandOrgId: string;
        clientId: string;
        clientName: string;
        createdAt: string;
        createdBy: string;
        id: string;
        isActive: boolean;
        lastUsedAt?: string;
        redirectUris: string[];
        scopes: string[];
        updatedAt: string;
    }
    Index

    Properties

    brandOrgId: string

    Organization ID

    clientId: string

    OAuth client ID used in authorization requests

    clientName: string

    Human-readable client name

    createdAt: string

    When the client was created

    createdBy: string

    User who created the client

    id: string

    Client record ID

    isActive: boolean

    Whether the client is active (soft-deletable)

    lastUsedAt?: string

    When the client was last used for authentication

    redirectUris: string[]

    Allowed redirect URIs for the authorization flow

    scopes: string[]

    Granted OAuth scopes

    updatedAt: string

    When the client record was last updated