v1
latestOpenAPI 3.0.02026-07-267331140.7 KBPhysical Card Order
Create Physical Card Order
Orders a new physical card for the authenticated user. This is the first step in the physical card order process, the card is not created yet.
Next are the steps to complete the order:
- Optionally attach a coupon using /api/v1/order/{orderId}/attach-coupon (use the GPDOCS coupon code to get the card for free)
- If not free, attach a transaction hash using /api/v1/order/{orderId}/attach-transaction
- Confirm the payment using /api/v1/order/{orderId}/confirm-payment
- Create the card using /api/v1/order/{orderId}/create-card
post/api/v1/order/create
Request body
Example request
{
"shippingAddress": {
"country": "BR"
}
}Response
Card order created successfully
Example response
{
"status": "PENDINGTRANSACTION"
}