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

# Mark Bank Account as NRE

> Mark or unmark a bank account as an NRE (Non-Resident External) account.



## OpenAPI

````yaml openapi-v2.json PUT /api/v2/user/bank_account/nre
openapi: 3.1.0
info:
  title: Saber Money API (v2)
  version: v2
  description: >-
    ## Authentication


    There is no standalone API-key auth — every request must be **signed**. An
    API key by itself authenticates nothing. Each call requires four headers
    together: `X-Api-Key` (your key), `X-Signature` (HMAC-SHA256 of `apiKey +
    timestamp` — or `apiKey + timestamp + userId` when `X-User-Id` is required —
    keyed with your API secret), `X-Timestamp` (unix seconds), and
    `X-Request-Id` (any unique string per request). The signature must be
    computed by a client script; there is no way to derive it by hand. Use the
    HMAC Generator flow to compute valid values for manual testing.


    ## Common Authentication Errors


    - **Invalid Client ID**: {"error_code":6092,"message":"X-Client-Id
    invalid","success":false}

    - **Invalid Secret**: {"error_code":6090,"message":"invalid
    secret","success":false}

    - **Timestamp (Older than 10 secs)**:
    {"errors":{"error_code":6093,"text":"timestamp expired"},"success":false}
servers:
  - url: https://api.saber.money
security: []
paths:
  /api/v2/user/bank_account/nre:
    put:
      tags:
        - Bank Account Operations
      summary: Mark Bank Account as NRE
      description: Mark or unmark a bank account as an NRE (Non-Resident External) account.
      operationId: mark-bank-account-nre-v2-v2
      parameters:
        - name: X-Api-Key
          in: header
          required: true
          description: Your API key (configured in credentials)
          schema:
            type: string
        - name: X-Signature
          in: header
          required: true
          description: >-
            HMAC-SHA256 signature (auto-generated) To test manually: HMAC-SHA256
            of `apiKey + timestamp` (or `apiKey + timestamp + userId` when
            X-User-Id is required), keyed with your API secret. The HMAC
            Generator flow computes this for you.
          schema:
            type: string
        - name: X-Timestamp
          in: header
          required: true
          description: >-
            Unix timestamp in seconds (auto-generated) Unix seconds, e.g.
            `Math.floor(Date.now() / 1000)`. Must match the timestamp used in
            the X-Signature computation.
          schema:
            type: string
        - name: X-Request-Id
          in: header
          required: true
          description: >-
            Unique request identifier (auto-generated) Any unique string per
            request, e.g. a UUID.
          schema:
            type: string
        - name: X-User-Id
          in: header
          required: true
          description: User UUID (set above)
          schema:
            type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                bank_id:
                  type: string
                  description: UUID of the bank account to mark/unmark as NRE.
                mark_as_nre:
                  type: boolean
                  description: true to mark the account as NRE; false to unmark it.
              required:
                - bank_id
                - mark_as_nre
            example:
              bank_id: 550e8400-e29b-41d4-a716-446655440000
              mark_as_nre: true
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  data:
                    type: object
                    properties:
                      bank_id:
                        type: string
                      account_number:
                        type: string
                      ifsc_code:
                        type: string
                      account_holder_name:
                        type: string
                      account_type:
                        type: string
                      name:
                        type:
                          - string
                          - 'null'
                      iban:
                        type:
                          - string
                          - 'null'
                      bic:
                        type:
                          - string
                          - 'null'
                      validation_status:
                        type: string
                      routing_type:
                        type:
                          - string
                          - 'null'
                      created_at:
                        type: string
                      updated_at:
                        type: string
                      message:
                        type: string
                      is_nre:
                        type: boolean
              example:
                success: true
                data:
                  bank_id: bbdce159-136b-4e78-9420-c177b6b05d8b
                  account_number: 33XXXXX3133
                  ifsc_code: SBIN0016120
                  account_holder_name: Mr. MOHIT KUMAR GAUR
                  account_type: SAVINGS
                  name: null
                  iban: null
                  bic: null
                  validation_status: APPROVED
                  routing_type: null
                  created_at: '2026-07-06T09:28:57Z'
                  updated_at: '2026-07-06T09:29:04Z'
                  message: Congratulations! Your bank account is verified
                  is_nre: true
        '400':
          description: >-
            `102001`: missing required parameters; `102002`: invalid parameter
            format; `104005`: operation allowed only for indian bank accounts;
            `104006`: operation allowed only for approved bank accounts;
            `104007`: bank account is already marked as NRE
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    enum:
                      - false
                  errors:
                    type: array
                    items:
                      type: object
                      properties:
                        code:
                          type:
                            - integer
                            - string
                        text:
                          type: string
              example:
                success: false
                errors:
                  - code: 104007
                    text: bank account is already marked as NRE
        '404':
          description: '`104002`: bank account not found'
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    enum:
                      - false
                  errors:
                    type: array
                    items:
                      type: object
                      properties:
                        code:
                          type:
                            - integer
                            - string
                        text:
                          type: string
              example:
                success: false
                errors:
                  - code: 104007
                    text: bank account is already marked as NRE

````

## Related topics

- [Frequently Asked Questions](/faq.md)
- [Get Bank Accounts](/api-reference/bank-account-operations/get-bank-accounts.md)
- [Get Bank Account by ID](/api-reference/bank-account-operations/get-bank-account-by-id.md)
- [Add Bank Account](/api-reference/bank-account-operations/add-bank-account.md)
- [Traditional Rails](/offramp/currencies/inr-traditional.md)
