v51

latestOpenAPI 3.0.0MITraw.githubusercontent.com2026-07-2171334.6 KB
BankFeeds

Delete an existing feed connection

By passing in FeedConnections array object in the body, you can delete a feed connection.

post/FeedConnections/DeleteRequests

Headers

Idempotency-Keystring

This allows you to safely retry requests without the risk of duplicate processing. 128 character max.

Request body

Example request

{
  "pagination": {
    "page": 1,
    "pageSize": 10,
    "pageCount": 1,
    "itemCount": 2
  },
  "items": [
    {
      "id": "0d3cf8d-95dc-4466-8dc0-47e6d1197e28",
      "accountToken": "10000123",
      "accountNumber": "3809087654321500",
      "accountName": "Joe's Savings Account",
      "accountId": "079a88ea-276d-41fb-a1f1-366ef3e22921",
      "accountType": "BANK",
      "currency": "AUD",
      "country": "GB",
      "status": "REJECTED",
      "error": {
        "title": "Invalid Application",
        "status": 403,
        "detail": "The application has not been configured to use these API endpoints.",
        "type": "invalid-application"
      }
    }
  ]
}

Response

Success response for deleted feed connection

Example response

{
  "pagination": {
    "page": 1,
    "pageSize": 10,
    "pageCount": 1,
    "itemCount": 2
  },
  "items": [
    {
      "id": "0d3cf8d-95dc-4466-8dc0-47e6d1197e28",
      "accountToken": "10000123",
      "accountNumber": "3809087654321500",
      "accountName": "Joe's Savings Account",
      "accountId": "079a88ea-276d-41fb-a1f1-366ef3e22921",
      "accountType": "BANK",
      "currency": "AUD",
      "country": "GB",
      "status": "REJECTED",
      "error": {
        "title": "Invalid Application",
        "status": 403,
        "detail": "The application has not been configured to use these API endpoints.",
        "type": "invalid-application"
      }
    }
  ]
}