Delete Drop

Delete your created drop.

Delete a drop you own using its dropId.
Arguments
dropId
string
Required

The main id called dropId of your Drop. You can only delete the drops you own. The account that owns the API Key must own the drop.

Sample Request
const url = "https://droplink.cc/api/v1/drop/delete";
const dropData = {
    dropId: "1df22228-f520-4433-8bcc-bde6b7b499fe",
};
try {
  const response = await fetch(url, {
    method: "POST",
    headers: {
      "Content-Type": "application/json",
      "x-api-key": "YOUR_API_KEY"
    },
    body: JSON.stringify(dropData)
  });
  if (!response.ok) {
    throw new Error(`HTTP error! Status: ${response.status}`);
  }
  const responseData = await response.json();
  console.log("Drop created successfully:", responseData);
} catch (error) {
  console.error("Error creating drop:", error);
}
Sample Response
200
"Successfully deleted your drop!"