Returns the list of task descriptions.
| Parameter | Mandatory | Description | Examples | More Info | 
|---|---|---|---|---|
| API | Yes | The API area | tspending.json | |
| General | Yes | Parameters described in overview | see overview | Structure of an API call | 
| Company | Yes | The company number | company=1 | |
| Action | Yes | The action to perform | action=taskdescslist | 
Example request:
http://<SERVER>/jsonapi/tspending.json?user=user&password=user&version=4&action=taskdescslist&company=1Example 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"
    }
  ]
}