---
title: "Register a new Credit Card."
method: POST
path: "/creditCards"
tags: ["3. Fund"]
---

# Register a new Credit Card.

`POST /creditCards`

## Request body

- CreateCreditCardCriteria — <strong>customerIdentifier</strong> - specify the customer associated with the credit card. Must be the customer the accountIdentifier is associated with.<br/><br/><strong>accountIdentifier</strong> - specify the account this credit card is associated with<br/><br/><strong>label</strong> - specify a label for the credit card<br/><br/><strong>ipAddress</strong> - specify the The IP address of the person adding the credit card<br/><br/><strong>creditCard - number</strong> - specify the account this order will be deducted from<br/><br/><strong>creditCard - expiration</strong> - specify the card expiration date in YYYY-MM format<br/><br/><strong>creditCard - verificationNumber</strong> - specify the 3 or 4-digit card security code on back of card (CVV2, CVC2, or CID)<br/><br/><strong>billingAddress - firstName</strong> - specify the billing address first name<br/><br/><strong>billingAddress - lastName</strong> - specify the billing address last name<br/><br/><strong>billingAddress - addressLine1</strong> - specify the billing address line 1<br/><br/><strong>billingAddress - addressLine2</strong> - Optional. Specify the billing address line 2<br/><br/><strong>billingAddress - city</strong> - specify the billing address city<br/><br/><strong>billingAddress - state</strong> - specify the billing address state<br/><br/><strong>billingAddress - postalCode</strong> - specify the billing address postal code<br/><br/><strong>billingAddress - country</strong> - specify the billing address 2-letter country code<br/><br/><strong>billingAddress - emailAddress</strong> - specify the billing address email<br/><br/><strong>contactInformation - fullName</strong> - Optional. Used for email receipts. Specify the contact full name.<br/><br/><strong>contactInformation - emailAddress</strong> - Optional. Used for email receipts. Specify the contact email address.<br/><br/>
  - `customerIdentifier` string, required — specify the customer associated with the credit card. Must be the customer the accountIdentifier is associated with.
  - `accountIdentifier` string, required — specify the account this credit card is associated with
  - `ipAddress` string, required — specify the The IP address of the person adding the credit card
  - `label` string, required — specify a label for the credit card
  - `creditCard` CreditCardCriteria, required
    - `number` string, required — specify the account this order will be deducted from
    - `expiration` string, required — specify the card expiration date in YYYY-MM format
    - `verificationNumber` string, required — specify the 3 or 4-digit card security code on back of card (CVV2, CVC2, or CID)
  - `billingAddress` BillingAddressCriteria, required
    - `firstName` string, required — specify the billing address first name
    - `lastName` string, required — specify the billing address last name
    - `addressLine1` string, required — specify the billing address line 1
    - `addressLine2` string — Optional. Specify the billing address line 2
    - `city` string, required — specify the billing address city
    - `state` string, required — specify the billing address state
    - `postalCode` string, required — specify the billing address postal code
    - `country` string, required — specify the billing address 2-letter country code
    - `emailAddress` string, required — specify the billing address email
  - `contactInformation` ContactInformationCriteria[] — Optional. Enter the contact information of the any person(s) who will be notified if there are issues.
    - `fullName` string — Optional. Used for email receipts. Specify the contact full name.
    - `emailAddress` string — Optional. Used for email receipts. Specify the contact email address.

## Response `201`

Created

- CreditCardView
  - `customerIdentifier` string, required
  - `accountIdentifier` string, required
  - `token` string, required
  - `label` string, required
  - `lastFourDigits` string, required
  - `expirationDate` string, required
  - `status` string, required
  - `createdDate` string, required
  - `activationDate` string, required
  - `contactInformation` ContactInformationView[], required
    - `fullName` string
    - `emailAddress` string
  - `accountNumber` string, required

## Other responses

- `400` — Bad Request
- `401` — Unauthorized
- `403` — Forbidden
- `422` — Unprocessable Entity
- `500` — Internal Server Error
- `503` — Service Unavailable

---

[API](https://skmtc.net/tangocard/apis/tango-api.md) · [All operations](https://skmtc.net/tangocard/apis/tango-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/tangocard/tango-api/revisions/324ad9683921/schema)
