Skip to main content
Use this endpoint to permanently remove an observation from your tenant. Returns 204 No Content on success.

Request

DELETE https://api.clinikapi.com/v1/observations/{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 observation to delete.

Response

Returns 204 No Content with an empty body on success.

Examples

curl

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

TypeScript SDK

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

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

await client.observations.delete("obs_ghi012");