Card Bulk Orders

card_bulk_orders

Methods

List Bulk Orders -> CursorPage<>
get/v1/card_bulk_orders

List bulk orders for physical card shipments [BETA]

query Parameters
begin: string
Optional
(format: date-time)

Date string in RFC 3339 format. Only entries created after the specified time will be included. UTC time zone.

end: string
Optional
(format: date-time)

Date string in RFC 3339 format. Only entries created before the specified time will be included. UTC time zone.

ending_before: string
Optional

A cursor representing an item's token before which a page of results should end. Used to retrieve the previous page of results before this item.

page_size: number
Optional
(maximum: 100, minimum: 1, default: 50)

Page size (for pagination).

starting_after: string
Optional

A cursor representing an item's token after which a page of results should begin. Used to retrieve the next page of results after this item.

Response fields
data: Array<>
has_more: boolean

More data exists.

Request example
200Example
Create Bulk Order ->
post/v1/card_bulk_orders

Create a new bulk order for physical card shipments [BETA]. Cards can be added to the order via the POST /v1/cards endpoint by specifying the bulk_order_token. Lock the order via PATCH /v1/card_bulk_orders/{bulk_order_token} to prepare for shipment. Please work with your Customer Success Manager and card personalization bureau to ensure bulk shipping is supported for your program.

Get Bulk Order ->
get/v1/card_bulk_orders/{bulk_order_token}

Retrieve a specific bulk order by token [BETA]

Update Bulk Order ->
patch/v1/card_bulk_orders/{bulk_order_token}

Update a bulk order [BETA]. Primarily used to lock the order, preventing additional cards from being added

Domain types

CardBulkOrder = { token, card_tokens, created, 5 more... }

Represents a bulk order for physical card shipments