Delete Fingerprint
Delete a fingerprint
Endpoint
DELETE /fp/{id}
Path parameters
id
string
required
Example request
js
const id = "22de14c6-ac0a-4919-81d2-eb5bf571e8a1";
const response = await fetch(`https://api.ateratti.com/fp/${id}`, {
method: "DELETE",
headers: { "X-Api-Key": "Your API key" },
});
const result = await response.json();
console.log(result);Example response
200 OK
json
{
"message": "Resource deleted successfully"
}404 Not Found
json
{
"message": "Fingerprint with the specified ID does not exist"
}Error responses
| Code | Description |
|---|---|
| 400 Bad Request | The request is invalid |
| 404 Not Found | There's no fingerprint with the specified ID |