---
title: "Create a card"
method: POST
path: "/cards"
---

# Create a card

`POST /cards`

## Request body

- object
  - `title` string, required — Enter the card title
  - `color` string — color should be either blue, black, purple, orange or yellow
  - `amount` string, required — enter card amount
  - `userId` string, required — This is the userId gotten from the get all card users endpoint or from the response when you create a new user
  - `currency` string, required — The currency which the card creation amount will be deducted from.
  - `brand` string, required — this is the card type, could be: visa or mastercard
  - `isNonSubscription` boolean — pay a one-time fee for unlimited card use with no monthly charges cost $3

## Response `201`

201

- object
  - `code` integer
  - `data` object
    - `message` string
    - `card` object
      - `securityCode` string
      - `expiration` string
      - `currency` string
      - `status` string
      - `isPhysical` boolean
      - `title` string
      - `color` string
      - `name` string
      - `amount` number
      - `createdAt` string
      - `updatedAt` string
      - `id` string
      - `brand` string
      - `mask` string
      - `number` string
      - `ownerId` string
      - `isNonSubscription` boolean
      - `lastUsedOn` string
      - `billingAddress` object
        - `address` string
        - `city` string
        - `state` string
        - `zipCode` string
        - `country` string
  - `success` boolean

## Other responses

- `400` — 400

---

[API](https://skmtc.net/eversend/apis/authentication.md) · [All operations](https://skmtc.net/eversend/apis/authentication/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/eversend/authentication/revisions/7c1b8e2a0830/schema)
