v1

latestOpenAPI 3.1.02026-07-132363652.9 MB
Banks
Admin

Update the status of top banks for a specific market

Update the status of top banks for a specific market

put/api/v1/admin/banks/top/{market}

Path parameters

marketstring required

The market code (e.g., GB, DE)

Example:GB

The market code (e.g., GB, DE)

Request body

bankNamesstring[] required
topInMarketboolean required

Whether these banks should be marked as top in the market

Example request

{
  "bankNames": [
    "Santander"
  ],
  "topInMarket": true
}

Response

Success

successboolean required

Indicates if the request was successful

Example response

{
  "success": true,
  "data": [
    {
      "id": "123e4567-e89b-12d3-a456-426614174001",
      "name": "Santander",
      "market": "GB",
      "currency": "GBP",
      "displayName": "Santander",
      "logoUrl": "https://example.com/logo.png",
      "websiteUrl": "https://www.santander.co.uk",
      "topInMarket": true
    }
  ]
}