Skip to main content

Get a Specific User Ack

This endpoint retrieves a specific user ack.

info

This operation require authentication.

HTTP Request

GET /api/v2/legal_page/{id}/user_ack/

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}/user_ack/',
{
method: 'GET',
headers: headers
})
.then(function(res) {
return res.json();
}).then(function(body) {
console.log(body);
});

Responses

StatusMeaningDescriptionSchema
200OKResponse status codeLegal Page Ack