GET /tasks/projects
Description
Gets data on all tasks of the specified project and returns a json object with an array of all tasks objects for this specified project
The route handles the GET request made to the /tasks/projects/{id}
path.
HTTP method | Route | Query parameter |
---|---|---|
GET | /tasks/projects | id |
Query parameters
The following parameter is sent in the request line:
Name | Type | Description |
---|---|---|
id | string | Required. The ID of the project for which tasks are requested. |
Payload
No payload is required.
Response
The route returns a json object with an array that contains data for all tasks of the specified project. You can find an example of the object that is returned here: tasks.
The HTTP status code shows whether the request succeeds (response.status == 200) or fails (response.status == 500).
Related articles: