Skip to main content
DELETE
/
contact-properties
/
name
/
{propertyName}
curl --request DELETE \
  --url https://api.autosend.com/v1/contact-properties/name/planTier \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "message": "Contact property deleted successfully"
}
curl --request DELETE \
  --url https://api.autosend.com/v1/contact-properties/name/planTier \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "message": "Contact property deleted successfully"
}

Authorizations

Authorizations
string | header
required
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

propertyName
string
required
The name of the contact property to delete.

Response

Contact property deleted successfully
success
boolean
Indicates whether the request was successful.
message
string
Confirmation message.Example: "Contact property deleted successfully"

Error Responses

404 - Contact property not found
object
Returned when no contact property with the given name exists on the project.
{
  "success": false,
  "error": {
    "message": "Contact property not found",
    "code": "CONTACT_PROPERTY_NOT_FOUND",
    "status": 404
  }
}