Skip to content

Commit

Permalink
Merge pull request #49 from myemma/CRM-5237
Browse files Browse the repository at this point in the history
CRM-5237: Update documentation to include sms
  • Loading branch information
biggert authored Dec 7, 2023
2 parents 6e7f8d9 + cf9d25d commit b4db74c
Show file tree
Hide file tree
Showing 5 changed files with 392 additions and 7 deletions.
10 changes: 9 additions & 1 deletion api/external/members.html
Original file line number Diff line number Diff line change
Expand Up @@ -527,6 +527,12 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli
<li><strong>fields</strong> (<em>dictionary</em>) &#8211; Names and values of user-defined fields to update</li>
<li><strong>group_ids</strong> (<em>array of integers</em>) &#8211; Optional. Add imported members to this list of groups.</li>
<li><strong>field_triggers</strong> (<em>boolean</em>) &#8211; Optional. Fires related field change autoresponders when set to <em>true</em>.</li>
<li><strong>sms</strong> (<em>dictionary</em>) &#8211; Optional. sms phone number config for member</li>
<ul class="first simple">
<li><strong>phone_number</strong> (<em>string</em>) &#8211; Phone Number</li>
<li><strong>promotional_status</strong> (<em>string</em>) &#8211; Transactional Status</li>
<li><strong>transactional_status</strong> (<em>string</em>) &#8211; Promotional Status</li>
</ul>
<li><strong>subscriber_consent_tracking</strong> (<em>boolean</em>) &#8211; Optional. Whether or not the user accepts tracking and analysis.</li>
</ul>
</td>
Expand All @@ -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"
}
}

Expand Down
6 changes: 3 additions & 3 deletions api/external/signup_forms.html
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
<script type="text/javascript" src="../../_static/underscore.js"></script>
<script type="text/javascript" src="../../_static/doctools.js"></script>
<link rel="top" title="audience 0.1 documentation" href="../../index.html" />
<link rel="next" title="Subscriptions" href="subscriptions.html" />
<link rel="next" title="SMS" href="sms.html" />
<link rel="prev" title="Searches" href="searches.html" />
<link rel="icon" href="https://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon">
<link rel="shortcut icon" href="https://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon">
Expand Down Expand Up @@ -86,7 +86,7 @@ <h3>Navigation</h3>
<a href="../../http-routingtable.html" title="HTTP Routing Table"
>routing table</a> |</li>
<li class="right" >
<a href="subscriptions.html" title="Subscriptions"
<a href="sms.html" title="SMS"
accesskey="N">next</a> |</li>
<li class="right" >
<a href="searches.html" title="Searches"
Expand Down Expand Up @@ -152,7 +152,7 @@ <h1>Signup Forms<a class="headerlink" href="#signup_forms" title="Permalink to t
<ul>
<li><a href="../../index.html">Documentation overview</a><ul>
<li>Previous: <a href="searches.html" title="previous chapter">Searches</a></li>
<li>Next: <a href="subscriptions.html" title="next chapter">Subscriptions</a></li>
<li>Next: <a href="sms.html" title="next chapter">SMS</a></li>
</ul></li>
</ul>
<div id="searchbox" style="display: none">
Expand Down
Loading

0 comments on commit b4db74c

Please sign in to comment.