expensesettings
Parameter | Type | I/O | Description |
---|---|---|---|
IN | Parameters described in Overview | ||
company | String | IN | Identifier for the company context |
ModelStructure | String | IN | Identifier for model |
style | String | IN | Identifier for model style |
Response | XML / JSON | OUT | An XML structure / JSON string containing expense settings |
Description
Calling the control API with a modelstructure of expensesettings retrieves a list of settings for expenses.
Return Values
Response – List of expense settings for the user/company context.
The structure of the response is:
<companies morepages="False" totalpages="1" totalrows="1">
<company control_uuid="F1BECF29058A4FC28437728721F89372">
<control_workflowintegrated>true</control_workflowintegrated>
</company>
</companies>
{
"responsecode": 1,
"responsestatus": "OK",
"errorcode": 0,
"errormessage": "",
"totalrows": 1,
"totalpages": 1,
"responsemessage": "",
"pagerows": 0,
"pagenumber": 1,
"success": true,
"data": [
{
"control_uuid": "F1BECF29058A4FC28437728721F89372",
"control_workflowintegrated": true
}
]
}