Retrieve Annotations
List Annotations
List all annotations in a project.
get/projects/{projectId}/annotations
Query parameters
fromDatestring
The date in yyyy-mm-dd format to begin querying from. This date is inclusive.
toDatestring
The date in yyyy-mm-dd format to query to. This date is inclusive.
Response
Success
Example response
{
"status": "ok",
"results": [
{
"date": "2022-02-15 12:00:00",
"description": "Something interesting happened!",
"user": {
"first_name": "John",
"last_name": "Smith"
}
}
]
}