Skip to content
Download OpenAPI description
Languages
Servers
Mock Server

https://docs.solarisgroup.com/_mock/api-reference/digital-banking/transactions/

Operations
Operations
Operations
Operations
Operations

Request

Initiates a transaction between the main- and sub-account of a single customer. This transaction does not require a change request. Both the account owner and any authorized person on the account may initiate this type of transaction.

Path
person_idstringrequired
account_idstringrequired
Bodyapplication/json
amountobjectrequired

The amount to transfer.

Example: {"value":1000,"currency":"EUR"}
amount.​valueinteger
Example: 1000
amount.​currencystring
Example: "EUR"
recipient_ibanstringrequired

The recipient account's IBAN. Note that both accounts must belong to the same person.

Example: "DE32110101001000000029"
referencestringrequired

UUID reference for the transaction. Used as an idempotency key.

Example: "73a46685-8ac6-4fff-9d36-55288523d879"
descriptionstring

A text description for the transfer, which will be visible to the customer.

Example: "Example transaction"
application/json
{ "reference": "73a46685-8ac6-4fff-9d36-55288523d879", "recipient_iban": "DE32110101001000000029", "description": "Example transaction", "amount": { "value": 1000, "currency": "EUR" } }

Responses

This transaction already exists.

Bodyapplication/json
idstring

ID of the intra customer transaction.

Example: "68df7a63b2ad4a16907eeac2cf484275"
referencestring

UUID reference for the transaction. Used as an idempotency key.

Example: "d91eba3a-882c-4ded-a7e7-3c1dc24eaf0f"
amountobject

The amount of the transaction.

descriptionstring

A description for the transaction, visible to the customer.

Example: "Description"
recipient_ibanstring

The recipient's IBAN.

Example: "DE43110101005555555555"
created_atstring(date-time)

UTC timestamp from when the transaction was initiated.

Example: "2022-04-22T16:02:54Z"
Response
application/json
{ "id": "68df7a63b2ad4a16907eeac2cf484275", "reference": "d91eba3a-882c-4ded-a7e7-3c1dc24eaf0f", "amount": { "value": 1000, "unit": "cents", "currency": "EUR" }, "description": "Description", "recipient_iban": "DE43110101005555555555", "created_at": "2022-04-22T16:02:54Z" }
Operations
Operations
Operations
Operations
Operations