Retreive a list of tasks from your administration. Use offset and limit parameters to retrieve more tasks over multiple calls. It is also possible to retreive only tasks relating to one project by adding Project and SelectProjectBy.
- Request
- Response
Parameters
CURL Example
1 |
curl -X GET -H "Content-Type: application/json" -H "ApiKey: b7d343Bnhd436f3ec3bd3504582" -H "Username: [email protected]" "https://rest-api.silvasoft.nl/rest/listtaks" |
Parameters
Response JSON Example
The response order can vary from the parameter order above
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
[ { "AssignedTo": "John Doe", "Status": "Open", "ProjectPhase": "Algemene projectfase", "Description": "Example project", "StartDateTime": 1746939600, "ProjectName": "Test project", "EndDateTime": 1746943200, "ProjectNumber": 3, "Title": "test task by project", "CreatedOn": 1678362196, "ChangedOn": 1678362211 }, { "AssignedTo": "Jane Doe", "Status": "Open", "ProjectPhase": "", "Description": null, "StartDateTime": 1676469600, "ProjectName": null, "EndDateTime": 1676473200, "ProjectNumber": null, "Title": "Create test data", "CreatedOn": 1676459189, "ChangedOn": 1676459189 } ] |