Create a Minor Card

Creates a card for minors (aged 13-17)
Cards
Create a Minor Card
 last updated: 
November 30, 2023

[Early access document - subject to change]

You can create consumer credit cards for minors (aged 13-17) who are not financially responsible for the account. They simply are added as members to the family accounts to be able to spend money on their own cards. Notes:

- KYC is not required for minors
- Minor cards must be enabled for the program (by Solid)
- Billing/shipping address must match the account owner (parent)
- set "cardholderPersonId" field with the minor's personId
- set "cardholderType" field to "person"

ENDPOINT

  1. POST /v1/card

REQUEST

  1. {
  2.  "cardType": "virtual",
  3.  "label": "Minor Card",
  4.  "bin": "credit",
  5.  "accountId": "{{accountId}}",
  6.  "cardholderPersonId": "{{personId}}",
  7.  "cardholderType": "person",
  8.  "currency": "USD",
  9.  "limitAmount": "120.00",
  10.  "limitInterval": "allTime",
  11.  "billingAddress": {
  12.    "addressType": "billing",
  13.    "line1": "123 Main St",
  14.    "line2": "",
  15.    "city": "New York",
  16.    "state": "NY",
  17.    "country": "US",
  18.    "postalCode": "10001"
  19.  }
  20. }

RESPONSE

  1. {
  2.  "id": "crd-80c70f56-fd2c-4689-9001-627fe303f057",
  3.  "accountId": "acc-f05f27a0-ff7a-4088-b673-3982421c6612",
  4.  "businessId": "",
  5.  "programId": "prg-ddb08641-6565-465d-ba94-ed199497299f",
  6.  "cardholder": {
  7.    "id": "chd-c4902a8b-3796-4f31-b0e3-023f54491368",
  8.    "personId": "per-618d0534-71e9-4424-99a3-61e791bbfffe",
  9.    "billingAddress": {
  10.      "addressType": "billing",
  11.      "line1": "123 Main St",
  12.      "line2": "",
  13.      "city": "New York",
  14.      "state": "NY",
  15.      "country": "US",
  16.      "postalCode": "10001"
  17.    },
  18.    "createdAt": "2022-06-21T14:34:50Z",
  19.    "modifiedAt": "2023-03-14T01:00:04Z",
  20.    "name": "Baby Doe"
  21.  },
  22.  "cardType": "virtual",
  23.  "label": "Minor Card",
  24.  "limitAmount": "120.00",
  25.  "limitInterval": "allTime",
  26.  "shipping": null,
  27.  "currency": "USD",
  28.  "expiryMonth": "03",
  29.  "expiryYear": "2025",
  30.  "last4": "6667",
  31.  "cardStatus": "active",
  32.  "activatedAt": "2023-03-14T01:00:04Z",
  33.  "createdAt": "2023-03-14T01:00:04Z",
  34.  "modifiedAt": "2023-03-14T01:00:04Z",
  35.  "createdPersonId": "per-618d0534-71e9-4424-99a3-61e791bbfffe",
  36.  "metadata": null,
  37.  "bin": "credit",
  38.  "allowedCategories": null,
  39.  "availableLimit": "120.00",
  40.  "blockedCategories": null,
  41.  "embossingPerson": "",
  42.  "embossingBusiness": "",
  43.  "theme": "",
  44.  "atmAccess": true,
  45.  "allowedMerchants": null,
  46.  "blockedMerchants": null,
  47.  "walletId": "",
  48.  "familyId": "fam-d8b5d10e-9bc0-4c5d-9ecd-3ef95bf8f2fa"
  49. }