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

# Get customer

> Returns a single customer by RemitFlex customer UUID.
Requires `transfers:read` scope. Includes the `cngn` block when enablement
has been started or completed.




## OpenAPI

````yaml /openapi.yaml get /customers/{customerId}
openapi: 3.1.0
info:
  title: Remitflex API
  version: 1.0.0
  description: >
    Programmatic access to Remitflex payment routes, fiat rates, customers, and
    transactions.


    **Dashboard:** Create API keys at https://dashboard.remitflex.io


    **Authentication:** Send your API key as `Authorization: Bearer
    rmf_live_...` or `rmf_test_...`.


    **Idempotency:** Mutating requests (`POST`, `PUT`, `PATCH`, `DELETE`)
    require an `Idempotency-Key` header when authenticated with an API key.
servers:
  - url: http://localhost:4000/v1
    description: Local development
  - url: https://api.remitflex.io/v1
    description: Production
security:
  - ApiKeyAuth: []
paths:
  /customers/{customerId}:
    get:
      tags:
        - Customers
      summary: Get customer
      description: >
        Returns a single customer by RemitFlex customer UUID.

        Requires `transfers:read` scope. Includes the `cngn` block when
        enablement

        has been started or completed.
      operationId: getCustomer
      parameters:
        - name: customerId
          in: path
          required: true
          description: >-
            RemitFlex customer UUID (`id` from `POST /customers` or `GET
            /customers`). Not a wallet address or provider user id.
          schema:
            type: string
            format: uuid
      responses:
        '200':
          $ref: '#/components/responses/Customer'
        '404':
          description: Customer not found
          content:
            application/json:
              examples:
                error:
                  value:
                    status: error
                    message: Customer not found
      security:
        - ApiKeyAuth: []
components:
  responses:
    Customer:
      description: Customer
      content:
        application/json:
          schema:
            allOf:
              - $ref: '#/components/schemas/SuccessEnvelope'
              - type: object
                properties:
                  data:
                    $ref: '#/components/schemas/Customer'
          examples:
            success:
              $ref: '#/components/examples/CreateCustomerResponse'
  schemas:
    SuccessEnvelope:
      type: object
      properties:
        status:
          type: string
          example: success
        message:
          type: string
        data:
          nullable: true
    Customer:
      type: object
      properties:
        id:
          type: string
          format: uuid
        name:
          type: string
        email:
          type: string
        type:
          type: string
        isPrimary:
          type: boolean
        cngn:
          type: object
          nullable: true
          description: >
            Present when cNGN enablement has been started or completed. `null`
            when the customer has never enabled cNGN. When `identityMatched` is
            not `true`, RemitFlex withholds StRails PII (legal name, VA, wallet)
            so a mismatched BVN cannot leak another person's identity to the
            merchant. Matching requires a multi-part name (first + last) with
            strong overlap to KYC / VA name.
          properties:
            enabled:
              type: boolean
              description: True only when linked and KYC name matches customer.name.
            identityMatched:
              type: boolean
              nullable: true
              description: >
                Whether the merchant customer name matches StRails KYC / VA
                name. `false` means BVN holder does not match this customer.
            status:
              type: string
              nullable: true
            legalName:
              type: string
              nullable: true
              description: StRails KYC name — only when identityMatched is not false.
            evmWallet:
              type: string
              nullable: true
            virtualAccount:
              type: object
              nullable: true
              properties:
                accountNumber:
                  type: string
                accountName:
                  type: string
                  nullable: true
                bankName:
                  type: string
                  nullable: true
                bankCode:
                  type: string
                  nullable: true
            syncedAt:
              type: string
              format: date-time
              nullable: true
        createdAt:
          type: string
          format: date-time
        updatedAt:
          type: string
          format: date-time
  examples:
    CreateCustomerResponse:
      value:
        status: success
        message: Customer created
        data:
          id: b2c3d4e5-f6a7-8901-bcde-f12345678901
          name: Jane Supplier
          email: jane@supplier.co.ke
          type: individual
          isPrimary: false
          createdAt: '2026-06-26T12:00:00.000Z'
          updatedAt: '2026-06-26T12:00:00.000Z'
  securitySchemes:
    ApiKeyAuth:
      type: http
      scheme: bearer
      description: >
        API key created in the Remitflex Dashboard at dashboard.remitflex.io
        (`rmf_live_...` or `rmf_test_...`).

        Key management endpoints require a dashboard JWT and are not part of
        this reference.

````