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

# Create Card



## OpenAPI

````yaml post /cards/create
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/create:
    post:
      tags:
        - Cards
      summary: Create Card
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                card_user_reference:
                  type: string
                  example: 141cdcbb-df5b-4a40-b8fa-739415f1f66c
                card_brand:
                  type: string
                  enum:
                    - visa
                    - mastercard
                    - gim
                card_type:
                  type: string
                  enum:
                    - virtual
                    - physical
              example:
                card_user_reference: 141cdcbb-df5b-4a40-b8fa-739415f1f66c
                card_brand: visa
                card_type: virtual
      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: Card currently being generated
                  statusCode:
                    type: integer
                    example: 200
                  card:
                    type: object
                    properties:
                      reference:
                        type: string
                        example: d282e4a6-1fb6-4827-a6ae-a780263287d7
                      card_brand:
                        type: string
                        example: Visa
                      card_type:
                        type: string
                        example: virtual
                      balance:
                        type: integer
                        example: 0
                      status:
                        type: string
                        example: issuing
              example:
                message: Card currently being generated
                statusCode: 200
                data:
                  card:
                    reference: d282e4a6-1fb6-4827-a6ae-a780263287d7
                    card_number: null
                    card_brand: Visa
                    card_type: virtual
                    cvv2: null
                    expiry: null
                    balance: 0
                    status: issuing
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````