Skip to main content
DELETE
/
api
/
objects
/
{objectType}
Delete an object
curl --request DELETE \
  --url https://app.useitem.io/api/objects/{objectType} \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '{
  "id": 123
}'
{
  "success": true
}

Authorizations

x-api-key
string
header
required

Your organization's API key (starts with sk_live_)

Path Parameters

objectType
string
required

The object type slug. Use contacts for People, companies for Companies, or the slug of a Custom Object (e.g., deals, tickets).

Singular forms (contact, company) are also accepted.

Body

application/json
id
integer
required

Record ID to delete

Example:

123

Response

Object deleted

success
boolean
Example:

true