Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
Body Params application/json
{
"affinity_group_id": "afg-2d5q7lg53vmjcNnyDsgQWbtQFmc",
"quantity": 100,
"distribution_type": "WAREHOUSE"
}
Request Code Samples
curl --location --request POST '/cards/v1/batches' \
--header 'Content-type: application/json;' \
--data-raw '{
"affinity_group_id": "afg-2d5q7lg53vmjcNnyDsgQWbtQFmc",
"quantity": 100,
"distribution_type": "WAREHOUSE"
}'
Responses
application/json {
"data": {
"shipment_id": "shi-2q96lrHEehXXyjGP3kkXFd4M2N8",
"affinity_group_id": "afg-2d5q7lg53vmjcNnyDsgQWbtQFmc",
"quantity": 100,
"card_type": "PHYSICAL",
"distribution_type": "WAREHOUSE"
}
}
Modified at 2025-03-16 05:50:40