Task Descriptions List

Returns the list of task descriptions.

ParameterMandatoryDescriptionExamplesMore Info
APIYesThe API areatspending.json
GeneralYesParameters described in overviewsee overviewStructure of an API call
CompanyYesThe company numbercompany=1
ActionYesThe action to performaction=taskdescslist

Example request:

http://<SERVER>/jsonapi/tspending.json?user=user&password=user&version=3.9&action=taskdescslist&company=1

Example response:

{
  "responsecode": 1,
  "responsestatus": "OK",
  "errorcode": 0,
  "errormessage": "",
  "totalrows": 64,
  "totalpages": 1,
  "responsemessage": "",
  "pagerows": 0,
  "pagenumber": 1,
  "success": true,
  "data": [
    {
      "tspTaskDesc": "My task 1"
    },
    {
      "tspTaskDesc": "My Task 2"
    }
  ]
}