Skip to main content
DELETE
/
delete-card
/
{id}
Delete Card
curl --request DELETE \
  --url https://app.closerx.ai/api/delete-card/{id} \
  --header 'api_key: <api-key>'
{
  "status": "success",
  "deleted_card_id": "card_22923"
}

Authorizations

api_key
string
header
required

Path Parameters

id
string
required

The unique ID of the card to be deleted.

Example:

"card_abc123"

Response

Card successfully deleted

status
string

Indicates that the card was deleted successfully.

Example:

"success"

deleted_card_id
string

The ID of the card that was deleted.

Example:

"card_22923"