Skip to main content
DELETE
/
api
/
profiles
/
{id}
/
traits
/
{key}
Delete Trait
curl --request DELETE \
  --url https://api.example.com/api/profiles/{id}/traits/{key}
{
  "success": true
}

Overview

Removes a trait from a user profile.

Path Parameters

id
string
required
Profile ID
key
string
required
Trait key to delete

Response

{
  "success": true
}

Example

curl -X DELETE https://api.yourserver.com/api/profiles/user-123/traits/name \
  -H "Authorization: Bearer gp_your_key"