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

    Interface UpdateResourceServerRequestContent

    {}
    
    interface UpdateResourceServerRequestContent {
        name?: string;
        scopes?: ResourceServerScope[];
        signing_alg?: Management.SigningAlgorithmEnum;
        signing_secret?: string;
        skip_consent_for_verifiable_first_party_clients?: boolean;
        allow_offline_access?: boolean;
        token_lifetime?: number;
        token_dialect?: Management.ResourceServerTokenDialectSchemaEnum;
        enforce_policies?: boolean;
        token_encryption?: ResourceServerTokenEncryption | null;
        consent_policy?: "transactional-authorization-with-mfa" | null;
        authorization_details?: unknown[];
        proof_of_possession?: ResourceServerProofOfPossession | null;
        subject_type_authorization?: ResourceServerSubjectTypeAuthorization;
    }
    Index

    Properties

    name?: string

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

    List of permissions (scopes) that this API uses.

    signing_secret?: string

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

    skip_consent_for_verifiable_first_party_clients?: boolean

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

    allow_offline_access?: boolean

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

    token_lifetime?: number

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

    enforce_policies?: boolean

    Whether authorization policies are enforced (true) or not enforced (false).

    token_encryption?: ResourceServerTokenEncryption | null
    consent_policy?: "transactional-authorization-with-mfa" | null
    authorization_details?: unknown[]
    proof_of_possession?: ResourceServerProofOfPossession | null
    subject_type_authorization?: ResourceServerSubjectTypeAuthorization