PayNow

PaymentPayoutSplitRuleDto

Represents payout split rules for a payment line

line_amount_taxintegerRequired
The tax amount of the line item in smallest currency unit
line_amount_totalintegerRequired
The total amount of the line item in smallest currency unit
line_idFlakeIdRequired
splitsPaymentPayoutSplitRuleSplitDto[]Required
The list of splits defining how the payout should be divided
platform_fee_percentageintegerRequired
The platform fee percentage applied to this split (in basis points)
user_idFlakeIdRequired
percentageintegerOptional
The percentage of the line amount this user receives (in basis points, e.g., 5000 = 50%)
Example
{
  "line_amount_tax": 850,
  "line_amount_total": 10000,
  "line_id": "411486491630370816",
  "splits": [
    {
      "platform_fee_percentage": 500,
      "user_id": "411486491630370816",
      "percentage": 5000
    }
  ]
}