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/settings/menu |
Method(s): | get |
Response Formats: | JSON, XML |
Description: | This method allows you to retrieve all the settings corresponding to the main menu. |
Parameters
Name | Type | Description |
---|---|---|
JournalEnabled | Boolean | Flag to indicate whether journal is enabled or not for the user. True indicates journal is enabled for user account. |
ProjectsEnabled | Boolean | Flag to indicate whether project is enable or not for the user. True indicates project is enabled for user account. |
ProjectText | String | User’s customized name for project. |
QuoteText | String | User’s customized name for quote |
GET Operation
Returns settings for rendering main menu.URL : /settings/menu
Example response for GET of menu settings
{
"JournalEnabled": true,
"ProjectsEnabled": true,
"ProjectText": "Project",
"QuoteText": "Quotess"
}