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/customers/customfields |
Method(s): | get |
Response Formats: | JSON, XML |
Description: | Allows to retrieve custom fields setup for specified user. |
Parameters
Name | Type | Description |
---|---|---|
CustomTextBoxes | Array | list of names assigned to custom textboxes |
CustomCheckBoxes | Array | list of names assigned to custom checkboxes |
GET Operation
Returns names assigned to custom checkboxes and textboxes by user.URL : /customers/customfields
Example response for GET of credit list
{
"CustomCheckBoxes": ["check1", "check2"],
"CustomTextBoxes": ["field1", "fields2"]
}