Delete Comment
Deletes a comment made on a video
PREMIUM ENDPOINT
Deletes a comment you made on a video
GET
https://kitkot.xyz/api/video/comments/delete
Deletes a comment you made on a video with specified session_key
Query Parameters
Name
Type
Description
api_key*
String
The api_key
you got when purchasing our service
session_key*
String
The session_key
you got from our login endpoint
cid*
String
The cid
you got as response when you posted the comment
{
code: 200,
msg: 'success'
}
const BASEURL = "https://kitkot.xyz/api";
const API_KEY = "my-api-key";
const session_key = "my-session-key";
const cid = "commentid";
const request = await fetch(`${BASEURL}/video/comments/delete?api_key=${API_KEY}&session_key=${session_key}&cid=${cid}`);
const response = await request.json();
console.log(response);
Last updated