API status

Transactions

All transactions related paths.

get

List cash transactions

List cash transactions

account_group_idstring

Filters the list to show only transactions associated with a certain account group ID.

Format
uuid
Example
"413715f2-5401-4b97-8055-034a6b879f8c"
start_datestring

Returns transactions starting from and including this date (UTC).

Format
date
Example
"2023-01-03"
end_datestring

Returns transactions up until this date (UTC)

Format
date
Example
"2023-01-11"
sortstring

Sort the result by booking_date.

Default
"booking_date"
Enum
  • booking_date
orderstring

Sort order of the result list if the sort parameter is specified. Use ASC for ascending or DESC for descending sort order.

Default
"ASC"
Enum
  • ASC
  • DESC
offsetint

Use the offset argument to specify where in the list of results to start when returning items for a particular query.

Format
int32
Min
0
limitint

Use the limit argument to specify the maximum number of items returned.

Format
int32
Default
100
Min
0
Max
1000

Responses

Response examples

Cash Transactions

{
  "meta": {
    "offset": 0,
    "limit": 100,
    "count": 2,
    "total_count": 2,
    "sort": "booking_date",
    "order": "ASC"
  },
  "data": [
    {
      "id": "6dc9fbca-8835-11ed-a217-2eabd0c03f8a",
      "created_at": "2023-01-01",
      "updated_at": "2023-01-01",
      "account_group_id": "6409e3f2-8835-11ed-96a4-2eabd0c03f8a",
      "booking_date": "2023-01-01",
      "delta": {
        "amount": "-305.00",
        "currency": "EUR"
      },
      "references": [
        {
          "id": "7579a672-8835-11ed-9455-2eabd0c03f8a",
          "type": "ORDER_EXECUTION"
        },
        {
          "id": "1f5758d3-1ef7-4b4c-96ec-6b3da2bf1a8a",
          "type": "ORDER"
        }
      ],
      "taxes": [
        {
          "amount": "5.00",
          "currency": "EUR",
          "type": "TOTAL"
        }
      ],
      "type": "ORDER_EXECUTION",
      "value_date": "2023-01-01"
    },
    {
      "account_group_id": "6409e3f2-8835-11ed-96a4-2eabd0c03f8a",
      "booking_date": "2023-01-01",
      "created_at": "2023-01-01",
      "delta": {
        "amount": "100.00",
        "currency": "EUR"
      },
      "id": "9e7a3188-eff8-11ed-a05b-0242ac120003",
      "references": [
        {
          "id": "98f01200-eff8-11ed-a05b-0242ac120003",
          "type": "DIRECT_DEBIT"
        }
      ],
      "taxes": [],
      "type": "SEPA_DIRECT_DEBIT",
      "updated_at": "2023-01-01",
      "value_date": "2023-01-01"
    }
  ]
}
get

List securities transactions

List securities transactions

account_group_idstring

Filters the list to only show transactions associated with a certain account group ID.

Format
uuid
Example
"413715f2-5401-4b97-8055-034a6b879f8c"
account_idstring

Filters the list to only show transactions associated with a certain account ID.

Format
uuid
Example
"413715f2-5401-4b97-8055-034a6b879f8c"
start_datestring

Returns transactions starting from and including this date (UTC)

Format
date
Example
"2023-01-03"
end_datestring

Returns transactions up until this date (UTC)

Format
date
Example
"2023-01-11"
sortstring

Sort the result by booking_date.

Default
"booking_date"
Enum
  • booking_date
orderstring

Sort order of the result list if the sort parameter is specified. Use ASC for ascending or DESC for descending sort order.

Default
"ASC"
Enum
  • ASC
  • DESC
offsetint

Use the offset argument to specify where in the list of results to start when returning items for a particular query.

Format
int32
Min
0
limitint

Use the limit argument to specify the maximum number of items returned.

Format
int32
Default
100
Min
0
Max
1000

Responses

Response examples

Securities Transactions

