Update

Update a checklist header

ParameterMandatoryDescriptionExamplesMore Info
APIYesThe API areachecklistheader.json
GeneralYesParameters described in overviewuser=user&password=user&version=3.9Overview
ActionYesThe action to performaction=update
PositionChecklist header positionposition=
InputYesJSON stringSee below
JSON InputMandatoryDescriptionExamples
IdentifierYesChecklist UUID"checklistUuid":"B60C7E3EEFF2394E97CF4CF2965902A7"
TitleNoChecklist title"checklistTitle"=

Example request:

http://<SERVER>/jsonAPI/checklistheader.json?user=user&password=user&version=3.9&action=update&input={
  "data": [
    {
      "checklistUuid": "063B9BE7A170AF4ABE38251FF2039354",
      "checklistTitle": "Test Checklist 2"
    }
  ]
}

Example response:

{
  "responsecode": 1,
  "responsestatus": "OK",
  "errorcode": 0,
  "errormessage": "",
  "responsemessage": "data processed successfully.",
  "warningmessage": "",
  "success": true,
  "data": [
    {
      "checklistUuid": "063B9BE7A170AF4ABE38251FF2039354",
      "checklistTimestampModified": 1539605562,
      "checklistRecordVersionNumber": 6
    }
  ]
}