{ "opencollection": "1.0.0", "info": { "name": "Velaris Public Activity Tasks API", "version": "1.0.0" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Tasks", "type": "folder" }, "items": [ { "info": { "name": "Tasks", "type": "http" }, "http": { "method": "GET", "url": "https://api.euw1.velaris.io/project-mgt/tasks" }, "docs": "
This endpoint sends an HTTP GET request to retrieve a list of tasks from the project management system. The request can include query parameters to paginate the response.
\npage (integer) - The page number for the task list. This parameter is used to navigate through the paginated results.
pageSize (integer) - The number of tasks to return per page. This helps in controlling the volume"
},
{
"info": {
"name": "Archive Task",
"type": "http"
},
"http": {
"method": "POST",
"url": "https://api.euw1.velaris.io/project-mgt/tasks",
"body": {
"type": "json",
"data": "{}"
}
},
"docs": "
This endpoint allows the client to archive an existing task identified by its unique ID. Archiving a task is useful for managing the task lifecycle and keeping the task list organized without permanently deleting tasks.
\nThe request must be sent as a JSON object with the following parameter:
\ntaskId (number): The ID of the task to be archived.This endpoint retrieves a specific task by its ID, allowing users to access detailed information about the task's attributes and status.
\nPath Parameter:
\nsrcid-1: The unique identifier for the task you want to retrieve.This endpoint allows you to update an existing task in the project management system. By sending a PUT request to the specified URL, you can modify the details of a task identified by its source ID.
\n200 OK: The task was successfully updated.
\n400 Bad Request: The request body is malformed or missing required fields.
\n404 Not Found: The ta" }, { "info": { "name": "Get Task by Source and Source ID", "type": "http" }, "http": { "method": "GET", "url": "https://api.euw1.velaris.io/project-mgt/tasks/extid-srcid-5" }, "docs": "
This endpoint retrieves a specific task by its external ID and source. It is designed to provide detailed information about the task, including its status, priority, and associated metadata.
\nPath Parameter:
\nextid-srcid-5: The unique identifier for the task you want to retrieve.