{
  "meta": {
    "offset": 0,
    "limit": 100,
    "count": 2,
    "total_count": 2,
    "sort": "booking_date",
    "order": "ASC"
  },
  "data": [
    {
      "id": "6dc9fbca-8835-11ed-a217-2eabd0c03f8a",
      "created_at": "2023-01-01",
      "updated_at": "2023-01-01",
      "account_group_id": "6409e3f2-8835-11ed-96a4-2eabd0c03f8a",
      "account_id": "db6290bb-1491-45bf-aafe-262dad59d497",
      "booking_date": "2023-01-01",
      "delta": {
        "amount": "-2.5234543879"
      },
      "instrument": {
        "isin": "US0378331005",
        "uuid": "ccb86937-8a39-4160-8d33-85bf9e902321"
      },
      "references": [
        {
          "id": "7579a672-8835-11ed-9455-2eabd0c03f8a",
          "type": "ORDER_EXECUTION"
        },
        {
          "id": "1f5758d3-1ef7-4b4c-96ec-6b3da2bf1a8a",
          "type": "ORDER"
        }
      ],
      "type": "ORDER_EXECUTION",
      "value_date": "2023-01-01"
    },
    {
      "account_group_id": "6409e3f2-8835-11ed-96a4-2eabd0c03f8a",
      "account_id": "db6290bb-1491-45bf-aafe-262dad59d497",
      "booking_date": "2023-01-01",
      "created_at": "2023-01-01",
      "delta": {
        "amount": "2.5234543879"
      },
      "id": "6dc9fbca-8835-11ed-a217-2eabd0c03f8a",
      "instrument": {
        "isin": "US0378331005",
        "uuid": "ccb86937-8a39-4160-8d33-85bf9e902321"
      },
      "references": [
        {
          "id": "7579a672-8835-11ed-9455-2eabd0c03f8a",
          "type": "ORDER_EXECUTION"
        },
        {
          "id": "1f5758d3-1ef7-4b4c-96ec-6b3da2bf1a8a",
          "type": "ORDER"
        }
      ],
      "type": "ORDER_EXECUTION_CANCELLATION",
      "updated_at": "2023-01-01",
      "value_date": "2023-01-01"
    }
  ]
}
webhook

Cash transactions events

idstring

required

Event unique identifier

Format
uuid
created_atstring

required

Date and time when the event was created. RFC 3339-5, ISO8601 UTC

Format
date-time
typestring

required

Event type

Default
"CASH_TRANSACTION.EXECUTED"
Enum
  • CASH_TRANSACTION.EXECUTED
objectobject (Cash Transaction)

required

account_group_idstring

required

Account group unique identifier.

Format
uuid
booking_datestring

required

Transaction booking date and time. RFC 3339-5, ISO8601 UTC

Format
date-time
created_atstring

required

Date and time when the resource was created. RFC 3339-5, ISO8601 UTC

Format
date-time
deltaobject (Cash transaction delta)

required

Entity representing cash transaction delta.

idstring

required

Cash transaction unique identifier.

Format
uuid
instrumentobject (Instrument)

Entity representing instrument

account_idstring

Account unique identifier.

Format
uuid
taxesarray

required

referencesarray

required

typestring

required

