...
Where a merchant is required to keep a fixed amount in the available balance. In this example a float of $10.00.
Code Block |
---|
PUTPOST /payout { "entity": "{{Entity_ID_Merchant4}}", "account": "{{Account_ID_Merchant4}}", "name": "One-Time Payout", "amount": "10000", "schedule": "5", "float" : "1000", "start" : "20201223", "um": 1 } |
To release a float
Code Block |
---|
PUT /payout/t1_pay_asdsdasdasdasd
{
"float" : "0"
} |
One Time Payout that is 80% of available balance
Code Block |
---|
PUTPOST /payout { "entity": "{{Entity_ID_Merchant4}}", "account": "{{Account_ID_Merchant4}}", "name": "One-Time Payout", "amount": "8000", "schedule": "5", "start" : "20201223", "um": 1 } |
...
For example at the end of a monthly cycle
Code Block |
---|
PUTPOST /payout { "entity": "{{Entity_ID_Merchant4}}", "account": "{{Account_ID_Merchant4}}", "name": "One-Time Payout", "amount": "10000", "schedule": "5", "start" : "20201223", "um": 1 } |
...