# Here is a curl example
curl \
X GET -H "Authorization:{token}" http://localhost:8888/api/Tasks/Tree
To get the tree, you need to make a GET call to the following url :
http://localhost:8888/api/Tasks/Tree
Result example :
[
{
"filter_name": "string",
"filter_id": 0,
"parent_id": 0,
"task": [
{
"filter_name": "string",
"filter_id": 0,
"parent_id": 0
}
]
}
]
| Field | Parameter Type | Type | Description |
|---|---|---|---|
| Authorization | header | string | Add Authorization header token |