Skip to main content
Use this endpoint to permanently remove a practitioner record from your tenant. The deletion is irreversible. Returns 204 No Content on success with no response body.

Request

DELETE https://api.clinikapi.com/v1/practitioners/{id}

Headers

x-api-key
string
required
Your ClinikAPI secret key (clk_live_* or clk_test_*).

Path Parameters

id
string
required
The ID of the practitioner to delete (e.g. prac_xyz789).

Response

Returns 204 No Content with an empty body on success. If the practitioner does not exist or does not belong to your tenant, the API returns 404 Not Found.

Examples

curl

curl -X DELETE https://api.clinikapi.com/v1/practitioners/prac_xyz789 \
  -H "x-api-key: clk_live_abc123"

TypeScript SDK

import { ClinikAPI } from "@clinikapi/sdk";

const client = new ClinikAPI({ apiKey: "clk_live_abc123" });

await client.practitioners.delete("prac_xyz789");