Working with Activeboards using the API
Overview
Check the list of available endpoints and methods in the Activeboards API:
Endpoints and methods | Description |
---|---|
GETÂ | Get general information about all the Activeboards in a domain. |
GET | Get detailed information about a specific Activeboard. |
GET | Get general information about the Activeboard set as default. |
POSTÂ | Create a new Activeboard. |
POSTÂ | Clone an Activeboard. |
PUT | Update an Activeboard. |
PATCHÂ | Modify the scope of access of an Activeboard. |
PATCHÂ | Update the tags assigned to an Activeboard. |
PATCHÂ | Mark or unmark an Activeboard as a favorite. |
PATCH | Mark or unmark an Activeboard as default. |
DELETe | Delete an Activeboard. |
Endpoints and methods
GET /activeboards
Get information about all the Activeboards in a domain. This does not return information about the widgets and content in the Activeboards, only general data.
To perform this request, your Devo user must have at least the Activeboards (view) permission assigned. Learn more about roles and permissions in Role permissions.
GET /activeboards/{id}
Get detailed information about a specific Activeboard in a domain, including information about the widgets it contains.
To perform this request, your Devo user must have at least the Activeboards (view) permission assigned. Learn more about roles and permissions in Role permissions.
GET /activeboards/default
Get information about the default Activeboard. This does not return information about the widgets and content in the Activeboard, only general data.
POST /activeboards
Create a new Activeboard.
POST /activeboards/{id}/clone
Clone an Activeboard.
PUT /activeboards/{id}
Update a specific Activeboard.
PATCH /activeboards/{id}/privacy
Modify the scope of access of an Activeboard. You can mark your Activeboards as visible to make them shareable, or make them private.
PATCH /activeboards/{id}/tags
Update the tags assigned to an Activeboard.
PATCH /activeboards/{id}/favorite
Mark or unmark an Activeboard as a favorite. Favorite Activeboards are an easy way to find the Activeboards you use more frequently.
PATCH /activeboards/{id}/default
Mark or unmark an Activeboard as default. The default Activeboard is the one displayed when you access the Activeboards area in Devo.
DELETE /activeboards/{id}
Delete an Activeboard.
Â