Delete a profile

Soft deletes a sender profile. The profile will be marked as deleted but data is retained. Requires admin role in the organization.

DELETE
/v3/profiles/{profileId}

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

sandbox?boolean

Sandbox flag - when true, the operation is simulated without side effects Useful for testing integrations without actual execution

Response Body

application/json

application/json

curl -X DELETE "https://example.com/v3/profiles/string" \  -H "Content-Type: application/json" \  -d '{    "sandbox": false  }'
Empty
Empty
Empty
{
  "success": false,
  "data": null,
  "error": {
    "code": "RESOURCE_014",
    "message": "Profile not found",
    "details": null,
    "doc_url": "https://docs.sent.dm/reference/api/error-catalog"
  },
  "meta": {
    "request_id": "req_7X9zKp2jDw",
    "timestamp": "2026-05-21T12:05:03.7544606+00:00",
    "version": "v3"
  }
}
{
  "success": false,
  "data": null,
  "error": {
    "code": "INTERNAL_001",
    "message": "Failed to delete profile. Please contact support with request ID: req_7X9zKp2jDw",
    "details": null,
    "doc_url": "https://docs.sent.dm/reference/api/error-catalog"
  },
  "meta": {
    "request_id": "req_7X9zKp2jDw",
    "timestamp": "2026-05-21T12:05:03.754463+00:00",
    "version": "v3"
  }
}