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-credit/' \
--header 'Store-Id: 123456' \
--header 'X-manager-Token: {{Access-Token}}' \
--header 'Content-Type: application/json' \
--data '{
"customer_ids": [
987654,
987655,
987656
],
"amount": 100,
"reason": "Promotional wallet credit",
"expires_at": "2026-12-31T23:59:59Z"
}'{
"succeeded": [
{
"customer_id": 987654,
"transaction_id": "txn_8d45f76a",
"error": null
},
{
"customer_id": 987654,
"transaction_id": "txn_8d45f76a",
"error": null
}
],
"failed": [
{
"customer_id": 987656,
"transaction_id": null,
"error": "Unable to credit customer wallet."
},
{
"customer_id": 987656,
"transaction_id": null,
"error": "Unable to credit customer wallet."
}
],
"total": 3,
"succeeded_count": 2,
"failed_count": 1
}