---
title: "Create split transactions"
method: POST
path: "/users/{user_guid}/transactions/{transaction_guid}/split"
tags: ["transactions"]
---

# Create split transactions

`POST /users/{user_guid}/transactions/{transaction_guid}/split`

This endpoint creates two or more child transactions that are branched from a previous transaction. This endpoint allows you to link multiple categories, descriptions, and amounts to a parent transaction.  When a split transaction is created, the parent transaction's `has_been_split` field will automatically be updated to true and the child transactions' `parent_guid` will have the transaction guid of the parent. The total amount of the child transactions must equal the amount of the parent transaction. Once a transaction has been split it can't be split again.    In order to re-split a transaction, it must first be un-split. This can be done by calling the Delete Split Transactions endpoint. Calling this endpoint will delete the existing child transactions and update the parent transaction's `has_been_split` field to false. You can then re-split the parent transaction by calling Create Split Transaction again.

## Request body

- SplitTransactionRequestBody
  - `transactions` SplitTransactionRequest, required
    - `amount` number, required — Amount of money you want to re-categorize.
    - `description` string — Description for the split transaction.
    - `category_guid` string — Unique identifier of the category.
    - `memo` string — Memo for the split transaction

## Response `200`

OK

---

[API](https://skmtc.dev/mx/apis/mx-platform-api.md) · [All operations](https://skmtc.dev/mx/apis/mx-platform-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/mx/mx-platform-api/revisions/b6632646ee89/schema)
