Versions Compared
Key
- This line was added.
- This line was removed.
- Formatting was changed.
Method Objective
The method allows changing the status of the current user's subscriptions to notification channels.
Syntax and parameters
Code Block | ||||
---|---|---|---|---|
| ||||
pcsdk.subscriptions("manage", params); |
Name | Type | Requirement | Description |
---|---|---|---|
params | Object | required | Object with request parameters. |
Request parameters
Name | Type | Requirement | Description | ||
---|---|---|---|---|---|
string | optionally | The current user's Email. | |||
phone | string | optionally | The current user's phone in full international format.
| ||
external_id | string | optionally | Store side user ID. | ||
loyalty_id | string | optionally | The Loyalty Program user ID (loyalty card). | ||
telegram_id | string | optionally | Telegram User ID. | ||
email_bulk | boolean | optionally | It changes the current user's subscription status to bulk email campaigns. | ||
email_chain | boolean | optionally | It changes the current user's subscription status to triggered email campaigns. | ||
email_transactional | boolean | optionally | It changes the current user's subscription status for transactional email campaigns.
| ||
sms_bulk | boolean | optionally | It changes the current user's subscription status to bulk SMS campaigns. | ||
sms_chain | boolean | optionally | It changes the current user's subscription status to triggered SMS campaigns. | ||
sms_transactional | boolean | optionally | It changes the current user's subscription status for transactional SMS campaigns.
| ||
web_push_bulk | boolean | optionally | It changes the current user's subscription status to bulk webpush campaigns. | ||
web_push_chain | boolean | optionally | It changes the current user's subscription status to triggered webpush campaigns. | ||
web_push_transactional | boolean | optionally | It changes the current user's subscription status for transactional webpush campaigns.
| ||
mobile_push_bulk | boolean | optionally | It changes the current user's subscription status to bulk app campaigns. | ||
mobile_push_chain | boolean | optionally | It changes the current user's subscription status to triggered app campaigns. | ||
mobile_push_transactional | boolean | optionally | It changes the current user's subscription status for transactional app campaigns.
|
Examples of use
Code Block | ||||
---|---|---|---|---|
| ||||
pcsdk.subscriptions("manage", { email: "john.doe@examplestore.com", phone: "+100000000000", email_bulk: true, email_chain: true, email_transactional: true, sms_bulk: true, sms_chain: true, sms_transactional: true, web_push_bulk: true, web_push_chain: true, web_push_transactional: true, mobile_push_bulk: true, mobile_push_chain: true, mobile_push_transactional: true }); |
Code Block | ||||
---|---|---|---|---|
| ||||
pcsdk.subscriptions("manage", { email: "john.doe@examplestore.com", email_bulk: true, email_chain: false, email_transactional: true, }); |
Code Block | ||||
---|---|---|---|---|
| ||||
pcsdk.subscriptions("manage", { phone: "+100000000000", sms_bulk: false, sms_chain: false, sms_transactional: true }); |
Code Block | ||||
---|---|---|---|---|
| ||||
pcsdk.subscriptions("manage", { email_transactional: true, sms_transactional: true }); |
Column | ||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Page Navigation
Related Pages
|