This s a documentation page for our shiny new REST API - you weren't meant to find it. This API isn't ready for public use yet. We're chopping and changing it a LOT as we grow it. So if you build something that uses it then it's very likely to break in a future update. Don't say you weren't warned!
URL: | https://api.kashflow.com/v2/bank-icons |
Method(s): | get |
Response Formats: | JSON, XML |
Description: | This API responds with list of bank icons and their names to be shown against any bank |
Parameters
Name | Type | Description |
---|---|---|
Id | Numeric | Unique id assigned to a bank icon |
Name | String | Name of the Bank |
FileName | Boolean | File name of the logo image. These files will be located at “/images/bankIcons/<FileName>” |
GET Operation
Returns list of bank icons.URL : /bankicons
Example response for GET of Bank Icons
[{
"Id": 1,
"FileName": "bank-of-scotland.png",
"Name": "Bank of Scotland"
}, {
"Id": 2,
"FileName": "",
"Name": "Cash"
}, {
"Id": 3,
"FileName": "hsbc_32.png",
"Name": "HSBC"
}, {
"Id": 4,
"FileName": "amex_32.png",
"Name": "Amex"
}, {
"Id": 5,
"FileName": "barclays_32.png",
"Name": "Barclays"
}]