Skip to main content
POST
/
v3.0
/
{ClientId}
/
payins
/
intents
/
{IntentId}
/
splits
/
{SplitId}
/
execute
// No request body
{
    "Id": "int_split_0197f979-46a1-7810-adfc-a4bcdd7a9315",
    "LineItemId": "int_li_0197f975-63f9-7cb9-b906-43671509eb34",
    "SellerId": "user_m_01JZWQAGPP1ZQR39QTH2TCP587",
    "WalletId": "wlt_m_01JZWQAJN34AGPDRTP9KHBYNYX",
    "SplitAmount": 8000,
    "FeesAmount": 0,
    "Description": "Example description of the Split",
    "Status": "PENDING"
}

Path parameters

IntentId
string
required
The unique identifier of the Intent.
SplitId
string
required
The unique identifier of the Split.

Body parameters

No request body to execute Split.

Responses

200 - Response parameters

Id
string
The unique identifier of the Split.
LineItemId
string
The unique identifier of the line item.
SellerId
string
The unique identifier of the seller of the line item.
WalletId
string
The unique identifier of the wallet to credit the seller’s funds.
SplitAmount
type
The amount to transfer to the seller’s WalledId.The sum of the SplitAmount values of all Splits must be lower than or equal to the AvailableAmountToSplit of the Intent.
FeesAmount
string
The amount of fees.The sum of the FeesAmount values of all Splits must be lower than or equal to the PlatformFeesAmount of the Intent.
TransferDate
Unix timestamp
The future date when the funds are to be automatically transferred to the seller’s wallet.
Description
string
The description of the Split.
Status
string
The status of the Split:
  • CREATED
  • PENDING_FUNDS_RECEPTION
  • AVAILABLE
  • PENDING
  • COMPLETED
  • REJECTED
  • FAILED
  • REVERSED
{
    "Message": "One or several required parameters are missing or incorrect. An incorrect resource ID also raises this kind of error.",
    "Id": "55f14d55-ccbf-4cb1-b564-acf8fc7c8712",
    "Date": 1756392701,
    "Type": "param_error",
    "Errors": {
        "Split": "Execute split requires a status in [AVAILABLE, REJECTED]. Split [int_split_0198f124-ea93-786c-b7f1-40c465efacca] currently has a status of PENDING_FUNDS_RECEPTION."
    }
}
{
    "Id": "int_split_0197f979-46a1-7810-adfc-a4bcdd7a9315",
    "LineItemId": "int_li_0197f975-63f9-7cb9-b906-43671509eb34",
    "SellerId": "user_m_01JZWQAGPP1ZQR39QTH2TCP587",
    "WalletId": "wlt_m_01JZWQAJN34AGPDRTP9KHBYNYX",
    "SplitAmount": 8000,
    "FeesAmount": 0,
    "Description": "Example description of the Split",
    "Status": "PENDING"
}
// No request body
I