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

# Order Cards

> Order Physical Cards



## OpenAPI

````yaml openapi.json post /cards/order
openapi: 3.1.0
info:
  title: Sudo Sandbox API
  version: '1.0'
servers:
  - url: https://api.sandbox.sudo.cards
security:
  - sec0: []
paths:
  /cards/order:
    post:
      summary: Order Cards
      description: Order Physical Cards
      operationId: order-cards
      requestBody:
        content:
          application/json:
            schema:
              type: object
              required:
                - debitAccountId
                - brand
                - currency
                - allocation
                - expedite
                - shippingMethod
                - shippingAddress
              properties:
                debitAccountId:
                  type: string
                  description: The debit account `_id`.
                customerId:
                  type: string
                  description: The customer `_id`. Required if creating 1 card
                brand:
                  type: string
                  description: The card brand.
                  enum:
                    - Verve
                    - AfriGo
                    - MasterCard
                    - Visa
                currency:
                  type: string
                  description: The currency type.
                  default: NGN
                  enum:
                    - NGN
                    - USD
                design:
                  type: string
                  description: >-
                    The name of the card design. Ask Customer support for your
                    own design name.
                  default: SudoBlack
                  enum:
                    - SudoBlack
                    - SudoWhite
                    - '[YourDesignName]'
                allocation:
                  type: integer
                  description: The number of physical cards to order.
                  default: 1
                  format: int32
                nameOnCards:
                  type: array
                  description: Array of names to be personalized on the cards.
                  items:
                    type: string
                expedite:
                  type: boolean
                  description: The expedite preference.
                  default: false
                shippingMethod:
                  type: string
                  description: >-
                    The shipping method to use. Might impact card cost. Ask
                    Customer Support for guidance.
                  default: NIPOST
                  enum:
                    - NIPOST
                    - DHL
                shippingAddress:
                  type: object
                  description: The cards shipping address.
                  required:
                    - line1
                    - city
                    - state
                    - postalCode
                    - country
                  properties:
                    line1:
                      type: string
                      description: Street address line 1
                    line2:
                      type: string
                      description: Street Address line 2
                    city:
                      type: string
                      description: City
                    state:
                      type: string
                      description: State
                    postalCode:
                      type: string
                    country:
                      type: string
                      description: Billing country
      responses:
        '200':
          description: '200'
          content:
            application/json:
              examples:
                Result:
                  value: '{}'
              schema:
                type: object
                properties: {}
        '400':
          description: '400'
          content:
            application/json:
              examples:
                Result:
                  value: '{}'
              schema:
                type: object
                properties: {}
      deprecated: false
components:
  securitySchemes:
    sec0:
      type: apiKey
      in: header
      name: Authorization
      x-bearer-format: bearer
      x-default: '{{APIKey}}'

````