(Beta) Bank withdrawal

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.01",
      "createdAt": "2024-12-11T16:59:55.830Z",
      "reference": null,
      "simplifiedState": "completed",
      "transactionType": "BankWithdrawalTransaction"
    },
    "id": "ff8b262c-0704-4e54-84fa-e0545b73badf",
    "relationships": {
      "account": {
        "meta": {
          "included": false
        }
      },
      "transactionDetails": {
        "data": {
          "id": "ff8b262c-0704-4e54-84fa-e0545b73badf",
          "type": "bank_withdrawal_transactions"
        }
      }
    },
    "type": "transactions"
  },
  "included": [
    {
      "attributes": {
        "absorbFees": true,
        "amount": "1.01",
        "bankBic": "GUPULT22XXX",
        "bankName": "GURU PAY",
        "beneficiaryName": "Acme",
        "createdAt": "2024-12-11T16:59:55.803Z",
        "currency": "EUR",
        "fee": "0.01",
        "iban": "LT563400023810000822",
        "payAmount": "1.00",
        "paymentStatus": "created",
        "reference": "jj3",
        "state": "completed",
        "updatedAt": "2024-12-11T16:59:55.803Z"
      },
      "id": "ff8b262c-0704-4e54-84fa-e0545b73badf",
      "relationships": {
        "account": {
          "data": {
            "id": "acd50522-de49-4aaa-a183-dc046ff27fd5",
            "type": "accounts"
          }
        },
        "bankAccount": {
          "data": {
            "id": "a754cd82-74a0-4c1c-a832-e83445bce2c5",
            "type": "bank_accounts"
          }
        }
      },
      "type": "bank_withdrawal_transactions"
    },
    {
      "attributes": {
        "bankBic": "GUPULT22XXX",
        "bankName": "GURU PAY",
        "beneficiaryName": "Acme",
        "createdAt": "2024-12-07T11:42:27.571Z",
        "currencyCode": "EUR",
        "iban": "LT563400023810000822",
        "updatedAt": "2024-12-07T11:42:27.571Z"
      },
      "id": "a754cd82-74a0-4c1c-a832-e83445bce2c5",
      "type": "bank_accounts"
    },
    {
      "attributes": {
        "balance": "25604.64",
        "currencyCode": "EUR",
        "currencyType": "fiat"
      },
      "id": "acd50522-de49-4aaa-a183-dc046ff27fd5",
      "relationships": {
        "company": {
          "meta": {
            "included": false
          }
        },
        "networks": {
          "meta": {
            "included": false
          }
        }
      },
      "type": "accounts"
    }
  ],
  "meta": {}
}

Last updated