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

# Get the global wallet settings for the environment

> Returns the global wallet settings configured for the specified environment.



## OpenAPI

````yaml get /sdk/{environmentId}/globalWallets/settings
openapi: 3.0.1
info:
  title: Dashboard API
  description: Dashboard API documentation
  version: 1.0.0
servers:
  - url: https://app.dynamicauth.com/api/v0
  - url: https://app.dynamic.xyz/api/v0
  - url: http://localhost:3333/api/v0
security: []
tags:
  - name: Analytics
  - name: SDK
  - name: Organizations
  - name: Projects
  - name: Environments
  - name: Users
  - name: Invites
  - name: Tokens
  - name: Origins
  - name: Allowlists
  - name: Wallets
  - name: Members
  - name: Sessions
  - name: Settings
  - name: Gates
  - name: Chains
  - name: Exports
  - name: Events
  - name: Webhooks
  - name: Custom Fields
  - name: OrganizationMfaSettings
  - name: CustomHostnames
  - name: TestAccount
  - name: NameServices
  - name: GlobalWallets
  - name: GlobalWalletConnections
  - name: UserApiTokens
  - name: Waas
  - name: WalletConnect
paths:
  /sdk/{environmentId}/globalWallets/settings:
    get:
      tags:
        - SDK
      summary: Get the global wallet settings for the environment
      operationId: getGlobalWalletsSettings
      parameters:
        - $ref: '#/components/parameters/environmentId'
      responses:
        '200':
          description: Global wallets settings response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GlobalWalletSettings'
        '404':
          description: Global wallets settings not found
        '500':
          $ref: '#/components/responses/InternalServerError'
components:
  parameters:
    environmentId:
      in: path
      name: environmentId
      required: true
      description: ID of the environment
      schema:
        $ref: '#/components/schemas/uuid'
  schemas:
    GlobalWalletSettings:
      type: object
      required:
        - id
        - walletName
      properties:
        id:
          $ref: '#/components/schemas/uuid'
        walletName:
          $ref: '#/components/schemas/OptionalNonEmptyStringWith50MaxLength'
        popupPageTitle:
          $ref: '#/components/schemas/OptionalNonEmptyStringWith50MaxLength'
        walletIconUrl:
          $ref: '#/components/schemas/OptionalNonEmptyIconUrl'
        customCssUrl:
          $ref: '#/components/schemas/OptionalNonEmptyCssUrl'
        termsOfServiceUrl:
          $ref: '#/components/schemas/OptionalNonEmptyUrl'
        privacyPolicyUrl:
          $ref: '#/components/schemas/OptionalNonEmptyUrl'
        termsOfServiceAndPrivacyPolicyMarkdown:
          $ref: '#/components/schemas/OptionalNonEmptyMarkdownText'
        customMenuLinks:
          type: array
          items:
            type: object
            required:
              - label
              - url
            properties:
              label:
                $ref: '#/components/schemas/NonEmptyStringWith50MaxLength'
              url:
                $ref: '#/components/schemas/NonEmptyUrl'
        enableLoginWithExternalWallets:
          type: boolean
        enabledAt:
          type: string
          description: If global wallet is enabled, then this timestamp will be present.
          format: date-time
          nullable: true
    uuid:
      type: string
      pattern: ^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$
      minLength: 36
      maxLength: 36
      example: 95b11417-f18f-457f-8804-68e361f9164f
    OptionalNonEmptyStringWith50MaxLength:
      type: string
      pattern: ^$|^(?=\S)[\p{L}\p{N}a-zA-Z _.,:!?&%@\/+\-'|]+(?<=\S)$
      example: An example name
      maxLength: 50
    OptionalNonEmptyIconUrl:
      type: string
      pattern: >-
        ^$|^(https?:\/\/)?[a-z0-9]+([-.]+[a-z0-9]+)*\.[a-z]{2,10}([0-9]{1,5})?(\/[^\/]*)*\/[^\/]*\.(?:png|svg)$
      example: https://website-sample/icon.svg
    OptionalNonEmptyCssUrl:
      type: string
      pattern: >-
        ^$|^(https?:\/\/)?[a-z0-9]+([-.]+[a-z0-9]+)*\.[a-z]{2,10}([0-9]{1,5})?(\/[^\/]*)*\/[^\/]*\.css$
      example: https://website-sample/custom.css
    OptionalNonEmptyUrl:
      type: string
      pattern: >-
        ^$|^(https?:\/\/)?[a-z0-9]+([-.]+[a-z0-9]+)*\.[a-z]{2,10}([0-9]{1,5})?(\/.*)?$
      example: https://website-sample.com
    OptionalNonEmptyMarkdownText:
      type: string
      pattern: ^$|^(?!.*&lt;[^&]+&gt;)[a-zA-Z0-9\s\/;:\*\-\(\)\[\]%#@'"\\.,=+\$&]+$
      example: >-
        This is a markdown example with a **bold** text and a
        [link](https://website-sample.com)
      maxLength: 1024
    NonEmptyStringWith50MaxLength:
      type: string
      pattern: ^(?=\S)[\p{L}\p{N}a-zA-Z _.,:!?&%@\/+\-'|]+(?<=\S)$
      example: An example name
      maxLength: 50
    NonEmptyUrl:
      type: string
      pattern: >-
        ^(https?:\/\/)?[a-z0-9]+([-.]+[a-z0-9]+)*\.[a-z]{2,10}([0-9]{1,5})?(\/.*)?$
      example: https://website-sample.com
    InternalServerError:
      type: object
      properties:
        error:
          type: string
          example: Internal Server Error
  responses:
    InternalServerError:
      description: Internal Server Error
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/InternalServerError'

````