> ## 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.

# Link Card



## OpenAPI

````yaml post /cards/link
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:
  /cards/link:
    post:
      tags:
        - Cards
      summary: Link Card
      parameters:
        - name: Accept
          in: header
          schema:
            type: string
          example: application/json
      requestBody:
        content:
          application/json:
            schema:
              type: object
              required:
                - card_user_reference
              properties:
                identifier:
                  type: string
                  example: 8840822604
                reference:
                  type: string
                  example: c2abd1a2-917c-485f-b9ca-e4588aa3d2a7
                card_user_reference:
                  type: string
                  example: 577f7a27-0749-4c7c-89a3-bcedca3452e9
              example:
                identifier: 8840822604
                card_user_reference: 577f7a27-0749-4c7c-89a3-bcedca3452e9
      responses:
        '200':
          description: OK
          headers:
            Host:
              schema:
                type: string
                example: localhost:8090
            Date:
              schema:
                type: string
                example: Thu, 22 Jun 2023 10:34:03 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: '59'
            Access-Control-Allow-Origin:
              schema:
                type: string
                example: '*'
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                    example: OK
                  statusCode:
                    type: integer
                    example: 200
                  data:
                    type: object
                    properties:
                      card:
                        type: object
                        properties:
                          identifier:
                            type: string
                            example: 8840822604
                          reference:
                            type: string
                            example: c2abd1a2-917c-485f-b9ca-e4588aa3d2a7
                          card_brand:
                            type: string
                            example: Visa
                          card_type:
                            type: string
                            example: virtual
                          balance:
                            type: integer
                            example: 0
                          status:
                            type: string
                            example: issued
              example:
                message: Card currently being generated
                statusCode: 200
                data:
                  card:
                    identifier: 8840822604
                    reference: d282e4a6-1fb6-4827-a6ae-a780263287d7
                    card_number: null
                    card_brand: Visa
                    card_type: virtual
                    cvv2: null
                    expiry: null
                    balance: 0
                    status: issued
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````