-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #49 from myemma/CRM-5237
CRM-5237: Update documentation to include sms
- Loading branch information
Showing
5 changed files
with
392 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -527,6 +527,12 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli | |
<li><strong>fields</strong> (<em>dictionary</em>) – Names and values of user-defined fields to update</li> | ||
<li><strong>group_ids</strong> (<em>array of integers</em>) – Optional. Add imported members to this list of groups.</li> | ||
<li><strong>field_triggers</strong> (<em>boolean</em>) – Optional. Fires related field change autoresponders when set to <em>true</em>.</li> | ||
<li><strong>sms</strong> (<em>dictionary</em>) – Optional. sms phone number config for member</li> | ||
<ul class="first simple"> | ||
<li><strong>phone_number</strong> (<em>string</em>) – Phone Number</li> | ||
<li><strong>promotional_status</strong> (<em>string</em>) – Transactional Status</li> | ||
<li><strong>transactional_status</strong> (<em>string</em>) – Promotional Status</li> | ||
</ul> | ||
<li><strong>subscriber_consent_tracking</strong> (<em>boolean</em>) – Optional. Whether or not the user accepts tracking and analysis.</li> | ||
</ul> | ||
</td> | ||
|
@@ -550,7 +556,9 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli | |
}, | ||
"email": "[email protected]", | ||
"sms": { | ||
"phone_number": "1234567890" | ||
"phone_number": "1234567890", | ||
"promotional_status": "o", | ||
"transactional_status": "a" | ||
} | ||
} | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.