List all tasks
List all organisation tasks
Get all organisation tasks
GET https://<baseurl> /v1/organization/tasks/list/@assetUUID/@userUUID
Path Parameters
Name
Type
Description
assetUUID
string
Asset UUID
userUUID
string
User UUID
Headers
Name
Type
Description
Authentication
string
Authentication token
#########################################################################
## success
#########################################################################
{
    "message": "success",
    "status": 200,
    "tasks": [
        {
            "id": 42,
            "uuid": "077e726b-357c-466b-a24c-091c5785e6c7",
            "title": "Test task aswathy",
            "ts": "17 Jan 2020",
            "startDate": "17 Jan 2020",
            "endDate": "26 Jan 2020",
            "status": "To Do
            "description": "ddd",
            "assignedTo": "Aswathy"
        },
        {
            "id": 45,
            "uuid": "d8899199-9315-4be3-9a26-b250e805d25e",
            "title": "dsdds",
            "ts": "20 Jan 2020",
            "startDate": "22 Jan 2020",
            "endDate": "01 Feb 2020",
            "status": "To Do",
            "description": "dsdd",
            "assignedTo": "AswathySaras"
        }
]
}
#########################################################################
## Error:No data found
#########################################################################
            
{
	"message": "error",
	"status": 400,
	"description": "No data found"
}
Last updated
Was this helpful?