v1

latestOpenAPI 3.1.02026-08-06236494759.4 KB
Auto-Transfer Presets

Get Auto-transfer Preset

Endpoint to get AutoTransferPreset by ID.

get/business/v2/wallets/autotransfer-presets/{presetId}

Path parameters

presetIdstring required

The AutoTransferPreset ID

Response

The returned resource is an AutoTransferPreset.

idstring

The unique identifier of the AutoTransferPreset. (Sortable: No).

namestring

The name of the AutoTransferPreset. (Sortable: No).

descriptionstring

The description of the AutoTransferPreset. (Sortable: No).

type'PERIODIC' | 'LOW_BALANCE'

The type of AutoTransferPreset.

currencystring

The currency used in the AutoTransferPreset.

number_of_assigned_walletsinteger

The number of wallets assigned to the AutoTransferPreset.

wallet_fromstring

The from wallet used for the AutoTransferPreset.

wallet_tostring[]

The to wallet used for the AutoTransferPreset.

creation_timestring

The date and time the AutoTransferPreset was created.

last_update_timestring

The date and time the AutoTransferPreset was last updated.

Example response

{
  "id": "7bf79328-a7ae-4222-aa54-091ff7f429a7",
  "name": "DefaultPreset",
  "description": "Default CardRule preset policy",
  "currency": "EUR",
  "number_of_assigned_wallets": 2,
  "wallet_from": "7bf79328-a7ae-4222-aa54-091ff7f429a7",
  "wallet_to": [
    "7bf79328-a7ae-4222-aa54-091ff7f429a7",
    "2d65bd5e-3fdf-4002-b166-bde7fb8863fa"
  ],
  "creation_time": "2017-06-01T12:48:40Z",
  "last_update_time": "2017-06-01T12:48:40Z"
}