Klaviyo · Schema
ProfileSubscriptionDeleteQueryResourceObject
MarketingEmailSMSCustomer DataEcommerceAutomation
Properties
| Name | Type | Description |
|---|---|---|
| type | object | |
| attributes | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ProfileSubscriptionDeleteQueryResourceObject",
"title": "ProfileSubscriptionDeleteQueryResourceObject",
"type": "object",
"properties": {
"type": {
"$ref": "#/components/schemas/ProfileEnum"
},
"attributes": {
"type": "object",
"properties": {
"email": {
"description": "The email address to unsubscribe.",
"type": "string",
"example": "[email protected]",
"nullable": true
},
"phone_number": {
"description": "The phone number to unsubscribe. This must be in E.164 format.",
"type": "string",
"example": "+15005550006",
"nullable": true
},
"subscriptions": {
"description": "Specifies the channel and message types that the profile will have consent revoked from.",
"$ref": "#/components/schemas/UnsubscriptionChannels"
}
},
"required": [
"subscriptions"
]
}
},
"required": [
"type",
"attributes"
]
}