curl --request POST \
--url https://business.bfinance.app/external/api/physical-cards/{id}/order \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"cardType": "budget",
"shippingData": {
"firstName": "John",
"lastName": "Doe",
"email": "john.doe@example.com",
"phone": "1234567890",
"phoneCode": "+1",
"addressLine1": "123 Main St",
"city": "New York",
"state": "NY",
"postalCode": "10001",
"country": "USA",
"addressLine2": "Apt 4B"
}
}
'