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

# Pause or reactivate a virtual account

> Pause an account you no longer want to hand out (a churned customer, suspected abuse) and reactivate it later — the account number never changes, so nothing the customer saved goes stale.



## OpenAPI

````yaml /api-reference/openapi.json patch /v1/virtual-accounts/{id}
openapi: 3.1.0
info:
  title: Chipper Platform API
  version: '2026-02-20'
  description: >-
    Payouts, collections, and FX across African rails — bank, mobile money, and
    stablecoins — through one API.
servers:
  - url: https://api.platform.chipper.ai
    description: Production (sk_live_ keys)
  - url: https://sandbox-api.platform.chipper.ai
    description: Sandbox (sk_test_ keys — simulated rails, no real money)
security:
  - bearerAuth: []
paths:
  /v1/virtual-accounts/{id}:
    patch:
      tags:
        - Virtual accounts
      summary: Pause or reactivate a virtual account
      description: >-
        Pause an account you no longer want to hand out (a churned customer,
        suspected abuse) and reactivate it later — the account number never
        changes, so nothing the customer saved goes stale.
      parameters:
        - schema:
            type: string
            description: Virtual account id.
            example: va_k3m9x2pq7wz4t6vbn8hd
          required: true
          name: id
          in: path
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                status:
                  type: string
                  enum:
                    - active
                    - paused
              required:
                - status
      responses:
        '200':
          description: The updated virtual account.
          content:
            application/json:
              schema:
                type: object
                properties:
                  virtualAccount:
                    allOf:
                      - $ref: '#/components/schemas/VirtualAccount'
                      - type: object
                        properties:
                          metadata:
                            type: object
                            additionalProperties: {}
                          updatedAt:
                            type: string
                            format: date-time
                        required:
                          - metadata
                          - updatedAt
                required:
                  - virtualAccount
        '400':
          description: Invalid request — the body failed validation.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
              example:
                error: validation_error
                message: Request validation failed
                requestId: req_q7vei435zifs51ia0lqr
        '401':
          description: Missing or invalid API key.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
              example:
                error: unauthorized
                message: Invalid API key
                requestId: req_q7vei435zifs51ia0lqr
        '403':
          description: The API key lacks the required scope.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
              example:
                error: forbidden
                message: API key does not have the required scope
                requestId: req_q7vei435zifs51ia0lqr
        '404':
          description: No such resource in this organization.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
              example:
                error: not_found
                message: Virtual account not found
                requestId: req_q7vei435zifs51ia0lqr
      security:
        - bearerAuth: []
components:
  schemas:
    VirtualAccount:
      type: object
      properties:
        id:
          type: string
          example: va_k3m9x2pq7wz4t6vbn8hd
        status:
          type: string
          enum:
            - active
            - paused
          description: Toggled via PATCH.
        currency:
          type: string
          example: NGN
        bank:
          type:
            - string
            - 'null'
          description: >-
            Bank holding the account — give this to the customer with the
            number.
          example: Wema Bank
        accountNumber:
          type:
            - string
            - 'null'
          example: '7812345678'
        accountName:
          type:
            - string
            - 'null'
          description: Name shown to the sender at their bank.
          example: Chipper / Acme Ltd
        externalReference:
          type:
            - string
            - 'null'
          description: Your reference, e.g. the customer id this account belongs to.
          example: customer-8841
        createdAt:
          type: string
          format: date-time
          example: '2026-08-01T09:12:44.000Z'
      required:
        - id
        - status
        - currency
        - bank
        - accountNumber
        - accountName
        - externalReference
        - createdAt
    Error:
      type: object
      properties:
        error:
          type: string
          description: Stable machine-readable code.
        message:
          type: string
          description: Human-readable explanation.
        requestId:
          type: string
          description: Echoed in the x-request-id response header — quote it to support.
      required:
        - error
        - message
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: 'Your API key: `sk_test_…` (sandbox) or `sk_live_…` (production).'

````