Skip to main content

Ack a Legal Page

This endpoint performs ack of a Legal Page.

info

This operation requires authentication

HTTP Request

POST /api/v2/legal_page/{id}/ack/

Parameters

NameInTypeRequiredDescription
idpathstringtrueA unique integer value identifying this legal page
acceptbodystringfalseFor accept valid string values are: ('true', 'on', '1'); for not accept valid string values are: ('false', 'off', '0') or None

Example Request

const inputBody = 'null';
const headers = {
'Content-Type':'application/x-www-form-urlencoded',
'Accept':'application/json',
'Authorization': 'Bearer {access_token}'
};

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

Responses

StatusMeaningDescriptionSchema
200OKResponse status codeLegal Page Ack