Create a new wallet with the specified attributes.
Request
Body Params application/json
{
"holder_id": "81fd9a9e-5c0f-48ec-aa7d-0fb99f12b3b1",
"asset_class": "CURRENCY",
"asset": "AUD",
"partner_product": "KOBBLE_AUD_1"
}
Request Code Samples
curl --location --request POST '/customers/v1/wallets' \
--header 'Authorization: Bearer {{access_token}}' \
--header 'Content-Type: application/json' \
--data-raw '{
"holder_id": "81fd9a9e-5c0f-48ec-aa7d-0fb99f12b3b1",
"asset_class": "CURRENCY",
"asset": "AUD",
"partner_product": "KOBBLE_AUD_1"
}'
Responses
application/json {
"id": "73557536-d005-4488-9d0c-aabe48705595",
"external_id": "11111",
"created_at": "2025-01-14T16:56:58.947Z",
"updated_at": "2025-01-14T16:56:58.947Z",
"holder_id": "db13f0b1-dbb8-4476-9e31-fb93bcb3ec33",
"asset": "AUD",
"asset_class": "CURRENCY",
"status": "INACTIVE",
"partner_product": "KOBBLE_AUD_1",
"total_amount": 1,
"amount": 1,
"reserved_amount": 0
}
Modified at 2025-07-21 13:14:36