Skip to main content
DELETE
/
title
/
{id}
Delete a title entry
curl --request DELETE \
  --url https://dev.cardinalgray.com/title/{id} \
  --header 'Authorization: Bearer <token>'
{
  "statusCode": 200,
  "message": "Entries deleted successfully",
  "entryId": "550e8400-e29b-41d4-a716-446655440000",
  "deletedCount": 3
}

Documentation Index

Fetch the complete documentation index at: https://docs.cardinalgray.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Unique identifier of the title entry

Response

Title entry and related entries deleted successfully

statusCode
number

HTTP status code (200 for successful deletion)

Example:

200

message
string

Confirmation message indicating successful deletion

Example:

"Entries deleted successfully"

entryId
string<uuid>

The ID of the primary deleted entry

Example:

"550e8400-e29b-41d4-a716-446655440000"

deletedCount
integer

Total number of entries deleted (including duplicates)

Example:

3