Skip to main content
DELETE
/
{resource}
/
{id}
Delete a resource
curl --request DELETE \
  --url http://localhost:5001/api/v1/{resource}/{id} \
  --header 'Authorization: <api-key>'
{
  "success": false,
  "statusCode": 400,
  "message": "Validation Errors.",
  "errors": {
    "email": "email should not be empty"
  },
  "timestamp": "2026-02-06T12:00:00.000Z",
  "path": "/api/v1/example"
}

Authorizations

Authorization
string
header
required

Enter your API key with the Bearer prefix — e.g. Bearer sk_live_xxx (production) or Bearer sk_test_xxx (sandbox)

Path Parameters

resource
enum<string>
required
Available options:
contact,
lead,
deal,
meeting
id
string
required

Provider-native ID of the record

Example:

"12345"

Query Parameters

provider
string
required
Example:

"hubspot"

endUserId
string
required
Example:

"user-001"

Response

Resource deleted successfully