Update

ParameterMandatoryDescriptionExamplesMore Info
APIYesThe API areaexpenselines.json
GeneralYesParameters described in overviewuser=user&password=userStructure of an API call
ActionYesThe action to performaction=update
InputYesJSON stringSee below
JSON InputMandatoryDescriptionExamples
IdentifierYesExpense sheet ID or UUID"expenselineInternal":2288
Update dataYesData to update on expense sheet"expenselineTotal":100

Example request:

http://<SERVER>/jsonapi/expenselines.json?user=user&password=user&version=3.9&action=update&input={
  "data": [
    {
      "expenselineInternal": 2288,
      "expenselineTotal": 100
    }
  ]
}

Example response:

{
  "responsecode": 1,
  "responsestatus": "OK",
  "errorcode": 0,
  "errormessage": "",
  "responsemessage": "data processed successfully.",
  "warningmessage": "",
  "success": true
}