> ## Documentation Index
> Fetch the complete documentation index at: https://docs.myustadia.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Account Review Settings Get

> Return the account-level auto-approve map plus per-point effective defaults.

effective_defaults fills absent keys with False (= mandatory review).
account: the raw map stored in clients.auto_approve_kinds (may be empty).



## OpenAPI

````yaml /openapi.yaml get /api/v1/account/review-settings
openapi: 3.1.0
info:
  title: Mahara Platform
  description: >
    AI Sales Training Course Generator, a Coursera-style platform.


    ## Authentication


    Every request must carry your API key as a Bearer token:


    `Authorization: Bearer sk_live_your_key_here`


    ## Getting an API key


    API keys are provisioned by our team. They are not self-service, so there is
    no signup page to apply on. To request access, email **sales@myustadia.com**
    and we will issue a key for your account.
  version: 1.0.0
servers: []
security: []
paths:
  /api/v1/account/review-settings:
    get:
      tags:
        - B2B Courses v2
      summary: Account Review Settings Get
      description: >-
        Return the account-level auto-approve map plus per-point effective
        defaults.


        effective_defaults fills absent keys with False (= mandatory review).

        account: the raw map stored in clients.auto_approve_kinds (may be
        empty).
      operationId: account_review_settings_get_api_v1_account_review_settings_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}

````