Working with the Aggregation task API
Overview
Check the list of available endpoints and methods in the Aggregation task API:
Endpoints and methods | Description |
---|---|
status:GET | Get information about all the aggregation tasks in a domain. |
status:GET | Get information about a specific aggregation task. |
status:GET | Get the measures of an aggregation task. |
status:POST | Create a new aggregation task. |
status:PUT | Update an aggregation task. |
status:PUT | Stop an aggregation task. |
status:PUT | Start a task and add aggregated data from a specific date. |
status:PUT | Resume a stopped aggregation task. |
status:DELETe | Delete an aggregation task. |
Endpoints and methods
GET /aggrtasks/{domain}
Get information about all the aggregation tasks in a domain.
To perform this request, your Devo user must have at least the Aggregation tasks (view) permission assigned. Learn more about roles and permissions in Role permissions.
GET /aggrtasks/{domain}/{aggrId}
Get information about a specific aggregation task in a given domain.
To perform this request, your Devo user must have at least the Aggregation tasks (view) permission assigned. Learn more about roles and permissions in Role permissions.
GET /aggrtasks/{domain}/{aggrId}/measures
Get the measures of an aggregation task.
To perform this request, your Devo user must have at least the Aggregation tasks (view) permission assigned. Learn more about roles and permissions in Role permissions.
POST /aggrtasks/{domain}
Create a new aggregation task.
To perform this request, your Devo user must have at least the Aggregation tasks (manage) permission assigned. Learn more about roles and permissions in Role permissions.
PUT /aggrtasks/{domain}/{aggrId}
Update a specific aggregation task.
To perform this request, your Devo user must have at least the Aggregation tasks (manage) permission assigned. Learn more about roles and permissions in Role permissions.
PUT /aggrtasks/{domain}/{aggrId}/stop
Stop an aggregation task.
To perform this request, your Devo user must have at least the Aggregation tasks (manage) permission assigned. Learn more about roles and permissions in Role permissions.
PUT /aggrtasks/{domain}/{aggrId}/start
Start a new task and add aggregated data from a specific date.
To perform this request, your Devo user must have at least the Aggregation tasks (manage) permission assigned. Learn more about roles and permissions in Role permissions.
PUT /aggrtasks/{domain}/{aggrId}/resume
Resume an aggregation task from the date it was stopped.
To perform this request, your Devo user must have at least the Aggregation tasks (manage) permission assigned. Learn more about roles and permissions in Role permissions.
DELETE /aggrtasks/{domain}/{aggrId}
Delete an aggregation task. This will permanently remove all the tasks and associated metadata.
To perform this request, your Devo user must have at least the Aggregation tasks (manage) permission assigned. Learn more about roles and permissions in Role permissions.