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

# Get MicroVault pause status

> Returns which subscription, redemption, transfer, source-entry, and source-exit capabilities are currently paused for the vault.

Read the current pause controls for a MicroVault.

<Note>
  MicroVaults are in private preview for enabled sandbox organizations on Ethereum Sepolia.
</Note>


## OpenAPI

````yaml swagger/swagger-combined.yaml GET /v2/microvaults/vaults/{vaultId}/pause-status
openapi: 3.0.0
info:
  title: Ground API
  description: Core API for Portfolio Wallets, gtokens, MicroVaults, and webhooks.
  version: 2.0.0
servers:
  - url: https://sandbox.groundtech.co
  - url: https://production.groundtech.co
security:
  - bearerAuth: []
tags:
  - name: System
    description: System health and utility endpoints.
  - name: Sandbox Faucets
    description: Sandbox-only test token faucets.
  - name: Portfolio Wallets
    description: >-
      Portfolio wallets with strategy allocation, deposits, withdrawals, and
      yield positions.
  - name: gVaults
    description: >-
      Direct access to gtokens with deposit access controls and optional fee
      wrappers.
  - name: MicroVaults
    description: >-
      Customer-owned onchain vaults with externally held ERC-20 shares. Private
      preview in sandbox on Ethereum Sepolia.
  - name: Webhook Endpoints
    description: Webhook endpoint management for portfolio wallet notifications.
paths:
  /v2/microvaults/vaults/{vaultId}/pause-status:
    parameters:
      - name: vaultId
        in: path
        required: true
        schema:
          $ref: '#/components/schemas/UuidV4'
        description: >-
          Ground identifier of the MicroVault. This is distinct from its onchain
          contract address.
    get:
      tags:
        - MicroVaults
      summary: Get pause controls
      description: >-
        Returns which subscription, redemption, transfer, source-entry, and
        source-exit capabilities are currently paused for the vault.
      operationId: getMicrovaultPauseStatus
      responses:
        '200':
          description: Current pause controls.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MicroVaultPauseStatus'
        '401':
          $ref: '#/components/responses/Unauthorized'
components:
  schemas:
    UuidV4:
      type: string
      format: uuid
      pattern: >-
        ^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-4[0-9a-fA-F]{3}-[89aAbB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}$
      example: 8f4c52d7-62ab-4db9-a964-92f481f6b851
    MicroVaultPauseStatus:
      type: object
      additionalProperties: true
      properties:
        subscriptions:
          type: boolean
          description: Whether new base-asset subscriptions are paused.
        redemptions:
          type: boolean
          description: Whether new instant and requested share redemptions are paused.
        shareTransfers:
          type: boolean
          description: >-
            Whether shareholders are prevented from transferring shares to
            another wallet.
        sourceEntries:
          type: boolean
          description: >-
            Whether the vault is prevented from moving base assets into yield
            sources.
        sourceExits:
          type: boolean
          description: Whether the vault is prevented from exiting yield-source positions.
      example:
        subscriptions: false
        redemptions: false
        shareTransfers: true
        sourceEntries: false
        sourceExits: false
    AuthErrorResponse:
      type: object
      required:
        - error
      properties:
        error:
          type: string
          description: Authentication or authorization error message.
        message:
          type: string
          nullable: true
          description: Additional auth middleware detail, when present.
        code:
          type: string
          nullable: true
          enum:
            - unauthenticated
            - forbidden
          description: >-
            Some auth and scope failures include a stable code; middleware
            errors may omit it.
  responses:
    Unauthorized:
      description: >-
        The request is missing a valid bearer token, or the token is invalid or
        expired.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/AuthErrorResponse'
          example:
            error: Unauthenticated request
            message: Missing or invalid bearer token
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````