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

# Show CardUser



## OpenAPI

````yaml get /card-users/{reference}
openapi: 3.1.0
info:
  title: ALAL APIs
  version: 1.0.0
servers:
  - url: https://api.sandbox.saalal.com/v1
security: []
tags:
  - name: Cards
  - name: Transactions
  - name: CardUsers
  - name: Disputes
paths:
  /card-users/{reference}:
    get:
      tags:
        - CardUsers
      summary: Show CardUser
      parameters:
        - name: Accept
          in: header
          schema:
            type: string
          example: application/json
      responses:
        '200':
          description: OK
          headers:
            Host:
              schema:
                type: string
                example: localhost:8090
            Date:
              schema:
                type: string
                example: Wed, 26 Jul 2023 18:51:35 GMT
            Connection:
              schema:
                type: string
                example: close
            X-Powered-By:
              schema:
                type: string
                example: PHP/8.2.4
            Cache-Control:
              schema:
                type: string
                example: no-cache, private
            Content-Type:
              schema:
                type: string
                example: application/json
            X-RateLimit-Limit:
              schema:
                type: integer
                example: '60'
            X-RateLimit-Remaining:
              schema:
                type: integer
                example: '58'
            Access-Control-Allow-Origin:
              schema:
                type: string
                example: '*'
          content:
            application/json:
              schema:
                type: object
                properties:
                  reference:
                    type: string
                    example: 792c6cf2-f5cf-46c8-bf8c-699a9028010e
                  first_name:
                    type: string
                    example: your-firstname
                  last_name:
                    type: string
                    example: your-lastname
                  address:
                    type: string
                    example: your-address
                  phone:
                    type: string
                    example: '774964996'
                  email:
                    type: string
                    example: your@mail.com
                  id_no:
                    type: string
                    example: '20119991010000621'
                  status:
                    type: string
                    example: verified
                  created_at:
                    type: string
                    example: '2023-06-22T11:07:07.000000Z'
              example:
                message: OK
                statusCode: 200
                data:
                  cardUser:
                    reference: 83865f93-c204-499e-b133-401d3322b242
                    first_name: Testing
                    last_name: Boy
                    address: Pikine Texaco 11
                    id_no: '1752199801163'
                    phone: '221796338816'
                    email: testingboy@gmail.com
                    status: null
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````