Transaction type

  • BALANCE_CORRECTION - Balance correction
  • BALANCE_CORRECTION_CANCELLATION - Balance correction cancellation
  • CALL_ON_INTERMEDIATE_SECURITIES - Call on Intermediate Securities
  • CALL_ON_INTERMEDIATE_SECURITIES_CANCELLATION - Call on Intermediate Securities cancellation
  • CAPITAL_DISTRIBUTION - Capital distribution
  • CAPITAL_DISTRIBUTION_CANCELLATION - Capital distribution cancellation
  • CASH_DIVIDEND - Cash dividend
  • CASH_DIVIDEND_CANCELLATION - Cash dividend cancellation
  • CONVERSION - Conversion
  • CONVERSION_CANCELLATION - Conversion cancellation
  • CREDIT_FUNDING - Credit funding
  • CREDIT_FUNDING_CHARGE_BACK - Credit funding charge back
  • DD_REFUND_REJECT_FEE - DD refund reject fee
  • DD_REFUND_REJECT_FEE_CANCELLATION - DD refund reject fee cancellation
  • DECREASE_IN_VALUE - Decrease in Value
  • DECREASE_IN_VALUE_CANCELLATION - Decrease in Value, Cancellation
  • DIVIDEND_OPTION - Dividend Option
  • DIVIDEND_OPTION_CANCELLATION - Dividend Option, Cancellation
  • DIVIDEND_REINVESTMENT - Dividend Reinvestment
  • DIVIDEND_REINVESTMENT_CANCELLATION - Dividend Reinvestment, Cancellation
  • DUTCH_AUCTION - Dutch Auction
  • DUTCH_AUCTION_CANCELLATION - Dutch Auction, Cancellation
  • FEE_COLLECTION - Fee collection
  • FEE_COLLECTION_CANCELLATION - Fee collection cancellation
  • INCREASE_IN_VALUE - Increase in Value
  • INCREASE_IN_VALUE_CANCELLATION - Increase in Value, Cancellation
  • LIQUIDATION_PAYMENT - Liquidation Dividend/Liquidation Payment
  • LIQUIDATION_PAYMENT_CANCELLATION - Liquidation Dividend/Liquidation Payment, Cancellation
  • MERGER - Merger
  • MERGER_CANCELLATION - Merger, Cancellation
  • NON_OFFICIAL_OFFER - Non-Official Offer
  • NON_OFFICIAL_OFFER_CANCELLATION - Non-Official Offer, Cancellation
  • ODD_LOT_SALE - Odd Lot Sale/Purchase
  • ODD_LOT_SALE_CANCELLATION - Odd Lot Sale/Purchase, Cancellation
  • ORDER_EXECUTION - Order execution
  • ORDER_EXECUTION_CANCELLATION - Order execution cancellation
  • OTHER_EVENT - Other Event
  • OTHER_EVENT_CANCELLATION - Other Event, Cancellation
  • PRIORITY_ISSUE - Priority Issue
  • PRIORITY_ISSUE_CANCELLATION - Priority Issue, Cancellation
  • REPURCHASE_OFFER - Repurchase Offer/Issuer Bid/Reverse Rights
  • REPURCHASE_OFFER_CANCELLATION - Repurchase Offer/Issuer Bid/Reverse Rights, Cancellation
  • REVERSE_STOCK_SPLIT - Reverse Stock Split/Change in Nominal Value
  • REVERSE_STOCK_SPLIT_CANCELLATION - Reverse Stock Split/Change in Nominal Value, Cancellation
  • SEPA_DIRECT_DEBIT - Sepa direct debit
  • SEPA_DIRECT_DEBIT_CHARGE_BACK - Sepa direct debit charge back
  • SHARES_PREMIUM_DIVIDEND - Shares Premium Dividend
  • SHARES_PREMIUM_DIVIDEND_CANCELLATION - Shares Premium Dividend, Cancellation
  • SPIN_OFF - Spin-Off
  • SPIN_OFF_CANCELLATION - Spin-Off, Cancellation
  • STOCK_SPLIT - Stock Split/Change in Nominal Value/Subdivision
  • STOCK_SPLIT_CANCELLATION - Stock Split/Change in Nominal Value/Subdivision, Cancellation
  • TAX_PAYMENT - Tax payment
  • TAX_PREPAYMENT_DE - German tax prepayment (Vorabpauschale)
  • TAX_REFUND - Tax refund
  • TENDER - Tender/Acquisition/Takeover/Purchase Offer
  • TENDER_CANCELLATION - Tender/Acquisition/Takeover/Purchase Offer, Cancellation
  • TOPUP - Cash top up
  • TOPUP_CANCELLATION - Top up cancellation
  • TREASURY_PAYMENT - Treasury payment
  • VIRTUAL_CASH_CORRECTION - Virtual cash correction
  • VIRTUAL_CASH_DECREASE - Virtual cash decreased
  • VIRTUAL_CASH_INCREASE - Virtual cash increased
  • WITHDRAWAL - Withdrawal
  • WITHDRAWAL_CANCELLATION - Withdrawal cancellation
