MngDeleteCashierProviderConfig¶
Disables an existing Cashier payment provider configuration.
The method performs a soft delete: the config remains in storage for audit and
history, but enabled is set to 0. Disabled configs are not used for new
Cashier deposit routing.
Access¶
SESSION_MANAGER, SESSION_ADMIN, SESSION_DEALER,
SESSION_CRM_MANAGER, SESSION_CRM_ADMIN.
Request Parameters¶
| Name | Type | Required | Description |
|---|---|---|---|
id |
int | Yes | Existing provider config id |
Request Example¶
{
"command": "MngDeleteCashierProviderConfig",
"extID": "1",
"data": {
"id": 1
}
}
Response¶
{
"data": "OK"
}
Notes¶
- The active runtime instance for this provider config is destroyed.
- The original
.soinpaymentsis not removed. - Existing Cashier transactions keep their provider/config metadata.
- To enable the config again, call
MngUpdateCashierProviderConfigwithenabled: 1.