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/categoryicons |
Method(s): | get |
Response Formats: | JSON, XML |
Description: | This method allows you to retrieve the list of quote category icons. |
Parameters
Name | Type | Description |
---|---|---|
Id | Numeric | Unique id of the category icon |
Name | String | Name of the category icon |
Path | String | Path of the image file for the category icon |
GET Operation
List of quote category icons can be fetched using the following URL –URL : /categoryicons
Example Response for GET of quote category icons
[
{
"Id": 1,
"Name": "Red Flag 1",
"Path": "redflag1.gif"
},
{
"Id": 2,
"Name": "Purple Flag 1",
"Path": "purpleflag1.gif"
},
{
"Id": 3,
"Name": "Green Flag 1",
"Path": "greenflag1.gif"
},
{
"Id": 4,
"Name": "Yellow Flag 1",
"Path": "yellowflag1.gif"
}
]