Skip to main content
POST
/
transactions
/
group-internals
Group transactions as an internal transfer
curl --request POST \
  --url https://api.breezing.io/v1/transactions/group-internals \
  --header 'Content-Type: application/json' \
  --data '
{
  "ids": [
    123
  ]
}
'
{
  "success": true,
  "data": {
    "internalId": 123,
    "updated": 123,
    "dedupedFrom": 123
  }
}

Query Parameters

orgId
string
required

Organization ID. Use GET /v1/companies to discover available org/company pairs.

Example:

"1"

companyId
string
required

Company ID. Use GET /v1/companies to discover available companies and their access levels.

Example:

"1"

Body

application/json
ids
integer[]
required

Transaction IDs to group as a single internal transfer (max 500). The endpoint allocates a new internalId and assigns it to all listed transactions; isInternal is set to true. Duplicate IDs are deduplicated server-side.

Required array length: 1 - 500 elements

Response

Transactions grouped successfully

success
enum<boolean>
required
Available options:
true
data
object
required
Last modified on June 4, 2026