post https://api-sandbox.poweredbyibex.io/account//splits
Creates or adds additional splits for the account
Payment Splits automatically triggers a payment to the preconfigured destination whenever funds are received on the account.
Note:
- There is 0 fee when splitting to an IBEXHub account
- Splits to an Lightning Addresswill only execute when it is at least1sat
- Splits to an Onchain Addresswill only execute when it is at least5500sats
- Fees are deducted from the final split amount
 amtToSplit = (amtSrc * percentSplit) - fees
An example request body:
[
  {
    "percent": 1,
    "destination": "bc1qdfjs54pgl8eedjkvnpxalqekxzuft9phzzhe99" // onchain address
  },
  {
    "percent": 10,
    "destination": "[email protected]" // lightning address
  },
  {
    "percent": 15,
    "destination": "d76f8fc3-cc15-4ba6-b12e-b2704f257704" // hub account UUID
  }
]
Cycles are not allowedA split to the parent IBEXHub Account or any ancestors is not allowed
Onchain Address is not a valid split destination for IBEXHub fiat accountsSplitting to an onchain address is not available for fiat accounts at the moment
