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
Name | In | Type | Required | Description |
---|---|---|---|---|
id | path | string | true | A unique integer value identifying this media |
ip | body | string | false | The ip of the client, if not passed it will be extracted server side from the request |
Example Request
- JavaScript
- Bash
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);
});
# You can also use wget
curl -X POST /api/v2/media/{id}/click/ \
-H 'Accept: application/json' \
-H 'Authorization: Bearer {access_token}'
Responses
Status | Meaning | Description | Schema |
---|---|---|---|
204 | No Content | Response status code | None |