Skip to main content

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 methodRouteQuery parameter
GET/tasks/projectsid

Query parameters

The following parameter is sent in the request line:

NameTypeDescription
idstringRequired. 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: