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
Name | In | Type | Required | Description |
---|---|---|---|---|
id | path | string | true | A unique integer value identifying this legal page |
accept | body | string | false | For accept valid string values are: ('true', 'on', '1'); for not accept valid string values are: ('false', 'off', '0') or None |
Example Request
- JavaScript
- Bash
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);
});
# You can also use wget
curl -X POST /api/v2/legal_page/{id}/ack/ \
-H 'Content-Type: application/x-www-form-urlencoded' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer {access_token}'
Responses
Status | Meaning | Description | Schema |
---|---|---|---|
200 | OK | Response status code | Legal Page Ack |