Enum
  • BALANCE_CORRECTION
  • BALANCE_CORRECTION_CANCELLATION
  • CALL_ON_INTERMEDIATE_SECURITIES
  • CALL_ON_INTERMEDIATE_SECURITIES_CANCELLATION
  • CAPITAL_DISTRIBUTION
  • CAPITAL_DISTRIBUTION_CANCELLATION
  • CASH_DIVIDEND
  • CASH_DIVIDEND_CANCELLATION
  • CONVERSION
  • CONVERSION_CANCELLATION
  • CREDIT_FUNDING
  • CREDIT_FUNDING_CHARGE_BACK
  • DD_REFUND_REJECT_FEE
  • DD_REFUND_REJECT_FEE_CANCELLATION
  • DECREASE_IN_VALUE
  • DECREASE_IN_VALUE_CANCELLATION
  • DIVIDEND_OPTION
  • DIVIDEND_OPTION_CANCELLATION
  • DIVIDEND_REINVESTMENT
  • DIVIDEND_REINVESTMENT_CANCELLATION
  • DUTCH_AUCTION
  • DUTCH_AUCTION_CANCELLATION
  • FEE_COLLECTION
  • FEE_COLLECTION_CANCELLATION
  • INCREASE_IN_VALUE
  • INCREASE_IN_VALUE_CANCELLATION
  • LIQUIDATION_PAYMENT
  • LIQUIDATION_PAYMENT_CANCELLATION
  • MERGER
  • MERGER_CANCELLATION
  • NON_OFFICIAL_OFFER
  • NON_OFFICIAL_OFFER_CANCELLATION
  • ODD_LOT_SALE
  • ODD_LOT_SALE_CANCELLATION
  • ORDER_EXECUTION
  • ORDER_EXECUTION_CANCELLATION
  • OTHER_EVENT
  • OTHER_EVENT_CANCELLATION
  • PRIORITY_ISSUE
  • PRIORITY_ISSUE_CANCELLATION
  • REPURCHASE_OFFER
  • REPURCHASE_OFFER_CANCELLATION
  • REVERSE_STOCK_SPLIT
  • REVERSE_STOCK_SPLIT_CANCELLATION
  • SEPA_DIRECT_DEBIT
  • SEPA_DIRECT_DEBIT_CHARGE_BACK
  • SHARES_PREMIUM_DIVIDEND
  • SHARES_PREMIUM_DIVIDEND_CANCELLATION
  • SPIN_OFF
  • SPIN_OFF_CANCELLATION
  • STOCK_SPLIT
  • STOCK_SPLIT_CANCELLATION
  • TAX_PAYMENT
  • TAX_PREPAYMENT_DE
  • TAX_REFUND
  • TENDER
  • TENDER_CANCELLATION
  • TOPUP
  • TOPUP_CANCELLATION
  • TREASURY_PAYMENT
  • VIRTUAL_CASH_CORRECTION
  • VIRTUAL_CASH_DECREASE
  • VIRTUAL_CASH_INCREASE
  • WITHDRAWAL
  • WITHDRAWAL_CANCELLATION
updated_atstring

required

Date and time when the resource was last updated. RFC 3339-5, ISO8601 UTC

Format
date-time
value_datestring

required

Transaction value date and time. RFC 3339-5, ISO8601 UTC

Format
date-time
webhook_idstring

required

Webhook unique identifier.

Format
uuid

Responses

Request examples

{
  "id": "55a877ce-effa-11ed-a05b-0242ac120003",
  "created_at": "2023-01-01",
  "type": "CASH_TRANSACTION.EXECUTED",
  "object": {
    "account_group_id": "6409e3f2-8835-11ed-96a4-2eabd0c03f8a",
    "account_id": "0255e6c4-effa-11ed-a05b-0242ac120003",
    "booking_date": "2023-01-01",
    "created_at": "2023-01-01",
    "delta": {
      "amount": "25.00",
      "currency": "EUR"
    },
    "instrument": {
      "isin": "US0378331005",
      "uuid": "ccb86937-8a39-4160-8d33-85bf9e902321"
    },
    "id": "6dc9fbca-8835-11ed-a217-2eabd0c03f8a",
    "references": [
      {
        "id": "1f5758d3-1ef7-4b4c-96ec-6b3da2bf1a8a",
        "type": "CORPORATE_ACTION_TRANSACTION_ID"
      }
    ],
    "taxes": [
      {
        "amount": "2.00",
        "currency": "EUR",
        "type": "TOTAL"
      }
    ],
    "type": "CASH_DIVIDEND",
    "updated_at": "2023-01-01",
    "value_date": "2023-01-01"
  },
  "webhook_id": "9d3ac2e0-effa-11ed-a05b-0242ac120003"
}

Response examples

Request has been processed successfully.

Empty response

webhook

Security transactions events

idstring

required

Event unique identifier

Format
uuid
created_atstring

required

Date and time when the event was created. RFC 3339-5, ISO8601 UTC

Format
date-time
typestring

required

Event type

Default
"SECURITY_TRANSACTION.EXECUTED"
Enum
  • SECURITY_TRANSACTION.EXECUTED
objectobject (Security Transaction)

required

account_group_idstring

