(Beta) Bank deposit

All endpoints, response examples, and explained transaction behaviors listed in this section are in the beta phase of development. Further changes, which may break backward compatibility, can be expected. Please consider this information when integrating related endpoints into your system.

{
  "data": {
    "attributes": {
      "amount": "1.00",
      "createdAt": "2024-12-11T16:52:08.277Z",
      "reference": "a69a139e-97d5-4d3a-b89a-706b165e35b3",
      "simplifiedState": "pending",
      "transactionType": "BankDepositTransaction"
    },
    "id": "b80d2219-0aff-4ba8-877b-ce9a880599a9",
    "relationships": {
      "account": {
        "meta": {
          "included": false
        }
      },
      "transactionDetails": {
        "data": {
          "id": "b80d2219-0aff-4ba8-877b-ce9a880599a9",
          "type": "bank_deposit_transactions"
        }
      }
    },
    "type": "transactions"
  },
  "included": [
    {
      "attributes": {
        "amount": "1.00",
        "createdAt": "2024-12-11T16:52:08.227Z",
        "currency": "EUR",
        "state": "confirmed",
        "updatedAt": "2024-12-11T16:52:08.227Z"
      },
      "id": "b80d2219-0aff-4ba8-877b-ce9a880599a9",
      "relationships": {
        "account": {
          "data": {
            "id": "acd50522-de49-4aaa-a183-dc046ff27fd5",
            "type": "accounts"
          }
        }
      },
      "type": "bank_deposit_transactions"
    },
    {
      "attributes": {
        "balance": "25605.66",
        "currencyCode": "EUR",
        "currencyType": "fiat"
      },
      "id": "acd50522-de49-4aaa-a183-dc046ff27fd5",
      "relationships": {
        "company": {
          "meta": {
            "included": false
          }
        },
        "networks": {
          "meta": {
            "included": false
          }
        }
      },
      "type": "accounts"
    }
  ],
  "meta": {}
}

Last updated