Get All Last Revisions
This endpoint retrieves all last revisions of legal pages.
info
This operation does not require authentication. If the user is authenticated the 'ack' field will be added to the response with the user's ack status for that document.
HTTP Request
GET /api/v2/legal_page/last_revisions/
Example Request
- JavaScript
- Bash
const headers = {
'Accept':'application/json'
};
fetch('/api/v2/legal_page/last_revisions/',
{
method: 'GET',
headers: headers
})
.then(function(res) {
return res.json();
}).then(function(body) {
console.log(body);
});
# You can also use wget
curl -X GET /api/v2/legal_page/last_revisions/ \
-H 'Accept: application/json'
Responses
Status | Meaning | Description | Value/Schema |
---|---|---|---|
200 | OK | Response status code | list(Legal Page) |