Skip to main content

Delete a checklist

Delete a Check List you own. The API returns the deleted document in { data }. An invalid ObjectId, a missing list, or a list owned by another client returns 404.

Delete does not run lookups and does not spend credits. Catalog history and SmartBatch jobs that used the same feature codes are not removed.

Endpoint

DELETE https://api.verifik.co/v2/check-lists/{id}

Removes the list from the client's collection and returns the document that was deleted. After this call, GET / PUT / DELETE on the same id return 404.

Headers

NameValue
Content-Typeapplication/json
AuthorizationBearer <token>

The token must be a client JWT. A token without clientId returns 403.

Parameters

NameTypeRequiredDescription
idstringYesCheck List ObjectId from create or list.

Request

const fetch = require("node-fetch");

async function run() {
const id = "6aa224c87034a338385c28c0";
const res = await fetch(`https://api.verifik.co/v2/check-lists/${id}`, {
method: "DELETE",
headers: {
"Content-Type": "application/json",
Authorization: `Bearer ${process.env.VERIFIK_TOKEN}`,
},
});
console.log(await res.json());
}

run();

Response

{
"data": {
"_id": "6aa224c87034a338385c28c0",
"client": "507f1f77bcf86cd799439013",
"name": "KYC Colombia",
"countries": ["Colombia", "Chile"],
"domains": ["people"],
"featureCodes": ["co-cedula"],
"status": "draft",
"createdAt": "2026-09-10T03:32:00.000Z",
"updatedAt": "2026-09-10T03:33:00.000Z"
}
}

Notes

  • The 200 body is the deleted document, not an empty object.
  • Invalid ObjectIds and lists from other clients both return 404 (check_list_not_found).
  • Delete does not spend credits and does not cancel catalog or SmartBatch work.
  • There is no execute-checklist endpoint. See Check List and SmartBatch.