StrideOps.aiStrideOps.ai Documentation
DocumentationAPI Reference
Contacts

DELETE Delete contact

Soft-delete a contact.

Endpoint

DELETE https://api.strideops.ai/v1/contacts/{id}

Soft-delete. The contact is hidden from listings, exports, and segmentation, but kept in the database for 30 days for audit and restoration. After 30 days, a cron job permanently removes the record.

To purge immediately for privacy compliance (CCPA / GDPR), use the dashboard's Settings → Privacy → Erase contact flow, which deletes the record + all dependent rows (calls, messages, bookings) in a single transaction.

Path parameters

ParamTypeNotes
iduuidContact id.

Response

204 No Content on success. No body.

Example

curl -X DELETE https://api.strideops.ai/v1/contacts/ctc_8f3e… \
  -H "Authorization: Bearer $STRIDE_API_KEY"

On this page