Auth0 Node.js SDK - v5.0.0
    Preparing search index...

    Interface UpdateResourceServerResponseContent

    interface UpdateResourceServerResponseContent {
        id?: string;
        name?: string;
        is_system?: boolean;
        identifier?: string;
        scopes?: ResourceServerScope[];
        signing_alg?: Management.SigningAlgorithmEnum;
        signing_secret?: string;
        allow_offline_access?: boolean;
        skip_consent_for_verifiable_first_party_clients?: boolean;
        token_lifetime?: number;
        token_lifetime_for_web?: number;
        enforce_policies?: boolean;
        token_dialect?: Management.ResourceServerTokenDialectResponseEnum;
        token_encryption?: ResourceServerTokenEncryption;
        consent_policy?: ResourceServerConsentPolicyEnum;
        authorization_details?: unknown[];
        proof_of_possession?: ResourceServerProofOfPossession;
        subject_type_authorization?: ResourceServerSubjectTypeAuthorization;
        client_id?: string;
    }
    Index

    Properties

    id?: string

    ID of the API (resource server).

    name?: string

    Friendly name for this resource server. Can not contain < or > characters.

    is_system?: boolean

    Whether this is an Auth0 system API (true) or a custom API (false).

    identifier?: string

    Unique identifier for the API used as the audience parameter on authorization calls. Can not be changed once set.

    List of permissions (scopes) that this API uses.

    signing_secret?: string

    Secret used to sign tokens when using symmetric algorithms (HS256).

    allow_offline_access?: boolean

    Whether refresh tokens can be issued for this API (true) or not (false).

    skip_consent_for_verifiable_first_party_clients?: boolean

    Whether to skip user consent for applications flagged as first party (true) or not (false).

    token_lifetime?: number

    Expiration value (in seconds) for access tokens issued for this API from the token endpoint.

    token_lifetime_for_web?: number

    Expiration value (in seconds) for access tokens issued for this API via Implicit or Hybrid Flows. Cannot be greater than the token_lifetime value.

    enforce_policies?: boolean

    Whether authorization polices are enforced (true) or unenforced (false).

    authorization_details?: unknown[]
    proof_of_possession?: ResourceServerProofOfPossession
    subject_type_authorization?: ResourceServerSubjectTypeAuthorization
    client_id?: string

    The client ID of the client that this resource server is linked to