Skip to main content

Click a specific Media

This endpoint saves a click on a specific media using ID.

info

This operation does not require authentication, if the request is made by an authenticated user it will be saved

HTTP Request

POST /api/v2/media/{id}/click/

Parameters

NameInTypeRequiredDescription
idpathstringtrueA unique integer value identifying this media
ipbodystringfalseThe ip of the client, if not passed it will be extracted server side from the request

Example Request

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

fetch('/api/v2/media/{id}/click/',
{
method: 'POST',

headers: headers
})
.then(function(res) {
return res.json();
}).then(function(body) {
console.log(body);
});

Responses

StatusMeaningDescriptionSchema
204No ContentResponse status codeNone