Specify delivery method for physical cards
Choose between standard mail and express delivery when creating physical cards to meet varying urgency needs.
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.
-
Call the Create a card API endpoint with the
delivery_detailsparameter and set thepreferred_delivery_modefield to one of the following values:MAIL: Standard shipping with tracking.EXPRESS: Expedited shipping with priority handling and tracking. Requires a mobile number.
JSON1{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} -
Review the response to confirm your requested delivery method:
JSON1{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.
-
Call the Get card details API endpoint:
GET /api/v1/issuing/cards/{card_id} -
Check the
delivery_detailsobject in the response for bothpreferred_delivery_modeanddelivery_modefields:JSON1{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 region | Card printing location |
|---|---|
| Australia | Australia |
| Hong Kong | Hong Kong |
| Singapore | Malaysia |
| Canada | Poland |
| Israel | Poland |
| Europe | Poland |
| United Kingdom | Poland |
| United States | Poland |
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 region | Card printing location |
|---|---|
| Australia | Australia or Poland |
| Hong Kong | Hong Kong or Poland |
| Singapore | Malaysia or Poland |
| Canada | Poland |
| Israel | Poland |
| Europe | Poland |
| United Kingdom | Poland |
| United States | Poland |
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
| Destination | Delivery method | Delivery time |
|---|---|---|
| Singapore | 3–5 business days | |
| Rest of world | 3–5 business days | |
| Global | EXPRESS | 2–5 business days |
Australia
| Destination | Delivery method | Delivery time |
|---|---|---|
| Australia | 3–7 business days | |
| New Zealand | 3–7 business days | |
| Rest of world | 15+ business days | |
| Australia | EXPRESS | 1–3 business days |
| New Zealand | EXPRESS | 2–5 business days |
| Rest of world | EXPRESS | 3–6 business days |
Hong Kong
| Destination | Delivery method | Delivery time |
|---|---|---|
| Hong Kong | 8 calendar days | |
| China | 8 calendar days | |
| Rest of world | 8 calendar days | |
| Hong Kong | EXPRESS | 2–4 business days |
| Global | EXPRESS | 2–4 business days |
Poland
| Destination | Delivery method | Delivery time |
|---|---|---|
| Within Europe | 3–6 business days | |
| Rest of world | 6–12 business days | |
| Global | EXPRESS | 2–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
| Destination | Delivery method | Delivery time |
|---|---|---|
| United States | 1–3 business days | |
| United States | EXPRESS | 1–2 business days |
| Rest of world | EXPRESS | 5+ 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:
- Retrieve physical card delivery details to track shipment status
- Create commercial cards for business use cases
- Create consumer cards for individual cardholders