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
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

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

I