v1

latestOpenAPI 3.0.12026-07-24128351404.9 KB
Physical Card

Physical Card Shipping

Use this endpoint to ship physical cards

post/open-api/v3/physical-cards/bulk-ship

Request body

cardIdsstring[] required

Infinity Card id collection.(All card IDs provided in this field must belong to the same card BIN.)

emailstring required

Recipient's Email.

accountIdstring uuid required

The UUID of the Account.

phoneNumberstring required

Recipient's Phone Number.

phoneCountryCodestring required

Recipient's Phone Code.

firstNamestring required

Recipient's FirstName.

lastNamestring required

Recipient's LastName.

taxIdstring

Tax Identification Number. This field is required when the country in shippingAddress is BR or MX. For BR, it must be an 11-digit CPF number. For MX, it must be a 13-character RFC (alphanumeric).

cardPackage'p_0' | 'p_1'

Packaging type. p_0: cards only packed in the tray box; p_1: card + carrier + envelope (single packaging design).

Example request

{
  "cardPackage": "p_0",
  "shippingAddress": {
    "addressLine1": "123 Main St",
    "addressLine2": "Apt 4B",
    "city": "New York",
    "country": "US",
    "postalCode": "10001"
  }
}

Response

OK

codestring

Return code

messagestring

Error message

Example response

{
  "data": {
    "status": "SUCCESS"
  }
}