curl -X PUT https://api.digitzs.com/merchants/merchant_abc123 \
-H "x-api-key: your-api-key" \
-H "Authorization: Bearer your-app-token" \
-H "appId: your-app-id" \
-H "Content-Type: application/json" \
-d '{
"data": {
"type": "merchants",
"attributes": {
"group": "bankInfo",
"bankInfo": {
"bankName": "Chase Bank",
"accountOwnership": "business",
"accountType": "checking",
"accountName": "Acme Corporation",
"accountNumber": "9876543210",
"routingNumber": "026009593"
}
}
}
}'