required

Account group unique identifier.

Format
uuid
account_idstring

required

Account unique identifier.

Format
uuid
booking_datestring

required

Transaction booking date and time. RFC 3339-5, ISO8601 UTC

Format
date-time
created_atstring

required

Date and time when the resource was created. RFC 3339-5, ISO8601 UTC

Format
date-time
deltaobject (Security transaction delta)

required

Entity representing the security transaction delta.

idstring

required

Security transaction unique identifier.

Format
uuid
instrumentobject (Instrument)

required

Entity representing instrument

typestring

required

Transaction type

  • BALANCE_CORRECTION - Balance correction
  • BALANCE_CORRECTION_CANCELLATION - Balance correction cancellation
  • BONUS_ISSUE - Bonus Issue/Capitalisation Issue
  • BONUS_ISSUE_CANCELLATION - Bonus Issue/Capitalisation Issue, Cancellation
  • CALL_ON_INTERMEDIATE_SECURITIES - Call on Intermediate Securities
  • CALL_ON_INTERMEDIATE_SECURITIES_CANCELLATION - Call on Intermediate Securities, Cancellation
  • CHANGE - Change
  • CHANGE_CANCELLATION - Change, Cancellation
  • CONVERSION - Conversion
  • CONVERSION_CANCELLATION - Conversion cancellation
  • DIVIDEND_OPTION - Dividend Option
  • DIVIDEND_OPTION_CANCELLATION - Dividend Option, Cancellation
  • DIVIDEND_REINVESTMENT - Dividend Reinvestment
  • DIVIDEND_REINVESTMENT_CANCELLATION - Dividend Reinvestment, Cancellation
  • DUST_CLEANUP - Dust Cleanup
  • DUTCH_AUCTION - Dutch Auction
  • DUTCH_AUCTION_CANCELLATION - Dutch Auction, Cancellation
  • INTERMEDIATE_SECURITIES_DISTRIBUTION - Intermediate Securities Distribution
  • INTERMEDIATE_SECURITIES_DISTRIBUTION_CANCELLATION - Intermediate Securities Distribution, Cancellation
  • MERGER - Merger
  • MERGER_CANCELLATION - Merger, Cancellation
  • NON_OFFICIAL_OFFER - Non-Official Offer
  • NON_OFFICIAL_OFFER_CANCELLATION - Non-Official Offer, Cancellation
  • ODD_LOT_SALE - Odd Lot Sale/Purchase
  • ODD_LOT_SALE_CANCELLATION - Odd Lot Sale/Purchase, Cancellation
  • ORDER_EXECUTION - Order execution
  • ORDER_EXECUTION_CANCELLATION - Order execution cancellation
  • OTHER_EVENT - Other Event
  • OTHER_EVENT_CANCELLATION - Other Event cancellation
  • PARI_PASSU - Pari passu
  • PARI_PASSU_CANCELLATION - Pari passu cancellation
  • PRIORITY_ISSUE - Priority Issue
  • PRIORITY_ISSUE_CANCELLATION - Priority Issue, Cancellation
  • REPURCHASE_OFFER - Repurchase Offer/Issuer Bid/Reverse Rights
  • REPURCHASE_OFFER_CANCELLATION - Repurchase Offer/Issuer Bid/Reverse Rights, Cancellation
  • REVERSE_STOCK_SPLIT - Reverse Stock Split/Change in Nominal Value
  • REVERSE_STOCK_SPLIT_CANCELLATION - Reverse Stock Split/Change in Nominal Value, Cancellation
  • RIGHTS_ISSUE - Rights Issue/Subscription Rights/Rights Offer
  • RIGHTS_ISSUE_CANCELLATION - Rights Issue/Subscription Rights/Rights Offer, Cancellation
  • SECURITIES_TRANSFER - Securities transfer
  • SECURITIES_TRANSFER_CANCELLATION - Securities transfer cancellation
  • SPIN_OFF - Spin-Off
  • SPIN_OFF_CANCELLATION - Spin-Off, Cancellation
  • STOCK_DIVIDEND - Stock Dividend
  • STOCK_DIVIDEND_CANCELLATION - Stock Dividend, Cancellation
  • STOCK_SPLIT - Stock Split/Change in Nominal Value/Subdivision
  • STOCK_SPLIT_CANCELLATION - Stock Split/Change in Nominal Value/Subdivision, Cancellation
  • TENDER - Tender/Acquisition/Takeover/Purchase Offer
  • TENDER_CANCELLATION - Tender/Acquisition/Takeover/Purchase Offer, Cancellation
  • WORTHLESS - Worthless
  • WORTHLESS_CANCELLATION - Worthless, Cancellation
