- Home [object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object]
- Manage types
- Global context and isolation
- Manage apps
- Batch actions with app items
- Manage external services
- Scripts in widgets
- Web components
- Access permissions
- Getting started with processes
- Getting started with signatures
- Getting started with file previews
- Getting started with the organizational chart
- Getting started with users and groups
-
Getting started with the
Table data type - Dynamic calculation of event type
- Use cases
-
API
- Object types
- Data types
- Global constants
- Work with apps
- Web requests
- Access permissions
- Document flow
- Live Chats
- “Code” widget
- Signatures
- Business calendars
- Integration with IP telephony
-
Integration with email marketing services
- CRM_Marketing_ActionType
- CRM_Marketing_CampaignStatus
- CRM_Marketing_CampaignType
- CRM_Marketing_DeliveryStatus
- CRM_Marketing_SubscriberStatus
- CRM_Marketing_CampaignStats
- CRM_Marketing_CreateCampaignRequest
- CRM_Marketing_CreateCampaignResponse
- CRM_Marketing_ImportTemplate
- CRM_Marketing_UnsubscribeAction
- CRM_Marketing_UpdateCampaignAction
- CRM_Marketing_UpdateCampaignStatsAction
- CRM_Marketing_UpdateDeliveryStatusAction
- CRM_Marketing_WebhookResult
- CRM_Marketing_Action
Update subscription status action
Action that will result in unsubscribing a person from a preferred category.
function CRM_Marketing_ParseWebhookRequest(request: FetchRequest): CRM_Marketing_WebhookResult { return { actions: [ // Unsubscribe the person with email 'user@example.com' from category '1000'. { type: CRM_Marketing_ActionType.Unsubscribe, email: 'user@ example.com', externalId: '1000', }, // Unsubscribe the person with the email user2@example.com from all the preferred categories { type: CRM_Marketing_ActionType.Unsubscribe, email: 'user2@ example.com', externalId: { all: true }, } ]; } }
Hierarchy
Properties
email
Subsciber's email to unsibscribe from preferred cateories.
externalId
ID of the preferred category in the email marketing service that the subscriber has to be unsubscribed from.
To unsubscribe a person from all the preferred categories, specify
{ all: true }
.type
Action type.
Properties