Airwallex logo
Airwallex logoAirwallex logo

Specify delivery method for physical cards

Choose between standard mail and express delivery when creating physical cards to meet varying urgency needs.

Copy for LLMView as Markdown

To control how physical cards are delivered to cardholders, you can specify a delivery method when creating cards through the Airwallex Issuing API. This allows you to choose between tracked mail delivery and express shipping on a per-card basis.

Before you begin

  • Obtain your API credentials from the Airwallex web app.
  • Verify that express delivery is available in your target region (see Understand regional availability and delivery options below).

Specify delivery method during card creation

To specify a delivery method when creating a physical card, include the preferred_delivery_mode field in the delivery_details object of your card creation request.

  1. Call the Create a card API endpoint with the delivery_details parameter and set the preferred_delivery_mode field to one of the following values:

    • MAIL: Standard shipping with tracking.
    • EXPRESS: Expedited shipping with priority handling and tracking. Requires a mobile number.
    JSON
    1{
    2 "form_factor": "PHYSICAL",
    3 "cardholder_id": "7f687fe6-dcf4-4462-92fa-80335301d9d2",
    4 "postal_address": {
    5 "city": "Melbourne",
    6 "country": "AU",
    7 "line1": "44 Gillespie St",
    8 "postcode": "3121",
    9 "state": "VIC"
    10 },
    11 "delivery_details": {
    12 "preferred_delivery_mode": "EXPRESS",
    13 "mobile_number": "619922334321"
    14 }
    15}
  2. Review the response to confirm your requested delivery method:

    JSON
    1{
    2 "card_id": "7f687fe6-dcf4-4462-92fa-80335301d9d2",
    3 "form_factor": "PHYSICAL",
    4 "delivery_details": {
    5 "preferred_delivery_mode": "EXPRESS",
    6 "mobile_number": "619922334321",
    7 "status": "PENDING"
    8 }
    9}

The card is created with your preferred delivery method.

If you don't specify a delivery method, the system defaults to MAIL delivery.

If you request a delivery method that is not supported for the destination country, the API returns a validation error with the message: "Specified delivery method is not supported for this region."

Verify delivery method after card is dispatched

After the card personalization center confirms the actual delivery method used, the delivery_mode field appears in the response and indicates which method was applied. You can subscribe to the issuing.card.modified webhook event to receive card delivery status changes. See Retrieve physical card delivery details for more information.

  1. Call the Get card details API endpoint: GET /api/v1/issuing/cards/{card_id}

  2. Check the delivery_details object in the response for both preferred_delivery_mode and delivery_mode fields:

    JSON
    1{
    2 "card_id": "7f687fe6-dcf4-4462-92fa-80335301d9d2",
    3 "delivery_details": {
    4 "preferred_delivery_mode": "EXPRESS",
    5 "delivery_mode": "MAIL",
    6 "tracked": true,
    7 "status": "DISPATCHED"
    8 }
    9}

In this example, the preferred_delivery_mode is EXPRESS but the actual delivery_mode is MAIL. This can occur when the delivery vendor's services are suspended due to unforeseen circumstances or the requested delivery method is not supported in the destination region.

The delivery_mode field only appears in the response after the card personalization center confirms the delivery method. When the status is PENDING, only the preferred_delivery_mode field is present.

Understand regional availability and delivery options

Delivery method availability and delivery time vary based on the card issuing region and the location where physical cards are printed.

Card printing locations for Airwallex branded cards

The following table shows which card printing locations are used for each issuing region for Airwallex branded cards:

Issuing regionCard printing location
AustraliaAustralia
Hong KongHong Kong
SingaporeMalaysia
CanadaPoland
IsraelPoland
EuropePoland
United KingdomPoland
United StatesPoland

Card printing locations for white-label cards

The following table shows which card printing locations are used for each issuing region for white-label card programs:

Issuing regionCard printing location
AustraliaAustralia or Poland
Hong KongHong Kong or Poland
SingaporeMalaysia or Poland
CanadaPoland
IsraelPoland
EuropePoland
United KingdomPoland
United StatesPoland

The actual card printing location for your cards depends on your card program configuration. Contact your Airwallex Account Manager to confirm which printing location is used for your card program.

Supported destinations and delivery methods

The following sections show the supported destination countries, delivery methods, and delivery time (SLA) for each card printing location.

Malaysia

DestinationDelivery methodDelivery time
SingaporeMAIL3–5 business days
Rest of worldMAIL3–5 business days
GlobalEXPRESS2–5 business days

Australia

DestinationDelivery methodDelivery time
AustraliaMAIL3–7 business days
New ZealandMAIL3–7 business days
Rest of worldMAIL15+ business days
AustraliaEXPRESS1–3 business days
New ZealandEXPRESS2–5 business days
Rest of worldEXPRESS3–6 business days

Hong Kong

DestinationDelivery methodDelivery time
Hong KongMAIL8 calendar days
ChinaMAIL8 calendar days
Rest of worldMAIL8 calendar days
Hong KongEXPRESS2–4 business days
GlobalEXPRESS2–4 business days

Poland

DestinationDelivery methodDelivery time
Within EuropeMAIL3–6 business days
Rest of worldMAIL6–12 business days
GlobalEXPRESS2–5 business days

MAIL delivery method is not supported for shipment out of Poland to United States and Israel. Delivery is default to EXPRESS delivery for shipments to these destinations.

United States

DestinationDelivery methodDelivery time
United StatesMAIL1–3 business days
United StatesEXPRESS1–2 business days
Rest of worldEXPRESS5+ business days

Pricing for delivery methods

The pricing for physical card delivery varies based on the delivery method, card printing location, and destination country. Delivery vendors set these prices and may change them without notice.

Delivery costs appear on your monthly invoice. Contact your Airwallex Account Manager for the latest pricing information.

Next steps

Now that you've specified a delivery method for your physical cards, you can:

Was this page helpful?