HubSpot · Schema

GdprDeleteRequest

Request body for GDPR deletion

AnalyticsCommerceContentCRMCustomer ServiceEmail MarketingMarketingMarketing AutomationOperationsSales

Properties

Name Type Description
objectId string The ID of the note to permanently delete
idProperty string The property used as the identifier
View JSON Schema on GitHub

JSON Schema

hubspot-engagement-notes-gdpr-delete-request-schema.json Raw ↑
{
  "type": "object",
  "description": "Request body for GDPR deletion",
  "properties": {
    "objectId": {
      "type": "string",
      "description": "The ID of the note to permanently delete",
      "example": "1024"
    },
    "idProperty": {
      "type": "string",
      "description": "The property used as the identifier",
      "example": "500123"
    }
  },
  "required": [
    "objectId"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "GdprDeleteRequest"
}