Customer Wallet write operations. Approval is reviewed as part of the app review process.curl --location 'https://api.zid.sa/v1/customer-wallets/customers/bulk-debit/' \
--header 'Store-Id: 123456' \
--header 'X-manager-Token: {{Access-Token}}' \
--header 'Content-Type: application/json' \
--data '{
"customer_ids": [
987654,
987655,
987656
],
"amount": 50,
"reason": "Manual wallet adjustment"
}'{
"succeeded": [
{
"customer_id": 987654,
"transaction_id": "transaction_12345",
"error": null
},
{
"customer_id": 987654,
"transaction_id": "transaction_12345",
"error": null
}
],
"failed": [
{
"customer_id": 987656,
"transaction_id": null,
"error": "Unable to debit customer wallet."
},
{
"customer_id": 987656,
"transaction_id": null,
"error": "Unable to debit customer wallet."
}
],
"total": 3,
"succeeded_count": 2,
"failed_count": 1
}