Enum
  • BALANCE_CORRECTION
  • BALANCE_CORRECTION_CANCELLATION
  • BONUS_ISSUE
  • BONUS_ISSUE_CANCELLATION
  • CALL_ON_INTERMEDIATE_SECURITIES
  • CALL_ON_INTERMEDIATE_SECURITIES_CANCELLATION
  • CHANGE
  • CHANGE_CANCELLATION
  • CONVERSION
  • CONVERSION_CANCELLATION
  • DIVIDEND_OPTION
  • DIVIDEND_OPTION_CANCELLATION
  • DIVIDEND_REINVESTMENT
  • DIVIDEND_REINVESTMENT_CANCELLATION
  • DUST_CLEANUP
  • DUTCH_AUCTION
  • DUTCH_AUCTION_CANCELLATION
  • INTERMEDIATE_SECURITIES_DISTRIBUTION
  • INTERMEDIATE_SECURITIES_DISTRIBUTION_CANCELLATION
  • MERGER
  • MERGER_CANCELLATION
  • NON_OFFICIAL_OFFER
  • NON_OFFICIAL_OFFER_CANCELLATION
  • ODD_LOT_SALE
  • ODD_LOT_SALE_CANCELLATION
  • ORDER_EXECUTION
  • ORDER_EXECUTION_CANCELLATION
  • OTHER_EVENT
  • OTHER_EVENT_CANCELLATION
  • PARI_PASSU
  • PARI_PASSU_CANCELLATION
  • PRIORITY_ISSUE
  • PRIORITY_ISSUE_CANCELLATION
  • REPURCHASE_OFFER
  • REPURCHASE_OFFER_CANCELLATION
  • REVERSE_STOCK_SPLIT
  • REVERSE_STOCK_SPLIT_CANCELLATION
  • RIGHTS_ISSUE
  • RIGHTS_ISSUE_CANCELLATION
  • SECURITIES_TRANSFER
  • SECURITIES_TRANSFER_CANCELLATION
  • SPIN_OFF
  • SPIN_OFF_CANCELLATION
  • STOCK_DIVIDEND
  • STOCK_DIVIDEND_CANCELLATION
  • STOCK_SPLIT
  • STOCK_SPLIT_CANCELLATION
  • TENDER
  • TENDER_CANCELLATION
  • WORTHLESS
  • WORTHLESS_CANCELLATION
referencesarray

required

updated_atstring

required

Date and time when the resource was last updated. RFC 3339-5, ISO8601 UTC

Format
date-time
value_datestring

required

Transaction value date and time. RFC 3339-5, ISO8601 UTC

Format
date-time
webhook_idstring

required

Webhook unique identifier.

Format
uuid

Responses

Request examples

{
  "id": "543c9996-eff6-11ed-a05b-0242ac120003",
  "created_at": "2023-01-01",
  "type": "SECURITY_TRANSACTION.EXECUTED",
  "object": {
    "id": "6dc9fbca-8835-11ed-a217-2eabd0c03f8a",
    "created_at": "2023-01-01",
    "updated_at": "2023-01-01",
    "account_group_id": "6409e3f2-8835-11ed-96a4-2eabd0c03f8a",
    "account_id": "db6290bb-1491-45bf-aafe-262dad59d497",
    "booking_date": "2023-01-01",
    "delta": {
      "amount": "-2.5234543879"
    },
    "instrument": {
      "isin": "US0378331005",
      "uuid": "ccb86937-8a39-4160-8d33-85bf9e902321"
    },
    "references": [
      {
        "id": "7579a672-8835-11ed-9455-2eabd0c03f8a",
        "type": "ORDER_EXECUTION"
      },
      {
        "id": "1f5758d3-1ef7-4b4c-96ec-6b3da2bf1a8a",
        "type": "ORDER"
      }
    ],
    "type": "ORDER_EXECUTION",
    "value_date": "2023-01-01"
  },
  "webhook_id": "3ae8a8a4-eff6-11ed-a05b-0242ac120003"
}

Response examples

Request has been processed successfully.

Empty response