post https://api-sandbox.pismolabs.io/payments/v1/payments/force
Forces a credit or debit operation in the specified account using the account_id
, the processing_code
and the amount
provided.
This operation directly impacts the balance but does not perform any of the validations that are done in the /v1/payments
endpoint, such as validating the account status, account balance, and flex controls.
For additional information, see the Force operation guide.
Forced credit example
Assuming that processing_code
"090907" is defined as credit type, the following payload executes a forced credit operation:
{
"amount": 12.34,
"account_id": 2417,
"processing_code": "090907",
"descriptor": "Cashback credit",
"metadata": {
"my-custom-key": "my-custom-info"
}
}