API Reference
Authentication
To authenticate your API requests, you need to create a token. Once you have a token, include it in the Authorization
header, using the Token
scheme:
Endpoints
Data Captures
List Data Captures
This endpoint returns the last 50 data captures. They are sorted by ID in descending order.
The list of data captures is contained in the _embedded.captures
field.
Each capture contains links in the _links
field. There's currently only one link — to purge personal information.
The whole response itself also contains links in the _links
field.
The self
link provides the URL of the current request in the href
field.
The next
link provides the URL to get the next set of data captures in the href
field. Using the provided URLs, you can iterate through all the data captures. Once you've iterated through all of them, the whole link will become null
— not just its href
field.
It's important that you use this link instead of building the URL manually to avoid breaking your code if the pagination format changes.
Responses
Purge Personal Information
This endpoint purges personal information of the data capture with the specified {id}
.