Skip to main content

Get a Specific Legal Page

This endpoint retrieves a specific legal page.

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/{id}/

Parameters

NameInTypeRequiredDescription
idpathstringtrueA unique integer value identifying this legal page

Example Request

const headers = {
'Accept':'application/json',
'Authorization': 'Bearer {access_token}'
};

fetch('/api/v2/legal_page/{id}/',
{
method: 'GET',
headers: headers
})
.then(function(res) {
return res.json();
}).then(function(body) {
console.log(body);
});

Responses

StatusMeaningDescriptionSchema
200OKResponse status codeLegal Page