From e73b4a982582d2aa45c67dd8b6e5bbea654ada28 Mon Sep 17 00:00:00 2001 From: Lance Roggendorff <lance.roggendorff@myemma.com> Date: Mon, 17 Dec 2012 11:26:13 -0600 Subject: [PATCH 001/219] Initial commit. --- .gitignore | 1 + .nojekyll | 0 CNAME | 1 + _images/api_keys.jpg | Bin 0 -> 101838 bytes _sources/api/external/fields.txt | 12 + _sources/api/external/groups.txt | 12 + _sources/api/external/mailings.txt | 9 + _sources/api/external/members.txt | 19 + _sources/api/external/response.txt | 11 + _sources/api/external/searches.txt | 9 + _sources/api/external/triggers.txt | 8 + _sources/api/external/webhooks.txt | 10 + _sources/index.txt | 153 +++ _sources/member_search.txt | 104 ++ _sources/pagination.txt | 27 + _sources/php_get_member_example.txt | 41 + _sources/php_signup_example.txt | 58 ++ _sources/placeholders.txt | 32 + _sources/webhooks.txt | 337 +++++++ _static/ajax-loader.gif | Bin 0 -> 673 bytes _static/basic.css | 540 ++++++++++ _static/comment-bright.png | Bin 0 -> 3500 bytes _static/comment-close.png | Bin 0 -> 3578 bytes _static/comment.png | Bin 0 -> 3445 bytes _static/doctools.js | 247 +++++ _static/down-pressed.png | Bin 0 -> 368 bytes _static/down.png | Bin 0 -> 363 bytes _static/emma.css | 540 ++++++++++ _static/file.png | Bin 0 -> 392 bytes _static/img/bg-body.jpg | Bin 0 -> 5249 bytes _static/img/bg-header.png | Bin 0 -> 2051 bytes _static/img/fonts/BebasNeue-webfont.eot | Bin 0 -> 16362 bytes _static/img/fonts/BebasNeue-webfont.svg | 245 +++++ _static/img/fonts/BebasNeue-webfont.ttf | Bin 0 -> 42640 bytes _static/img/fonts/BebasNeue-webfont.woff | Bin 0 -> 19036 bytes _static/img/logo.png | Bin 0 -> 8704 bytes _static/jquery.js | 154 +++ _static/minus.png | Bin 0 -> 199 bytes _static/plus.png | Bin 0 -> 199 bytes _static/pygments.css | 62 ++ _static/searchtools.js | 560 +++++++++++ _static/underscore.js | 23 + _static/up-pressed.png | Bin 0 -> 372 bytes _static/up.png | Bin 0 -> 363 bytes _static/websupport.js | 808 +++++++++++++++ api/external/fields.html | 380 +++++++ api/external/groups.html | 667 +++++++++++++ api/external/mailings.html | 774 +++++++++++++++ api/external/members.html | 1149 ++++++++++++++++++++++ api/external/response.html | 984 ++++++++++++++++++ api/external/searches.html | 476 +++++++++ api/external/triggers.html | 464 +++++++++ api/external/webhooks.html | 452 +++++++++ genindex.html | 114 +++ http-routingtable.html | 567 +++++++++++ index.html | 290 ++++++ member_search.html | 221 +++++ objects.inv | Bin 0 -> 1369 bytes pagination.html | 133 +++ php_get_member_example.html | 148 +++ php_signup_example.html | 170 ++++ placeholders.html | 148 +++ robots.txt | 6 + search.html | 118 +++ searchindex.js | 1 + webhooks.html | 472 +++++++++ 66 files changed, 11757 insertions(+) create mode 100644 .gitignore create mode 100644 .nojekyll create mode 100644 CNAME create mode 100644 _images/api_keys.jpg create mode 100644 _sources/api/external/fields.txt create mode 100644 _sources/api/external/groups.txt create mode 100644 _sources/api/external/mailings.txt create mode 100644 _sources/api/external/members.txt create mode 100644 _sources/api/external/response.txt create mode 100644 _sources/api/external/searches.txt create mode 100644 _sources/api/external/triggers.txt create mode 100644 _sources/api/external/webhooks.txt create mode 100644 _sources/index.txt create mode 100644 _sources/member_search.txt create mode 100644 _sources/pagination.txt create mode 100644 _sources/php_get_member_example.txt create mode 100644 _sources/php_signup_example.txt create mode 100644 _sources/placeholders.txt create mode 100644 _sources/webhooks.txt create mode 100644 _static/ajax-loader.gif create mode 100644 _static/basic.css create mode 100644 _static/comment-bright.png create mode 100644 _static/comment-close.png create mode 100644 _static/comment.png create mode 100644 _static/doctools.js create mode 100644 _static/down-pressed.png create mode 100644 _static/down.png create mode 100644 _static/emma.css create mode 100644 _static/file.png create mode 100644 _static/img/bg-body.jpg create mode 100644 _static/img/bg-header.png create mode 100755 _static/img/fonts/BebasNeue-webfont.eot create mode 100755 _static/img/fonts/BebasNeue-webfont.svg create mode 100755 _static/img/fonts/BebasNeue-webfont.ttf create mode 100755 _static/img/fonts/BebasNeue-webfont.woff create mode 100644 _static/img/logo.png create mode 100644 _static/jquery.js create mode 100644 _static/minus.png create mode 100644 _static/plus.png create mode 100644 _static/pygments.css create mode 100644 _static/searchtools.js create mode 100644 _static/underscore.js create mode 100644 _static/up-pressed.png create mode 100644 _static/up.png create mode 100644 _static/websupport.js create mode 100644 api/external/fields.html create mode 100644 api/external/groups.html create mode 100644 api/external/mailings.html create mode 100644 api/external/members.html create mode 100644 api/external/response.html create mode 100644 api/external/searches.html create mode 100644 api/external/triggers.html create mode 100644 api/external/webhooks.html create mode 100644 genindex.html create mode 100644 http-routingtable.html create mode 100644 index.html create mode 100644 member_search.html create mode 100644 objects.inv create mode 100644 pagination.html create mode 100644 php_get_member_example.html create mode 100644 php_signup_example.html create mode 100644 placeholders.html create mode 100644 robots.txt create mode 100644 search.html create mode 100644 searchindex.js create mode 100644 webhooks.html diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e43b0f9 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.DS_Store diff --git a/.nojekyll b/.nojekyll new file mode 100644 index 0000000..e69de29 diff --git a/CNAME b/CNAME new file mode 100644 index 0000000..31ca9ad --- /dev/null +++ b/CNAME @@ -0,0 +1 @@ +api.myemma.com diff --git a/_images/api_keys.jpg b/_images/api_keys.jpg new file mode 100644 index 0000000000000000000000000000000000000000..19740fcc1321e90cbe987d5b9eaa1afd7d26f756 GIT binary patch literal 101838 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�^TFH(@3E9zX(&6 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 literal 0 HcmV?d00001 diff --git a/_sources/api/external/fields.txt b/_sources/api/external/fields.txt new file mode 100644 index 0000000..f948670 --- /dev/null +++ b/_sources/api/external/fields.txt @@ -0,0 +1,12 @@ +Fields +====== + +These endpoints let you create, edit, update and delete all of the custom +fields in your account. Of particular interest is the +``/#account_id/fields/#field_id/clear`` endpoint which lets you clear out +all the data in a single field for all members in your account. This makes +it easy to re-initialize a dataset if you're looking to correct an import +error or syncing issue. + +.. autoemma:: audience.api.controllers.fields:FieldController + diff --git a/_sources/api/external/groups.txt b/_sources/api/external/groups.txt new file mode 100644 index 0000000..f8ed4c7 --- /dev/null +++ b/_sources/api/external/groups.txt @@ -0,0 +1,12 @@ +Groups +====== + +With these endpoints, you can manage all aspects of the groups in +your account. In addition to various CRUD methods, you can also +use these endpoints to manage the members of your groups. You'll +want to use these methods if you're managing group membership for +more than one member at a time. For dealing with single members, +there are better methods in the ``members`` endpoints. + +.. autoemma:: audience.api.controllers.groups:MemberGroupController + diff --git a/_sources/api/external/mailings.txt b/_sources/api/external/mailings.txt new file mode 100644 index 0000000..d494a3c --- /dev/null +++ b/_sources/api/external/mailings.txt @@ -0,0 +1,9 @@ +Mailings +======== + +With these endpoints, you can get information about your mailings including +their HTML contents. You can retrieve the members to whom the mailing was sent. +You can also pause mailings and cancel mailings that are pending or paused. + +.. autoemma:: audience.api.controllers.mailings:MailingController + diff --git a/_sources/api/external/members.txt b/_sources/api/external/members.txt new file mode 100644 index 0000000..d3c3b17 --- /dev/null +++ b/_sources/api/external/members.txt @@ -0,0 +1,19 @@ +Members +======= + +In addition to the various CRUD endpoints here related to members, +you can also change the status of members, including opting them out. + +You'll notice that there are calls related to individual members, but +we also provide quite a few calls to deal with bulk updates of members. +Please try to use these whenever possible as opposed to looping through +a list of members and calling the individual member calls. + +Where this is especially important is when adding new members. To do a bulk +import, you'll POST to the ``/#account_id/members`` endpoint. In return, +you'll receive an import ID. You can use this ID to check the status and +results of your import. Imports are generally pretty fast, but the time +to completion can vary with greater system usage. + +.. autoemma:: audience.api.controllers.members:MemberController + diff --git a/_sources/api/external/response.txt b/_sources/api/external/response.txt new file mode 100644 index 0000000..cba2d42 --- /dev/null +++ b/_sources/api/external/response.txt @@ -0,0 +1,11 @@ +Response +======== + +We know that you want to do some fancy pivot tables with your response +data, so we've provided quite a few endpoints here to give you access +to that response data. You can get overview numbers for all of your mailings +and also drill down into finding out the actual members who opened a particular +mailing. + +.. autoemma:: audience.api.controllers.response:ResponseController + diff --git a/_sources/api/external/searches.txt b/_sources/api/external/searches.txt new file mode 100644 index 0000000..f8cc569 --- /dev/null +++ b/_sources/api/external/searches.txt @@ -0,0 +1,9 @@ +Searches +======== + +These endpoints allow you to create, edit, and delete searches. You can also +retrieve the members matching any search created in your account. You can +:doc:`get more details on how to construct searches <../../member_search>`. + +.. autoemma:: audience.api.controllers.searches:SearchController + diff --git a/_sources/api/external/triggers.txt b/_sources/api/external/triggers.txt new file mode 100644 index 0000000..e1d8538 --- /dev/null +++ b/_sources/api/external/triggers.txt @@ -0,0 +1,8 @@ +Triggers +======== + +These endpoints provide CRUD operations for our trigger system. Creating a +trigger is probably the most widely used of these operations. + +.. autoemma:: audience.api.controllers.triggers:TriggerController + diff --git a/_sources/api/external/webhooks.txt b/_sources/api/external/webhooks.txt new file mode 100644 index 0000000..d4f6531 --- /dev/null +++ b/_sources/api/external/webhooks.txt @@ -0,0 +1,10 @@ +Webhooks +======== + +You can manage your webhooks with these endpoints. Of particular interest +might be the ``GET /#account_id/webhooks/events`` endpoint which lets you +know which events our system can send out webhooks for. You can :doc:`get more +info about how our webhooks work <../../webhooks>`. + +.. autoemma:: audience.api.controllers.webhooks:WebhookController + diff --git a/_sources/index.txt b/_sources/index.txt new file mode 100644 index 0000000..92df53d --- /dev/null +++ b/_sources/index.txt @@ -0,0 +1,153 @@ +Emma API +======== + +Overview +-------- + +Emma's platform is accessible through our public API. The API provides access +to the following areas: + +* Managing member lists + * importing, editing, deleting + * organizing members into groups + * searching for members +* Sending mailings + * sending to individuals, groups and searches + * viewing past mailings + * controlling the status of pending mailings +* Retrieving response + * Access mailing response information by mailing, member of time period + * Access response at summary and detail levels + +Quickstart +---------- + +Let's start by building some PHP code that will add a member to our audience. + +First, you'll want to figure out how to authenticate. All calls require HTTP +Basic Auth autentication. Inside your Emma account, in the "Account Settings" +section, you'll find your API keys. There's a public key and a private key and +an account ID. It should look like this. + +.. image:: images/api_keys.jpg + +So, let's add these authentication bits to our code. + +.. code-block:: php + + // Authentication Variables + $account_id = "xxx"; + $public_api_key = "xxx"; + $private_api_key = "xxx"; + +Then, we'll want to capture the POSTed form variables from the request. + +.. code-block:: php + + // Form variable(s) + $email = $_POST['email']; + $first_name = $_POST['first_name']; + $last_name = $_POST['last_name']; + $groups = array(123456, 654321); + + // Member data other than email should be passed in an array called "fields" + $member_data = array( + "email" => $email, + "fields" => array( + "name_first" => $first_name, + "name_last" => $last_name + ), + "group_ids" => $groups + ); + +Please note that the ``group_ids`` to which the member will be added are passed +as an array of integers. Of course, you'll want to make sure you sanitize any of +these form inputs to protect your application. + +Let's set the URL for the API call. The endpoint for all of our API calls is +https://api.e2ma.net/. In this case, we're using the endpoint that +corresponds to adding a single member. There's a separate call for adding bulk +members. + +.. code-block:: php + + // Set URL + $url = "https://api.e2ma.net/".$account_id."/members/add"; + +Next, we'll do a little dance with cURL that I'm sure is familiar. I'll +explain some particulars below the code block. + +.. code-block:: php + :emphasize-lines: 3,6,7 + + // setup and execute the cURL command + $ch = curl_init(); + curl_setopt($ch, CURLOPT_USERPWD, $public_api_key . ":" . $private_api_key); + curl_setopt($ch, CURLOPT_URL, $url); + curl_setopt($ch, CURLOPT_POST, count($member_data)); + curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($member_data)); + curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-type: application/json')); + curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); + curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); + $head = curl_exec($ch); + $http_code = curl_getinfo($ch, CURLINFO_HTTP_CODE); + curl_close($ch); + +On line 3 is where we use the public/private keys to authenticate our call. +On lines 6-7, we force the API call to make its request in JSON and expect +JSON in return. + +At this point, the API call has been made.We might want to inspect the +result to see what happened. The API returns true HTTP response codes which +you can examine to determine a request's disposition. + +.. code-block:: php + + //execute post + if($http_code > 200) { + $app_message = "Error sending subscription request"; + } else { + $app_message = "Success!"; + } + + echo $app_message; + +You can :doc:`see the complete PHP script here <php_signup_example>`. +Additionally, there's a PHP example to :doc:`get members using their email +address <php_get_member_example>`. + +To extend this example further, one could make the API call associate the +new member with a particular signup form. As written above, the member would +be added to the audience but would not appear in the "recent activity" type +searches or really any searches related to signups. We are working on a +cleaner way to handle this signup form issue in the future. + + +API calls by category +--------------------- + +The API calls are organized by their main entity type in the following +sections. Each call includes sample request & response data. + +.. toctree:: + :maxdepth: 2 + :glob: + + api/external/* + +Additional Documentation +------------------------ + +.. toctree:: + :maxdepth: 2 + + pagination + placeholders + member_search + webhooks + +.. toctree:: + :hidden: + + php_signup_example + php_get_member_example diff --git a/_sources/member_search.txt b/_sources/member_search.txt new file mode 100644 index 0000000..67dd0a6 --- /dev/null +++ b/_sources/member_search.txt @@ -0,0 +1,104 @@ +.. _search_syntax: + +Search Syntax +============= + +Syntax Overview +--------------- + +Searches are constructed using nested JSON arrays of filters and boolean predicates. Here is an example of a simple filter: + +:: + + ["member_field:foo", "eq", "bar"] + +A filter is composed of one or more parts. The first part is always a *filter term*. In general, a filter term maps directly to a field in the results. A filter term can accept an argument (the ``:foo`` in the example above) that will have different meanings for different filter terms. If the filter has more than one part, the second part is *always* an *operator*. The remaining parts are arguments for the operator. Different operators will have different arguments, but will always have at least one. + +In addition, filters can be *nested* using *boolean predicates*. Here's an example of a nested query: + +:: + + ["and", + ["member_field:foo", "eq", "bar"], + ["member_since", "in last", {"day": 5}]] + + +This example will return all members who joined in the last 5 days and have their member_field ``foo`` set to ``bar``. The available boolean predicates and examples of their use are below. + +Operators +--------- + +There are a bunch of operators available: + +* ``eq`` and ``=``: Basic equality. Example: ``["member_field:some_string_field", "eq", "bar"]`` +* ``lt`` and ``<``: Less than. Example: ``["member_field:some_numeric_field", "lt", 5]`` +* ``gt`` and ``>``: Greater than. Example: ``["member_field:some_numeric_field", "gt", 5]`` + +* ``between``: Between. Takes two arguments. Example: ``["member_field:some_numeric_field", "between", 5, 10]`` +* ``in last`` and ``in next``: Relative date. Takes an interval (explained below). Example: ``["member_since", "in last", {"day": 4}]`` +* ``datematch``: Match a date argument. All parts of the date must match. Example: ``["member_since", "datematch", {"year": 2011}]`` +* ``contains``: Match a string against a shell-glob-style expression. Example: ``["member_field:some_string_field", "contains", "*foo*"]`` +* ``in``: Match a field against a list of values. Example: ``["member_field:some_number_field", "in", 3, 4, 5, 6]`` +* ``any``: Match a given value against an array field. Example: ``["member_field:some_array_field", "any", "ten"]`` + +In addition to these basic operators, there is one advanced operator available: + +* ``zip-radius:n``: where ``n`` can be one of ``5``, ``10``, ``15``, ``20``, ``25``, or ``50``. Takes a single zip code which will be the center of the search. Example: ``["member_field:some_zipcode_field", "zip-radius:10", "97202"]`` will return all members with a ``zip_code_field`` within 10 miles of ``97202``. + +Intervals +~~~~~~~~~ + +An interval is defined as a hash that contains one or more of the following keys: + +* ``year`` +* ``month`` +* ``day`` +* ``hour`` +* ``minute`` +* ``second`` + +For example, ``{"year": 2, "day": 4}`` would specify an interval of two years and four days. + +Dates +~~~~~ + +A date is defined as a hash that contains one or more of the following keys: + +* ``year`` +* ``month`` +* ``day`` +* ``hour`` +* ``minute`` +* ``second`` +* ``dow`` (day of week) + +For example, ``{"day", 31}`` would match the 31st of every month with a 31st day, while ``{"dow": 2}`` would match every Tuesday. Sunday is 0. + +Boolean Predicates +------------------ + +Boolean predicates operate on one or more nested clauses. These predicates are available: + +* ``and``: All clauses must be true. Example: ``["and", ["member_field:foo", "eq", 1], ["member_field:bar", "eq", 2]]`` +* ``or``: At least one clause must be true. Example: ``["or", ["member_field:foo", "eq", 1], ["member_field:bar", "eq", 2]]`` +* ``not``: The single nested clause must not be true. Example: ``["not", ["member_field:foo", "eq", 1]]`` + +Filter Terms +------------ + +In general, every key in the result records can be used as a filter term. Just use the key as the filter term. For example, to filter on ``send_start``, you'd say ``["send_start", "gt", "2011-12-15"]``. In addition, there is a large set of advanced filter terms for filtering members: + +* ``opened``, ``clicked``, ``shared``, ``forwarded``. Will match on the timestamp of the corresponding response if it exists. All of these filter terms also allow a ``mailing_id`` as an argument (i.e. ``opened:12345`` matches if they opened mailing 12345. +* ``member_field:x`` where ``x`` is the short name of a member field. You can also use ``x`` by itself without ``member_field:``. +* ``group``. Will match the name of a member group. Takes the special operators ``defined`` (belongs to any group) and ``undefined`` (does not belong to any group). +* ``received`` Will match if the member received a mailing. Takes an optional ``mailing_id`` argument. If not given, will match if the member has received *any* mailing. +* ``clicked link``. Will match if the member has clicked on a link. Takes an optional ``link_id`` argument. If not given, will match if the member has clicked on *any* link. +* ``manage``: Will match if the member has manged their preferences. Optionally takes a date filter on the timestamp of the manage action. Optionally takes a ``signup_form_id`` argument. Example: ``["manage:1234", "in last", {"day", 30}]``. +* ``unsubscribed``: Will match if the member has unsubscribed. Optionally takes a date filter on the timestamp of the opt-out action. Optionally takes a ``signup_form_id`` filter argument. +* ``unsubscribed mailing``: Will match if the member has unsubscribed. Optionally takes a date filter on the timestamp of the opt-out action. Optionally takes a ``mailing_id`` filter argument. +* ``bounced``: Will match if the member had either a soft or hard bounce. Optionally takes a date filter on the timestamp of the bounce. Optionally takes a ``mailing_id`` filter argument. +* ``email_user``: Will match on the user portion of the member's email address +* ``email_domain``: Will match on the domain portion of the member's email address +* ``email``: Will match on the member's entire email address +* ``signup``: Will match if the member has signed up. Optionally takes a date filter on the timestamp of the signup action. Optionally takes a ``signup_form_id`` filter argument. +* ``signup_mailing``: Will match if the member has signed up. Optionally takes a date filter on the timestamp of the signup action. Optionally takes a ``mailing_id`` filter argument. diff --git a/_sources/pagination.txt b/_sources/pagination.txt new file mode 100644 index 0000000..15211d4 --- /dev/null +++ b/_sources/pagination.txt @@ -0,0 +1,27 @@ +.. _pagination: + +Pagination +========== + +Responses with a large number of results should be paginated; the query +parameters ``start`` and ``end`` can be used to specify how large a set +of items to retrieve in each call, with a maximum page size of 500. + +Additionally, for any call you can retrieve a count of the results (instead +of the results themselves) by appending a query parameter of ``count=true``. + +So, to pull a large number of results, you start with a count: + + https://api.e2ma.net/123/members?count=true + +Then, iterate over the list in blocks of 500: + + https://api.e2ma.net/123/members?start=0&end=500 + + https://api.e2ma.net/123/members?start=500&end=1000 + +Requests for page sizes larger than 500 will limited to ``start`` + 500. + +Calls are rate-limited to prevent accidental overuse. If you exceed the limit +you will receive a response of ``403 Rate Limit Exceeded`` until enough time +has elapsed between calls. diff --git a/_sources/php_get_member_example.txt b/_sources/php_get_member_example.txt new file mode 100644 index 0000000..e5c182e --- /dev/null +++ b/_sources/php_get_member_example.txt @@ -0,0 +1,41 @@ +PHP Get Member By Email Example +=============================== + +Here's the complete example of the PHP code to find a member by email address. + +.. code-block:: php + + <?php + // Authentication Variables + $account_id = "xxxx"; + $public_api_key = "xxxxx"; + $private_api_key = "xxxxx"; + + // Form variable(s) + $email = 'me@test.com'; + + // Set URL + $url = "https://api.e2ma.net/" . $account_id . "/members/email/" . $email; + + // Open connection + $ch = curl_init(); + + // Make the curl call + curl_setopt($ch, CURLOPT_USERPWD, $public_api_key . ":" . $private_api_key); + curl_setopt($ch, CURLOPT_URL, $url); + curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-type: application/json')); + curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); + curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); + $head = curl_exec($ch); + $http_code = curl_getinfo($ch, CURLINFO_HTTP_CODE); + curl_close($ch); + + // check for errors + if($http_code > 200) { + print "Error getting member:\r\n"; + print_r($head); + } else { + print "Member information:\r\n"; + print_r($head); + } + ?> diff --git a/_sources/php_signup_example.txt b/_sources/php_signup_example.txt new file mode 100644 index 0000000..03f8048 --- /dev/null +++ b/_sources/php_signup_example.txt @@ -0,0 +1,58 @@ +PHP Signup Example +================== + +Here's the complete example of the PHP code to signup a single member. + +.. code-block:: php + + <?php + // Authentication Variables + $account_id = "xxx"; + $public_api_key = "xxx"; + $private_api_key = "xxx"; + + // Form variable(s) + $email = $_POST['email']; + $first_name = $_POST['first_name']; + $last_name = $_POST['last_name']; + $groups = array(123456, 654321); + + // Member data other than email should be passed in an array called "fields" + $member_data = array( + "email" => $email, + "fields" => array( + "name_first" => $first_name, + "name_last" => $last_name + ), + "group_ids" => $groups + ); + + // Set URL + $url = "https://api.e2ma.net/".$account_id."/members/add"; + + // Open connection + $ch = curl_init(); + + // Set the url, number of POST vars, POST data + curl_setopt($ch, CURLOPT_USERPWD, $public_api_key . ":" . $private_api_key); + curl_setopt($ch, CURLOPT_URL, $url); + curl_setopt($ch, CURLOPT_POST, count($member_data)); + curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($member_data)); + curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-type: application/json')); + curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); + curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); + $head = curl_exec($ch); + $http_code = curl_getinfo($ch, CURLINFO_HTTP_CODE); + curl_close($ch); + + //execute post + if($http_code > 200) { + $app_message = "Error sending subscription request"; + print_r($head); + } else { + print_r($head); + $app_message = "Success!"; + } + + echo $app_message; + ?> diff --git a/_sources/placeholders.txt b/_sources/placeholders.txt new file mode 100644 index 0000000..6d13373 --- /dev/null +++ b/_sources/placeholders.txt @@ -0,0 +1,32 @@ +.. _placeholder_syntax: + +Placeholder Syntax +================== + +Syntax Overview +--------------- + +The content of messages can be customized using the template tag library. +Each template tag should be enclosed in a ``[%`` ``%]`` pair. Where a tag +requires a qualifier value, the value should be attached with a colon. + +For example, the following extract shows a member's name being inserted into a +greeting:: + + Hello [% member:first_name %] [% member:last_name %], + + Welcome to the "Exciting Onions" mailing list, where you can be kept up to + date on all the latest onion-related news ... + +Some tags also accept additional key/value pairs to control their behavior. +For example, adding a default value to a member field:: + + Hello [% member:first_name default="Friend" %] + +...or specifying the link text for a trackable link:: + + Please visit [% link:http://fancyonions.com/home name="our website" %] + + +.. todo:: + fully document the available tags diff --git a/_sources/webhooks.txt b/_sources/webhooks.txt new file mode 100644 index 0000000..3a8f572 --- /dev/null +++ b/_sources/webhooks.txt @@ -0,0 +1,337 @@ +.. _webhook_usage: + +Webhook Usage +============= + +Webhook Overview +---------------- + +Webhooks are an easy way to have Emma's system notify you when certain events +occur. In general, you will use our API to tell us which events you want to +be notified about. When those events occur, we will make a POST to the URL +you have provided with a particular set of data. + +We have a broad array of triggering events and an easy API interface +to create webhooks for each event. We do have :doc:`documentation of the webhook +API </api/external/webhooks>`. + +Below is a list of each triggering event we currently support and the data +that will be sent when that event occurs. + +Webhook Post Data +----------------- + +Member Signup +~~~~~~~~~~~~~ +:: + + { + "event_name": "member_signup", + "data": { + "account_id": account_id, + "member_id": member_id, + "mailing_id": mailing_id + } + } + +Message Open +~~~~~~~~~~~~ +:: + + { + "event_name": "message_open", + "data": { + "account_id": account_id, + "member_id": member_id, + "mailing_id": mailing_id, + "subject": mailing_subject, + "timestamp": timestamp + } + } + +Message Click +~~~~~~~~~~~~~ +:: + + { + "event_name": "message_click", + "data": { + "account_id": account_id, + "member_id": member_id, + "mailing_id": mailing_id, + "subject": mailing_subject, + "timestamp": timestamp, + "link_id": link_id + } + } + +Member Optout +~~~~~~~~~~~~~ +:: + + { + "event_name": "member_optout", + "data": { + "account_id": account_id, + "member_id": member_id, + "mailing_id": mailing_id, + "subject": mailing_subject, + "timestamp": timestamp + } + } + +Message Share +~~~~~~~~~~~~~ +:: + + { + "event_name": "message_share", + "data": { + "account_id": account_id, + "member_id": member_id, + "mailing_id": mailing_id, + "subject": mailing_subject, + "timestamp": timestamp, + "network": network_code + } + } + +Message Share Click +~~~~~~~~~~~~~~~~~~~ +:: + + { + "event_name": "message_share_click", + "data": { + "account_id": account_id, + "member_id": member_id, + "mailing_id": mailing_id, + "subject": mailing_subject, + "timestamp": timestamp, + "network": network_code + } + } + +Message Forward +~~~~~~~~~~~~~~~ +:: + + { + "event_name": "message_forward", + "data": { + "account_id": account_id, + "member_id": member_id, + "mailing_id": mailing_id, + "subject": mailing_subject, + "timestamp": timestamp + } + } + +Mailing Finish +~~~~~~~~~~~~~~ +:: + + { + "event_name": "mailing_finish", + "data": { + "mailing_id": mailing_id, + "account_id": account_id, + "subject": mailing_subject, + "timestamp": timestamp + } + } + +Import Finish +~~~~~~~~~~~~~ +:: + + { + "event_name": "import_finish", + "data": { + "import_id": import_id, + "account_id": account_id, + "timestamp": timestamp, + "resource_url": resource_url + } + } + +Member Add +~~~~~~~~~~ +:: + + { + "event_name": "member_add", + "data": { + "member_id": member_id, + "account_id": account_id, + "timestamp": timestamp, + "signup_form_id": signup_form_id, + "resource_url": resource_url + } + } + +Member Update +~~~~~~~~~~~~~ +:: + + { + "event_name": "member_update", + "data": { + "member_id": member_id, + "account_id": account_id, + "timestamp": timestamp + } + } + +Member Delete +~~~~~~~~~~~~~ +:: + + { + "event_name": "member_delete", + "data": { + "member_id": member_id, + "account_id": account_id, + "timestamp": timestamp + } + } + +Member Add To Group +~~~~~~~~~~~~~~~~~~~ + +It's possible that instead of an array for `member_ids` or `group_ids` you +may receive a string with the text `all`. Because of calls that can add a +member to all groups or add all members to a single group, this is easier +than returning a giant list of IDs. + +:: + + { + "event_name": "member_add_to_group", + "data": { + "member_ids": {member_ids}, + "account_id": account_id, + "timestamp": timestamp. + "group_ids": {group_ids} + } + } + +Member Remove From Group +~~~~~~~~~~~~~~~~~~~~~~~~ + +It's possible that instead of an array for `member_ids` or `group_ids` you +may receive a string with the text `all`. Because of calls that can remove a +member from all groups or remove all members from a single group, this is +easier than returning a giant list of IDs. + +:: + + { + "event_name": "member_remove_from_group", + "data": { + "member_ids": {member_ids}, + "account_id": account_id, + "timestamp": timestamp. + "group_ids": {group_ids} + } + } + +Group Create +~~~~~~~~~~~~ +:: + + { + "event_name": "group_create", + "data": { + "group_id": group_id, + "group_name": group_name, + "account_id": account_id, + "timestamp": timestamp, + "resource_url": resource_url + } + } + +Group Delete +~~~~~~~~~~~~ +:: + + { + "event_name": "group_delete", + "data": { + "group_id": group_id, + "account_id": account_id, + "timestamp": timestamp, + "resource_url": resource_url + } + } + +Group Update +~~~~~~~~~~~~ +:: + + { + "event_name": "group_update", + "data": { + "group_id": group_id, + "group_name": group_name, + "account_id": account_id, + "timestamp": timestamp, + "resource_url": resource_url + } + } + +Field Create +~~~~~~~~~~~~ +:: + + { + "event_name": "field_create", + "data": { + "field_id": field_id, + "account_id": account_id, + "timestamp": timestamp, + "resource_url": resource_url + } + } + +Field Delete +~~~~~~~~~~~~ +:: + + { + "event_name": "field_delete", + "data": { + "field_id": field_id, + "account_id": account_id, + "timestamp": timestamp, + "resource_url": resource_url + } + } + +Field Update +~~~~~~~~~~~~ +:: + + { + "event_name": "field_update", + "data": { + "field_id": field_id, + "account_id": account_id, + "timestamp": timestamp, + "resource_url": resource_url + } + } + +Member Status Update +~~~~~~~~~~~~~~~~~~~~ +:: + + { + "event_name": "member_status_update", + "data": { + "member_ids": {member_ids}, + "account_id": account_id, + "new_status": new_status, + "timestamp": timestamp + } + } diff --git a/_static/ajax-loader.gif b/_static/ajax-loader.gif new file mode 100644 index 0000000000000000000000000000000000000000..61faf8cab23993bd3e1560bff0668bd628642330 GIT binary patch literal 673 zcmZ?wbhEHb6krfw_{6~Q|Nno%(3)e{?)x>&1u}A`t?OF7Z|1gRivOgXi&7IyQd1Pl zGfOfQ60;I3a`F>X^fL3(@);C=vM_KlFfb_o=k{|A33hf2a5d61U}gjg=>Rd%XaNQW zW@C<Bcm5fi^2`=a=CI<BoWt%nBaPE_qv4@lA~O$e(@QvVsPKYrw1nl|W$cy`JnUZC z&pm)ff{kWGHpc{Hj$e<Wf^-Yd?hVhnTne26LlO)n6%u@0qor2V$ZRdW|29#Ay+Pr+ z#G^K6$xW&%T0&5Rn2-%J<Je`StbNMy#Dp_b!t~i%lV$k6Ncw&BbV{7Dx<KXw*O|?G zWsa@TW{P|({)e&oFu&2t6sh_9S)fKSBO3+uTav2wDWkTDZ{~!>w{|b%Y*pl8F?4B9 zlo4Fz*0kZGJabY|>}Okf0}CCg{u4`zEPY^pV?j2@h+|igy0+Kz6p;@SpM4s6)XEMg z#3Y4GX>Hjlml5ftdH$4x0JGdn8~MX(U~_^d!Hi)=HU{V%g+mi8#UGbE-*ao8f#h+S z2a0-5+vc7MU$e-NhmBjLIC1v|)9+Im8x1yacJ7{^tLX(ZhYi^rpmXm0`@ku9b53aN zEXH@Y3JaztblgpxbJt{AtE1ad1Ca>{v$rwwvK(>{m~Gf_=-Ro7Fk{#;i~+{{>QtvI yb2P8Zac~?~=sRA>$6{!(^3;ZP0TPFR(G_-UDU(8Jl0?(IXu$~#4A!880|o%~Al1tN literal 0 HcmV?d00001 diff --git a/_static/basic.css b/_static/basic.css new file mode 100644 index 0000000..43e8baf --- /dev/null +++ b/_static/basic.css @@ -0,0 +1,540 @@ +/* + * basic.css + * ~~~~~~~~~ + * + * Sphinx stylesheet -- basic theme. + * + * :copyright: Copyright 2007-2011 by the Sphinx team, see AUTHORS. + * :license: BSD, see LICENSE for details. + * + */ + +/* -- main layout ----------------------------------------------------------- */ + +div.clearer { + clear: both; +} + +/* -- relbar ---------------------------------------------------------------- */ + +div.related { + width: 100%; + font-size: 90%; +} + +div.related h3 { + display: none; +} + +div.related ul { + margin: 0; + padding: 0 0 0 10px; + list-style: none; +} + +div.related li { + display: inline; +} + +div.related li.right { + float: right; + margin-right: 5px; +} + +/* -- sidebar --------------------------------------------------------------- */ + +div.sphinxsidebarwrapper { + padding: 10px 5px 0 10px; +} + +div.sphinxsidebar { + float: left; + width: 230px; + margin-left: -100%; + font-size: 90%; +} + +div.sphinxsidebar ul { + list-style: none; +} + +div.sphinxsidebar ul ul, +div.sphinxsidebar ul.want-points { + margin-left: 20px; + list-style: square; +} + +div.sphinxsidebar ul ul { + margin-top: 0; + margin-bottom: 0; +} + +div.sphinxsidebar form { + margin-top: 10px; +} + +div.sphinxsidebar input { + border: 1px solid #98dbcc; + font-family: sans-serif; + font-size: 1em; +} + +div.sphinxsidebar #searchbox input[type="text"] { + width: 170px; +} + +div.sphinxsidebar #searchbox input[type="submit"] { + width: 30px; +} + +img { + border: 0; +} + +/* -- search page ----------------------------------------------------------- */ + +ul.search { + margin: 10px 0 0 20px; + padding: 0; +} + +ul.search li { + padding: 5px 0 5px 20px; + background-image: url(file.png); + background-repeat: no-repeat; + background-position: 0 7px; +} + +ul.search li a { + font-weight: bold; +} + +ul.search li div.context { + color: #888; + margin: 2px 0 0 30px; + text-align: left; +} + +ul.keywordmatches li.goodmatch a { + font-weight: bold; +} + +/* -- index page ------------------------------------------------------------ */ + +table.contentstable { + width: 90%; +} + +table.contentstable p.biglink { + line-height: 150%; +} + +a.biglink { + font-size: 1.3em; +} + +span.linkdescr { + font-style: italic; + padding-top: 5px; + font-size: 90%; +} + +/* -- general index --------------------------------------------------------- */ + +table.indextable { + width: 100%; +} + +table.indextable td { + text-align: left; + vertical-align: top; +} + +table.indextable dl, table.indextable dd { + margin-top: 0; + margin-bottom: 0; +} + +table.indextable tr.pcap { + height: 10px; +} + +table.indextable tr.cap { + margin-top: 10px; + background-color: #f2f2f2; +} + +img.toggler { + margin-right: 3px; + margin-top: 3px; + cursor: pointer; +} + +div.modindex-jumpbox { + border-top: 1px solid #ddd; + border-bottom: 1px solid #ddd; + margin: 1em 0 1em 0; + padding: 0.4em; +} + +div.genindex-jumpbox { + border-top: 1px solid #ddd; + border-bottom: 1px solid #ddd; + margin: 1em 0 1em 0; + padding: 0.4em; +} + +/* -- general body styles --------------------------------------------------- */ + +a.headerlink { + visibility: hidden; +} + +h1:hover > a.headerlink, +h2:hover > a.headerlink, +h3:hover > a.headerlink, +h4:hover > a.headerlink, +h5:hover > a.headerlink, +h6:hover > a.headerlink, +dt:hover > a.headerlink { + visibility: visible; +} + +div.body p.caption { + text-align: inherit; +} + +div.body td { + text-align: left; +} + +.field-list ul { + padding-left: 1em; +} + +.first { + margin-top: 0 !important; +} + +p.rubric { + margin-top: 30px; + font-weight: bold; +} + +img.align-left, .figure.align-left, object.align-left { + clear: left; + float: left; + margin-right: 1em; +} + +img.align-right, .figure.align-right, object.align-right { + clear: right; + float: right; + margin-left: 1em; +} + +img.align-center, .figure.align-center, object.align-center { + display: block; + margin-left: auto; + margin-right: auto; +} + +.align-left { + text-align: left; +} + +.align-center { + text-align: center; +} + +.align-right { + text-align: right; +} + +/* -- sidebars -------------------------------------------------------------- */ + +div.sidebar { + margin: 0 0 0.5em 1em; + border: 1px solid #ddb; + padding: 7px 7px 0 7px; + background-color: #ffe; + width: 40%; + float: right; +} + +p.sidebar-title { + font-weight: bold; +} + +/* -- topics ---------------------------------------------------------------- */ + +div.topic { + border: 1px solid #ccc; + padding: 7px 7px 0 7px; + margin: 10px 0 10px 0; +} + +p.topic-title { + font-size: 1.1em; + font-weight: bold; + margin-top: 10px; +} + +/* -- admonitions ----------------------------------------------------------- */ + +div.admonition { + margin-top: 10px; + margin-bottom: 10px; + padding: 7px; +} + +div.admonition dt { + font-weight: bold; +} + +div.admonition dl { + margin-bottom: 0; +} + +p.admonition-title { + margin: 0px 10px 5px 0px; + font-weight: bold; +} + +div.body p.centered { + text-align: center; + margin-top: 25px; +} + +/* -- tables ---------------------------------------------------------------- */ + +table.docutils { + border: 0; + border-collapse: collapse; +} + +table.docutils td, table.docutils th { + padding: 1px 8px 1px 5px; + border-top: 0; + border-left: 0; + border-right: 0; + border-bottom: 1px solid #aaa; +} + +table.field-list td, table.field-list th { + border: 0 !important; +} + +table.footnote td, table.footnote th { + border: 0 !important; +} + +th { + text-align: left; + padding-right: 5px; +} + +table.citation { + border-left: solid 1px gray; + margin-left: 1px; +} + +table.citation td { + border-bottom: none; +} + +/* -- other body styles ----------------------------------------------------- */ + +ol.arabic { + list-style: decimal; +} + +ol.loweralpha { + list-style: lower-alpha; +} + +ol.upperalpha { + list-style: upper-alpha; +} + +ol.lowerroman { + list-style: lower-roman; +} + +ol.upperroman { + list-style: upper-roman; +} + +dl { + margin-bottom: 15px; +} + +dd p { + margin-top: 0px; +} + +dd ul, dd table { + margin-bottom: 10px; +} + +dd { + margin-top: 3px; + margin-bottom: 10px; + margin-left: 30px; +} + +dt:target, .highlighted { + background-color: #fbe54e; +} + +dl.glossary dt { + font-weight: bold; + font-size: 1.1em; +} + +.field-list ul { + margin: 0; + padding-left: 1em; +} + +.field-list p { + margin: 0; +} + +.refcount { + color: #060; +} + +.optional { + font-size: 1.3em; +} + +.versionmodified { + font-style: italic; +} + +.system-message { + background-color: #fda; + padding: 5px; + border: 3px solid red; +} + +.footnote:target { + background-color: #ffa; +} + +.line-block { + display: block; + margin-top: 1em; + margin-bottom: 1em; +} + +.line-block .line-block { + margin-top: 0; + margin-bottom: 0; + margin-left: 1.5em; +} + +.guilabel, .menuselection { + font-family: sans-serif; +} + +.accelerator { + text-decoration: underline; +} + +.classifier { + font-style: oblique; +} + +abbr, acronym { + border-bottom: dotted 1px; + cursor: help; +} + +/* -- code displays --------------------------------------------------------- */ + +pre { + overflow: auto; + overflow-y: hidden; /* fixes display issues on Chrome browsers */ +} + +td.linenos pre { + padding: 5px 0px; + border: 0; + background-color: transparent; + color: #aaa; +} + +table.highlighttable { + margin-left: 0.5em; +} + +table.highlighttable td { + padding: 0 0.5em 0 0.5em; +} + +tt.descname { + background-color: transparent; + font-weight: bold; + font-size: 1.2em; +} + +tt.descclassname { + background-color: transparent; +} + +tt.xref, a tt { + background-color: transparent; + font-weight: bold; +} + +h1 tt, h2 tt, h3 tt, h4 tt, h5 tt, h6 tt { + background-color: transparent; +} + +.viewcode-link { + float: right; +} + +.viewcode-back { + float: right; + font-family: sans-serif; +} + +div.viewcode-block:target { + margin: -1px -10px; + padding: 0 10px; +} + +/* -- math display ---------------------------------------------------------- */ + +img.math { + vertical-align: middle; +} + +div.body div.math p { + text-align: center; +} + +span.eqno { + float: right; +} + +/* -- printout stylesheet --------------------------------------------------- */ + +@media print { + div.document, + div.documentwrapper, + div.bodywrapper { + margin: 0 !important; + width: 100%; + } + + div.sphinxsidebar, + div.related, + div.footer, + #top-link { + display: none; + } +} \ No newline at end of file diff --git a/_static/comment-bright.png b/_static/comment-bright.png new file mode 100644 index 0000000000000000000000000000000000000000..551517b8c83b76f734ff791f847829a760ad1903 GIT binary patch literal 3500 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 a`ab|E?o=hKA+1LM0000<MNUMnLSTYql%5L! literal 0 HcmV?d00001 diff --git a/_static/comment-close.png b/_static/comment-close.png new file mode 100644 index 0000000000000000000000000000000000000000..09b54be46da3f0d4a5061da289dc91d8a2cdbc9c GIT binary patch literal 3578 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 A2LJ#7 literal 0 HcmV?d00001 diff --git a/_static/comment.png b/_static/comment.png new file mode 100644 index 0000000000000000000000000000000000000000..92feb52b8824c6b0f59b658b1196c61de9162a95 GIT binary patch literal 3445 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 Xn!ZpXD%P(H00000NkvXXu0mjf<Culu literal 0 HcmV?d00001 diff --git a/_static/doctools.js b/_static/doctools.js new file mode 100644 index 0000000..d4619fd --- /dev/null +++ b/_static/doctools.js @@ -0,0 +1,247 @@ +/* + * doctools.js + * ~~~~~~~~~~~ + * + * Sphinx JavaScript utilities for all documentation. + * + * :copyright: Copyright 2007-2011 by the Sphinx team, see AUTHORS. + * :license: BSD, see LICENSE for details. + * + */ + +/** + * select a different prefix for underscore + */ +$u = _.noConflict(); + +/** + * make the code below compatible with browsers without + * an installed firebug like debugger +if (!window.console || !console.firebug) { + var names = ["log", "debug", "info", "warn", "error", "assert", "dir", + "dirxml", "group", "groupEnd", "time", "timeEnd", "count", "trace", + "profile", "profileEnd"]; + window.console = {}; + for (var i = 0; i < names.length; ++i) + window.console[names[i]] = function() {}; +} + */ + +/** + * small helper function to urldecode strings + */ +jQuery.urldecode = function(x) { + return decodeURIComponent(x).replace(/\+/g, ' '); +} + +/** + * small helper function to urlencode strings + */ +jQuery.urlencode = encodeURIComponent; + +/** + * This function returns the parsed url parameters of the + * current request. Multiple values per key are supported, + * it will always return arrays of strings for the value parts. + */ +jQuery.getQueryParameters = function(s) { + if (typeof s == 'undefined') + s = document.location.search; + var parts = s.substr(s.indexOf('?') + 1).split('&'); + var result = {}; + for (var i = 0; i < parts.length; i++) { + var tmp = parts[i].split('=', 2); + var key = jQuery.urldecode(tmp[0]); + var value = jQuery.urldecode(tmp[1]); + if (key in result) + result[key].push(value); + else + result[key] = [value]; + } + return result; +}; + +/** + * small function to check if an array contains + * a given item. + */ +jQuery.contains = function(arr, item) { + for (var i = 0; i < arr.length; i++) { + if (arr[i] == item) + return true; + } + return false; +}; + +/** + * highlight a given string on a jquery object by wrapping it in + * span elements with the given class name. + */ +jQuery.fn.highlightText = function(text, className) { + function highlight(node) { + if (node.nodeType == 3) { + var val = node.nodeValue; + var pos = val.toLowerCase().indexOf(text); + if (pos >= 0 && !jQuery(node.parentNode).hasClass(className)) { + var span = document.createElement("span"); + span.className = className; + span.appendChild(document.createTextNode(val.substr(pos, text.length))); + node.parentNode.insertBefore(span, node.parentNode.insertBefore( + document.createTextNode(val.substr(pos + text.length)), + node.nextSibling)); + node.nodeValue = val.substr(0, pos); + } + } + else if (!jQuery(node).is("button, select, textarea")) { + jQuery.each(node.childNodes, function() { + highlight(this); + }); + } + } + return this.each(function() { + highlight(this); + }); +}; + +/** + * Small JavaScript module for the documentation. + */ +var Documentation = { + + init : function() { + this.fixFirefoxAnchorBug(); + this.highlightSearchWords(); + this.initIndexTable(); + }, + + /** + * i18n support + */ + TRANSLATIONS : {}, + PLURAL_EXPR : function(n) { return n == 1 ? 0 : 1; }, + LOCALE : 'unknown', + + // gettext and ngettext don't access this so that the functions + // can safely bound to a different name (_ = Documentation.gettext) + gettext : function(string) { + var translated = Documentation.TRANSLATIONS[string]; + if (typeof translated == 'undefined') + return string; + return (typeof translated == 'string') ? translated : translated[0]; + }, + + ngettext : function(singular, plural, n) { + var translated = Documentation.TRANSLATIONS[singular]; + if (typeof translated == 'undefined') + return (n == 1) ? singular : plural; + return translated[Documentation.PLURALEXPR(n)]; + }, + + addTranslations : function(catalog) { + for (var key in catalog.messages) + this.TRANSLATIONS[key] = catalog.messages[key]; + this.PLURAL_EXPR = new Function('n', 'return +(' + catalog.plural_expr + ')'); + this.LOCALE = catalog.locale; + }, + + /** + * add context elements like header anchor links + */ + addContextElements : function() { + $('div[id] > :header:first').each(function() { + $('<a class="headerlink">\u00B6</a>'). + attr('href', '#' + this.id). + attr('title', _('Permalink to this headline')). + appendTo(this); + }); + $('dt[id]').each(function() { + $('<a class="headerlink">\u00B6</a>'). + attr('href', '#' + this.id). + attr('title', _('Permalink to this definition')). + appendTo(this); + }); + }, + + /** + * workaround a firefox stupidity + */ + fixFirefoxAnchorBug : function() { + if (document.location.hash && $.browser.mozilla) + window.setTimeout(function() { + document.location.href += ''; + }, 10); + }, + + /** + * highlight the search words provided in the url in the text + */ + highlightSearchWords : function() { + var params = $.getQueryParameters(); + var terms = (params.highlight) ? params.highlight[0].split(/\s+/) : []; + if (terms.length) { + var body = $('div.body'); + window.setTimeout(function() { + $.each(terms, function() { + body.highlightText(this.toLowerCase(), 'highlighted'); + }); + }, 10); + $('<p class="highlight-link"><a href="javascript:Documentation.' + + 'hideSearchWords()">' + _('Hide Search Matches') + '</a></p>') + .appendTo($('#searchbox')); + } + }, + + /** + * init the domain index toggle buttons + */ + initIndexTable : function() { + var togglers = $('img.toggler').click(function() { + var src = $(this).attr('src'); + var idnum = $(this).attr('id').substr(7); + $('tr.cg-' + idnum).toggle(); + if (src.substr(-9) == 'minus.png') + $(this).attr('src', src.substr(0, src.length-9) + 'plus.png'); + else + $(this).attr('src', src.substr(0, src.length-8) + 'minus.png'); + }).css('display', ''); + if (DOCUMENTATION_OPTIONS.COLLAPSE_INDEX) { + togglers.click(); + } + }, + + /** + * helper function to hide the search marks again + */ + hideSearchWords : function() { + $('#searchbox .highlight-link').fadeOut(300); + $('span.highlighted').removeClass('highlighted'); + }, + + /** + * make the url absolute + */ + makeURL : function(relativeURL) { + return DOCUMENTATION_OPTIONS.URL_ROOT + '/' + relativeURL; + }, + + /** + * get the current relative url + */ + getCurrentURL : function() { + var path = document.location.pathname; + var parts = path.split(/\//); + $.each(DOCUMENTATION_OPTIONS.URL_ROOT.split(/\//), function() { + if (this == '..') + parts.pop(); + }); + var url = parts.join('/'); + return path.substring(url.lastIndexOf('/') + 1, path.length - 1); + } +}; + +// quick alias for translations +_ = Documentation.gettext; + +$(document).ready(function() { + Documentation.init(); +}); diff --git a/_static/down-pressed.png b/_static/down-pressed.png new file mode 100644 index 0000000000000000000000000000000000000000..6f7ad782782e4f8e39b0c6e15c7344700cdd2527 GIT binary patch literal 368 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`jKx9jP7LeL$-D$|*pj^6U4S$Y z{B+)352QE?JR*yM+OLB!qm#z$3ZNi+iKnkC`z>}Z23@f-Ava~9&<9T!#}JFtXD=!G zGdl{fK6ro2OGiOl+hKvH6i=D3%%Y^j`yIkRn!8O>@bG)IQR0{Kf+mxNd=_WScA8u_ z3;8(7x2){m9`nt+U(Nab&1G)!{`SPVpDX$w8McLTzAJ39wprG3p4XLq$06M`%}2Yk zRPPsb<eOBuJzzJtaBsDHruj&MO}CkI9@oM{u93MWs^*chA=$e7rUh<GoTlU#?wGGz z*_K*(>ES*dnYm1wkGL;iioAUB*Or2kz6(-M_r_#Me-<g+a_(*JjN&U*z02OX#~$%( z6#3ZLekrlFz3AKX``cC&$K^ccDa(j?XLM8b!=w9;#rq6gQ-fH_ZUFtx;OXk;vd$@? F2>`{mj$Z%( literal 0 HcmV?d00001 diff --git a/_static/down.png b/_static/down.png new file mode 100644 index 0000000000000000000000000000000000000000..3003a88770de3977d47a2ba69893436a2860f9e7 GIT binary patch literal 363 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`jKx9jP7LeL$-D$|*pj^6U4S$Y z{B+)352QE?JR*yM+OLB!qm#z$3ZNi+iKnkC`z>}xaV3tUZ$qnrLa#kt978NlpS`ru z&)HFc^}^>{UOEce+71h5nn>6&w6A!ie<Ab_+oUB-{c$>Nbu1wh)UGh{8~et^#oZ1# z>T7oM=FZ~xXWnTo{qnXm$ZLOlqGswI_m2{XwVK)IJmBjW{J3-B3x@C=M{ShWt#<pw z+y29?H~r3Ic5@5&Ry#4lLZ0TfgDn1@D+(sA?zAeN{MGSl)<;wKn{AaYbJjJ-X;-#| zTD>fYS9M?R;8K$~YwlIqwf>VA7q=YKcwf2DS4Zj5inDKXXB1zl=(YO3ST6~rDq)&z z*o>z)=hxrfG-cDBW0G$!?6{M<$@{_4{m1o%Ub!naEtn|@^frU1tDnm{r-UW|!^@B8 literal 0 HcmV?d00001 diff --git a/_static/emma.css b/_static/emma.css new file mode 100644 index 0000000..7ff58b2 --- /dev/null +++ b/_static/emma.css @@ -0,0 +1,540 @@ +/* + * flasky.css_t + * ~~~~~~~~~~~~ + * + * :copyright: Copyright 2010 by Armin Ronacher. + * :license: Flask Design License, see LICENSE for details. + */ + + + + +@import url("basic.css"); + +/* -- page layout ----------------------------------------------------------- */ + +body { + font-family: 'Georgia', serif; + font-size: 15px; + background-color: white; + color: #000; + margin: 0; + padding: 0; +} + +div.document { + width: 940px; + margin: 30px auto 0 auto; +} + +div.documentwrapper { + float: left; + width: 100%; +} + +div.bodywrapper { + margin: 0 0 0 220px; +} + +div.sphinxsidebar { + width: 220px; +} + +hr { + border: 1px solid #B1B4B6; +} + +div.body { + padding: 0 30px 0 30px; +} + +img.floatingflask { + padding: 0 0 10px 10px; + float: right; +} + +div.footer { + width: 940px; + margin: 20px auto 30px auto; + font-size: 14px; + color: #888; + text-align: right; +} + +div.footer a { + color: #888; +} + +div.related { + display: none; +} + +div.sphinxsidebar a { + color: #444; + text-decoration: none; + border-bottom: 1px dotted #999; +} + +div.sphinxsidebar a:hover { + border-bottom: 1px solid #999; +} + +div.sphinxsidebar { + font-size: 14px; + line-height: 1.5; +} + +div.sphinxsidebarwrapper { + padding: 18px 10px; +} + +div.sphinxsidebarwrapper p.logo { + padding: 0 0 20px 0; + margin: 0; + text-align: center; +} + +div.sphinxsidebar h3, +div.sphinxsidebar h4 { + font-family: 'Garamond', 'Georgia', serif; + color: #444; + font-size: 24px; + font-weight: normal; + margin: 0 0 5px 0; + padding: 0; +} + +div.sphinxsidebar h4 { + font-size: 20px; +} + +div.sphinxsidebar h3 a { + color: #444; +} + +div.sphinxsidebar p.logo a, +div.sphinxsidebar h3 a, +div.sphinxsidebar p.logo a:hover, +div.sphinxsidebar h3 a:hover { + border: none; +} + +div.sphinxsidebar p { + color: #555; + margin: 10px 0; +} + +div.sphinxsidebar ul { + margin: 10px 0; + padding: 0; + color: #000; +} + +div.sphinxsidebar input { + border: 1px solid #ccc; + font-family: 'Georgia', serif; + font-size: 1em; +} + +/* -- body styles ----------------------------------------------------------- */ + +a { + color: #004B6B; + text-decoration: underline; +} + +a:hover { + color: #6D4100; + text-decoration: underline; +} + +div.body h1, +div.body h2, +div.body h3, +div.body h4, +div.body h5, +div.body h6 { + font-family: 'Garamond', 'Georgia', serif; + font-weight: normal; + margin: 30px 0px 10px 0px; + padding: 0; +} + +div.body h1 { margin-top: 0; padding-top: 0; font-size: 240%; } +div.body h2 { font-size: 180%; } +div.body h3 { font-size: 150%; } +div.body h4 { font-size: 130%; } +div.body h5 { font-size: 100%; } +div.body h6 { font-size: 100%; } + +a.headerlink { + color: #ddd; + padding: 0 4px; + text-decoration: none; +} + +a.headerlink:hover { + color: #444; + background: #eaeaea; +} + +div.body p, div.body dd, div.body li { + line-height: 1.4em; +} + +div.admonition { + background: #fafafa; + margin: 20px -30px; + padding: 10px 30px; + border-top: 1px solid #ccc; + border-bottom: 1px solid #ccc; +} + +div.admonition tt.xref, div.admonition a tt { + border-bottom: 1px solid #fafafa; +} + +dd div.admonition { + margin-left: -60px; + padding-left: 60px; +} + +div.admonition p.admonition-title { + font-family: 'Garamond', 'Georgia', serif; + font-weight: normal; + font-size: 24px; + margin: 0 0 10px 0; + padding: 0; + line-height: 1; +} + +div.admonition p.last { + margin-bottom: 0; +} + +div.highlight { + background-color: white; +} + +dt:target, .highlight { + background: #FAF3E8; +} + +div.note { + background-color: #eee; + border: 1px solid #ccc; +} + +div.seealso { + background-color: #ffc; + border: 1px solid #ff6; +} + +div.topic { + background-color: #eee; +} + +p.admonition-title { + display: inline; +} + +p.admonition-title:after { + content: ":"; +} + +pre, tt { + font-family: 'Consolas', 'Menlo', 'Deja Vu Sans Mono', 'Bitstream Vera Sans Mono', monospace; + font-size: 0.9em; +} + +img.screenshot { +} + +tt.descname, tt.descclassname { + font-size: 0.95em; +} + +tt.descname { + padding-right: 0.08em; +} + +img.screenshot { + -moz-box-shadow: 2px 2px 4px #eee; + -webkit-box-shadow: 2px 2px 4px #eee; + box-shadow: 2px 2px 4px #eee; +} + +table.docutils { + border: 1px solid #888; + -moz-box-shadow: 2px 2px 4px #eee; + -webkit-box-shadow: 2px 2px 4px #eee; + box-shadow: 2px 2px 4px #eee; +} + +table.docutils td, table.docutils th { + border: 1px solid #888; + padding: 0.25em 0.7em; +} + +table.field-list, table.footnote { + border: none; + -moz-box-shadow: none; + -webkit-box-shadow: none; + box-shadow: none; +} + +table.footnote { + margin: 15px 0; + width: 100%; + border: 1px solid #eee; + background: #fdfdfd; + font-size: 0.9em; +} + +table.footnote + table.footnote { + margin-top: -15px; + border-top: none; +} + +table.field-list th { + padding: 0 0.8em 0 0; +} + +table.field-list td { + padding: 0; +} + +table.footnote td.label { + width: 0px; + padding: 0.3em 0 0.3em 0.5em; +} + +table.footnote td { + padding: 0.3em 0.5em; +} + +dl { + margin: 0; + padding: 0; +} + +dl dd { + margin-left: 30px; +} + +blockquote { + margin: 0 0 0 30px; + padding: 0; +} + +ul, ol { + margin: 10px 0 10px 30px; + padding: 0; +} + +pre { + background: #eee; + padding: 7px 30px; + margin: 15px -12px; + line-height: 1.3em; + -moz-border-radius: 8px; + -webkit-border-radius: 8px; + border: solid 1px #ddd; + -webkit-box-shadow: #DFDFDF 3px 3px 5px; + -moz-box-shadow: #DFDFDF 3px 3px 5px; + box-shadow: #DFDFDF 3px 3px 5px; +} + +dl pre, blockquote pre, li pre { + margin-left: -60px; + padding-left: 60px; +} + +dl dl pre { + margin-left: -90px; + padding-left: 90px; +} + +tt { + background-color: #ecf0f3; + color: #222; + /* padding: 1px 2px; */ +} + +tt.xref, a tt { + background-color: #FBFBFB; + border-bottom: 1px solid white; +} + +a.reference { + text-decoration: none; + border-bottom: 1px dotted #004B6B; +} + +a.reference:hover { + border-bottom: 1px solid #6D4100; +} + +a.footnote-reference { + text-decoration: none; + font-size: 0.7em; + vertical-align: top; + border-bottom: 1px dotted #004B6B; +} + +a.footnote-reference:hover { + border-bottom: 1px solid #6D4100; +} + +a:hover tt { + background: #EEE; +} + + +/******************************************************** +********************************************************* +* Begin massive and hackish resets +********************************************************* +********************************************************/ + + + + +/* fonts.css from the YUI Library: developer.yahoo.com/yui/ + Refer to developer.yahoo.com/yui/3/cssfonts/ for font sizing percentages + + There are three custom edits: + * remove arial, helvetica from explicit font stack + * we normalize monospace styles ourselves + * table font-size is reset in the HTML5 reset above so there is no need to repeat +*/ +body { font:13px/1.231 sans-serif; *font-size:small; } /* hack retained to preserve specificity */ + +select, input, textarea, button { font:99% sans-serif; } + +/* normalize monospace sizing + * en.wikipedia.org/wiki/MediaWiki_talk:Common.css/Archive_11#Teletype_style_fix_for_Chrome + */ +pre, code, kbd, samp { font-family: monospace, sans-serif; } + + +/* + * minimal base styles + */ + + +body, select, input, textarea { + /* #444 looks better than black: twitter.com/H_FJ/statuses/11800719859 */ + color: #444; + /* set your base font here, to apply evenly */ + /* font-family: Georgia, serif; */ +} + +/* Headers (h1,h2,etc) have no default font-size or margin, + you'll want to define those yourself. */ +h1,h2,h3,h4,h5,h6 { font-weight: bold; } + +/* always force a scrollbar in non-IE */ +html { overflow-y: scroll; } + + +/* Accessible focus treatment: people.opera.com/patrickl/experiments/keyboard/test */ +a:hover, a:active, a:focus, a::-moz-focus-inner { outline: none; } +button::-moz-focus-inner, +input[type="reset"]::-moz-focus-inner, +input[type="button"]::-moz-focus-inner, +input[type="submit"]::-moz-focus-inner, +input[type="file"] > input[type="button"]::-moz-focus-inner { border: none; } + +a, a:active, a:visited { color: #607890; } +a:hover { color: #036; } + + +ul, ol { margin-left: 1.8em; } +ol { list-style-type: decimal; } + +/* Remove margins for navigation lists */ +nav ul, nav li { margin: 0; } + +small { font-size: 85%; } +strong, th { font-weight: bold; } + +td, td img { vertical-align: top; } + +sub { vertical-align: sub; font-size: smaller; } +sup { vertical-align: super; font-size: smaller; } + +pre { + padding: 15px; + + /* www.pathf.com/blogs/2008/05/formatting-quoted-code-in-blog-posts-css21-white-space-pre-wrap/ */ + white-space: pre; /* CSS2 */ + word-wrap: break-word; /* IE */ +} + +textarea { overflow: auto; } /* thnx ivannikolic! www.sitepoint.com/blogs/2010/08/20/ie-remove-textarea-scrollbars/ */ + +.clearer { display:none; } + +/******************************************************** +********************************************************* +* FONT-FACE +********************************************************* +********************************************************/ +@font-face { + font-family: 'BebasNeueRegular'; + src: url('img/fonts/BebasNeue-webfont.eot'); + src: url('img/fonts/BebasNeue-webfont.eot?#iefix') format('embedded-opentype'), + url('img/fonts/BebasNeue-webfont.woff') format('woff'), + url('img/fonts/BebasNeue-webfont.ttf') format('truetype'), + url('img/fonts/BebasNeue-webfont.svg#BebasNeueRegular') format('svg'); + font-weight: normal; + font-style: normal; + +} + +/******************************************************** +********************************************************* +* Begin hackish stylings +********************************************************* +********************************************************/ + +body { background:url(img/bg-header.png) 0 -10px repeat-x, url(img/bg-body.jpg); } + +.highlight-python { position:relative; z-index:2; margin-bottom:12px; } +.highlight-python:before { position:absolute; left:0; top:0; content:''; display:block; width:100%; height:100%; background:#ccc; -webkit-box-shadow:0 4px 4px #ccc; -moz-box-shadow:0 4px 4px #ccc; box-shadow:0 4px 4px #ccc; z-index:-1; opacity:.5; } +pre { background:#fff; z-index:3; -webkit-border-radius:0; -moz-border-radius:0; border-radius:0; -webkit-box-shadow:none; -moz-box-shadow:none; box-shadow:none; } + + +/*Header - Main*/ +header[role="banner"] { height:140px; max-width:1140px; margin:16px auto 0; } +header[role="banner"] h1 { width:342px; height:86px; margin:0 auto; background:url(img/logo.png) no-repeat; text-indent:-9999px; } + +/*Page*/ +div.document { position:relative; margin-top:0; } + +/*Sidebar*/ +div.sphinxsidebar { } +div.sphinxsidebarwrapper { } +div.sphinxsidebar a { color:#507B9B; } +div.sphinxsidebar h3, div.sphinxsidebar h3 a { position:relative; margin-top:24px; padding-top:6px; font-family:'BebasNeueRegular'; /*border-top:3px solid #666;*/ color:#999; text-decoration:none; border:none; } +div.sphinxsidebar h3 a { border:none; } + div.sphinxsidebar h3:first-child { margin-top:0; } +/* div.sphinxsidebar h3:before { content:''; display:block; position:absolute; left:0; top:3px; width:100%; height:100%; border-top:1px solid #666; }*/ +div.sphinxsidebarwrapper > ul > li { margin-bottom:24px; } +div.sphinxsidebarwrapper > ul > li > a { } +div.sphinxsidebarwrapper > ul > li > a:hover { border:none; } +div.sphinxsidebar ul ul { margin-top:8px; } +div.sphinxsidebar ul ul ul { margin-top:8px; } +div.sphinxsidebar li { margin-bottom:12px; font-weight:bold; font-size:12px; } +div.sphinxsidebar li li { font-weight:normal; font-size:12px; } + div.sphinxsidebar li li a { color:#507B9B; } + +/*Main Content*/ +div.bodywrapper { position:relative; z-index:2; } +div.body { position:relative; padding:0 30px 30px; z-index:3; } + div.body h1 { margin-bottom:24px; font-family:"Helvetica",Arial,sans-serif; font-weight:bold; font-size:32px; } + div.body .section { margin-top:24px; } + div.body .section:first-child { margin-top:0; } + div.body h2 { margin-top:24px; margin-bottom:12px; font-family:"Helvetica",Arial,sans-serif; font-weight:bold; font-size:20px; color:#666; } +div.body p, div.body dd, div.body li { line-height: 1.4em; } \ No newline at end of file diff --git a/_static/file.png b/_static/file.png new file mode 100644 index 0000000000000000000000000000000000000000..d18082e397e7e54f20721af768c4c2983258f1b4 GIT binary patch literal 392 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Y)RhkE)4%caKYZ?lYt_f1s;*b z3=G`DAk4@xYmNj^kiEpy*OmP$Hy<xMqvo~{83qPMQBN1g5R21mCvNmQ;vmqr-?K<V zU4kQ;TS-l(;>OL$D9)yc9|lc|nKf<9@eUiWd>3GuTC!a5vdfWYEazjncPj5ZQX%+1 zt8B*4=d)!cdDz4wr^#OMYfqGz$1LDFF>|#>*O?<HXR=hzTfCLc!DZQEwT&GKx6RhQ zo))l-Eh>AGil(WEs?wLLy{Gj2J_@opDm%`dlax3yA*@*N$G&*ukFv>P8+2CBWO(qz zD0k1@kN>hhb1_6`&wrCswzINE(evt-5C1B^STi2@P<G<wTm_|``|B7th)+*kX+Pib z*M}qKJqcfCd_2yP9QQKsOSb)vO-|{xyF)I_-07lx@Zvo#rJ$WIhTj)AKCk@a+86Xn ktMBn$GheTj#{azILsys7Te#I72ZkAgr>mdKI;Vst0PQB6!2kdN literal 0 HcmV?d00001 diff --git a/_static/img/bg-body.jpg b/_static/img/bg-body.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3d539f5713ff8f885cb0dc0c407af363cd26f6a2 GIT binary patch literal 5249 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 XJ=HW7n9?x$_qiVXuXFuh*6aTRYHh2J literal 0 HcmV?d00001 diff --git a/_static/img/bg-header.png b/_static/img/bg-header.png new file mode 100644 index 0000000000000000000000000000000000000000..2f754d74b189bd7748c2d0c417247df3dfd02510 GIT binary patch literal 2051 zcmV+e2>kbnP)<h;3K|Lk000e1NJLTq000yK003SH0ssI2tSF;U0000PbVXQnQ*UN; zcVTj606}DLVr3vnZDD6+Qe|Oed2z{QJOBU(rAb6VRCwB4*vGciyb^|Cy4&O&2HgLR zF=NCc#|>=$SAI+_&hbDkOQlkUuY&vZ`t|Euw{G3MdGpJcFWa_VE|*`weqCQ*|Ni~E z#XEQIeEs_M#*G_){`_g{>guY=y?gf>fBg7y?!fo&-#ZzLpFe+o`t+%j&2Q|_+qZAy z(xhXJtv`JD@Z-mipFe*-pU+$DPp4CC8XrA+)J8;Y+`fG~_TAipUhm$$`|aDeCN18- ze?OY&Pp@9R>U<(~LwoM&^2QFtw3QTT-XuoNBaR?0>*mf-rrVOLc`Hk$^SMi+POlDk zz_B!qI9|&_sk;4r(z!8}o<4n=oH2Uv;6cKZIdR%;F_DvE9i~a|i`mZg@#Dvhk!IL- zyKPR=tKDU=r0S>fv_J8SaW}I<ie$pp+3DT8cWl{84m$VKOPVJ<Q(g9_lN4^3M(ws9 zJwtB92nH?L?ltp_Z<3-(=aVIxluv~2@3N)ohYufOLn~%)o~qr+NW4lr?&Qd2_EhQ} zJSo#WS(v0TkijE!;KH06fr-Stap{%XfWeTAnjmpcsC5t>gEw|(d(anC9s*$!A?|fy zDT<^|^Y$o{Jy?PL8NU@cW8l`4blu#YqOy(71Syt>!B`N!t1^nfq{0G;Gn~=Gwxo!< zT|&mII}_o_lPB#iv6(S>NGO=a2Hn^)J5ex;hX0s$<n-pvo0yF!=0cDpHg`aqVC+bT z4_Com$snsVffkF6-5eY`DNoF}qOaB1Pojx&?A<KLqJe_z{mHa!arhaYT9O8&yIy%^ zL<215Sn!M@NM(j`1D^p5Ta0hh6AcI~thaPvbr(|TPHZyD<kOfEY8i}qI}pFD)wPXa zn4YngSosoQ*nf=@nn2;$5EkyqBJbuTp6`{x+U<^IiAYyA+YYqFQm#}(_`LgNXfnz_ zTc*OP^L)ln{2`=Tk&<~ab&zfE-@oUy#E5Zs!dZ08UXYQi#cTlx3edJ9Yd0pWAK|iX z>B8;ftzIKe7qT=S{A8lpQ${*Z$;Lp|`GjvCeW#YrqX27@s_hjtJEYvxI-mC{C3Wyz ze2rlLH;)?Kl+NsuYD!<m+EC9W@oOW50Zc-*zQDAX@kaSfsyRP<_ADU>1I=YmKA$qw z$*CR@ckQxvq;lo5-VQY_f=E(mdTkd%iCrdIyD*qZVvHz8B~#cEp{=8l$*H#LiJGoB zVN6MNyVpDW!zkJvELH;Vh9r-@W39$gGHkJtQbM&!rThBtvkemMO(a{CtCCrB(u&-M zU^!s9`+QDM;`QX@0!GG;NTbyXp_+@?&7I;#iktR>@T#A{p0Gb$^KXjkkxZv1>M6v$ zYkP(BRT#0)y!fTF?3ZCC618#?0C;tBT`n!qGa~2*AgL=lIyXtcRLF&;s#P9dzI-`p zu~o@YTh+*H8oDXt(+aMJhLffspaVk|60=#9+G^-hD&D=fil4SX4z%9kgcLljYwL)! zbe7OT*X2NNB`Goor-+;}`xXN!GNMLi1Stkn6-cC&nWA^mW&$?dq5wwnGi1JX{%U_j z=q6XQtps)y?mg%^OkfegwYXoV>t$gT$H#)^s#g*<F8BN`EDPKEfNbazxbHPNnMWGz zs``d@18kGdFKFhySOymq0K=1%)ak1dO;XeDijdUHW}3x&`=gskx3&~<jW3IcU*^0- zt&gBpW9)T+tUa=5r2&C!me_Kd&`ng)>zJq-TSPV~<%lZTP=03#amoc=)zE1j(qg$r zm5iSbw1f=dYL%4GVR=TVC~wO&{Y++xcah8(of+K#TO}w$6nZ{CoJp!)^~KW-X_4Z^ zsVY9}{LdHFeAnPAHkenxEt3Mp@tGh*CiU{OazhsD3Ii;JvqeU{QA~uuGi&KdSrk;e z=IBX$IZUCNhJd%`14S91K3EfYkumtwRaBK|z*rg9b^qItUY<XHuFS(QCwZM1&dwsS zJM?W@r^^^);He3~TfnlmLdj30J3gD^=Zi{TE)yN!_NUYImjr3+C|$qyN3CjvnI@W5 z?S^dQ+kuW`S@8@sK+jZMB7l`XIs<HC9=$S@iaXx^xj)nsWTGAHCdn>?X%hxpOr=Dq z74s)SWO559uZWOV$TOX8EdKm`=8I4agUyj!xkTQlWTcb2)%}Y0_#6c3e3`CkK1U`k zv%(~k=I}Fr5*=Ny{~Sojhrl3jHkYj&n-I7lWtF4H+51ItPx(O=X-T)7uRiDGC@KY# zVUGmPNnp#16L3o-ho{G5IsFy2IRXJZtMW?<`Bjv`^NSZR+5=U+io`tmRNu7FE=4Jv ztfIxB=X|fQ_EZ&r`)rea+D>Pku8w+e>I2KVhE#6bq(X@bjNw_XH2xddKD>BgVVhtC zPXF+vYvC9gkzCR3Sh;2Ctb%AfCWbgekZ8PJ6{GpyTQuWapPD*q7iu^BbAq~g^gO>J zlwyGC+G(f+?UY!kDwB%Vl_C7~F<qM;Z#wAioY;_avIV1DG|N~DV{xL;$#^t!KalXb zuKg^YKyCgB^rxG$s`vFbmP~NOCK<R9+$WQX#N&^~T?()9Ei10e(rS8a{jwaQl^Q(9 hOCLsTasHnG0|3!62{R~G)+7J`002ovPDHLkV1i5?2E70P literal 0 HcmV?d00001 diff --git a/_static/img/fonts/BebasNeue-webfont.eot b/_static/img/fonts/BebasNeue-webfont.eot new file mode 100755 index 0000000000000000000000000000000000000000..ca5d03ecd55995595259d28659e9918f404247db GIT binary patch literal 16362 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	@*kvqX!jkmsGB>LBYPwX> zCM{8>d(=?g5}lO~QmQsx_(}88nIx4JjcSi%r4{#MlMaC0NIFP+(tH3ls3nJ?K8mGi z_XSl48fH-NF;G=LfELX{j@C<_o_O#i4B{=2Uow3+?KApT64KY-ep@YYST>5i=>{_} zgwvrQkC(S@$5xh!?J*lANf}E^oZ_=9+gkXgO7t^p9Au^l-Bi`=@?r5NS79n3CMS>J zG4=xKW_M$W7>mvq)-e?wLThH%-=}zuL8WBsJ*&UhI2f|gV&XciP0CL%B#p!*XLWy~ zT`T00)~*k=J7vIN0#?>-WEW;#WwIm;q$uwGoA+Tw?}(i{1x&j$R=YR*W^224;kq$0 zNlnJKVp&saI*FrQ5r0m#oPCDB2KQq5e7*U{P5+9>jX2n7i&^`ENH+~6L7JxAn>mgp z_VH81>wB8_cU@~*%v)`H(J62*iiHqOB*ds-(GS{Velsex@s2w&n@oN1s+^Ho^hWc4 z3;<Z$0xFvZXVA3<ygz<&y;JzalU$b`2{se$7+6K}z2-Ei$K+G`s!YJq?1&zFplv;M zgNc(0p+kas(&VW`Mew|<J-`d&)0$kaK`xP3e&()u!wRwaec%APO&1Q(xEYL{JYlRT zKyMn+B%^b{dXk?Wt*|RJ-oBY?H7`7*wg#CIaLCw5Cb9=arG&Hvx~dR|{nlYfIEPd= z=Hs}8u(qk1Z%WA)YG1C)4wr#wiy}peobk89aa&zg4KZkE0?gn38~?p>-1%4Trj@WR z_b<`x0<@-DX5z~ioKyo?5V~@SbH%Yp6iS`#u`{uvmQ-<b!%{`j<*6K<WvTrznc)Wx zLK~Xo(yh_sxJb1NBmJ1$%e`esh5^rHw5=?zuQe2Po7JRW!b!?Fqh#8ksbjjsr5MA< zsdxsJ>p$>gorBNd##Hq)cJd<g_TGFf6*a)0GyFeQ$1CIY9-Jo49!Ac-G*(vpp=X1h zr@I;3F8zE<!;bQc-vGy8qx6><4_|;<z;3&kOXv=to8G0-TbT}zi&Rmg>p!Z6_>i=p zmY=T)(SIW$vmda;gwB1^cr7)_Ge{V6sj(C!42(K}v*bMfQu6Q)@H3+Lyl5XxhMus? z&<`oS=}iI-$iMp#jBJVWLkLL~SpNLRYlaD;zU!i(!~FZ*Z)Md#Y8dmOMv>1ocnLS@ zo&N~m5O&_B^OfUm;1ba_115X{Kyy@m)#scat=%{!K<ehKJXurzsYG_7V;bCO$WwNP zMU?;PUe47UGqJpCDsSsx3#tnR8e+#%{Dlbqg5B6VYW13*@-&Z{7fV#9FcRGJQ#WO1 zm1B3H@j}^7RLlar_qX8ox<^izR{F)Q+-nZ9o0DrHYsK}!EGsYRhg_SP2uWTS(nkf2 zTz2)vDt19q#ms4vx|E=)iNoINmQz^-U!9_~lv&v)-(<V|{)^eAVOuVs2o%Wvj2ME8 zA?agRD=&A3x6bMbIHom7OHr}@412QC*Ak}w)%AIooVa0ln{M$b_T0m=n2{0@!f$1~ z$LkhzD-77Am1XkF`NAw+M^I9||AGFCobI+ER^CB7CldW8m-dBSI*NNqQX?oQk`?kz zI{(ua1N>TN?6^On0^*Ff7c1OqW3VCHSS4>K>q3Uz78JVqE@eg@sr-H$&^qtDXKO7Z z6yCbqoDoo=9kr~gW}z4dym}vr8t)s)6F{ikorn~z8Ol7I^l(n6+y62&q2M;rwG+Sz z`F8}yq4}xf2CK~WiQ<_VvFPY{rS<SHO(-d3N+Ft?#1H2JLke?{l}2Hn+6YMBObd$X zT~w-cW8?D3BH(F>2Pv&oGMH`5{Uaz1^;Nq>IGBM|V-j=iBRz$sHYy^GC|*wLr_s1T zqt!Hu2Duu~v2XfftF#`{lu#tGqz@3D%-U^CQ<2#dM!^;eS4&2SG1OfA@bP|YO9l<I zOlBYRvgJ(3g^VK((lu2?Z<pwCbg?`Un*MGzn-%9Lt5XSI%I|sQn6~q}ad<@>OP4ow zcExeyxc0wqXnm^S^_ekk@cR~|uv!v9rGQ5F{1F^a!ix2^xnyDd@B}3qlJcj{kRFlk zpBS-B|5!0Tsy5LqV6$zgBf5(#P>1V>WbSNuy0xuGGc1gGO*7KgYD!pu9aHfM1kMTg zTSB%(t2GjSe*pU;%H_e4G-`<LZ%cZn+2c>wp)fU@=Eo!~_3||qFLkLL_(`fE1w%jj zWWmdA6CmOdm~4a9-TyTTF>UWH%VFPaMoAkkd#|^F%Mkkkjg`wZ(rM^6GO>~2#2;Y- zmX_QRqI|6*Y9E!@)KiVZY|tW=4anDz9?;Gsu3Q|i0lLy?gwe_<{=Bw$oL$q`!@h^I z%_RtP^GcR~%^hO>>}a#wvhv=;&QE4mGd&-w@S?MByQ3~giq&&E*DzQr$)@{rFKSj* zNG@#1cUxq%u(X4M;2T3R`x%)67E#?iS0tDG@V;#omJM)eS(7<jtHcBJEP1B!_v%^T z*N1-+$m+XFZ{ghCk&9j6FD`zmCJs0Ap=x1fae;rE^8tNUg^+)&2Z_6Y*dANZnA6B* zq2?%#-u@SW8c6b3mFCxLN(Wb7r&J=JGWDM~HTf}n+ZBDA<FbGQW26n<4vAQkc(oTl z7^^wxM=VFZ;f@kuw#s_(G>yBgJy^>E&pI3_J5KtbYlojliQC6yZmc>xA?o-a`g^q* zJ@EI<W00I^T*mmLvPY!F+;>=bT%j}JR>V<qgBdUsr&&K@`e`Jho0cLYL9=AbOHLzl zKR@S(Dw{R)WrBYu4%!JHzM$ezAi&bYL6--xA@+n@HyDe-HHgE7JJNl+T5D^WYdR_x z#f2ZlQz}?Jf>4&JR!}A|=!4X3>@s{~D50TsnGEGtR&v^;ynP4pwMN!)Ed?wyZ-h(U zV-Psfk8gHKt9qr_0|PR1e+ZYDoKAE1T@Q%|81O<(oY}a@a=_~SYO~{rX^?gL_X=ci z%kz2*c+cjuPAJ$f9H1arf@7jaUfwB`I<*4XPZE5uRz6ngiBWNG?SJ&aYB9mYmv_L? zU9e9^`rmC@jedirqku?vsUrh((++n7J}%wGL3;@?yX2czxH@tCN{3Ajwj-qHZmT4m zEt&%W7h<MfP<ZR6=I>`YY#}U}9TzzOHxi%?PrY&<iAYXyWxjqFPPLYBzVgf{AG9DL zNRuE%|Cc-#iywpRQ%2=VR4_|({gpJBak{h7>Y;cCT=H$wcY`3o?GbFW*(PUCJA~e> znVkU=_{1wav6T^ginASF2{}gJ=(&nxvle0ROt=WXs#TpCSq;OiKeG1!teQBw77;n# zLo;8+4ft$Q3;w>^IrUL}#TrXhDP_i_is@zCqYj<L1}5>hC`0%CX~`E`!hqToEnPKT z*dqZc_Nrj^X|D0#MFANHK+qtq2|&j!=Ja{>_;c*UUO=|aAH=F!V)54ra6c+_!QPq@ zfrlrB-lT}OwC~WGZU;;H`o~COvkFfimSfyeL3!m1M1_$CrD5+kfJY-b&!C#$FKq8u zr0}j?q1(UuWFGfH0jj|cGpGla_02|m7deUy!cHeT5xd&-mmKA8AW1r(0F$ORKRa~w z?CDPnVee^gnZ&3vTPi2TTnzj;A@>BGSZQ2QOpJDrNaJ?A=Hvbhv~7k$&c;*rag7JM ztJ;Mh>pVE?3P+xCzYwql!MKCXMD!@zNo4s9EM-3v3d<xUiF)ccUF?(PM~0m1>BC<J z2davXPnqB)GYGMgt*18p$*mVq(thDcwxOLsaH}u}EsNFx>V=pC3PKWQy7+b7l{F`b zzdr@%R$oMOvUo!X;JdUxpUJ$mv9gaZGvvC~LRg7oL&oxcqbjC@X=rL~gwIepYk^=A zr1og_BE%No0jVRei1IWQ&~fm-X~MG2CrX@p5hrDu%+hnWjQ@B6{<NSpRgsphl*bco zfdW&fb$E9?%y||(IZcW@$hH+W>yb1JUqZ1PCl{2}Q86iW@cUYz^cCX&#^&91X(7Y% zAA80${ZU!bHV;M7VOLFWj*|KW6-<BU3$xi>`ro_1j~Z7I;}mZ@TSlmrtNG5~(xIY~ zmx)}6qp*xBvYJR*m&+oH77QZtK5<3z$pS1eJTqf8yj9;<Z^<;GW@0x*QKQ7p#Kv*? z$}rV-3@WP^$}2L2fro!R2+QqdA|St~iNAP6Be8LKNN}ECSCn~pk+l>oX|-F7-kFEd z!6MO!Q|@6;?rbDu81%x0Xx6?zB51FzJp6Z4>sO%GA#?j`!((F>qo7|hRYy1Nl@vPK z&bMcRKaxFQ=VACom>9lG@A%{iRp6M&ETqSTlzi#EmWexpk1G2`Fy|y3>xrOKLFN7M zcMi!0qj1I;jsxO?s$1@Wy<DZ*49c{Eq*vxFb}fH8SQUcQ?3g}DjlSUC)yVqhowayQ zcPI3fK*T^hF8&|;zFs6SeNx7nO|ei44$a`iB*I~^Vs(r7Fmi(Fl6l<oj@8e0g=V1J z_-r{knMb1|a2$ejH}o*h&z_&5Blg)rSflz=720RnMhSF2TJ;1m(|#p4>0<&j>;-fQ z@YuE7eqi7vG6G6o^*68IY>7&0V6{m%5!@gnJpMfQZJek50HaaT0K3prW}9L$^^2UW z%E8c_#$3mzu_cR=3xaYF&-C{vciDd^11_B9K>uQv2^c@6X%qG?Ws@#gjJkytf2naO z-9XtOb7F$1el3c8yMGfCAl!VEJdX#L6t+4HG>rttkFtvRhAGdfK!cTI<I{+cPhue) zkd)eBO<9ey5HwnAaQrlRiED`wKX>n>J1CWUPaO#g!3A-t4C(_t1Y`yY09AwE!=(M? z*ob4SK1xam9rB=wIywfrANe~9HKUb~Cn9+axjs4c2ea;n20na1zg^z@%>0M&_(QZg z+0Sm`+H-dQK)Z!q_NSo9`JeZ#1#C>+_|NBGRUcVW{ei_1S|mpL)YxV2eb%7SBKWj# zR-q-vXK@}%vTd$J-C)P@lO%SoJmHvgHvKn_P9qWoG}1lx5_TqQNYPd7z*V*Fn9jl9 znSoE~VJ4-ku9D9LbzQSWwe|-QymZ#6VN?#C?N<_OxK9cBI}Z_OfxH?*8VejH0lQRo zS(nXaSXeJ|XBG00y&~s<`IAv`e6r}G2A=Ql{;j3*P}z(&HROJE6rfC^=A%D_RLIe= z#X80gbl#{SktpWLI#Zmq8-WqB_`4{sm1@$OmdJm%sFF!ae%VrG*Mo%k(RvkLg~HGx zqXr69f2Bf#DU=U*_e@cY<&@A&Wy0sZ_fu#A&4tR`_sqHKl<Y^E2@a;&cX9ftuFQ`% zEVisU5*fz-t09C{GX9r}{3)wDQC4_Nl$4c)<~A=oZRQ|@E(-JO1rKx-&r1m2{Okhc zx8nlaF%0+IT@zr#e1x$-Wp%I9c5zHHBvn!nAA2TI)}|X4G$;~SUiBF1=H|_$Z^=0{ zt7thH8JE&3@0_ER-%O-`zfm%c0k>=i<|nYMB{yaDO$&VY>sZGtBVjI@lZBDrWnDd? zm*(Ahwq*11C8Vj|)hWNz9nv&{=&gMQ&Tb+a=K)EMnYFUZTJ3ZKd;i8M|8XLA*vaRq z?i2Qq-jFMOE<j<#SMdszJYnH1MgLx*>Inv59_nlHQcqK{QTZ3e|B~uDce>IUAMr<L zh(!{R_?u3l`aLXTycuae4M(bm$;6zcEgAfy@{!q03ct628>H)eM8rm?FIHl?P#(n` z62QU5!+V0tbZ-nuH6~t05z(Z3OOQhe)4r1UVO5(|DO|Fs9p=RGo`tv#7cHBul}9gN zLRq6v#&FTrvfM32=ziJDFWE#uoOj)5zHeri<hIL%+&|k(GbACmV15^*FDqR7Q~py2 z%xJVmMwlxNz%r~R^Iqvx<aNnkWufv!Tq`0ml{rI16EWoN3^B~SjxISR+6&GY0Rv2E zA0yw2LfJ72L(|4Q?zc4nn{F5xOFzH3dNbg|W2xkFe7qLx$BRPixo~Va-z}}bdop$l zW|Wn|0Wt{D(lW77AYs{&)T3ag2mRz()|{E0+!1}3PU@ZalykXs;Ed09%(Xi3Kon3N zy#L_AgVVF}GqP=I*J$=dmgg@dm7boSdfj27rflN;z(pCIF%!}_abhPxc@ncO`-Oy( zmqCpssnKyY%<JBv-PHP>XIR)@E{q2}JTREc=+dez^nk@(Q!D%d28Ez=AEPB!1R(Hx z^De@NV$of$CnMVsjWw!Yd8|&@WF&$VAEDzn>=q(Z09SpP@*P0I%3tnUDQo#-=Z!Ew zIm$Yn=eg&;aD^0ibiE|(U+Yn}2{S@;8WI13hpZ@Pe1JhYrJ>Zy%{I@`&hKpE-U%Fp z7w0qyv#(U6kwI$!4@S0Vf~k_&CA38!RCuHx&a_vSO;=z>BzUrq+izb7o1cpgXC*)7 zxX=B{oj`&{VIi*v(?q$eKGhb|i#tk3(`ATmqwOHKnZ*&_Xxm3l6>Cv#+eGNRaT|ep zsml@V6#qTD=7zSYDeSeD>`9$4Hrh^GZpG_{dq)kwAuV7vVrKVD+_F%-D}5jCrs=mD z{^mg+Bclw)5FLX<zs;|Bid^lfU&s7nWViw9lW})Kpnu@KF^j*%`F%qhL%m1%>%sad z-s2s3*oN&g4)s)5{q1T^L=W9X?D5(ws(e*$z-Qry-R1^=n*0o3gX8#GfTAhvhUP^* zdWdlBzhCkY=eYcK`N1u$ni~)%UfIL|Q5Ge7nDz36W|eUJ_t@jqKL&rg>rv9wO(iaw z`U}a({6~l!uV{>=Bk5764CvEP0^4qjdLo>O)&5vLmV36OT5WiNJrD8A*XZj(L1Bwn zEU`!g&9y8fk;~5sg8N)L@7x`Ski%s=jNw`rwc=_ZYo4xBbJt>S-(E<tAK@er)BYy8 zqOZh@zoC(Gk<^1^&wiD~&PfDERrWZ$V+lHAPj}j1INW+JIjSFMt!-%8u-V;~oJmkX z$G}+LvTAKJc+L@NnrqhEaruutd=4~GHMC$e#h*N@y*NMtRJm$f|BPgM$05R_i?$2M z6O(Kh-$X6*)BM+G!IG{$LrpEX$PdK-#_9z;&a@s!>($zQ7`^h*f1uFUL>8)rYY_9$ zXgXNXjLqbv^Lw|bb@b_KG`@BmyLYiPb02-^q4@As@KD0{f%ogsoKPY5fTqG=o-9k) z+0XKj%+M_S{J;$#Qz3jYa?GtRtktq~BL3q+`eB%FbB0XDOP`$tIICrRt>=N3D5{A* z%Vxlb(grhfRdr2^&ii54(C%x+@UvhGNT395M=#Ndg2+zs2)QsI=Br(wuw?nzg(bNt z?3io%r)FuGUPMOr+k@K!g#T*o8-|*@`Y>-%0D^XmFN?BqNr1_2;Yyoo7(W;MA(5>? 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 E05?a%2LJ#7 literal 0 HcmV?d00001 diff --git a/_static/img/fonts/BebasNeue-webfont.svg b/_static/img/fonts/BebasNeue-webfont.svg new file mode 100755 index 0000000..a3ca94a --- /dev/null +++ b/_static/img/fonts/BebasNeue-webfont.svg @@ -0,0 +1,245 @@ +<?xml version="1.0" standalone="no"?> +<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" > +<svg xmlns="http://www.w3.org/2000/svg"> +<metadata> +This is a custom SVG webfont generated by Font Squirrel. +Copyright : Copyright c 2010 by Ryoichi Tsunekawa All rights reserved +Designer : Ryoichi Tsunekawa +Foundry : Ryoichi Tsunekawa +</metadata> +<defs> +<font id="webfontj1CI1MAi" horiz-adv-x="811" > +<font-face units-per-em="2048" ascent="1638" descent="-410" /> +<missing-glyph horiz-adv-x="317" /> +<glyph unicode=" " horiz-adv-x="317" /> +<glyph unicode="	" horiz-adv-x="317" /> +<glyph unicode=" " horiz-adv-x="317" /> +<glyph unicode="!" horiz-adv-x="389" d="M279 317h-168l-29 519v598h225v-598zM86 217h217v-217h-217v217z" /> +<glyph unicode=""" horiz-adv-x="665" d="M113 1012l-31 422h217l-33 -422h-153zM397 1012l-30 422h217l-33 -422h-154z" /> +<glyph unicode="#" horiz-adv-x="839" d="M406 0l43 410h-134l-43 -410h-184l43 410h-100l16 159h100l39 375h-102l16 160h103l35 330h184l-35 -330h133l35 330h184l-34 -330h104l-16 -160h-105l-39 -375h105l-17 -159h-104l-43 -410h-184zM371 944l-39 -375h133l39 375h-133z" /> +<glyph unicode="$" d="M76 1069q0 297 237 350v107h185v-107q242 -49 241 -350v-45h-213v59q0 141 -112.5 141.5t-112.5 -141.5q0 -80 45 -147q46 -66 110 -117l130 -107q66 -56 110.5 -145.5t44.5 -201.5q0 -147 -62.5 -237.5t-180.5 -115.5v-104h-185v104q-244 49 -243 353v98h213v-113 q0 -139 116.5 -139t116.5 139q0 68 -32.5 127.5t-82 99t-105.5 89.5l-106 100q-50 49 -82 128t-32 175z" /> +<glyph unicode="%" horiz-adv-x="1284" d="M213 1225v-492q0 -90 73.5 -90t73.5 90v492q0 90 -73.5 90t-73.5 -90zM70 743v471q0 111 55 170.5t161.5 59.5t162 -59.5t55.5 -170.5v-471q0 -111 -55.5 -170t-162 -59t-161.5 59t-55 170zM287 0l565 1434h133l-565 -1434h-133zM924 700v-491q0 -90 73.5 -90t73.5 90 v491q0 90 -73.5 90t-73.5 -90zM780 219v471q0 111 55.5 170.5t162 59.5t161.5 -59.5t55 -170.5v-471q0 -111 -55 -170t-161.5 -59t-162 59t-55.5 170z" /> +<glyph unicode="&" horiz-adv-x="847" d="M84 457q0 231 156 301q-156 66 -156 295v26q0 354 336 355h258v-205h-254q-115 0 -115 -139v-89q0 -82 34 -116.5t101 -34.5h99v160h225v-160h59v-205h-59v-471q0 -117 25 -174h-230q-16 45 -20 113q-59 -129 -209 -129q-250 0 -250 327v146zM309 330q0 -141 117 -142 q111 0 117 125v332h-86q-78 0 -113 -42t-35 -140v-133z" /> +<glyph unicode="'" horiz-adv-x="368" d="M106 1012l-30 422h217l-33 -422h-154z" /> +<glyph unicode="(" horiz-adv-x="514" d="M412 1434h69v-185h-55q-55 0 -79.5 -27.5t-24.5 -101.5v-807q0 -74 24.5 -101.5t79.5 -27.5h55v-184h-69q-170 0 -243 71.5t-73 241.5v807q0 170 73 242t243 72z" /> +<glyph unicode=")" horiz-adv-x="514" d="M33 1434h69q170 0 243 -72t73 -242v-807q0 -170 -73 -241.5t-243 -71.5h-69v184h55q55 0 80 28t25 101v807q0 74 -25 101.5t-80 27.5h-55v185z" /> +<glyph unicode="*" d="M61 1249l306 -153l-54 338h185l-54 -338l306 153l57 -174l-336 -57l240 -240l-148 -108l-157 303l-158 -303l-148 108l240 240l-336 57z" /> +<glyph unicode="+" d="M485 516h254v-160h-667v160h254v164h-254v160h254v233h159v-233h254v-160h-254v-164z" /> +<glyph unicode="," horiz-adv-x="380" d="M168 0h-86v217h217v-194l-98 -228h-92z" /> +<glyph unicode="-" horiz-adv-x="552" d="M72 614v205h409v-205h-409z" /> +<glyph unicode="." horiz-adv-x="380" d="M82 217h217v-217h-217v217z" /> +<glyph unicode="/" horiz-adv-x="780" d="M10 0l565 1434h195l-565 -1434h-195z" /> +<glyph unicode="0" d="M289 1104v-774q0 -141 116.5 -141.5t116.5 141.5v774q0 141 -116.5 141t-116.5 -141zM63 344v746q0 172 88.5 266t254 94t254 -94t88.5 -266v-746q0 -172 -88.5 -266t-254 -94t-254 94t-88.5 266z" /> +<glyph unicode="1" d="M221 1094v159q82 0 134.5 28t71.5 60.5t42 92.5h152v-1434h-226v1094h-174z" /> +<glyph unicode="2" d="M528 1081q0 92 -29.5 128t-86.5 36q-117 0 -117 -141v-154h-213v140q0 174 86 267t250 93t250 -93t86 -267q0 -131 -50.5 -247t-120 -198t-137 -153.5t-109.5 -144.5t-30 -142h426v-205h-651v176q0 117 46 214t112 170l130 144q66 70 112 166t46 211z" /> +<glyph unicode="3" d="M516 1001v80q0 92 -29.5 128t-87.5 36q-117 0 -116 -141v-92h-213v78q0 174 86 267t249.5 93t249.5 -93t86 -267v-37q0 -229 -157 -295q158 -70 157 -301v-113q0 -174 -86 -267t-249.5 -93t-249.5 93t-86 267v119h213v-133q0 -141 116 -142q57 0 87 36t30 126v113 q0 98 -35 140t-112 42h-76v205h88q68 0 101.5 34.5t33.5 116.5z" /> +<glyph unicode="4" d="M29 260v205l409 969h246v-969h107v-205h-107v-260h-225v260h-430zM236 465h223v530z" /> +<glyph unicode="5" d="M72 463h213v-133q0 -139 116.5 -139.5t116.5 139.5v315q0 141 -116.5 141t-116.5 -141v-43h-213l41 832h594v-205h-392l-18 -342q63 104 197 104q250 0 249 -327v-320q0 -174 -86 -267t-249.5 -93t-249.5 93t-86 267v119z" /> +<glyph unicode="6" d="M68 344v733q0 373 344 373q164 0 250 -93t86 -267v-37h-213v51q0 141 -117 141q-63 0 -94 -39t-31 -137v-262q59 127 209 127q250 0 250 -328v-262q0 -172 -88.5 -266t-254 -94t-253.5 94t-88 266zM409.5 729q-116.5 0 -116.5 -141v-258q0 -139 116.5 -139.5t116.5 139.5 v258q0 141 -116.5 141z" /> +<glyph unicode="7" d="M68 1434h675v-197l-331 -1237h-226l330 1229h-448v205z" /> +<glyph unicode="8" d="M758 344q0 -172 -91.5 -266t-261 -94t-261 94t-91.5 266v113q0 221 140 299q-139 76 -140 288v46q0 172 91.5 266t261 94t261 -94t91.5 -266v-46q0 -211 -140 -288q139 -78 140 -299v-113zM279 350q0 -162 127 -162q125 0 126 162v133q0 162 -126.5 162t-126.5 -162v-133 zM279 1081v-80q0 -152 126.5 -151.5t126.5 151.5v80q0 164 -126.5 164t-126.5 -164z" /> +<glyph unicode="9" d="M743 1090v-734q0 -373 -344 -372q-164 0 -250 93t-86 267v37h213v-51q0 -141 117 -142q63 0 94 39t31 138v262q-59 -127 -209 -127q-250 0 -250 327v263q0 172 88.5 266t254 94t253.5 -94t88 -266zM401.5 705q116.5 0 116.5 141v258q0 139 -116.5 139t-116.5 -139v-258 q0 -141 116.5 -141z" /> +<glyph unicode=":" horiz-adv-x="380" d="M82 217h217v-217h-217v217zM82 997h217v-217h-217v217z" /> +<glyph unicode=";" horiz-adv-x="380" d="M168 0h-86v217h217v-194l-98 -228h-92zM82 997h217v-217h-217v217z" /> +<glyph unicode="<" d="M729 391l-668 246v160l668 245v-161l-459 -164l459 -164v-162z" /> +<glyph unicode="=" d="M72 631h667v-160h-667v160zM72 963h667v-160h-667v160z" /> +<glyph unicode=">" d="M750 637l-668 -246v162l459 164l-459 164v161l668 -245v-160z" /> +<glyph unicode="?" horiz-adv-x="737" d="M446 317h-200q-12 37 -13 89q0 104 39 191t84 141.5t84 150.5t39 215q0 141 -112.5 141t-112.5 -141v-156h-213v142q0 174 84 267t248 93t248 -93t84 -267q0 -125 -42 -228.5t-91.5 -160t-91.5 -137.5t-42 -167q0 -45 8 -80zM236 217h217v-217h-217v217z" /> +<glyph unicode="@" horiz-adv-x="1411" d="M975 260q-168 0 -180 135q-63 -129 -199 -123q-217 6 -184 316l22 207q16 152 80 229.5t170 73.5q127 -2 168 -127l12 119h197l-62 -592q-6 -51 41 -52q80 0 122 142.5t42 320.5q0 201 -100 316.5t-307 115.5q-270 0 -412.5 -200.5t-142.5 -556.5q0 -254 119.5 -394.5 t357.5 -140.5q244 0 424 139l-17 -196q-172 -115 -419 -115q-334 0 -496 191.5t-162 525.5q0 193 48 358.5t139.5 291.5t238 199t330.5 73q303 0 436 -164t133 -439q0 -178 -39 -312t-102.5 -204.5t-127.5 -103.5t-130 -33zM629 772l-19 -174q-14 -131 88 -135 q47 -2 77 29.5t38 99.5l21 194q6 57 -18.5 86t-70.5 29q-49 2 -78.5 -28.5t-37.5 -100.5z" /> +<glyph unicode="A" horiz-adv-x="833" d="M582 1434l229 -1434h-227l-39 260h-277l-39 -260h-206l229 1434h330zM406 1180l-109 -725h217z" /> +<glyph unicode="B" horiz-adv-x="831" d="M422 1434q174 0 254 -81t80 -249v-51q0 -221 -146 -289q168 -66 168 -307v-117q0 -166 -87 -253t-255 -87h-354v1434h340zM408 645h-101v-440h129q59 0 88 31.5t29 109.5v125q0 98 -33.5 136t-111.5 38zM416 1229h-109v-379h88q68 0 101.5 35t33.5 116v80q1 148 -114 148 z" /> +<glyph unicode="C" horiz-adv-x="790" d="M522 535h213v-191q0 -174 -86 -267t-249.5 -93t-250 93t-86.5 267v746q0 174 86.5 267t250 93t249.5 -93t86 -267v-140h-213v154q0 141 -116.5 141t-116.5 -141v-774q0 -139 117 -140q116 0 116 140v205z" /> +<glyph unicode="D" horiz-adv-x="835" d="M82 0v1434h356q336 0 336 -355v-725q0 -354 -336 -354h-356zM434 1229h-127v-1024h127q115 0 115 139v746q0 139 -115 139z" /> +<glyph unicode="E" horiz-adv-x="753" d="M307 1229v-400h309v-204h-309v-420h389v-205h-614v1434h614v-205h-389z" /> +<glyph unicode="F" horiz-adv-x="704" d="M307 1229v-432h291v-205h-291v-592h-225v1434h596v-205h-371z" /> +<glyph unicode="G" horiz-adv-x="798" d="M420 594v205h315v-455q0 -174 -86 -267t-249.5 -93t-250 93t-86.5 267v746q0 174 86.5 267t250 93t249.5 -93t86 -267v-140h-213v154q0 141 -116.5 141t-116.5 -141v-774q0 -139 117 -140q116 0 116 140v264h-102z" /> +<glyph unicode="H" horiz-adv-x="874" d="M307 614v-614h-225v1434h225v-615h256v615h230v-1434h-230v614h-256z" /> +<glyph unicode="I" horiz-adv-x="389" d="M82 0v1434h225v-1434h-225z" /> +<glyph unicode="J" horiz-adv-x="524" d="M20 0v205q25 -2 78 -2q129 0 129 137v1094h226v-1078q0 -360 -324 -360q-72 0 -109 4z" /> +<glyph unicode="K" horiz-adv-x="847" d="M596 0l-219 571l-70 -131v-440h-225v1434h225v-625l295 625h225l-313 -639l313 -795h-231z" /> +<glyph unicode="L" horiz-adv-x="694" d="M82 0v1434h225v-1229h371v-205h-596z" /> +<glyph unicode="M" horiz-adv-x="1107" d="M393 1434l166 -1018l154 1018h313v-1434h-213v1028l-156 -1028h-213l-168 1014v-1014h-196v1434h313z" /> +<glyph unicode="N" horiz-adv-x="874" d="M563 0l-280 1038v-1038h-203v1434h282l232 -859v859h201v-1434h-232z" /> +<glyph unicode="O" d="M289 1104v-774q0 -141 117 -142q116 0 116 142v774q0 141 -116.5 141t-116.5 -141zM63 344v746q0 172 88.5 266t254 94t254 -94t88.5 -266v-746q0 -172 -88.5 -266t-254 -94t-254 94t-88.5 266z" /> +<glyph unicode="P" horiz-adv-x="772" d="M414 1434q336 0 336 -355v-186q0 -354 -336 -354h-107v-539h-225v1434h332zM414 1229h-107v-486h107q55 0 82.5 31t27.5 105v215q0 74 -27.5 104.5t-82.5 30.5z" /> +<glyph unicode="Q" d="M63 344v746q0 172 88.5 266t254 94t254 -94t88.5 -266v-746q0 -121 -43 -201q12 -30 60 -30h3h20v-201h-30q-145 0 -195 98q-71 -26 -151 -26h-6q-166 0 -254.5 94t-88.5 266zM289 1104v-774q0 -141 117 -142q116 0 116 142v774q0 141 -116.5 141t-116.5 -141z" /> +<glyph unicode="R" horiz-adv-x="823" d="M782 0h-229q-20 61 -21 176v225q0 98 -34.5 140.5t-112.5 42.5h-78v-584h-225v1434h340q174 0 254 -81t80 -249v-113q0 -221 -148 -291q150 -63 150 -305v-221v-9q0 -110 24 -165zM416 1229h-109v-441h88q68 0 101.5 35t33.5 117v141q1 148 -114 148z" /> +<glyph unicode="S" horiz-adv-x="765" d="M53 1090q0 174 84 267t248 93t248 -93t84 -267v-46h-213v60q0 141 -112.5 141t-112.5 -141q0 -59 24.5 -112.5t63.5 -96.5t86 -85t93 -88t85 -98.5t63.5 -124t24.5 -155.5q0 -174 -86 -267t-250 -93t-250 93t-86 267v88h213v-102q0 -139 117 -140h1q116 0 116 140 q0 80 -45.5 150.5t-110.5 127.5l-130 120q-65 63 -110 156t-45 206z" /> +<glyph unicode="T" horiz-adv-x="729" d="M16 1229v205h697v-205h-236v-1229h-225v1229h-236z" /> +<glyph unicode="U" horiz-adv-x="815" d="M72 1434h225v-1106q0 -139 117 -140q116 0 116 140v1106h213v-1092q0 -174 -86 -267t-249.5 -93t-249.5 93t-86 267v1092z" /> +<glyph unicode="V" horiz-adv-x="823" d="M250 1434l172 -1170l172 1170h207l-221 -1434h-336l-221 1434h227z" /> +<glyph unicode="W" horiz-adv-x="1153" d="M664 0l-82 764l-82 -764h-310l-159 1434h219l121 -1131l108 1131h217l113 -1139l117 1139h196l-159 -1434h-299z" /> +<glyph unicode="X" horiz-adv-x="880" d="M625 1434h209l-236 -697l252 -737h-238l-184 567l-186 -567h-211l252 737l-236 697h234l170 -529z" /> +<glyph unicode="Y" d="M293 0v475l-285 959h236l172 -654l172 654h215l-285 -959v-475h-225z" /> +<glyph unicode="Z" horiz-adv-x="757" d="M68 1434h639v-201l-428 -1028h428v-205h-660v201l428 1028h-407v205z" /> +<glyph unicode="[" horiz-adv-x="514" d="M96 0v1434h373v-185h-147v-1065h147v-184h-373z" /> +<glyph unicode="\" horiz-adv-x="780" d="M205 1434l565 -1434h-195l-565 1434h195z" /> +<glyph unicode="]" horiz-adv-x="514" d="M418 1434v-1434h-373v184h148v1065h-148v185h373z" /> +<glyph unicode="^" d="M41 799l285 635h159l285 -635h-180l-184 430l-185 -430h-180z" /> +<glyph unicode="_" horiz-adv-x="1024" d="M0 -184v164h1024v-164h-1024z" /> +<glyph unicode="`" horiz-adv-x="512" d="M90 1737h232l139 -228h-162z" /> +<glyph unicode="a" horiz-adv-x="833" d="M582 1434l229 -1434h-227l-39 260h-277l-39 -260h-206l229 1434h330zM406 1180l-109 -725h217z" /> +<glyph unicode="b" horiz-adv-x="831" d="M422 1434q174 0 254 -81t80 -249v-51q0 -221 -146 -289q168 -66 168 -307v-117q0 -166 -87 -253t-255 -87h-354v1434h340zM408 645h-101v-440h129q59 0 88 31.5t29 109.5v125q0 98 -33.5 136t-111.5 38zM416 1229h-109v-379h88q68 0 101.5 35t33.5 116v80q1 148 -114 148 z" /> +<glyph unicode="c" horiz-adv-x="790" d="M522 535h213v-191q0 -174 -86 -267t-249.5 -93t-250 93t-86.5 267v746q0 174 86.5 267t250 93t249.5 -93t86 -267v-140h-213v154q0 141 -116.5 141t-116.5 -141v-774q0 -139 117 -140q116 0 116 140v205z" /> +<glyph unicode="d" horiz-adv-x="835" d="M82 0v1434h356q336 0 336 -355v-725q0 -354 -336 -354h-356zM434 1229h-127v-1024h127q115 0 115 139v746q0 139 -115 139z" /> +<glyph unicode="e" horiz-adv-x="753" d="M307 1229v-400h309v-204h-309v-420h389v-205h-614v1434h614v-205h-389z" /> +<glyph unicode="f" horiz-adv-x="704" d="M307 1229v-432h291v-205h-291v-592h-225v1434h596v-205h-371z" /> +<glyph unicode="g" horiz-adv-x="798" d="M420 594v205h315v-455q0 -174 -86 -267t-249.5 -93t-250 93t-86.5 267v746q0 174 86.5 267t250 93t249.5 -93t86 -267v-140h-213v154q0 141 -116.5 141t-116.5 -141v-774q0 -139 117 -140q116 0 116 140v264h-102z" /> +<glyph unicode="h" horiz-adv-x="874" d="M307 614v-614h-225v1434h225v-615h256v615h230v-1434h-230v614h-256z" /> +<glyph unicode="i" horiz-adv-x="389" d="M82 0v1434h225v-1434h-225z" /> +<glyph unicode="j" horiz-adv-x="524" d="M20 0v205q25 -2 78 -2q129 0 129 137v1094h226v-1078q0 -360 -324 -360q-72 0 -109 4z" /> +<glyph unicode="k" horiz-adv-x="847" d="M596 0l-219 571l-70 -131v-440h-225v1434h225v-625l295 625h225l-313 -639l313 -795h-231z" /> +<glyph unicode="l" horiz-adv-x="694" d="M82 0v1434h225v-1229h371v-205h-596z" /> +<glyph unicode="m" horiz-adv-x="1107" d="M393 1434l166 -1018l154 1018h313v-1434h-213v1028l-156 -1028h-213l-168 1014v-1014h-196v1434h313z" /> +<glyph unicode="n" horiz-adv-x="874" d="M563 0l-280 1038v-1038h-203v1434h282l232 -859v859h201v-1434h-232z" /> +<glyph unicode="o" d="M289 1104v-774q0 -141 117 -142q116 0 116 142v774q0 141 -116.5 141t-116.5 -141zM63 344v746q0 172 88.5 266t254 94t254 -94t88.5 -266v-746q0 -172 -88.5 -266t-254 -94t-254 94t-88.5 266z" /> +<glyph unicode="p" horiz-adv-x="772" d="M414 1434q336 0 336 -355v-186q0 -354 -336 -354h-107v-539h-225v1434h332zM414 1229h-107v-486h107q55 0 82.5 31t27.5 105v215q0 74 -27.5 104.5t-82.5 30.5z" /> +<glyph unicode="q" d="M63 344v746q0 172 88.5 266t254 94t254 -94t88.5 -266v-746q0 -121 -43 -201q12 -30 60 -30h3h20v-201h-30q-145 0 -195 98q-71 -26 -151 -26h-6q-166 0 -254.5 94t-88.5 266zM289 1104v-774q0 -141 117 -142q116 0 116 142v774q0 141 -116.5 141t-116.5 -141z" /> +<glyph unicode="r" horiz-adv-x="823" d="M782 0h-229q-20 61 -21 176v225q0 98 -34.5 140.5t-112.5 42.5h-78v-584h-225v1434h340q174 0 254 -81t80 -249v-113q0 -221 -148 -291q150 -63 150 -305v-221v-9q0 -110 24 -165zM416 1229h-109v-441h88q68 0 101.5 35t33.5 117v141q1 148 -114 148z" /> +<glyph unicode="s" horiz-adv-x="765" d="M53 1090q0 174 84 267t248 93t248 -93t84 -267v-46h-213v60q0 141 -112.5 141t-112.5 -141q0 -59 24.5 -112.5t63.5 -96.5t86 -85t93 -88t85 -98.5t63.5 -124t24.5 -155.5q0 -174 -86 -267t-250 -93t-250 93t-86 267v88h213v-102q0 -139 117 -140h1q116 0 116 140 q0 80 -45.5 150.5t-110.5 127.5l-130 120q-65 63 -110 156t-45 206z" /> +<glyph unicode="t" horiz-adv-x="729" d="M16 1229v205h697v-205h-236v-1229h-225v1229h-236z" /> +<glyph unicode="u" horiz-adv-x="815" d="M72 1434h225v-1106q0 -139 117 -140q116 0 116 140v1106h213v-1092q0 -174 -86 -267t-249.5 -93t-249.5 93t-86 267v1092z" /> +<glyph unicode="v" horiz-adv-x="823" d="M250 1434l172 -1170l172 1170h207l-221 -1434h-336l-221 1434h227z" /> +<glyph unicode="w" horiz-adv-x="1153" d="M664 0l-82 764l-82 -764h-310l-159 1434h219l121 -1131l108 1131h217l113 -1139l117 1139h196l-159 -1434h-299z" /> +<glyph unicode="x" horiz-adv-x="880" d="M625 1434h209l-236 -697l252 -737h-238l-184 567l-186 -567h-211l252 737l-236 697h234l170 -529z" /> +<glyph unicode="y" d="M293 0v475l-285 959h236l172 -654l172 654h215l-285 -959v-475h-225z" /> +<glyph unicode="z" horiz-adv-x="757" d="M68 1434h639v-201l-428 -1028h428v-205h-660v201l428 1028h-407v205z" /> +<glyph unicode="{" horiz-adv-x="526" d="M209 717q125 -33 133 -182l10 -205q4 -82 29 -114t80 -32h33v-184h-115q-98 0 -158.5 57.5t-68.5 169.5l-17 275q-4 72 -26.5 97.5t-85.5 25.5v184q63 0 85.5 25.5t26.5 97.5l17 274q8 113 68.5 170.5t158.5 57.5h115v-185h-33q-55 0 -80 -31.5t-29 -113.5l-10 -205 q-8 -149 -133 -182z" /> +<glyph unicode="|" horiz-adv-x="1024" d="M430 -133v1700h184v-1700h-184z" /> +<glyph unicode="}" horiz-adv-x="526" d="M317 717q-125 33 -133 182l-10 205q-4 82 -28.5 113.5t-79.5 31.5h-33v185h114q98 0 159 -57.5t69 -170.5l16 -274q4 -72 26.5 -97.5t86.5 -25.5v-184q-63 0 -86 -26t-27 -97l-16 -275q-8 -113 -68.5 -170t-159.5 -57h-114v184h33q55 0 79.5 32t28.5 114l10 205 q8 149 133 182z" /> +<glyph unicode="~" d="M123 578l-107 102q70 104 126.5 144t117.5 40q59 0 155.5 -62.5t137.5 -62.5q33 0 58.5 23.5t76.5 93.5l107 -111q-70 -102 -125.5 -139t-118.5 -37q-59 0 -155.5 62.5t-137.5 62.5q-35 0 -60.5 -23t-74.5 -93z" /> +<glyph unicode="¡" horiz-adv-x="389" d="M111 1116h168l28 -518v-598h-225v598zM303 1217h-217v217h217v-217z" /> +<glyph unicode="¢" d="M313 -31v107q-240 49 -239 350v582q0 297 239 350v106h185v-104q248 -49 247 -352v-99h-213v113q0 141 -116.5 141t-116.5 -141v-610q0 -139 116.5 -139.5t116.5 139.5v163h213v-149q0 -305 -247 -352v-105h-185z" /> +<glyph unicode="£" d="M90 430v174h137q-14 39 -56 123t-65.5 167t-23.5 196q0 174 84 267t248 93t247.5 -93t83.5 -267v-142h-213v156q0 141 -112.5 141t-112.5 -141q0 -113 24.5 -200t62.5 -167t50 -133h248v-174h-233q-14 -145 -115 -225h387v-205h-670v197q82 0 137.5 62.5t57.5 170.5h-166 z" /> +<glyph unicode="¥" d="M582 1434h215l-262 -879h170v-113h-187v-92h187v-112h-187v-238h-225v238h-187v112h187v92h-187v113h168l-260 879h236l166 -633z" /> +<glyph unicode="¦" horiz-adv-x="1024" d="M430 840v727h184v-727h-184zM430 -133v727h184v-727h-184z" /> +<glyph unicode="§" d="M72 643q0 170 141 250q-141 92 -141 266q0 129 86 210t245.5 81t245.5 -76t86 -203v-73h-213v43q0 55 -29.5 89t-82.5 34q-113 0 -113 -115q0 -45 45 -79t109.5 -61.5t130 -64.5t110.5 -109.5t45 -177.5q0 -170 -143 -251q143 -88 143 -265q0 -129 -86 -210t-245.5 -81 t-245.5 76t-86 203v102h213v-71q0 -55 29.5 -89t82.5 -34q113 0 113 115q0 45 -45 78.5t-110.5 61t-130 64.5t-109.5 110t-45 177zM287 651q0 -57 31.5 -92t93.5 -65q49 8 79.5 52t30.5 103q0 94 -127 156q-49 -8 -78.5 -51.5t-29.5 -102.5z" /> +<glyph unicode="¨" horiz-adv-x="512" d="M2 1706h197v-197h-197v197zM313 1706h197v-197h-197v197z" /> +<glyph unicode="©" horiz-adv-x="1507" d="M829 631h148v-115q0 -250 -231.5 -250t-231.5 250v397q0 254 231.5 254t231.5 -254v-73h-148v86q0 98 -79.5 98t-79.5 -98v-418q0 -96 79.5 -96t79.5 96v123zM41 716.5q0 317.5 204 525.5t509 208t508.5 -208t203.5 -525.5t-203.5 -525t-508.5 -207.5t-509 207.5 t-204 525zM188 717q0 -256 161 -423t404.5 -167t404.5 167t161 423t-161 423t-404.5 167t-404.5 -167t-161 -423z" /> +<glyph unicode="ª" horiz-adv-x="569" d="M61 887q0 137 76 194.5t215 61.5v94q0 76 -57 76q-70 0 -70 -88v-47h-135v39q0 227 211 227q195 0 195 -227v-535h-121l-8 98q-35 -109 -146 -108q-160 0 -160 207v8zM61 588h435v-142h-435v142zM205 909v-18q0 -88 74 -88q68 0 73 74v159q-147 -6 -147 -127z" /> +<glyph unicode="«" horiz-adv-x="727" d="M160 1245h202l-124 -526l124 -559h-202l-127 559zM492 1245h202l-125 -526l125 -559h-202l-127 559z" /> +<glyph unicode="¬" d="M51 797h709v-441h-160v281h-549v160z" /> +<glyph unicode="­" horiz-adv-x="552" d="M72 614v205h409v-205h-409z" /> +<glyph unicode="®" horiz-adv-x="1507" d="M41 716.5q0 317.5 204 525.5t509 208t508.5 -208t203.5 -525.5t-203.5 -525t-508.5 -207.5t-509 207.5t-204 525zM188 717q0 -256 161 -423t404.5 -167t404.5 167t161 423t-161 423t-404.5 167t-404.5 -167t-161 -423zM1016 279h-160q-14 37 -14 122v95q0 70 -24.5 98.5 t-80.5 28.5h-53v-344h-156v876h238q231 0 231 -229v-19q0 -156 -106 -202q106 -43 106 -211v-95q1 -79 19 -120zM758 1012h-74v-246h64q94 0 94 104v37q0 105 -84 105z" /> +<glyph unicode="¯" horiz-adv-x="512" d="M20 1677h472v-159h-472v159z" /> +<glyph unicode="°" horiz-adv-x="466" d="M31 1247q0 84 59.5 143.5t143 59.5t143 -59.5t59.5 -143.5t-59.5 -143.5t-143 -59.5t-143 59.5t-59.5 143.5zM133 1247q0 -41 30 -70.5t70.5 -29.5t70.5 29.5t30 70.5t-30 71t-70.5 30t-70.5 -30t-30 -71z" /> +<glyph unicode="±" d="M485 1073v-276h275v-160h-275v-281h-159v281h-275v160h275v276h159z" /> +<glyph unicode="²" horiz-adv-x="573" d="M369 1409q0 102 -74 102t-74 -90v-96h-135v88q0 227 213 227t213 -227q0 -100 -48 -191.5t-104.5 -144.5t-98.5 -114.5t-32 -114.5h271v-129h-414v110q0 74 28.5 136.5t70.5 108.5l84 92q42 46 71 108.5t29 134.5z" /> +<glyph unicode="³" horiz-adv-x="573" d="M356 942v70q0 63 -21.5 88.5t-70.5 25.5h-49v129h55q86 0 86 99v51q0 104 -73.5 104t-73.5 -90v-57h-135v47q0 229 213 229t213 -229v-23q0 -145 -101 -186q100 -43 101 -190v-72q0 -229 -213 -229t-213 229v74h135v-84q0 -90 73.5 -90t73.5 104z" /> +<glyph unicode="´" horiz-adv-x="512" d="M195 1737h221l-209 -228h-152z" /> +<glyph unicode="¶" d="M729 1434v-1567h-164v1403h-110v-1403h-164l4 676q-127 0 -196.5 96t-69.5 254v186q0 354 336 355h364z" /> +<glyph unicode="·" horiz-adv-x="380" d="M82 825h217v-217h-217v217z" /> +<glyph unicode="¸" horiz-adv-x="512" d="M53 -182v20h152v-16q0 -41 45 -41q51 0 51 49q0 53 -74 53h-20v146h98v-109q78 0 115 -21.5t37 -74.5q0 -76 -51.5 -100.5t-155.5 -24.5q-197 0 -197 119z" /> +<glyph unicode="¹" horiz-adv-x="409" d="M51 1413v100q74 0 105.5 29t54.5 86h94v-909h-143v694h-111z" /> +<glyph unicode="º" horiz-adv-x="573" d="M213 1225v-334q0 -88 73.5 -88t73.5 88v334q0 88 -73.5 88t-73.5 -88zM70 899v318q0 109 56 168t160.5 59t161 -59.5t56.5 -167.5v-318q0 -109 -56.5 -168t-161 -59t-160.5 59t-56 168zM70 588h434v-142h-434v142z" /> +<glyph unicode="»" horiz-adv-x="727" d="M365 1245h202l127 -526l-127 -559h-202l124 559zM33 1245h203l126 -526l-126 -559h-203l125 559z" /> +<glyph unicode="¼" horiz-adv-x="1284" d="M133 1219v100q74 0 105.5 28.5t54.5 86.5h94v-910h-143v695h-111zM328 0l565 1434h133l-565 -1434h-133zM760 164v131l260 614h156v-614h67v-131h-67v-164h-142v164h-274zM889 295h145v336z" /> +<glyph unicode="½" horiz-adv-x="1284" d="M133 1219v100q74 0 105.5 28.5t54.5 86.5h94v-910h-143v695h-111zM266 0l565 1434h134l-566 -1434h-133zM1079 690q0 102 -73.5 102.5t-73.5 -90.5v-96h-135v88q0 227 213 227.5t213 -227.5q0 -100 -48.5 -191t-104.5 -144.5t-98 -115t-32 -114.5h270v-129h-413v111 q0 74 28.5 136t70.5 108l84 93q42 46 70.5 108t28.5 134z" /> +<glyph unicode="¾" horiz-adv-x="1284" d="M356 748v69q0 63 -21.5 89t-70.5 26h-49v129h55q86 0 86 98v51q0 104 -73.5 104.5t-73.5 -89.5v-58h-135v47q0 229 213 229.5t213 -229.5v-22q0 -145 -101 -186q100 -43 101 -191v-72q0 -229 -213 -229t-213 229v74h135v-84q0 -90 73.5 -89.5t73.5 104.5zM348 0l565 1434 h134l-566 -1434h-133zM760 164v131l260 614h156v-614h67v-131h-67v-164h-142v164h-274zM889 295h145v336z" /> +<glyph unicode="¿" horiz-adv-x="737" d="M291 1116h201q12 -37 12 -88q0 -104 -39 -191t-84 -141.5t-84 -150.5t-39 -215q0 -141 112.5 -141.5t112.5 141.5v155h213v-141q0 -174 -84 -267t-247.5 -93t-247.5 93t-84 267q0 125 42 228.5t91 159.5t91 137t42 167q0 45 -8 80zM502 1217h-217v217h217v-217z" /> +<glyph unicode="À" horiz-adv-x="833" d="M582 1434l229 -1434h-227l-39 260h-277l-39 -260h-206l229 1434h330zM406 1180l-109 -725h217zM170 1737h231l140 -228h-162z" /> +<glyph unicode="Á" horiz-adv-x="833" d="M582 1434l229 -1434h-227l-39 260h-277l-39 -260h-206l229 1434h330zM406 1180l-109 -725h217zM436 1737h221l-208 -228h-152z" /> +<glyph unicode="Â" horiz-adv-x="833" d="M582 1434l229 -1434h-227l-39 260h-277l-39 -260h-206l229 1434h330zM406 1180l-109 -725h217zM326 1509h-193l182 228h203l182 -228h-192l-92 113z" /> +<glyph unicode="Ã" horiz-adv-x="833" d="M582 1434l229 -1434h-227l-39 260h-277l-39 -260h-206l229 1434h330zM406 1180l-109 -725h217zM498 1665q59 0 88 59l108 -75q-51 -139 -174 -140q-45 0 -100 26t-84 26q-59 0 -88 -60l-109 76q51 139 174 139q47 0 102.5 -25.5t82.5 -25.5z" /> +<glyph unicode="Ä" horiz-adv-x="833" d="M582 1434l229 -1434h-227l-39 260h-277l-39 -260h-206l229 1434h330zM406 1180l-109 -725h217zM162 1706h196v-197h-196v197zM473 1706h197v-197h-197v197z" /> +<glyph unicode="Å" horiz-adv-x="833" d="M582 1434l229 -1434h-227l-39 260h-277l-39 -260h-206l229 1434h330zM406 1180l-109 -725h217zM252 1667q0 70 47 117t116.5 47t117 -47t47.5 -117t-47.5 -117t-117 -47t-116.5 47t-47 117zM354 1667q0 -27 17.5 -44t44 -17t44 17t17.5 44t-17.5 44.5t-44 17.5t-44 -17.5 t-17.5 -44.5z" /> +<glyph unicode="Æ" horiz-adv-x="1187" d="M516 0v260h-227l-66 -260h-215l383 1434h739v-205h-389v-400h310v-204h-310v-420h389v-205h-614zM340 455h176v690z" /> +<glyph unicode="Ç" horiz-adv-x="790" d="M522 535h213v-191q0 -160 -74.5 -253t-216.5 -105v-66q78 0 115 -21.5t37 -74.5q0 -76 -51 -100.5t-156 -24.5q-197 0 -196 119v20h151v-16q0 -41 45 -41q51 0 51 49q0 53 -73 53h-21v105q-283 29 -283 356v746q0 174 86.5 267t250 93t249.5 -93t86 -267v-140h-213v154 q0 141 -116.5 141t-116.5 -141v-774q0 -139 116.5 -139.5t116.5 139.5v205z" /> +<glyph unicode="È" horiz-adv-x="753" d="M307 1229v-400h309v-204h-309v-420h389v-205h-614v1434h614v-205h-389zM139 1737h232l139 -228h-162z" /> +<glyph unicode="É" horiz-adv-x="753" d="M307 1229v-400h309v-204h-309v-420h389v-205h-614v1434h614v-205h-389zM408 1737h221l-209 -228h-152z" /> +<glyph unicode="Ê" horiz-adv-x="753" d="M307 1229v-400h309v-204h-309v-420h389v-205h-614v1434h614v-205h-389zM295 1509h-193l183 228h202l183 -228h-193l-92 113z" /> +<glyph unicode="Ë" horiz-adv-x="753" d="M307 1229v-400h309v-204h-309v-420h389v-205h-614v1434h614v-205h-389zM133 1706h197v-197h-197v197zM444 1706h197v-197h-197v197z" /> +<glyph unicode="Ì" horiz-adv-x="389" d="M82 0v1434h225v-1434h-225zM-51 1737h231l139 -228h-161z" /> +<glyph unicode="Í" horiz-adv-x="389" d="M82 0v1434h225v-1434h-225zM215 1737h221l-209 -228h-151z" /> +<glyph unicode="Î" horiz-adv-x="389" d="M82 0v1434h225v-1434h-225zM104 1509h-192l182 228h203l182 -228h-192l-92 113z" /> +<glyph unicode="Ï" horiz-adv-x="389" d="M82 0v1434h225v-1434h-225zM-59 1706h196v-197h-196v197zM252 1706h197v-197h-197v197z" /> +<glyph unicode="Ð" horiz-adv-x="835" d="M82 0v625h-74v184h74v625h356q336 0 336 -355v-725q0 -354 -336 -354h-356zM434 1229h-127v-420h139v-184h-139v-420h127q115 0 115 139v746q0 139 -115 139z" /> +<glyph unicode="Ñ" horiz-adv-x="874" d="M563 0l-280 1038v-1038h-203v1434h282l232 -859v859h201v-1434h-232zM518 1665q59 0 88 59l109 -75q-51 -139 -174 -140q-45 0 -100.5 26t-84.5 26q-59 0 -88 -60l-108 76q51 139 174 139q47 0 102 -25.5t82 -25.5z" /> +<glyph unicode="Ò" d="M289 1104v-774q0 -141 116.5 -141.5t116.5 141.5v774q0 141 -116.5 141t-116.5 -141zM63 344v746q0 172 88.5 266t254 94t254 -94t88.5 -266v-746q0 -172 -88.5 -266t-254 -94t-254 94t-88.5 266zM158 1737h231l139 -228h-161z" /> +<glyph unicode="Ó" d="M289 1104v-774q0 -141 116.5 -141.5t116.5 141.5v774q0 141 -116.5 141t-116.5 -141zM63 344v746q0 172 88.5 266t254 94t254 -94t88.5 -266v-746q0 -172 -88.5 -266t-254 -94t-254 94t-88.5 266zM426 1737h221l-209 -228h-151z" /> +<glyph unicode="Ô" d="M289 1104v-774q0 -141 116.5 -141.5t116.5 141.5v774q0 141 -116.5 141t-116.5 -141zM63 344v746q0 172 88.5 266t254 94t254 -94t88.5 -266v-746q0 -172 -88.5 -266t-254 -94t-254 94t-88.5 266zM313 1509h-192l182 228h203l182 -228h-192l-93 113z" /> +<glyph unicode="Õ" d="M289 1104v-774q0 -141 116.5 -141.5t116.5 141.5v774q0 141 -116.5 141t-116.5 -141zM63 344v746q0 172 88.5 266t254 94t254 -94t88.5 -266v-746q0 -172 -88.5 -266t-254 -94t-254 94t-88.5 266zM487 1665q59 0 88 59l109 -75q-51 -139 -174 -140q-47 0 -102.5 26 t-81.5 26q-59 0 -88 -60l-109 76q51 139 174 139q45 0 100 -25.5t84 -25.5z" /> +<glyph unicode="Ö" d="M289 1104v-774q0 -141 116.5 -141.5t116.5 141.5v774q0 141 -116.5 141t-116.5 -141zM63 344v746q0 172 88.5 266t254 94t254 -94t88.5 -266v-746q0 -172 -88.5 -266t-254 -94t-254 94t-88.5 266zM152 1706h196v-197h-196v197zM463 1706h196v-197h-196v197z" /> +<glyph unicode="×" d="M188 1040l218 -215l217 217l108 -108l-217 -217l217 -217l-108 -109l-217 217l-220 -217l-108 109l217 217l-215 215z" /> +<glyph unicode="Ø" d="M84 -49l51 143q-72 94 -72 250v746q0 172 88.5 266t254.5 94q123 0 204 -53l41 112l76 -26l-53 -146q74 -88 74 -247v-746q0 -172 -88.5 -266t-253.5 -94q-127 0 -205 51l-41 -111zM289 1104v-590l229 633q-14 98 -112 98q-117 0 -117 -141zM406 188q117 0 116 142v590 l-231 -633q17 -99 115 -99z" /> +<glyph unicode="Ù" horiz-adv-x="815" d="M72 1434h225v-1106q0 -139 116.5 -139.5t116.5 139.5v1106h213v-1092q0 -174 -86 -267t-249.5 -93t-249.5 93t-86 267v1092zM162 1737h231l139 -228h-161z" /> +<glyph unicode="Ú" horiz-adv-x="815" d="M72 1434h225v-1106q0 -139 116.5 -139.5t116.5 139.5v1106h213v-1092q0 -174 -86 -267t-249.5 -93t-249.5 93t-86 267v1092zM430 1737h221l-209 -228h-151z" /> +<glyph unicode="Û" horiz-adv-x="815" d="M72 1434h225v-1106q0 -139 116.5 -139.5t116.5 139.5v1106h213v-1092q0 -174 -86 -267t-249.5 -93t-249.5 93t-86 267v1092zM319 1509h-192l182 228h203l182 -228h-192l-92 113z" /> +<glyph unicode="Ü" horiz-adv-x="815" d="M72 1434h225v-1106q0 -139 116.5 -139.5t116.5 139.5v1106h213v-1092q0 -174 -86 -267t-249.5 -93t-249.5 93t-86 267v1092zM158 1706h196v-197h-196v197zM469 1706h197v-197h-197v197z" /> +<glyph unicode="Ý" d="M293 0v475l-285 959h236l172 -654l172 654h215l-285 -959v-475h-225zM434 1737h221l-209 -228h-151z" /> +<glyph unicode="Þ" horiz-adv-x="772" d="M82 0v1434h225v-164h107q336 0 336 -355v-186q0 -354 -336 -354h-107v-375h-225zM414 1065h-107v-485h107q55 0 82.5 30.5t27.5 104.5v215q0 74 -27.5 104.5t-82.5 30.5z" /> +<glyph unicode="ß" horiz-adv-x="1531" d="M53 1090q0 174 84 267t248 93t248 -93t84 -267v-46h-213v60q0 141 -112.5 141t-112.5 -141q0 -59 24.5 -112.5t63.5 -96.5t86 -85t93 -88t85 -98.5t63.5 -124t24.5 -155.5q0 -174 -86 -267t-250 -93t-250 93t-86 267v88h213v-102q0 -139 117 -139.5t117 139.5 q0 80 -46 150t-110 128l-130 120q-66 62 -110.5 155.5t-44.5 206.5zM819 1090q0 174 84 267t248 93t248 -93t84 -267v-46h-213v60q0 141 -113 141t-113 -141q0 -59 25 -112.5t63.5 -96.5t86 -85t93.5 -88t85 -98.5t63.5 -124t24.5 -155.5q0 -174 -86 -267t-250 -93t-250 93 t-86 267v88h213v-102q0 -139 117 -139.5t117 139.5q0 80 -46 150t-110 128l-130 120q-66 62 -110.5 155.5t-44.5 206.5z" /> +<glyph unicode="à" horiz-adv-x="833" d="M582 1434l229 -1434h-227l-39 260h-277l-39 -260h-206l229 1434h330zM406 1180l-109 -725h217zM170 1737h231l140 -228h-162z" /> +<glyph unicode="á" horiz-adv-x="833" d="M582 1434l229 -1434h-227l-39 260h-277l-39 -260h-206l229 1434h330zM406 1180l-109 -725h217zM436 1737h221l-208 -228h-152z" /> +<glyph unicode="â" horiz-adv-x="833" d="M582 1434l229 -1434h-227l-39 260h-277l-39 -260h-206l229 1434h330zM406 1180l-109 -725h217zM326 1509h-193l182 228h203l182 -228h-192l-92 113z" /> +<glyph unicode="ã" horiz-adv-x="833" d="M582 1434l229 -1434h-227l-39 260h-277l-39 -260h-206l229 1434h330zM406 1180l-109 -725h217zM498 1665q59 0 88 59l108 -75q-51 -139 -174 -140q-45 0 -100 26t-84 26q-59 0 -88 -60l-109 76q51 139 174 139q47 0 102.5 -25.5t82.5 -25.5z" /> +<glyph unicode="ä" horiz-adv-x="833" d="M582 1434l229 -1434h-227l-39 260h-277l-39 -260h-206l229 1434h330zM406 1180l-109 -725h217zM162 1706h196v-197h-196v197zM473 1706h197v-197h-197v197z" /> +<glyph unicode="å" horiz-adv-x="833" d="M582 1434l229 -1434h-227l-39 260h-277l-39 -260h-206l229 1434h330zM406 1180l-109 -725h217zM252 1667q0 70 47 117t116.5 47t117 -47t47.5 -117t-47.5 -117t-117 -47t-116.5 47t-47 117zM354 1667q0 -27 17.5 -44t44 -17t44 17t17.5 44t-17.5 44.5t-44 17.5t-44 -17.5 t-17.5 -44.5z" /> +<glyph unicode="æ" horiz-adv-x="1187" d="M741 1229v-400h310v-204h-310v-420h389v-205h-614v260h-227l-66 -260h-215l383 1434h739v-205h-389zM340 455h176v690z" /> +<glyph unicode="ç" horiz-adv-x="790" d="M522 535h213v-191q0 -160 -74.5 -253t-216.5 -105v-66q78 0 115 -21.5t37 -74.5q0 -76 -51 -100.5t-156 -24.5q-197 0 -196 119v20h151v-16q0 -41 45 -41q51 0 51 49q0 53 -73 53h-21v105q-283 29 -283 356v746q0 174 86.5 267t250 93t249.5 -93t86 -267v-140h-213v154 q0 141 -116.5 141t-116.5 -141v-774q0 -139 116.5 -139.5t116.5 139.5v205z" /> +<glyph unicode="è" horiz-adv-x="753" d="M307 1229v-400h309v-204h-309v-420h389v-205h-614v1434h614v-205h-389zM139 1737h232l139 -228h-162z" /> +<glyph unicode="é" horiz-adv-x="753" d="M307 1229v-400h309v-204h-309v-420h389v-205h-614v1434h614v-205h-389zM408 1737h221l-209 -228h-152z" /> +<glyph unicode="ê" horiz-adv-x="753" d="M307 1229v-400h309v-204h-309v-420h389v-205h-614v1434h614v-205h-389zM295 1509h-193l183 228h202l183 -228h-193l-92 113z" /> +<glyph unicode="ë" horiz-adv-x="753" d="M307 1229v-400h309v-204h-309v-420h389v-205h-614v1434h614v-205h-389zM133 1706h197v-197h-197v197zM444 1706h197v-197h-197v197z" /> +<glyph unicode="ì" horiz-adv-x="389" d="M82 0v1434h225v-1434h-225zM-51 1737h231l139 -228h-161z" /> +<glyph unicode="í" horiz-adv-x="389" d="M82 0v1434h225v-1434h-225zM215 1737h221l-209 -228h-151z" /> +<glyph unicode="î" horiz-adv-x="389" d="M82 0v1434h225v-1434h-225zM104 1509h-192l182 228h203l182 -228h-192l-92 113z" /> +<glyph unicode="ï" horiz-adv-x="389" d="M82 0v1434h225v-1434h-225zM-59 1706h196v-197h-196v197zM252 1706h197v-197h-197v197z" /> +<glyph unicode="ð" horiz-adv-x="835" d="M82 0v625h-74v184h74v625h356q336 0 336 -355v-725q0 -354 -336 -354h-356zM434 1229h-127v-420h139v-184h-139v-420h127q115 0 115 139v746q0 139 -115 139z" /> +<glyph unicode="ñ" horiz-adv-x="874" d="M563 0l-280 1038v-1038h-203v1434h282l232 -859v859h201v-1434h-232zM518 1665q59 0 88 59l109 -75q-51 -139 -174 -140q-45 0 -100.5 26t-84.5 26q-59 0 -88 -60l-108 76q51 139 174 139q47 0 102 -25.5t82 -25.5z" /> +<glyph unicode="ò" d="M289 1104v-774q0 -141 116.5 -141.5t116.5 141.5v774q0 141 -116.5 141t-116.5 -141zM63 344v746q0 172 88.5 266t254 94t254 -94t88.5 -266v-746q0 -172 -88.5 -266t-254 -94t-254 94t-88.5 266zM158 1737h231l139 -228h-161z" /> +<glyph unicode="ó" d="M289 1104v-774q0 -141 116.5 -141.5t116.5 141.5v774q0 141 -116.5 141t-116.5 -141zM63 344v746q0 172 88.5 266t254 94t254 -94t88.5 -266v-746q0 -172 -88.5 -266t-254 -94t-254 94t-88.5 266zM426 1737h221l-209 -228h-151z" /> +<glyph unicode="ô" d="M289 1104v-774q0 -141 116.5 -141.5t116.5 141.5v774q0 141 -116.5 141t-116.5 -141zM63 344v746q0 172 88.5 266t254 94t254 -94t88.5 -266v-746q0 -172 -88.5 -266t-254 -94t-254 94t-88.5 266zM313 1509h-192l182 228h203l182 -228h-192l-93 113z" /> +<glyph unicode="õ" d="M289 1104v-774q0 -141 116.5 -141.5t116.5 141.5v774q0 141 -116.5 141t-116.5 -141zM63 344v746q0 172 88.5 266t254 94t254 -94t88.5 -266v-746q0 -172 -88.5 -266t-254 -94t-254 94t-88.5 266zM487 1665q59 0 88 59l109 -75q-51 -139 -174 -140q-47 0 -102.5 26 t-81.5 26q-59 0 -88 -60l-109 76q51 139 174 139q45 0 100 -25.5t84 -25.5z" /> +<glyph unicode="ö" d="M289 1104v-774q0 -141 116.5 -141.5t116.5 141.5v774q0 141 -116.5 141t-116.5 -141zM63 344v746q0 172 88.5 266t254 94t254 -94t88.5 -266v-746q0 -172 -88.5 -266t-254 -94t-254 94t-88.5 266zM152 1706h196v-197h-196v197zM463 1706h196v-197h-196v197z" /> +<glyph unicode="÷" d="M297 512h217v-217h-217v217zM297 1137h217v-217h-217v217zM51 797h709v-160h-709v160z" /> +<glyph unicode="ø" d="M63 344v746q0 172 88.5 266t254.5 94q123 0 204 -53l41 112l76 -26l-53 -146q74 -88 74 -247v-746q0 -172 -88.5 -266t-253.5 -94q-127 0 -205 51l-41 -111l-76 27l51 143q-72 94 -72 250zM289 1104v-590l229 633q-14 98 -112 98q-117 0 -117 -141zM406 188 q117 0 116 142v590l-231 -633q17 -99 115 -99z" /> +<glyph unicode="ù" horiz-adv-x="815" d="M72 1434h225v-1106q0 -139 116.5 -139.5t116.5 139.5v1106h213v-1092q0 -174 -86 -267t-249.5 -93t-249.5 93t-86 267v1092zM162 1737h231l139 -228h-161z" /> +<glyph unicode="ú" horiz-adv-x="815" d="M72 1434h225v-1106q0 -139 116.5 -139.5t116.5 139.5v1106h213v-1092q0 -174 -86 -267t-249.5 -93t-249.5 93t-86 267v1092zM430 1737h221l-209 -228h-151z" /> +<glyph unicode="û" horiz-adv-x="815" d="M72 1434h225v-1106q0 -139 116.5 -139.5t116.5 139.5v1106h213v-1092q0 -174 -86 -267t-249.5 -93t-249.5 93t-86 267v1092zM319 1509h-192l182 228h203l182 -228h-192l-92 113z" /> +<glyph unicode="ü" horiz-adv-x="815" d="M72 1434h225v-1106q0 -139 116.5 -139.5t116.5 139.5v1106h213v-1092q0 -174 -86 -267t-249.5 -93t-249.5 93t-86 267v1092zM158 1706h196v-197h-196v197zM469 1706h197v-197h-197v197z" /> +<glyph unicode="ý" d="M293 0v475l-285 959h236l172 -654l172 654h215l-285 -959v-475h-225zM434 1737h221l-209 -228h-151z" /> +<glyph unicode="þ" horiz-adv-x="772" d="M82 0v1434h225v-164h107q336 0 336 -355v-186q0 -354 -336 -354h-107v-375h-225zM414 1065h-107v-485h107q55 0 82.5 30.5t27.5 104.5v215q0 74 -27.5 104.5t-82.5 30.5z" /> +<glyph unicode="ÿ" d="M293 0v475l-285 959h236l172 -654l172 654h215l-285 -959v-475h-225zM160 1706h196v-197h-196v197zM471 1706h197v-197h-197v197z" /> +<glyph unicode="Œ" horiz-adv-x="1200" d="M754 1229v-400h309v-204h-309v-420h389v-205h-746q-336 0 -336 354v725q0 354 336 355h746v-205h-389zM528 205v1024h-127q-115 0 -114 -139v-746q0 -139 114 -139h127z" /> +<glyph unicode="œ" horiz-adv-x="1200" d="M754 1229v-400h309v-204h-309v-420h389v-205h-746q-336 0 -336 354v725q0 354 336 355h746v-205h-389zM528 205v1024h-127q-115 0 -114 -139v-746q0 -139 114 -139h127z" /> +<glyph unicode="Ÿ" d="M293 0v475l-285 959h236l172 -654l172 654h215l-285 -959v-475h-225zM160 1706h196v-197h-196v197zM471 1706h197v-197h-197v197z" /> +<glyph unicode="ˆ" horiz-adv-x="512" d="M166 1509h-193l183 228h202l183 -228h-193l-92 113z" /> +<glyph unicode="˜" horiz-adv-x="512" d="M338 1665q59 0 88 59l109 -75q-51 -139 -175 -140q-45 0 -100 26t-84 26q-59 0 -88 -60l-108 76q51 139 174 139q47 0 102 -25.5t82 -25.5z" /> +<glyph unicode=" " horiz-adv-x="915" /> +<glyph unicode=" " horiz-adv-x="1831" /> +<glyph unicode=" " horiz-adv-x="915" /> +<glyph unicode=" " horiz-adv-x="1831" /> +<glyph unicode=" " horiz-adv-x="610" /> +<glyph unicode=" " horiz-adv-x="457" /> +<glyph unicode=" " horiz-adv-x="305" /> +<glyph unicode=" " horiz-adv-x="305" /> +<glyph unicode=" " horiz-adv-x="228" /> +<glyph unicode=" " horiz-adv-x="366" /> +<glyph unicode=" " horiz-adv-x="101" /> +<glyph unicode="‐" horiz-adv-x="552" d="M72 614v205h409v-205h-409z" /> +<glyph unicode="‑" horiz-adv-x="552" d="M72 614v205h409v-205h-409z" /> +<glyph unicode="‒" horiz-adv-x="552" d="M72 614v205h409v-205h-409z" /> +<glyph unicode="–" horiz-adv-x="1024" d="M0 625v184h1024v-184h-1024z" /> +<glyph unicode="—" horiz-adv-x="2048" d="M0 625v184h2048v-184h-2048z" /> +<glyph unicode="‘" horiz-adv-x="380" d="M213 1229h86v-217h-217v194l98 228h92z" /> +<glyph unicode="’" horiz-adv-x="380" d="M168 1217h-86v217h217v-195l-98 -227h-92z" /> +<glyph unicode="‚" horiz-adv-x="380" d="M168 0h-86v217h217v-194l-98 -228h-92z" /> +<glyph unicode="“" horiz-adv-x="679" d="M213 1229h86v-217h-217v194l98 228h92zM512 1229h86v-217h-217v194l98 228h92z" /> +<glyph unicode="”" horiz-adv-x="679" d="M168 1217h-86v217h217v-195l-98 -227h-92zM467 1217h-86v217h217v-195l-98 -227h-92z" /> +<glyph unicode="„" horiz-adv-x="679" d="M168 0h-86v217h217v-194l-98 -228h-92zM467 0h-86v217h217v-194l-98 -228h-92z" /> +<glyph unicode="•" d="M121 717q0 119 83 201.5t201.5 82.5t201.5 -82.5t83 -201.5t-83 -202t-201.5 -83t-201.5 83t-83 202z" /> +<glyph unicode="…" horiz-adv-x="978" d="M82 217h217v-217h-217v217zM381 217h217v-217h-217v217zM680 217h217v-217h-217v217z" /> +<glyph unicode=" " horiz-adv-x="366" /> +<glyph unicode="‹" horiz-adv-x="401" d="M156 1264h213l-121 -545l121 -578h-213l-123 578z" /> +<glyph unicode="›" horiz-adv-x="401" d="M33 1264h213l123 -545l-123 -578h-213l121 578z" /> +<glyph unicode=" " horiz-adv-x="457" /> +<glyph unicode="€" d="M39 778v113h57v199q0 174 83 267t247 93t247 -93t83 -267v-105h-213v119q0 141 -110.5 141t-110.5 -141v-213h315v-113h-315v-112h315v-113h-315v-223q0 -139 110.5 -139.5t110.5 139.5v129h213v-115q0 -174 -83 -267t-247 -93t-247 93t-83 267v209h-57v113h57v112h-57z " /> +<glyph unicode="™" horiz-adv-x="1200" d="M748 1434l106 -512l96 512h199v-729h-135v518l-96 -518h-136l-108 514v-514h-125v729h199zM20 1303v131h443v-131h-150v-598h-143v598h-150z" /> +<glyph unicode="" horiz-adv-x="1435" d="M0 1435h1435v-1435h-1435v1435z" /> +<glyph unicode="fi" horiz-adv-x="1093" d="M786 0v1434h225v-1434h-225zM307 1229v-432h291v-205h-291v-592h-225v1434h596v-205h-371z" /> +<glyph unicode="fl" horiz-adv-x="1398" d="M786 0v1434h225v-1229h371v-205h-596zM307 1229v-432h291v-205h-291v-592h-225v1434h596v-205h-371z" /> +<glyph unicode="ffi" horiz-adv-x="1797" d="M1490 0v1434h225v-1434h-225zM1011 1229v-432h291v-205h-291v-592h-225v1434h596v-205h-371zM307 1229v-432h291v-205h-291v-592h-225v1434h596v-205h-371z" /> +<glyph unicode="ffl" horiz-adv-x="2102" d="M1490 0v1434h225v-1229h371v-205h-596zM1011 1229v-432h291v-205h-291v-592h-225v1434h596v-205h-371zM307 1229v-432h291v-205h-291v-592h-225v1434h596v-205h-371z" /> +</font> +</defs></svg> \ No newline at end of file diff --git a/_static/img/fonts/BebasNeue-webfont.ttf b/_static/img/fonts/BebasNeue-webfont.ttf new file mode 100755 index 0000000000000000000000000000000000000000..2aae649602059b9ce22016609a2ced610b2d846d GIT binary patch literal 42640 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 literal 0 HcmV?d00001 diff --git a/_static/img/fonts/BebasNeue-webfont.woff b/_static/img/fonts/BebasNeue-webfont.woff new file mode 100755 index 0000000000000000000000000000000000000000..dc0998c285680c37df5cbc06cca622ac4a01d942 GIT binary patch literal 19036 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Q=lKkIbfdN2vh<Ibv(v9Z2LK#K;aTYFLF3X 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 Pg$;9%>IdTiVMqV~r7B+a literal 0 HcmV?d00001 diff --git a/_static/img/logo.png b/_static/img/logo.png new file mode 100644 index 0000000000000000000000000000000000000000..4a5f862e1335ba7f80c4467ace350cda286704ec GIT binary patch literal 8704 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 PbO4kUKD;TDhXno)UETWK literal 0 HcmV?d00001 diff --git a/_static/jquery.js b/_static/jquery.js new file mode 100644 index 0000000..7c24308 --- /dev/null +++ b/_static/jquery.js @@ -0,0 +1,154 @@ +/*! + * jQuery JavaScript Library v1.4.2 + * http://jquery.com/ + * + * Copyright 2010, John Resig + * Dual licensed under the MIT or GPL Version 2 licenses. + * http://jquery.org/license + * + * Includes Sizzle.js + * http://sizzlejs.com/ + * Copyright 2010, The Dojo Foundation + * Released under the MIT, BSD, and GPL Licenses. + * + * Date: Sat Feb 13 22:33:48 2010 -0500 + */ +(function(A,w){function ma(){if(!c.isReady){try{s.documentElement.doScroll("left")}catch(a){setTimeout(ma,1);return}c.ready()}}function Qa(a,b){b.src?c.ajax({url:b.src,async:false,dataType:"script"}):c.globalEval(b.text||b.textContent||b.innerHTML||"");b.parentNode&&b.parentNode.removeChild(b)}function X(a,b,d,f,e,j){var i=a.length;if(typeof b==="object"){for(var o in b)X(a,o,b[o],f,e,d);return a}if(d!==w){f=!j&&f&&c.isFunction(d);for(o=0;o<i;o++)e(a[o],b,f?d.call(a[o],o,e(a[o],b)):d,j);return a}return i? +e(a[0],b):w}function J(){return(new Date).getTime()}function Y(){return false}function Z(){return true}function na(a,b,d){d[0].type=a;return c.event.handle.apply(b,d)}function oa(a){var b,d=[],f=[],e=arguments,j,i,o,k,n,r;i=c.data(this,"events");if(!(a.liveFired===this||!i||!i.live||a.button&&a.type==="click")){a.liveFired=this;var u=i.live.slice(0);for(k=0;k<u.length;k++){i=u[k];i.origType.replace(O,"")===a.type?f.push(i.selector):u.splice(k--,1)}j=c(a.target).closest(f,a.currentTarget);n=0;for(r= +j.length;n<r;n++)for(k=0;k<u.length;k++){i=u[k];if(j[n].selector===i.selector){o=j[n].elem;f=null;if(i.preType==="mouseenter"||i.preType==="mouseleave")f=c(a.relatedTarget).closest(i.selector)[0];if(!f||f!==o)d.push({elem:o,handleObj:i})}}n=0;for(r=d.length;n<r;n++){j=d[n];a.currentTarget=j.elem;a.data=j.handleObj.data;a.handleObj=j.handleObj;if(j.handleObj.origHandler.apply(j.elem,e)===false){b=false;break}}return b}}function pa(a,b){return"live."+(a&&a!=="*"?a+".":"")+b.replace(/\./g,"`").replace(/ /g, +"&")}function qa(a){return!a||!a.parentNode||a.parentNode.nodeType===11}function ra(a,b){var d=0;b.each(function(){if(this.nodeName===(a[d]&&a[d].nodeName)){var f=c.data(a[d++]),e=c.data(this,f);if(f=f&&f.events){delete e.handle;e.events={};for(var j in f)for(var i in f[j])c.event.add(this,j,f[j][i],f[j][i].data)}}})}function sa(a,b,d){var f,e,j;b=b&&b[0]?b[0].ownerDocument||b[0]:s;if(a.length===1&&typeof a[0]==="string"&&a[0].length<512&&b===s&&!ta.test(a[0])&&(c.support.checkClone||!ua.test(a[0]))){e= +true;if(j=c.fragments[a[0]])if(j!==1)f=j}if(!f){f=b.createDocumentFragment();c.clean(a,b,f,d)}if(e)c.fragments[a[0]]=j?f:1;return{fragment:f,cacheable:e}}function K(a,b){var d={};c.each(va.concat.apply([],va.slice(0,b)),function(){d[this]=a});return d}function wa(a){return"scrollTo"in a&&a.document?a:a.nodeType===9?a.defaultView||a.parentWindow:false}var c=function(a,b){return new c.fn.init(a,b)},Ra=A.jQuery,Sa=A.$,s=A.document,T,Ta=/^[^<]*(<[\w\W]+>)[^>]*$|^#([\w-]+)$/,Ua=/^.[^:#\[\.,]*$/,Va=/\S/, +Wa=/^(\s|\u00A0)+|(\s|\u00A0)+$/g,Xa=/^<(\w+)\s*\/?>(?:<\/\1>)?$/,P=navigator.userAgent,xa=false,Q=[],L,$=Object.prototype.toString,aa=Object.prototype.hasOwnProperty,ba=Array.prototype.push,R=Array.prototype.slice,ya=Array.prototype.indexOf;c.fn=c.prototype={init:function(a,b){var d,f;if(!a)return this;if(a.nodeType){this.context=this[0]=a;this.length=1;return this}if(a==="body"&&!b){this.context=s;this[0]=s.body;this.selector="body";this.length=1;return this}if(typeof a==="string")if((d=Ta.exec(a))&& +(d[1]||!b))if(d[1]){f=b?b.ownerDocument||b:s;if(a=Xa.exec(a))if(c.isPlainObject(b)){a=[s.createElement(a[1])];c.fn.attr.call(a,b,true)}else a=[f.createElement(a[1])];else{a=sa([d[1]],[f]);a=(a.cacheable?a.fragment.cloneNode(true):a.fragment).childNodes}return c.merge(this,a)}else{if(b=s.getElementById(d[2])){if(b.id!==d[2])return T.find(a);this.length=1;this[0]=b}this.context=s;this.selector=a;return this}else if(!b&&/^\w+$/.test(a)){this.selector=a;this.context=s;a=s.getElementsByTagName(a);return c.merge(this, +a)}else return!b||b.jquery?(b||T).find(a):c(b).find(a);else if(c.isFunction(a))return T.ready(a);if(a.selector!==w){this.selector=a.selector;this.context=a.context}return c.makeArray(a,this)},selector:"",jquery:"1.4.2",length:0,size:function(){return this.length},toArray:function(){return R.call(this,0)},get:function(a){return a==null?this.toArray():a<0?this.slice(a)[0]:this[a]},pushStack:function(a,b,d){var f=c();c.isArray(a)?ba.apply(f,a):c.merge(f,a);f.prevObject=this;f.context=this.context;if(b=== +"find")f.selector=this.selector+(this.selector?" ":"")+d;else if(b)f.selector=this.selector+"."+b+"("+d+")";return f},each:function(a,b){return c.each(this,a,b)},ready:function(a){c.bindReady();if(c.isReady)a.call(s,c);else Q&&Q.push(a);return this},eq:function(a){return a===-1?this.slice(a):this.slice(a,+a+1)},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},slice:function(){return this.pushStack(R.apply(this,arguments),"slice",R.call(arguments).join(","))},map:function(a){return this.pushStack(c.map(this, +function(b,d){return a.call(b,d,b)}))},end:function(){return this.prevObject||c(null)},push:ba,sort:[].sort,splice:[].splice};c.fn.init.prototype=c.fn;c.extend=c.fn.extend=function(){var a=arguments[0]||{},b=1,d=arguments.length,f=false,e,j,i,o;if(typeof a==="boolean"){f=a;a=arguments[1]||{};b=2}if(typeof a!=="object"&&!c.isFunction(a))a={};if(d===b){a=this;--b}for(;b<d;b++)if((e=arguments[b])!=null)for(j in e){i=a[j];o=e[j];if(a!==o)if(f&&o&&(c.isPlainObject(o)||c.isArray(o))){i=i&&(c.isPlainObject(i)|| +c.isArray(i))?i:c.isArray(o)?[]:{};a[j]=c.extend(f,i,o)}else if(o!==w)a[j]=o}return a};c.extend({noConflict:function(a){A.$=Sa;if(a)A.jQuery=Ra;return c},isReady:false,ready:function(){if(!c.isReady){if(!s.body)return setTimeout(c.ready,13);c.isReady=true;if(Q){for(var a,b=0;a=Q[b++];)a.call(s,c);Q=null}c.fn.triggerHandler&&c(s).triggerHandler("ready")}},bindReady:function(){if(!xa){xa=true;if(s.readyState==="complete")return c.ready();if(s.addEventListener){s.addEventListener("DOMContentLoaded", +L,false);A.addEventListener("load",c.ready,false)}else if(s.attachEvent){s.attachEvent("onreadystatechange",L);A.attachEvent("onload",c.ready);var a=false;try{a=A.frameElement==null}catch(b){}s.documentElement.doScroll&&a&&ma()}}},isFunction:function(a){return $.call(a)==="[object Function]"},isArray:function(a){return $.call(a)==="[object Array]"},isPlainObject:function(a){if(!a||$.call(a)!=="[object Object]"||a.nodeType||a.setInterval)return false;if(a.constructor&&!aa.call(a,"constructor")&&!aa.call(a.constructor.prototype, +"isPrototypeOf"))return false;var b;for(b in a);return b===w||aa.call(a,b)},isEmptyObject:function(a){for(var b in a)return false;return true},error:function(a){throw a;},parseJSON:function(a){if(typeof a!=="string"||!a)return null;a=c.trim(a);if(/^[\],:{}\s]*$/.test(a.replace(/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g,"@").replace(/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,"]").replace(/(?:^|:|,)(?:\s*\[)+/g,"")))return A.JSON&&A.JSON.parse?A.JSON.parse(a):(new Function("return "+ +a))();else c.error("Invalid JSON: "+a)},noop:function(){},globalEval:function(a){if(a&&Va.test(a)){var b=s.getElementsByTagName("head")[0]||s.documentElement,d=s.createElement("script");d.type="text/javascript";if(c.support.scriptEval)d.appendChild(s.createTextNode(a));else d.text=a;b.insertBefore(d,b.firstChild);b.removeChild(d)}},nodeName:function(a,b){return a.nodeName&&a.nodeName.toUpperCase()===b.toUpperCase()},each:function(a,b,d){var f,e=0,j=a.length,i=j===w||c.isFunction(a);if(d)if(i)for(f in a){if(b.apply(a[f], +d)===false)break}else for(;e<j;){if(b.apply(a[e++],d)===false)break}else if(i)for(f in a){if(b.call(a[f],f,a[f])===false)break}else for(d=a[0];e<j&&b.call(d,e,d)!==false;d=a[++e]);return a},trim:function(a){return(a||"").replace(Wa,"")},makeArray:function(a,b){b=b||[];if(a!=null)a.length==null||typeof a==="string"||c.isFunction(a)||typeof a!=="function"&&a.setInterval?ba.call(b,a):c.merge(b,a);return b},inArray:function(a,b){if(b.indexOf)return b.indexOf(a);for(var d=0,f=b.length;d<f;d++)if(b[d]=== +a)return d;return-1},merge:function(a,b){var d=a.length,f=0;if(typeof b.length==="number")for(var e=b.length;f<e;f++)a[d++]=b[f];else for(;b[f]!==w;)a[d++]=b[f++];a.length=d;return a},grep:function(a,b,d){for(var f=[],e=0,j=a.length;e<j;e++)!d!==!b(a[e],e)&&f.push(a[e]);return f},map:function(a,b,d){for(var f=[],e,j=0,i=a.length;j<i;j++){e=b(a[j],j,d);if(e!=null)f[f.length]=e}return f.concat.apply([],f)},guid:1,proxy:function(a,b,d){if(arguments.length===2)if(typeof b==="string"){d=a;a=d[b];b=w}else if(b&& +!c.isFunction(b)){d=b;b=w}if(!b&&a)b=function(){return a.apply(d||this,arguments)};if(a)b.guid=a.guid=a.guid||b.guid||c.guid++;return b},uaMatch:function(a){a=a.toLowerCase();a=/(webkit)[ \/]([\w.]+)/.exec(a)||/(opera)(?:.*version)?[ \/]([\w.]+)/.exec(a)||/(msie) ([\w.]+)/.exec(a)||!/compatible/.test(a)&&/(mozilla)(?:.*? rv:([\w.]+))?/.exec(a)||[];return{browser:a[1]||"",version:a[2]||"0"}},browser:{}});P=c.uaMatch(P);if(P.browser){c.browser[P.browser]=true;c.browser.version=P.version}if(c.browser.webkit)c.browser.safari= +true;if(ya)c.inArray=function(a,b){return ya.call(b,a)};T=c(s);if(s.addEventListener)L=function(){s.removeEventListener("DOMContentLoaded",L,false);c.ready()};else if(s.attachEvent)L=function(){if(s.readyState==="complete"){s.detachEvent("onreadystatechange",L);c.ready()}};(function(){c.support={};var a=s.documentElement,b=s.createElement("script"),d=s.createElement("div"),f="script"+J();d.style.display="none";d.innerHTML=" <link/><table></table><a href='/a' style='color:red;float:left;opacity:.55;'>a</a><input type='checkbox'/>"; +var e=d.getElementsByTagName("*"),j=d.getElementsByTagName("a")[0];if(!(!e||!e.length||!j)){c.support={leadingWhitespace:d.firstChild.nodeType===3,tbody:!d.getElementsByTagName("tbody").length,htmlSerialize:!!d.getElementsByTagName("link").length,style:/red/.test(j.getAttribute("style")),hrefNormalized:j.getAttribute("href")==="/a",opacity:/^0.55$/.test(j.style.opacity),cssFloat:!!j.style.cssFloat,checkOn:d.getElementsByTagName("input")[0].value==="on",optSelected:s.createElement("select").appendChild(s.createElement("option")).selected, +parentNode:d.removeChild(d.appendChild(s.createElement("div"))).parentNode===null,deleteExpando:true,checkClone:false,scriptEval:false,noCloneEvent:true,boxModel:null};b.type="text/javascript";try{b.appendChild(s.createTextNode("window."+f+"=1;"))}catch(i){}a.insertBefore(b,a.firstChild);if(A[f]){c.support.scriptEval=true;delete A[f]}try{delete b.test}catch(o){c.support.deleteExpando=false}a.removeChild(b);if(d.attachEvent&&d.fireEvent){d.attachEvent("onclick",function k(){c.support.noCloneEvent= +false;d.detachEvent("onclick",k)});d.cloneNode(true).fireEvent("onclick")}d=s.createElement("div");d.innerHTML="<input type='radio' name='radiotest' checked='checked'/>";a=s.createDocumentFragment();a.appendChild(d.firstChild);c.support.checkClone=a.cloneNode(true).cloneNode(true).lastChild.checked;c(function(){var k=s.createElement("div");k.style.width=k.style.paddingLeft="1px";s.body.appendChild(k);c.boxModel=c.support.boxModel=k.offsetWidth===2;s.body.removeChild(k).style.display="none"});a=function(k){var n= +s.createElement("div");k="on"+k;var r=k in n;if(!r){n.setAttribute(k,"return;");r=typeof n[k]==="function"}return r};c.support.submitBubbles=a("submit");c.support.changeBubbles=a("change");a=b=d=e=j=null}})();c.props={"for":"htmlFor","class":"className",readonly:"readOnly",maxlength:"maxLength",cellspacing:"cellSpacing",rowspan:"rowSpan",colspan:"colSpan",tabindex:"tabIndex",usemap:"useMap",frameborder:"frameBorder"};var G="jQuery"+J(),Ya=0,za={};c.extend({cache:{},expando:G,noData:{embed:true,object:true, +applet:true},data:function(a,b,d){if(!(a.nodeName&&c.noData[a.nodeName.toLowerCase()])){a=a==A?za:a;var f=a[G],e=c.cache;if(!f&&typeof b==="string"&&d===w)return null;f||(f=++Ya);if(typeof b==="object"){a[G]=f;e[f]=c.extend(true,{},b)}else if(!e[f]){a[G]=f;e[f]={}}a=e[f];if(d!==w)a[b]=d;return typeof b==="string"?a[b]:a}},removeData:function(a,b){if(!(a.nodeName&&c.noData[a.nodeName.toLowerCase()])){a=a==A?za:a;var d=a[G],f=c.cache,e=f[d];if(b){if(e){delete e[b];c.isEmptyObject(e)&&c.removeData(a)}}else{if(c.support.deleteExpando)delete a[c.expando]; +else a.removeAttribute&&a.removeAttribute(c.expando);delete f[d]}}}});c.fn.extend({data:function(a,b){if(typeof a==="undefined"&&this.length)return c.data(this[0]);else if(typeof a==="object")return this.each(function(){c.data(this,a)});var d=a.split(".");d[1]=d[1]?"."+d[1]:"";if(b===w){var f=this.triggerHandler("getData"+d[1]+"!",[d[0]]);if(f===w&&this.length)f=c.data(this[0],a);return f===w&&d[1]?this.data(d[0]):f}else return this.trigger("setData"+d[1]+"!",[d[0],b]).each(function(){c.data(this, +a,b)})},removeData:function(a){return this.each(function(){c.removeData(this,a)})}});c.extend({queue:function(a,b,d){if(a){b=(b||"fx")+"queue";var f=c.data(a,b);if(!d)return f||[];if(!f||c.isArray(d))f=c.data(a,b,c.makeArray(d));else f.push(d);return f}},dequeue:function(a,b){b=b||"fx";var d=c.queue(a,b),f=d.shift();if(f==="inprogress")f=d.shift();if(f){b==="fx"&&d.unshift("inprogress");f.call(a,function(){c.dequeue(a,b)})}}});c.fn.extend({queue:function(a,b){if(typeof a!=="string"){b=a;a="fx"}if(b=== +w)return c.queue(this[0],a);return this.each(function(){var d=c.queue(this,a,b);a==="fx"&&d[0]!=="inprogress"&&c.dequeue(this,a)})},dequeue:function(a){return this.each(function(){c.dequeue(this,a)})},delay:function(a,b){a=c.fx?c.fx.speeds[a]||a:a;b=b||"fx";return this.queue(b,function(){var d=this;setTimeout(function(){c.dequeue(d,b)},a)})},clearQueue:function(a){return this.queue(a||"fx",[])}});var Aa=/[\n\t]/g,ca=/\s+/,Za=/\r/g,$a=/href|src|style/,ab=/(button|input)/i,bb=/(button|input|object|select|textarea)/i, +cb=/^(a|area)$/i,Ba=/radio|checkbox/;c.fn.extend({attr:function(a,b){return X(this,a,b,true,c.attr)},removeAttr:function(a){return this.each(function(){c.attr(this,a,"");this.nodeType===1&&this.removeAttribute(a)})},addClass:function(a){if(c.isFunction(a))return this.each(function(n){var r=c(this);r.addClass(a.call(this,n,r.attr("class")))});if(a&&typeof a==="string")for(var b=(a||"").split(ca),d=0,f=this.length;d<f;d++){var e=this[d];if(e.nodeType===1)if(e.className){for(var j=" "+e.className+" ", +i=e.className,o=0,k=b.length;o<k;o++)if(j.indexOf(" "+b[o]+" ")<0)i+=" "+b[o];e.className=c.trim(i)}else e.className=a}return this},removeClass:function(a){if(c.isFunction(a))return this.each(function(k){var n=c(this);n.removeClass(a.call(this,k,n.attr("class")))});if(a&&typeof a==="string"||a===w)for(var b=(a||"").split(ca),d=0,f=this.length;d<f;d++){var e=this[d];if(e.nodeType===1&&e.className)if(a){for(var j=(" "+e.className+" ").replace(Aa," "),i=0,o=b.length;i<o;i++)j=j.replace(" "+b[i]+" ", +" ");e.className=c.trim(j)}else e.className=""}return this},toggleClass:function(a,b){var d=typeof a,f=typeof b==="boolean";if(c.isFunction(a))return this.each(function(e){var j=c(this);j.toggleClass(a.call(this,e,j.attr("class"),b),b)});return this.each(function(){if(d==="string")for(var e,j=0,i=c(this),o=b,k=a.split(ca);e=k[j++];){o=f?o:!i.hasClass(e);i[o?"addClass":"removeClass"](e)}else if(d==="undefined"||d==="boolean"){this.className&&c.data(this,"__className__",this.className);this.className= +this.className||a===false?"":c.data(this,"__className__")||""}})},hasClass:function(a){a=" "+a+" ";for(var b=0,d=this.length;b<d;b++)if((" "+this[b].className+" ").replace(Aa," ").indexOf(a)>-1)return true;return false},val:function(a){if(a===w){var b=this[0];if(b){if(c.nodeName(b,"option"))return(b.attributes.value||{}).specified?b.value:b.text;if(c.nodeName(b,"select")){var d=b.selectedIndex,f=[],e=b.options;b=b.type==="select-one";if(d<0)return null;var j=b?d:0;for(d=b?d+1:e.length;j<d;j++){var i= +e[j];if(i.selected){a=c(i).val();if(b)return a;f.push(a)}}return f}if(Ba.test(b.type)&&!c.support.checkOn)return b.getAttribute("value")===null?"on":b.value;return(b.value||"").replace(Za,"")}return w}var o=c.isFunction(a);return this.each(function(k){var n=c(this),r=a;if(this.nodeType===1){if(o)r=a.call(this,k,n.val());if(typeof r==="number")r+="";if(c.isArray(r)&&Ba.test(this.type))this.checked=c.inArray(n.val(),r)>=0;else if(c.nodeName(this,"select")){var u=c.makeArray(r);c("option",this).each(function(){this.selected= +c.inArray(c(this).val(),u)>=0});if(!u.length)this.selectedIndex=-1}else this.value=r}})}});c.extend({attrFn:{val:true,css:true,html:true,text:true,data:true,width:true,height:true,offset:true},attr:function(a,b,d,f){if(!a||a.nodeType===3||a.nodeType===8)return w;if(f&&b in c.attrFn)return c(a)[b](d);f=a.nodeType!==1||!c.isXMLDoc(a);var e=d!==w;b=f&&c.props[b]||b;if(a.nodeType===1){var j=$a.test(b);if(b in a&&f&&!j){if(e){b==="type"&&ab.test(a.nodeName)&&a.parentNode&&c.error("type property can't be changed"); +a[b]=d}if(c.nodeName(a,"form")&&a.getAttributeNode(b))return a.getAttributeNode(b).nodeValue;if(b==="tabIndex")return(b=a.getAttributeNode("tabIndex"))&&b.specified?b.value:bb.test(a.nodeName)||cb.test(a.nodeName)&&a.href?0:w;return a[b]}if(!c.support.style&&f&&b==="style"){if(e)a.style.cssText=""+d;return a.style.cssText}e&&a.setAttribute(b,""+d);a=!c.support.hrefNormalized&&f&&j?a.getAttribute(b,2):a.getAttribute(b);return a===null?w:a}return c.style(a,b,d)}});var O=/\.(.*)$/,db=function(a){return a.replace(/[^\w\s\.\|`]/g, +function(b){return"\\"+b})};c.event={add:function(a,b,d,f){if(!(a.nodeType===3||a.nodeType===8)){if(a.setInterval&&a!==A&&!a.frameElement)a=A;var e,j;if(d.handler){e=d;d=e.handler}if(!d.guid)d.guid=c.guid++;if(j=c.data(a)){var i=j.events=j.events||{},o=j.handle;if(!o)j.handle=o=function(){return typeof c!=="undefined"&&!c.event.triggered?c.event.handle.apply(o.elem,arguments):w};o.elem=a;b=b.split(" ");for(var k,n=0,r;k=b[n++];){j=e?c.extend({},e):{handler:d,data:f};if(k.indexOf(".")>-1){r=k.split("."); +k=r.shift();j.namespace=r.slice(0).sort().join(".")}else{r=[];j.namespace=""}j.type=k;j.guid=d.guid;var u=i[k],z=c.event.special[k]||{};if(!u){u=i[k]=[];if(!z.setup||z.setup.call(a,f,r,o)===false)if(a.addEventListener)a.addEventListener(k,o,false);else a.attachEvent&&a.attachEvent("on"+k,o)}if(z.add){z.add.call(a,j);if(!j.handler.guid)j.handler.guid=d.guid}u.push(j);c.event.global[k]=true}a=null}}},global:{},remove:function(a,b,d,f){if(!(a.nodeType===3||a.nodeType===8)){var e,j=0,i,o,k,n,r,u,z=c.data(a), +C=z&&z.events;if(z&&C){if(b&&b.type){d=b.handler;b=b.type}if(!b||typeof b==="string"&&b.charAt(0)==="."){b=b||"";for(e in C)c.event.remove(a,e+b)}else{for(b=b.split(" ");e=b[j++];){n=e;i=e.indexOf(".")<0;o=[];if(!i){o=e.split(".");e=o.shift();k=new RegExp("(^|\\.)"+c.map(o.slice(0).sort(),db).join("\\.(?:.*\\.)?")+"(\\.|$)")}if(r=C[e])if(d){n=c.event.special[e]||{};for(B=f||0;B<r.length;B++){u=r[B];if(d.guid===u.guid){if(i||k.test(u.namespace)){f==null&&r.splice(B--,1);n.remove&&n.remove.call(a,u)}if(f!= +null)break}}if(r.length===0||f!=null&&r.length===1){if(!n.teardown||n.teardown.call(a,o)===false)Ca(a,e,z.handle);delete C[e]}}else for(var B=0;B<r.length;B++){u=r[B];if(i||k.test(u.namespace)){c.event.remove(a,n,u.handler,B);r.splice(B--,1)}}}if(c.isEmptyObject(C)){if(b=z.handle)b.elem=null;delete z.events;delete z.handle;c.isEmptyObject(z)&&c.removeData(a)}}}}},trigger:function(a,b,d,f){var e=a.type||a;if(!f){a=typeof a==="object"?a[G]?a:c.extend(c.Event(e),a):c.Event(e);if(e.indexOf("!")>=0){a.type= +e=e.slice(0,-1);a.exclusive=true}if(!d){a.stopPropagation();c.event.global[e]&&c.each(c.cache,function(){this.events&&this.events[e]&&c.event.trigger(a,b,this.handle.elem)})}if(!d||d.nodeType===3||d.nodeType===8)return w;a.result=w;a.target=d;b=c.makeArray(b);b.unshift(a)}a.currentTarget=d;(f=c.data(d,"handle"))&&f.apply(d,b);f=d.parentNode||d.ownerDocument;try{if(!(d&&d.nodeName&&c.noData[d.nodeName.toLowerCase()]))if(d["on"+e]&&d["on"+e].apply(d,b)===false)a.result=false}catch(j){}if(!a.isPropagationStopped()&& +f)c.event.trigger(a,b,f,true);else if(!a.isDefaultPrevented()){f=a.target;var i,o=c.nodeName(f,"a")&&e==="click",k=c.event.special[e]||{};if((!k._default||k._default.call(d,a)===false)&&!o&&!(f&&f.nodeName&&c.noData[f.nodeName.toLowerCase()])){try{if(f[e]){if(i=f["on"+e])f["on"+e]=null;c.event.triggered=true;f[e]()}}catch(n){}if(i)f["on"+e]=i;c.event.triggered=false}}},handle:function(a){var b,d,f,e;a=arguments[0]=c.event.fix(a||A.event);a.currentTarget=this;b=a.type.indexOf(".")<0&&!a.exclusive; +if(!b){d=a.type.split(".");a.type=d.shift();f=new RegExp("(^|\\.)"+d.slice(0).sort().join("\\.(?:.*\\.)?")+"(\\.|$)")}e=c.data(this,"events");d=e[a.type];if(e&&d){d=d.slice(0);e=0;for(var j=d.length;e<j;e++){var i=d[e];if(b||f.test(i.namespace)){a.handler=i.handler;a.data=i.data;a.handleObj=i;i=i.handler.apply(this,arguments);if(i!==w){a.result=i;if(i===false){a.preventDefault();a.stopPropagation()}}if(a.isImmediatePropagationStopped())break}}}return a.result},props:"altKey attrChange attrName bubbles button cancelable charCode clientX clientY ctrlKey currentTarget data detail eventPhase fromElement handler keyCode layerX layerY metaKey newValue offsetX offsetY originalTarget pageX pageY prevValue relatedNode relatedTarget screenX screenY shiftKey srcElement target toElement view wheelDelta which".split(" "), +fix:function(a){if(a[G])return a;var b=a;a=c.Event(b);for(var d=this.props.length,f;d;){f=this.props[--d];a[f]=b[f]}if(!a.target)a.target=a.srcElement||s;if(a.target.nodeType===3)a.target=a.target.parentNode;if(!a.relatedTarget&&a.fromElement)a.relatedTarget=a.fromElement===a.target?a.toElement:a.fromElement;if(a.pageX==null&&a.clientX!=null){b=s.documentElement;d=s.body;a.pageX=a.clientX+(b&&b.scrollLeft||d&&d.scrollLeft||0)-(b&&b.clientLeft||d&&d.clientLeft||0);a.pageY=a.clientY+(b&&b.scrollTop|| +d&&d.scrollTop||0)-(b&&b.clientTop||d&&d.clientTop||0)}if(!a.which&&(a.charCode||a.charCode===0?a.charCode:a.keyCode))a.which=a.charCode||a.keyCode;if(!a.metaKey&&a.ctrlKey)a.metaKey=a.ctrlKey;if(!a.which&&a.button!==w)a.which=a.button&1?1:a.button&2?3:a.button&4?2:0;return a},guid:1E8,proxy:c.proxy,special:{ready:{setup:c.bindReady,teardown:c.noop},live:{add:function(a){c.event.add(this,a.origType,c.extend({},a,{handler:oa}))},remove:function(a){var b=true,d=a.origType.replace(O,"");c.each(c.data(this, +"events").live||[],function(){if(d===this.origType.replace(O,""))return b=false});b&&c.event.remove(this,a.origType,oa)}},beforeunload:{setup:function(a,b,d){if(this.setInterval)this.onbeforeunload=d;return false},teardown:function(a,b){if(this.onbeforeunload===b)this.onbeforeunload=null}}}};var Ca=s.removeEventListener?function(a,b,d){a.removeEventListener(b,d,false)}:function(a,b,d){a.detachEvent("on"+b,d)};c.Event=function(a){if(!this.preventDefault)return new c.Event(a);if(a&&a.type){this.originalEvent= +a;this.type=a.type}else this.type=a;this.timeStamp=J();this[G]=true};c.Event.prototype={preventDefault:function(){this.isDefaultPrevented=Z;var a=this.originalEvent;if(a){a.preventDefault&&a.preventDefault();a.returnValue=false}},stopPropagation:function(){this.isPropagationStopped=Z;var a=this.originalEvent;if(a){a.stopPropagation&&a.stopPropagation();a.cancelBubble=true}},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=Z;this.stopPropagation()},isDefaultPrevented:Y,isPropagationStopped:Y, +isImmediatePropagationStopped:Y};var Da=function(a){var b=a.relatedTarget;try{for(;b&&b!==this;)b=b.parentNode;if(b!==this){a.type=a.data;c.event.handle.apply(this,arguments)}}catch(d){}},Ea=function(a){a.type=a.data;c.event.handle.apply(this,arguments)};c.each({mouseenter:"mouseover",mouseleave:"mouseout"},function(a,b){c.event.special[a]={setup:function(d){c.event.add(this,b,d&&d.selector?Ea:Da,a)},teardown:function(d){c.event.remove(this,b,d&&d.selector?Ea:Da)}}});if(!c.support.submitBubbles)c.event.special.submit= +{setup:function(){if(this.nodeName.toLowerCase()!=="form"){c.event.add(this,"click.specialSubmit",function(a){var b=a.target,d=b.type;if((d==="submit"||d==="image")&&c(b).closest("form").length)return na("submit",this,arguments)});c.event.add(this,"keypress.specialSubmit",function(a){var b=a.target,d=b.type;if((d==="text"||d==="password")&&c(b).closest("form").length&&a.keyCode===13)return na("submit",this,arguments)})}else return false},teardown:function(){c.event.remove(this,".specialSubmit")}}; +if(!c.support.changeBubbles){var da=/textarea|input|select/i,ea,Fa=function(a){var b=a.type,d=a.value;if(b==="radio"||b==="checkbox")d=a.checked;else if(b==="select-multiple")d=a.selectedIndex>-1?c.map(a.options,function(f){return f.selected}).join("-"):"";else if(a.nodeName.toLowerCase()==="select")d=a.selectedIndex;return d},fa=function(a,b){var d=a.target,f,e;if(!(!da.test(d.nodeName)||d.readOnly)){f=c.data(d,"_change_data");e=Fa(d);if(a.type!=="focusout"||d.type!=="radio")c.data(d,"_change_data", +e);if(!(f===w||e===f))if(f!=null||e){a.type="change";return c.event.trigger(a,b,d)}}};c.event.special.change={filters:{focusout:fa,click:function(a){var b=a.target,d=b.type;if(d==="radio"||d==="checkbox"||b.nodeName.toLowerCase()==="select")return fa.call(this,a)},keydown:function(a){var b=a.target,d=b.type;if(a.keyCode===13&&b.nodeName.toLowerCase()!=="textarea"||a.keyCode===32&&(d==="checkbox"||d==="radio")||d==="select-multiple")return fa.call(this,a)},beforeactivate:function(a){a=a.target;c.data(a, +"_change_data",Fa(a))}},setup:function(){if(this.type==="file")return false;for(var a in ea)c.event.add(this,a+".specialChange",ea[a]);return da.test(this.nodeName)},teardown:function(){c.event.remove(this,".specialChange");return da.test(this.nodeName)}};ea=c.event.special.change.filters}s.addEventListener&&c.each({focus:"focusin",blur:"focusout"},function(a,b){function d(f){f=c.event.fix(f);f.type=b;return c.event.handle.call(this,f)}c.event.special[b]={setup:function(){this.addEventListener(a, +d,true)},teardown:function(){this.removeEventListener(a,d,true)}}});c.each(["bind","one"],function(a,b){c.fn[b]=function(d,f,e){if(typeof d==="object"){for(var j in d)this[b](j,f,d[j],e);return this}if(c.isFunction(f)){e=f;f=w}var i=b==="one"?c.proxy(e,function(k){c(this).unbind(k,i);return e.apply(this,arguments)}):e;if(d==="unload"&&b!=="one")this.one(d,f,e);else{j=0;for(var o=this.length;j<o;j++)c.event.add(this[j],d,i,f)}return this}});c.fn.extend({unbind:function(a,b){if(typeof a==="object"&& +!a.preventDefault)for(var d in a)this.unbind(d,a[d]);else{d=0;for(var f=this.length;d<f;d++)c.event.remove(this[d],a,b)}return this},delegate:function(a,b,d,f){return this.live(b,d,f,a)},undelegate:function(a,b,d){return arguments.length===0?this.unbind("live"):this.die(b,null,d,a)},trigger:function(a,b){return this.each(function(){c.event.trigger(a,b,this)})},triggerHandler:function(a,b){if(this[0]){a=c.Event(a);a.preventDefault();a.stopPropagation();c.event.trigger(a,b,this[0]);return a.result}}, +toggle:function(a){for(var b=arguments,d=1;d<b.length;)c.proxy(a,b[d++]);return this.click(c.proxy(a,function(f){var e=(c.data(this,"lastToggle"+a.guid)||0)%d;c.data(this,"lastToggle"+a.guid,e+1);f.preventDefault();return b[e].apply(this,arguments)||false}))},hover:function(a,b){return this.mouseenter(a).mouseleave(b||a)}});var Ga={focus:"focusin",blur:"focusout",mouseenter:"mouseover",mouseleave:"mouseout"};c.each(["live","die"],function(a,b){c.fn[b]=function(d,f,e,j){var i,o=0,k,n,r=j||this.selector, +u=j?this:c(this.context);if(c.isFunction(f)){e=f;f=w}for(d=(d||"").split(" ");(i=d[o++])!=null;){j=O.exec(i);k="";if(j){k=j[0];i=i.replace(O,"")}if(i==="hover")d.push("mouseenter"+k,"mouseleave"+k);else{n=i;if(i==="focus"||i==="blur"){d.push(Ga[i]+k);i+=k}else i=(Ga[i]||i)+k;b==="live"?u.each(function(){c.event.add(this,pa(i,r),{data:f,selector:r,handler:e,origType:i,origHandler:e,preType:n})}):u.unbind(pa(i,r),e)}}return this}});c.each("blur focus focusin focusout load resize scroll unload click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup error".split(" "), +function(a,b){c.fn[b]=function(d){return d?this.bind(b,d):this.trigger(b)};if(c.attrFn)c.attrFn[b]=true});A.attachEvent&&!A.addEventListener&&A.attachEvent("onunload",function(){for(var a in c.cache)if(c.cache[a].handle)try{c.event.remove(c.cache[a].handle.elem)}catch(b){}});(function(){function a(g){for(var h="",l,m=0;g[m];m++){l=g[m];if(l.nodeType===3||l.nodeType===4)h+=l.nodeValue;else if(l.nodeType!==8)h+=a(l.childNodes)}return h}function b(g,h,l,m,q,p){q=0;for(var v=m.length;q<v;q++){var t=m[q]; +if(t){t=t[g];for(var y=false;t;){if(t.sizcache===l){y=m[t.sizset];break}if(t.nodeType===1&&!p){t.sizcache=l;t.sizset=q}if(t.nodeName.toLowerCase()===h){y=t;break}t=t[g]}m[q]=y}}}function d(g,h,l,m,q,p){q=0;for(var v=m.length;q<v;q++){var t=m[q];if(t){t=t[g];for(var y=false;t;){if(t.sizcache===l){y=m[t.sizset];break}if(t.nodeType===1){if(!p){t.sizcache=l;t.sizset=q}if(typeof h!=="string"){if(t===h){y=true;break}}else if(k.filter(h,[t]).length>0){y=t;break}}t=t[g]}m[q]=y}}}var f=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^[\]]*\]|['"][^'"]*['"]|[^[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g, +e=0,j=Object.prototype.toString,i=false,o=true;[0,0].sort(function(){o=false;return 0});var k=function(g,h,l,m){l=l||[];var q=h=h||s;if(h.nodeType!==1&&h.nodeType!==9)return[];if(!g||typeof g!=="string")return l;for(var p=[],v,t,y,S,H=true,M=x(h),I=g;(f.exec(""),v=f.exec(I))!==null;){I=v[3];p.push(v[1]);if(v[2]){S=v[3];break}}if(p.length>1&&r.exec(g))if(p.length===2&&n.relative[p[0]])t=ga(p[0]+p[1],h);else for(t=n.relative[p[0]]?[h]:k(p.shift(),h);p.length;){g=p.shift();if(n.relative[g])g+=p.shift(); +t=ga(g,t)}else{if(!m&&p.length>1&&h.nodeType===9&&!M&&n.match.ID.test(p[0])&&!n.match.ID.test(p[p.length-1])){v=k.find(p.shift(),h,M);h=v.expr?k.filter(v.expr,v.set)[0]:v.set[0]}if(h){v=m?{expr:p.pop(),set:z(m)}:k.find(p.pop(),p.length===1&&(p[0]==="~"||p[0]==="+")&&h.parentNode?h.parentNode:h,M);t=v.expr?k.filter(v.expr,v.set):v.set;if(p.length>0)y=z(t);else H=false;for(;p.length;){var D=p.pop();v=D;if(n.relative[D])v=p.pop();else D="";if(v==null)v=h;n.relative[D](y,v,M)}}else y=[]}y||(y=t);y||k.error(D|| +g);if(j.call(y)==="[object Array]")if(H)if(h&&h.nodeType===1)for(g=0;y[g]!=null;g++){if(y[g]&&(y[g]===true||y[g].nodeType===1&&E(h,y[g])))l.push(t[g])}else for(g=0;y[g]!=null;g++)y[g]&&y[g].nodeType===1&&l.push(t[g]);else l.push.apply(l,y);else z(y,l);if(S){k(S,q,l,m);k.uniqueSort(l)}return l};k.uniqueSort=function(g){if(B){i=o;g.sort(B);if(i)for(var h=1;h<g.length;h++)g[h]===g[h-1]&&g.splice(h--,1)}return g};k.matches=function(g,h){return k(g,null,null,h)};k.find=function(g,h,l){var m,q;if(!g)return[]; +for(var p=0,v=n.order.length;p<v;p++){var t=n.order[p];if(q=n.leftMatch[t].exec(g)){var y=q[1];q.splice(1,1);if(y.substr(y.length-1)!=="\\"){q[1]=(q[1]||"").replace(/\\/g,"");m=n.find[t](q,h,l);if(m!=null){g=g.replace(n.match[t],"");break}}}}m||(m=h.getElementsByTagName("*"));return{set:m,expr:g}};k.filter=function(g,h,l,m){for(var q=g,p=[],v=h,t,y,S=h&&h[0]&&x(h[0]);g&&h.length;){for(var H in n.filter)if((t=n.leftMatch[H].exec(g))!=null&&t[2]){var M=n.filter[H],I,D;D=t[1];y=false;t.splice(1,1);if(D.substr(D.length- +1)!=="\\"){if(v===p)p=[];if(n.preFilter[H])if(t=n.preFilter[H](t,v,l,p,m,S)){if(t===true)continue}else y=I=true;if(t)for(var U=0;(D=v[U])!=null;U++)if(D){I=M(D,t,U,v);var Ha=m^!!I;if(l&&I!=null)if(Ha)y=true;else v[U]=false;else if(Ha){p.push(D);y=true}}if(I!==w){l||(v=p);g=g.replace(n.match[H],"");if(!y)return[];break}}}if(g===q)if(y==null)k.error(g);else break;q=g}return v};k.error=function(g){throw"Syntax error, unrecognized expression: "+g;};var n=k.selectors={order:["ID","NAME","TAG"],match:{ID:/#((?:[\w\u00c0-\uFFFF-]|\\.)+)/, +CLASS:/\.((?:[\w\u00c0-\uFFFF-]|\\.)+)/,NAME:/\[name=['"]*((?:[\w\u00c0-\uFFFF-]|\\.)+)['"]*\]/,ATTR:/\[\s*((?:[\w\u00c0-\uFFFF-]|\\.)+)\s*(?:(\S?=)\s*(['"]*)(.*?)\3|)\s*\]/,TAG:/^((?:[\w\u00c0-\uFFFF\*-]|\\.)+)/,CHILD:/:(only|nth|last|first)-child(?:\((even|odd|[\dn+-]*)\))?/,POS:/:(nth|eq|gt|lt|first|last|even|odd)(?:\((\d*)\))?(?=[^-]|$)/,PSEUDO:/:((?:[\w\u00c0-\uFFFF-]|\\.)+)(?:\((['"]?)((?:\([^\)]+\)|[^\(\)]*)+)\2\))?/},leftMatch:{},attrMap:{"class":"className","for":"htmlFor"},attrHandle:{href:function(g){return g.getAttribute("href")}}, +relative:{"+":function(g,h){var l=typeof h==="string",m=l&&!/\W/.test(h);l=l&&!m;if(m)h=h.toLowerCase();m=0;for(var q=g.length,p;m<q;m++)if(p=g[m]){for(;(p=p.previousSibling)&&p.nodeType!==1;);g[m]=l||p&&p.nodeName.toLowerCase()===h?p||false:p===h}l&&k.filter(h,g,true)},">":function(g,h){var l=typeof h==="string";if(l&&!/\W/.test(h)){h=h.toLowerCase();for(var m=0,q=g.length;m<q;m++){var p=g[m];if(p){l=p.parentNode;g[m]=l.nodeName.toLowerCase()===h?l:false}}}else{m=0;for(q=g.length;m<q;m++)if(p=g[m])g[m]= +l?p.parentNode:p.parentNode===h;l&&k.filter(h,g,true)}},"":function(g,h,l){var m=e++,q=d;if(typeof h==="string"&&!/\W/.test(h)){var p=h=h.toLowerCase();q=b}q("parentNode",h,m,g,p,l)},"~":function(g,h,l){var m=e++,q=d;if(typeof h==="string"&&!/\W/.test(h)){var p=h=h.toLowerCase();q=b}q("previousSibling",h,m,g,p,l)}},find:{ID:function(g,h,l){if(typeof h.getElementById!=="undefined"&&!l)return(g=h.getElementById(g[1]))?[g]:[]},NAME:function(g,h){if(typeof h.getElementsByName!=="undefined"){var l=[]; +h=h.getElementsByName(g[1]);for(var m=0,q=h.length;m<q;m++)h[m].getAttribute("name")===g[1]&&l.push(h[m]);return l.length===0?null:l}},TAG:function(g,h){return h.getElementsByTagName(g[1])}},preFilter:{CLASS:function(g,h,l,m,q,p){g=" "+g[1].replace(/\\/g,"")+" ";if(p)return g;p=0;for(var v;(v=h[p])!=null;p++)if(v)if(q^(v.className&&(" "+v.className+" ").replace(/[\t\n]/g," ").indexOf(g)>=0))l||m.push(v);else if(l)h[p]=false;return false},ID:function(g){return g[1].replace(/\\/g,"")},TAG:function(g){return g[1].toLowerCase()}, +CHILD:function(g){if(g[1]==="nth"){var h=/(-?)(\d*)n((?:\+|-)?\d*)/.exec(g[2]==="even"&&"2n"||g[2]==="odd"&&"2n+1"||!/\D/.test(g[2])&&"0n+"+g[2]||g[2]);g[2]=h[1]+(h[2]||1)-0;g[3]=h[3]-0}g[0]=e++;return g},ATTR:function(g,h,l,m,q,p){h=g[1].replace(/\\/g,"");if(!p&&n.attrMap[h])g[1]=n.attrMap[h];if(g[2]==="~=")g[4]=" "+g[4]+" ";return g},PSEUDO:function(g,h,l,m,q){if(g[1]==="not")if((f.exec(g[3])||"").length>1||/^\w/.test(g[3]))g[3]=k(g[3],null,null,h);else{g=k.filter(g[3],h,l,true^q);l||m.push.apply(m, +g);return false}else if(n.match.POS.test(g[0])||n.match.CHILD.test(g[0]))return true;return g},POS:function(g){g.unshift(true);return g}},filters:{enabled:function(g){return g.disabled===false&&g.type!=="hidden"},disabled:function(g){return g.disabled===true},checked:function(g){return g.checked===true},selected:function(g){return g.selected===true},parent:function(g){return!!g.firstChild},empty:function(g){return!g.firstChild},has:function(g,h,l){return!!k(l[3],g).length},header:function(g){return/h\d/i.test(g.nodeName)}, +text:function(g){return"text"===g.type},radio:function(g){return"radio"===g.type},checkbox:function(g){return"checkbox"===g.type},file:function(g){return"file"===g.type},password:function(g){return"password"===g.type},submit:function(g){return"submit"===g.type},image:function(g){return"image"===g.type},reset:function(g){return"reset"===g.type},button:function(g){return"button"===g.type||g.nodeName.toLowerCase()==="button"},input:function(g){return/input|select|textarea|button/i.test(g.nodeName)}}, +setFilters:{first:function(g,h){return h===0},last:function(g,h,l,m){return h===m.length-1},even:function(g,h){return h%2===0},odd:function(g,h){return h%2===1},lt:function(g,h,l){return h<l[3]-0},gt:function(g,h,l){return h>l[3]-0},nth:function(g,h,l){return l[3]-0===h},eq:function(g,h,l){return l[3]-0===h}},filter:{PSEUDO:function(g,h,l,m){var q=h[1],p=n.filters[q];if(p)return p(g,l,h,m);else if(q==="contains")return(g.textContent||g.innerText||a([g])||"").indexOf(h[3])>=0;else if(q==="not"){h= +h[3];l=0;for(m=h.length;l<m;l++)if(h[l]===g)return false;return true}else k.error("Syntax error, unrecognized expression: "+q)},CHILD:function(g,h){var l=h[1],m=g;switch(l){case "only":case "first":for(;m=m.previousSibling;)if(m.nodeType===1)return false;if(l==="first")return true;m=g;case "last":for(;m=m.nextSibling;)if(m.nodeType===1)return false;return true;case "nth":l=h[2];var q=h[3];if(l===1&&q===0)return true;h=h[0];var p=g.parentNode;if(p&&(p.sizcache!==h||!g.nodeIndex)){var v=0;for(m=p.firstChild;m;m= +m.nextSibling)if(m.nodeType===1)m.nodeIndex=++v;p.sizcache=h}g=g.nodeIndex-q;return l===0?g===0:g%l===0&&g/l>=0}},ID:function(g,h){return g.nodeType===1&&g.getAttribute("id")===h},TAG:function(g,h){return h==="*"&&g.nodeType===1||g.nodeName.toLowerCase()===h},CLASS:function(g,h){return(" "+(g.className||g.getAttribute("class"))+" ").indexOf(h)>-1},ATTR:function(g,h){var l=h[1];g=n.attrHandle[l]?n.attrHandle[l](g):g[l]!=null?g[l]:g.getAttribute(l);l=g+"";var m=h[2];h=h[4];return g==null?m==="!=":m=== +"="?l===h:m==="*="?l.indexOf(h)>=0:m==="~="?(" "+l+" ").indexOf(h)>=0:!h?l&&g!==false:m==="!="?l!==h:m==="^="?l.indexOf(h)===0:m==="$="?l.substr(l.length-h.length)===h:m==="|="?l===h||l.substr(0,h.length+1)===h+"-":false},POS:function(g,h,l,m){var q=n.setFilters[h[2]];if(q)return q(g,l,h,m)}}},r=n.match.POS;for(var u in n.match){n.match[u]=new RegExp(n.match[u].source+/(?![^\[]*\])(?![^\(]*\))/.source);n.leftMatch[u]=new RegExp(/(^(?:.|\r|\n)*?)/.source+n.match[u].source.replace(/\\(\d+)/g,function(g, +h){return"\\"+(h-0+1)}))}var z=function(g,h){g=Array.prototype.slice.call(g,0);if(h){h.push.apply(h,g);return h}return g};try{Array.prototype.slice.call(s.documentElement.childNodes,0)}catch(C){z=function(g,h){h=h||[];if(j.call(g)==="[object Array]")Array.prototype.push.apply(h,g);else if(typeof g.length==="number")for(var l=0,m=g.length;l<m;l++)h.push(g[l]);else for(l=0;g[l];l++)h.push(g[l]);return h}}var B;if(s.documentElement.compareDocumentPosition)B=function(g,h){if(!g.compareDocumentPosition|| +!h.compareDocumentPosition){if(g==h)i=true;return g.compareDocumentPosition?-1:1}g=g.compareDocumentPosition(h)&4?-1:g===h?0:1;if(g===0)i=true;return g};else if("sourceIndex"in s.documentElement)B=function(g,h){if(!g.sourceIndex||!h.sourceIndex){if(g==h)i=true;return g.sourceIndex?-1:1}g=g.sourceIndex-h.sourceIndex;if(g===0)i=true;return g};else if(s.createRange)B=function(g,h){if(!g.ownerDocument||!h.ownerDocument){if(g==h)i=true;return g.ownerDocument?-1:1}var l=g.ownerDocument.createRange(),m= +h.ownerDocument.createRange();l.setStart(g,0);l.setEnd(g,0);m.setStart(h,0);m.setEnd(h,0);g=l.compareBoundaryPoints(Range.START_TO_END,m);if(g===0)i=true;return g};(function(){var g=s.createElement("div"),h="script"+(new Date).getTime();g.innerHTML="<a name='"+h+"'/>";var l=s.documentElement;l.insertBefore(g,l.firstChild);if(s.getElementById(h)){n.find.ID=function(m,q,p){if(typeof q.getElementById!=="undefined"&&!p)return(q=q.getElementById(m[1]))?q.id===m[1]||typeof q.getAttributeNode!=="undefined"&& +q.getAttributeNode("id").nodeValue===m[1]?[q]:w:[]};n.filter.ID=function(m,q){var p=typeof m.getAttributeNode!=="undefined"&&m.getAttributeNode("id");return m.nodeType===1&&p&&p.nodeValue===q}}l.removeChild(g);l=g=null})();(function(){var g=s.createElement("div");g.appendChild(s.createComment(""));if(g.getElementsByTagName("*").length>0)n.find.TAG=function(h,l){l=l.getElementsByTagName(h[1]);if(h[1]==="*"){h=[];for(var m=0;l[m];m++)l[m].nodeType===1&&h.push(l[m]);l=h}return l};g.innerHTML="<a href='#'></a>"; +if(g.firstChild&&typeof g.firstChild.getAttribute!=="undefined"&&g.firstChild.getAttribute("href")!=="#")n.attrHandle.href=function(h){return h.getAttribute("href",2)};g=null})();s.querySelectorAll&&function(){var g=k,h=s.createElement("div");h.innerHTML="<p class='TEST'></p>";if(!(h.querySelectorAll&&h.querySelectorAll(".TEST").length===0)){k=function(m,q,p,v){q=q||s;if(!v&&q.nodeType===9&&!x(q))try{return z(q.querySelectorAll(m),p)}catch(t){}return g(m,q,p,v)};for(var l in g)k[l]=g[l];h=null}}(); +(function(){var g=s.createElement("div");g.innerHTML="<div class='test e'></div><div class='test'></div>";if(!(!g.getElementsByClassName||g.getElementsByClassName("e").length===0)){g.lastChild.className="e";if(g.getElementsByClassName("e").length!==1){n.order.splice(1,0,"CLASS");n.find.CLASS=function(h,l,m){if(typeof l.getElementsByClassName!=="undefined"&&!m)return l.getElementsByClassName(h[1])};g=null}}})();var E=s.compareDocumentPosition?function(g,h){return!!(g.compareDocumentPosition(h)&16)}: +function(g,h){return g!==h&&(g.contains?g.contains(h):true)},x=function(g){return(g=(g?g.ownerDocument||g:0).documentElement)?g.nodeName!=="HTML":false},ga=function(g,h){var l=[],m="",q;for(h=h.nodeType?[h]:h;q=n.match.PSEUDO.exec(g);){m+=q[0];g=g.replace(n.match.PSEUDO,"")}g=n.relative[g]?g+"*":g;q=0;for(var p=h.length;q<p;q++)k(g,h[q],l);return k.filter(m,l)};c.find=k;c.expr=k.selectors;c.expr[":"]=c.expr.filters;c.unique=k.uniqueSort;c.text=a;c.isXMLDoc=x;c.contains=E})();var eb=/Until$/,fb=/^(?:parents|prevUntil|prevAll)/, +gb=/,/;R=Array.prototype.slice;var Ia=function(a,b,d){if(c.isFunction(b))return c.grep(a,function(e,j){return!!b.call(e,j,e)===d});else if(b.nodeType)return c.grep(a,function(e){return e===b===d});else if(typeof b==="string"){var f=c.grep(a,function(e){return e.nodeType===1});if(Ua.test(b))return c.filter(b,f,!d);else b=c.filter(b,f)}return c.grep(a,function(e){return c.inArray(e,b)>=0===d})};c.fn.extend({find:function(a){for(var b=this.pushStack("","find",a),d=0,f=0,e=this.length;f<e;f++){d=b.length; +c.find(a,this[f],b);if(f>0)for(var j=d;j<b.length;j++)for(var i=0;i<d;i++)if(b[i]===b[j]){b.splice(j--,1);break}}return b},has:function(a){var b=c(a);return this.filter(function(){for(var d=0,f=b.length;d<f;d++)if(c.contains(this,b[d]))return true})},not:function(a){return this.pushStack(Ia(this,a,false),"not",a)},filter:function(a){return this.pushStack(Ia(this,a,true),"filter",a)},is:function(a){return!!a&&c.filter(a,this).length>0},closest:function(a,b){if(c.isArray(a)){var d=[],f=this[0],e,j= +{},i;if(f&&a.length){e=0;for(var o=a.length;e<o;e++){i=a[e];j[i]||(j[i]=c.expr.match.POS.test(i)?c(i,b||this.context):i)}for(;f&&f.ownerDocument&&f!==b;){for(i in j){e=j[i];if(e.jquery?e.index(f)>-1:c(f).is(e)){d.push({selector:i,elem:f});delete j[i]}}f=f.parentNode}}return d}var k=c.expr.match.POS.test(a)?c(a,b||this.context):null;return this.map(function(n,r){for(;r&&r.ownerDocument&&r!==b;){if(k?k.index(r)>-1:c(r).is(a))return r;r=r.parentNode}return null})},index:function(a){if(!a||typeof a=== +"string")return c.inArray(this[0],a?c(a):this.parent().children());return c.inArray(a.jquery?a[0]:a,this)},add:function(a,b){a=typeof a==="string"?c(a,b||this.context):c.makeArray(a);b=c.merge(this.get(),a);return this.pushStack(qa(a[0])||qa(b[0])?b:c.unique(b))},andSelf:function(){return this.add(this.prevObject)}});c.each({parent:function(a){return(a=a.parentNode)&&a.nodeType!==11?a:null},parents:function(a){return c.dir(a,"parentNode")},parentsUntil:function(a,b,d){return c.dir(a,"parentNode", +d)},next:function(a){return c.nth(a,2,"nextSibling")},prev:function(a){return c.nth(a,2,"previousSibling")},nextAll:function(a){return c.dir(a,"nextSibling")},prevAll:function(a){return c.dir(a,"previousSibling")},nextUntil:function(a,b,d){return c.dir(a,"nextSibling",d)},prevUntil:function(a,b,d){return c.dir(a,"previousSibling",d)},siblings:function(a){return c.sibling(a.parentNode.firstChild,a)},children:function(a){return c.sibling(a.firstChild)},contents:function(a){return c.nodeName(a,"iframe")? +a.contentDocument||a.contentWindow.document:c.makeArray(a.childNodes)}},function(a,b){c.fn[a]=function(d,f){var e=c.map(this,b,d);eb.test(a)||(f=d);if(f&&typeof f==="string")e=c.filter(f,e);e=this.length>1?c.unique(e):e;if((this.length>1||gb.test(f))&&fb.test(a))e=e.reverse();return this.pushStack(e,a,R.call(arguments).join(","))}});c.extend({filter:function(a,b,d){if(d)a=":not("+a+")";return c.find.matches(a,b)},dir:function(a,b,d){var f=[];for(a=a[b];a&&a.nodeType!==9&&(d===w||a.nodeType!==1||!c(a).is(d));){a.nodeType=== +1&&f.push(a);a=a[b]}return f},nth:function(a,b,d){b=b||1;for(var f=0;a;a=a[d])if(a.nodeType===1&&++f===b)break;return a},sibling:function(a,b){for(var d=[];a;a=a.nextSibling)a.nodeType===1&&a!==b&&d.push(a);return d}});var Ja=/ jQuery\d+="(?:\d+|null)"/g,V=/^\s+/,Ka=/(<([\w:]+)[^>]*?)\/>/g,hb=/^(?:area|br|col|embed|hr|img|input|link|meta|param)$/i,La=/<([\w:]+)/,ib=/<tbody/i,jb=/<|&#?\w+;/,ta=/<script|<object|<embed|<option|<style/i,ua=/checked\s*(?:[^=]|=\s*.checked.)/i,Ma=function(a,b,d){return hb.test(d)? +a:b+"></"+d+">"},F={option:[1,"<select multiple='multiple'>","</select>"],legend:[1,"<fieldset>","</fieldset>"],thead:[1,"<table>","</table>"],tr:[2,"<table><tbody>","</tbody></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],col:[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"],area:[1,"<map>","</map>"],_default:[0,"",""]};F.optgroup=F.option;F.tbody=F.tfoot=F.colgroup=F.caption=F.thead;F.th=F.td;if(!c.support.htmlSerialize)F._default=[1,"div<div>","</div>"];c.fn.extend({text:function(a){if(c.isFunction(a))return this.each(function(b){var d= +c(this);d.text(a.call(this,b,d.text()))});if(typeof a!=="object"&&a!==w)return this.empty().append((this[0]&&this[0].ownerDocument||s).createTextNode(a));return c.text(this)},wrapAll:function(a){if(c.isFunction(a))return this.each(function(d){c(this).wrapAll(a.call(this,d))});if(this[0]){var b=c(a,this[0].ownerDocument).eq(0).clone(true);this[0].parentNode&&b.insertBefore(this[0]);b.map(function(){for(var d=this;d.firstChild&&d.firstChild.nodeType===1;)d=d.firstChild;return d}).append(this)}return this}, +wrapInner:function(a){if(c.isFunction(a))return this.each(function(b){c(this).wrapInner(a.call(this,b))});return this.each(function(){var b=c(this),d=b.contents();d.length?d.wrapAll(a):b.append(a)})},wrap:function(a){return this.each(function(){c(this).wrapAll(a)})},unwrap:function(){return this.parent().each(function(){c.nodeName(this,"body")||c(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,true,function(a){this.nodeType===1&&this.appendChild(a)})}, +prepend:function(){return this.domManip(arguments,true,function(a){this.nodeType===1&&this.insertBefore(a,this.firstChild)})},before:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,false,function(b){this.parentNode.insertBefore(b,this)});else if(arguments.length){var a=c(arguments[0]);a.push.apply(a,this.toArray());return this.pushStack(a,"before",arguments)}},after:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,false,function(b){this.parentNode.insertBefore(b, +this.nextSibling)});else if(arguments.length){var a=this.pushStack(this,"after",arguments);a.push.apply(a,c(arguments[0]).toArray());return a}},remove:function(a,b){for(var d=0,f;(f=this[d])!=null;d++)if(!a||c.filter(a,[f]).length){if(!b&&f.nodeType===1){c.cleanData(f.getElementsByTagName("*"));c.cleanData([f])}f.parentNode&&f.parentNode.removeChild(f)}return this},empty:function(){for(var a=0,b;(b=this[a])!=null;a++)for(b.nodeType===1&&c.cleanData(b.getElementsByTagName("*"));b.firstChild;)b.removeChild(b.firstChild); +return this},clone:function(a){var b=this.map(function(){if(!c.support.noCloneEvent&&!c.isXMLDoc(this)){var d=this.outerHTML,f=this.ownerDocument;if(!d){d=f.createElement("div");d.appendChild(this.cloneNode(true));d=d.innerHTML}return c.clean([d.replace(Ja,"").replace(/=([^="'>\s]+\/)>/g,'="$1">').replace(V,"")],f)[0]}else return this.cloneNode(true)});if(a===true){ra(this,b);ra(this.find("*"),b.find("*"))}return b},html:function(a){if(a===w)return this[0]&&this[0].nodeType===1?this[0].innerHTML.replace(Ja, +""):null;else if(typeof a==="string"&&!ta.test(a)&&(c.support.leadingWhitespace||!V.test(a))&&!F[(La.exec(a)||["",""])[1].toLowerCase()]){a=a.replace(Ka,Ma);try{for(var b=0,d=this.length;b<d;b++)if(this[b].nodeType===1){c.cleanData(this[b].getElementsByTagName("*"));this[b].innerHTML=a}}catch(f){this.empty().append(a)}}else c.isFunction(a)?this.each(function(e){var j=c(this),i=j.html();j.empty().append(function(){return a.call(this,e,i)})}):this.empty().append(a);return this},replaceWith:function(a){if(this[0]&& +this[0].parentNode){if(c.isFunction(a))return this.each(function(b){var d=c(this),f=d.html();d.replaceWith(a.call(this,b,f))});if(typeof a!=="string")a=c(a).detach();return this.each(function(){var b=this.nextSibling,d=this.parentNode;c(this).remove();b?c(b).before(a):c(d).append(a)})}else return this.pushStack(c(c.isFunction(a)?a():a),"replaceWith",a)},detach:function(a){return this.remove(a,true)},domManip:function(a,b,d){function f(u){return c.nodeName(u,"table")?u.getElementsByTagName("tbody")[0]|| +u.appendChild(u.ownerDocument.createElement("tbody")):u}var e,j,i=a[0],o=[],k;if(!c.support.checkClone&&arguments.length===3&&typeof i==="string"&&ua.test(i))return this.each(function(){c(this).domManip(a,b,d,true)});if(c.isFunction(i))return this.each(function(u){var z=c(this);a[0]=i.call(this,u,b?z.html():w);z.domManip(a,b,d)});if(this[0]){e=i&&i.parentNode;e=c.support.parentNode&&e&&e.nodeType===11&&e.childNodes.length===this.length?{fragment:e}:sa(a,this,o);k=e.fragment;if(j=k.childNodes.length=== +1?(k=k.firstChild):k.firstChild){b=b&&c.nodeName(j,"tr");for(var n=0,r=this.length;n<r;n++)d.call(b?f(this[n],j):this[n],n>0||e.cacheable||this.length>1?k.cloneNode(true):k)}o.length&&c.each(o,Qa)}return this}});c.fragments={};c.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b){c.fn[a]=function(d){var f=[];d=c(d);var e=this.length===1&&this[0].parentNode;if(e&&e.nodeType===11&&e.childNodes.length===1&&d.length===1){d[b](this[0]); +return this}else{e=0;for(var j=d.length;e<j;e++){var i=(e>0?this.clone(true):this).get();c.fn[b].apply(c(d[e]),i);f=f.concat(i)}return this.pushStack(f,a,d.selector)}}});c.extend({clean:function(a,b,d,f){b=b||s;if(typeof b.createElement==="undefined")b=b.ownerDocument||b[0]&&b[0].ownerDocument||s;for(var e=[],j=0,i;(i=a[j])!=null;j++){if(typeof i==="number")i+="";if(i){if(typeof i==="string"&&!jb.test(i))i=b.createTextNode(i);else if(typeof i==="string"){i=i.replace(Ka,Ma);var o=(La.exec(i)||["", +""])[1].toLowerCase(),k=F[o]||F._default,n=k[0],r=b.createElement("div");for(r.innerHTML=k[1]+i+k[2];n--;)r=r.lastChild;if(!c.support.tbody){n=ib.test(i);o=o==="table"&&!n?r.firstChild&&r.firstChild.childNodes:k[1]==="<table>"&&!n?r.childNodes:[];for(k=o.length-1;k>=0;--k)c.nodeName(o[k],"tbody")&&!o[k].childNodes.length&&o[k].parentNode.removeChild(o[k])}!c.support.leadingWhitespace&&V.test(i)&&r.insertBefore(b.createTextNode(V.exec(i)[0]),r.firstChild);i=r.childNodes}if(i.nodeType)e.push(i);else e= +c.merge(e,i)}}if(d)for(j=0;e[j];j++)if(f&&c.nodeName(e[j],"script")&&(!e[j].type||e[j].type.toLowerCase()==="text/javascript"))f.push(e[j].parentNode?e[j].parentNode.removeChild(e[j]):e[j]);else{e[j].nodeType===1&&e.splice.apply(e,[j+1,0].concat(c.makeArray(e[j].getElementsByTagName("script"))));d.appendChild(e[j])}return e},cleanData:function(a){for(var b,d,f=c.cache,e=c.event.special,j=c.support.deleteExpando,i=0,o;(o=a[i])!=null;i++)if(d=o[c.expando]){b=f[d];if(b.events)for(var k in b.events)e[k]? +c.event.remove(o,k):Ca(o,k,b.handle);if(j)delete o[c.expando];else o.removeAttribute&&o.removeAttribute(c.expando);delete f[d]}}});var kb=/z-?index|font-?weight|opacity|zoom|line-?height/i,Na=/alpha\([^)]*\)/,Oa=/opacity=([^)]*)/,ha=/float/i,ia=/-([a-z])/ig,lb=/([A-Z])/g,mb=/^-?\d+(?:px)?$/i,nb=/^-?\d/,ob={position:"absolute",visibility:"hidden",display:"block"},pb=["Left","Right"],qb=["Top","Bottom"],rb=s.defaultView&&s.defaultView.getComputedStyle,Pa=c.support.cssFloat?"cssFloat":"styleFloat",ja= +function(a,b){return b.toUpperCase()};c.fn.css=function(a,b){return X(this,a,b,true,function(d,f,e){if(e===w)return c.curCSS(d,f);if(typeof e==="number"&&!kb.test(f))e+="px";c.style(d,f,e)})};c.extend({style:function(a,b,d){if(!a||a.nodeType===3||a.nodeType===8)return w;if((b==="width"||b==="height")&&parseFloat(d)<0)d=w;var f=a.style||a,e=d!==w;if(!c.support.opacity&&b==="opacity"){if(e){f.zoom=1;b=parseInt(d,10)+""==="NaN"?"":"alpha(opacity="+d*100+")";a=f.filter||c.curCSS(a,"filter")||"";f.filter= +Na.test(a)?a.replace(Na,b):b}return f.filter&&f.filter.indexOf("opacity=")>=0?parseFloat(Oa.exec(f.filter)[1])/100+"":""}if(ha.test(b))b=Pa;b=b.replace(ia,ja);if(e)f[b]=d;return f[b]},css:function(a,b,d,f){if(b==="width"||b==="height"){var e,j=b==="width"?pb:qb;function i(){e=b==="width"?a.offsetWidth:a.offsetHeight;f!=="border"&&c.each(j,function(){f||(e-=parseFloat(c.curCSS(a,"padding"+this,true))||0);if(f==="margin")e+=parseFloat(c.curCSS(a,"margin"+this,true))||0;else e-=parseFloat(c.curCSS(a, +"border"+this+"Width",true))||0})}a.offsetWidth!==0?i():c.swap(a,ob,i);return Math.max(0,Math.round(e))}return c.curCSS(a,b,d)},curCSS:function(a,b,d){var f,e=a.style;if(!c.support.opacity&&b==="opacity"&&a.currentStyle){f=Oa.test(a.currentStyle.filter||"")?parseFloat(RegExp.$1)/100+"":"";return f===""?"1":f}if(ha.test(b))b=Pa;if(!d&&e&&e[b])f=e[b];else if(rb){if(ha.test(b))b="float";b=b.replace(lb,"-$1").toLowerCase();e=a.ownerDocument.defaultView;if(!e)return null;if(a=e.getComputedStyle(a,null))f= +a.getPropertyValue(b);if(b==="opacity"&&f==="")f="1"}else if(a.currentStyle){d=b.replace(ia,ja);f=a.currentStyle[b]||a.currentStyle[d];if(!mb.test(f)&&nb.test(f)){b=e.left;var j=a.runtimeStyle.left;a.runtimeStyle.left=a.currentStyle.left;e.left=d==="fontSize"?"1em":f||0;f=e.pixelLeft+"px";e.left=b;a.runtimeStyle.left=j}}return f},swap:function(a,b,d){var f={};for(var e in b){f[e]=a.style[e];a.style[e]=b[e]}d.call(a);for(e in b)a.style[e]=f[e]}});if(c.expr&&c.expr.filters){c.expr.filters.hidden=function(a){var b= +a.offsetWidth,d=a.offsetHeight,f=a.nodeName.toLowerCase()==="tr";return b===0&&d===0&&!f?true:b>0&&d>0&&!f?false:c.curCSS(a,"display")==="none"};c.expr.filters.visible=function(a){return!c.expr.filters.hidden(a)}}var sb=J(),tb=/<script(.|\s)*?\/script>/gi,ub=/select|textarea/i,vb=/color|date|datetime|email|hidden|month|number|password|range|search|tel|text|time|url|week/i,N=/=\?(&|$)/,ka=/\?/,wb=/(\?|&)_=.*?(&|$)/,xb=/^(\w+:)?\/\/([^\/?#]+)/,yb=/%20/g,zb=c.fn.load;c.fn.extend({load:function(a,b,d){if(typeof a!== +"string")return zb.call(this,a);else if(!this.length)return this;var f=a.indexOf(" ");if(f>=0){var e=a.slice(f,a.length);a=a.slice(0,f)}f="GET";if(b)if(c.isFunction(b)){d=b;b=null}else if(typeof b==="object"){b=c.param(b,c.ajaxSettings.traditional);f="POST"}var j=this;c.ajax({url:a,type:f,dataType:"html",data:b,complete:function(i,o){if(o==="success"||o==="notmodified")j.html(e?c("<div />").append(i.responseText.replace(tb,"")).find(e):i.responseText);d&&j.each(d,[i.responseText,o,i])}});return this}, +serialize:function(){return c.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?c.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||ub.test(this.nodeName)||vb.test(this.type))}).map(function(a,b){a=c(this).val();return a==null?null:c.isArray(a)?c.map(a,function(d){return{name:b.name,value:d}}):{name:b.name,value:a}}).get()}});c.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "), +function(a,b){c.fn[b]=function(d){return this.bind(b,d)}});c.extend({get:function(a,b,d,f){if(c.isFunction(b)){f=f||d;d=b;b=null}return c.ajax({type:"GET",url:a,data:b,success:d,dataType:f})},getScript:function(a,b){return c.get(a,null,b,"script")},getJSON:function(a,b,d){return c.get(a,b,d,"json")},post:function(a,b,d,f){if(c.isFunction(b)){f=f||d;d=b;b={}}return c.ajax({type:"POST",url:a,data:b,success:d,dataType:f})},ajaxSetup:function(a){c.extend(c.ajaxSettings,a)},ajaxSettings:{url:location.href, +global:true,type:"GET",contentType:"application/x-www-form-urlencoded",processData:true,async:true,xhr:A.XMLHttpRequest&&(A.location.protocol!=="file:"||!A.ActiveXObject)?function(){return new A.XMLHttpRequest}:function(){try{return new A.ActiveXObject("Microsoft.XMLHTTP")}catch(a){}},accepts:{xml:"application/xml, text/xml",html:"text/html",script:"text/javascript, application/javascript",json:"application/json, text/javascript",text:"text/plain",_default:"*/*"}},lastModified:{},etag:{},ajax:function(a){function b(){e.success&& +e.success.call(k,o,i,x);e.global&&f("ajaxSuccess",[x,e])}function d(){e.complete&&e.complete.call(k,x,i);e.global&&f("ajaxComplete",[x,e]);e.global&&!--c.active&&c.event.trigger("ajaxStop")}function f(q,p){(e.context?c(e.context):c.event).trigger(q,p)}var e=c.extend(true,{},c.ajaxSettings,a),j,i,o,k=a&&a.context||e,n=e.type.toUpperCase();if(e.data&&e.processData&&typeof e.data!=="string")e.data=c.param(e.data,e.traditional);if(e.dataType==="jsonp"){if(n==="GET")N.test(e.url)||(e.url+=(ka.test(e.url)? +"&":"?")+(e.jsonp||"callback")+"=?");else if(!e.data||!N.test(e.data))e.data=(e.data?e.data+"&":"")+(e.jsonp||"callback")+"=?";e.dataType="json"}if(e.dataType==="json"&&(e.data&&N.test(e.data)||N.test(e.url))){j=e.jsonpCallback||"jsonp"+sb++;if(e.data)e.data=(e.data+"").replace(N,"="+j+"$1");e.url=e.url.replace(N,"="+j+"$1");e.dataType="script";A[j]=A[j]||function(q){o=q;b();d();A[j]=w;try{delete A[j]}catch(p){}z&&z.removeChild(C)}}if(e.dataType==="script"&&e.cache===null)e.cache=false;if(e.cache=== +false&&n==="GET"){var r=J(),u=e.url.replace(wb,"$1_="+r+"$2");e.url=u+(u===e.url?(ka.test(e.url)?"&":"?")+"_="+r:"")}if(e.data&&n==="GET")e.url+=(ka.test(e.url)?"&":"?")+e.data;e.global&&!c.active++&&c.event.trigger("ajaxStart");r=(r=xb.exec(e.url))&&(r[1]&&r[1]!==location.protocol||r[2]!==location.host);if(e.dataType==="script"&&n==="GET"&&r){var z=s.getElementsByTagName("head")[0]||s.documentElement,C=s.createElement("script");C.src=e.url;if(e.scriptCharset)C.charset=e.scriptCharset;if(!j){var B= +false;C.onload=C.onreadystatechange=function(){if(!B&&(!this.readyState||this.readyState==="loaded"||this.readyState==="complete")){B=true;b();d();C.onload=C.onreadystatechange=null;z&&C.parentNode&&z.removeChild(C)}}}z.insertBefore(C,z.firstChild);return w}var E=false,x=e.xhr();if(x){e.username?x.open(n,e.url,e.async,e.username,e.password):x.open(n,e.url,e.async);try{if(e.data||a&&a.contentType)x.setRequestHeader("Content-Type",e.contentType);if(e.ifModified){c.lastModified[e.url]&&x.setRequestHeader("If-Modified-Since", +c.lastModified[e.url]);c.etag[e.url]&&x.setRequestHeader("If-None-Match",c.etag[e.url])}r||x.setRequestHeader("X-Requested-With","XMLHttpRequest");x.setRequestHeader("Accept",e.dataType&&e.accepts[e.dataType]?e.accepts[e.dataType]+", */*":e.accepts._default)}catch(ga){}if(e.beforeSend&&e.beforeSend.call(k,x,e)===false){e.global&&!--c.active&&c.event.trigger("ajaxStop");x.abort();return false}e.global&&f("ajaxSend",[x,e]);var g=x.onreadystatechange=function(q){if(!x||x.readyState===0||q==="abort"){E|| +d();E=true;if(x)x.onreadystatechange=c.noop}else if(!E&&x&&(x.readyState===4||q==="timeout")){E=true;x.onreadystatechange=c.noop;i=q==="timeout"?"timeout":!c.httpSuccess(x)?"error":e.ifModified&&c.httpNotModified(x,e.url)?"notmodified":"success";var p;if(i==="success")try{o=c.httpData(x,e.dataType,e)}catch(v){i="parsererror";p=v}if(i==="success"||i==="notmodified")j||b();else c.handleError(e,x,i,p);d();q==="timeout"&&x.abort();if(e.async)x=null}};try{var h=x.abort;x.abort=function(){x&&h.call(x); +g("abort")}}catch(l){}e.async&&e.timeout>0&&setTimeout(function(){x&&!E&&g("timeout")},e.timeout);try{x.send(n==="POST"||n==="PUT"||n==="DELETE"?e.data:null)}catch(m){c.handleError(e,x,null,m);d()}e.async||g();return x}},handleError:function(a,b,d,f){if(a.error)a.error.call(a.context||a,b,d,f);if(a.global)(a.context?c(a.context):c.event).trigger("ajaxError",[b,a,f])},active:0,httpSuccess:function(a){try{return!a.status&&location.protocol==="file:"||a.status>=200&&a.status<300||a.status===304||a.status=== +1223||a.status===0}catch(b){}return false},httpNotModified:function(a,b){var d=a.getResponseHeader("Last-Modified"),f=a.getResponseHeader("Etag");if(d)c.lastModified[b]=d;if(f)c.etag[b]=f;return a.status===304||a.status===0},httpData:function(a,b,d){var f=a.getResponseHeader("content-type")||"",e=b==="xml"||!b&&f.indexOf("xml")>=0;a=e?a.responseXML:a.responseText;e&&a.documentElement.nodeName==="parsererror"&&c.error("parsererror");if(d&&d.dataFilter)a=d.dataFilter(a,b);if(typeof a==="string")if(b=== +"json"||!b&&f.indexOf("json")>=0)a=c.parseJSON(a);else if(b==="script"||!b&&f.indexOf("javascript")>=0)c.globalEval(a);return a},param:function(a,b){function d(i,o){if(c.isArray(o))c.each(o,function(k,n){b||/\[\]$/.test(i)?f(i,n):d(i+"["+(typeof n==="object"||c.isArray(n)?k:"")+"]",n)});else!b&&o!=null&&typeof o==="object"?c.each(o,function(k,n){d(i+"["+k+"]",n)}):f(i,o)}function f(i,o){o=c.isFunction(o)?o():o;e[e.length]=encodeURIComponent(i)+"="+encodeURIComponent(o)}var e=[];if(b===w)b=c.ajaxSettings.traditional; +if(c.isArray(a)||a.jquery)c.each(a,function(){f(this.name,this.value)});else for(var j in a)d(j,a[j]);return e.join("&").replace(yb,"+")}});var la={},Ab=/toggle|show|hide/,Bb=/^([+-]=)?([\d+-.]+)(.*)$/,W,va=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]];c.fn.extend({show:function(a,b){if(a||a===0)return this.animate(K("show",3),a,b);else{a=0;for(b=this.length;a<b;a++){var d=c.data(this[a],"olddisplay"); +this[a].style.display=d||"";if(c.css(this[a],"display")==="none"){d=this[a].nodeName;var f;if(la[d])f=la[d];else{var e=c("<"+d+" />").appendTo("body");f=e.css("display");if(f==="none")f="block";e.remove();la[d]=f}c.data(this[a],"olddisplay",f)}}a=0;for(b=this.length;a<b;a++)this[a].style.display=c.data(this[a],"olddisplay")||"";return this}},hide:function(a,b){if(a||a===0)return this.animate(K("hide",3),a,b);else{a=0;for(b=this.length;a<b;a++){var d=c.data(this[a],"olddisplay");!d&&d!=="none"&&c.data(this[a], +"olddisplay",c.css(this[a],"display"))}a=0;for(b=this.length;a<b;a++)this[a].style.display="none";return this}},_toggle:c.fn.toggle,toggle:function(a,b){var d=typeof a==="boolean";if(c.isFunction(a)&&c.isFunction(b))this._toggle.apply(this,arguments);else a==null||d?this.each(function(){var f=d?a:c(this).is(":hidden");c(this)[f?"show":"hide"]()}):this.animate(K("toggle",3),a,b);return this},fadeTo:function(a,b,d){return this.filter(":hidden").css("opacity",0).show().end().animate({opacity:b},a,d)}, +animate:function(a,b,d,f){var e=c.speed(b,d,f);if(c.isEmptyObject(a))return this.each(e.complete);return this[e.queue===false?"each":"queue"](function(){var j=c.extend({},e),i,o=this.nodeType===1&&c(this).is(":hidden"),k=this;for(i in a){var n=i.replace(ia,ja);if(i!==n){a[n]=a[i];delete a[i];i=n}if(a[i]==="hide"&&o||a[i]==="show"&&!o)return j.complete.call(this);if((i==="height"||i==="width")&&this.style){j.display=c.css(this,"display");j.overflow=this.style.overflow}if(c.isArray(a[i])){(j.specialEasing= +j.specialEasing||{})[i]=a[i][1];a[i]=a[i][0]}}if(j.overflow!=null)this.style.overflow="hidden";j.curAnim=c.extend({},a);c.each(a,function(r,u){var z=new c.fx(k,j,r);if(Ab.test(u))z[u==="toggle"?o?"show":"hide":u](a);else{var C=Bb.exec(u),B=z.cur(true)||0;if(C){u=parseFloat(C[2]);var E=C[3]||"px";if(E!=="px"){k.style[r]=(u||1)+E;B=(u||1)/z.cur(true)*B;k.style[r]=B+E}if(C[1])u=(C[1]==="-="?-1:1)*u+B;z.custom(B,u,E)}else z.custom(B,u,"")}});return true})},stop:function(a,b){var d=c.timers;a&&this.queue([]); +this.each(function(){for(var f=d.length-1;f>=0;f--)if(d[f].elem===this){b&&d[f](true);d.splice(f,1)}});b||this.dequeue();return this}});c.each({slideDown:K("show",1),slideUp:K("hide",1),slideToggle:K("toggle",1),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"}},function(a,b){c.fn[a]=function(d,f){return this.animate(b,d,f)}});c.extend({speed:function(a,b,d){var f=a&&typeof a==="object"?a:{complete:d||!d&&b||c.isFunction(a)&&a,duration:a,easing:d&&b||b&&!c.isFunction(b)&&b};f.duration=c.fx.off?0:typeof f.duration=== +"number"?f.duration:c.fx.speeds[f.duration]||c.fx.speeds._default;f.old=f.complete;f.complete=function(){f.queue!==false&&c(this).dequeue();c.isFunction(f.old)&&f.old.call(this)};return f},easing:{linear:function(a,b,d,f){return d+f*a},swing:function(a,b,d,f){return(-Math.cos(a*Math.PI)/2+0.5)*f+d}},timers:[],fx:function(a,b,d){this.options=b;this.elem=a;this.prop=d;if(!b.orig)b.orig={}}});c.fx.prototype={update:function(){this.options.step&&this.options.step.call(this.elem,this.now,this);(c.fx.step[this.prop]|| +c.fx.step._default)(this);if((this.prop==="height"||this.prop==="width")&&this.elem.style)this.elem.style.display="block"},cur:function(a){if(this.elem[this.prop]!=null&&(!this.elem.style||this.elem.style[this.prop]==null))return this.elem[this.prop];return(a=parseFloat(c.css(this.elem,this.prop,a)))&&a>-10000?a:parseFloat(c.curCSS(this.elem,this.prop))||0},custom:function(a,b,d){function f(j){return e.step(j)}this.startTime=J();this.start=a;this.end=b;this.unit=d||this.unit||"px";this.now=this.start; +this.pos=this.state=0;var e=this;f.elem=this.elem;if(f()&&c.timers.push(f)&&!W)W=setInterval(c.fx.tick,13)},show:function(){this.options.orig[this.prop]=c.style(this.elem,this.prop);this.options.show=true;this.custom(this.prop==="width"||this.prop==="height"?1:0,this.cur());c(this.elem).show()},hide:function(){this.options.orig[this.prop]=c.style(this.elem,this.prop);this.options.hide=true;this.custom(this.cur(),0)},step:function(a){var b=J(),d=true;if(a||b>=this.options.duration+this.startTime){this.now= +this.end;this.pos=this.state=1;this.update();this.options.curAnim[this.prop]=true;for(var f in this.options.curAnim)if(this.options.curAnim[f]!==true)d=false;if(d){if(this.options.display!=null){this.elem.style.overflow=this.options.overflow;a=c.data(this.elem,"olddisplay");this.elem.style.display=a?a:this.options.display;if(c.css(this.elem,"display")==="none")this.elem.style.display="block"}this.options.hide&&c(this.elem).hide();if(this.options.hide||this.options.show)for(var e in this.options.curAnim)c.style(this.elem, +e,this.options.orig[e]);this.options.complete.call(this.elem)}return false}else{e=b-this.startTime;this.state=e/this.options.duration;a=this.options.easing||(c.easing.swing?"swing":"linear");this.pos=c.easing[this.options.specialEasing&&this.options.specialEasing[this.prop]||a](this.state,e,0,1,this.options.duration);this.now=this.start+(this.end-this.start)*this.pos;this.update()}return true}};c.extend(c.fx,{tick:function(){for(var a=c.timers,b=0;b<a.length;b++)a[b]()||a.splice(b--,1);a.length|| +c.fx.stop()},stop:function(){clearInterval(W);W=null},speeds:{slow:600,fast:200,_default:400},step:{opacity:function(a){c.style(a.elem,"opacity",a.now)},_default:function(a){if(a.elem.style&&a.elem.style[a.prop]!=null)a.elem.style[a.prop]=(a.prop==="width"||a.prop==="height"?Math.max(0,a.now):a.now)+a.unit;else a.elem[a.prop]=a.now}}});if(c.expr&&c.expr.filters)c.expr.filters.animated=function(a){return c.grep(c.timers,function(b){return a===b.elem}).length};c.fn.offset="getBoundingClientRect"in s.documentElement? +function(a){var b=this[0];if(a)return this.each(function(e){c.offset.setOffset(this,a,e)});if(!b||!b.ownerDocument)return null;if(b===b.ownerDocument.body)return c.offset.bodyOffset(b);var d=b.getBoundingClientRect(),f=b.ownerDocument;b=f.body;f=f.documentElement;return{top:d.top+(self.pageYOffset||c.support.boxModel&&f.scrollTop||b.scrollTop)-(f.clientTop||b.clientTop||0),left:d.left+(self.pageXOffset||c.support.boxModel&&f.scrollLeft||b.scrollLeft)-(f.clientLeft||b.clientLeft||0)}}:function(a){var b= +this[0];if(a)return this.each(function(r){c.offset.setOffset(this,a,r)});if(!b||!b.ownerDocument)return null;if(b===b.ownerDocument.body)return c.offset.bodyOffset(b);c.offset.initialize();var d=b.offsetParent,f=b,e=b.ownerDocument,j,i=e.documentElement,o=e.body;f=(e=e.defaultView)?e.getComputedStyle(b,null):b.currentStyle;for(var k=b.offsetTop,n=b.offsetLeft;(b=b.parentNode)&&b!==o&&b!==i;){if(c.offset.supportsFixedPosition&&f.position==="fixed")break;j=e?e.getComputedStyle(b,null):b.currentStyle; +k-=b.scrollTop;n-=b.scrollLeft;if(b===d){k+=b.offsetTop;n+=b.offsetLeft;if(c.offset.doesNotAddBorder&&!(c.offset.doesAddBorderForTableAndCells&&/^t(able|d|h)$/i.test(b.nodeName))){k+=parseFloat(j.borderTopWidth)||0;n+=parseFloat(j.borderLeftWidth)||0}f=d;d=b.offsetParent}if(c.offset.subtractsBorderForOverflowNotVisible&&j.overflow!=="visible"){k+=parseFloat(j.borderTopWidth)||0;n+=parseFloat(j.borderLeftWidth)||0}f=j}if(f.position==="relative"||f.position==="static"){k+=o.offsetTop;n+=o.offsetLeft}if(c.offset.supportsFixedPosition&& +f.position==="fixed"){k+=Math.max(i.scrollTop,o.scrollTop);n+=Math.max(i.scrollLeft,o.scrollLeft)}return{top:k,left:n}};c.offset={initialize:function(){var a=s.body,b=s.createElement("div"),d,f,e,j=parseFloat(c.curCSS(a,"marginTop",true))||0;c.extend(b.style,{position:"absolute",top:0,left:0,margin:0,border:0,width:"1px",height:"1px",visibility:"hidden"});b.innerHTML="<div style='position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;'><div></div></div><table style='position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;' cellpadding='0' cellspacing='0'><tr><td></td></tr></table>"; +a.insertBefore(b,a.firstChild);d=b.firstChild;f=d.firstChild;e=d.nextSibling.firstChild.firstChild;this.doesNotAddBorder=f.offsetTop!==5;this.doesAddBorderForTableAndCells=e.offsetTop===5;f.style.position="fixed";f.style.top="20px";this.supportsFixedPosition=f.offsetTop===20||f.offsetTop===15;f.style.position=f.style.top="";d.style.overflow="hidden";d.style.position="relative";this.subtractsBorderForOverflowNotVisible=f.offsetTop===-5;this.doesNotIncludeMarginInBodyOffset=a.offsetTop!==j;a.removeChild(b); +c.offset.initialize=c.noop},bodyOffset:function(a){var b=a.offsetTop,d=a.offsetLeft;c.offset.initialize();if(c.offset.doesNotIncludeMarginInBodyOffset){b+=parseFloat(c.curCSS(a,"marginTop",true))||0;d+=parseFloat(c.curCSS(a,"marginLeft",true))||0}return{top:b,left:d}},setOffset:function(a,b,d){if(/static/.test(c.curCSS(a,"position")))a.style.position="relative";var f=c(a),e=f.offset(),j=parseInt(c.curCSS(a,"top",true),10)||0,i=parseInt(c.curCSS(a,"left",true),10)||0;if(c.isFunction(b))b=b.call(a, +d,e);d={top:b.top-e.top+j,left:b.left-e.left+i};"using"in b?b.using.call(a,d):f.css(d)}};c.fn.extend({position:function(){if(!this[0])return null;var a=this[0],b=this.offsetParent(),d=this.offset(),f=/^body|html$/i.test(b[0].nodeName)?{top:0,left:0}:b.offset();d.top-=parseFloat(c.curCSS(a,"marginTop",true))||0;d.left-=parseFloat(c.curCSS(a,"marginLeft",true))||0;f.top+=parseFloat(c.curCSS(b[0],"borderTopWidth",true))||0;f.left+=parseFloat(c.curCSS(b[0],"borderLeftWidth",true))||0;return{top:d.top- +f.top,left:d.left-f.left}},offsetParent:function(){return this.map(function(){for(var a=this.offsetParent||s.body;a&&!/^body|html$/i.test(a.nodeName)&&c.css(a,"position")==="static";)a=a.offsetParent;return a})}});c.each(["Left","Top"],function(a,b){var d="scroll"+b;c.fn[d]=function(f){var e=this[0],j;if(!e)return null;if(f!==w)return this.each(function(){if(j=wa(this))j.scrollTo(!a?f:c(j).scrollLeft(),a?f:c(j).scrollTop());else this[d]=f});else return(j=wa(e))?"pageXOffset"in j?j[a?"pageYOffset": +"pageXOffset"]:c.support.boxModel&&j.document.documentElement[d]||j.document.body[d]:e[d]}});c.each(["Height","Width"],function(a,b){var d=b.toLowerCase();c.fn["inner"+b]=function(){return this[0]?c.css(this[0],d,false,"padding"):null};c.fn["outer"+b]=function(f){return this[0]?c.css(this[0],d,false,f?"margin":"border"):null};c.fn[d]=function(f){var e=this[0];if(!e)return f==null?null:this;if(c.isFunction(f))return this.each(function(j){var i=c(this);i[d](f.call(this,j,i[d]()))});return"scrollTo"in +e&&e.document?e.document.compatMode==="CSS1Compat"&&e.document.documentElement["client"+b]||e.document.body["client"+b]:e.nodeType===9?Math.max(e.documentElement["client"+b],e.body["scroll"+b],e.documentElement["scroll"+b],e.body["offset"+b],e.documentElement["offset"+b]):f===w?c.css(e,d):this.css(d,typeof f==="string"?f:f+"px")}});A.jQuery=A.$=c})(window); diff --git a/_static/minus.png b/_static/minus.png new file mode 100644 index 0000000000000000000000000000000000000000..da1c5620d10c047525a467a425abe9ff5269cfc2 GIT binary patch literal 199 zcmeAS@N?(olHy`uVBq!ia0vp^+#t-s1SHkYJtzcHoCO|{#XvD(5N2eUHAey{$X?>< z>&kweokM_|(Po{+Q=kw>iEBiObAE1aYF-J$w=>iB1I2<oT^vIsE+^X*KjUGJJ8<a0 zfdz{eHHE&rzrX(bySvGUL|lavlN4AuRwpzDOq(`sMv;5Joa+jUx<3|oWPN;mPUJ0` pW__Wi<5+59Lc)&n_i}Q^3>R$WLpMkF=>bh=@O1TaS?83{1OVknK<NMg literal 0 HcmV?d00001 diff --git a/_static/plus.png b/_static/plus.png new file mode 100644 index 0000000000000000000000000000000000000000..b3cb37425ea68b39ffa7b2e5fb69161275a87541 GIT binary patch literal 199 zcmeAS@N?(olHy`uVBq!ia0vp^+#t-s1SHkYJtzcHoCO|{#XvD(5N2eUHAey{$X?>< z>&kweokM`jkU7Va11Q8%;u=xnoS&PUnpeW`?aZ|OK(QcC7sn8Z%gHvy&v=;Q4jejg zV8NnAO`-4Z@2~&<?ryS^@YXF`T!a&o6j(S`Cmb}9IcHb(MZ@Xn$H&JXUMl#uzyAM< o7knL=1-mEi3=josIGoJJAh%tCVFz!`HlXPYp00i_>zopr02WF_WB>pF literal 0 HcmV?d00001 diff --git a/_static/pygments.css b/_static/pygments.css new file mode 100644 index 0000000..1a14f2a --- /dev/null +++ b/_static/pygments.css @@ -0,0 +1,62 @@ +.highlight .hll { background-color: #ffffcc } +.highlight { background: #eeffcc; } +.highlight .c { color: #408090; font-style: italic } /* Comment */ +.highlight .err { border: 1px solid #FF0000 } /* Error */ +.highlight .k { color: #007020; font-weight: bold } /* Keyword */ +.highlight .o { color: #666666 } /* Operator */ +.highlight .cm { color: #408090; font-style: italic } /* Comment.Multiline */ +.highlight .cp { color: #007020 } /* Comment.Preproc */ +.highlight .c1 { color: #408090; font-style: italic } /* Comment.Single */ +.highlight .cs { color: #408090; background-color: #fff0f0 } /* Comment.Special */ +.highlight .gd { color: #A00000 } /* Generic.Deleted */ +.highlight .ge { font-style: italic } /* Generic.Emph */ +.highlight .gr { color: #FF0000 } /* Generic.Error */ +.highlight .gh { color: #000080; font-weight: bold } /* Generic.Heading */ +.highlight .gi { color: #00A000 } /* Generic.Inserted */ +.highlight .go { color: #303030 } /* Generic.Output */ +.highlight .gp { color: #c65d09; font-weight: bold } /* Generic.Prompt */ +.highlight .gs { font-weight: bold } /* Generic.Strong */ +.highlight .gu { color: #800080; font-weight: bold } /* Generic.Subheading */ +.highlight .gt { color: #0040D0 } /* Generic.Traceback */ +.highlight .kc { color: #007020; font-weight: bold } /* Keyword.Constant */ +.highlight .kd { color: #007020; font-weight: bold } /* Keyword.Declaration */ +.highlight .kn { color: #007020; font-weight: bold } /* Keyword.Namespace */ +.highlight .kp { color: #007020 } /* Keyword.Pseudo */ +.highlight .kr { color: #007020; font-weight: bold } /* Keyword.Reserved */ +.highlight .kt { color: #902000 } /* Keyword.Type */ +.highlight .m { color: #208050 } /* Literal.Number */ +.highlight .s { color: #4070a0 } /* Literal.String */ +.highlight .na { color: #4070a0 } /* Name.Attribute */ +.highlight .nb { color: #007020 } /* Name.Builtin */ +.highlight .nc { color: #0e84b5; font-weight: bold } /* Name.Class */ +.highlight .no { color: #60add5 } /* Name.Constant */ +.highlight .nd { color: #555555; font-weight: bold } /* Name.Decorator */ +.highlight .ni { color: #d55537; font-weight: bold } /* Name.Entity */ +.highlight .ne { color: #007020 } /* Name.Exception */ +.highlight .nf { color: #06287e } /* Name.Function */ +.highlight .nl { color: #002070; font-weight: bold } /* Name.Label */ +.highlight .nn { color: #0e84b5; font-weight: bold } /* Name.Namespace */ +.highlight .nt { color: #062873; font-weight: bold } /* Name.Tag */ +.highlight .nv { color: #bb60d5 } /* Name.Variable */ +.highlight .ow { color: #007020; font-weight: bold } /* Operator.Word */ +.highlight .w { color: #bbbbbb } /* Text.Whitespace */ +.highlight .mf { color: #208050 } /* Literal.Number.Float */ +.highlight .mh { color: #208050 } /* Literal.Number.Hex */ +.highlight .mi { color: #208050 } /* Literal.Number.Integer */ +.highlight .mo { color: #208050 } /* Literal.Number.Oct */ +.highlight .sb { color: #4070a0 } /* Literal.String.Backtick */ +.highlight .sc { color: #4070a0 } /* Literal.String.Char */ +.highlight .sd { color: #4070a0; font-style: italic } /* Literal.String.Doc */ +.highlight .s2 { color: #4070a0 } /* Literal.String.Double */ +.highlight .se { color: #4070a0; font-weight: bold } /* Literal.String.Escape */ +.highlight .sh { color: #4070a0 } /* Literal.String.Heredoc */ +.highlight .si { color: #70a0d0; font-style: italic } /* Literal.String.Interpol */ +.highlight .sx { color: #c65d09 } /* Literal.String.Other */ +.highlight .sr { color: #235388 } /* Literal.String.Regex */ +.highlight .s1 { color: #4070a0 } /* Literal.String.Single */ +.highlight .ss { color: #517918 } /* Literal.String.Symbol */ +.highlight .bp { color: #007020 } /* Name.Builtin.Pseudo */ +.highlight .vc { color: #bb60d5 } /* Name.Variable.Class */ +.highlight .vg { color: #bb60d5 } /* Name.Variable.Global */ +.highlight .vi { color: #bb60d5 } /* Name.Variable.Instance */ +.highlight .il { color: #208050 } /* Literal.Number.Integer.Long */ \ No newline at end of file diff --git a/_static/searchtools.js b/_static/searchtools.js new file mode 100644 index 0000000..663be4c --- /dev/null +++ b/_static/searchtools.js @@ -0,0 +1,560 @@ +/* + * searchtools.js_t + * ~~~~~~~~~~~~~~~~ + * + * Sphinx JavaScript utilties for the full-text search. + * + * :copyright: Copyright 2007-2011 by the Sphinx team, see AUTHORS. + * :license: BSD, see LICENSE for details. + * + */ + +/** + * helper function to return a node containing the + * search summary for a given text. keywords is a list + * of stemmed words, hlwords is the list of normal, unstemmed + * words. the first one is used to find the occurance, the + * latter for highlighting it. + */ + +jQuery.makeSearchSummary = function(text, keywords, hlwords) { + var textLower = text.toLowerCase(); + var start = 0; + $.each(keywords, function() { + var i = textLower.indexOf(this.toLowerCase()); + if (i > -1) + start = i; + }); + start = Math.max(start - 120, 0); + var excerpt = ((start > 0) ? '...' : '') + + $.trim(text.substr(start, 240)) + + ((start + 240 - text.length) ? '...' : ''); + var rv = $('<div class="context"></div>').text(excerpt); + $.each(hlwords, function() { + rv = rv.highlightText(this, 'highlighted'); + }); + return rv; +} + + +/** + * Porter Stemmer + */ +var Stemmer = function() { + + var step2list = { + ational: 'ate', + tional: 'tion', + enci: 'ence', + anci: 'ance', + izer: 'ize', + bli: 'ble', + alli: 'al', + entli: 'ent', + eli: 'e', + ousli: 'ous', + ization: 'ize', + ation: 'ate', + ator: 'ate', + alism: 'al', + iveness: 'ive', + fulness: 'ful', + ousness: 'ous', + aliti: 'al', + iviti: 'ive', + biliti: 'ble', + logi: 'log' + }; + + var step3list = { + icate: 'ic', + ative: '', + alize: 'al', + iciti: 'ic', + ical: 'ic', + ful: '', + ness: '' + }; + + var c = "[^aeiou]"; // consonant + var v = "[aeiouy]"; // vowel + var C = c + "[^aeiouy]*"; // consonant sequence + var V = v + "[aeiou]*"; // vowel sequence + + var mgr0 = "^(" + C + ")?" + V + C; // [C]VC... is m>0 + var meq1 = "^(" + C + ")?" + V + C + "(" + V + ")?$"; // [C]VC[V] is m=1 + var mgr1 = "^(" + C + ")?" + V + C + V + C; // [C]VCVC... is m>1 + var s_v = "^(" + C + ")?" + v; // vowel in stem + + this.stemWord = function (w) { + var stem; + var suffix; + var firstch; + var origword = w; + + if (w.length < 3) + return w; + + var re; + var re2; + var re3; + var re4; + + firstch = w.substr(0,1); + if (firstch == "y") + w = firstch.toUpperCase() + w.substr(1); + + // Step 1a + re = /^(.+?)(ss|i)es$/; + re2 = /^(.+?)([^s])s$/; + + if (re.test(w)) + w = w.replace(re,"$1$2"); + else if (re2.test(w)) + w = w.replace(re2,"$1$2"); + + // Step 1b + re = /^(.+?)eed$/; + re2 = /^(.+?)(ed|ing)$/; + if (re.test(w)) { + var fp = re.exec(w); + re = new RegExp(mgr0); + if (re.test(fp[1])) { + re = /.$/; + w = w.replace(re,""); + } + } + else if (re2.test(w)) { + var fp = re2.exec(w); + stem = fp[1]; + re2 = new RegExp(s_v); + if (re2.test(stem)) { + w = stem; + re2 = /(at|bl|iz)$/; + re3 = new RegExp("([^aeiouylsz])\\1$"); + re4 = new RegExp("^" + C + v + "[^aeiouwxy]$"); + if (re2.test(w)) + w = w + "e"; + else if (re3.test(w)) { + re = /.$/; + w = w.replace(re,""); + } + else if (re4.test(w)) + w = w + "e"; + } + } + + // Step 1c + re = /^(.+?)y$/; + if (re.test(w)) { + var fp = re.exec(w); + stem = fp[1]; + re = new RegExp(s_v); + if (re.test(stem)) + w = stem + "i"; + } + + // Step 2 + re = /^(.+?)(ational|tional|enci|anci|izer|bli|alli|entli|eli|ousli|ization|ation|ator|alism|iveness|fulness|ousness|aliti|iviti|biliti|logi)$/; + if (re.test(w)) { + var fp = re.exec(w); + stem = fp[1]; + suffix = fp[2]; + re = new RegExp(mgr0); + if (re.test(stem)) + w = stem + step2list[suffix]; + } + + // Step 3 + re = /^(.+?)(icate|ative|alize|iciti|ical|ful|ness)$/; + if (re.test(w)) { + var fp = re.exec(w); + stem = fp[1]; + suffix = fp[2]; + re = new RegExp(mgr0); + if (re.test(stem)) + w = stem + step3list[suffix]; + } + + // Step 4 + re = /^(.+?)(al|ance|ence|er|ic|able|ible|ant|ement|ment|ent|ou|ism|ate|iti|ous|ive|ize)$/; + re2 = /^(.+?)(s|t)(ion)$/; + if (re.test(w)) { + var fp = re.exec(w); + stem = fp[1]; + re = new RegExp(mgr1); + if (re.test(stem)) + w = stem; + } + else if (re2.test(w)) { + var fp = re2.exec(w); + stem = fp[1] + fp[2]; + re2 = new RegExp(mgr1); + if (re2.test(stem)) + w = stem; + } + + // Step 5 + re = /^(.+?)e$/; + if (re.test(w)) { + var fp = re.exec(w); + stem = fp[1]; + re = new RegExp(mgr1); + re2 = new RegExp(meq1); + re3 = new RegExp("^" + C + v + "[^aeiouwxy]$"); + if (re.test(stem) || (re2.test(stem) && !(re3.test(stem)))) + w = stem; + } + re = /ll$/; + re2 = new RegExp(mgr1); + if (re.test(w) && re2.test(w)) { + re = /.$/; + w = w.replace(re,""); + } + + // and turn initial Y back to y + if (firstch == "y") + w = firstch.toLowerCase() + w.substr(1); + return w; + } +} + + +/** + * Search Module + */ +var Search = { + + _index : null, + _queued_query : null, + _pulse_status : -1, + + init : function() { + var params = $.getQueryParameters(); + if (params.q) { + var query = params.q[0]; + $('input[name="q"]')[0].value = query; + this.performSearch(query); + } + }, + + loadIndex : function(url) { + $.ajax({type: "GET", url: url, data: null, success: null, + dataType: "script", cache: true}); + }, + + setIndex : function(index) { + var q; + this._index = index; + if ((q = this._queued_query) !== null) { + this._queued_query = null; + Search.query(q); + } + }, + + hasIndex : function() { + return this._index !== null; + }, + + deferQuery : function(query) { + this._queued_query = query; + }, + + stopPulse : function() { + this._pulse_status = 0; + }, + + startPulse : function() { + if (this._pulse_status >= 0) + return; + function pulse() { + Search._pulse_status = (Search._pulse_status + 1) % 4; + var dotString = ''; + for (var i = 0; i < Search._pulse_status; i++) + dotString += '.'; + Search.dots.text(dotString); + if (Search._pulse_status > -1) + window.setTimeout(pulse, 500); + }; + pulse(); + }, + + /** + * perform a search for something + */ + performSearch : function(query) { + // create the required interface elements + this.out = $('#search-results'); + this.title = $('<h2>' + _('Searching') + '</h2>').appendTo(this.out); + this.dots = $('<span></span>').appendTo(this.title); + this.status = $('<p style="display: none"></p>').appendTo(this.out); + this.output = $('<ul class="search"/>').appendTo(this.out); + + $('#search-progress').text(_('Preparing search...')); + this.startPulse(); + + // index already loaded, the browser was quick! + if (this.hasIndex()) + this.query(query); + else + this.deferQuery(query); + }, + + query : function(query) { + var stopwords = ["and","then","into","it","as","are","in","if","for","no","there","their","was","is","be","to","that","but","they","not","such","with","by","a","on","these","of","will","this","near","the","or","at"]; + + // Stem the searchterms and add them to the correct list + var stemmer = new Stemmer(); + var searchterms = []; + var excluded = []; + var hlterms = []; + var tmp = query.split(/\s+/); + var objectterms = []; + for (var i = 0; i < tmp.length; i++) { + if (tmp[i] != "") { + objectterms.push(tmp[i].toLowerCase()); + } + + if ($u.indexOf(stopwords, tmp[i]) != -1 || tmp[i].match(/^\d+$/) || + tmp[i] == "") { + // skip this "word" + continue; + } + // stem the word + var word = stemmer.stemWord(tmp[i]).toLowerCase(); + // select the correct list + if (word[0] == '-') { + var toAppend = excluded; + word = word.substr(1); + } + else { + var toAppend = searchterms; + hlterms.push(tmp[i].toLowerCase()); + } + // only add if not already in the list + if (!$.contains(toAppend, word)) + toAppend.push(word); + }; + var highlightstring = '?highlight=' + $.urlencode(hlterms.join(" ")); + + // console.debug('SEARCH: searching for:'); + // console.info('required: ', searchterms); + // console.info('excluded: ', excluded); + + // prepare search + var filenames = this._index.filenames; + var titles = this._index.titles; + var terms = this._index.terms; + var fileMap = {}; + var files = null; + // different result priorities + var importantResults = []; + var objectResults = []; + var regularResults = []; + var unimportantResults = []; + $('#search-progress').empty(); + + // lookup as object + for (var i = 0; i < objectterms.length; i++) { + var others = [].concat(objectterms.slice(0,i), + objectterms.slice(i+1, objectterms.length)) + var results = this.performObjectSearch(objectterms[i], others); + // Assume first word is most likely to be the object, + // other words more likely to be in description. + // Therefore put matches for earlier words first. + // (Results are eventually used in reverse order). + objectResults = results[0].concat(objectResults); + importantResults = results[1].concat(importantResults); + unimportantResults = results[2].concat(unimportantResults); + } + + // perform the search on the required terms + for (var i = 0; i < searchterms.length; i++) { + var word = searchterms[i]; + // no match but word was a required one + if ((files = terms[word]) == null) + break; + if (files.length == undefined) { + files = [files]; + } + // create the mapping + for (var j = 0; j < files.length; j++) { + var file = files[j]; + if (file in fileMap) + fileMap[file].push(word); + else + fileMap[file] = [word]; + } + } + + // now check if the files don't contain excluded terms + for (var file in fileMap) { + var valid = true; + + // check if all requirements are matched + if (fileMap[file].length != searchterms.length) + continue; + + // ensure that none of the excluded terms is in the + // search result. + for (var i = 0; i < excluded.length; i++) { + if (terms[excluded[i]] == file || + $.contains(terms[excluded[i]] || [], file)) { + valid = false; + break; + } + } + + // if we have still a valid result we can add it + // to the result list + if (valid) + regularResults.push([filenames[file], titles[file], '', null]); + } + + // delete unused variables in order to not waste + // memory until list is retrieved completely + delete filenames, titles, terms; + + // now sort the regular results descending by title + regularResults.sort(function(a, b) { + var left = a[1].toLowerCase(); + var right = b[1].toLowerCase(); + return (left > right) ? -1 : ((left < right) ? 1 : 0); + }); + + // combine all results + var results = unimportantResults.concat(regularResults) + .concat(objectResults).concat(importantResults); + + // print the results + var resultCount = results.length; + function displayNextItem() { + // results left, load the summary and display it + if (results.length) { + var item = results.pop(); + var listItem = $('<li style="display:none"></li>'); + if (DOCUMENTATION_OPTIONS.FILE_SUFFIX == '') { + // dirhtml builder + var dirname = item[0] + '/'; + if (dirname.match(/\/index\/$/)) { + dirname = dirname.substring(0, dirname.length-6); + } else if (dirname == 'index/') { + dirname = ''; + } + listItem.append($('<a/>').attr('href', + DOCUMENTATION_OPTIONS.URL_ROOT + dirname + + highlightstring + item[2]).html(item[1])); + } else { + // normal html builders + listItem.append($('<a/>').attr('href', + item[0] + DOCUMENTATION_OPTIONS.FILE_SUFFIX + + highlightstring + item[2]).html(item[1])); + } + if (item[3]) { + listItem.append($('<span> (' + item[3] + ')</span>')); + Search.output.append(listItem); + listItem.slideDown(5, function() { + displayNextItem(); + }); + } else if (DOCUMENTATION_OPTIONS.HAS_SOURCE) { + $.get(DOCUMENTATION_OPTIONS.URL_ROOT + '_sources/' + + item[0] + '.txt', function(data) { + if (data != '') { + listItem.append($.makeSearchSummary(data, searchterms, hlterms)); + Search.output.append(listItem); + } + listItem.slideDown(5, function() { + displayNextItem(); + }); + }, "text"); + } else { + // no source available, just display title + Search.output.append(listItem); + listItem.slideDown(5, function() { + displayNextItem(); + }); + } + } + // search finished, update title and status message + else { + Search.stopPulse(); + Search.title.text(_('Search Results')); + if (!resultCount) + Search.status.text(_('Your search did not match any documents. Please make sure that all words are spelled correctly and that you\'ve selected enough categories.')); + else + Search.status.text(_('Search finished, found %s page(s) matching the search query.').replace('%s', resultCount)); + Search.status.fadeIn(500); + } + } + displayNextItem(); + }, + + performObjectSearch : function(object, otherterms) { + var filenames = this._index.filenames; + var objects = this._index.objects; + var objnames = this._index.objnames; + var titles = this._index.titles; + + var importantResults = []; + var objectResults = []; + var unimportantResults = []; + + for (var prefix in objects) { + for (var name in objects[prefix]) { + var fullname = (prefix ? prefix + '.' : '') + name; + if (fullname.toLowerCase().indexOf(object) > -1) { + var match = objects[prefix][name]; + var objname = objnames[match[1]][2]; + var title = titles[match[0]]; + // If more than one term searched for, we require other words to be + // found in the name/title/description + if (otherterms.length > 0) { + var haystack = (prefix + ' ' + name + ' ' + + objname + ' ' + title).toLowerCase(); + var allfound = true; + for (var i = 0; i < otherterms.length; i++) { + if (haystack.indexOf(otherterms[i]) == -1) { + allfound = false; + break; + } + } + if (!allfound) { + continue; + } + } + var descr = objname + _(', in ') + title; + anchor = match[3]; + if (anchor == '') + anchor = fullname; + else if (anchor == '-') + anchor = objnames[match[1]][1] + '-' + fullname; + result = [filenames[match[0]], fullname, '#'+anchor, descr]; + switch (match[2]) { + case 1: objectResults.push(result); break; + case 0: importantResults.push(result); break; + case 2: unimportantResults.push(result); break; + } + } + } + } + + // sort results descending + objectResults.sort(function(a, b) { + return (a[1] > b[1]) ? -1 : ((a[1] < b[1]) ? 1 : 0); + }); + + importantResults.sort(function(a, b) { + return (a[1] > b[1]) ? -1 : ((a[1] < b[1]) ? 1 : 0); + }); + + unimportantResults.sort(function(a, b) { + return (a[1] > b[1]) ? -1 : ((a[1] < b[1]) ? 1 : 0); + }); + + return [importantResults, objectResults, unimportantResults] + } +} + +$(document).ready(function() { + Search.init(); +}); \ No newline at end of file diff --git a/_static/underscore.js b/_static/underscore.js new file mode 100644 index 0000000..5d89914 --- /dev/null +++ b/_static/underscore.js @@ -0,0 +1,23 @@ +// Underscore.js 0.5.5 +// (c) 2009 Jeremy Ashkenas, DocumentCloud Inc. +// Underscore is freely distributable under the terms of the MIT license. +// Portions of Underscore are inspired by or borrowed from Prototype.js, +// Oliver Steele's Functional, and John Resig's Micro-Templating. +// For all details and documentation: +// http://documentcloud.github.com/underscore/ +(function(){var j=this,n=j._,i=function(a){this._wrapped=a},m=typeof StopIteration!=="undefined"?StopIteration:"__break__",b=j._=function(a){return new i(a)};if(typeof exports!=="undefined")exports._=b;var k=Array.prototype.slice,o=Array.prototype.unshift,p=Object.prototype.toString,q=Object.prototype.hasOwnProperty,r=Object.prototype.propertyIsEnumerable;b.VERSION="0.5.5";b.each=function(a,c,d){try{if(a.forEach)a.forEach(c,d);else if(b.isArray(a)||b.isArguments(a))for(var e=0,f=a.length;e<f;e++)c.call(d, +a[e],e,a);else{var g=b.keys(a);f=g.length;for(e=0;e<f;e++)c.call(d,a[g[e]],g[e],a)}}catch(h){if(h!=m)throw h;}return a};b.map=function(a,c,d){if(a&&b.isFunction(a.map))return a.map(c,d);var e=[];b.each(a,function(f,g,h){e.push(c.call(d,f,g,h))});return e};b.reduce=function(a,c,d,e){if(a&&b.isFunction(a.reduce))return a.reduce(b.bind(d,e),c);b.each(a,function(f,g,h){c=d.call(e,c,f,g,h)});return c};b.reduceRight=function(a,c,d,e){if(a&&b.isFunction(a.reduceRight))return a.reduceRight(b.bind(d,e),c); +var f=b.clone(b.toArray(a)).reverse();b.each(f,function(g,h){c=d.call(e,c,g,h,a)});return c};b.detect=function(a,c,d){var e;b.each(a,function(f,g,h){if(c.call(d,f,g,h)){e=f;b.breakLoop()}});return e};b.select=function(a,c,d){if(a&&b.isFunction(a.filter))return a.filter(c,d);var e=[];b.each(a,function(f,g,h){c.call(d,f,g,h)&&e.push(f)});return e};b.reject=function(a,c,d){var e=[];b.each(a,function(f,g,h){!c.call(d,f,g,h)&&e.push(f)});return e};b.all=function(a,c,d){c=c||b.identity;if(a&&b.isFunction(a.every))return a.every(c, +d);var e=true;b.each(a,function(f,g,h){(e=e&&c.call(d,f,g,h))||b.breakLoop()});return e};b.any=function(a,c,d){c=c||b.identity;if(a&&b.isFunction(a.some))return a.some(c,d);var e=false;b.each(a,function(f,g,h){if(e=c.call(d,f,g,h))b.breakLoop()});return e};b.include=function(a,c){if(b.isArray(a))return b.indexOf(a,c)!=-1;var d=false;b.each(a,function(e){if(d=e===c)b.breakLoop()});return d};b.invoke=function(a,c){var d=b.rest(arguments,2);return b.map(a,function(e){return(c?e[c]:e).apply(e,d)})};b.pluck= +function(a,c){return b.map(a,function(d){return d[c]})};b.max=function(a,c,d){if(!c&&b.isArray(a))return Math.max.apply(Math,a);var e={computed:-Infinity};b.each(a,function(f,g,h){g=c?c.call(d,f,g,h):f;g>=e.computed&&(e={value:f,computed:g})});return e.value};b.min=function(a,c,d){if(!c&&b.isArray(a))return Math.min.apply(Math,a);var e={computed:Infinity};b.each(a,function(f,g,h){g=c?c.call(d,f,g,h):f;g<e.computed&&(e={value:f,computed:g})});return e.value};b.sortBy=function(a,c,d){return b.pluck(b.map(a, +function(e,f,g){return{value:e,criteria:c.call(d,e,f,g)}}).sort(function(e,f){e=e.criteria;f=f.criteria;return e<f?-1:e>f?1:0}),"value")};b.sortedIndex=function(a,c,d){d=d||b.identity;for(var e=0,f=a.length;e<f;){var g=e+f>>1;d(a[g])<d(c)?(e=g+1):(f=g)}return e};b.toArray=function(a){if(!a)return[];if(a.toArray)return a.toArray();if(b.isArray(a))return a;if(b.isArguments(a))return k.call(a);return b.values(a)};b.size=function(a){return b.toArray(a).length};b.first=function(a,c,d){return c&&!d?k.call(a, +0,c):a[0]};b.rest=function(a,c,d){return k.call(a,b.isUndefined(c)||d?1:c)};b.last=function(a){return a[a.length-1]};b.compact=function(a){return b.select(a,function(c){return!!c})};b.flatten=function(a){return b.reduce(a,[],function(c,d){if(b.isArray(d))return c.concat(b.flatten(d));c.push(d);return c})};b.without=function(a){var c=b.rest(arguments);return b.select(a,function(d){return!b.include(c,d)})};b.uniq=function(a,c){return b.reduce(a,[],function(d,e,f){if(0==f||(c===true?b.last(d)!=e:!b.include(d, +e)))d.push(e);return d})};b.intersect=function(a){var c=b.rest(arguments);return b.select(b.uniq(a),function(d){return b.all(c,function(e){return b.indexOf(e,d)>=0})})};b.zip=function(){for(var a=b.toArray(arguments),c=b.max(b.pluck(a,"length")),d=new Array(c),e=0;e<c;e++)d[e]=b.pluck(a,String(e));return d};b.indexOf=function(a,c){if(a.indexOf)return a.indexOf(c);for(var d=0,e=a.length;d<e;d++)if(a[d]===c)return d;return-1};b.lastIndexOf=function(a,c){if(a.lastIndexOf)return a.lastIndexOf(c);for(var d= +a.length;d--;)if(a[d]===c)return d;return-1};b.range=function(a,c,d){var e=b.toArray(arguments),f=e.length<=1;a=f?0:e[0];c=f?e[0]:e[1];d=e[2]||1;e=Math.ceil((c-a)/d);if(e<=0)return[];e=new Array(e);f=a;for(var g=0;1;f+=d){if((d>0?f-c:c-f)>=0)return e;e[g++]=f}};b.bind=function(a,c){var d=b.rest(arguments,2);return function(){return a.apply(c||j,d.concat(b.toArray(arguments)))}};b.bindAll=function(a){var c=b.rest(arguments);if(c.length==0)c=b.functions(a);b.each(c,function(d){a[d]=b.bind(a[d],a)}); +return a};b.delay=function(a,c){var d=b.rest(arguments,2);return setTimeout(function(){return a.apply(a,d)},c)};b.defer=function(a){return b.delay.apply(b,[a,1].concat(b.rest(arguments)))};b.wrap=function(a,c){return function(){var d=[a].concat(b.toArray(arguments));return c.apply(c,d)}};b.compose=function(){var a=b.toArray(arguments);return function(){for(var c=b.toArray(arguments),d=a.length-1;d>=0;d--)c=[a[d].apply(this,c)];return c[0]}};b.keys=function(a){if(b.isArray(a))return b.range(0,a.length); +var c=[];for(var d in a)q.call(a,d)&&c.push(d);return c};b.values=function(a){return b.map(a,b.identity)};b.functions=function(a){return b.select(b.keys(a),function(c){return b.isFunction(a[c])}).sort()};b.extend=function(a,c){for(var d in c)a[d]=c[d];return a};b.clone=function(a){if(b.isArray(a))return a.slice(0);return b.extend({},a)};b.tap=function(a,c){c(a);return a};b.isEqual=function(a,c){if(a===c)return true;var d=typeof a;if(d!=typeof c)return false;if(a==c)return true;if(!a&&c||a&&!c)return false; +if(a.isEqual)return a.isEqual(c);if(b.isDate(a)&&b.isDate(c))return a.getTime()===c.getTime();if(b.isNaN(a)&&b.isNaN(c))return true;if(b.isRegExp(a)&&b.isRegExp(c))return a.source===c.source&&a.global===c.global&&a.ignoreCase===c.ignoreCase&&a.multiline===c.multiline;if(d!=="object")return false;if(a.length&&a.length!==c.length)return false;d=b.keys(a);var e=b.keys(c);if(d.length!=e.length)return false;for(var f in a)if(!b.isEqual(a[f],c[f]))return false;return true};b.isEmpty=function(a){return b.keys(a).length== +0};b.isElement=function(a){return!!(a&&a.nodeType==1)};b.isArray=function(a){return!!(a&&a.concat&&a.unshift)};b.isArguments=function(a){return a&&b.isNumber(a.length)&&!b.isArray(a)&&!r.call(a,"length")};b.isFunction=function(a){return!!(a&&a.constructor&&a.call&&a.apply)};b.isString=function(a){return!!(a===""||a&&a.charCodeAt&&a.substr)};b.isNumber=function(a){return p.call(a)==="[object Number]"};b.isDate=function(a){return!!(a&&a.getTimezoneOffset&&a.setUTCFullYear)};b.isRegExp=function(a){return!!(a&& +a.test&&a.exec&&(a.ignoreCase||a.ignoreCase===false))};b.isNaN=function(a){return b.isNumber(a)&&isNaN(a)};b.isNull=function(a){return a===null};b.isUndefined=function(a){return typeof a=="undefined"};b.noConflict=function(){j._=n;return this};b.identity=function(a){return a};b.breakLoop=function(){throw m;};var s=0;b.uniqueId=function(a){var c=s++;return a?a+c:c};b.template=function(a,c){a=new Function("obj","var p=[],print=function(){p.push.apply(p,arguments);};with(obj){p.push('"+a.replace(/[\r\t\n]/g, +" ").replace(/'(?=[^%]*%>)/g,"\t").split("'").join("\\'").split("\t").join("'").replace(/<%=(.+?)%>/g,"',$1,'").split("<%").join("');").split("%>").join("p.push('")+"');}return p.join('');");return c?a(c):a};b.forEach=b.each;b.foldl=b.inject=b.reduce;b.foldr=b.reduceRight;b.filter=b.select;b.every=b.all;b.some=b.any;b.head=b.first;b.tail=b.rest;b.methods=b.functions;var l=function(a,c){return c?b(a).chain():a};b.each(b.functions(b),function(a){var c=b[a];i.prototype[a]=function(){var d=b.toArray(arguments); +o.call(d,this._wrapped);return l(c.apply(b,d),this._chain)}});b.each(["pop","push","reverse","shift","sort","splice","unshift"],function(a){var c=Array.prototype[a];i.prototype[a]=function(){c.apply(this._wrapped,arguments);return l(this._wrapped,this._chain)}});b.each(["concat","join","slice"],function(a){var c=Array.prototype[a];i.prototype[a]=function(){return l(c.apply(this._wrapped,arguments),this._chain)}});i.prototype.chain=function(){this._chain=true;return this};i.prototype.value=function(){return this._wrapped}})(); diff --git a/_static/up-pressed.png b/_static/up-pressed.png new file mode 100644 index 0000000000000000000000000000000000000000..8bd587afee2fe38989383ff82010147ea56b93dd GIT binary patch literal 372 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`jKx9jP7LeL$-D$|*pj^6U4S$Y z{B+)352QE?JR*yM+OLB!qm#z$3ZNi+iKnkC`z>}Z1|5lxjZvvUp)Z~;jv*GO&raT- z#pEb(tbY1#Ey4dH;Y+=<pEBRLsjGAOCY!v|CyvUA4wrPfZ{O_DPe^{q91)qJXqI&@ zO~JiL+CN7oqU^@cvS+{3Bz9yAOB-!e{LTNlK+)ab|H>wAPPMA->(Ug=YM6W%tgKtA zI`O=0Laf#Y-Y4f~`^K_)D_mvj{B=4?=t!I41ZLNlI~j_4kE*^nvF$)|>mH^X%(>6c z8XimFvvIAOoRJf!>6jzIa5w(S%7lxdZ{*qJxhxpj6S#UB!oTuMX^Z^6%)IfT_v-!3 z=PEaM_iSh6_`s$!$NaEMP6gw<x#pX-zc1lmBOrZAdYY~+^N*K~{#DY`%7Ol8@O1Ta JS?83{1OR?3hMxcc literal 0 HcmV?d00001 diff --git a/_static/up.png b/_static/up.png new file mode 100644 index 0000000000000000000000000000000000000000..b94625680b4a4b9647c3a6f3f283776930696aa9 GIT binary patch literal 363 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`jKx9jP7LeL$-D$|*pj^6U4S$Y z{B+)352QE?JR*yM+OLB!qm#z$3ZNi+iKnkC`z>}xaYa3wv(2tRq1T=+jv*GO&raUx z$K)u`w*Tuor>1}ySNCesuPuG-8#b%jw0sn-5fpk^!623V@1GR6+<`78?&Rhov&jx6 z*R7KttIVGJ=8yH~|HhI(uB&NIpYp$LXT}M`Z<Dv|Q9O9-{p!t<9#srg4(I=_Xg%_r zaf7X90Rxxu?X9UB7>)D=?%dxpN#UiKM#HZsJK4DUm#Y3a5!dMF634rTxz_l%hvABb z(=Pc<$5*Xj@eE$@$89c0_oa>Y5;`&;INvn7C-9xQbH92`*_(~*lcvS}m5Z2pGdgKc z>;tJC%=6B^QS*>ubT+QGD)v`9z&&Y`y-xHu*7vDC$|9@xfdY)d)78&qol`;+01iQm A<^TWy literal 0 HcmV?d00001 diff --git a/_static/websupport.js b/_static/websupport.js new file mode 100644 index 0000000..e9bd1b8 --- /dev/null +++ b/_static/websupport.js @@ -0,0 +1,808 @@ +/* + * websupport.js + * ~~~~~~~~~~~~~ + * + * sphinx.websupport utilties for all documentation. + * + * :copyright: Copyright 2007-2011 by the Sphinx team, see AUTHORS. + * :license: BSD, see LICENSE for details. + * + */ + +(function($) { + $.fn.autogrow = function() { + return this.each(function() { + var textarea = this; + + $.fn.autogrow.resize(textarea); + + $(textarea) + .focus(function() { + textarea.interval = setInterval(function() { + $.fn.autogrow.resize(textarea); + }, 500); + }) + .blur(function() { + clearInterval(textarea.interval); + }); + }); + }; + + $.fn.autogrow.resize = function(textarea) { + var lineHeight = parseInt($(textarea).css('line-height'), 10); + var lines = textarea.value.split('\n'); + var columns = textarea.cols; + var lineCount = 0; + $.each(lines, function() { + lineCount += Math.ceil(this.length / columns) || 1; + }); + var height = lineHeight * (lineCount + 1); + $(textarea).css('height', height); + }; +})(jQuery); + +(function($) { + var comp, by; + + function init() { + initEvents(); + initComparator(); + } + + function initEvents() { + $('a.comment-close').live("click", function(event) { + event.preventDefault(); + hide($(this).attr('id').substring(2)); + }); + $('a.vote').live("click", function(event) { + event.preventDefault(); + handleVote($(this)); + }); + $('a.reply').live("click", function(event) { + event.preventDefault(); + openReply($(this).attr('id').substring(2)); + }); + $('a.close-reply').live("click", function(event) { + event.preventDefault(); + closeReply($(this).attr('id').substring(2)); + }); + $('a.sort-option').live("click", function(event) { + event.preventDefault(); + handleReSort($(this)); + }); + $('a.show-proposal').live("click", function(event) { + event.preventDefault(); + showProposal($(this).attr('id').substring(2)); + }); + $('a.hide-proposal').live("click", function(event) { + event.preventDefault(); + hideProposal($(this).attr('id').substring(2)); + }); + $('a.show-propose-change').live("click", function(event) { + event.preventDefault(); + showProposeChange($(this).attr('id').substring(2)); + }); + $('a.hide-propose-change').live("click", function(event) { + event.preventDefault(); + hideProposeChange($(this).attr('id').substring(2)); + }); + $('a.accept-comment').live("click", function(event) { + event.preventDefault(); + acceptComment($(this).attr('id').substring(2)); + }); + $('a.delete-comment').live("click", function(event) { + event.preventDefault(); + deleteComment($(this).attr('id').substring(2)); + }); + $('a.comment-markup').live("click", function(event) { + event.preventDefault(); + toggleCommentMarkupBox($(this).attr('id').substring(2)); + }); + } + + /** + * Set comp, which is a comparator function used for sorting and + * inserting comments into the list. + */ + function setComparator() { + // If the first three letters are "asc", sort in ascending order + // and remove the prefix. + if (by.substring(0,3) == 'asc') { + var i = by.substring(3); + comp = function(a, b) { return a[i] - b[i]; }; + } else { + // Otherwise sort in descending order. + comp = function(a, b) { return b[by] - a[by]; }; + } + + // Reset link styles and format the selected sort option. + $('a.sel').attr('href', '#').removeClass('sel'); + $('a.by' + by).removeAttr('href').addClass('sel'); + } + + /** + * Create a comp function. If the user has preferences stored in + * the sortBy cookie, use those, otherwise use the default. + */ + function initComparator() { + by = 'rating'; // Default to sort by rating. + // If the sortBy cookie is set, use that instead. + if (document.cookie.length > 0) { + var start = document.cookie.indexOf('sortBy='); + if (start != -1) { + start = start + 7; + var end = document.cookie.indexOf(";", start); + if (end == -1) { + end = document.cookie.length; + by = unescape(document.cookie.substring(start, end)); + } + } + } + setComparator(); + } + + /** + * Show a comment div. + */ + function show(id) { + $('#ao' + id).hide(); + $('#ah' + id).show(); + var context = $.extend({id: id}, opts); + var popup = $(renderTemplate(popupTemplate, context)).hide(); + popup.find('textarea[name="proposal"]').hide(); + popup.find('a.by' + by).addClass('sel'); + var form = popup.find('#cf' + id); + form.submit(function(event) { + event.preventDefault(); + addComment(form); + }); + $('#s' + id).after(popup); + popup.slideDown('fast', function() { + getComments(id); + }); + } + + /** + * Hide a comment div. + */ + function hide(id) { + $('#ah' + id).hide(); + $('#ao' + id).show(); + var div = $('#sc' + id); + div.slideUp('fast', function() { + div.remove(); + }); + } + + /** + * Perform an ajax request to get comments for a node + * and insert the comments into the comments tree. + */ + function getComments(id) { + $.ajax({ + type: 'GET', + url: opts.getCommentsURL, + data: {node: id}, + success: function(data, textStatus, request) { + var ul = $('#cl' + id); + var speed = 100; + $('#cf' + id) + .find('textarea[name="proposal"]') + .data('source', data.source); + + if (data.comments.length === 0) { + ul.html('<li>No comments yet.</li>'); + ul.data('empty', true); + } else { + // If there are comments, sort them and put them in the list. + var comments = sortComments(data.comments); + speed = data.comments.length * 100; + appendComments(comments, ul); + ul.data('empty', false); + } + $('#cn' + id).slideUp(speed + 200); + ul.slideDown(speed); + }, + error: function(request, textStatus, error) { + showError('Oops, there was a problem retrieving the comments.'); + }, + dataType: 'json' + }); + } + + /** + * Add a comment via ajax and insert the comment into the comment tree. + */ + function addComment(form) { + var node_id = form.find('input[name="node"]').val(); + var parent_id = form.find('input[name="parent"]').val(); + var text = form.find('textarea[name="comment"]').val(); + var proposal = form.find('textarea[name="proposal"]').val(); + + if (text == '') { + showError('Please enter a comment.'); + return; + } + + // Disable the form that is being submitted. + form.find('textarea,input').attr('disabled', 'disabled'); + + // Send the comment to the server. + $.ajax({ + type: "POST", + url: opts.addCommentURL, + dataType: 'json', + data: { + node: node_id, + parent: parent_id, + text: text, + proposal: proposal + }, + success: function(data, textStatus, error) { + // Reset the form. + if (node_id) { + hideProposeChange(node_id); + } + form.find('textarea') + .val('') + .add(form.find('input')) + .removeAttr('disabled'); + var ul = $('#cl' + (node_id || parent_id)); + if (ul.data('empty')) { + $(ul).empty(); + ul.data('empty', false); + } + insertComment(data.comment); + var ao = $('#ao' + node_id); + ao.find('img').attr({'src': opts.commentBrightImage}); + if (node_id) { + // if this was a "root" comment, remove the commenting box + // (the user can get it back by reopening the comment popup) + $('#ca' + node_id).slideUp(); + } + }, + error: function(request, textStatus, error) { + form.find('textarea,input').removeAttr('disabled'); + showError('Oops, there was a problem adding the comment.'); + } + }); + } + + /** + * Recursively append comments to the main comment list and children + * lists, creating the comment tree. + */ + function appendComments(comments, ul) { + $.each(comments, function() { + var div = createCommentDiv(this); + ul.append($(document.createElement('li')).html(div)); + appendComments(this.children, div.find('ul.comment-children')); + // To avoid stagnating data, don't store the comments children in data. + this.children = null; + div.data('comment', this); + }); + } + + /** + * After adding a new comment, it must be inserted in the correct + * location in the comment tree. + */ + function insertComment(comment) { + var div = createCommentDiv(comment); + + // To avoid stagnating data, don't store the comments children in data. + comment.children = null; + div.data('comment', comment); + + var ul = $('#cl' + (comment.node || comment.parent)); + var siblings = getChildren(ul); + + var li = $(document.createElement('li')); + li.hide(); + + // Determine where in the parents children list to insert this comment. + for(i=0; i < siblings.length; i++) { + if (comp(comment, siblings[i]) <= 0) { + $('#cd' + siblings[i].id) + .parent() + .before(li.html(div)); + li.slideDown('fast'); + return; + } + } + + // If we get here, this comment rates lower than all the others, + // or it is the only comment in the list. + ul.append(li.html(div)); + li.slideDown('fast'); + } + + function acceptComment(id) { + $.ajax({ + type: 'POST', + url: opts.acceptCommentURL, + data: {id: id}, + success: function(data, textStatus, request) { + $('#cm' + id).fadeOut('fast'); + $('#cd' + id).removeClass('moderate'); + }, + error: function(request, textStatus, error) { + showError('Oops, there was a problem accepting the comment.'); + } + }); + } + + function deleteComment(id) { + $.ajax({ + type: 'POST', + url: opts.deleteCommentURL, + data: {id: id}, + success: function(data, textStatus, request) { + var div = $('#cd' + id); + if (data == 'delete') { + // Moderator mode: remove the comment and all children immediately + div.slideUp('fast', function() { + div.remove(); + }); + return; + } + // User mode: only mark the comment as deleted + div + .find('span.user-id:first') + .text('[deleted]').end() + .find('div.comment-text:first') + .text('[deleted]').end() + .find('#cm' + id + ', #dc' + id + ', #ac' + id + ', #rc' + id + + ', #sp' + id + ', #hp' + id + ', #cr' + id + ', #rl' + id) + .remove(); + var comment = div.data('comment'); + comment.username = '[deleted]'; + comment.text = '[deleted]'; + div.data('comment', comment); + }, + error: function(request, textStatus, error) { + showError('Oops, there was a problem deleting the comment.'); + } + }); + } + + function showProposal(id) { + $('#sp' + id).hide(); + $('#hp' + id).show(); + $('#pr' + id).slideDown('fast'); + } + + function hideProposal(id) { + $('#hp' + id).hide(); + $('#sp' + id).show(); + $('#pr' + id).slideUp('fast'); + } + + function showProposeChange(id) { + $('#pc' + id).hide(); + $('#hc' + id).show(); + var textarea = $('#pt' + id); + textarea.val(textarea.data('source')); + $.fn.autogrow.resize(textarea[0]); + textarea.slideDown('fast'); + } + + function hideProposeChange(id) { + $('#hc' + id).hide(); + $('#pc' + id).show(); + var textarea = $('#pt' + id); + textarea.val('').removeAttr('disabled'); + textarea.slideUp('fast'); + } + + function toggleCommentMarkupBox(id) { + $('#mb' + id).toggle(); + } + + /** Handle when the user clicks on a sort by link. */ + function handleReSort(link) { + var classes = link.attr('class').split(/\s+/); + for (var i=0; i<classes.length; i++) { + if (classes[i] != 'sort-option') { + by = classes[i].substring(2); + } + } + setComparator(); + // Save/update the sortBy cookie. + var expiration = new Date(); + expiration.setDate(expiration.getDate() + 365); + document.cookie= 'sortBy=' + escape(by) + + ';expires=' + expiration.toUTCString(); + $('ul.comment-ul').each(function(index, ul) { + var comments = getChildren($(ul), true); + comments = sortComments(comments); + appendComments(comments, $(ul).empty()); + }); + } + + /** + * Function to process a vote when a user clicks an arrow. + */ + function handleVote(link) { + if (!opts.voting) { + showError("You'll need to login to vote."); + return; + } + + var id = link.attr('id'); + if (!id) { + // Didn't click on one of the voting arrows. + return; + } + // If it is an unvote, the new vote value is 0, + // Otherwise it's 1 for an upvote, or -1 for a downvote. + var value = 0; + if (id.charAt(1) != 'u') { + value = id.charAt(0) == 'u' ? 1 : -1; + } + // The data to be sent to the server. + var d = { + comment_id: id.substring(2), + value: value + }; + + // Swap the vote and unvote links. + link.hide(); + $('#' + id.charAt(0) + (id.charAt(1) == 'u' ? 'v' : 'u') + d.comment_id) + .show(); + + // The div the comment is displayed in. + var div = $('div#cd' + d.comment_id); + var data = div.data('comment'); + + // If this is not an unvote, and the other vote arrow has + // already been pressed, unpress it. + if ((d.value !== 0) && (data.vote === d.value * -1)) { + $('#' + (d.value == 1 ? 'd' : 'u') + 'u' + d.comment_id).hide(); + $('#' + (d.value == 1 ? 'd' : 'u') + 'v' + d.comment_id).show(); + } + + // Update the comments rating in the local data. + data.rating += (data.vote === 0) ? d.value : (d.value - data.vote); + data.vote = d.value; + div.data('comment', data); + + // Change the rating text. + div.find('.rating:first') + .text(data.rating + ' point' + (data.rating == 1 ? '' : 's')); + + // Send the vote information to the server. + $.ajax({ + type: "POST", + url: opts.processVoteURL, + data: d, + error: function(request, textStatus, error) { + showError('Oops, there was a problem casting that vote.'); + } + }); + } + + /** + * Open a reply form used to reply to an existing comment. + */ + function openReply(id) { + // Swap out the reply link for the hide link + $('#rl' + id).hide(); + $('#cr' + id).show(); + + // Add the reply li to the children ul. + var div = $(renderTemplate(replyTemplate, {id: id})).hide(); + $('#cl' + id) + .prepend(div) + // Setup the submit handler for the reply form. + .find('#rf' + id) + .submit(function(event) { + event.preventDefault(); + addComment($('#rf' + id)); + closeReply(id); + }) + .find('input[type=button]') + .click(function() { + closeReply(id); + }); + div.slideDown('fast', function() { + $('#rf' + id).find('textarea').focus(); + }); + } + + /** + * Close the reply form opened with openReply. + */ + function closeReply(id) { + // Remove the reply div from the DOM. + $('#rd' + id).slideUp('fast', function() { + $(this).remove(); + }); + + // Swap out the hide link for the reply link + $('#cr' + id).hide(); + $('#rl' + id).show(); + } + + /** + * Recursively sort a tree of comments using the comp comparator. + */ + function sortComments(comments) { + comments.sort(comp); + $.each(comments, function() { + this.children = sortComments(this.children); + }); + return comments; + } + + /** + * Get the children comments from a ul. If recursive is true, + * recursively include childrens' children. + */ + function getChildren(ul, recursive) { + var children = []; + ul.children().children("[id^='cd']") + .each(function() { + var comment = $(this).data('comment'); + if (recursive) + comment.children = getChildren($(this).find('#cl' + comment.id), true); + children.push(comment); + }); + return children; + } + + /** Create a div to display a comment in. */ + function createCommentDiv(comment) { + if (!comment.displayed && !opts.moderator) { + return $('<div class="moderate">Thank you! Your comment will show up ' + + 'once it is has been approved by a moderator.</div>'); + } + // Prettify the comment rating. + comment.pretty_rating = comment.rating + ' point' + + (comment.rating == 1 ? '' : 's'); + // Make a class (for displaying not yet moderated comments differently) + comment.css_class = comment.displayed ? '' : ' moderate'; + // Create a div for this comment. + var context = $.extend({}, opts, comment); + var div = $(renderTemplate(commentTemplate, context)); + + // If the user has voted on this comment, highlight the correct arrow. + if (comment.vote) { + var direction = (comment.vote == 1) ? 'u' : 'd'; + div.find('#' + direction + 'v' + comment.id).hide(); + div.find('#' + direction + 'u' + comment.id).show(); + } + + if (opts.moderator || comment.text != '[deleted]') { + div.find('a.reply').show(); + if (comment.proposal_diff) + div.find('#sp' + comment.id).show(); + if (opts.moderator && !comment.displayed) + div.find('#cm' + comment.id).show(); + if (opts.moderator || (opts.username == comment.username)) + div.find('#dc' + comment.id).show(); + } + return div; + } + + /** + * A simple template renderer. Placeholders such as <%id%> are replaced + * by context['id'] with items being escaped. Placeholders such as <#id#> + * are not escaped. + */ + function renderTemplate(template, context) { + var esc = $(document.createElement('div')); + + function handle(ph, escape) { + var cur = context; + $.each(ph.split('.'), function() { + cur = cur[this]; + }); + return escape ? esc.text(cur || "").html() : cur; + } + + return template.replace(/<([%#])([\w\.]*)\1>/g, function() { + return handle(arguments[2], arguments[1] == '%' ? true : false); + }); + } + + /** Flash an error message briefly. */ + function showError(message) { + $(document.createElement('div')).attr({'class': 'popup-error'}) + .append($(document.createElement('div')) + .attr({'class': 'error-message'}).text(message)) + .appendTo('body') + .fadeIn("slow") + .delay(2000) + .fadeOut("slow"); + } + + /** Add a link the user uses to open the comments popup. */ + $.fn.comment = function() { + return this.each(function() { + var id = $(this).attr('id').substring(1); + var count = COMMENT_METADATA[id]; + var title = count + ' comment' + (count == 1 ? '' : 's'); + var image = count > 0 ? opts.commentBrightImage : opts.commentImage; + var addcls = count == 0 ? ' nocomment' : ''; + $(this) + .append( + $(document.createElement('a')).attr({ + href: '#', + 'class': 'sphinx-comment-open' + addcls, + id: 'ao' + id + }) + .append($(document.createElement('img')).attr({ + src: image, + alt: 'comment', + title: title + })) + .click(function(event) { + event.preventDefault(); + show($(this).attr('id').substring(2)); + }) + ) + .append( + $(document.createElement('a')).attr({ + href: '#', + 'class': 'sphinx-comment-close hidden', + id: 'ah' + id + }) + .append($(document.createElement('img')).attr({ + src: opts.closeCommentImage, + alt: 'close', + title: 'close' + })) + .click(function(event) { + event.preventDefault(); + hide($(this).attr('id').substring(2)); + }) + ); + }); + }; + + var opts = { + processVoteURL: '/_process_vote', + addCommentURL: '/_add_comment', + getCommentsURL: '/_get_comments', + acceptCommentURL: '/_accept_comment', + deleteCommentURL: '/_delete_comment', + commentImage: '/static/_static/comment.png', + closeCommentImage: '/static/_static/comment-close.png', + loadingImage: '/static/_static/ajax-loader.gif', + commentBrightImage: '/static/_static/comment-bright.png', + upArrow: '/static/_static/up.png', + downArrow: '/static/_static/down.png', + upArrowPressed: '/static/_static/up-pressed.png', + downArrowPressed: '/static/_static/down-pressed.png', + voting: false, + moderator: false + }; + + if (typeof COMMENT_OPTIONS != "undefined") { + opts = jQuery.extend(opts, COMMENT_OPTIONS); + } + + var popupTemplate = '\ + <div class="sphinx-comments" id="sc<%id%>">\ + <p class="sort-options">\ + Sort by:\ + <a href="#" class="sort-option byrating">best rated</a>\ + <a href="#" class="sort-option byascage">newest</a>\ + <a href="#" class="sort-option byage">oldest</a>\ + </p>\ + <div class="comment-header">Comments</div>\ + <div class="comment-loading" id="cn<%id%>">\ + loading comments... <img src="<%loadingImage%>" alt="" /></div>\ + <ul id="cl<%id%>" class="comment-ul"></ul>\ + <div id="ca<%id%>">\ + <p class="add-a-comment">Add a comment\ + (<a href="#" class="comment-markup" id="ab<%id%>">markup</a>):</p>\ + <div class="comment-markup-box" id="mb<%id%>">\ + reStructured text markup: <i>*emph*</i>, <b>**strong**</b>, \ + <tt>``code``</tt>, \ + code blocks: <tt>::</tt> and an indented block after blank line</div>\ + <form method="post" id="cf<%id%>" class="comment-form" action="">\ + <textarea name="comment" cols="80"></textarea>\ + <p class="propose-button">\ + <a href="#" id="pc<%id%>" class="show-propose-change">\ + Propose a change ▹\ + </a>\ + <a href="#" id="hc<%id%>" class="hide-propose-change">\ + Propose a change ▿\ + </a>\ + </p>\ + <textarea name="proposal" id="pt<%id%>" cols="80"\ + spellcheck="false"></textarea>\ + <input type="submit" value="Add comment" />\ + <input type="hidden" name="node" value="<%id%>" />\ + <input type="hidden" name="parent" value="" />\ + </form>\ + </div>\ + </div>'; + + var commentTemplate = '\ + <div id="cd<%id%>" class="sphinx-comment<%css_class%>">\ + <div class="vote">\ + <div class="arrow">\ + <a href="#" id="uv<%id%>" class="vote" title="vote up">\ + <img src="<%upArrow%>" />\ + </a>\ + <a href="#" id="uu<%id%>" class="un vote" title="vote up">\ + <img src="<%upArrowPressed%>" />\ + </a>\ + </div>\ + <div class="arrow">\ + <a href="#" id="dv<%id%>" class="vote" title="vote down">\ + <img src="<%downArrow%>" id="da<%id%>" />\ + </a>\ + <a href="#" id="du<%id%>" class="un vote" title="vote down">\ + <img src="<%downArrowPressed%>" />\ + </a>\ + </div>\ + </div>\ + <div class="comment-content">\ + <p class="tagline comment">\ + <span class="user-id"><%username%></span>\ + <span class="rating"><%pretty_rating%></span>\ + <span class="delta"><%time.delta%></span>\ + </p>\ + <div class="comment-text comment"><#text#></div>\ + <p class="comment-opts comment">\ + <a href="#" class="reply hidden" id="rl<%id%>">reply ▹</a>\ + <a href="#" class="close-reply" id="cr<%id%>">reply ▿</a>\ + <a href="#" id="sp<%id%>" class="show-proposal">proposal ▹</a>\ + <a href="#" id="hp<%id%>" class="hide-proposal">proposal ▿</a>\ + <a href="#" id="dc<%id%>" class="delete-comment hidden">delete</a>\ + <span id="cm<%id%>" class="moderation hidden">\ + <a href="#" id="ac<%id%>" class="accept-comment">accept</a>\ + </span>\ + </p>\ + <pre class="proposal" id="pr<%id%>">\ +<#proposal_diff#>\ + </pre>\ + <ul class="comment-children" id="cl<%id%>"></ul>\ + </div>\ + <div class="clearleft"></div>\ + </div>\ + </div>'; + + var replyTemplate = '\ + <li>\ + <div class="reply-div" id="rd<%id%>">\ + <form id="rf<%id%>">\ + <textarea name="comment" cols="80"></textarea>\ + <input type="submit" value="Add reply" />\ + <input type="button" value="Cancel" />\ + <input type="hidden" name="parent" value="<%id%>" />\ + <input type="hidden" name="node" value="" />\ + </form>\ + </div>\ + </li>'; + + $(document).ready(function() { + init(); + }); +})(jQuery); + +$(document).ready(function() { + // add comment anchors for all paragraphs that are commentable + $('.sphinx-has-comment').comment(); + + // highlight search words in search results + $("div.context").each(function() { + var params = $.getQueryParameters(); + var terms = (params.q) ? params.q[0].split(/\s+/) : []; + var result = $(this); + $.each(terms, function() { + result.highlightText(this.toLowerCase(), 'highlighted'); + }); + }); + + // directly open comment window if requested + var anchor = document.location.hash; + if (anchor.substring(0, 9) == '#comment-') { + $('#ao' + anchor.substring(9)).click(); + document.location.hash = '#s' + anchor.substring(9); + } +}); diff --git a/api/external/fields.html b/api/external/fields.html new file mode 100644 index 0000000..3b7f8fc --- /dev/null +++ b/api/external/fields.html @@ -0,0 +1,380 @@ + +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> + + +<html xmlns="http://www.w3.org/1999/xhtml"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> + + <title>Fields — audience 0.1 documentation</title> + + <link rel="stylesheet" href="../../_static/emma.css" type="text/css" /> + <link rel="stylesheet" href="../../_static/pygments.css" type="text/css" /> + + <script type="text/javascript"> + var DOCUMENTATION_OPTIONS = { + URL_ROOT: '../../', + VERSION: '0.1', + COLLAPSE_INDEX: false, + FILE_SUFFIX: '.html', + HAS_SOURCE: true + }; + </script> + <script type="text/javascript" src="../../_static/jquery.js"></script> + <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="Groups" href="groups.html" /> + <link rel="prev" title="Emma API" href="../../index.html" /> + + + <style type="text/css"> + .resp-trigger, .resp-trigger:hover {font-size:10pt;text-decoration:none;} + div.sample-response.hide-response pre.response {display: none;} + div.sample-response .tshow, + div.sample-response.hide-response .thide {display: none;} + div.sample-response .thide, + div.sample-response.hide-response .tshow {display: inline;} + </style> + <script> + $().ready(function() { + $("a.resp-trigger").click(function(e) { + e.preventDefault(); + $(this).parents("div.sample-response").toggleClass("hide-response"); + }); + }); + </script> + + </head> + <body> +<header role="banner"> + <h1>Emma API Documentation</h1> +</header> + <div class="related"> + <h3>Navigation</h3> + <ul> + <li class="right" style="margin-right: 10px"> + <a href="../../genindex.html" title="General Index" + accesskey="I">index</a></li> + <li class="right" > + <a href="../../http-routingtable.html" title="HTTP Routing Table" + >routing table</a> |</li> + <li class="right" > + <a href="groups.html" title="Groups" + accesskey="N">next</a> |</li> + <li class="right" > + <a href="../../index.html" title="Emma API" + accesskey="P">previous</a> |</li> + <li><a href="../../index.html">audience 0.1 documentation</a> »</li> + </ul> + </div> + + <div class="document"> + <div class="documentwrapper"> + <div class="bodywrapper"> + <div class="body"> + + <div class="section" id="fields"> +<h1>Fields<a class="headerlink" href="#fields" title="Permalink to this headline">¶</a></h1> +<p>These endpoints let you create, edit, update and delete all of the custom +fields in your account. Of particular interest is the +<tt class="docutils literal"><span class="pre">/#account_id/fields/#field_id/clear</span></tt> endpoint which lets you clear out +all the data in a single field for all members in your account. This makes +it easy to re-initialize a dataset if you’re looking to correct an import +error or syncing issue.</p> +<dl class="get"> +<dt id="get--#account_id-fields"> +<tt class="descname">GET </tt><tt class="descname">/#account_id/fields</tt><a class="headerlink" href="#get--#account_id-fields" title="Permalink to this definition">¶</a></dt> +<dd><p>Gets a list of this account’s defined fields.</p> +<table class="docutils field-list" frame="void" rules="none"> +<col class="field-name" /> +<col class="field-body" /> +<tbody valign="top"> +<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> +<li><strong>deleted</strong> (<em>boolean</em>) – Accepts True or 1. Optional flag to include +deleted fields.</li> +</ul> +</td> +</tr> +<tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first last">An array of fields.</p> +</td> +</tr> +</tbody> +</table> +<p> +<div class="sample-response hide-response"> +<span style="font-weight:bold;">Sample Response</span> +<a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>GET /100/fields</b> + +[ + { + "shortcut_name": "first_name", + "display_name": "First Name", + "account_id": 100, + "field_type": "text", + "required": false, + "field_id": 200, + "widget_type": "text", + "short_display_name": null, + "column_order": 1, + "deleted_at": null, + "options": null + }, + { + "shortcut_name": "last_name", + "display_name": "Last Name", + "account_id": 100, + "field_type": "text", + "required": false, + "field_id": 201, + "widget_type": "text", + "short_display_name": null, + "column_order": 2, + "deleted_at": null, + "options": null + }, + { + "shortcut_name": "favorite_food", + "display_name": "Favorite Food", + "account_id": 100, + "field_type": "text", + "required": false, + "field_id": 202, + "widget_type": "text", + "short_display_name": null, + "column_order": 3, + "deleted_at": null, + "options": null + }, + { + "shortcut_name": "birthday", + "display_name": "Birthday", + "account_id": 100, + "field_type": "date", + "required": false, + "field_id": 203, + "widget_type": "date", + "short_display_name": null, + "column_order": 4, + "deleted_at": null, + "options": null + } +] + +</pre> +</div> +</p> +</dd></dl> + +<dl class="get"> +<dt id="get--#account_id-fields-#field_id"> +<tt class="descname">GET </tt><tt class="descname">/#account_id/fields/#field_id</tt><a class="headerlink" href="#get--#account_id-fields-#field_id" title="Permalink to this definition">¶</a></dt> +<dd><p>Gets the detailed information about a particular field.</p> +<table class="docutils field-list" frame="void" rules="none"> +<col class="field-name" /> +<col class="field-body" /> +<tbody valign="top"> +<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> +<li><strong>deleted</strong> (<em>boolean</em>) – Accepts True or 1. Optionally show a field +even if it has been deleted.</li> +</ul> +</td> +</tr> +<tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">A field.</p> +</td> +</tr> +<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the field does not exist.</p> +</td> +</tr> +</tbody> +</table> +<p> +<div class="sample-response hide-response"> +<span style="font-weight:bold;">Sample Response</span> +<a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>GET /100/fields/200</b> + +{ + "shortcut_name": "first_name", + "display_name": "First Name", + "account_id": 100, + "field_type": "text", + "required": false, + "field_id": 200, + "widget_type": "text", + "short_display_name": null, + "column_order": 1, + "deleted_at": null, + "options": null +} +</pre> +</div> +</p> +</dd></dl> + +<dl class="post"> +<dt id="post--#account_id-fields"> +<tt class="descname">POST </tt><tt class="descname">/#account_id/fields</tt><a class="headerlink" href="#post--#account_id-fields" title="Permalink to this definition">¶</a></dt> +<dd><p>Create a new field field.</p> +<p>There must not already be a field with this name.</p> +<table class="docutils field-list" frame="void" rules="none"> +<col class="field-name" /> +<col class="field-body" /> +<tbody valign="top"> +<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> +<li><strong>shortcut_name</strong> (<em>string</em>) – The internal name for this field.</li> +<li><strong>display_name</strong> (<em>string</em>) – Display name, used for forms and reports.</li> +<li><strong>field_type</strong> (<em>string</em>) – The type of value this field will contain. +Accepts one of <tt class="docutils literal"><span class="pre">text</span></tt>, <tt class="docutils literal"><span class="pre">text[]</span></tt>, <tt class="docutils literal"><span class="pre">numeric</span></tt>, <tt class="docutils literal"><span class="pre">boolean</span></tt>, +<tt class="docutils literal"><span class="pre">date</span></tt>, <tt class="docutils literal"><span class="pre">timestamp</span></tt>.</li> +<li><strong>widget_type</strong> (<em>string</em>) – The type of widget this field will display as. +Accepts one of <tt class="docutils literal"><span class="pre">text</span></tt>, <tt class="docutils literal"><span class="pre">long</span></tt>, <tt class="docutils literal"><span class="pre">checkbox</span></tt>, <tt class="docutils literal"><span class="pre">select</span> <span class="pre">multiple</span></tt>, +<tt class="docutils literal"><span class="pre">check_multiple</span></tt>, <tt class="docutils literal"><span class="pre">radio</span></tt>, <tt class="docutils literal"><span class="pre">date</span></tt>, <tt class="docutils literal"><span class="pre">select</span> <span class="pre">one</span></tt>, <tt class="docutils literal"><span class="pre">number</span></tt>.</li> +<li><strong>column_order</strong> (<em>integer</em>) – Order of this column in lists.</li> +</ul> +</td> +</tr> +<tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first last">A reference to the new field.</p> +</td> +</tr> +</tbody> +</table> +<p> +<div class="sample-response hide-response"> +<span style="font-weight:bold;">Sample Response</span> +<a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>POST /100/fields</b> +{ + "shortcut_name": "new_boolean", + "column_order": 3, + "display_name": "A New Boolean Field", + "field_type": "boolean" +} + +1024 +</pre> +</div> +</p> +</dd></dl> + +<dl class="delete"> +<dt id="delete--#account_id-fields-#field_id"> +<tt class="descname">DELETE </tt><tt class="descname">/#account_id/fields/#field_id</tt><a class="headerlink" href="#delete--#account_id-fields-#field_id" title="Permalink to this definition">¶</a></dt> +<dd><p>Deletes a field.</p> +<table class="docutils field-list" frame="void" rules="none"> +<col class="field-name" /> +<col class="field-body" /> +<tbody valign="top"> +<tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">True if the field is deleted, False otherwise.</td> +</tr> +</tbody> +</table> +<p> +<div class="sample-response hide-response"> +<span style="font-weight:bold;">Sample Response</span> +<a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>DELETE /100/fields/200</b> + +true +</pre> +</div> +</p> +</dd></dl> + +<dl class="post"> +<dt id="post--#account_id-fields-#field_id-clear"> +<tt class="descname">POST </tt><tt class="descname">/#account_id/fields/#field_id/clear</tt><a class="headerlink" href="#post--#account_id-fields-#field_id-clear" title="Permalink to this definition">¶</a></dt> +<dd><p>Clear the member data for the specified field.</p> +<table class="docutils field-list" frame="void" rules="none"> +<col class="field-name" /> +<col class="field-body" /> +<tbody valign="top"> +<tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">True if all of the member field data is deleted</td> +</tr> +</tbody> +</table> +<p> +<div class="sample-response hide-response"> +<span style="font-weight:bold;">Sample Response</span> +<a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>POST /100/fields/200/clear</b> +{} + +true +</pre> +</div> +</p> +</dd></dl> + +<dl class="put"> +<dt id="put--#account_id-fields-#field_id"> +<tt class="descname">PUT </tt><tt class="descname">/#account_id/fields/#field_id</tt><a class="headerlink" href="#put--#account_id-fields-#field_id" title="Permalink to this definition">¶</a></dt> +<dd><p>Updates an existing field.</p> +<table class="docutils field-list" frame="void" rules="none"> +<col class="field-name" /> +<col class="field-body" /> +<tbody valign="top"> +<tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">A reference to the updated field.</td> +</tr> +</tbody> +</table> +<p> +<div class="sample-response hide-response"> +<span style="font-weight:bold;">Sample Response</span> +<a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>PUT /100/fields/202</b> +{ + "display_name": "Your Birthday" +} + +202 +</pre> +</div> +</p> +</dd></dl> + +</div> + + + </div> + </div> + </div> + <div class="sphinxsidebar"> + <div class="sphinxsidebarwrapper"><h3>Related Topics</h3> +<ul> + <li><a href="../../index.html">Documentation overview</a><ul> + <li>Previous: <a href="../../index.html" title="previous chapter">Emma API</a></li> + <li>Next: <a href="groups.html" title="next chapter">Groups</a></li> + </ul></li> +</ul> +<div id="searchbox" style="display: none"> + <h3>Quick search</h3> + <form class="search" action="../../search.html" method="get"> + <input type="text" name="q" /> + <input type="submit" value="Go" /> + <input type="hidden" name="check_keywords" value="yes" /> + <input type="hidden" name="area" value="default" /> + </form> + <p class="searchtip" style="font-size: 90%"> + Enter search terms or a module, class or function name. + </p> +</div> +<script type="text/javascript">$('#searchbox').show(0);</script> + </div> + </div> + <div class="clearer"></div> + </div> + <div class="footer"> + © Copyright 2012, Emma. + Last updated on Dec 17, 2012 at 10:51. + </div> + </body> +</html> \ No newline at end of file diff --git a/api/external/groups.html b/api/external/groups.html new file mode 100644 index 0000000..953acfe --- /dev/null +++ b/api/external/groups.html @@ -0,0 +1,667 @@ + +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> + + +<html xmlns="http://www.w3.org/1999/xhtml"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> + + <title>Groups — audience 0.1 documentation</title> + + <link rel="stylesheet" href="../../_static/emma.css" type="text/css" /> + <link rel="stylesheet" href="../../_static/pygments.css" type="text/css" /> + + <script type="text/javascript"> + var DOCUMENTATION_OPTIONS = { + URL_ROOT: '../../', + VERSION: '0.1', + COLLAPSE_INDEX: false, + FILE_SUFFIX: '.html', + HAS_SOURCE: true + }; + </script> + <script type="text/javascript" src="../../_static/jquery.js"></script> + <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="Mailings" href="mailings.html" /> + <link rel="prev" title="Fields" href="fields.html" /> + + + <style type="text/css"> + .resp-trigger, .resp-trigger:hover {font-size:10pt;text-decoration:none;} + div.sample-response.hide-response pre.response {display: none;} + div.sample-response .tshow, + div.sample-response.hide-response .thide {display: none;} + div.sample-response .thide, + div.sample-response.hide-response .tshow {display: inline;} + </style> + <script> + $().ready(function() { + $("a.resp-trigger").click(function(e) { + e.preventDefault(); + $(this).parents("div.sample-response").toggleClass("hide-response"); + }); + }); + </script> + + </head> + <body> +<header role="banner"> + <h1>Emma API Documentation</h1> +</header> + <div class="related"> + <h3>Navigation</h3> + <ul> + <li class="right" style="margin-right: 10px"> + <a href="../../genindex.html" title="General Index" + accesskey="I">index</a></li> + <li class="right" > + <a href="../../http-routingtable.html" title="HTTP Routing Table" + >routing table</a> |</li> + <li class="right" > + <a href="mailings.html" title="Mailings" + accesskey="N">next</a> |</li> + <li class="right" > + <a href="fields.html" title="Fields" + accesskey="P">previous</a> |</li> + <li><a href="../../index.html">audience 0.1 documentation</a> »</li> + </ul> + </div> + + <div class="document"> + <div class="documentwrapper"> + <div class="bodywrapper"> + <div class="body"> + + <div class="section" id="groups"> +<h1>Groups<a class="headerlink" href="#groups" title="Permalink to this headline">¶</a></h1> +<p>With these endpoints, you can manage all aspects of the groups in +your account. In addition to various CRUD methods, you can also +use these endpoints to manage the members of your groups. You’ll +want to use these methods if you’re managing group membership for +more than one member at a time. For dealing with single members, +there are better methods in the <tt class="docutils literal"><span class="pre">members</span></tt> endpoints.</p> +<dl class="get"> +<dt id="get--#account_id-groups"> +<tt class="descname">GET </tt><tt class="descname">/#account_id/groups</tt><a class="headerlink" href="#get--#account_id-groups" title="Permalink to this definition">¶</a></dt> +<dd><p>Get a basic listing of all active member groups for a single account.</p> +<table class="docutils field-list" frame="void" rules="none"> +<col class="field-name" /> +<col class="field-body" /> +<tbody valign="top"> +<tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">An array of groups.</p> +</td> +</tr> +<tr class="field-even field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first last simple"> +<li><strong>group_types</strong> (<em>string</em>) – Accepts a comma-separated string with one or +more of the following group_types: ‘g’ (group), ‘t’ (test), +‘h’ (hidden), ‘all’ (all). Defaults to ‘g’.</li> +</ul> +</td> +</tr> +</tbody> +</table> +<p> +<div class="sample-response hide-response"> +<span style="font-weight:bold;">Sample Response</span> +<a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>GET /100/groups?group_types=g,t</b> + +[ + { + "active_count": 1, + "deleted_at": null, + "error_count": 0, + "optout_count": 1, + "group_type": "g", + "member_group_id": 150, + "account_id": 100, + "group_name": "Monthly Newsletter" + }, + { + "active_count": 2, + "deleted_at": null, + "error_count": 0, + "optout_count": 0, + "group_type": "g", + "member_group_id": 151, + "account_id": 100, + "group_name": "Widget Buyers" + }, + { + "active_count": 4, + "deleted_at": null, + "error_count": 0, + "optout_count": 0, + "group_type": "g", + "member_group_id": 152, + "account_id": 100, + "group_name": "Special Events" + } +] + +</pre> +</div> +</p> +<p> +<div class="sample-response hide-response"> +<span style="font-weight:bold;">Sample Response</span> +<a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>GET /100/groups?group_types=all</b> + +[ + { + "active_count": 1, + "deleted_at": null, + "error_count": 0, + "optout_count": 1, + "group_type": "g", + "member_group_id": 150, + "account_id": 100, + "group_name": "Monthly Newsletter" + }, + { + "active_count": 2, + "deleted_at": null, + "error_count": 0, + "optout_count": 0, + "group_type": "g", + "member_group_id": 151, + "account_id": 100, + "group_name": "Widget Buyers" + }, + { + "active_count": 4, + "deleted_at": null, + "error_count": 0, + "optout_count": 0, + "group_type": "g", + "member_group_id": 152, + "account_id": 100, + "group_name": "Special Events" + } +] + +</pre> +</div> +</p> +</dd></dl> + +<dl class="post"> +<dt id="post--#account_id-groups"> +<tt class="descname">POST </tt><tt class="descname">/#account_id/groups</tt><a class="headerlink" href="#post--#account_id-groups" title="Permalink to this definition">¶</a></dt> +<dd><p>Create one or more new member groups.</p> +<table class="docutils field-list" frame="void" rules="none"> +<col class="field-name" /> +<col class="field-body" /> +<tbody valign="top"> +<tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">An array of the new group ids and group names.</p> +</td> +</tr> +<tr class="field-even field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first last simple"> +<li><strong>groups</strong> (<em>array</em>) – An array of group objects. Each object must contain +a <cite>group_name</cite> parameter.</li> +</ul> +</td> +</tr> +</tbody> +</table> +<p> +<div class="sample-response hide-response"> +<span style="font-weight:bold;">Sample Response</span> +<a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>POST /100/groups</b> +{ + "groups": [ + { + "group_name": "My Grp" + } + ] +} + +[ + { + "member_group_id": 1024, + "group_name": "My Grp" + } +] +</pre> +</div> +</p> +</dd></dl> + +<dl class="get"> +<dt id="get--#account_id-groups-#member_group_id"> +<tt class="descname">GET </tt><tt class="descname">/#account_id/groups/#member_group_id</tt><a class="headerlink" href="#get--#account_id-groups-#member_group_id" title="Permalink to this definition">¶</a></dt> +<dd><p>Get the detailed information for a single member group.</p> +<table class="docutils field-list" frame="void" rules="none"> +<col class="field-name" /> +<col class="field-body" /> +<tbody valign="top"> +<tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">A group.</td> +</tr> +<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the group does not exist.</td> +</tr> +</tbody> +</table> +<p> +<div class="sample-response hide-response"> +<span style="font-weight:bold;">Sample Response</span> +<a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>GET /100/groups/150</b> + +{ + "active_count": 1, + "deleted_at": null, + "error_count": 0, + "optout_count": 1, + "group_type": "g", + "member_group_id": 150, + "account_id": 100, + "group_name": "Monthly Newsletter" +} +</pre> +</div> +</p> +</dd></dl> + +<dl class="put"> +<dt id="put--#account_id-groups-#member_group_id"> +<tt class="descname">PUT </tt><tt class="descname">/#account_id/groups/#member_group_id</tt><a class="headerlink" href="#put--#account_id-groups-#member_group_id" title="Permalink to this definition">¶</a></dt> +<dd><p>Update information for a single member group.</p> +<table class="docutils field-list" frame="void" rules="none"> +<col class="field-name" /> +<col class="field-body" /> +<tbody valign="top"> +<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> +<li><strong>group_name</strong> (<em>string</em>) – Updated group name.</li> +</ul> +</td> +</tr> +<tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">True if the update was successful</p> +</td> +</tr> +<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the group does not exist.</p> +</td> +</tr> +</tbody> +</table> +<p> +<div class="sample-response hide-response"> +<span style="font-weight:bold;">Sample Response</span> +<a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>PUT /100/groups/150</b> +{ + "group_name": "New Group Name" +} + +true +</pre> +</div> +</p> +</dd></dl> + +<dl class="delete"> +<dt id="delete--#account_id-groups-#member_group_id"> +<tt class="descname">DELETE </tt><tt class="descname">/#account_id/groups/#member_group_id</tt><a class="headerlink" href="#delete--#account_id-groups-#member_group_id" title="Permalink to this definition">¶</a></dt> +<dd><p>Delete a single member group.</p> +<table class="docutils field-list" frame="void" rules="none"> +<col class="field-name" /> +<col class="field-body" /> +<tbody valign="top"> +<tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">True if the group is deleted.</td> +</tr> +<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the group does not exist.</td> +</tr> +</tbody> +</table> +<p> +<div class="sample-response hide-response"> +<span style="font-weight:bold;">Sample Response</span> +<a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>DELETE /100/groups/150</b> + +true +</pre> +</div> +</p> +</dd></dl> + +<dl class="get"> +<dt id="get--#account_id-groups-#member_group_id-members"> +<tt class="descname">GET </tt><tt class="descname">/#account_id/groups/#member_group_id/members</tt><a class="headerlink" href="#get--#account_id-groups-#member_group_id-members" title="Permalink to this definition">¶</a></dt> +<dd><p>Get the members in a single active member group.</p> +<table class="docutils field-list" frame="void" rules="none"> +<col class="field-name" /> +<col class="field-body" /> +<tbody valign="top"> +<tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">An array of members.</p> +</td> +</tr> +<tr class="field-even field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> +<li><strong>deleted</strong> (<em>boolean</em>) – include deleted members. Optional, defaults to false.</li> +</ul> +</td> +</tr> +<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the group does not exist.</p> +</td> +</tr> +</tbody> +</table> +<p> +<div class="sample-response hide-response"> +<span style="font-weight:bold;">Sample Response</span> +<a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>GET /100/groups/150/members</b> + +[ + { + "status": "active", + "confirmed_opt_in": null, + "account_id": 100, + "fields": { + "first_name": "Emma", + "last_name": "Smith", + "favorite_food": "tacos" + }, + "member_id": 200, + "last_modified_at": null, + "member_status_id": "a", + "plaintext_preferred": false, + "email_error": null, + "member_since": "@D:2010-11-12T11:23:45", + "bounce_count": 0, + "deleted_at": null, + "email": "emma@myemma.com" + }, + { + "status": "opt-out", + "confirmed_opt_in": null, + "account_id": 100, + "fields": { + "first_name": "Gladys", + "last_name": "Jones", + "favorite_food": "toast" + }, + "member_id": 201, + "last_modified_at": null, + "member_status_id": "o", + "plaintext_preferred": false, + "email_error": null, + "member_since": "@D:2011-01-03T15:54:13", + "bounce_count": 0, + "deleted_at": null, + "email": "gladys@myemma.com" + } +] + +</pre> +</div> +</p> +</dd></dl> + +<dl class="put"> +<dt id="put--#account_id-groups-#member_group_id-members"> +<tt class="descname">PUT </tt><tt class="descname">/#account_id/groups/#member_group_id/members</tt><a class="headerlink" href="#put--#account_id-groups-#member_group_id-members" title="Permalink to this definition">¶</a></dt> +<dd><p>Add a list of members to a single active member group.</p> +<table class="docutils field-list" frame="void" rules="none"> +<col class="field-name" /> +<col class="field-body" /> +<tbody valign="top"> +<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> +<li><strong>member_ids</strong> (<em>array</em>) – An array of member ids.</li> +</ul> +</td> +</tr> +<tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">An array of references to the members added to the group. If +a member already exists in the group or is not a valid member, +that reference will not be returned.</p> +</td> +</tr> +<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the group does not exist.</p> +</td> +</tr> +</tbody> +</table> +<p> +<div class="sample-response hide-response"> +<span style="font-weight:bold;">Sample Response</span> +<a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>PUT /100/groups/150/members</b> +{ + "member_ids": [ + 202 + ] +} + +[ + 202 +] +</pre> +</div> +</p> +</dd></dl> + +<dl class="put"> +<dt id="put--#account_id-groups-#member_group_id-members-remove"> +<tt class="descname">PUT </tt><tt class="descname">/#account_id/groups/#member_group_id/members/remove</tt><a class="headerlink" href="#put--#account_id-groups-#member_group_id-members-remove" title="Permalink to this definition">¶</a></dt> +<dd><p>Remove members from a single active member group.</p> +<table class="docutils field-list" frame="void" rules="none"> +<col class="field-name" /> +<col class="field-body" /> +<tbody valign="top"> +<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> +<li><strong>member_ids</strong> (<em>array</em>) – An array of member ids.</li> +</ul> +</td> +</tr> +<tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">An array of references to the removed members.</p> +</td> +</tr> +<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the group does not exist.</p> +</td> +</tr> +</tbody> +</table> +<p> +<div class="sample-response hide-response"> +<span style="font-weight:bold;">Sample Response</span> +<a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>PUT /100/groups/150/members/remove</b> +{ + "member_ids": [ + 200, + 201 + ] +} + +[ + 200, + 201 +] +</pre> +</div> +</p> +</dd></dl> + +<dl class="delete"> +<dt id="delete--#account_id-groups-#member_group_id-members"> +<tt class="descname">DELETE </tt><tt class="descname">/#account_id/groups/#member_group_id/members</tt><a class="headerlink" href="#delete--#account_id-groups-#member_group_id-members" title="Permalink to this definition">¶</a></dt> +<dd><p>Remove all members from a single active member group.</p> +<table class="docutils field-list" frame="void" rules="none"> +<col class="field-name" /> +<col class="field-body" /> +<tbody valign="top"> +<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> +<li><strong>member_status_id</strong> (<em>string</em>) – Optional. This is ‘a’ (active), ‘o’ (optout), +or ‘e’ (error).</li> +</ul> +</td> +</tr> +<tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">Returns the number of members removed from the group.</p> +</td> +</tr> +<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the group does not exist.</p> +</td> +</tr> +</tbody> +</table> +<p> +<div class="sample-response hide-response"> +<span style="font-weight:bold;">Sample Response</span> +<a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>DELETE /100/groups/151/members</b> + +2 +</pre> +</div> + + +<div class="sample-response hide-response"> +<span style="font-weight:bold;">Sample Response</span> +<a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>DELETE /100/groups/151/members?member_status_id=a</b> + +2 +</pre> +</div> +</p> +</dd></dl> + +<dl class="delete"> +<dt id="delete--#account_id-groups-#member_group_id-members-remove"> +<tt class="descname">DELETE </tt><tt class="descname">/#account_id/groups/#member_group_id/members/remove</tt><a class="headerlink" href="#delete--#account_id-groups-#member_group_id-members-remove" title="Permalink to this definition">¶</a></dt> +<dd><p>Remove all members from all active member groups as a background job. +The member_status_id parameter must be set.</p> +<table class="docutils field-list" frame="void" rules="none"> +<col class="field-name" /> +<col class="field-body" /> +<tbody valign="top"> +<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> +<li><strong>member_status_id</strong> (<em>string</em>) – This is ‘a’ (active), ‘o’ (optout), +or ‘e’ (error).</li> +</ul> +</td> +</tr> +<tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">Returns true.</p> +</td> +</tr> +<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the group does not exist.</p> +</td> +</tr> +</tbody> +</table> +<p> +<div class="sample-response hide-response"> +<span style="font-weight:bold;">Sample Response</span> +<a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>DELETE /100/groups/151/members/remove?member_status_id=a</b> + +true +</pre> +</div> + + +<div class="sample-response hide-response"> +<span style="font-weight:bold;">Sample Response</span> +<a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>DELETE /100/groups/151/members/remove?member_status_id=a&delete_members=true</b> + +true +</pre> +</div> +</p> +</dd></dl> + +<dl class="put"> +<dt id="put--#account_id-groups-#from_group_id-#to_group_id-members-copy"> +<tt class="descname">PUT </tt><tt class="descname">/#account_id/groups/#from_group_id/#to_group_id/members/copy</tt><a class="headerlink" href="#put--#account_id-groups-#from_group_id-#to_group_id-members-copy" title="Permalink to this definition">¶</a></dt> +<dd><p>Copy all the users of one group into another group.</p> +<table class="docutils field-list" frame="void" rules="none"> +<col class="field-name" /> +<col class="field-body" /> +<tbody valign="top"> +<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> +<li><strong>member_status_id</strong> (<em>array</em>) – This is ‘a’ (active), ‘o’ (optout), +or ‘e’ (error).</li> +</ul> +</td> +</tr> +<tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">True</p> +</td> +</tr> +<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the group does not exist.</p> +</td> +</tr> +</tbody> +</table> +<p> +<div class="sample-response hide-response"> +<span style="font-weight:bold;">Sample Response</span> +<a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>PUT /100/groups/151/152/members/copy</b> +{ + "member_status_id": [ + "a" + ] +} + +true +</pre> +</div> +</p> +</dd></dl> + +</div> + + + </div> + </div> + </div> + <div class="sphinxsidebar"> + <div class="sphinxsidebarwrapper"><h3>Related Topics</h3> +<ul> + <li><a href="../../index.html">Documentation overview</a><ul> + <li>Previous: <a href="fields.html" title="previous chapter">Fields</a></li> + <li>Next: <a href="mailings.html" title="next chapter">Mailings</a></li> + </ul></li> +</ul> +<div id="searchbox" style="display: none"> + <h3>Quick search</h3> + <form class="search" action="../../search.html" method="get"> + <input type="text" name="q" /> + <input type="submit" value="Go" /> + <input type="hidden" name="check_keywords" value="yes" /> + <input type="hidden" name="area" value="default" /> + </form> + <p class="searchtip" style="font-size: 90%"> + Enter search terms or a module, class or function name. + </p> +</div> +<script type="text/javascript">$('#searchbox').show(0);</script> + </div> + </div> + <div class="clearer"></div> + </div> + <div class="footer"> + © Copyright 2012, Emma. + Last updated on Dec 17, 2012 at 10:51. + </div> + </body> +</html> \ No newline at end of file diff --git a/api/external/mailings.html b/api/external/mailings.html new file mode 100644 index 0000000..6dc9df6 --- /dev/null +++ b/api/external/mailings.html @@ -0,0 +1,774 @@ + +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> + + +<html xmlns="http://www.w3.org/1999/xhtml"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> + + <title>Mailings — audience 0.1 documentation</title> + + <link rel="stylesheet" href="../../_static/emma.css" type="text/css" /> + <link rel="stylesheet" href="../../_static/pygments.css" type="text/css" /> + + <script type="text/javascript"> + var DOCUMENTATION_OPTIONS = { + URL_ROOT: '../../', + VERSION: '0.1', + COLLAPSE_INDEX: false, + FILE_SUFFIX: '.html', + HAS_SOURCE: true + }; + </script> + <script type="text/javascript" src="../../_static/jquery.js"></script> + <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="Members" href="members.html" /> + <link rel="prev" title="Groups" href="groups.html" /> + + + <style type="text/css"> + .resp-trigger, .resp-trigger:hover {font-size:10pt;text-decoration:none;} + div.sample-response.hide-response pre.response {display: none;} + div.sample-response .tshow, + div.sample-response.hide-response .thide {display: none;} + div.sample-response .thide, + div.sample-response.hide-response .tshow {display: inline;} + </style> + <script> + $().ready(function() { + $("a.resp-trigger").click(function(e) { + e.preventDefault(); + $(this).parents("div.sample-response").toggleClass("hide-response"); + }); + }); + </script> + + </head> + <body> +<header role="banner"> + <h1>Emma API Documentation</h1> +</header> + <div class="related"> + <h3>Navigation</h3> + <ul> + <li class="right" style="margin-right: 10px"> + <a href="../../genindex.html" title="General Index" + accesskey="I">index</a></li> + <li class="right" > + <a href="../../http-routingtable.html" title="HTTP Routing Table" + >routing table</a> |</li> + <li class="right" > + <a href="members.html" title="Members" + accesskey="N">next</a> |</li> + <li class="right" > + <a href="groups.html" title="Groups" + accesskey="P">previous</a> |</li> + <li><a href="../../index.html">audience 0.1 documentation</a> »</li> + </ul> + </div> + + <div class="document"> + <div class="documentwrapper"> + <div class="bodywrapper"> + <div class="body"> + + <div class="section" id="mailings"> +<h1>Mailings<a class="headerlink" href="#mailings" title="Permalink to this headline">¶</a></h1> +<p>With these endpoints, you can get information about your mailings including +their HTML contents. You can retrieve the members to whom the mailing was sent. +You can also pause mailings and cancel mailings that are pending or paused.</p> +<dl class="get"> +<dt id="get--#account_id-mailings"> +<tt class="descname">GET </tt><tt class="descname">/#account_id/mailings</tt><a class="headerlink" href="#get--#account_id-mailings" title="Permalink to this definition">¶</a></dt> +<dd><p>Get information about current mailings.</p> +<table class="docutils field-list" frame="void" rules="none"> +<col class="field-name" /> +<col class="field-body" /> +<tbody valign="top"> +<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> +<li><strong>include_archived</strong> (<em>boolean</em>) – Optional flag to include archived mailings in the list.</li> +<li><strong>mailing_types</strong> (<em>string</em>) – Accepts a comma-separated string with one or more +of the following mailing types: ‘m’ (standard), ‘t’ (test), +‘r’ (trigger). Defaults to ‘m,t’, standard and test mailings, +when none are specified.</li> +<li><strong>mailing_statuses</strong> (<em>string</em>) – Accepts a comma-separated string with one or +more of the following mailing statuses: ‘p’ (pending), ‘a’ (paused), +‘s’ (sending), ‘x’ (canceled), ‘c’ (complete), ‘f’ (failed). +Defaults to ‘p,a,s,x,c,f’, all statuses, when none are specified.</li> +<li><strong>is_scheduled</strong> (<em>boolean</em>) – Mailings that have a scheduled timestamp.</li> +<li><strong>with_html_body</strong> (<em>boolean</em>) – Include the html_body content.</li> +<li><strong>with_plaintext</strong> (<em>boolean</em>) – Include the plaintext content.</li> +</ul> +</td> +</tr> +<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><p class="first"><tt class="docutils literal"><span class="pre">Http400</span></tt> if invalid mailing types or statuses are specified.</p> +</td> +</tr> +<tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body"><p class="first last">An array of mailings.</p> +</td> +</tr> +</tbody> +</table> +<p> +<div class="sample-response hide-response"> +<span style="font-weight:bold;">Sample Response</span> +<a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>GET /100/mailings</b> + +[ + { + "mailing_status": "p", + "plaintext_only": false, + "sender": "Kevin McConnell", + "name": "Cancellable mailing", + "mailing_id": 201, + "started_or_finished": null, + "recipient_count": 0, + "year": null, + "subject": "Cancellable mailing", + "mailing_type": "m", + "month": null, + "disabled": false, + "send_finished": null, + "send_at": null, + "parent_mailing_id": null, + "reply_to": null, + "send_started": null, + "signup_form_id": null, + "archived_ts": null, + "account_id": 100 + }, + { + "mailing_status": "c", + "plaintext_only": false, + "sender": "Kevin McConnell", + "name": "Sample Mailing", + "mailing_id": 200, + "started_or_finished": null, + "recipient_count": 0, + "year": null, + "subject": "Sample Mailing for [% member:first_name %] [% member:last_name %]", + "mailing_type": "m", + "month": null, + "disabled": false, + "send_finished": null, + "send_at": null, + "parent_mailing_id": null, + "reply_to": null, + "send_started": null, + "signup_form_id": null, + "archived_ts": null, + "account_id": 100 + } +] + +</pre> +</div> +</p> +<p> +<div class="sample-response hide-response"> +<span style="font-weight:bold;">Sample Response</span> +<a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>GET /100/mailings?mailing_statuses=p,c&mailing_types=m,t</b> + +[ + { + "mailing_status": "p", + "plaintext_only": false, + "sender": "Kevin McConnell", + "name": "Cancellable mailing", + "mailing_id": 201, + "started_or_finished": null, + "recipient_count": 0, + "year": null, + "subject": "Cancellable mailing", + "mailing_type": "m", + "month": null, + "disabled": false, + "send_finished": null, + "send_at": null, + "parent_mailing_id": null, + "reply_to": null, + "send_started": null, + "signup_form_id": null, + "archived_ts": null, + "account_id": 100 + }, + { + "mailing_status": "c", + "plaintext_only": false, + "sender": "Kevin McConnell", + "name": "Sample Mailing", + "mailing_id": 200, + "started_or_finished": null, + "recipient_count": 0, + "year": null, + "subject": "Sample Mailing for [% member:first_name %] [% member:last_name %]", + "mailing_type": "m", + "month": null, + "disabled": false, + "send_finished": null, + "send_at": null, + "parent_mailing_id": null, + "reply_to": null, + "send_started": null, + "signup_form_id": null, + "archived_ts": null, + "account_id": 100 + } +] + +</pre> +</div> +</p> +</dd></dl> + +<dl class="get"> +<dt id="get--#account_id-mailings-#mailing_id"> +<tt class="descname">GET </tt><tt class="descname">/#account_id/mailings/#mailing_id</tt><a class="headerlink" href="#get--#account_id-mailings-#mailing_id" title="Permalink to this definition">¶</a></dt> +<dd><p>Get detailed information for one mailing.</p> +<table class="docutils field-list" frame="void" rules="none"> +<col class="field-name" /> +<col class="field-body" /> +<tbody valign="top"> +<tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">A mailing.</td> +</tr> +<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no mailing is found.</td> +</tr> +</tbody> +</table> +<p> +<div class="sample-response hide-response"> +<span style="font-weight:bold;">Sample Response</span> +<a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>GET /100/mailings/200</b> + +{ + "recipient_groups": [ + { + "member_group_id": 151, + "name": "Widget Buyers" + } + ], + "heads_up_emails": [], + "send_started": null, + "signup_form_id": null, + "links": [ + { + "mailing_id": 200, + "plaintext": false, + "link_id": 200, + "link_name": "Emma", + "link_target": "http://www.myemma.com", + "link_order": 1 + } + ], + "mailing_id": 200, + "plaintext": "Hello [% member:first_name %]!", + "recipient_count": 0, + "public_webview_url": "http://localhost/webview/uf/6db0cc7e6fdb2da589b65f29d90c96b6", + "mailing_type": "m", + "parent_mailing_id": null, + "recipient_searches": [], + "account_id": 100, + "recipient_members": [ + { + "email": "emma@myemma.com", + "member_id": 200 + } + ], + "mailing_status": "c", + "sender": "Kevin McConnell", + "name": "Sample Mailing", + "send_finished": null, + "send_at": null, + "subject": "Sample Mailing for [% member:first_name %] [% member:last_name %]", + "archived_ts": null, + "html_body": "<p>Hello [% member:first_name %]!</p>" +} +</pre> +</div> +</p> +</dd></dl> + +<dl class="get"> +<dt id="get--#account_id-mailings-#mailing_id-members"> +<tt class="descname">GET </tt><tt class="descname">/#account_id/mailings/#mailing_id/members</tt><a class="headerlink" href="#get--#account_id-mailings-#mailing_id-members" title="Permalink to this definition">¶</a></dt> +<dd><p>Get the list of members to whom the given mailing was sent.</p> +<table class="docutils field-list" frame="void" rules="none"> +<col class="field-name" /> +<col class="field-body" /> +<tbody valign="top"> +<tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">An array of members including status and member fields.</td> +</tr> +<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no mailing is found.</td> +</tr> +</tbody> +</table> +<p> +<div class="sample-response hide-response"> +<span style="font-weight:bold;">Sample Response</span> +<a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>GET /100/mailings/200/members</b> + +[ + { + "status": "active", + "confirmed_opt_in": null, + "account_id": 100, + "fields": { + "first_name": "Emma", + "last_name": "Smith", + "favorite_food": "tacos" + }, + "member_id": 200, + "last_modified_at": null, + "member_status_id": "a", + "plaintext_preferred": false, + "email_error": null, + "member_since": "@D:2010-11-12T11:23:45", + "bounce_count": 0, + "deleted_at": null, + "email": "emma@myemma.com" + } +] + +</pre> +</div> +</p> +</dd></dl> + +<dl class="get"> +<dt id="get--#account_id-mailings-#mailing_id-messages-#member_id"> +<tt class="descname">GET </tt><tt class="descname">/#account_id/mailings/#mailing_id/messages/#member_id</tt><a class="headerlink" href="#get--#account_id-mailings-#mailing_id-messages-#member_id" title="Permalink to this definition">¶</a></dt> +<dd><p>Gets the personalized message content as sent to a specific member +as part of the specified mailing.</p> +<table class="docutils field-list" frame="void" rules="none"> +<col class="field-name" /> +<col class="field-body" /> +<tbody valign="top"> +<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> +<li><strong>type</strong> (<em>string</em>) – Accepts: ‘all’, ‘html’, ‘plaintext’, ‘subject’. Defaults +to ‘all’, if not provided.</li> +</ul> +</td> +</tr> +<tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">Message content from a mailing, personalized for a member. +The response will contain all parts of the mailing content by +default, or just the type of content specified by <cite>type</cite>.</p> +</td> +</tr> +<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no message is found.</p> +</td> +</tr> +</tbody> +</table> +<p> +<div class="sample-response hide-response"> +<span style="font-weight:bold;">Sample Response</span> +<a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>GET /100/mailings/200/messages/200</b> + +{ + "plaintext": "Hello !", + "subject": "Sample Mailing for ", + "html_body": "<p>Hello !</p>" +} +</pre> +</div> +</p> +<p> +<div class="sample-response hide-response"> +<span style="font-weight:bold;">Sample Response</span> +<a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>GET /100/mailings/200/messages/200?type=html</b> + +{ + "html_body": "<p>Hello !</p>" +} +</pre> +</div> +</p> +</dd></dl> + +<dl class="get"> +<dt id="get--#account_id-mailings-#mailing_id-groups"> +<tt class="descname">GET </tt><tt class="descname">/#account_id/mailings/#mailing_id/groups</tt><a class="headerlink" href="#get--#account_id-mailings-#mailing_id-groups" title="Permalink to this definition">¶</a></dt> +<dd><p>Get the groups to which a particular mailing was sent.</p> +<table class="docutils field-list" frame="void" rules="none"> +<col class="field-name" /> +<col class="field-body" /> +<tbody valign="top"> +<tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">An array of groups.</td> +</tr> +<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no mailing is found.</td> +</tr> +</tbody> +</table> +<p> +<div class="sample-response hide-response"> +<span style="font-weight:bold;">Sample Response</span> +<a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>GET /100/mailings/200/groups</b> + +[ + { + "active_count": 2, + "deleted_at": null, + "error_count": 0, + "optout_count": 0, + "group_type": "g", + "member_group_id": 151, + "account_id": 100, + "group_name": "Widget Buyers" + } +] + +</pre> +</div> +</p> +</dd></dl> + +<dl class="get"> +<dt id="get--#account_id-mailings-#mailing_id-searches"> +<tt class="descname">GET </tt><tt class="descname">/#account_id/mailings/#mailing_id/searches</tt><a class="headerlink" href="#get--#account_id-mailings-#mailing_id-searches" title="Permalink to this definition">¶</a></dt> +<dd><p>Get all searches associated with a sent mailing.</p> +<table class="docutils field-list" frame="void" rules="none"> +<col class="field-name" /> +<col class="field-body" /> +<tbody valign="top"> +<tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">An array of searches.</td> +</tr> +<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no mailing is found.</td> +</tr> +</tbody> +</table> +<p> +<div class="sample-response hide-response"> +<span style="font-weight:bold;">Sample Response</span> +<a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>GET /100/mailings/200/searches</b> + +[ + +] + +</pre> +</div> +</p> +</dd></dl> + +<dl class="put"> +<dt id="put--#account_id-mailings-#mailing_id"> +<tt class="descname">PUT </tt><tt class="descname">/#account_id/mailings/#mailing_id</tt><a class="headerlink" href="#put--#account_id-mailings-#mailing_id" title="Permalink to this definition">¶</a></dt> +<dd><p>Update status of a current mailing</p> +<p>The status can be one of <tt class="docutils literal"><span class="pre">canceled</span></tt>, <tt class="docutils literal"><span class="pre">paused</span></tt> or <tt class="docutils literal"><span class="pre">ready</span></tt>. This +method can be used to control the progress of a mailing by pausing, +canceling or resuming it. Once a mailing is canceled it can’t be +resumed, and will not show in the normal <tt class="docutils literal"><span class="pre">mailing_list</span></tt> output.</p> +<p>Returns the mailing’s new status</p> +</dd></dl> + +<dl class="delete"> +<dt id="delete--#account_id-mailings-#mailing_id"> +<tt class="descname">DELETE </tt><tt class="descname">/#account_id/mailings/#mailing_id</tt><a class="headerlink" href="#delete--#account_id-mailings-#mailing_id" title="Permalink to this definition">¶</a></dt> +<dd><p>Sets archived timestamp for a mailing so it is no longer included in +mailing_list.</p> +<table class="docutils field-list" frame="void" rules="none"> +<col class="field-name" /> +<col class="field-body" /> +<tbody valign="top"> +<tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">True if the mailing is successfully archived.</td> +</tr> +</tbody> +</table> +<p> +<div class="sample-response hide-response"> +<span style="font-weight:bold;">Sample Response</span> +<a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>DELETE /100/mailings/200</b> + +true +</pre> +</div> +</p> +</dd></dl> + +<dl class="delete"> +<dt id="delete--#account_id-mailings-cancel-#mailing_id"> +<tt class="descname">DELETE </tt><tt class="descname">/#account_id/mailings/cancel/#mailing_id</tt><a class="headerlink" href="#delete--#account_id-mailings-cancel-#mailing_id" title="Permalink to this definition">¶</a></dt> +<dd><p>Cancels a mailing that has a current status of pending or +paused. All other statuses will result in a 404.</p> +<table class="docutils field-list" frame="void" rules="none"> +<col class="field-name" /> +<col class="field-body" /> +<tbody valign="top"> +<tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">True if mailing marked as cancelled.</td> +</tr> +</tbody> +</table> +<p> +<div class="sample-response hide-response"> +<span style="font-weight:bold;">Sample Response</span> +<a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>DELETE /100/mailings/cancel/201</b> + +true +</pre> +</div> +</p> +</dd></dl> + +<dl class="post"> +<dt id="post--#account_id-forwards-#mailing_id-#member_id"> +<tt class="descname">POST </tt><tt class="descname">/#account_id/forwards/#mailing_id/#member_id</tt><a class="headerlink" href="#post--#account_id-forwards-#mailing_id-#member_id" title="Permalink to this definition">¶</a></dt> +<dd><p>Forward a previous message to additional recipients. If these +recipients are not already in the audience, they will be added with a +status of FORWARDED.</p> +<table class="docutils field-list" frame="void" rules="none"> +<col class="field-name" /> +<col class="field-body" /> +<tbody valign="top"> +<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> +<li><strong>recipient_emails</strong> (<em>array</em>) – An array of email addresses to which to +forward the specified message.</li> +<li><strong>note</strong> (<em>string</em>) – A note to include in the forward. This note will be HTML +encoded and is limited to 500 characters.</li> +</ul> +</td> +</tr> +<tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">A reference to the new mailing.</p> +</td> +</tr> +<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no message is found.</p> +</td> +</tr> +</tbody> +</table> +<p> +<div class="sample-response hide-response"> +<span style="font-weight:bold;">Sample Response</span> +<a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>POST /100/forwards/200/200</b> +{ + "recipient_emails": [ + "alex@myemma.com", + "chris@myemma.com" + ] +} + +{ + "mailing_id": 1024 +} +</pre> +</div> +</p> +</dd></dl> + +<dl class="post"> +<dt id="post--#account_id-mailings-#mailing_id"> +<tt class="descname">POST </tt><tt class="descname">/#account_id/mailings/#mailing_id</tt><a class="headerlink" href="#post--#account_id-mailings-#mailing_id" title="Permalink to this definition">¶</a></dt> +<dd><p>Send a prior mailing to additional recipients. A new mailing will be +created that inherits its content from the original.</p> +<table class="docutils field-list" frame="void" rules="none"> +<col class="field-name" /> +<col class="field-body" /> +<tbody valign="top"> +<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> +<li><strong>sender</strong> (<em>string</em>) – The message sender. If this is not supplied, the +sender of the original mailing will be used.</li> +<li><strong>heads_up_emails</strong> (<em>array</em>) – A list of email addresses that heads up +notification emails will be sent to.</li> +<li><strong>recipient_emails</strong> (<em>array</em>) – An array of email addresses to which the new +mailing should be sent.</li> +<li><strong>recipient_groups</strong> (<em>array</em>) – An array of member groups to which the new +mailing should be sent.</li> +<li><strong>recipient_searches</strong> (<em>array</em>) – A list of searches that this mailing should +be sent to.</li> +</ul> +</td> +</tr> +<tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">A reference to the new mailing.</p> +</td> +</tr> +<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no mailing is found.</p> +</td> +</tr> +</tbody> +</table> +<p> +<div class="sample-response hide-response"> +<span style="font-weight:bold;">Sample Response</span> +<a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>POST /100/mailings/200</b> +{ + "recipient_emails": [ + "michelle@myemma.com" + ] +} + +{ + "mailing_id": 1024 +} +</pre> +</div> +</p> +</dd></dl> + +<dl class="get"> +<dt id="get--#account_id-mailings-#mailing_id-headsup"> +<tt class="descname">GET </tt><tt class="descname">/#account_id/mailings/#mailing_id/headsup</tt><a class="headerlink" href="#get--#account_id-mailings-#mailing_id-headsup" title="Permalink to this definition">¶</a></dt> +<dd><p>Get heads up email address(es) related to a mailing.</p> +<table class="docutils field-list" frame="void" rules="none"> +<col class="field-name" /> +<col class="field-body" /> +<tbody valign="top"> +<tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">An array of heads up email addresses.</td> +</tr> +<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no mailing is found.</td> +</tr> +</tbody> +</table> +<p> +<div class="sample-response hide-response"> +<span style="font-weight:bold;">Sample Response</span> +<a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>GET /100/mailings/200/headsup</b> + +[ + +] + +</pre> +</div> +</p> +</dd></dl> + +<dl class="post"> +<dt id="post--#account_id-mailings-validate"> +<tt class="descname">POST </tt><tt class="descname">/#account_id/mailings/validate</tt><a class="headerlink" href="#post--#account_id-mailings-validate" title="Permalink to this definition">¶</a></dt> +<dd><p>Validate that a mailing has valid personalization-tag syntax. Checks +tag syntax in three params:</p> +<table class="docutils field-list" frame="void" rules="none"> +<col class="field-name" /> +<col class="field-body" /> +<tbody valign="top"> +<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> +<li><strong>html_body</strong> (<em>string</em>) – The html contents of the mailing</li> +<li><strong>plaintext</strong> (<em>string</em>) – The plaintext contents of the mailing. Unlike in +<tt class="docutils literal"><span class="pre">create_mailing</span></tt>, this param is not required.</li> +<li><strong>subject</strong> (<em>string</em>) – The subject of the mailing</li> +</ul> +</td> +</tr> +<tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">true</p> +</td> +</tr> +<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http400</span></tt> if any tags are invalid. The response body will +have information about the invalid tags.</p> +</td> +</tr> +</tbody> +</table> +<p> +<div class="sample-response hide-response"> +<span style="font-weight:bold;">Sample Response</span> +<a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>POST /100/mailings/validate</b> +{ + "subject": "Another Fine Test" +} + +true +</pre> +</div> +</p> +</dd></dl> + +<dl class="post"> +<dt id="post--#account_id-mailings-#mailing_id-winner-#winner_id"> +<tt class="descname">POST </tt><tt class="descname">/#account_id/mailings/#mailing_id/winner/#winner_id</tt><a class="headerlink" href="#post--#account_id-mailings-#mailing_id-winner-#winner_id" title="Permalink to this definition">¶</a></dt> +<dd><p>Declare the winner of a split test manually. In the event that the test +duration has not elapsed, the current stats for each test will be frozen +and the content defined in the user declared winner will sent to the +remaining members for the mailing. Please note, any messages that are +pending for each of the test variations will receive the content +assigned to them when the test was initially constructed.</p> +<table class="docutils field-list" frame="void" rules="none"> +<col class="field-name" /> +<col class="field-body" /> +<tbody valign="top"> +<tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">True on success.</td> +</tr> +<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http403</span></tt> if the winner cannot be manually declared.</td> +</tr> +</tbody> +</table> +<p> +<div class="sample-response hide-response"> +<span style="font-weight:bold;">Sample Response</span> +<a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>POST /100/mailings/202/winner/203</b> +{} + +true +</pre> +</div> +</p> +</dd></dl> + +</div> + + + </div> + </div> + </div> + <div class="sphinxsidebar"> + <div class="sphinxsidebarwrapper"><h3>Related Topics</h3> +<ul> + <li><a href="../../index.html">Documentation overview</a><ul> + <li>Previous: <a href="groups.html" title="previous chapter">Groups</a></li> + <li>Next: <a href="members.html" title="next chapter">Members</a></li> + </ul></li> +</ul> +<div id="searchbox" style="display: none"> + <h3>Quick search</h3> + <form class="search" action="../../search.html" method="get"> + <input type="text" name="q" /> + <input type="submit" value="Go" /> + <input type="hidden" name="check_keywords" value="yes" /> + <input type="hidden" name="area" value="default" /> + </form> + <p class="searchtip" style="font-size: 90%"> + Enter search terms or a module, class or function name. + </p> +</div> +<script type="text/javascript">$('#searchbox').show(0);</script> + </div> + </div> + <div class="clearer"></div> + </div> + <div class="footer"> + © Copyright 2012, Emma. + Last updated on Dec 17, 2012 at 10:51. + </div> + </body> +</html> \ No newline at end of file diff --git a/api/external/members.html b/api/external/members.html new file mode 100644 index 0000000..bd2ded4 --- /dev/null +++ b/api/external/members.html @@ -0,0 +1,1149 @@ + +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> + + +<html xmlns="http://www.w3.org/1999/xhtml"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> + + <title>Members — audience 0.1 documentation</title> + + <link rel="stylesheet" href="../../_static/emma.css" type="text/css" /> + <link rel="stylesheet" href="../../_static/pygments.css" type="text/css" /> + + <script type="text/javascript"> + var DOCUMENTATION_OPTIONS = { + URL_ROOT: '../../', + VERSION: '0.1', + COLLAPSE_INDEX: false, + FILE_SUFFIX: '.html', + HAS_SOURCE: true + }; + </script> + <script type="text/javascript" src="../../_static/jquery.js"></script> + <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="Response" href="response.html" /> + <link rel="prev" title="Mailings" href="mailings.html" /> + + + <style type="text/css"> + .resp-trigger, .resp-trigger:hover {font-size:10pt;text-decoration:none;} + div.sample-response.hide-response pre.response {display: none;} + div.sample-response .tshow, + div.sample-response.hide-response .thide {display: none;} + div.sample-response .thide, + div.sample-response.hide-response .tshow {display: inline;} + </style> + <script> + $().ready(function() { + $("a.resp-trigger").click(function(e) { + e.preventDefault(); + $(this).parents("div.sample-response").toggleClass("hide-response"); + }); + }); + </script> + + </head> + <body> +<header role="banner"> + <h1>Emma API Documentation</h1> +</header> + <div class="related"> + <h3>Navigation</h3> + <ul> + <li class="right" style="margin-right: 10px"> + <a href="../../genindex.html" title="General Index" + accesskey="I">index</a></li> + <li class="right" > + <a href="../../http-routingtable.html" title="HTTP Routing Table" + >routing table</a> |</li> + <li class="right" > + <a href="response.html" title="Response" + accesskey="N">next</a> |</li> + <li class="right" > + <a href="mailings.html" title="Mailings" + accesskey="P">previous</a> |</li> + <li><a href="../../index.html">audience 0.1 documentation</a> »</li> + </ul> + </div> + + <div class="document"> + <div class="documentwrapper"> + <div class="bodywrapper"> + <div class="body"> + + <div class="section" id="members"> +<h1>Members<a class="headerlink" href="#members" title="Permalink to this headline">¶</a></h1> +<p>In addition to the various CRUD endpoints here related to members, +you can also change the status of members, including opting them out.</p> +<p>You’ll notice that there are calls related to individual members, but +we also provide quite a few calls to deal with bulk updates of members. +Please try to use these whenever possible as opposed to looping through +a list of members and calling the individual member calls.</p> +<p>Where this is especially important is when adding new members. To do a bulk +import, you’ll POST to the <tt class="docutils literal"><span class="pre">/#account_id/members</span></tt> endpoint. In return, +you’ll receive an import ID. You can use this ID to check the status and +results of your import. Imports are generally pretty fast, but the time +to completion can vary with greater system usage.</p> +<dl class="get"> +<dt id="get--#account_id-members"> +<tt class="descname">GET </tt><tt class="descname">/#account_id/members</tt><a class="headerlink" href="#get--#account_id-members" title="Permalink to this definition">¶</a></dt> +<dd><p>Get a basic listing of all members in an account.</p> +<table class="docutils field-list" frame="void" rules="none"> +<col class="field-name" /> +<col class="field-body" /> +<tbody valign="top"> +<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> +<li><strong>deleted</strong> (<em>boolean</em>) – Accepts True or 1. Optional flag to include deleted +members.</li> +</ul> +</td> +</tr> +<tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first last">A list of members in the given account.</p> +</td> +</tr> +</tbody> +</table> +<p> +<div class="sample-response hide-response"> +<span style="font-weight:bold;">Sample Response</span> +<a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>GET /100/members?start=0&end=2</b> + +[ + { + "status": "active", + "confirmed_opt_in": null, + "account_id": 100, + "fields": { + "first_name": "Emma", + "last_name": "Smith", + "favorite_food": "tacos" + }, + "member_id": 200, + "last_modified_at": null, + "member_status_id": "a", + "plaintext_preferred": false, + "email_error": null, + "member_since": "@D:2010-11-12T11:23:45", + "bounce_count": 0, + "deleted_at": null, + "email": "emma@myemma.com" + }, + { + "status": "opt-out", + "confirmed_opt_in": null, + "account_id": 100, + "fields": { + "first_name": "Gladys", + "last_name": "Jones", + "favorite_food": "toast" + }, + "member_id": 201, + "last_modified_at": null, + "member_status_id": "o", + "plaintext_preferred": false, + "email_error": null, + "member_since": "@D:2011-01-03T15:54:13", + "bounce_count": 0, + "deleted_at": null, + "email": "gladys@myemma.com" + } +] + +</pre> +</div> + + +<div class="sample-response hide-response"> +<span style="font-weight:bold;">Sample Response</span> +<a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>GET /100/members?start=2&end=4&deleted=true</b> + +[ + { + "status": "active", + "confirmed_opt_in": null, + "account_id": 100, + "fields": { + "first_name": "Tony", + "last_name": "Brown", + "favorite_food": "pizza" + }, + "member_id": 202, + "last_modified_at": null, + "member_status_id": "a", + "plaintext_preferred": false, + "email_error": null, + "member_since": "@D:2010-11-12T09:12:33", + "bounce_count": 0, + "deleted_at": null, + "email": "tony@myemma.com" + }, + { + "status": "active", + "confirmed_opt_in": null, + "account_id": 100, + "fields": { + + }, + "member_id": 203, + "last_modified_at": null, + "member_status_id": "a", + "plaintext_preferred": false, + "email_error": null, + "member_since": "@D:2011-01-01T00:00:00", + "bounce_count": 0, + "deleted_at": "@D:2011-01-02T10:27:43", + "email": "greg@myemma.com" + } +] + +</pre> +</div> +</p> +</dd></dl> + +<dl class="get"> +<dt id="get--#account_id-members-#member_id"> +<tt class="descname">GET </tt><tt class="descname">/#account_id/members/#member_id</tt><a class="headerlink" href="#get--#account_id-members-#member_id" title="Permalink to this definition">¶</a></dt> +<dd><p>Get detailed information on a particular member, including all custom +fields.</p> +<table class="docutils field-list" frame="void" rules="none"> +<col class="field-name" /> +<col class="field-body" /> +<tbody valign="top"> +<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> +<li><strong>deleted</strong> (<em>boolean</em>) – Accepts True or 1. Optional flag to include deleted +members.</li> +</ul> +</td> +</tr> +<tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">A single member if one exists.</p> +</td> +</tr> +<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no member is found.</p> +</td> +</tr> +</tbody> +</table> +<p> +<div class="sample-response hide-response"> +<span style="font-weight:bold;">Sample Response</span> +<a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>GET /100/members/201</b> + +{ + "status": "opt-out", + "confirmed_opt_in": null, + "account_id": 100, + "fields": { + "first_name": "Gladys", + "last_name": "Jones", + "favorite_food": "toast" + }, + "member_id": 201, + "last_modified_at": null, + "member_status_id": "o", + "plaintext_preferred": false, + "email_error": null, + "member_since": "@D:2011-01-03T15:54:13", + "bounce_count": 0, + "deleted_at": null, + "email": "gladys@myemma.com" +} +</pre> +</div> +</p> +</dd></dl> + +<dl class="get"> +<dt id="get--#account_id-members-email--email"> +<tt class="descname">GET </tt><tt class="descname">/#account_id/members/email/:email</tt><a class="headerlink" href="#get--#account_id-members-email--email" title="Permalink to this definition">¶</a></dt> +<dd><p>Get detailed information on a particular member, including all custom +fields, by email address instead of ID.</p> +<table class="docutils field-list" frame="void" rules="none"> +<col class="field-name" /> +<col class="field-body" /> +<tbody valign="top"> +<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> +<li><strong>deleted</strong> (<em>boolean</em>) – Accepts True or 1. Optional flag to include deleted +members.</li> +</ul> +</td> +</tr> +<tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">A single member if one exists.</p> +</td> +</tr> +<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no member is found.</p> +</td> +</tr> +</tbody> +</table> +<p> +<div class="sample-response hide-response"> +<span style="font-weight:bold;">Sample Response</span> +<a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>GET /100/members/email/tony@myemma.com</b> + +{ + "status": "active", + "confirmed_opt_in": null, + "account_id": 100, + "fields": { + "first_name": "Tony", + "last_name": "Brown", + "favorite_food": "pizza" + }, + "member_id": 202, + "last_modified_at": null, + "member_status_id": "a", + "plaintext_preferred": false, + "email_error": null, + "member_since": "@D:2010-11-12T09:12:33", + "bounce_count": 0, + "deleted_at": null, + "email": "tony@myemma.com" +} +</pre> +</div> +</p> +</dd></dl> + +<dl class="get"> +<dt id="get--#account_id-members-#member_id-optout"> +<tt class="descname">GET </tt><tt class="descname">/#account_id/members/#member_id/optout</tt><a class="headerlink" href="#get--#account_id-members-#member_id-optout" title="Permalink to this definition">¶</a></dt> +<dd><p>If a member has been opted out, returns the details +of their optout, specifically date and mailing_id.</p> +<table class="docutils field-list" frame="void" rules="none"> +<col class="field-name" /> +<col class="field-body" /> +<tbody valign="top"> +<tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">Member opt out date and mailing if member is opted out.</td> +</tr> +<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no member is found.</td> +</tr> +</tbody> +</table> +<p> +<div class="sample-response hide-response"> +<span style="font-weight:bold;">Sample Response</span> +<a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>GET /100/members/201/optout</b> + +[ + +] + +</pre> +</div> +</p> +</dd></dl> + +<dl class="post"> +<dt id="post--#account_id-members"> +<tt class="descname">POST </tt><tt class="descname">/#account_id/members</tt><a class="headerlink" href="#post--#account_id-members" title="Permalink to this definition">¶</a></dt> +<dd><p>Add new members or update existing members in bulk. If you are doing +actions for a single member please see the <cite>/members/add</cite> call below.</p> +<table class="docutils field-list" frame="void" rules="none"> +<col class="field-name" /> +<col class="field-body" /> +<tbody valign="top"> +<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first last simple"> +<li><strong>members</strong> (<em>array</em>) – An array of members to update</li> +</ul> +</td> +</tr> +</tbody> +</table> +<p>A member is a dictionary of member emails and field values to import. +The only required field is “email”. All other fields are treated as the +name of a member field.</p> +<table class="docutils field-list" frame="void" rules="none"> +<col class="field-name" /> +<col class="field-body" /> +<tbody valign="top"> +<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first last simple"> +<li><strong>source_filename</strong> (<em>string</em>) – An arbitrary string to associate with this import.</li> +</ul> +</td> +</tr> +</tbody> +</table> +<p>This should generally be set to the filename that the user uploaded.</p> +<table class="docutils field-list" frame="void" rules="none"> +<col class="field-name" /> +<col class="field-body" /> +<tbody valign="top"> +<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> +<li><strong>add_only</strong> (<em>boolean</em>) – Optional. Only add new members, ignore existing members.</li> +<li><strong>group_ids</strong> (<em>array of integers</em>) – Optional. Add imported members to this list of groups.</li> +</ul> +</td> +</tr> +<tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first last">An import id</p> +</td> +</tr> +</tbody> +</table> +<p> +<div class="sample-response hide-response"> +<span style="font-weight:bold;">Sample Response</span> +<a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>POST /100/members</b> +{ + "members": [ + { + "email": "michelle@myemma.com" + }, + { + "email": "nathan@myemma.com" + } + ] +} + +{ + "import_id": 1024 +} +</pre> +</div> +</p> +</dd></dl> + +<dl class="post"> +<dt id="post--#account_id-members-add"> +<tt class="descname">POST </tt><tt class="descname">/#account_id/members/add</tt><a class="headerlink" href="#post--#account_id-members-add" title="Permalink to this definition">¶</a></dt> +<dd><p>Adds or updates a single audience member. If you are performing actions +on bulk members please use the <cite>/members</cite> call above.</p> +<table class="docutils field-list" frame="void" rules="none"> +<col class="field-name" /> +<col class="field-body" /> +<tbody valign="top"> +<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> +<li><strong>email</strong> (<em>string</em>) – Email address of member to add or update</li> +<li><strong>fields</strong> (<em>dictionary</em>) – Names and values of user-defined fields to update</li> +<li><strong>group_ids</strong> (<em>integer</em>) – Optional. Add imported members to this list of groups.</li> +<li><strong>signup_form_id</strong> – Optional. Indicate that this member used a particular signup form. +This is important if you have custom confirmation messages for a particular signup form and +so that signup-based triggers will be fired.</li> +</ul> +</td> +</tr> +<tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first last">The member_id of the new or updated member, whether the +member was added or an existing member was updated, and the status of the member. The +status will be reported as ‘a’ (active), ‘e’ (error), or ‘o’ (optout).</p> +</td> +</tr> +</tbody> +</table> +<p> +<div class="sample-response hide-response"> +<span style="font-weight:bold;">Sample Response</span> +<a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>POST /100/members/add</b> +{ + "fields": { + "first_name": "Benjamin" + }, + "email": "benjamin@myemma.com" +} + +{ + "status": "a", + "added": true, + "member_id": 1024 +} +</pre> +</div> +</p> +</dd></dl> + +<dl class="put"> +<dt id="put--#account_id-members-delete"> +<tt class="descname">PUT </tt><tt class="descname">/#account_id/members/delete</tt><a class="headerlink" href="#put--#account_id-members-delete" title="Permalink to this definition">¶</a></dt> +<dd><p>Delete an array of members.</p> +<p>The members will be marked as deleted and cannot be retrieved.</p> +<table class="docutils field-list" frame="void" rules="none"> +<col class="field-name" /> +<col class="field-body" /> +<tbody valign="top"> +<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> +<li><strong>member_ids</strong> (<em>array</em>) – An array of member ids to delete.</li> +</ul> +</td> +</tr> +<tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first last">True if all members are successfully deleted, otherwise False.</p> +</td> +</tr> +</tbody> +</table> +<p> +<div class="sample-response hide-response"> +<span style="font-weight:bold;">Sample Response</span> +<a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>PUT /100/members/delete</b> +{ + "member_ids": [ + 100, + 101 + ] +} + +true +</pre> +</div> +</p> +</dd></dl> + +<dl class="put"> +<dt id="put--#account_id-members-status"> +<tt class="descname">PUT </tt><tt class="descname">/#account_id/members/status</tt><a class="headerlink" href="#put--#account_id-members-status" title="Permalink to this definition">¶</a></dt> +<dd><p>Change the status for an array of members.</p> +<p>The members will have their member_status_id updated.</p> +<table class="docutils field-list" frame="void" rules="none"> +<col class="field-name" /> +<col class="field-body" /> +<tbody valign="top"> +<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> +<li><strong>member_ids</strong> (<em>array</em>) – The array of member ids to change.</li> +<li><strong>status_to</strong> (<em>string</em>) – The new status for the given members. Accepts one of +‘a’ (active), ‘e’ (error), ‘o’ (optout).</li> +</ul> +</td> +</tr> +<tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first last">True if the members are successfully updated, otherwise +False.</p> +</td> +</tr> +</tbody> +</table> +<p> +<div class="sample-response hide-response"> +<span style="font-weight:bold;">Sample Response</span> +<a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>PUT /100/members/status</b> +{ + "member_ids": [ + 200, + 202 + ], + "status_to": "e" +} + +true +</pre> +</div> +</p> +</dd></dl> + +<dl class="put"> +<dt id="put--#account_id-members-#member_id"> +<tt class="descname">PUT </tt><tt class="descname">/#account_id/members/#member_id</tt><a class="headerlink" href="#put--#account_id-members-#member_id" title="Permalink to this definition">¶</a></dt> +<dd><p>Update a single member’s information.</p> +<p>Update the information for an existing member. Note that this method +allows the email address to be updated (which cannot be done with a +POST, since in that case the email address is used to identify the +member).</p> +<table class="docutils field-list" frame="void" rules="none"> +<col class="field-name" /> +<col class="field-body" /> +<tbody valign="top"> +<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> +<li><strong>email</strong> (<em>string</em>) – A new email address for the member.</li> +<li><strong>status_to</strong> (<em>string</em>) – A new status for the member. Accepts one of +‘a’ (active), ‘e’ (error), ‘o’ (opt-out).</li> +<li><strong>fields</strong> (<em>array</em>) – An array of fields with associated values for this +member.</li> +</ul> +</td> +</tr> +<tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">True if the member was updated successfully</p> +</td> +</tr> +<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no member is found.</p> +</td> +</tr> +</tbody> +</table> +<p> +<div class="sample-response hide-response"> +<span style="font-weight:bold;">Sample Response</span> +<a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>PUT /100/members/200</b> +{ + "fields": { + "first_name": "Ella", + "last_name": "Jones" + }, + "email": "ella@myemma.com", + "status_to": "a" +} + +true +</pre> +</div> +</p> +</dd></dl> + +<dl class="delete"> +<dt id="delete--#account_id-members-#member_id"> +<tt class="descname">DELETE </tt><tt class="descname">/#account_id/members/#member_id</tt><a class="headerlink" href="#delete--#account_id-members-#member_id" title="Permalink to this definition">¶</a></dt> +<dd><p>Delete the specified member.</p> +<p>The member, along with any associated response and history +information, will be completely removed from the database.</p> +<table class="docutils field-list" frame="void" rules="none"> +<col class="field-name" /> +<col class="field-body" /> +<tbody valign="top"> +<tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">True if the member is deleted.</td> +</tr> +<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no member is found.</td> +</tr> +</tbody> +</table> +<p> +<div class="sample-response hide-response"> +<span style="font-weight:bold;">Sample Response</span> +<a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>DELETE /100/members/202</b> + +true +</pre> +</div> +</p> +</dd></dl> + +<dl class="get"> +<dt id="get--#account_id-members-#member_id-groups"> +<tt class="descname">GET </tt><tt class="descname">/#account_id/members/#member_id/groups</tt><a class="headerlink" href="#get--#account_id-members-#member_id-groups" title="Permalink to this definition">¶</a></dt> +<dd><p>Get the groups to which a member belongs.</p> +<table class="docutils field-list" frame="void" rules="none"> +<col class="field-name" /> +<col class="field-body" /> +<tbody valign="top"> +<tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">An array of groups.</td> +</tr> +<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no member is found.</td> +</tr> +</tbody> +</table> +<p> +<div class="sample-response hide-response"> +<span style="font-weight:bold;">Sample Response</span> +<a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>GET /100/members/200/groups</b> + +[ + { + "active_count": 1, + "deleted_at": null, + "error_count": 0, + "optout_count": 1, + "group_type": "g", + "member_group_id": 150, + "account_id": 100, + "group_name": "Monthly Newsletter" + }, + { + "active_count": 2, + "deleted_at": null, + "error_count": 0, + "optout_count": 0, + "group_type": "g", + "member_group_id": 151, + "account_id": 100, + "group_name": "Widget Buyers" + }, + { + "active_count": 4, + "deleted_at": null, + "error_count": 0, + "optout_count": 0, + "group_type": "g", + "member_group_id": 152, + "account_id": 100, + "group_name": "Special Events" + } +] + +</pre> +</div> +</p> +</dd></dl> + +<dl class="put"> +<dt id="put--#account_id-members-#member_id-groups"> +<tt class="descname">PUT </tt><tt class="descname">/#account_id/members/#member_id/groups</tt><a class="headerlink" href="#put--#account_id-members-#member_id-groups" title="Permalink to this definition">¶</a></dt> +<dd><p>Add a single member to one or more groups.</p> +<table class="docutils field-list" frame="void" rules="none"> +<col class="field-name" /> +<col class="field-body" /> +<tbody valign="top"> +<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> +<li><strong>group_ids</strong> (<em>array</em>) – Group ids to which to add this member.</li> +</ul> +</td> +</tr> +<tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">An array of ids of the affected groups.</p> +</td> +</tr> +<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no member is found.</p> +</td> +</tr> +</tbody> +</table> +<p> +<div class="sample-response hide-response"> +<span style="font-weight:bold;">Sample Response</span> +<a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>PUT /100/members/200/groups</b> +{ + "group_ids": [ + 150, + 151 + ] +} + +[ + 150, + 151 +] +</pre> +</div> +</p> +</dd></dl> + +<dl class="put"> +<dt id="put--#account_id-members-#member_id-groups-remove"> +<tt class="descname">PUT </tt><tt class="descname">/#account_id/members/#member_id/groups/remove</tt><a class="headerlink" href="#put--#account_id-members-#member_id-groups-remove" title="Permalink to this definition">¶</a></dt> +<dd><p>Remove a single member from one or more groups.</p> +<table class="docutils field-list" frame="void" rules="none"> +<col class="field-name" /> +<col class="field-body" /> +<tbody valign="top"> +<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> +<li><strong>group_ids</strong> (<em>array</em>) – Group ids from which to remove this member.</li> +</ul> +</td> +</tr> +<tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">An array of references to the affected groups.</p> +</td> +</tr> +<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no member is found.</p> +</td> +</tr> +</tbody> +</table> +<p> +<div class="sample-response hide-response"> +<span style="font-weight:bold;">Sample Response</span> +<a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>PUT /100/members/200/groups/remove</b> +{ + "group_ids": [ + 151 + ] +} + +[ + 151 +] +</pre> +</div> +</p> +</dd></dl> + +<dl class="delete"> +<dt id="delete--#account_id-members"> +<tt class="descname">DELETE </tt><tt class="descname">/#account_id/members</tt><a class="headerlink" href="#delete--#account_id-members" title="Permalink to this definition">¶</a></dt> +<dd><p>Delete all members.</p> +<table class="docutils field-list" frame="void" rules="none"> +<col class="field-name" /> +<col class="field-body" /> +<tbody valign="top"> +<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> +<li><strong>member_status_id</strong> (<em>string</em>) – This is ‘a’ (active), ‘o’ (optout), or ‘e’ (error).</li> +</ul> +</td> +</tr> +<tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first last">Returns true.</p> +</td> +</tr> +</tbody> +</table> +<p> +<div class="sample-response hide-response"> +<span style="font-weight:bold;">Sample Response</span> +<a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>DELETE /100/members?member_status_id=a</b> + +true +</pre> +</div> +</p> +</dd></dl> + +<dl class="delete"> +<dt id="delete--#account_id-members-#member_id-groups"> +<tt class="descname">DELETE </tt><tt class="descname">/#account_id/members/#member_id/groups</tt><a class="headerlink" href="#delete--#account_id-members-#member_id-groups" title="Permalink to this definition">¶</a></dt> +<dd><p>Remove the specified member from all groups.</p> +<table class="docutils field-list" frame="void" rules="none"> +<col class="field-name" /> +<col class="field-body" /> +<tbody valign="top"> +<tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">True if the member is removed from all groups.</td> +</tr> +<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no member is found.</td> +</tr> +</tbody> +</table> +<p> +<div class="sample-response hide-response"> +<span style="font-weight:bold;">Sample Response</span> +<a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>DELETE /100/members/200/groups</b> + +true +</pre> +</div> +</p> +</dd></dl> + +<dl class="put"> +<dt id="put--#account_id-members-groups-remove"> +<tt class="descname">PUT </tt><tt class="descname">/#account_id/members/groups/remove</tt><a class="headerlink" href="#put--#account_id-members-groups-remove" title="Permalink to this definition">¶</a></dt> +<dd><p>Remove multiple members from groups.</p> +<table class="docutils field-list" frame="void" rules="none"> +<col class="field-name" /> +<col class="field-body" /> +<tbody valign="top"> +<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> +<li><strong>member_ids</strong> (<em>array</em>) – Member ids to remove from the given groups.</li> +<li><strong>group_ids</strong> (<em>array</em>) – Group ids from which to remove the given members.</li> +</ul> +</td> +</tr> +<tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">True if the members are deleted, otherwise False.</p> +</td> +</tr> +<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http404</span></tt> if any of the members or groups do not exist</p> +</td> +</tr> +</tbody> +</table> +<p> +<div class="sample-response hide-response"> +<span style="font-weight:bold;">Sample Response</span> +<a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>PUT /100/members/groups/remove</b> +{ + "group_ids": [ + 151 + ], + "member_ids": [ + 202 + ] +} + +true +</pre> +</div> +</p> +</dd></dl> + +<dl class="get"> +<dt id="get--#account_id-members-#member_id-mailings"> +<tt class="descname">GET </tt><tt class="descname">/#account_id/members/#member_id/mailings</tt><a class="headerlink" href="#get--#account_id-members-#member_id-mailings" title="Permalink to this definition">¶</a></dt> +<dd><p>Get the entire mailing history for a member.</p> +<table class="docutils field-list" frame="void" rules="none"> +<col class="field-name" /> +<col class="field-body" /> +<tbody valign="top"> +<tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">Message history details for the specified member.</td> +</tr> +</tbody> +</table> +<p> +<div class="sample-response hide-response"> +<span style="font-weight:bold;">Sample Response</span> +<a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>GET /100/members/200/mailings</b> + +[ + { + "delivery_type": "d", + "clicked": "@D:2011-01-02T11:14:32", + "opened": "@D:2011-01-02T11:13:51", + "mailing_id": 200, + "delivery_ts": "@D:2011-01-02T10:29:36", + "name": "Sample Mailing", + "forwarded": null, + "shared": null, + "subject": "Sample Mailing for [% member:first_name %] [% member:last_name %]", + "sent": "@D:2011-01-02T10:27:43", + "account_id": 100 + } +] + +</pre> +</div> +</p> +</dd></dl> + +<dl class="get"> +<dt id="get--#account_id-members-imports-#import_id-members"> +<tt class="descname">GET </tt><tt class="descname">/#account_id/members/imports/#import_id/members</tt><a class="headerlink" href="#get--#account_id-members-imports-#import_id-members" title="Permalink to this definition">¶</a></dt> +<dd><p>Get a list of members affected by this import.</p> +<table class="docutils field-list" frame="void" rules="none"> +<col class="field-name" /> +<col class="field-body" /> +<tbody valign="top"> +<tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">A list of members in the given account and import.</td> +</tr> +</tbody> +</table> +<p> +<div class="sample-response hide-response"> +<span style="font-weight:bold;">Sample Response</span> +<a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>GET /100/members/imports/200/members</b> + +[ + { + "member_id": 200, + "change_type": "a", + "member_status_id": "a", + "email": "emma@myemma.com" + } +] + +</pre> +</div> +</p> +</dd></dl> + +<dl class="get"> +<dt id="get--#account_id-members-imports-#import_id"> +<tt class="descname">GET </tt><tt class="descname">/#account_id/members/imports/#import_id</tt><a class="headerlink" href="#get--#account_id-members-imports-#import_id" title="Permalink to this definition">¶</a></dt> +<dd><p>Get information and statistics about this import.</p> +<table class="docutils field-list" frame="void" rules="none"> +<col class="field-name" /> +<col class="field-body" /> +<tbody valign="top"> +<tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">Import details for the given import_id.</td> +</tr> +</tbody> +</table> +<p> +<div class="sample-response hide-response"> +<span style="font-weight:bold;">Sample Response</span> +<a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>GET /100/members/imports/200</b> + +{ + "import_id": 200, + "status": null, + "style": null, + "import_started": "@D:2010-12-13T23:12:44", + "account_id": 100, + "error_message": null, + "num_members_updated": 0, + "source_filename": null, + "fields_updated": [], + "num_members_added": 0, + "import_finished": null, + "groups_updated": [], + "num_skipped": 0, + "num_duplicates": 0 +} +</pre> +</div> +</p> +</dd></dl> + +<dl class="get"> +<dt id="get--#account_id-members-imports"> +<tt class="descname">GET </tt><tt class="descname">/#account_id/members/imports</tt><a class="headerlink" href="#get--#account_id-members-imports" title="Permalink to this definition">¶</a></dt> +<dd><p>Get information about all imports for this account.</p> +<table class="docutils field-list" frame="void" rules="none"> +<col class="field-name" /> +<col class="field-body" /> +<tbody valign="top"> +<tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">An array of import details.</td> +</tr> +</tbody> +</table> +<p> +<div class="sample-response hide-response"> +<span style="font-weight:bold;">Sample Response</span> +<a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>GET /100/members/imports</b> + +[ + +] + +</pre> +</div> +</p> +</dd></dl> + +<dl class="delete"> +<dt id="delete--#account_id-members-imports-delete"> +<tt class="descname">DELETE </tt><tt class="descname">/#account_id/members/imports/delete</tt><a class="headerlink" href="#delete--#account_id-members-imports-delete" title="Permalink to this definition">¶</a></dt> +<dd><p>Update an import record to be marked as ‘deleted’.</p> +<table class="docutils field-list" frame="void" rules="none"> +<col class="field-name" /> +<col class="field-body" /> +<tbody valign="top"> +<tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">True if the import is marked as deleted.</td> +</tr> +<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the import record does not exist</td> +</tr> +</tbody> +</table> +</dd></dl> + +<dl class="put"> +<dt id="put--#account_id-members-#group_id-copy"> +<tt class="descname">PUT </tt><tt class="descname">/#account_id/members/#group_id/copy</tt><a class="headerlink" href="#put--#account_id-members-#group_id-copy" title="Permalink to this definition">¶</a></dt> +<dd><p>Copy all account members of one or more statuses into a group.</p> +<table class="docutils field-list" frame="void" rules="none"> +<col class="field-name" /> +<col class="field-body" /> +<tbody valign="top"> +<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> +<li><strong>member_status_id</strong> (<em>array of strings</em>) – ‘a’ (active), ‘o’ (optout), and/or ‘e’ (error).</li> +</ul> +</td> +</tr> +<tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">True</p> +</td> +</tr> +<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the group does not exist.</p> +</td> +</tr> +</tbody> +</table> +<p> +<div class="sample-response hide-response"> +<span style="font-weight:bold;">Sample Response</span> +<a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>PUT /100/members/152/copy</b> +{ + "member_status_id": [ + "a", + "e" + ] +} + +true +</pre> +</div> +</p> +</dd></dl> + +<dl class="put"> +<dt id="put--#account_id-members-status--status_from-to--status_to"> +<tt class="descname">PUT </tt><tt class="descname">/#account_id/members/status/:status_from/to/:status_to</tt><a class="headerlink" href="#put--#account_id-members-status--status_from-to--status_to" title="Permalink to this definition">¶</a></dt> +<dd><dl class="docutils"> +<dt>Update the status for a group of members, based on their current</dt> +<dd>status. Valid statuses id are (‘a’,’e’, ‘f’, ‘o’) active, error, +forwarded, optout.</dd> +</dl> +<table class="docutils field-list" frame="void" rules="none"> +<col class="field-name" /> +<col class="field-body" /> +<tbody valign="top"> +<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> +<li><strong>group_id</strong> – Optional. Limit the update to members of the +specified group</li> +</ul> +</td> +</tr> +<tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">True</p> +</td> +</tr> +<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http400</span></tt> if the specified status is invalid</p> +</td> +</tr> +</tbody> +</table> +<p> +<div class="sample-response hide-response"> +<span style="font-weight:bold;">Sample Response</span> +<a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>PUT /100/members/status/e/to/a</b> +{ + "group_id": 1 +} + +true +</pre> +</div> +</p> +</dd></dl> + +</div> + + + </div> + </div> + </div> + <div class="sphinxsidebar"> + <div class="sphinxsidebarwrapper"><h3>Related Topics</h3> +<ul> + <li><a href="../../index.html">Documentation overview</a><ul> + <li>Previous: <a href="mailings.html" title="previous chapter">Mailings</a></li> + <li>Next: <a href="response.html" title="next chapter">Response</a></li> + </ul></li> +</ul> +<div id="searchbox" style="display: none"> + <h3>Quick search</h3> + <form class="search" action="../../search.html" method="get"> + <input type="text" name="q" /> + <input type="submit" value="Go" /> + <input type="hidden" name="check_keywords" value="yes" /> + <input type="hidden" name="area" value="default" /> + </form> + <p class="searchtip" style="font-size: 90%"> + Enter search terms or a module, class or function name. + </p> +</div> +<script type="text/javascript">$('#searchbox').show(0);</script> + </div> + </div> + <div class="clearer"></div> + </div> + <div class="footer"> + © Copyright 2012, Emma. + Last updated on Dec 17, 2012 at 10:51. + </div> + </body> +</html> \ No newline at end of file diff --git a/api/external/response.html b/api/external/response.html new file mode 100644 index 0000000..75dff9c --- /dev/null +++ b/api/external/response.html @@ -0,0 +1,984 @@ + +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> + + +<html xmlns="http://www.w3.org/1999/xhtml"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> + + <title>Response — audience 0.1 documentation</title> + + <link rel="stylesheet" href="../../_static/emma.css" type="text/css" /> + <link rel="stylesheet" href="../../_static/pygments.css" type="text/css" /> + + <script type="text/javascript"> + var DOCUMENTATION_OPTIONS = { + URL_ROOT: '../../', + VERSION: '0.1', + COLLAPSE_INDEX: false, + FILE_SUFFIX: '.html', + HAS_SOURCE: true + }; + </script> + <script type="text/javascript" src="../../_static/jquery.js"></script> + <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="Searches" href="searches.html" /> + <link rel="prev" title="Members" href="members.html" /> + + + <style type="text/css"> + .resp-trigger, .resp-trigger:hover {font-size:10pt;text-decoration:none;} + div.sample-response.hide-response pre.response {display: none;} + div.sample-response .tshow, + div.sample-response.hide-response .thide {display: none;} + div.sample-response .thide, + div.sample-response.hide-response .tshow {display: inline;} + </style> + <script> + $().ready(function() { + $("a.resp-trigger").click(function(e) { + e.preventDefault(); + $(this).parents("div.sample-response").toggleClass("hide-response"); + }); + }); + </script> + + </head> + <body> +<header role="banner"> + <h1>Emma API Documentation</h1> +</header> + <div class="related"> + <h3>Navigation</h3> + <ul> + <li class="right" style="margin-right: 10px"> + <a href="../../genindex.html" title="General Index" + accesskey="I">index</a></li> + <li class="right" > + <a href="../../http-routingtable.html" title="HTTP Routing Table" + >routing table</a> |</li> + <li class="right" > + <a href="searches.html" title="Searches" + accesskey="N">next</a> |</li> + <li class="right" > + <a href="members.html" title="Members" + accesskey="P">previous</a> |</li> + <li><a href="../../index.html">audience 0.1 documentation</a> »</li> + </ul> + </div> + + <div class="document"> + <div class="documentwrapper"> + <div class="bodywrapper"> + <div class="body"> + + <div class="section" id="response"> +<h1>Response<a class="headerlink" href="#response" title="Permalink to this headline">¶</a></h1> +<p>We know that you want to do some fancy pivot tables with your response +data, so we’ve provided quite a few endpoints here to give you access +to that response data. You can get overview numbers for all of your mailings +and also drill down into finding out the actual members who opened a particular +mailing.</p> +<dl class="get"> +<dt id="get--#account_id-response"> +<tt class="descname">GET </tt><tt class="descname">/#account_id/response</tt><a class="headerlink" href="#get--#account_id-response" title="Permalink to this definition">¶</a></dt> +<dd><p>Get the response summary for an account.</p> +<p>This method will return a month-based time series of data including +sends, opens, clicks, mailings, forwards, and opt-outs. Test mailings +and forwards are not included in the data returned.</p> +<dl class="docutils"> +<dt><strong>Returns:</strong></dt> +<dd><p class="first">A list of objects with each object representing one month. Each +object contains:</p> +<ul class="last simple"> +<li><strong>account_id</strong> – The account_id for this line of stats</li> +<li><strong>month</strong> – two digit integer for month</li> +<li><strong>year</strong> – four digit integer for year</li> +<li><strong>mailings</strong> – number of mailings sent</li> +<li><strong>sent</strong> – number of messages sent</li> +<li><strong>delivered</strong> – number of messages delivered</li> +<li><strong>bounced</strong> – number of messages that failed delivery due to a hard or soft bounce</li> +<li><strong>opened</strong> – number of messages opened</li> +<li><strong>clicked_unique</strong> – link clicks, unique on message</li> +<li><strong>clicked</strong> – total link clicks, including duplicates</li> +<li><strong>forwarded</strong> – times the mailing was forwarded</li> +<li><strong>shared</strong> – total times a mailing has been shared</li> +<li><strong>share_clicked</strong> – total times a shared mailing has been seen</li> +<li><strong>webview_shared</strong> – total times a customer has shared their mailing</li> +<li><strong>webview_share_clicked</strong> – total times a customer-shared mailing has been seen</li> +<li><strong>opted_out</strong> – people who opted out based on this mailing</li> +<li><strong>signed_up</strong> – people who opted out based on this mailing</li> +</ul> +</dd> +</dl> +<table class="docutils field-list" frame="void" rules="none"> +<col class="field-name" /> +<col class="field-body" /> +<tbody valign="top"> +<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first last simple"> +<li><strong>include_archived</strong> (<em>boolean</em>) – Accepts 1. All other values are False. +Optional flag to include archived mailings in the list.</li> +<li><strong>range</strong> (<em>string</em>) – Accepts 2 dates (YYYY-MM-DD) delimited by a tilde (~). +Example: <tt class="docutils literal"><span class="pre">2011-04-01~2011-09-01</span></tt> +Optional argument to limit results to a date range. If one of the +dates is omitted, the default will be either min date or now. If +a single date is provided with no tilde, then only mailings sent +on that date will be included.</li> +</ul> +</td> +</tr> +</tbody> +</table> +<p> +<div class="sample-response hide-response"> +<span style="font-weight:bold;">Sample Response</span> +<a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>GET /100/response</b> + +[ + +] + +</pre> +</div> +</p> +<p> +<div class="sample-response hide-response"> +<span style="font-weight:bold;">Sample Response</span> +<a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>GET /100/response?range=2011-04-01~</b> + +[ + +] + +</pre> +</div> +</p> +<p> +<div class="sample-response hide-response"> +<span style="font-weight:bold;">Sample Response</span> +<a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>GET /100/response?range=2011-04-01~2011-09-01</b> + +[ + +] + +</pre> +</div> +</p> +</dd></dl> + +<dl class="get"> +<dt id="get--#account_id-response-#mailing_id"> +<tt class="descname">GET </tt><tt class="descname">/#account_id/response/#mailing_id</tt><a class="headerlink" href="#get--#account_id-response-#mailing_id" title="Permalink to this definition">¶</a></dt> +<dd><p>Get the response summary for a particular mailing.</p> +<p>This method will return the counts of each type of response activity +for a particular mailing.</p> +<dl class="docutils"> +<dt><strong>Returns:</strong></dt> +<dd>A single object with the following fields: +* <strong>name</strong> – name of mailing +* <strong>sent</strong> – messages sent +* <strong>delivered</strong> – messages delivered +* <strong>bounced</strong> – messages that failed delivery due to a hard or soft bounce +* <strong>opened</strong> – messages opened +* <strong>clicked_unique</strong> – link clicks, unique on message +* <strong>clicked</strong> – total link clicks, including duplicates +* <strong>forwarded</strong> – times the mailing was forwarded +* <strong>opted_out</strong> – people who opted out based on this mailing +* <strong>signed_up</strong> – people who signed up based on this mailing +* <strong>shared</strong> – people who shared this mailing +* <strong>share_clicked</strong> – number of clicks shares of this mailing received +* <strong>webview_shared</strong> – number of times the customer has shared +* <strong>webview_share_clicked</strong> – number of clicks customer-shares of this mailing received</dd> +</dl> +<table class="docutils field-list" frame="void" rules="none"> +<col class="field-name" /> +<col class="field-body" /> +<tbody valign="top"> +<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing does not exist.</td> +</tr> +<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing is not valid +mailing type - ‘m’ for standard mailings, ‘t’ for test mailings and +‘r’ for trigger mailings.</td> +</tr> +</tbody> +</table> +<p> +<div class="sample-response hide-response"> +<span style="font-weight:bold;">Sample Response</span> +<a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>GET /100/response/200</b> + +{ + "delivered": 0, + "signed_up": 0, + "clicked": 0, + "name": "Sample Mailing", + "clicked_unique": 0, + "webview_share_clicked": 0, + "opened": 0, + "opted_out": 0, + "share_clicked": 0, + "webview_shared": 0, + "shared": 0, + "in_progress": 0, + "bounced": 0, + "recipient_count": 0, + "sent": 0, + "forwarded": 0 +} +</pre> +</div> +</p> +</dd></dl> + +<dl class="get"> +<dt id="get--#account_id-response-#mailing_id-sends"> +<tt class="descname">GET </tt><tt class="descname">/#account_id/response/#mailing_id/sends</tt><a class="headerlink" href="#get--#account_id-response-#mailing_id-sends" title="Permalink to this definition">¶</a></dt> +<dd><p>Get the list of messages that have been sent to an MTA for delivery.</p> +<dl class="docutils"> +<dt><strong>Returns:</strong></dt> +<dd><p class="first">An array of objects with the following fields:</p> +<ul class="last simple"> +<li><strong>timestamp</strong> – time the message was sent</li> +<li><strong>member_id</strong> – id of the message addressee</li> +<li><strong>email</strong> – email of the message addressee</li> +</ul> +</dd> +</dl> +<table class="docutils field-list" frame="void" rules="none"> +<col class="field-name" /> +<col class="field-body" /> +<tbody valign="top"> +<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing does not exist.</td> +</tr> +<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing is not valid +mailing type - ‘m’ for standard mailings, ‘t’ for test mailings and +‘r’ for trigger mailings.</td> +</tr> +</tbody> +</table> +<p> +<div class="sample-response hide-response"> +<span style="font-weight:bold;">Sample Response</span> +<a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>GET /100/response/200/sends</b> + +[ + { + "fields": { + "first_name": "Emma", + "last_name": "Smith", + "favorite_food": "tacos" + }, + "timestamp": "@D:2011-01-02T10:27:43", + "member_id": 200, + "member_since": "@D:2010-11-12T11:23:45", + "email_domain": "myemma.com", + "email_user": "emma", + "email": "emma@myemma.com", + "member_status_id": "a" + }, + { + "fields": { + "first_name": "Gladys", + "last_name": "Jones", + "favorite_food": "toast" + }, + "timestamp": "@D:2011-01-02T10:27:43", + "member_id": 201, + "member_since": "@D:2011-01-03T15:54:13", + "email_domain": "myemma.com", + "email_user": "gladys", + "email": "gladys@myemma.com", + "member_status_id": "o" + }, + { + "fields": { + + }, + "timestamp": "@D:2011-01-02T10:27:43", + "member_id": 204, + "member_since": "@D:2010-12-13T23:12:44", + "email_domain": "myemma.com", + "email_user": "bob", + "email": "bob@myemma.com", + "member_status_id": "a" + } +] + +</pre> +</div> +</p> +</dd></dl> + +<dl class="get"> +<dt id="get--#account_id-response-#mailing_id-in_progress"> +<tt class="descname">GET </tt><tt class="descname">/#account_id/response/#mailing_id/in_progress</tt><a class="headerlink" href="#get--#account_id-response-#mailing_id-in_progress" title="Permalink to this definition">¶</a></dt> +<dd><p>Get the list of messages that are in the queue, +possibly sent, but not yet delivered.</p> +<dl class="docutils"> +<dt><strong>Returns:</strong></dt> +<dd><p class="first">An array of objects with the following fields:</p> +<ul class="last simple"> +<li><strong>member_id</strong> – id of the message addressee</li> +<li><strong>email</strong> – email of the message addressee</li> +</ul> +</dd> +</dl> +<table class="docutils field-list" frame="void" rules="none"> +<col class="field-name" /> +<col class="field-body" /> +<tbody valign="top"> +<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing does not exist.</td> +</tr> +<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing is not valid +mailing type - ‘m’ for standard mailings, ‘t’ for test mailings and +‘r’ for trigger mailings.</td> +</tr> +</tbody> +</table> +<p> +<div class="sample-response hide-response"> +<span style="font-weight:bold;">Sample Response</span> +<a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>GET /100/response/200/in_progress</b> + +[ + { + "fields": { + "first_name": "Gladys", + "last_name": "Jones", + "favorite_food": "toast" + }, + "member_id": 201, + "member_since": "@D:2011-01-03T15:54:13", + "email_domain": "myemma.com", + "email_user": "gladys", + "email": "gladys@myemma.com", + "member_status_id": "o" + }, + { + "fields": { + + }, + "member_id": 204, + "member_since": "@D:2010-12-13T23:12:44", + "email_domain": "myemma.com", + "email_user": "bob", + "email": "bob@myemma.com", + "member_status_id": "a" + } +] + +</pre> +</div> +</p> +</dd></dl> + +<dl class="get"> +<dt id="get--#account_id-response-#mailing_id-deliveries"> +<tt class="descname">GET </tt><tt class="descname">/#account_id/response/#mailing_id/deliveries</tt><a class="headerlink" href="#get--#account_id-response-#mailing_id-deliveries" title="Permalink to this definition">¶</a></dt> +<dd><p>Get the list of messages that have finished delivery.</p> +<p>This will include those that were successfully delivered, as well as +those that failed due to hard or soft bounces.</p> +<p>This list can be limited by <tt class="docutils literal"><span class="pre">delivery_type</span></tt>.</p> +<table class="docutils field-list" frame="void" rules="none"> +<col class="field-name" /> +<col class="field-body" /> +<tbody valign="top"> +<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first last simple"> +<li><strong>del_status</strong> (<em>string</em>) – Accepted options: ‘all’, ‘delivered’, +‘bounced’, ‘hard’, ‘soft’. Defaults to ‘all’, if not provided.</li> +</ul> +</td> +</tr> +</tbody> +</table> +<dl class="docutils"> +<dt><strong>Returns:</strong></dt> +<dd><p class="first">An array of objects with the following fields:</p> +<ul class="last simple"> +<li><strong>timestamp</strong> – time the message was delivered</li> +<li><strong>delivery_type</strong> – delivery outcome: <tt class="docutils literal"><span class="pre">delivered</span></tt>, <tt class="docutils literal"><span class="pre">hard</span></tt>, (bounce), or <tt class="docutils literal"><span class="pre">soft</span></tt> (bounce)</li> +<li><strong>member_id</strong> – id of the message addressee</li> +<li><strong>email</strong> – email of the message addressee</li> +</ul> +</dd> +</dl> +<table class="docutils field-list" frame="void" rules="none"> +<col class="field-name" /> +<col class="field-body" /> +<tbody valign="top"> +<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing does not exist.</td> +</tr> +<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing is not valid +mailing type - ‘m’ for standard mailings, ‘t’ for test mailings and +‘r’ for trigger mailings.</td> +</tr> +</tbody> +</table> +<p> +<div class="sample-response hide-response"> +<span style="font-weight:bold;">Sample Response</span> +<a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>GET /100/response/200/deliveries</b> + +[ + { + "delivery_type": "delivered", + "email_domain": "myemma.com", + "fields": { + "first_name": "Emma", + "last_name": "Smith", + "favorite_food": "tacos" + }, + "mailing_id": 200, + "timestamp": "@D:2011-01-02T10:29:36", + "member_id": 200, + "member_status_id": "a", + "member_since": "@D:2010-11-12T11:23:45", + "mailing_name": "Sample Mailing", + "email_user": "emma", + "email": "emma@myemma.com" + } +] + +</pre> +</div> +</p> +</dd></dl> + +<dl class="get"> +<dt id="get--#account_id-response-#mailing_id-opens"> +<tt class="descname">GET </tt><tt class="descname">/#account_id/response/#mailing_id/opens</tt><a class="headerlink" href="#get--#account_id-response-#mailing_id-opens" title="Permalink to this definition">¶</a></dt> +<dd><p>Get the list of opened messages for this campaign.</p> +<dl class="docutils"> +<dt><strong>Returns:</strong></dt> +<dd><p class="first">An array of objects with the following fields:</p> +<ul class="last simple"> +<li><strong>timestamp</strong> – time the message was opened</li> +<li><strong>member_id</strong> – id of the message addressee</li> +<li><strong>email</strong> – email of the message addressee</li> +</ul> +</dd> +</dl> +<table class="docutils field-list" frame="void" rules="none"> +<col class="field-name" /> +<col class="field-body" /> +<tbody valign="top"> +<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing does not exist.</td> +</tr> +<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing is not valid +mailing type - ‘m’ for standard mailings, ‘t’ for test mailings and +‘r’ for trigger mailings.</td> +</tr> +</tbody> +</table> +<p> +<div class="sample-response hide-response"> +<span style="font-weight:bold;">Sample Response</span> +<a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>GET /100/response/200/opens</b> + +[ + { + "fields": { + "first_name": "Emma", + "last_name": "Smith", + "favorite_food": "tacos" + }, + "timestamp": "@D:2011-01-02T11:13:51", + "member_id": 200, + "member_since": "@D:2010-11-12T11:23:45", + "email_domain": "myemma.com", + "email_user": "emma", + "email": "emma@myemma.com", + "member_status_id": "a" + }, + { + "fields": { + + }, + "timestamp": "@D:2011-01-02T13:55:51", + "member_id": 204, + "member_since": "@D:2010-12-13T23:12:44", + "email_domain": "myemma.com", + "email_user": "bob", + "email": "bob@myemma.com", + "member_status_id": "a" + } +] + +</pre> +</div> +</p> +</dd></dl> + +<dl class="get"> +<dt id="get--#account_id-response-#mailing_id-links"> +<tt class="descname">GET </tt><tt class="descname">/#account_id/response/#mailing_id/links</tt><a class="headerlink" href="#get--#account_id-response-#mailing_id-links" title="Permalink to this definition">¶</a></dt> +<dd><p>Get the list of links for this mailing.</p> +<dl class="docutils"> +<dt><strong>Returns:</strong></dt> +<dd><p class="first">An array of objects with the following fields:</p> +<ul class="last simple"> +<li><strong>link_id</strong> – id of the link</li> +<li><strong>link_order</strong> – order of the link in the mailing</li> +<li><strong>link_name</strong> – friendly name for the link</li> +<li><strong>link_target</strong> – link URL</li> +<li><strong>unique_clicks</strong> – clicks on the link, unique per message</li> +<li><strong>total_clicks</strong> – clicks on the link, total</li> +</ul> +</dd> +</dl> +<table class="docutils field-list" frame="void" rules="none"> +<col class="field-name" /> +<col class="field-body" /> +<tbody valign="top"> +<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing does not exist.</td> +</tr> +<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing is not valid +mailing type - ‘m’ for standard mailings, ‘t’ for test mailings and +‘r’ for trigger mailings.</td> +</tr> +</tbody> +</table> +<p> +<div class="sample-response hide-response"> +<span style="font-weight:bold;">Sample Response</span> +<a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>GET /100/response/200/links</b> + +[ + { + "link_order": 1, + "link_name": "Emma", + "unique_clicks": 1, + "plaintext": false, + "link_target": "http://www.myemma.com", + "total_clicks": 1, + "link_id": 200 + } +] + +</pre> +</div> +</p> +</dd></dl> + +<dl class="get"> +<dt id="get--#account_id-response-#mailing_id-clicks"> +<tt class="descname">GET </tt><tt class="descname">/#account_id/response/#mailing_id/clicks</tt><a class="headerlink" href="#get--#account_id-response-#mailing_id-clicks" title="Permalink to this definition">¶</a></dt> +<dd><p>Get the list of clicks for this mailing.</p> +<p>This list can also be limited by <tt class="docutils literal"><span class="pre">member_id</span></tt> or <tt class="docutils literal"><span class="pre">link_id</span></tt>.</p> +<table class="docutils field-list" frame="void" rules="none"> +<col class="field-name" /> +<col class="field-body" /> +<tbody valign="top"> +<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first last simple"> +<li><strong>member_id</strong> (<em>int</em>) – Limits results to a single member.</li> +<li><strong>link_id</strong> (<em>int</em>) – Limits results to a single link.</li> +</ul> +</td> +</tr> +</tbody> +</table> +<dl class="docutils"> +<dt><strong>Returns:</strong></dt> +<dd><p class="first">An array of objects with the following fields:</p> +<ul class="last simple"> +<li><strong>link_id</strong> – id of the clicked link</li> +<li><strong>timestamp</strong> – time the link was clicked</li> +<li><strong>member_id</strong> – id of the message addressee</li> +<li><strong>email</strong> – email of the message addressee</li> +</ul> +</dd> +</dl> +<table class="docutils field-list" frame="void" rules="none"> +<col class="field-name" /> +<col class="field-body" /> +<tbody valign="top"> +<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing does not exist.</td> +</tr> +<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing is not valid +mailing type - ‘m’ for standard mailings, ‘t’ for test mailings and +‘r’ for trigger mailings.</td> +</tr> +</tbody> +</table> +<p> +<div class="sample-response hide-response"> +<span style="font-weight:bold;">Sample Response</span> +<a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>GET /100/response/200/clicks</b> + +[ + { + "link_id": 200, + "fields": { + "first_name": "Emma", + "last_name": "Smith", + "favorite_food": "tacos" + }, + "timestamp": "@D:2011-01-02T11:14:32", + "member_id": 200, + "member_since": "@D:2010-11-12T11:23:45", + "email_domain": "myemma.com", + "email_user": "emma", + "email": "emma@myemma.com", + "member_status_id": "a" + } +] + +</pre> +</div> +</p> +</dd></dl> + +<dl class="get"> +<dt id="get--#account_id-response-#mailing_id-forwards"> +<tt class="descname">GET </tt><tt class="descname">/#account_id/response/#mailing_id/forwards</tt><a class="headerlink" href="#get--#account_id-response-#mailing_id-forwards" title="Permalink to this definition">¶</a></dt> +<dd><p>Get the list of forwards for this mailing.</p> +<dl class="docutils"> +<dt><strong>Returns:</strong></dt> +<dd><p class="first">An array of objects with the following fields:</p> +<ul class="last simple"> +<li><strong>timestamp</strong> – time the mailing was forwarded</li> +<li><strong>forward_mailing_id</strong> – id of the new mailing created to send the forward</li> +<li><strong>member_id</strong> – id of the forwarding member</li> +<li><strong>email</strong> – email of the forwarding member</li> +</ul> +</dd> +</dl> +<table class="docutils field-list" frame="void" rules="none"> +<col class="field-name" /> +<col class="field-body" /> +<tbody valign="top"> +<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing does not exist.</td> +</tr> +<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing is not valid +mailing type - ‘m’ for standard mailings, ‘t’ for test mailings and +‘r’ for trigger mailings.</td> +</tr> +</tbody> +</table> +<p> +<div class="sample-response hide-response"> +<span style="font-weight:bold;">Sample Response</span> +<a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>GET /100/response/200/forwards</b> + +[ + +] + +</pre> +</div> +</p> +</dd></dl> + +<dl class="get"> +<dt id="get--#account_id-response-#mailing_id-optouts"> +<tt class="descname">GET </tt><tt class="descname">/#account_id/response/#mailing_id/optouts</tt><a class="headerlink" href="#get--#account_id-response-#mailing_id-optouts" title="Permalink to this definition">¶</a></dt> +<dd><p>Get the list of optouts for this mailing.</p> +<dl class="docutils"> +<dt><strong>Returns:</strong></dt> +<dd><p class="first">An array of objects with the following fields:</p> +<ul class="last simple"> +<li><strong>timestamp</strong> – time of the optout</li> +<li><strong>member_id</strong> – id of the opted out member</li> +<li><strong>email</strong> – email of the opted out member</li> +<li><strong>first_name</strong> – first name of the opted out member</li> +<li><strong>last_name</strong> – last name of the opted out member</li> +</ul> +</dd> +</dl> +<table class="docutils field-list" frame="void" rules="none"> +<col class="field-name" /> +<col class="field-body" /> +<tbody valign="top"> +<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing does not exist.</td> +</tr> +<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing is not valid +mailing type - ‘m’ for standard mailings, ‘t’ for test mailings and +‘r’ for trigger mailings.</td> +</tr> +</tbody> +</table> +<p> +<div class="sample-response hide-response"> +<span style="font-weight:bold;">Sample Response</span> +<a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>GET /100/response/200/optouts</b> + +[ + { + "fields": { + + }, + "timestamp": "@D:2011-01-02T13:56:16", + "member_id": 204, + "member_since": "@D:2010-12-13T23:12:44", + "email_domain": "myemma.com", + "email_user": "bob", + "email": "bob@myemma.com", + "member_status_id": "a" + } +] + +</pre> +</div> +</p> +</dd></dl> + +<dl class="get"> +<dt id="get--#account_id-response-#mailing_id-signups"> +<tt class="descname">GET </tt><tt class="descname">/#account_id/response/#mailing_id/signups</tt><a class="headerlink" href="#get--#account_id-response-#mailing_id-signups" title="Permalink to this definition">¶</a></dt> +<dd><p>Get the list of signups for this mailing.</p> +<dl class="docutils"> +<dt><strong>Returns:</strong></dt> +<dd><p class="first">An array of objects with the following fields:</p> +<ul class="last simple"> +<li><strong>member_id</strong> – id of the signed up member</li> +<li><strong>email</strong> – email of the signed up member</li> +<li><strong>timestamp</strong> – time of the signup</li> +<li><strong>first_name</strong> – first name of the signed up member</li> +<li><strong>last_name</strong> – last name of the signed up member</li> +<li><strong>ref_member_id</strong> – id of the referring member</li> +</ul> +</dd> +</dl> +<table class="docutils field-list" frame="void" rules="none"> +<col class="field-name" /> +<col class="field-body" /> +<tbody valign="top"> +<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing does not exist.</td> +</tr> +<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing is not valid +mailing type - ‘m’ for standard mailings, ‘t’ for test mailings and +‘r’ for trigger mailings.</td> +</tr> +</tbody> +</table> +<p> +<div class="sample-response hide-response"> +<span style="font-weight:bold;">Sample Response</span> +<a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>GET /100/response/200/signups</b> + +[ + { + "ref_member_id": 200, + "mailing_mailing_id": 200, + "fields": { + + }, + "timestamp": "@D:2011-01-05T15:28:11", + "member_id": 205, + "member_since": "@D:2011-01-05T15:28:11", + "email_domain": "myemma.com", + "email_user": "newbie", + "email": "newbie@myemma.com", + "member_status_id": "a" + } +] + +</pre> +</div> +</p> +</dd></dl> + +<dl class="get"> +<dt id="get--#account_id-response-#mailing_id-shares"> +<tt class="descname">GET </tt><tt class="descname">/#account_id/response/#mailing_id/shares</tt><a class="headerlink" href="#get--#account_id-response-#mailing_id-shares" title="Permalink to this definition">¶</a></dt> +<dd><p>Get the list of shares for this mailing</p> +<dl class="docutils"> +<dt><strong>Returns:</strong></dt> +<dd><p class="first">An array of objects with the following fields:</p> +<ul class="last simple"> +<li><strong>member_id</strong> – id of the shared message</li> +<li><strong>network</strong> – name of the network the share happened on</li> +<li><strong>clicks</strong> – number of clicks that the shared link received</li> +</ul> +</dd> +</dl> +<table class="docutils field-list" frame="void" rules="none"> +<col class="field-name" /> +<col class="field-body" /> +<tbody valign="top"> +<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing does not exist.</td> +</tr> +<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing is not valid +mailing type - ‘m’ for standard mailings, ‘t’ for test mailings and +‘r’ for trigger mailings.</td> +</tr> +</tbody> +</table> +</dd></dl> + +<dl class="get"> +<dt id="get--#account_id-response-#mailing_id-customer_shares"> +<tt class="descname">GET </tt><tt class="descname">/#account_id/response/#mailing_id/customer_shares</tt><a class="headerlink" href="#get--#account_id-response-#mailing_id-customer_shares" title="Permalink to this definition">¶</a></dt> +<dd><p>Get the list of customer shares for this mailing</p> +<dl class="docutils"> +<dt><strong>Returns:</strong></dt> +<dd><p class="first">An array of objects with the following fields:</p> +<ul class="last simple"> +<li><strong>timestamp</strong> – timestamp of the shared link click</li> +<li><strong>network</strong> – name of the network the share happened on</li> +</ul> +</dd> +</dl> +<table class="docutils field-list" frame="void" rules="none"> +<col class="field-name" /> +<col class="field-body" /> +<tbody valign="top"> +<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing does not exist.</td> +</tr> +<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing is not valid +mailing type - ‘m’ for standard mailings, ‘t’ for test mailings and +‘r’ for trigger mailings.</td> +</tr> +</tbody> +</table> +</dd></dl> + +<dl class="get"> +<dt id="get--#account_id-response-#mailing_id-customer_share_clicks"> +<tt class="descname">GET </tt><tt class="descname">/#account_id/response/#mailing_id/customer_share_clicks</tt><a class="headerlink" href="#get--#account_id-response-#mailing_id-customer_share_clicks" title="Permalink to this definition">¶</a></dt> +<dd><p>Get the list of customer share clicks for this mailing</p> +<dl class="docutils"> +<dt><strong>Returns:</strong></dt> +<dd><p class="first">An array of objects with the following fields:</p> +<ul class="last simple"> +<li><strong>timestamp</strong> – timestamp of the shared link click</li> +<li><strong>network</strong> – name of the network the share happened on</li> +<li><strong>clicks</strong> – number of clicks that the shared link received</li> +</ul> +</dd> +</dl> +<table class="docutils field-list" frame="void" rules="none"> +<col class="field-name" /> +<col class="field-body" /> +<tbody valign="top"> +<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing does not exist.</td> +</tr> +<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing is not valid +mailing type - ‘m’ for standard mailings, ‘t’ for test mailings and +‘r’ for trigger mailings.</td> +</tr> +</tbody> +</table> +</dd></dl> + +<dl class="get"> +<dt id="get--#account_id-response-#share_id-customer_share"> +<tt class="descname">GET </tt><tt class="descname">/#account_id/response/#share_id/customer_share</tt><a class="headerlink" href="#get--#account_id-response-#share_id-customer_share" title="Permalink to this definition">¶</a></dt> +<dd><p>Get the customer share associated with the share id.</p> +<dl class="docutils"> +<dt><strong>Returns:</strong></dt> +<dd><p class="first">An object with the following fields:</p> +<ul class="last simple"> +<li><strong>timestamp</strong> – timestamp of the share</li> +<li><strong>network</strong> – name of the network the share happened on</li> +<li><strong>share_status</strong> – status of the share</li> +</ul> +</dd> +</dl> +<table class="docutils field-list" frame="void" rules="none"> +<col class="field-name" /> +<col class="field-body" /> +<tbody valign="top"> +<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing does not exist.</td> +</tr> +<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing is not valid +mailing type - ‘m’ for standard mailings, ‘t’ for test mailings and +‘r’ for trigger mailings.</td> +</tr> +</tbody> +</table> +</dd></dl> + +<dl class="get"> +<dt id="get--#account_id-response-#mailing_id-shares-overview"> +<tt class="descname">GET </tt><tt class="descname">/#account_id/response/#mailing_id/shares/overview</tt><a class="headerlink" href="#get--#account_id-response-#mailing_id-shares-overview" title="Permalink to this definition">¶</a></dt> +<dd><p>Get overview of shares pertaining to this mailing_id.</p> +<dl class="docutils"> +<dt><strong>Returns:</strong></dt> +<dd><p class="first">An array of objects with the following fields:</p> +<ul class="last simple"> +<li><strong>network</strong> – name of the network the share happened on</li> +<li><strong>share_clicks</strong> – number of clicks that the shared link received</li> +<li><strong>share_count</strong> – number of shares to that network</li> +</ul> +</dd> +</dl> +<table class="docutils field-list" frame="void" rules="none"> +<col class="field-name" /> +<col class="field-body" /> +<tbody valign="top"> +<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing does not exist.</td> +</tr> +<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing is not valid</td> +</tr> +</tbody> +</table> +</dd></dl> + +</div> + + + </div> + </div> + </div> + <div class="sphinxsidebar"> + <div class="sphinxsidebarwrapper"><h3>Related Topics</h3> +<ul> + <li><a href="../../index.html">Documentation overview</a><ul> + <li>Previous: <a href="members.html" title="previous chapter">Members</a></li> + <li>Next: <a href="searches.html" title="next chapter">Searches</a></li> + </ul></li> +</ul> +<div id="searchbox" style="display: none"> + <h3>Quick search</h3> + <form class="search" action="../../search.html" method="get"> + <input type="text" name="q" /> + <input type="submit" value="Go" /> + <input type="hidden" name="check_keywords" value="yes" /> + <input type="hidden" name="area" value="default" /> + </form> + <p class="searchtip" style="font-size: 90%"> + Enter search terms or a module, class or function name. + </p> +</div> +<script type="text/javascript">$('#searchbox').show(0);</script> + </div> + </div> + <div class="clearer"></div> + </div> + <div class="footer"> + © Copyright 2012, Emma. + Last updated on Dec 17, 2012 at 10:51. + </div> + </body> +</html> \ No newline at end of file diff --git a/api/external/searches.html b/api/external/searches.html new file mode 100644 index 0000000..0158ff1 --- /dev/null +++ b/api/external/searches.html @@ -0,0 +1,476 @@ + +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> + + +<html xmlns="http://www.w3.org/1999/xhtml"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> + + <title>Searches — audience 0.1 documentation</title> + + <link rel="stylesheet" href="../../_static/emma.css" type="text/css" /> + <link rel="stylesheet" href="../../_static/pygments.css" type="text/css" /> + + <script type="text/javascript"> + var DOCUMENTATION_OPTIONS = { + URL_ROOT: '../../', + VERSION: '0.1', + COLLAPSE_INDEX: false, + FILE_SUFFIX: '.html', + HAS_SOURCE: true + }; + </script> + <script type="text/javascript" src="../../_static/jquery.js"></script> + <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="Triggers" href="triggers.html" /> + <link rel="prev" title="Response" href="response.html" /> + + + <style type="text/css"> + .resp-trigger, .resp-trigger:hover {font-size:10pt;text-decoration:none;} + div.sample-response.hide-response pre.response {display: none;} + div.sample-response .tshow, + div.sample-response.hide-response .thide {display: none;} + div.sample-response .thide, + div.sample-response.hide-response .tshow {display: inline;} + </style> + <script> + $().ready(function() { + $("a.resp-trigger").click(function(e) { + e.preventDefault(); + $(this).parents("div.sample-response").toggleClass("hide-response"); + }); + }); + </script> + + </head> + <body> +<header role="banner"> + <h1>Emma API Documentation</h1> +</header> + <div class="related"> + <h3>Navigation</h3> + <ul> + <li class="right" style="margin-right: 10px"> + <a href="../../genindex.html" title="General Index" + accesskey="I">index</a></li> + <li class="right" > + <a href="../../http-routingtable.html" title="HTTP Routing Table" + >routing table</a> |</li> + <li class="right" > + <a href="triggers.html" title="Triggers" + accesskey="N">next</a> |</li> + <li class="right" > + <a href="response.html" title="Response" + accesskey="P">previous</a> |</li> + <li><a href="../../index.html">audience 0.1 documentation</a> »</li> + </ul> + </div> + + <div class="document"> + <div class="documentwrapper"> + <div class="bodywrapper"> + <div class="body"> + + <div class="section" id="searches"> +<h1>Searches<a class="headerlink" href="#searches" title="Permalink to this headline">¶</a></h1> +<p>These endpoints allow you to create, edit, and delete searches. You can also +retrieve the members matching any search created in your account. You can +<a class="reference internal" href="../../member_search.html"><em>get more details on how to construct searches</em></a>.</p> +<dl class="get"> +<dt id="get--#account_id-searches"> +<tt class="descname">GET </tt><tt class="descname">/#account_id/searches</tt><a class="headerlink" href="#get--#account_id-searches" title="Permalink to this definition">¶</a></dt> +<dd><p>Retrieve a list of saved searches.</p> +<table class="docutils field-list" frame="void" rules="none"> +<col class="field-name" /> +<col class="field-body" /> +<tbody valign="top"> +<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> +<li><strong>deleted</strong> (<em>boolean</em>) – Accepts True or 1. Optional flag to include +deleted searches.</li> +</ul> +</td> +</tr> +<tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first last">An array of searches.</p> +</td> +</tr> +</tbody> +</table> +<p> +<div class="sample-response hide-response"> +<span style="font-weight:bold;">Sample Response</span> +<a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>GET /100/searches</b> + +[ + { + "search_id": 200, + "optout_count": 0, + "error_count": 0, + "name": "Test Search", + "criteria": "[\"or\", [\"group\", \"eq\", \"Monthly Newsletter\"],[\"group\", \"eq\", \"Widget Buyers\"]]", + "deleted_at": null, + "last_run_at": null, + "active_count": 0, + "account_id": 100 + }, + { + "search_id": 201, + "optout_count": 0, + "error_count": 0, + "name": "Second Test Search", + "criteria": "[\"group\", \"eq\", \"Special Events\"]", + "deleted_at": null, + "last_run_at": null, + "active_count": 0, + "account_id": 100 + } +] + +</pre> +</div> +</p> +</dd></dl> + +<dl class="get"> +<dt id="get--#account_id-searches-#search_id"> +<tt class="descname">GET </tt><tt class="descname">/#account_id/searches/#search_id</tt><a class="headerlink" href="#get--#account_id-searches-#search_id" title="Permalink to this definition">¶</a></dt> +<dd><p>Get the details for a saved search.</p> +<table class="docutils field-list" frame="void" rules="none"> +<col class="field-name" /> +<col class="field-body" /> +<tbody valign="top"> +<tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">A search.</p> +</td> +</tr> +<tr class="field-even field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> +<li><strong>deleted</strong> (<em>boolean</em>) – Accepts True or 1. Optional flag to include +deleted searches.</li> +</ul> +</td> +</tr> +<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the search does not exist.</p> +</td> +</tr> +</tbody> +</table> +<p> +<div class="sample-response hide-response"> +<span style="font-weight:bold;">Sample Response</span> +<a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>GET /100/searches/200</b> + +{ + "search_id": 200, + "optout_count": 1, + "error_count": 0, + "name": "Test Search", + "criteria": "[\"or\", [\"group\", \"eq\", \"Monthly Newsletter\"],[\"group\", \"eq\", \"Widget Buyers\"]]", + "deleted_at": null, + "last_run_at": "@D:2012-12-17T10:51:53", + "active_count": 2, + "account_id": 100 +} +</pre> +</div> +</p> +</dd></dl> + +<dl class="post"> +<dt id="post--#account_id-searches"> +<tt class="descname">POST </tt><tt class="descname">/#account_id/searches</tt><a class="headerlink" href="#post--#account_id-searches" title="Permalink to this definition">¶</a></dt> +<dd><p>Create a saved search.</p> +<p>The detail of a search is specified in a JSON structure that describes +the clauses to be applied using groups of <em>filter</em> <em>type</em>, <em>operator</em> +and <em>value</em>. Where the <em>filter</em> <em>type</em> is <tt class="docutils literal"><span class="pre">member_field</span></tt>, the +referenced field should be specified by joining with a colon. For +example:</p> +<div class="highlight-javascript"><div class="highlight"><pre><span class="p">[</span><span class="s2">"and"</span><span class="p">,</span> + <span class="p">[</span><span class="s2">"or"</span><span class="p">,</span> + <span class="p">[</span><span class="s2">"group"</span><span class="p">,</span> <span class="s2">"eq"</span><span class="p">,</span> <span class="s2">"my list"</span><span class="p">],</span> + <span class="p">[</span><span class="s2">"group"</span><span class="p">,</span> <span class="s2">"contains"</span><span class="p">,</span> <span class="s2">"old"</span><span class="p">]</span> + <span class="p">],</span> + <span class="p">[</span><span class="s2">"not"</span><span class="p">,</span> <span class="p">[</span><span class="s2">"member_field"</span><span class="p">,</span> <span class="s2">"soup"</span><span class="p">,</span> <span class="s2">"eq"</span><span class="p">,</span> <span class="s2">"lentil"</span><span class="p">]],</span> + <span class="p">[</span><span class="s2">"opened"</span><span class="p">,</span> <span class="mi">123249</span><span class="p">,</span> <span class="s2">"between"</span><span class="p">,</span> <span class="s2">"2011-01-22, 2011-01-31"</span><span class="p">],</span> + <span class="p">[</span><span class="s2">"clicked"</span><span class="p">,</span> <span class="mi">83927</span><span class="p">]</span> +<span class="p">]</span> +</pre></div> +</div> +<p>The following parameters are required:</p> +<table class="docutils field-list" frame="void" rules="none"> +<col class="field-name" /> +<col class="field-body" /> +<tbody valign="top"> +<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> +<li><strong>criteria</strong> (<em>array</em>) – A combination of search conditions, as described +above.</li> +<li><strong>name</strong> (<em>string</em>) – A name used to describe this search.</li> +</ul> +</td> +</tr> +<tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">The ID of the new search</p> +</td> +</tr> +<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http400</span></tt> if the search is invalid</p> +</td> +</tr> +</tbody> +</table> +<p> +<div class="sample-response hide-response"> +<span style="font-weight:bold;">Sample Response</span> +<a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>POST /100/searches</b> +{ + "name": "New Search", + "criteria": [ + "or", + [ + "group", + "eq", + "Monthly Newsletter" + ], + [ + "group", + "eq", + "Widget Buyers" + ] + ] +} + +1024 +</pre> +</div> +</p> +</dd></dl> + +<dl class="put"> +<dt id="put--#account_id-searches-#search_id"> +<tt class="descname">PUT </tt><tt class="descname">/#account_id/searches/#search_id</tt><a class="headerlink" href="#put--#account_id-searches-#search_id" title="Permalink to this definition">¶</a></dt> +<dd><p>Update a saved search.</p> +<p>No parameters are required, but either the <tt class="docutils literal"><span class="pre">name</span></tt> or <tt class="docutils literal"><span class="pre">criteria</span></tt> +parameter must be present for an update to occur.</p> +<table class="docutils field-list" frame="void" rules="none"> +<col class="field-name" /> +<col class="field-body" /> +<tbody valign="top"> +<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> +<li><strong>criteria</strong> (<em>array</em>) – A combination of search conditions, as described +above (see <cite>create_search</cite>).</li> +<li><strong>name</strong> (<em>string</em>) – A name used to describe this search.</li> +</ul> +</td> +</tr> +<tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">True if the update was successful</p> +</td> +</tr> +<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><p class="first"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the search does not exist.</p> +</td> +</tr> +<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http400</span></tt> if the search criteria is invalid</p> +</td> +</tr> +</tbody> +</table> +<p> +<div class="sample-response hide-response"> +<span style="font-weight:bold;">Sample Response</span> +<a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>PUT /100/searches/200</b> +{ + "criteria": [ + "or", + [ + "group", + "eq", + "Monthly Newsletter" + ], + [ + "group", + "eq", + "Special Events" + ] + ] +} + +true +</pre> +</div> +</p> +</dd></dl> + +<dl class="delete"> +<dt id="delete--#account_id-searches-#search_id"> +<tt class="descname">DELETE </tt><tt class="descname">/#account_id/searches/#search_id</tt><a class="headerlink" href="#delete--#account_id-searches-#search_id" title="Permalink to this definition">¶</a></dt> +<dd><p>Delete a saved search. The member records referred to by the search +are not affected.</p> +<table class="docutils field-list" frame="void" rules="none"> +<col class="field-name" /> +<col class="field-body" /> +<tbody valign="top"> +<tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">True if the search is deleted.</td> +</tr> +<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the search does not exist.</td> +</tr> +</tbody> +</table> +<p> +<div class="sample-response hide-response"> +<span style="font-weight:bold;">Sample Response</span> +<a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>DELETE /100/searches/200</b> + +true +</pre> +</div> +</p> +</dd></dl> + +<dl class="get"> +<dt id="get--#account_id-searches-#search_id-members"> +<tt class="descname">GET </tt><tt class="descname">/#account_id/searches/#search_id/members</tt><a class="headerlink" href="#get--#account_id-searches-#search_id-members" title="Permalink to this definition">¶</a></dt> +<dd><p>Get the members matching the search.</p> +<table class="docutils field-list" frame="void" rules="none"> +<col class="field-name" /> +<col class="field-body" /> +<tbody valign="top"> +<tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">An array of members.</td> +</tr> +<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the search does not exist.</td> +</tr> +</tbody> +</table> +<p> +<div class="sample-response hide-response"> +<span style="font-weight:bold;">Sample Response</span> +<a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>GET /100/searches/201/members</b> + +[ + { + "status": "active", + "confirmed_opt_in": null, + "account_id": 100, + "fields": { + "first_name": "Emma", + "last_name": "Smith", + "favorite_food": "tacos" + }, + "member_id": 200, + "last_modified_at": null, + "member_status_id": "a", + "plaintext_preferred": false, + "email_error": null, + "member_since": "@D:2010-11-12T11:23:45", + "bounce_count": 0, + "deleted_at": null, + "email": "emma@myemma.com" + }, + { + "status": "opt-out", + "confirmed_opt_in": null, + "account_id": 100, + "fields": { + "first_name": "Gladys", + "last_name": "Jones", + "favorite_food": "toast" + }, + "member_id": 201, + "last_modified_at": null, + "member_status_id": "o", + "plaintext_preferred": false, + "email_error": null, + "member_since": "@D:2011-01-03T15:54:13", + "bounce_count": 0, + "deleted_at": null, + "email": "gladys@myemma.com" + }, + { + "status": "active", + "confirmed_opt_in": null, + "account_id": 100, + "fields": { + "first_name": "Tony", + "last_name": "Brown", + "favorite_food": "pizza" + }, + "member_id": 202, + "last_modified_at": null, + "member_status_id": "a", + "plaintext_preferred": false, + "email_error": null, + "member_since": "@D:2010-11-12T09:12:33", + "bounce_count": 0, + "deleted_at": null, + "email": "tony@myemma.com" + }, + { + "status": "active", + "confirmed_opt_in": null, + "account_id": 100, + "fields": { + + }, + "member_id": 204, + "last_modified_at": null, + "member_status_id": "a", + "plaintext_preferred": false, + "email_error": null, + "member_since": "@D:2010-12-13T23:12:44", + "bounce_count": 0, + "deleted_at": null, + "email": "bob@myemma.com" + } +] + +</pre> +</div> +</p> +</dd></dl> + +</div> + + + </div> + </div> + </div> + <div class="sphinxsidebar"> + <div class="sphinxsidebarwrapper"><h3>Related Topics</h3> +<ul> + <li><a href="../../index.html">Documentation overview</a><ul> + <li>Previous: <a href="response.html" title="previous chapter">Response</a></li> + <li>Next: <a href="triggers.html" title="next chapter">Triggers</a></li> + </ul></li> +</ul> +<div id="searchbox" style="display: none"> + <h3>Quick search</h3> + <form class="search" action="../../search.html" method="get"> + <input type="text" name="q" /> + <input type="submit" value="Go" /> + <input type="hidden" name="check_keywords" value="yes" /> + <input type="hidden" name="area" value="default" /> + </form> + <p class="searchtip" style="font-size: 90%"> + Enter search terms or a module, class or function name. + </p> +</div> +<script type="text/javascript">$('#searchbox').show(0);</script> + </div> + </div> + <div class="clearer"></div> + </div> + <div class="footer"> + © Copyright 2012, Emma. + Last updated on Dec 17, 2012 at 10:51. + </div> + </body> +</html> \ No newline at end of file diff --git a/api/external/triggers.html b/api/external/triggers.html new file mode 100644 index 0000000..0801b19 --- /dev/null +++ b/api/external/triggers.html @@ -0,0 +1,464 @@ + +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> + + +<html xmlns="http://www.w3.org/1999/xhtml"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> + + <title>Triggers — audience 0.1 documentation</title> + + <link rel="stylesheet" href="../../_static/emma.css" type="text/css" /> + <link rel="stylesheet" href="../../_static/pygments.css" type="text/css" /> + + <script type="text/javascript"> + var DOCUMENTATION_OPTIONS = { + URL_ROOT: '../../', + VERSION: '0.1', + COLLAPSE_INDEX: false, + FILE_SUFFIX: '.html', + HAS_SOURCE: true + }; + </script> + <script type="text/javascript" src="../../_static/jquery.js"></script> + <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="Webhooks" href="webhooks.html" /> + <link rel="prev" title="Searches" href="searches.html" /> + + + <style type="text/css"> + .resp-trigger, .resp-trigger:hover {font-size:10pt;text-decoration:none;} + div.sample-response.hide-response pre.response {display: none;} + div.sample-response .tshow, + div.sample-response.hide-response .thide {display: none;} + div.sample-response .thide, + div.sample-response.hide-response .tshow {display: inline;} + </style> + <script> + $().ready(function() { + $("a.resp-trigger").click(function(e) { + e.preventDefault(); + $(this).parents("div.sample-response").toggleClass("hide-response"); + }); + }); + </script> + + </head> + <body> +<header role="banner"> + <h1>Emma API Documentation</h1> +</header> + <div class="related"> + <h3>Navigation</h3> + <ul> + <li class="right" style="margin-right: 10px"> + <a href="../../genindex.html" title="General Index" + accesskey="I">index</a></li> + <li class="right" > + <a href="../../http-routingtable.html" title="HTTP Routing Table" + >routing table</a> |</li> + <li class="right" > + <a href="webhooks.html" title="Webhooks" + accesskey="N">next</a> |</li> + <li class="right" > + <a href="searches.html" title="Searches" + accesskey="P">previous</a> |</li> + <li><a href="../../index.html">audience 0.1 documentation</a> »</li> + </ul> + </div> + + <div class="document"> + <div class="documentwrapper"> + <div class="bodywrapper"> + <div class="body"> + + <div class="section" id="triggers"> +<h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this headline">¶</a></h1> +<p>These endpoints provide CRUD operations for our trigger system. Creating a +trigger is probably the most widely used of these operations.</p> +<dl class="get"> +<dt id="get--#account_id-triggers"> +<tt class="descname">GET </tt><tt class="descname">/#account_id/triggers</tt><a class="headerlink" href="#get--#account_id-triggers" title="Permalink to this definition">¶</a></dt> +<dd><p>Get a basic listing of all triggers in an account.</p> +<p> +<div class="sample-response hide-response"> +<span style="font-weight:bold;">Sample Response</span> +<a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>GET /100/triggers</b> + +[ + { + "parent_mailing": { + "mailing_type": "m", + "send_started": null, + "signup_form_id": null, + "mailing_id": 200, + "plaintext": "Hello [% member:first_name %]!", + "recipient_count": 0, + "year": null, + "account_id": 100, + "month": null, + "disabled": false, + "parent_mailing_id": null, + "started_or_finished": null, + "name": "Sample Mailing", + "mailing_status": "c", + "plaintext_only": false, + "sender": "Kevin McConnell", + "send_finished": null, + "send_at": null, + "reply_to": null, + "subject": "Sample Mailing for [% member:first_name %] [% member:last_name %]", + "archived_ts": null, + "html_body": "<p>Hello [% member:first_name %]!</p>" + }, + "surveys": null, + "event_type": "r", + "links": null, + "field_id": 203, + "push_offset_units": "0:-14:0:0", + "start_ts": "@D:2012-12-17T10:51:51", + "trigger_id": 100, + "signups": null, + "push_offset": "@I:-1209600.0", + "account_id": 100, + "groups": null, + "parent_mailing_id": 200, + "deleted_at": null, + "is_disabled": false, + "name": "Birthday triggers" + }, + { + "parent_mailing": { + "mailing_type": "m", + "send_started": null, + "signup_form_id": null, + "mailing_id": 200, + "plaintext": "Hello [% member:first_name %]!", + "recipient_count": 0, + "year": null, + "account_id": 100, + "month": null, + "disabled": false, + "parent_mailing_id": null, + "started_or_finished": null, + "name": "Sample Mailing", + "mailing_status": "c", + "plaintext_only": false, + "sender": "Kevin McConnell", + "send_finished": null, + "send_at": null, + "reply_to": null, + "subject": "Sample Mailing for [% member:first_name %] [% member:last_name %]", + "archived_ts": null, + "html_body": "<p>Hello [% member:first_name %]!</p>" + }, + "surveys": null, + "event_type": "s", + "links": null, + "field_id": null, + "push_offset_units": "0:3:0:0", + "start_ts": "@D:2012-12-17T10:51:51", + "trigger_id": 101, + "signups": [ + 1, + 2, + 3 + ], + "push_offset": "@I:259200.0", + "account_id": 100, + "groups": null, + "parent_mailing_id": 200, + "deleted_at": null, + "is_disabled": false, + "name": "Test Signup Form triggers" + } +] + +</pre> +</div> +</p> +</dd></dl> + +<dl class="post"> +<dt id="post--#account_id-triggers"> +<tt class="descname">POST </tt><tt class="descname">/#account_id/triggers</tt><a class="headerlink" href="#post--#account_id-triggers" title="Permalink to this definition">¶</a></dt> +<dd><p>Create a new trigger.</p> +<table class="docutils field-list" frame="void" rules="none"> +<col class="field-name" /> +<col class="field-body" /> +<tbody valign="top"> +<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> +<li><strong>name</strong> (<em>string</em>) – A descriptive name for the trigger.</li> +<li><strong>event_type</strong> (<em>string</em>) – The type of event that causes this trigger to fire. +Accepts one of ‘s’ (signup), ‘c’ (click), ‘u’ (survey), ‘d’ (date), +‘r’ (recurring date).</li> +<li><strong>parent_mailing_id</strong> (<em>integer</em>) – The id of the mailing this trigger will use +as a template for message generation.</li> +<li><strong>groups</strong> (<em>array</em>) – An optional array of group ids to which this trigger +will apply.</li> +<li><strong>links</strong> (<em>array</em>) – An array of link_ids for click triggers.</li> +<li><strong>signups</strong> (<em>array</em>) – An array of signup_form_ids for signup triggers.</li> +<li><strong>surveys</strong> (<em>array</em>) – An array of survey_ids for survey triggers.</li> +<li><strong>field_id</strong> (<em>integer</em>) – A field id to which this trigger will apply if it is +a date or recurring date trigger.</li> +<li><strong>push_offset</strong> (<em>integer</em>) – An optional delay interval for messages created +from this trigger (specified in seconds).</li> +<li><strong>is_disabled</strong> (<em>boolean</em>) – An optional flag to disable the trigger.</li> +</ul> +</td> +</tr> +<tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">The new trigger’s id.</p> +</td> +</tr> +<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><p class="first"><tt class="docutils literal"><span class="pre">Http500</span></tt> if object_ids is null and event_type is one of: +‘s’ (signup), ‘c’ (click), ‘u’ (survey).</p> +</td> +</tr> +<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http500</span></tt> if field_id is null and event_type is one of: +‘d’ (date), ‘r’ (recurring date).</p> +</td> +</tr> +</tbody> +</table> +<p> +<div class="sample-response hide-response"> +<span style="font-weight:bold;">Sample Response</span> +<a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>POST /100/triggers</b> +{ + "parent_mailing_id": 200, + "object_ids": [ + 10, + 20, + 30 + ], + "name": "Test", + "event_type": "c" +} + +1024 +</pre> +</div> +</p> +</dd></dl> + +<dl class="get"> +<dt id="get--#account_id-triggers-#trigger_id"> +<tt class="descname">GET </tt><tt class="descname">/#account_id/triggers/#trigger_id</tt><a class="headerlink" href="#get--#account_id-triggers-#trigger_id" title="Permalink to this definition">¶</a></dt> +<dd><p>Look up a trigger by trigger id.</p> +<table class="docutils field-list" frame="void" rules="none"> +<col class="field-name" /> +<col class="field-body" /> +<tbody valign="top"> +<tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">A trigger.</td> +</tr> +<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no trigger is found.</td> +</tr> +</tbody> +</table> +<p> +<div class="sample-response hide-response"> +<span style="font-weight:bold;">Sample Response</span> +<a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>GET /100/triggers/100</b> + +{ + "parent_mailing": { + "mailing_type": "m", + "send_started": null, + "signup_form_id": null, + "mailing_id": 200, + "plaintext": "Hello [% member:first_name %]!", + "recipient_count": 0, + "year": null, + "account_id": 100, + "month": null, + "disabled": false, + "parent_mailing_id": null, + "started_or_finished": null, + "name": "Sample Mailing", + "mailing_status": "c", + "plaintext_only": false, + "sender": "Kevin McConnell", + "send_finished": null, + "send_at": null, + "reply_to": null, + "subject": "Sample Mailing for [% member:first_name %] [% member:last_name %]", + "archived_ts": null, + "html_body": "<p>Hello [% member:first_name %]!</p>" + }, + "surveys": null, + "event_type": "r", + "links": null, + "field_id": 203, + "push_offset_units": "0:-14:0:0", + "start_ts": "@D:2012-12-17T10:51:51", + "trigger_id": 100, + "signups": null, + "push_offset": "@I:-1209600.0", + "account_id": 100, + "groups": null, + "parent_mailing_id": 200, + "deleted_at": null, + "is_disabled": false, + "name": "Birthday triggers" +} +</pre> +</div> +</p> +</dd></dl> + +<dl class="put"> +<dt id="put--#account_id-triggers-#trigger_id"> +<tt class="descname">PUT </tt><tt class="descname">/#account_id/triggers/#trigger_id</tt><a class="headerlink" href="#put--#account_id-triggers-#trigger_id" title="Permalink to this definition">¶</a></dt> +<dd><p>Update or edit a trigger.</p> +<table class="docutils field-list" frame="void" rules="none"> +<col class="field-name" /> +<col class="field-body" /> +<tbody valign="top"> +<tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">The id of the updated trigger.</td> +</tr> +<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no trigger is found.</td> +</tr> +</tbody> +</table> +<p> +<div class="sample-response hide-response"> +<span style="font-weight:bold;">Sample Response</span> +<a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>PUT /100/triggers/100</b> +{ + "name": "A Better Trigger" +} + +100 +</pre> +</div> +</p> +</dd></dl> + +<dl class="delete"> +<dt id="delete--#account_id-triggers-#trigger_id"> +<tt class="descname">DELETE </tt><tt class="descname">/#account_id/triggers/#trigger_id</tt><a class="headerlink" href="#delete--#account_id-triggers-#trigger_id" title="Permalink to this definition">¶</a></dt> +<dd><p>Delete a trigger.</p> +<table class="docutils field-list" frame="void" rules="none"> +<col class="field-name" /> +<col class="field-body" /> +<tbody valign="top"> +<tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">True if the trigger is deleted.</td> +</tr> +<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no trigger is found.</td> +</tr> +</tbody> +</table> +<p> +<div class="sample-response hide-response"> +<span style="font-weight:bold;">Sample Response</span> +<a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>DELETE /100/triggers/100</b> + +true +</pre> +</div> +</p> +</dd></dl> + +<dl class="get"> +<dt id="get--#account_id-triggers-#trigger_id-mailings"> +<tt class="descname">GET </tt><tt class="descname">/#account_id/triggers/#trigger_id/mailings</tt><a class="headerlink" href="#get--#account_id-triggers-#trigger_id-mailings" title="Permalink to this definition">¶</a></dt> +<dd><p>Get mailings sent by a trigger.</p> +<table class="docutils field-list" frame="void" rules="none"> +<col class="field-name" /> +<col class="field-body" /> +<tbody valign="top"> +<tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">An array of mailings.</td> +</tr> +<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no trigger is found.</td> +</tr> +</tbody> +</table> +<p> +<div class="sample-response hide-response"> +<span style="font-weight:bold;">Sample Response</span> +<a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>GET /100/triggers/101/mailings</b> + +[ + { + "mailing_type": "m", + "send_started": null, + "signup_form_id": null, + "mailing_id": 200, + "plaintext": "Hello [% member:first_name %]!", + "recipient_count": 0, + "year": null, + "account_id": 100, + "month": null, + "disabled": false, + "parent_mailing_id": null, + "started_or_finished": null, + "name": "Sample Mailing", + "mailing_status": "c", + "plaintext_only": false, + "sender": "Kevin McConnell", + "send_finished": null, + "send_at": null, + "reply_to": null, + "subject": "Sample Mailing for [% member:first_name %] [% member:last_name %]", + "archived_ts": null, + "html_body": "<p>Hello [% member:first_name %]!</p>" + } +] + +</pre> +</div> +</p> +</dd></dl> + +</div> + + + </div> + </div> + </div> + <div class="sphinxsidebar"> + <div class="sphinxsidebarwrapper"><h3>Related Topics</h3> +<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="webhooks.html" title="next chapter">Webhooks</a></li> + </ul></li> +</ul> +<div id="searchbox" style="display: none"> + <h3>Quick search</h3> + <form class="search" action="../../search.html" method="get"> + <input type="text" name="q" /> + <input type="submit" value="Go" /> + <input type="hidden" name="check_keywords" value="yes" /> + <input type="hidden" name="area" value="default" /> + </form> + <p class="searchtip" style="font-size: 90%"> + Enter search terms or a module, class or function name. + </p> +</div> +<script type="text/javascript">$('#searchbox').show(0);</script> + </div> + </div> + <div class="clearer"></div> + </div> + <div class="footer"> + © Copyright 2012, Emma. + Last updated on Dec 17, 2012 at 10:51. + </div> + </body> +</html> \ No newline at end of file diff --git a/api/external/webhooks.html b/api/external/webhooks.html new file mode 100644 index 0000000..0b822c4 --- /dev/null +++ b/api/external/webhooks.html @@ -0,0 +1,452 @@ + +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> + + +<html xmlns="http://www.w3.org/1999/xhtml"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> + + <title>Webhooks — audience 0.1 documentation</title> + + <link rel="stylesheet" href="../../_static/emma.css" type="text/css" /> + <link rel="stylesheet" href="../../_static/pygments.css" type="text/css" /> + + <script type="text/javascript"> + var DOCUMENTATION_OPTIONS = { + URL_ROOT: '../../', + VERSION: '0.1', + COLLAPSE_INDEX: false, + FILE_SUFFIX: '.html', + HAS_SOURCE: true + }; + </script> + <script type="text/javascript" src="../../_static/jquery.js"></script> + <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="Pagination" href="../../pagination.html" /> + <link rel="prev" title="Triggers" href="triggers.html" /> + + + <style type="text/css"> + .resp-trigger, .resp-trigger:hover {font-size:10pt;text-decoration:none;} + div.sample-response.hide-response pre.response {display: none;} + div.sample-response .tshow, + div.sample-response.hide-response .thide {display: none;} + div.sample-response .thide, + div.sample-response.hide-response .tshow {display: inline;} + </style> + <script> + $().ready(function() { + $("a.resp-trigger").click(function(e) { + e.preventDefault(); + $(this).parents("div.sample-response").toggleClass("hide-response"); + }); + }); + </script> + + </head> + <body> +<header role="banner"> + <h1>Emma API Documentation</h1> +</header> + <div class="related"> + <h3>Navigation</h3> + <ul> + <li class="right" style="margin-right: 10px"> + <a href="../../genindex.html" title="General Index" + accesskey="I">index</a></li> + <li class="right" > + <a href="../../http-routingtable.html" title="HTTP Routing Table" + >routing table</a> |</li> + <li class="right" > + <a href="../../pagination.html" title="Pagination" + accesskey="N">next</a> |</li> + <li class="right" > + <a href="triggers.html" title="Triggers" + accesskey="P">previous</a> |</li> + <li><a href="../../index.html">audience 0.1 documentation</a> »</li> + </ul> + </div> + + <div class="document"> + <div class="documentwrapper"> + <div class="bodywrapper"> + <div class="body"> + + <div class="section" id="webhooks"> +<h1>Webhooks<a class="headerlink" href="#webhooks" title="Permalink to this headline">¶</a></h1> +<p>You can manage your webhooks with these endpoints. Of particular interest +might be the <tt class="docutils literal"><span class="pre">GET</span> <span class="pre">/#account_id/webhooks/events</span></tt> endpoint which lets you +know which events our system can send out webhooks for. You can <a class="reference internal" href="../../webhooks.html"><em>get more +info about how our webhooks work</em></a>.</p> +<dl class="get"> +<dt id="get--#account_id-webhooks"> +<tt class="descname">GET </tt><tt class="descname">/#account_id/webhooks</tt><a class="headerlink" href="#get--#account_id-webhooks" title="Permalink to this definition">¶</a></dt> +<dd><p>Get a basic listing of all webhooks associated with an account.</p> +<table class="docutils field-list" frame="void" rules="none"> +<col class="field-name" /> +<col class="field-body" /> +<tbody valign="top"> +<tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">A list of webhooks that belong to the given account.</td> +</tr> +</tbody> +</table> +<p> +<div class="sample-response hide-response"> +<span style="font-weight:bold;">Sample Response</span> +<a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>GET /100/webhooks</b> + +[ + { + "url": "http://myemma.com", + "webhook_id": 100, + "method": "POST", + "account_id": 100, + "event": "mailing_finish" + }, + { + "url": "http://tech.myemma.com", + "webhook_id": 101, + "method": "POST", + "account_id": 100, + "event": "mailing_finish" + } +] + +</pre> +</div> +</p> +</dd></dl> + +<dl class="get"> +<dt id="get--#account_id-webhooks-#webhook_id"> +<tt class="descname">GET </tt><tt class="descname">/#account_id/webhooks/#webhook_id</tt><a class="headerlink" href="#get--#account_id-webhooks-#webhook_id" title="Permalink to this definition">¶</a></dt> +<dd><p>Get information for a specific webhook belonging to a specific account.</p> +<table class="docutils field-list" frame="void" rules="none"> +<col class="field-name" /> +<col class="field-body" /> +<tbody valign="top"> +<tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">Details for a single webhook</td> +</tr> +<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no webhook found</td> +</tr> +</tbody> +</table> +<p> +<div class="sample-response hide-response"> +<span style="font-weight:bold;">Sample Response</span> +<a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>GET /100/webhooks/100</b> + +{ + "url": "http://myemma.com", + "event": "mailing_finish", + "method": "POST", + "account_id": 100, + "webhook_id": 100 +} +</pre> +</div> +</p> +</dd></dl> + +<dl class="get"> +<dt id="get--#account_id-webhooks-events"> +<tt class="descname">GET </tt><tt class="descname">/#account_id/webhooks/events</tt><a class="headerlink" href="#get--#account_id-webhooks-events" title="Permalink to this definition">¶</a></dt> +<dd><p>Get a listing of all event types that are available for +webhooks.</p> +<table class="docutils field-list" frame="void" rules="none"> +<col class="field-name" /> +<col class="field-body" /> +<tbody valign="top"> +<tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">A list of event types and descriptions</td> +</tr> +</tbody> +</table> +<p> +<div class="sample-response hide-response"> +<span style="font-weight:bold;">Sample Response</span> +<a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>GET /100/webhooks/events</b> + +[ + { + "event_name": "mailing_finish", + "webhook_event_id": 1, + "description": "Fired when a mailing is finished." + }, + { + "event_name": "mailing_start", + "webhook_event_id": 2, + "description": "Fired when a mailing starts." + }, + { + "event_name": "member_signup", + "webhook_event_id": 3, + "description": "Fired when a member signs up through a signup form." + }, + { + "event_name": "message_open", + "webhook_event_id": 4, + "description": "Fired when a message is opened." + }, + { + "event_name": "message_click", + "webhook_event_id": 5, + "description": "Fired when a link in a message is clicked." + }, + { + "event_name": "member_optout", + "webhook_event_id": 6, + "description": "Fired when a member opts out." + }, + { + "event_name": "message_share", + "webhook_event_id": 7, + "description": "Fired when a member shares a message." + }, + { + "event_name": "message_share_click", + "webhook_event_id": 8, + "description": "Fired when a someone follows a link a member has shared." + }, + { + "event_name": "import_finish", + "webhook_event_id": 9, + "description": "Fired when a member import completes." + }, + { + "event_name": "member_update", + "webhook_event_id": 10, + "description": "Fired when a member is updated." + }, + { + "event_name": "member_delete", + "webhook_event_id": 11, + "description": "Fired when a member is deleted." + }, + { + "event_name": "member_add_to_group", + "webhook_event_id": 12, + "description": "Fired when a member(s) is added to a group(s)." + }, + { + "event_name": "member_remove_from_group", + "webhook_event_id": 13, + "description": "Fired when a member(s) is removed from a group(s)." + }, + { + "event_name": "group_create", + "webhook_event_id": 14, + "description": "Fired when a group is created." + }, + { + "event_name": "group_delete", + "webhook_event_id": 15, + "description": "Fired when a group is deleted." + }, + { + "event_name": "group_update", + "webhook_event_id": 16, + "description": "Fired when a group is updated." + }, + { + "event_name": "member_status_update", + "webhook_event_id": 17, + "description": "Fired when a member's status changes." + }, + { + "event_name": "message_forward", + "webhook_event_id": 18, + "description": "Fired when a message is forwarded." + }, + { + "event_name": "member_add", + "webhook_event_id": 19, + "description": "Fired when a single member is added." + }, + { + "event_name": "field_create", + "webhook_event_id": 20, + "description": "Fired when a field is created." + }, + { + "event_name": "field_delete", + "webhook_event_id": 21, + "description": "Fired when a field is deleted." + }, + { + "event_name": "field_update", + "webhook_event_id": 22, + "description": "Fired when a field is updated." + } +] + +</pre> +</div> +</p> +</dd></dl> + +<dl class="post"> +<dt id="post--#account_id-webhooks"> +<tt class="descname">POST </tt><tt class="descname">/#account_id/webhooks</tt><a class="headerlink" href="#post--#account_id-webhooks" title="Permalink to this definition">¶</a></dt> +<dd><p>Create an new webhook.</p> +<p>If method is ‘POST’, the data will be posted to the given URL as a blob of JSON. If the method +is ‘GET’ the data will be added to the query string of your URL as a url encoded blob of JSON +in a key called ‘payload’.</p> +<table class="docutils field-list" frame="void" rules="none"> +<col class="field-name" /> +<col class="field-body" /> +<tbody valign="top"> +<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first last simple"> +<li><strong>event</strong> (<em>string</em>) – The name of an event to register this webhook for</li> +<li><strong>url</strong> (<em>string</em>) – The URL to call when the event happens</li> +<li><strong>method</strong> (<em>string</em>) – The method to use when calling the webhook. Can be GET or POST. Defaults to POST.</li> +<li><strong>public_key</strong> – The public_key to use for authentication. Note: this can also be spelled “user_id” but this is deprecated.</li> +</ul> +</td> +</tr> +</tbody> +</table> +<p> +<div class="sample-response hide-response"> +<span style="font-weight:bold;">Sample Response</span> +<a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>POST /100/webhooks</b> +{ + "url": "http://myemma.com/blog/", + "event": "mailing_finish" +} + +1024 +</pre> +</div> +</p> +</dd></dl> + +<dl class="put"> +<dt id="put--#account_id-webhooks-#webhook_id"> +<tt class="descname">PUT </tt><tt class="descname">/#account_id/webhooks/#webhook_id</tt><a class="headerlink" href="#put--#account_id-webhooks-#webhook_id" title="Permalink to this definition">¶</a></dt> +<dd><p>Update an existing webhook. Takes the same params as create_webhook.</p> +<table class="docutils field-list" frame="void" rules="none"> +<col class="field-name" /> +<col class="field-body" /> +<tbody valign="top"> +<tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">The id of the updated webhook, or False if the update failed.</td> +</tr> +<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the webhook cannot be found.</td> +</tr> +</tbody> +</table> +<p> +<div class="sample-response hide-response"> +<span style="font-weight:bold;">Sample Response</span> +<a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>PUT /100/webhooks/100</b> +{ + "url": "http://tech.myemma.com/" +} + +100 +</pre> +</div> +</p> +</dd></dl> + +<dl class="delete"> +<dt id="delete--#account_id-webhooks-#webhook_id"> +<tt class="descname">DELETE </tt><tt class="descname">/#account_id/webhooks/#webhook_id</tt><a class="headerlink" href="#delete--#account_id-webhooks-#webhook_id" title="Permalink to this definition">¶</a></dt> +<dd><p>Deletes an existing webhook.</p> +<table class="docutils field-list" frame="void" rules="none"> +<col class="field-name" /> +<col class="field-body" /> +<tbody valign="top"> +<tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">True if the webhook deleted successufully.</td> +</tr> +<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no webhook found</td> +</tr> +</tbody> +</table> +<p> +<div class="sample-response hide-response"> +<span style="font-weight:bold;">Sample Response</span> +<a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>DELETE /100/webhooks/101</b> + +true +</pre> +</div> +</p> +</dd></dl> + +<dl class="delete"> +<dt id="delete--#account_id-webhooks"> +<tt class="descname">DELETE </tt><tt class="descname">/#account_id/webhooks</tt><a class="headerlink" href="#delete--#account_id-webhooks" title="Permalink to this definition">¶</a></dt> +<dd><p>Delete all webhooks registered for an account.</p> +<table class="docutils field-list" frame="void" rules="none"> +<col class="field-name" /> +<col class="field-body" /> +<tbody valign="top"> +<tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">True if the webhooks deleted successufully.</td> +</tr> +</tbody> +</table> +<p> +<div class="sample-response hide-response"> +<span style="font-weight:bold;">Sample Response</span> +<a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>DELETE /100/webhooks</b> + +true +</pre> +</div> +</p> +</dd></dl> + +</div> + + + </div> + </div> + </div> + <div class="sphinxsidebar"> + <div class="sphinxsidebarwrapper"><h3>Related Topics</h3> +<ul> + <li><a href="../../index.html">Documentation overview</a><ul> + <li>Previous: <a href="triggers.html" title="previous chapter">Triggers</a></li> + <li>Next: <a href="../../pagination.html" title="next chapter">Pagination</a></li> + </ul></li> +</ul> +<div id="searchbox" style="display: none"> + <h3>Quick search</h3> + <form class="search" action="../../search.html" method="get"> + <input type="text" name="q" /> + <input type="submit" value="Go" /> + <input type="hidden" name="check_keywords" value="yes" /> + <input type="hidden" name="area" value="default" /> + </form> + <p class="searchtip" style="font-size: 90%"> + Enter search terms or a module, class or function name. + </p> +</div> +<script type="text/javascript">$('#searchbox').show(0);</script> + </div> + </div> + <div class="clearer"></div> + </div> + <div class="footer"> + © Copyright 2012, Emma. + Last updated on Dec 17, 2012 at 10:51. + </div> + </body> +</html> \ No newline at end of file diff --git a/genindex.html b/genindex.html new file mode 100644 index 0000000..d729d1d --- /dev/null +++ b/genindex.html @@ -0,0 +1,114 @@ + + + +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> + + +<html xmlns="http://www.w3.org/1999/xhtml"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> + + <title>Index — audience 0.1 documentation</title> + + <link rel="stylesheet" href="_static/emma.css" type="text/css" /> + <link rel="stylesheet" href="_static/pygments.css" type="text/css" /> + + <script type="text/javascript"> + var DOCUMENTATION_OPTIONS = { + URL_ROOT: '', + VERSION: '0.1', + COLLAPSE_INDEX: false, + FILE_SUFFIX: '.html', + HAS_SOURCE: true + }; + </script> + <script type="text/javascript" src="_static/jquery.js"></script> + <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" /> + + + <style type="text/css"> + .resp-trigger, .resp-trigger:hover {font-size:10pt;text-decoration:none;} + div.sample-response.hide-response pre.response {display: none;} + div.sample-response .tshow, + div.sample-response.hide-response .thide {display: none;} + div.sample-response .thide, + div.sample-response.hide-response .tshow {display: inline;} + </style> + <script> + $().ready(function() { + $("a.resp-trigger").click(function(e) { + e.preventDefault(); + $(this).parents("div.sample-response").toggleClass("hide-response"); + }); + }); + </script> + + </head> + <body> +<header role="banner"> + <h1>Emma API Documentation</h1> +</header> + <div class="related"> + <h3>Navigation</h3> + <ul> + <li class="right" style="margin-right: 10px"> + <a href="#" title="General Index" + accesskey="I">index</a></li> + <li class="right" > + <a href="http-routingtable.html" title="HTTP Routing Table" + >routing table</a> |</li> + <li><a href="index.html">audience 0.1 documentation</a> »</li> + </ul> + </div> + + <div class="document"> + <div class="documentwrapper"> + <div class="bodywrapper"> + <div class="body"> + + +<h1 id="index">Index</h1> + +<div class="genindex-jumpbox"> + +</div> + + + </div> + </div> + </div> + <div class="sphinxsidebar"> + <div class="sphinxsidebarwrapper"> + + <h3>Related Topics</h3> +<ul> + <li><a href="index.html">Documentation overview</a><ul> + </ul></li> +</ul> + +<div id="searchbox" style="display: none"> + <h3>Quick search</h3> + <form class="search" action="search.html" method="get"> + <input type="text" name="q" /> + <input type="submit" value="Go" /> + <input type="hidden" name="check_keywords" value="yes" /> + <input type="hidden" name="area" value="default" /> + </form> + <p class="searchtip" style="font-size: 90%"> + Enter search terms or a module, class or function name. + </p> +</div> +<script type="text/javascript">$('#searchbox').show(0);</script> + </div> + </div> + <div class="clearer"></div> + </div> + <div class="footer"> + © Copyright 2012, Emma. + Last updated on Dec 17, 2012 at 10:51. + </div> + </body> +</html> \ No newline at end of file diff --git a/http-routingtable.html b/http-routingtable.html new file mode 100644 index 0000000..809e80e --- /dev/null +++ b/http-routingtable.html @@ -0,0 +1,567 @@ + +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> + + +<html xmlns="http://www.w3.org/1999/xhtml"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> + + <title>HTTP Routing Table — audience 0.1 documentation</title> + + <link rel="stylesheet" href="_static/emma.css" type="text/css" /> + <link rel="stylesheet" href="_static/pygments.css" type="text/css" /> + + <script type="text/javascript"> + var DOCUMENTATION_OPTIONS = { + URL_ROOT: '', + VERSION: '0.1', + COLLAPSE_INDEX: false, + FILE_SUFFIX: '.html', + HAS_SOURCE: true + }; + </script> + <script type="text/javascript" src="_static/jquery.js"></script> + <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" /> + + + + <style type="text/css"> + .resp-trigger, .resp-trigger:hover {font-size:10pt;text-decoration:none;} + div.sample-response.hide-response pre.response {display: none;} + div.sample-response .tshow, + div.sample-response.hide-response .thide {display: none;} + div.sample-response .thide, + div.sample-response.hide-response .tshow {display: inline;} + </style> + <script> + $().ready(function() { + $("a.resp-trigger").click(function(e) { + e.preventDefault(); + $(this).parents("div.sample-response").toggleClass("hide-response"); + }); + }); + </script> + + + <script type="text/javascript"> + DOCUMENTATION_OPTIONS.COLLAPSE_INDEX = true; + </script> + + + </head> + <body> +<header role="banner"> + <h1>Emma API Documentation</h1> +</header> + <div class="related"> + <h3>Navigation</h3> + <ul> + <li class="right" style="margin-right: 10px"> + <a href="genindex.html" title="General Index" + accesskey="I">index</a></li> + <li class="right" > + <a href="#" title="HTTP Routing Table" + >routing table</a> |</li> + <li><a href="index.html">audience 0.1 documentation</a> »</li> + </ul> + </div> + + <div class="document"> + <div class="documentwrapper"> + <div class="bodywrapper"> + <div class="body"> + + + <h1>HTTP Routing Table</h1> + + <div class="modindex-jumpbox"> + <a href="#cap-/#account_id"><strong>/#account_id</strong></a> + </div> + + <table class="indextable modindextable" cellspacing="0" cellpadding="2"> + <tr class="pcap"><td></td><td> </td><td></td></tr> + <tr class="cap" id="cap-/#account_id"><td></td><td> + <strong>/#account_id</strong></td><td></td></tr> + <tr> + <td></td> + <td> + <a href="api/external/fields.html#get--#account_id-fields"><tt class="xref">GET /#account_id/fields</tt></a></td><td> + <em></em></td></tr> + <tr> + <td></td> + <td> + <a href="api/external/fields.html#post--#account_id-fields"><tt class="xref">POST /#account_id/fields</tt></a></td><td> + <em></em></td></tr> + <tr> + <td></td> + <td> + <a href="api/external/fields.html#get--#account_id-fields-#field_id"><tt class="xref">GET /#account_id/fields/#field_id</tt></a></td><td> + <em></em></td></tr> + <tr> + <td></td> + <td> + <a href="api/external/fields.html#put--#account_id-fields-#field_id"><tt class="xref">PUT /#account_id/fields/#field_id</tt></a></td><td> + <em></em></td></tr> + <tr> + <td></td> + <td> + <a href="api/external/fields.html#delete--#account_id-fields-#field_id"><tt class="xref">DELETE /#account_id/fields/#field_id</tt></a></td><td> + <em></em></td></tr> + <tr> + <td></td> + <td> + <a href="api/external/fields.html#post--#account_id-fields-#field_id-clear"><tt class="xref">POST /#account_id/fields/#field_id/clear</tt></a></td><td> + <em></em></td></tr> + <tr> + <td></td> + <td> + <a href="api/external/mailings.html#post--#account_id-forwards-#mailing_id-#member_id"><tt class="xref">POST /#account_id/forwards/#mailing_id/#member_id</tt></a></td><td> + <em></em></td></tr> + <tr> + <td></td> + <td> + <a href="api/external/groups.html#get--#account_id-groups"><tt class="xref">GET /#account_id/groups</tt></a></td><td> + <em></em></td></tr> + <tr> + <td></td> + <td> + <a href="api/external/groups.html#post--#account_id-groups"><tt class="xref">POST /#account_id/groups</tt></a></td><td> + <em></em></td></tr> + <tr> + <td></td> + <td> + <a href="api/external/groups.html#put--#account_id-groups-#from_group_id-#to_group_id-members-copy"><tt class="xref">PUT /#account_id/groups/#from_group_id/#to_group_id/members/copy</tt></a></td><td> + <em></em></td></tr> + <tr> + <td></td> + <td> + <a href="api/external/groups.html#get--#account_id-groups-#member_group_id"><tt class="xref">GET /#account_id/groups/#member_group_id</tt></a></td><td> + <em></em></td></tr> + <tr> + <td></td> + <td> + <a href="api/external/groups.html#put--#account_id-groups-#member_group_id"><tt class="xref">PUT /#account_id/groups/#member_group_id</tt></a></td><td> + <em></em></td></tr> + <tr> + <td></td> + <td> + <a href="api/external/groups.html#delete--#account_id-groups-#member_group_id"><tt class="xref">DELETE /#account_id/groups/#member_group_id</tt></a></td><td> + <em></em></td></tr> + <tr> + <td></td> + <td> + <a href="api/external/groups.html#get--#account_id-groups-#member_group_id-members"><tt class="xref">GET /#account_id/groups/#member_group_id/members</tt></a></td><td> + <em></em></td></tr> + <tr> + <td></td> + <td> + <a href="api/external/groups.html#put--#account_id-groups-#member_group_id-members"><tt class="xref">PUT /#account_id/groups/#member_group_id/members</tt></a></td><td> + <em></em></td></tr> + <tr> + <td></td> + <td> + <a href="api/external/groups.html#delete--#account_id-groups-#member_group_id-members"><tt class="xref">DELETE /#account_id/groups/#member_group_id/members</tt></a></td><td> + <em></em></td></tr> + <tr> + <td></td> + <td> + <a href="api/external/groups.html#put--#account_id-groups-#member_group_id-members-remove"><tt class="xref">PUT /#account_id/groups/#member_group_id/members/remove</tt></a></td><td> + <em></em></td></tr> + <tr> + <td></td> + <td> + <a href="api/external/groups.html#delete--#account_id-groups-#member_group_id-members-remove"><tt class="xref">DELETE /#account_id/groups/#member_group_id/members/remove</tt></a></td><td> + <em></em></td></tr> + <tr> + <td></td> + <td> + <a href="api/external/mailings.html#get--#account_id-mailings"><tt class="xref">GET /#account_id/mailings</tt></a></td><td> + <em></em></td></tr> + <tr> + <td></td> + <td> + <a href="api/external/mailings.html#get--#account_id-mailings-#mailing_id"><tt class="xref">GET /#account_id/mailings/#mailing_id</tt></a></td><td> + <em></em></td></tr> + <tr> + <td></td> + <td> + <a href="api/external/mailings.html#put--#account_id-mailings-#mailing_id"><tt class="xref">PUT /#account_id/mailings/#mailing_id</tt></a></td><td> + <em></em></td></tr> + <tr> + <td></td> + <td> + <a href="api/external/mailings.html#post--#account_id-mailings-#mailing_id"><tt class="xref">POST /#account_id/mailings/#mailing_id</tt></a></td><td> + <em></em></td></tr> + <tr> + <td></td> + <td> + <a href="api/external/mailings.html#delete--#account_id-mailings-#mailing_id"><tt class="xref">DELETE /#account_id/mailings/#mailing_id</tt></a></td><td> + <em></em></td></tr> + <tr> + <td></td> + <td> + <a href="api/external/mailings.html#get--#account_id-mailings-#mailing_id-groups"><tt class="xref">GET /#account_id/mailings/#mailing_id/groups</tt></a></td><td> + <em></em></td></tr> + <tr> + <td></td> + <td> + <a href="api/external/mailings.html#get--#account_id-mailings-#mailing_id-headsup"><tt class="xref">GET /#account_id/mailings/#mailing_id/headsup</tt></a></td><td> + <em></em></td></tr> + <tr> + <td></td> + <td> + <a href="api/external/mailings.html#get--#account_id-mailings-#mailing_id-members"><tt class="xref">GET /#account_id/mailings/#mailing_id/members</tt></a></td><td> + <em></em></td></tr> + <tr> + <td></td> + <td> + <a href="api/external/mailings.html#get--#account_id-mailings-#mailing_id-messages-#member_id"><tt class="xref">GET /#account_id/mailings/#mailing_id/messages/#member_id</tt></a></td><td> + <em></em></td></tr> + <tr> + <td></td> + <td> + <a href="api/external/mailings.html#get--#account_id-mailings-#mailing_id-searches"><tt class="xref">GET /#account_id/mailings/#mailing_id/searches</tt></a></td><td> + <em></em></td></tr> + <tr> + <td></td> + <td> + <a href="api/external/mailings.html#post--#account_id-mailings-#mailing_id-winner-#winner_id"><tt class="xref">POST /#account_id/mailings/#mailing_id/winner/#winner_id</tt></a></td><td> + <em></em></td></tr> + <tr> + <td></td> + <td> + <a href="api/external/mailings.html#delete--#account_id-mailings-cancel-#mailing_id"><tt class="xref">DELETE /#account_id/mailings/cancel/#mailing_id</tt></a></td><td> + <em></em></td></tr> + <tr> + <td></td> + <td> + <a href="api/external/mailings.html#post--#account_id-mailings-validate"><tt class="xref">POST /#account_id/mailings/validate</tt></a></td><td> + <em></em></td></tr> + <tr> + <td></td> + <td> + <a href="api/external/members.html#get--#account_id-members"><tt class="xref">GET /#account_id/members</tt></a></td><td> + <em></em></td></tr> + <tr> + <td></td> + <td> + <a href="api/external/members.html#post--#account_id-members"><tt class="xref">POST /#account_id/members</tt></a></td><td> + <em></em></td></tr> + <tr> + <td></td> + <td> + <a href="api/external/members.html#delete--#account_id-members"><tt class="xref">DELETE /#account_id/members</tt></a></td><td> + <em></em></td></tr> + <tr> + <td></td> + <td> + <a href="api/external/members.html#put--#account_id-members-#group_id-copy"><tt class="xref">PUT /#account_id/members/#group_id/copy</tt></a></td><td> + <em></em></td></tr> + <tr> + <td></td> + <td> + <a href="api/external/members.html#get--#account_id-members-#member_id"><tt class="xref">GET /#account_id/members/#member_id</tt></a></td><td> + <em></em></td></tr> + <tr> + <td></td> + <td> + <a href="api/external/members.html#put--#account_id-members-#member_id"><tt class="xref">PUT /#account_id/members/#member_id</tt></a></td><td> + <em></em></td></tr> + <tr> + <td></td> + <td> + <a href="api/external/members.html#delete--#account_id-members-#member_id"><tt class="xref">DELETE /#account_id/members/#member_id</tt></a></td><td> + <em></em></td></tr> + <tr> + <td></td> + <td> + <a href="api/external/members.html#get--#account_id-members-#member_id-groups"><tt class="xref">GET /#account_id/members/#member_id/groups</tt></a></td><td> + <em></em></td></tr> + <tr> + <td></td> + <td> + <a href="api/external/members.html#put--#account_id-members-#member_id-groups"><tt class="xref">PUT /#account_id/members/#member_id/groups</tt></a></td><td> + <em></em></td></tr> + <tr> + <td></td> + <td> + <a href="api/external/members.html#delete--#account_id-members-#member_id-groups"><tt class="xref">DELETE /#account_id/members/#member_id/groups</tt></a></td><td> + <em></em></td></tr> + <tr> + <td></td> + <td> + <a href="api/external/members.html#put--#account_id-members-#member_id-groups-remove"><tt class="xref">PUT /#account_id/members/#member_id/groups/remove</tt></a></td><td> + <em></em></td></tr> + <tr> + <td></td> + <td> + <a href="api/external/members.html#get--#account_id-members-#member_id-mailings"><tt class="xref">GET /#account_id/members/#member_id/mailings</tt></a></td><td> + <em></em></td></tr> + <tr> + <td></td> + <td> + <a href="api/external/members.html#get--#account_id-members-#member_id-optout"><tt class="xref">GET /#account_id/members/#member_id/optout</tt></a></td><td> + <em></em></td></tr> + <tr> + <td></td> + <td> + <a href="api/external/members.html#post--#account_id-members-add"><tt class="xref">POST /#account_id/members/add</tt></a></td><td> + <em></em></td></tr> + <tr> + <td></td> + <td> + <a href="api/external/members.html#put--#account_id-members-delete"><tt class="xref">PUT /#account_id/members/delete</tt></a></td><td> + <em></em></td></tr> + <tr> + <td></td> + <td> + <a href="api/external/members.html#get--#account_id-members-email--email"><tt class="xref">GET /#account_id/members/email/:email</tt></a></td><td> + <em></em></td></tr> + <tr> + <td></td> + <td> + <a href="api/external/members.html#put--#account_id-members-groups-remove"><tt class="xref">PUT /#account_id/members/groups/remove</tt></a></td><td> + <em></em></td></tr> + <tr> + <td></td> + <td> + <a href="api/external/members.html#get--#account_id-members-imports"><tt class="xref">GET /#account_id/members/imports</tt></a></td><td> + <em></em></td></tr> + <tr> + <td></td> + <td> + <a href="api/external/members.html#get--#account_id-members-imports-#import_id"><tt class="xref">GET /#account_id/members/imports/#import_id</tt></a></td><td> + <em></em></td></tr> + <tr> + <td></td> + <td> + <a href="api/external/members.html#get--#account_id-members-imports-#import_id-members"><tt class="xref">GET /#account_id/members/imports/#import_id/members</tt></a></td><td> + <em></em></td></tr> + <tr> + <td></td> + <td> + <a href="api/external/members.html#delete--#account_id-members-imports-delete"><tt class="xref">DELETE /#account_id/members/imports/delete</tt></a></td><td> + <em></em></td></tr> + <tr> + <td></td> + <td> + <a href="api/external/members.html#put--#account_id-members-status"><tt class="xref">PUT /#account_id/members/status</tt></a></td><td> + <em></em></td></tr> + <tr> + <td></td> + <td> + <a href="api/external/members.html#put--#account_id-members-status--status_from-to--status_to"><tt class="xref">PUT /#account_id/members/status/:status_from/to/:status_to</tt></a></td><td> + <em></em></td></tr> + <tr> + <td></td> + <td> + <a href="api/external/response.html#get--#account_id-response"><tt class="xref">GET /#account_id/response</tt></a></td><td> + <em></em></td></tr> + <tr> + <td></td> + <td> + <a href="api/external/response.html#get--#account_id-response-#mailing_id"><tt class="xref">GET /#account_id/response/#mailing_id</tt></a></td><td> + <em></em></td></tr> + <tr> + <td></td> + <td> + <a href="api/external/response.html#get--#account_id-response-#mailing_id-clicks"><tt class="xref">GET /#account_id/response/#mailing_id/clicks</tt></a></td><td> + <em></em></td></tr> + <tr> + <td></td> + <td> + <a href="api/external/response.html#get--#account_id-response-#mailing_id-customer_share_clicks"><tt class="xref">GET /#account_id/response/#mailing_id/customer_share_clicks</tt></a></td><td> + <em></em></td></tr> + <tr> + <td></td> + <td> + <a href="api/external/response.html#get--#account_id-response-#mailing_id-customer_shares"><tt class="xref">GET /#account_id/response/#mailing_id/customer_shares</tt></a></td><td> + <em></em></td></tr> + <tr> + <td></td> + <td> + <a href="api/external/response.html#get--#account_id-response-#mailing_id-deliveries"><tt class="xref">GET /#account_id/response/#mailing_id/deliveries</tt></a></td><td> + <em></em></td></tr> + <tr> + <td></td> + <td> + <a href="api/external/response.html#get--#account_id-response-#mailing_id-forwards"><tt class="xref">GET /#account_id/response/#mailing_id/forwards</tt></a></td><td> + <em></em></td></tr> + <tr> + <td></td> + <td> + <a href="api/external/response.html#get--#account_id-response-#mailing_id-in_progress"><tt class="xref">GET /#account_id/response/#mailing_id/in_progress</tt></a></td><td> + <em></em></td></tr> + <tr> + <td></td> + <td> + <a href="api/external/response.html#get--#account_id-response-#mailing_id-links"><tt class="xref">GET /#account_id/response/#mailing_id/links</tt></a></td><td> + <em></em></td></tr> + <tr> + <td></td> + <td> + <a href="api/external/response.html#get--#account_id-response-#mailing_id-opens"><tt class="xref">GET /#account_id/response/#mailing_id/opens</tt></a></td><td> + <em></em></td></tr> + <tr> + <td></td> + <td> + <a href="api/external/response.html#get--#account_id-response-#mailing_id-optouts"><tt class="xref">GET /#account_id/response/#mailing_id/optouts</tt></a></td><td> + <em></em></td></tr> + <tr> + <td></td> + <td> + <a href="api/external/response.html#get--#account_id-response-#mailing_id-sends"><tt class="xref">GET /#account_id/response/#mailing_id/sends</tt></a></td><td> + <em></em></td></tr> + <tr> + <td></td> + <td> + <a href="api/external/response.html#get--#account_id-response-#mailing_id-shares"><tt class="xref">GET /#account_id/response/#mailing_id/shares</tt></a></td><td> + <em></em></td></tr> + <tr> + <td></td> + <td> + <a href="api/external/response.html#get--#account_id-response-#mailing_id-shares-overview"><tt class="xref">GET /#account_id/response/#mailing_id/shares/overview</tt></a></td><td> + <em></em></td></tr> + <tr> + <td></td> + <td> + <a href="api/external/response.html#get--#account_id-response-#mailing_id-signups"><tt class="xref">GET /#account_id/response/#mailing_id/signups</tt></a></td><td> + <em></em></td></tr> + <tr> + <td></td> + <td> + <a href="api/external/response.html#get--#account_id-response-#share_id-customer_share"><tt class="xref">GET /#account_id/response/#share_id/customer_share</tt></a></td><td> + <em></em></td></tr> + <tr> + <td></td> + <td> + <a href="api/external/searches.html#get--#account_id-searches"><tt class="xref">GET /#account_id/searches</tt></a></td><td> + <em></em></td></tr> + <tr> + <td></td> + <td> + <a href="api/external/searches.html#post--#account_id-searches"><tt class="xref">POST /#account_id/searches</tt></a></td><td> + <em></em></td></tr> + <tr> + <td></td> + <td> + <a href="api/external/searches.html#get--#account_id-searches-#search_id"><tt class="xref">GET /#account_id/searches/#search_id</tt></a></td><td> + <em></em></td></tr> + <tr> + <td></td> + <td> + <a href="api/external/searches.html#put--#account_id-searches-#search_id"><tt class="xref">PUT /#account_id/searches/#search_id</tt></a></td><td> + <em></em></td></tr> + <tr> + <td></td> + <td> + <a href="api/external/searches.html#delete--#account_id-searches-#search_id"><tt class="xref">DELETE /#account_id/searches/#search_id</tt></a></td><td> + <em></em></td></tr> + <tr> + <td></td> + <td> + <a href="api/external/searches.html#get--#account_id-searches-#search_id-members"><tt class="xref">GET /#account_id/searches/#search_id/members</tt></a></td><td> + <em></em></td></tr> + <tr> + <td></td> + <td> + <a href="api/external/triggers.html#get--#account_id-triggers"><tt class="xref">GET /#account_id/triggers</tt></a></td><td> + <em></em></td></tr> + <tr> + <td></td> + <td> + <a href="api/external/triggers.html#post--#account_id-triggers"><tt class="xref">POST /#account_id/triggers</tt></a></td><td> + <em></em></td></tr> + <tr> + <td></td> + <td> + <a href="api/external/triggers.html#get--#account_id-triggers-#trigger_id"><tt class="xref">GET /#account_id/triggers/#trigger_id</tt></a></td><td> + <em></em></td></tr> + <tr> + <td></td> + <td> + <a href="api/external/triggers.html#put--#account_id-triggers-#trigger_id"><tt class="xref">PUT /#account_id/triggers/#trigger_id</tt></a></td><td> + <em></em></td></tr> + <tr> + <td></td> + <td> + <a href="api/external/triggers.html#delete--#account_id-triggers-#trigger_id"><tt class="xref">DELETE /#account_id/triggers/#trigger_id</tt></a></td><td> + <em></em></td></tr> + <tr> + <td></td> + <td> + <a href="api/external/triggers.html#get--#account_id-triggers-#trigger_id-mailings"><tt class="xref">GET /#account_id/triggers/#trigger_id/mailings</tt></a></td><td> + <em></em></td></tr> + <tr> + <td></td> + <td> + <a href="api/external/webhooks.html#get--#account_id-webhooks"><tt class="xref">GET /#account_id/webhooks</tt></a></td><td> + <em></em></td></tr> + <tr> + <td></td> + <td> + <a href="api/external/webhooks.html#post--#account_id-webhooks"><tt class="xref">POST /#account_id/webhooks</tt></a></td><td> + <em></em></td></tr> + <tr> + <td></td> + <td> + <a href="api/external/webhooks.html#delete--#account_id-webhooks"><tt class="xref">DELETE /#account_id/webhooks</tt></a></td><td> + <em></em></td></tr> + <tr> + <td></td> + <td> + <a href="api/external/webhooks.html#get--#account_id-webhooks-#webhook_id"><tt class="xref">GET /#account_id/webhooks/#webhook_id</tt></a></td><td> + <em></em></td></tr> + <tr> + <td></td> + <td> + <a href="api/external/webhooks.html#put--#account_id-webhooks-#webhook_id"><tt class="xref">PUT /#account_id/webhooks/#webhook_id</tt></a></td><td> + <em></em></td></tr> + <tr> + <td></td> + <td> + <a href="api/external/webhooks.html#delete--#account_id-webhooks-#webhook_id"><tt class="xref">DELETE /#account_id/webhooks/#webhook_id</tt></a></td><td> + <em></em></td></tr> + <tr> + <td></td> + <td> + <a href="api/external/webhooks.html#get--#account_id-webhooks-events"><tt class="xref">GET /#account_id/webhooks/events</tt></a></td><td> + <em></em></td></tr> + </table> + + + </div> + </div> + </div> + <div class="sphinxsidebar"> + <div class="sphinxsidebarwrapper"><h3>Related Topics</h3> +<ul> + <li><a href="index.html">Documentation overview</a><ul> + </ul></li> +</ul> +<div id="searchbox" style="display: none"> + <h3>Quick search</h3> + <form class="search" action="search.html" method="get"> + <input type="text" name="q" /> + <input type="submit" value="Go" /> + <input type="hidden" name="check_keywords" value="yes" /> + <input type="hidden" name="area" value="default" /> + </form> + <p class="searchtip" style="font-size: 90%"> + Enter search terms or a module, class or function name. + </p> +</div> +<script type="text/javascript">$('#searchbox').show(0);</script> + </div> + </div> + <div class="clearer"></div> + </div> + <div class="footer"> + © Copyright 2012, Emma. + Last updated on Dec 17, 2012 at 10:51. + </div> + </body> +</html> \ No newline at end of file diff --git a/index.html b/index.html new file mode 100644 index 0000000..f3b045b --- /dev/null +++ b/index.html @@ -0,0 +1,290 @@ + +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> + + +<html xmlns="http://www.w3.org/1999/xhtml"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> + + <title>Emma API — audience 0.1 documentation</title> + + <link rel="stylesheet" href="_static/emma.css" type="text/css" /> + <link rel="stylesheet" href="_static/pygments.css" type="text/css" /> + + <script type="text/javascript"> + var DOCUMENTATION_OPTIONS = { + URL_ROOT: '', + VERSION: '0.1', + COLLAPSE_INDEX: false, + FILE_SUFFIX: '.html', + HAS_SOURCE: true + }; + </script> + <script type="text/javascript" src="_static/jquery.js"></script> + <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="#" /> + <link rel="next" title="Fields" href="api/external/fields.html" /> + + + <style type="text/css"> + .resp-trigger, .resp-trigger:hover {font-size:10pt;text-decoration:none;} + div.sample-response.hide-response pre.response {display: none;} + div.sample-response .tshow, + div.sample-response.hide-response .thide {display: none;} + div.sample-response .thide, + div.sample-response.hide-response .tshow {display: inline;} + </style> + <script> + $().ready(function() { + $("a.resp-trigger").click(function(e) { + e.preventDefault(); + $(this).parents("div.sample-response").toggleClass("hide-response"); + }); + }); + </script> + + </head> + <body> +<header role="banner"> + <h1>Emma API Documentation</h1> +</header> + <div class="related"> + <h3>Navigation</h3> + <ul> + <li class="right" style="margin-right: 10px"> + <a href="genindex.html" title="General Index" + accesskey="I">index</a></li> + <li class="right" > + <a href="http-routingtable.html" title="HTTP Routing Table" + >routing table</a> |</li> + <li class="right" > + <a href="api/external/fields.html" title="Fields" + accesskey="N">next</a> |</li> + <li><a href="#">audience 0.1 documentation</a> »</li> + </ul> + </div> + + <div class="document"> + <div class="documentwrapper"> + <div class="bodywrapper"> + <div class="body"> + + <div class="section" id="emma-api"> +<h1>Emma API<a class="headerlink" href="#emma-api" title="Permalink to this headline">¶</a></h1> +<div class="section" id="overview"> +<h2>Overview<a class="headerlink" href="#overview" title="Permalink to this headline">¶</a></h2> +<p>Emma’s platform is accessible through our public API. The API provides access +to the following areas:</p> +<ul> +<li><dl class="first docutils"> +<dt>Managing member lists</dt> +<dd><ul class="first last simple"> +<li>importing, editing, deleting</li> +<li>organizing members into groups</li> +<li>searching for members</li> +</ul> +</dd> +</dl> +</li> +<li><dl class="first docutils"> +<dt>Sending mailings</dt> +<dd><ul class="first last simple"> +<li>sending to individuals, groups and searches</li> +<li>viewing past mailings</li> +<li>controlling the status of pending mailings</li> +</ul> +</dd> +</dl> +</li> +<li><dl class="first docutils"> +<dt>Retrieving response</dt> +<dd><ul class="first last simple"> +<li>Access mailing response information by mailing, member of time period</li> +<li>Access response at summary and detail levels</li> +</ul> +</dd> +</dl> +</li> +</ul> +</div> +<div class="section" id="quickstart"> +<h2>Quickstart<a class="headerlink" href="#quickstart" title="Permalink to this headline">¶</a></h2> +<p>Let’s start by building some PHP code that will add a member to our audience.</p> +<p>First, you’ll want to figure out how to authenticate. All calls require HTTP +Basic Auth autentication. Inside your Emma account, in the “Account Settings” +section, you’ll find your API keys. There’s a public key and a private key and +an account ID. It should look like this.</p> +<img alt="_images/api_keys.jpg" src="_images/api_keys.jpg" /> +<p>So, let’s add these authentication bits to our code.</p> +<div class="highlight-php"><div class="highlight"><pre><span class="c1">// Authentication Variables</span> +<span class="nv">$account_id</span> <span class="o">=</span> <span class="s2">"xxx"</span><span class="p">;</span> +<span class="nv">$public_api_key</span> <span class="o">=</span> <span class="s2">"xxx"</span><span class="p">;</span> +<span class="nv">$private_api_key</span> <span class="o">=</span> <span class="s2">"xxx"</span><span class="p">;</span> +</pre></div> +</div> +<p>Then, we’ll want to capture the POSTed form variables from the request.</p> +<div class="highlight-php"><div class="highlight"><pre><span class="c1">// Form variable(s)</span> +<span class="nv">$email</span> <span class="o">=</span> <span class="nv">$_POST</span><span class="p">[</span><span class="s1">'email'</span><span class="p">];</span> +<span class="nv">$first_name</span> <span class="o">=</span> <span class="nv">$_POST</span><span class="p">[</span><span class="s1">'first_name'</span><span class="p">];</span> +<span class="nv">$last_name</span> <span class="o">=</span> <span class="nv">$_POST</span><span class="p">[</span><span class="s1">'last_name'</span><span class="p">];</span> +<span class="nv">$groups</span> <span class="o">=</span> <span class="k">array</span><span class="p">(</span><span class="mi">123456</span><span class="p">,</span> <span class="mi">654321</span><span class="p">);</span> + +<span class="c1">// Member data other than email should be passed in an array called "fields"</span> +<span class="nv">$member_data</span> <span class="o">=</span> <span class="k">array</span><span class="p">(</span> + <span class="s2">"email"</span> <span class="o">=></span> <span class="nv">$email</span><span class="p">,</span> + <span class="s2">"fields"</span> <span class="o">=></span> <span class="k">array</span><span class="p">(</span> + <span class="s2">"name_first"</span> <span class="o">=></span> <span class="nv">$first_name</span><span class="p">,</span> + <span class="s2">"name_last"</span> <span class="o">=></span> <span class="nv">$last_name</span> + <span class="p">),</span> + <span class="s2">"group_ids"</span> <span class="o">=></span> <span class="nv">$groups</span> +<span class="p">);</span> +</pre></div> +</div> +<p>Please note that the <tt class="docutils literal"><span class="pre">group_ids</span></tt> to which the member will be added are passed +as an array of integers. Of course, you’ll want to make sure you sanitize any of +these form inputs to protect your application.</p> +<p>Let’s set the URL for the API call. The endpoint for all of our API calls is +<a class="reference external" href="https://api.e2ma.net/">https://api.e2ma.net/</a>. In this case, we’re using the endpoint that +corresponds to adding a single member. There’s a separate call for adding bulk +members.</p> +<div class="highlight-php"><div class="highlight"><pre><span class="c1">// Set URL</span> +<span class="nv">$url</span> <span class="o">=</span> <span class="s2">"https://api.e2ma.net/"</span><span class="o">.</span><span class="nv">$account_id</span><span class="o">.</span><span class="s2">"/members/add"</span><span class="p">;</span> +</pre></div> +</div> +<p>Next, we’ll do a little dance with cURL that I’m sure is familiar. I’ll +explain some particulars below the code block.</p> +<div class="highlight-php"><div class="highlight"><pre><span class="c1">// setup and execute the cURL command</span> +<span class="nv">$ch</span> <span class="o">=</span> <span class="nb">curl_init</span><span class="p">();</span> +<span class="hll"><span class="nb">curl_setopt</span><span class="p">(</span><span class="nv">$ch</span><span class="p">,</span> <span class="nx">CURLOPT_USERPWD</span><span class="p">,</span> <span class="nv">$public_api_key</span> <span class="o">.</span> <span class="s2">":"</span> <span class="o">.</span> <span class="nv">$private_api_key</span><span class="p">);</span> +</span><span class="nb">curl_setopt</span><span class="p">(</span><span class="nv">$ch</span><span class="p">,</span> <span class="nx">CURLOPT_URL</span><span class="p">,</span> <span class="nv">$url</span><span class="p">);</span> +<span class="nb">curl_setopt</span><span class="p">(</span><span class="nv">$ch</span><span class="p">,</span> <span class="nx">CURLOPT_POST</span><span class="p">,</span> <span class="nb">count</span><span class="p">(</span><span class="nv">$member_data</span><span class="p">));</span> +<span class="hll"><span class="nb">curl_setopt</span><span class="p">(</span><span class="nv">$ch</span><span class="p">,</span> <span class="nx">CURLOPT_POSTFIELDS</span><span class="p">,</span> <span class="nb">json_encode</span><span class="p">(</span><span class="nv">$member_data</span><span class="p">));</span> +</span><span class="hll"><span class="nb">curl_setopt</span><span class="p">(</span><span class="nv">$ch</span><span class="p">,</span> <span class="nx">CURLOPT_HTTPHEADER</span><span class="p">,</span> <span class="k">array</span><span class="p">(</span><span class="s1">'Content-type: application/json'</span><span class="p">));</span> +</span><span class="nb">curl_setopt</span><span class="p">(</span><span class="nv">$ch</span><span class="p">,</span> <span class="nx">CURLOPT_RETURNTRANSFER</span><span class="p">,</span> <span class="k">true</span><span class="p">);</span> +<span class="nb">curl_setopt</span><span class="p">(</span><span class="nv">$ch</span><span class="p">,</span> <span class="nx">CURLOPT_SSL_VERIFYPEER</span><span class="p">,</span> <span class="k">false</span><span class="p">);</span> +<span class="nv">$head</span> <span class="o">=</span> <span class="nb">curl_exec</span><span class="p">(</span><span class="nv">$ch</span><span class="p">);</span> +<span class="nv">$http_code</span> <span class="o">=</span> <span class="nb">curl_getinfo</span><span class="p">(</span><span class="nv">$ch</span><span class="p">,</span> <span class="nx">CURLINFO_HTTP_CODE</span><span class="p">);</span> +<span class="nb">curl_close</span><span class="p">(</span><span class="nv">$ch</span><span class="p">);</span> +</pre></div> +</div> +<p>On line 3 is where we use the public/private keys to authenticate our call. +On lines 6-7, we force the API call to make its request in JSON and expect +JSON in return.</p> +<p>At this point, the API call has been made.We might want to inspect the +result to see what happened. The API returns true HTTP response codes which +you can examine to determine a request’s disposition.</p> +<div class="highlight-php"><div class="highlight"><pre><span class="c1">//execute post</span> +<span class="k">if</span><span class="p">(</span><span class="nv">$http_code</span> <span class="o">></span> <span class="mi">200</span><span class="p">)</span> <span class="p">{</span> + <span class="nv">$app_message</span> <span class="o">=</span> <span class="s2">"Error sending subscription request"</span><span class="p">;</span> +<span class="p">}</span> <span class="k">else</span> <span class="p">{</span> + <span class="nv">$app_message</span> <span class="o">=</span> <span class="s2">"Success!"</span><span class="p">;</span> +<span class="p">}</span> + +<span class="k">echo</span> <span class="nv">$app_message</span><span class="p">;</span> +</pre></div> +</div> +<p>You can <a class="reference internal" href="php_signup_example.html"><em>see the complete PHP script here</em></a>. +Additionally, there’s a PHP example to <a class="reference internal" href="php_get_member_example.html"><em>get members using their email +address</em></a>.</p> +<p>To extend this example further, one could make the API call associate the +new member with a particular signup form. As written above, the member would +be added to the audience but would not appear in the “recent activity” type +searches or really any searches related to signups. We are working on a +cleaner way to handle this signup form issue in the future.</p> +</div> +<div class="section" id="api-calls-by-category"> +<h2>API calls by category<a class="headerlink" href="#api-calls-by-category" title="Permalink to this headline">¶</a></h2> +<p>The API calls are organized by their main entity type in the following +sections. Each call includes sample request & response data.</p> +<div class="toctree-wrapper compound"> +<ul> +<li class="toctree-l1"><a class="reference internal" href="api/external/fields.html">Fields</a></li> +<li class="toctree-l1"><a class="reference internal" href="api/external/groups.html">Groups</a></li> +<li class="toctree-l1"><a class="reference internal" href="api/external/mailings.html">Mailings</a></li> +<li class="toctree-l1"><a class="reference internal" href="api/external/members.html">Members</a></li> +<li class="toctree-l1"><a class="reference internal" href="api/external/response.html">Response</a></li> +<li class="toctree-l1"><a class="reference internal" href="api/external/searches.html">Searches</a></li> +<li class="toctree-l1"><a class="reference internal" href="api/external/triggers.html">Triggers</a></li> +<li class="toctree-l1"><a class="reference internal" href="api/external/webhooks.html">Webhooks</a></li> +</ul> +</div> +</div> +<div class="section" id="additional-documentation"> +<h2>Additional Documentation<a class="headerlink" href="#additional-documentation" title="Permalink to this headline">¶</a></h2> +<div class="toctree-wrapper compound"> +<ul> +<li class="toctree-l1"><a class="reference internal" href="pagination.html">Pagination</a></li> +<li class="toctree-l1"><a class="reference internal" href="placeholders.html">Placeholder Syntax</a><ul> +<li class="toctree-l2"><a class="reference internal" href="placeholders.html#syntax-overview">Syntax Overview</a></li> +</ul> +</li> +<li class="toctree-l1"><a class="reference internal" href="member_search.html">Search Syntax</a><ul> +<li class="toctree-l2"><a class="reference internal" href="member_search.html#syntax-overview">Syntax Overview</a></li> +<li class="toctree-l2"><a class="reference internal" href="member_search.html#operators">Operators</a></li> +<li class="toctree-l2"><a class="reference internal" href="member_search.html#boolean-predicates">Boolean Predicates</a></li> +<li class="toctree-l2"><a class="reference internal" href="member_search.html#filter-terms">Filter Terms</a></li> +</ul> +</li> +<li class="toctree-l1"><a class="reference internal" href="webhooks.html">Webhook Usage</a><ul> +<li class="toctree-l2"><a class="reference internal" href="webhooks.html#webhook-overview">Webhook Overview</a></li> +<li class="toctree-l2"><a class="reference internal" href="webhooks.html#webhook-post-data">Webhook Post Data</a></li> +</ul> +</li> +</ul> +</div> +<div class="toctree-wrapper compound"> +</div> +</div> +</div> + + + </div> + </div> + </div> + <div class="sphinxsidebar"> + <div class="sphinxsidebarwrapper"> + <h3><a href="#">Table Of Contents</a></h3> + <ul> +<li><a class="reference internal" href="#">Emma API</a><ul> +<li><a class="reference internal" href="#overview">Overview</a></li> +<li><a class="reference internal" href="#quickstart">Quickstart</a></li> +<li><a class="reference internal" href="#api-calls-by-category">API calls by category</a><ul> +</ul> +</li> +<li><a class="reference internal" href="#additional-documentation">Additional Documentation</a><ul> +</ul> +</li> +</ul> +</li> +</ul> +<h3>Related Topics</h3> +<ul> + <li><a href="#">Documentation overview</a><ul> + <li>Next: <a href="api/external/fields.html" title="next chapter">Fields</a></li> + </ul></li> +</ul> +<div id="searchbox" style="display: none"> + <h3>Quick search</h3> + <form class="search" action="search.html" method="get"> + <input type="text" name="q" /> + <input type="submit" value="Go" /> + <input type="hidden" name="check_keywords" value="yes" /> + <input type="hidden" name="area" value="default" /> + </form> + <p class="searchtip" style="font-size: 90%"> + Enter search terms or a module, class or function name. + </p> +</div> +<script type="text/javascript">$('#searchbox').show(0);</script> + </div> + </div> + <div class="clearer"></div> + </div> + <div class="footer"> + © Copyright 2012, Emma. + Last updated on Dec 17, 2012 at 10:51. + </div> + </body> +</html> \ No newline at end of file diff --git a/member_search.html b/member_search.html new file mode 100644 index 0000000..f8c1e05 --- /dev/null +++ b/member_search.html @@ -0,0 +1,221 @@ + +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> + + +<html xmlns="http://www.w3.org/1999/xhtml"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> + + <title>Search Syntax — audience 0.1 documentation</title> + + <link rel="stylesheet" href="_static/emma.css" type="text/css" /> + <link rel="stylesheet" href="_static/pygments.css" type="text/css" /> + + <script type="text/javascript"> + var DOCUMENTATION_OPTIONS = { + URL_ROOT: '', + VERSION: '0.1', + COLLAPSE_INDEX: false, + FILE_SUFFIX: '.html', + HAS_SOURCE: true + }; + </script> + <script type="text/javascript" src="_static/jquery.js"></script> + <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="Webhook Usage" href="webhooks.html" /> + <link rel="prev" title="Placeholder Syntax" href="placeholders.html" /> + + + <style type="text/css"> + .resp-trigger, .resp-trigger:hover {font-size:10pt;text-decoration:none;} + div.sample-response.hide-response pre.response {display: none;} + div.sample-response .tshow, + div.sample-response.hide-response .thide {display: none;} + div.sample-response .thide, + div.sample-response.hide-response .tshow {display: inline;} + </style> + <script> + $().ready(function() { + $("a.resp-trigger").click(function(e) { + e.preventDefault(); + $(this).parents("div.sample-response").toggleClass("hide-response"); + }); + }); + </script> + + </head> + <body> +<header role="banner"> + <h1>Emma API Documentation</h1> +</header> + <div class="related"> + <h3>Navigation</h3> + <ul> + <li class="right" style="margin-right: 10px"> + <a href="genindex.html" title="General Index" + accesskey="I">index</a></li> + <li class="right" > + <a href="http-routingtable.html" title="HTTP Routing Table" + >routing table</a> |</li> + <li class="right" > + <a href="webhooks.html" title="Webhook Usage" + accesskey="N">next</a> |</li> + <li class="right" > + <a href="placeholders.html" title="Placeholder Syntax" + accesskey="P">previous</a> |</li> + <li><a href="index.html">audience 0.1 documentation</a> »</li> + </ul> + </div> + + <div class="document"> + <div class="documentwrapper"> + <div class="bodywrapper"> + <div class="body"> + + <div class="section" id="search-syntax"> +<span id="id1"></span><h1>Search Syntax<a class="headerlink" href="#search-syntax" title="Permalink to this headline">¶</a></h1> +<div class="section" id="syntax-overview"> +<h2>Syntax Overview<a class="headerlink" href="#syntax-overview" title="Permalink to this headline">¶</a></h2> +<p>Searches are constructed using nested JSON arrays of filters and boolean predicates. Here is an example of a simple filter:</p> +<div class="highlight-python"><div class="highlight"><pre><span class="p">[</span><span class="s">"member_field:foo"</span><span class="p">,</span> <span class="s">"eq"</span><span class="p">,</span> <span class="s">"bar"</span><span class="p">]</span> +</pre></div> +</div> +<p>A filter is composed of one or more parts. The first part is always a <em>filter term</em>. In general, a filter term maps directly to a field in the results. A filter term can accept an argument (the <tt class="docutils literal"><span class="pre">:foo</span></tt> in the example above) that will have different meanings for different filter terms. If the filter has more than one part, the second part is <em>always</em> an <em>operator</em>. The remaining parts are arguments for the operator. Different operators will have different arguments, but will always have at least one.</p> +<p>In addition, filters can be <em>nested</em> using <em>boolean predicates</em>. Here’s an example of a nested query:</p> +<div class="highlight-python"><div class="highlight"><pre><span class="p">[</span><span class="s">"and"</span><span class="p">,</span> + <span class="p">[</span><span class="s">"member_field:foo"</span><span class="p">,</span> <span class="s">"eq"</span><span class="p">,</span> <span class="s">"bar"</span><span class="p">],</span> + <span class="p">[</span><span class="s">"member_since"</span><span class="p">,</span> <span class="s">"in last"</span><span class="p">,</span> <span class="p">{</span><span class="s">"day"</span><span class="p">:</span> <span class="mi">5</span><span class="p">}]]</span> +</pre></div> +</div> +<p>This example will return all members who joined in the last 5 days and have their member_field <tt class="docutils literal"><span class="pre">foo</span></tt> set to <tt class="docutils literal"><span class="pre">bar</span></tt>. The available boolean predicates and examples of their use are below.</p> +</div> +<div class="section" id="operators"> +<h2>Operators<a class="headerlink" href="#operators" title="Permalink to this headline">¶</a></h2> +<p>There are a bunch of operators available:</p> +<ul class="simple"> +<li><tt class="docutils literal"><span class="pre">eq</span></tt> and <tt class="docutils literal"><span class="pre">=</span></tt>: Basic equality. Example: <tt class="docutils literal"><span class="pre">["member_field:some_string_field",</span> <span class="pre">"eq",</span> <span class="pre">"bar"]</span></tt></li> +<li><tt class="docutils literal"><span class="pre">lt</span></tt> and <tt class="docutils literal"><span class="pre"><</span></tt>: Less than. Example: <tt class="docutils literal"><span class="pre">["member_field:some_numeric_field",</span> <span class="pre">"lt",</span> <span class="pre">5]</span></tt></li> +<li><tt class="docutils literal"><span class="pre">gt</span></tt> and <tt class="docutils literal"><span class="pre">></span></tt>: Greater than. Example: <tt class="docutils literal"><span class="pre">["member_field:some_numeric_field",</span> <span class="pre">"gt",</span> <span class="pre">5]</span></tt></li> +<li><tt class="docutils literal"><span class="pre">between</span></tt>: Between. Takes two arguments. Example: <tt class="docutils literal"><span class="pre">["member_field:some_numeric_field",</span> <span class="pre">"between",</span> <span class="pre">5,</span> <span class="pre">10]</span></tt></li> +<li><tt class="docutils literal"><span class="pre">in</span> <span class="pre">last</span></tt> and <tt class="docutils literal"><span class="pre">in</span> <span class="pre">next</span></tt>: Relative date. Takes an interval (explained below). Example: <tt class="docutils literal"><span class="pre">["member_since",</span> <span class="pre">"in</span> <span class="pre">last",</span> <span class="pre">{"day":</span> <span class="pre">4}]</span></tt></li> +<li><tt class="docutils literal"><span class="pre">datematch</span></tt>: Match a date argument. All parts of the date must match. Example: <tt class="docutils literal"><span class="pre">["member_since",</span> <span class="pre">"datematch",</span> <span class="pre">{"year":</span> <span class="pre">2011}]</span></tt></li> +<li><tt class="docutils literal"><span class="pre">contains</span></tt>: Match a string against a shell-glob-style expression. Example: <tt class="docutils literal"><span class="pre">["member_field:some_string_field",</span> <span class="pre">"contains",</span> <span class="pre">"*foo*"]</span></tt></li> +<li><tt class="docutils literal"><span class="pre">in</span></tt>: Match a field against a list of values. Example: <tt class="docutils literal"><span class="pre">["member_field:some_number_field",</span> <span class="pre">"in",</span> <span class="pre">3,</span> <span class="pre">4,</span> <span class="pre">5,</span> <span class="pre">6]</span></tt></li> +<li><tt class="docutils literal"><span class="pre">any</span></tt>: Match a given value against an array field. Example: <tt class="docutils literal"><span class="pre">["member_field:some_array_field",</span> <span class="pre">"any",</span> <span class="pre">"ten"]</span></tt></li> +</ul> +<p>In addition to these basic operators, there is one advanced operator available:</p> +<ul class="simple"> +<li><tt class="docutils literal"><span class="pre">zip-radius:n</span></tt>: where <tt class="docutils literal"><span class="pre">n</span></tt> can be one of <tt class="docutils literal"><span class="pre">5</span></tt>, <tt class="docutils literal"><span class="pre">10</span></tt>, <tt class="docutils literal"><span class="pre">15</span></tt>, <tt class="docutils literal"><span class="pre">20</span></tt>, <tt class="docutils literal"><span class="pre">25</span></tt>, or <tt class="docutils literal"><span class="pre">50</span></tt>. Takes a single zip code which will be the center of the search. Example: <tt class="docutils literal"><span class="pre">["member_field:some_zipcode_field",</span> <span class="pre">"zip-radius:10",</span> <span class="pre">"97202"]</span></tt> will return all members with a <tt class="docutils literal"><span class="pre">zip_code_field</span></tt> within 10 miles of <tt class="docutils literal"><span class="pre">97202</span></tt>.</li> +</ul> +<div class="section" id="intervals"> +<h3>Intervals<a class="headerlink" href="#intervals" title="Permalink to this headline">¶</a></h3> +<p>An interval is defined as a hash that contains one or more of the following keys:</p> +<ul class="simple"> +<li><tt class="docutils literal"><span class="pre">year</span></tt></li> +<li><tt class="docutils literal"><span class="pre">month</span></tt></li> +<li><tt class="docutils literal"><span class="pre">day</span></tt></li> +<li><tt class="docutils literal"><span class="pre">hour</span></tt></li> +<li><tt class="docutils literal"><span class="pre">minute</span></tt></li> +<li><tt class="docutils literal"><span class="pre">second</span></tt></li> +</ul> +<p>For example, <tt class="docutils literal"><span class="pre">{"year":</span> <span class="pre">2,</span> <span class="pre">"day":</span> <span class="pre">4}</span></tt> would specify an interval of two years and four days.</p> +</div> +<div class="section" id="dates"> +<h3>Dates<a class="headerlink" href="#dates" title="Permalink to this headline">¶</a></h3> +<p>A date is defined as a hash that contains one or more of the following keys:</p> +<ul class="simple"> +<li><tt class="docutils literal"><span class="pre">year</span></tt></li> +<li><tt class="docutils literal"><span class="pre">month</span></tt></li> +<li><tt class="docutils literal"><span class="pre">day</span></tt></li> +<li><tt class="docutils literal"><span class="pre">hour</span></tt></li> +<li><tt class="docutils literal"><span class="pre">minute</span></tt></li> +<li><tt class="docutils literal"><span class="pre">second</span></tt></li> +<li><tt class="docutils literal"><span class="pre">dow</span></tt> (day of week)</li> +</ul> +<p>For example, <tt class="docutils literal"><span class="pre">{"day",</span> <span class="pre">31}</span></tt> would match the 31st of every month with a 31st day, while <tt class="docutils literal"><span class="pre">{"dow":</span> <span class="pre">2}</span></tt> would match every Tuesday. Sunday is 0.</p> +</div> +</div> +<div class="section" id="boolean-predicates"> +<h2>Boolean Predicates<a class="headerlink" href="#boolean-predicates" title="Permalink to this headline">¶</a></h2> +<p>Boolean predicates operate on one or more nested clauses. These predicates are available:</p> +<ul class="simple"> +<li><tt class="docutils literal"><span class="pre">and</span></tt>: All clauses must be true. Example: <tt class="docutils literal"><span class="pre">["and",</span> <span class="pre">["member_field:foo",</span> <span class="pre">"eq",</span> <span class="pre">1],</span> <span class="pre">["member_field:bar",</span> <span class="pre">"eq",</span> <span class="pre">2]]</span></tt></li> +<li><tt class="docutils literal"><span class="pre">or</span></tt>: At least one clause must be true. Example: <tt class="docutils literal"><span class="pre">["or",</span> <span class="pre">["member_field:foo",</span> <span class="pre">"eq",</span> <span class="pre">1],</span> <span class="pre">["member_field:bar",</span> <span class="pre">"eq",</span> <span class="pre">2]]</span></tt></li> +<li><tt class="docutils literal"><span class="pre">not</span></tt>: The single nested clause must not be true. Example: <tt class="docutils literal"><span class="pre">["not",</span> <span class="pre">["member_field:foo",</span> <span class="pre">"eq",</span> <span class="pre">1]]</span></tt></li> +</ul> +</div> +<div class="section" id="filter-terms"> +<h2>Filter Terms<a class="headerlink" href="#filter-terms" title="Permalink to this headline">¶</a></h2> +<p>In general, every key in the result records can be used as a filter term. Just use the key as the filter term. For example, to filter on <tt class="docutils literal"><span class="pre">send_start</span></tt>, you’d say <tt class="docutils literal"><span class="pre">["send_start",</span> <span class="pre">"gt",</span> <span class="pre">"2011-12-15"]</span></tt>. In addition, there is a large set of advanced filter terms for filtering members:</p> +<ul class="simple"> +<li><tt class="docutils literal"><span class="pre">opened</span></tt>, <tt class="docutils literal"><span class="pre">clicked</span></tt>, <tt class="docutils literal"><span class="pre">shared</span></tt>, <tt class="docutils literal"><span class="pre">forwarded</span></tt>. Will match on the timestamp of the corresponding response if it exists. All of these filter terms also allow a <tt class="docutils literal"><span class="pre">mailing_id</span></tt> as an argument (i.e. <tt class="docutils literal"><span class="pre">opened:12345</span></tt> matches if they opened mailing 12345.</li> +<li><tt class="docutils literal"><span class="pre">member_field:x</span></tt> where <tt class="docutils literal"><span class="pre">x</span></tt> is the short name of a member field. You can also use <tt class="docutils literal"><span class="pre">x</span></tt> by itself without <tt class="docutils literal"><span class="pre">member_field:</span></tt>.</li> +<li><tt class="docutils literal"><span class="pre">group</span></tt>. Will match the name of a member group. Takes the special operators <tt class="docutils literal"><span class="pre">defined</span></tt> (belongs to any group) and <tt class="docutils literal"><span class="pre">undefined</span></tt> (does not belong to any group).</li> +<li><tt class="docutils literal"><span class="pre">received</span></tt> Will match if the member received a mailing. Takes an optional <tt class="docutils literal"><span class="pre">mailing_id</span></tt> argument. If not given, will match if the member has received <em>any</em> mailing.</li> +<li><tt class="docutils literal"><span class="pre">clicked</span> <span class="pre">link</span></tt>. Will match if the member has clicked on a link. Takes an optional <tt class="docutils literal"><span class="pre">link_id</span></tt> argument. If not given, will match if the member has clicked on <em>any</em> link.</li> +<li><tt class="docutils literal"><span class="pre">manage</span></tt>: Will match if the member has manged their preferences. Optionally takes a date filter on the timestamp of the manage action. Optionally takes a <tt class="docutils literal"><span class="pre">signup_form_id</span></tt> argument. Example: <tt class="docutils literal"><span class="pre">["manage:1234",</span> <span class="pre">"in</span> <span class="pre">last",</span> <span class="pre">{"day",</span> <span class="pre">30}]</span></tt>.</li> +<li><tt class="docutils literal"><span class="pre">unsubscribed</span></tt>: Will match if the member has unsubscribed. Optionally takes a date filter on the timestamp of the opt-out action. Optionally takes a <tt class="docutils literal"><span class="pre">signup_form_id</span></tt> filter argument.</li> +<li><tt class="docutils literal"><span class="pre">unsubscribed</span> <span class="pre">mailing</span></tt>: Will match if the member has unsubscribed. Optionally takes a date filter on the timestamp of the opt-out action. Optionally takes a <tt class="docutils literal"><span class="pre">mailing_id</span></tt> filter argument.</li> +<li><tt class="docutils literal"><span class="pre">bounced</span></tt>: Will match if the member had either a soft or hard bounce. Optionally takes a date filter on the timestamp of the bounce. Optionally takes a <tt class="docutils literal"><span class="pre">mailing_id</span></tt> filter argument.</li> +<li><tt class="docutils literal"><span class="pre">email_user</span></tt>: Will match on the user portion of the member’s email address</li> +<li><tt class="docutils literal"><span class="pre">email_domain</span></tt>: Will match on the domain portion of the member’s email address</li> +<li><tt class="docutils literal"><span class="pre">email</span></tt>: Will match on the member’s entire email address</li> +<li><tt class="docutils literal"><span class="pre">signup</span></tt>: Will match if the member has signed up. Optionally takes a date filter on the timestamp of the signup action. Optionally takes a <tt class="docutils literal"><span class="pre">signup_form_id</span></tt> filter argument.</li> +<li><tt class="docutils literal"><span class="pre">signup_mailing</span></tt>: Will match if the member has signed up. Optionally takes a date filter on the timestamp of the signup action. Optionally takes a <tt class="docutils literal"><span class="pre">mailing_id</span></tt> filter argument.</li> +</ul> +</div> +</div> + + + </div> + </div> + </div> + <div class="sphinxsidebar"> + <div class="sphinxsidebarwrapper"> + <h3><a href="index.html">Table Of Contents</a></h3> + <ul> +<li><a class="reference internal" href="#">Search Syntax</a><ul> +<li><a class="reference internal" href="#syntax-overview">Syntax Overview</a></li> +<li><a class="reference internal" href="#operators">Operators</a><ul> +<li><a class="reference internal" href="#intervals">Intervals</a></li> +<li><a class="reference internal" href="#dates">Dates</a></li> +</ul> +</li> +<li><a class="reference internal" href="#boolean-predicates">Boolean Predicates</a></li> +<li><a class="reference internal" href="#filter-terms">Filter Terms</a></li> +</ul> +</li> +</ul> +<h3>Related Topics</h3> +<ul> + <li><a href="index.html">Documentation overview</a><ul> + <li>Previous: <a href="placeholders.html" title="previous chapter">Placeholder Syntax</a></li> + <li>Next: <a href="webhooks.html" title="next chapter">Webhook Usage</a></li> + </ul></li> +</ul> +<div id="searchbox" style="display: none"> + <h3>Quick search</h3> + <form class="search" action="search.html" method="get"> + <input type="text" name="q" /> + <input type="submit" value="Go" /> + <input type="hidden" name="check_keywords" value="yes" /> + <input type="hidden" name="area" value="default" /> + </form> + <p class="searchtip" style="font-size: 90%"> + Enter search terms or a module, class or function name. + </p> +</div> +<script type="text/javascript">$('#searchbox').show(0);</script> + </div> + </div> + <div class="clearer"></div> + </div> + <div class="footer"> + © Copyright 2012, Emma. + Last updated on Dec 17, 2012 at 10:51. + </div> + </body> +</html> \ No newline at end of file diff --git a/objects.inv b/objects.inv new file mode 100644 index 0000000000000000000000000000000000000000..b731c22a0bd7aaf682df323740307765565d5cb4 GIT binary patch literal 1369 zcmV-f1*ZBVAX9K?X>NERX>N99Zgg*Qc_4OWa&u{KZXhxWBOp+6Z)#;@bUGkmb!2H} zZewK%BOq2~a&u{KZaN?^E-?xtAXI2&AaZ4GVQFq;WpW^IW*~HEX>%ZEX>4U6X>%ZB zZ*6dLWpi_7WFU2OX>MmAdTeQ8E(&<swOLJ%n=lZ)@2@~guP*9!|3MFxDpggFkr%wg zDqsXA+x_>2*d`ce%n+Ot;E(sl_VaiK7owJRF8(E*&R<LZCd!0;OA1^1^`fitlzboG zUn-RYO`A{VDs1Z?D(_2SJAH_^i&B5jea8#o_q0`=>1Mx}Y52!{CBMh7mrn3DyZF6L znWg+?8vGm^Hzm)+MU}Z|&)sLO`O@Hfy``R&Fx%tjy(sy0D|%^oA#1Lssuy@uxk39f znqf<<<)9svsNO~sXX7yM&IUUuOP`*2mZ`qhXPKw1=o(dbB0W`Hma;C!LRp`iRuw~C zmt3@NUJId<ZwYT?D*kEF*1ViL8or?cV>4Xls@V*e&2gD;hi%n)c9>BJ+z8hTF~U`Q zMogd!3*MzDbDYXlBSg0E0?{$0b~%PJ6yCK(2wXLrK{3Kgb{9UBr|K%&s}vtmSJPm# z3439W+mxxeidy3n>u=r_wX0?pW~rN-_D9*6O)wOxMyp=qnlU{v$(UMp$72=`8Q#%x z!7@xww`WK(1VOSp3PCI}#er>wqx#2|UsjE310tg>x<jGttgP>}sz$dvZi91H%It4k zZwWJO>)(03cspQ1T#)Nl7RAsOWpWJ=s;NJMo1W}jNS#CuHpikIK1HkgChpN=At~~D zSM3LH^SFwdKsQAcO*@pO-B#=aYmAB(IF;R~BA(7}Drl#)s3WhmL4=q2*xF*+5hHv0 zdV3sH&kci_2WkF>XJp@N5GmXyI*7~eFvEvkdNME3me!qr><)~ry76R_!?=A?>@fWh zGfX90f^I2qJsr`f0aL=!RYzlHm&Aq!Lk*ngSTse8I<}ri#Qjm#Gvg^V13h};lg62g zQVw~Oj6B2{EG5L*^coMuIGg95iDp-8eS97q@M57UGZAwJcI4$xNXLneI;w*vYONdp zz|n%thjeG~1F<KND{Te&dov|C!rx#a%sI_@J|PDMlTKLDvZzC&d`Qz4lOnK-;Ca_K zQAOo2_eDR$P%Cw{9<Awv>pfKO3WAu$rb>Iu7Ej?TV^D=7X5fiCK<y`WD{fNaZigLn ztib`|hX=&xDQ-<jI6Tl_$N-(6q^{@)zmT1--&<APRejQGE%8h>pT`95k+3<*v=lcI zWXU_tb>AIaYYVdH%#5_3slQ+%Y*~zI2o{Atx?3#BzLPedAEGBv0H>cotw<>e6e$mm zd<2AdMEYu;=W&0fT20?tMcFKj&G4C4)AxW+y2=3f=T{jk`mL*sNo&*O2YnM!Xw#&F zJ_w3GK4e{sb`aj}c^|Iowho4&1tAtOxNL^MoNoJf*RyKnPaZJG0ej}){>8uRfe05T z)rt_k?Q!#d<)zH|<h+hd@dOq6Sqd_ELRu5Rn{|H6454~kVZ9RIJ+pre1EDTLtraeI z5wqOELy9ph%`xlmJDC|YdWaQiD}~ZCh{JQ%D+c%=a$bq&`B4e65hHl}3}G)0w-q>c z|GX!+v4?+Px=f3R8BU1Un@)(C_#=597#(ApekCJe5-N3s))PC(OOX4-n(;al<rBya z@I!eG%<Uf-5H}&a!IM*%)OVT?DJ4Y>CKFLN5H+PZDCvj)uSMhC9s9$~zK4XUqh$b3 bag^aR;pmuY!92_|4+9_$Af*2fmEv;>AO(Ni literal 0 HcmV?d00001 diff --git a/pagination.html b/pagination.html new file mode 100644 index 0000000..95b0e6f --- /dev/null +++ b/pagination.html @@ -0,0 +1,133 @@ + +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> + + +<html xmlns="http://www.w3.org/1999/xhtml"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> + + <title>Pagination — audience 0.1 documentation</title> + + <link rel="stylesheet" href="_static/emma.css" type="text/css" /> + <link rel="stylesheet" href="_static/pygments.css" type="text/css" /> + + <script type="text/javascript"> + var DOCUMENTATION_OPTIONS = { + URL_ROOT: '', + VERSION: '0.1', + COLLAPSE_INDEX: false, + FILE_SUFFIX: '.html', + HAS_SOURCE: true + }; + </script> + <script type="text/javascript" src="_static/jquery.js"></script> + <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="Placeholder Syntax" href="placeholders.html" /> + <link rel="prev" title="Webhooks" href="api/external/webhooks.html" /> + + + <style type="text/css"> + .resp-trigger, .resp-trigger:hover {font-size:10pt;text-decoration:none;} + div.sample-response.hide-response pre.response {display: none;} + div.sample-response .tshow, + div.sample-response.hide-response .thide {display: none;} + div.sample-response .thide, + div.sample-response.hide-response .tshow {display: inline;} + </style> + <script> + $().ready(function() { + $("a.resp-trigger").click(function(e) { + e.preventDefault(); + $(this).parents("div.sample-response").toggleClass("hide-response"); + }); + }); + </script> + + </head> + <body> +<header role="banner"> + <h1>Emma API Documentation</h1> +</header> + <div class="related"> + <h3>Navigation</h3> + <ul> + <li class="right" style="margin-right: 10px"> + <a href="genindex.html" title="General Index" + accesskey="I">index</a></li> + <li class="right" > + <a href="http-routingtable.html" title="HTTP Routing Table" + >routing table</a> |</li> + <li class="right" > + <a href="placeholders.html" title="Placeholder Syntax" + accesskey="N">next</a> |</li> + <li class="right" > + <a href="api/external/webhooks.html" title="Webhooks" + accesskey="P">previous</a> |</li> + <li><a href="index.html">audience 0.1 documentation</a> »</li> + </ul> + </div> + + <div class="document"> + <div class="documentwrapper"> + <div class="bodywrapper"> + <div class="body"> + + <div class="section" id="pagination"> +<span id="id1"></span><h1>Pagination<a class="headerlink" href="#pagination" title="Permalink to this headline">¶</a></h1> +<p>Responses with a large number of results should be paginated; the query +parameters <tt class="docutils literal"><span class="pre">start</span></tt> and <tt class="docutils literal"><span class="pre">end</span></tt> can be used to specify how large a set +of items to retrieve in each call, with a maximum page size of 500.</p> +<p>Additionally, for any call you can retrieve a count of the results (instead +of the results themselves) by appending a query parameter of <tt class="docutils literal"><span class="pre">count=true</span></tt>.</p> +<p>So, to pull a large number of results, you start with a count:</p> +<blockquote> +<div><a class="reference external" href="https://api.e2ma.net/123/members?count=true">https://api.e2ma.net/123/members?count=true</a></div></blockquote> +<p>Then, iterate over the list in blocks of 500:</p> +<blockquote> +<div><p><a class="reference external" href="https://api.e2ma.net/123/members?start=0&end=500">https://api.e2ma.net/123/members?start=0&end=500</a></p> +<p><a class="reference external" href="https://api.e2ma.net/123/members?start=500&end=1000">https://api.e2ma.net/123/members?start=500&end=1000</a></p> +</div></blockquote> +<p>Requests for page sizes larger than 500 will limited to <tt class="docutils literal"><span class="pre">start</span></tt> + 500.</p> +<p>Calls are rate-limited to prevent accidental overuse. If you exceed the limit +you will receive a response of <tt class="docutils literal"><span class="pre">403</span> <span class="pre">Rate</span> <span class="pre">Limit</span> <span class="pre">Exceeded</span></tt> until enough time +has elapsed between calls.</p> +</div> + + + </div> + </div> + </div> + <div class="sphinxsidebar"> + <div class="sphinxsidebarwrapper"><h3>Related Topics</h3> +<ul> + <li><a href="index.html">Documentation overview</a><ul> + <li>Previous: <a href="api/external/webhooks.html" title="previous chapter">Webhooks</a></li> + <li>Next: <a href="placeholders.html" title="next chapter">Placeholder Syntax</a></li> + </ul></li> +</ul> +<div id="searchbox" style="display: none"> + <h3>Quick search</h3> + <form class="search" action="search.html" method="get"> + <input type="text" name="q" /> + <input type="submit" value="Go" /> + <input type="hidden" name="check_keywords" value="yes" /> + <input type="hidden" name="area" value="default" /> + </form> + <p class="searchtip" style="font-size: 90%"> + Enter search terms or a module, class or function name. + </p> +</div> +<script type="text/javascript">$('#searchbox').show(0);</script> + </div> + </div> + <div class="clearer"></div> + </div> + <div class="footer"> + © Copyright 2012, Emma. + Last updated on Dec 17, 2012 at 10:51. + </div> + </body> +</html> \ No newline at end of file diff --git a/php_get_member_example.html b/php_get_member_example.html new file mode 100644 index 0000000..72dffcb --- /dev/null +++ b/php_get_member_example.html @@ -0,0 +1,148 @@ + +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> + + +<html xmlns="http://www.w3.org/1999/xhtml"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> + + <title>PHP Get Member By Email Example — audience 0.1 documentation</title> + + <link rel="stylesheet" href="_static/emma.css" type="text/css" /> + <link rel="stylesheet" href="_static/pygments.css" type="text/css" /> + + <script type="text/javascript"> + var DOCUMENTATION_OPTIONS = { + URL_ROOT: '', + VERSION: '0.1', + COLLAPSE_INDEX: false, + FILE_SUFFIX: '.html', + HAS_SOURCE: true + }; + </script> + <script type="text/javascript" src="_static/jquery.js"></script> + <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="prev" title="PHP Signup Example" href="php_signup_example.html" /> + + + <style type="text/css"> + .resp-trigger, .resp-trigger:hover {font-size:10pt;text-decoration:none;} + div.sample-response.hide-response pre.response {display: none;} + div.sample-response .tshow, + div.sample-response.hide-response .thide {display: none;} + div.sample-response .thide, + div.sample-response.hide-response .tshow {display: inline;} + </style> + <script> + $().ready(function() { + $("a.resp-trigger").click(function(e) { + e.preventDefault(); + $(this).parents("div.sample-response").toggleClass("hide-response"); + }); + }); + </script> + + </head> + <body> +<header role="banner"> + <h1>Emma API Documentation</h1> +</header> + <div class="related"> + <h3>Navigation</h3> + <ul> + <li class="right" style="margin-right: 10px"> + <a href="genindex.html" title="General Index" + accesskey="I">index</a></li> + <li class="right" > + <a href="http-routingtable.html" title="HTTP Routing Table" + >routing table</a> |</li> + <li class="right" > + <a href="php_signup_example.html" title="PHP Signup Example" + accesskey="P">previous</a> |</li> + <li><a href="index.html">audience 0.1 documentation</a> »</li> + </ul> + </div> + + <div class="document"> + <div class="documentwrapper"> + <div class="bodywrapper"> + <div class="body"> + + <div class="section" id="php-get-member-by-email-example"> +<h1>PHP Get Member By Email Example<a class="headerlink" href="#php-get-member-by-email-example" title="Permalink to this headline">¶</a></h1> +<p>Here’s the complete example of the PHP code to find a member by email address.</p> +<div class="highlight-php"><div class="highlight"><pre><span class="o"><?</span><span class="nx">php</span> +<span class="c1">// Authentication Variables</span> +<span class="nv">$account_id</span> <span class="o">=</span> <span class="s2">"xxxx"</span><span class="p">;</span> +<span class="nv">$public_api_key</span> <span class="o">=</span> <span class="s2">"xxxxx"</span><span class="p">;</span> +<span class="nv">$private_api_key</span> <span class="o">=</span> <span class="s2">"xxxxx"</span><span class="p">;</span> + +<span class="c1">// Form variable(s)</span> +<span class="nv">$email</span> <span class="o">=</span> <span class="s1">'me@test.com'</span><span class="p">;</span> + +<span class="c1">// Set URL</span> +<span class="nv">$url</span> <span class="o">=</span> <span class="s2">"https://api.e2ma.net/"</span> <span class="o">.</span> <span class="nv">$account_id</span> <span class="o">.</span> <span class="s2">"/members/email/"</span> <span class="o">.</span> <span class="nv">$email</span><span class="p">;</span> + +<span class="c1">// Open connection</span> +<span class="nv">$ch</span> <span class="o">=</span> <span class="nb">curl_init</span><span class="p">();</span> + +<span class="c1">// Make the curl call</span> +<span class="nb">curl_setopt</span><span class="p">(</span><span class="nv">$ch</span><span class="p">,</span> <span class="nx">CURLOPT_USERPWD</span><span class="p">,</span> <span class="nv">$public_api_key</span> <span class="o">.</span> <span class="s2">":"</span> <span class="o">.</span> <span class="nv">$private_api_key</span><span class="p">);</span> +<span class="nb">curl_setopt</span><span class="p">(</span><span class="nv">$ch</span><span class="p">,</span> <span class="nx">CURLOPT_URL</span><span class="p">,</span> <span class="nv">$url</span><span class="p">);</span> +<span class="nb">curl_setopt</span><span class="p">(</span><span class="nv">$ch</span><span class="p">,</span> <span class="nx">CURLOPT_HTTPHEADER</span><span class="p">,</span> <span class="k">array</span><span class="p">(</span><span class="s1">'Content-type: application/json'</span><span class="p">));</span> +<span class="nb">curl_setopt</span><span class="p">(</span><span class="nv">$ch</span><span class="p">,</span> <span class="nx">CURLOPT_RETURNTRANSFER</span><span class="p">,</span> <span class="k">true</span><span class="p">);</span> +<span class="nb">curl_setopt</span><span class="p">(</span><span class="nv">$ch</span><span class="p">,</span> <span class="nx">CURLOPT_SSL_VERIFYPEER</span><span class="p">,</span> <span class="k">false</span><span class="p">);</span> +<span class="nv">$head</span> <span class="o">=</span> <span class="nb">curl_exec</span><span class="p">(</span><span class="nv">$ch</span><span class="p">);</span> +<span class="nv">$http_code</span> <span class="o">=</span> <span class="nb">curl_getinfo</span><span class="p">(</span><span class="nv">$ch</span><span class="p">,</span> <span class="nx">CURLINFO_HTTP_CODE</span><span class="p">);</span> +<span class="nb">curl_close</span><span class="p">(</span><span class="nv">$ch</span><span class="p">);</span> + +<span class="c1">// check for errors</span> +<span class="k">if</span><span class="p">(</span><span class="nv">$http_code</span> <span class="o">></span> <span class="mi">200</span><span class="p">)</span> <span class="p">{</span> + <span class="k">print</span> <span class="s2">"Error getting member:</span><span class="se">\r\n</span><span class="s2">"</span><span class="p">;</span> + <span class="nb">print_r</span><span class="p">(</span><span class="nv">$head</span><span class="p">);</span> +<span class="p">}</span> <span class="k">else</span> <span class="p">{</span> + <span class="k">print</span> <span class="s2">"Member information:</span><span class="se">\r\n</span><span class="s2">"</span><span class="p">;</span> + <span class="nb">print_r</span><span class="p">(</span><span class="nv">$head</span><span class="p">);</span> +<span class="p">}</span> +<span class="cp">?></span><span class="x"></span> +</pre></div> +</div> +</div> + + + </div> + </div> + </div> + <div class="sphinxsidebar"> + <div class="sphinxsidebarwrapper"><h3>Related Topics</h3> +<ul> + <li><a href="index.html">Documentation overview</a><ul> + <li>Previous: <a href="php_signup_example.html" title="previous chapter">PHP Signup Example</a></li> + </ul></li> +</ul> +<div id="searchbox" style="display: none"> + <h3>Quick search</h3> + <form class="search" action="search.html" method="get"> + <input type="text" name="q" /> + <input type="submit" value="Go" /> + <input type="hidden" name="check_keywords" value="yes" /> + <input type="hidden" name="area" value="default" /> + </form> + <p class="searchtip" style="font-size: 90%"> + Enter search terms or a module, class or function name. + </p> +</div> +<script type="text/javascript">$('#searchbox').show(0);</script> + </div> + </div> + <div class="clearer"></div> + </div> + <div class="footer"> + © Copyright 2012, Emma. + Last updated on Dec 17, 2012 at 10:51. + </div> + </body> +</html> \ No newline at end of file diff --git a/php_signup_example.html b/php_signup_example.html new file mode 100644 index 0000000..5c583b7 --- /dev/null +++ b/php_signup_example.html @@ -0,0 +1,170 @@ + +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> + + +<html xmlns="http://www.w3.org/1999/xhtml"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> + + <title>PHP Signup Example — audience 0.1 documentation</title> + + <link rel="stylesheet" href="_static/emma.css" type="text/css" /> + <link rel="stylesheet" href="_static/pygments.css" type="text/css" /> + + <script type="text/javascript"> + var DOCUMENTATION_OPTIONS = { + URL_ROOT: '', + VERSION: '0.1', + COLLAPSE_INDEX: false, + FILE_SUFFIX: '.html', + HAS_SOURCE: true + }; + </script> + <script type="text/javascript" src="_static/jquery.js"></script> + <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="PHP Get Member By Email Example" href="php_get_member_example.html" /> + <link rel="prev" title="Webhook Usage" href="webhooks.html" /> + + + <style type="text/css"> + .resp-trigger, .resp-trigger:hover {font-size:10pt;text-decoration:none;} + div.sample-response.hide-response pre.response {display: none;} + div.sample-response .tshow, + div.sample-response.hide-response .thide {display: none;} + div.sample-response .thide, + div.sample-response.hide-response .tshow {display: inline;} + </style> + <script> + $().ready(function() { + $("a.resp-trigger").click(function(e) { + e.preventDefault(); + $(this).parents("div.sample-response").toggleClass("hide-response"); + }); + }); + </script> + + </head> + <body> +<header role="banner"> + <h1>Emma API Documentation</h1> +</header> + <div class="related"> + <h3>Navigation</h3> + <ul> + <li class="right" style="margin-right: 10px"> + <a href="genindex.html" title="General Index" + accesskey="I">index</a></li> + <li class="right" > + <a href="http-routingtable.html" title="HTTP Routing Table" + >routing table</a> |</li> + <li class="right" > + <a href="php_get_member_example.html" title="PHP Get Member By Email Example" + accesskey="N">next</a> |</li> + <li class="right" > + <a href="webhooks.html" title="Webhook Usage" + accesskey="P">previous</a> |</li> + <li><a href="index.html">audience 0.1 documentation</a> »</li> + </ul> + </div> + + <div class="document"> + <div class="documentwrapper"> + <div class="bodywrapper"> + <div class="body"> + + <div class="section" id="php-signup-example"> +<h1>PHP Signup Example<a class="headerlink" href="#php-signup-example" title="Permalink to this headline">¶</a></h1> +<p>Here’s the complete example of the PHP code to signup a single member.</p> +<div class="highlight-php"><div class="highlight"><pre><span class="o"><?</span><span class="nx">php</span> +<span class="c1">// Authentication Variables</span> +<span class="nv">$account_id</span> <span class="o">=</span> <span class="s2">"xxx"</span><span class="p">;</span> +<span class="nv">$public_api_key</span> <span class="o">=</span> <span class="s2">"xxx"</span><span class="p">;</span> +<span class="nv">$private_api_key</span> <span class="o">=</span> <span class="s2">"xxx"</span><span class="p">;</span> + +<span class="c1">// Form variable(s)</span> +<span class="nv">$email</span> <span class="o">=</span> <span class="nv">$_POST</span><span class="p">[</span><span class="s1">'email'</span><span class="p">];</span> +<span class="nv">$first_name</span> <span class="o">=</span> <span class="nv">$_POST</span><span class="p">[</span><span class="s1">'first_name'</span><span class="p">];</span> +<span class="nv">$last_name</span> <span class="o">=</span> <span class="nv">$_POST</span><span class="p">[</span><span class="s1">'last_name'</span><span class="p">];</span> +<span class="nv">$groups</span> <span class="o">=</span> <span class="k">array</span><span class="p">(</span><span class="mi">123456</span><span class="p">,</span> <span class="mi">654321</span><span class="p">);</span> + +<span class="c1">// Member data other than email should be passed in an array called "fields"</span> +<span class="nv">$member_data</span> <span class="o">=</span> <span class="k">array</span><span class="p">(</span> + <span class="s2">"email"</span> <span class="o">=></span> <span class="nv">$email</span><span class="p">,</span> + <span class="s2">"fields"</span> <span class="o">=></span> <span class="k">array</span><span class="p">(</span> + <span class="s2">"name_first"</span> <span class="o">=></span> <span class="nv">$first_name</span><span class="p">,</span> + <span class="s2">"name_last"</span> <span class="o">=></span> <span class="nv">$last_name</span> + <span class="p">),</span> + <span class="s2">"group_ids"</span> <span class="o">=></span> <span class="nv">$groups</span> +<span class="p">);</span> + +<span class="c1">// Set URL</span> +<span class="nv">$url</span> <span class="o">=</span> <span class="s2">"https://api.e2ma.net/"</span><span class="o">.</span><span class="nv">$account_id</span><span class="o">.</span><span class="s2">"/members/add"</span><span class="p">;</span> + +<span class="c1">// Open connection</span> +<span class="nv">$ch</span> <span class="o">=</span> <span class="nb">curl_init</span><span class="p">();</span> + +<span class="c1">// Set the url, number of POST vars, POST data</span> +<span class="nb">curl_setopt</span><span class="p">(</span><span class="nv">$ch</span><span class="p">,</span> <span class="nx">CURLOPT_USERPWD</span><span class="p">,</span> <span class="nv">$public_api_key</span> <span class="o">.</span> <span class="s2">":"</span> <span class="o">.</span> <span class="nv">$private_api_key</span><span class="p">);</span> +<span class="nb">curl_setopt</span><span class="p">(</span><span class="nv">$ch</span><span class="p">,</span> <span class="nx">CURLOPT_URL</span><span class="p">,</span> <span class="nv">$url</span><span class="p">);</span> +<span class="nb">curl_setopt</span><span class="p">(</span><span class="nv">$ch</span><span class="p">,</span> <span class="nx">CURLOPT_POST</span><span class="p">,</span> <span class="nb">count</span><span class="p">(</span><span class="nv">$member_data</span><span class="p">));</span> +<span class="nb">curl_setopt</span><span class="p">(</span><span class="nv">$ch</span><span class="p">,</span> <span class="nx">CURLOPT_POSTFIELDS</span><span class="p">,</span> <span class="nb">json_encode</span><span class="p">(</span><span class="nv">$member_data</span><span class="p">));</span> +<span class="nb">curl_setopt</span><span class="p">(</span><span class="nv">$ch</span><span class="p">,</span> <span class="nx">CURLOPT_HTTPHEADER</span><span class="p">,</span> <span class="k">array</span><span class="p">(</span><span class="s1">'Content-type: application/json'</span><span class="p">));</span> +<span class="nb">curl_setopt</span><span class="p">(</span><span class="nv">$ch</span><span class="p">,</span> <span class="nx">CURLOPT_RETURNTRANSFER</span><span class="p">,</span> <span class="k">true</span><span class="p">);</span> +<span class="nb">curl_setopt</span><span class="p">(</span><span class="nv">$ch</span><span class="p">,</span> <span class="nx">CURLOPT_SSL_VERIFYPEER</span><span class="p">,</span> <span class="k">false</span><span class="p">);</span> +<span class="nv">$head</span> <span class="o">=</span> <span class="nb">curl_exec</span><span class="p">(</span><span class="nv">$ch</span><span class="p">);</span> +<span class="nv">$http_code</span> <span class="o">=</span> <span class="nb">curl_getinfo</span><span class="p">(</span><span class="nv">$ch</span><span class="p">,</span> <span class="nx">CURLINFO_HTTP_CODE</span><span class="p">);</span> +<span class="nb">curl_close</span><span class="p">(</span><span class="nv">$ch</span><span class="p">);</span> + +<span class="c1">//execute post</span> +<span class="k">if</span><span class="p">(</span><span class="nv">$http_code</span> <span class="o">></span> <span class="mi">200</span><span class="p">)</span> <span class="p">{</span> + <span class="nv">$app_message</span> <span class="o">=</span> <span class="s2">"Error sending subscription request"</span><span class="p">;</span> + <span class="nb">print_r</span><span class="p">(</span><span class="nv">$head</span><span class="p">);</span> +<span class="p">}</span> <span class="k">else</span> <span class="p">{</span> + <span class="nb">print_r</span><span class="p">(</span><span class="nv">$head</span><span class="p">);</span> + <span class="nv">$app_message</span> <span class="o">=</span> <span class="s2">"Success!"</span><span class="p">;</span> +<span class="p">}</span> + +<span class="k">echo</span> <span class="nv">$app_message</span><span class="p">;</span> +<span class="cp">?></span><span class="x"></span> +</pre></div> +</div> +</div> + + + </div> + </div> + </div> + <div class="sphinxsidebar"> + <div class="sphinxsidebarwrapper"><h3>Related Topics</h3> +<ul> + <li><a href="index.html">Documentation overview</a><ul> + <li>Previous: <a href="webhooks.html" title="previous chapter">Webhook Usage</a></li> + <li>Next: <a href="php_get_member_example.html" title="next chapter">PHP Get Member By Email Example</a></li> + </ul></li> +</ul> +<div id="searchbox" style="display: none"> + <h3>Quick search</h3> + <form class="search" action="search.html" method="get"> + <input type="text" name="q" /> + <input type="submit" value="Go" /> + <input type="hidden" name="check_keywords" value="yes" /> + <input type="hidden" name="area" value="default" /> + </form> + <p class="searchtip" style="font-size: 90%"> + Enter search terms or a module, class or function name. + </p> +</div> +<script type="text/javascript">$('#searchbox').show(0);</script> + </div> + </div> + <div class="clearer"></div> + </div> + <div class="footer"> + © Copyright 2012, Emma. + Last updated on Dec 17, 2012 at 10:51. + </div> + </body> +</html> \ No newline at end of file diff --git a/placeholders.html b/placeholders.html new file mode 100644 index 0000000..983b2c5 --- /dev/null +++ b/placeholders.html @@ -0,0 +1,148 @@ + +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> + + +<html xmlns="http://www.w3.org/1999/xhtml"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> + + <title>Placeholder Syntax — audience 0.1 documentation</title> + + <link rel="stylesheet" href="_static/emma.css" type="text/css" /> + <link rel="stylesheet" href="_static/pygments.css" type="text/css" /> + + <script type="text/javascript"> + var DOCUMENTATION_OPTIONS = { + URL_ROOT: '', + VERSION: '0.1', + COLLAPSE_INDEX: false, + FILE_SUFFIX: '.html', + HAS_SOURCE: true + }; + </script> + <script type="text/javascript" src="_static/jquery.js"></script> + <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="Search Syntax" href="member_search.html" /> + <link rel="prev" title="Pagination" href="pagination.html" /> + + + <style type="text/css"> + .resp-trigger, .resp-trigger:hover {font-size:10pt;text-decoration:none;} + div.sample-response.hide-response pre.response {display: none;} + div.sample-response .tshow, + div.sample-response.hide-response .thide {display: none;} + div.sample-response .thide, + div.sample-response.hide-response .tshow {display: inline;} + </style> + <script> + $().ready(function() { + $("a.resp-trigger").click(function(e) { + e.preventDefault(); + $(this).parents("div.sample-response").toggleClass("hide-response"); + }); + }); + </script> + + </head> + <body> +<header role="banner"> + <h1>Emma API Documentation</h1> +</header> + <div class="related"> + <h3>Navigation</h3> + <ul> + <li class="right" style="margin-right: 10px"> + <a href="genindex.html" title="General Index" + accesskey="I">index</a></li> + <li class="right" > + <a href="http-routingtable.html" title="HTTP Routing Table" + >routing table</a> |</li> + <li class="right" > + <a href="member_search.html" title="Search Syntax" + accesskey="N">next</a> |</li> + <li class="right" > + <a href="pagination.html" title="Pagination" + accesskey="P">previous</a> |</li> + <li><a href="index.html">audience 0.1 documentation</a> »</li> + </ul> + </div> + + <div class="document"> + <div class="documentwrapper"> + <div class="bodywrapper"> + <div class="body"> + + <div class="section" id="placeholder-syntax"> +<span id="id1"></span><h1>Placeholder Syntax<a class="headerlink" href="#placeholder-syntax" title="Permalink to this headline">¶</a></h1> +<div class="section" id="syntax-overview"> +<h2>Syntax Overview<a class="headerlink" href="#syntax-overview" title="Permalink to this headline">¶</a></h2> +<p>The content of messages can be customized using the template tag library. +Each template tag should be enclosed in a <tt class="docutils literal"><span class="pre">[%</span></tt> <tt class="docutils literal"><span class="pre">%]</span></tt> pair. Where a tag +requires a qualifier value, the value should be attached with a colon.</p> +<p>For example, the following extract shows a member’s name being inserted into a +greeting:</p> +<div class="highlight-python"><pre>Hello [% member:first_name %] [% member:last_name %], + +Welcome to the "Exciting Onions" mailing list, where you can be kept up to +date on all the latest onion-related news ...</pre> +</div> +<p>Some tags also accept additional key/value pairs to control their behavior. +For example, adding a default value to a member field:</p> +<div class="highlight-python"><pre>Hello [% member:first_name default="Friend" %]</pre> +</div> +<p>...or specifying the link text for a trackable link:</p> +<div class="highlight-python"><pre>Please visit [% link:http://fancyonions.com/home name="our website" %]</pre> +</div> +<div class="admonition-todo admonition" id="index-0"> +<p class="first admonition-title">Todo</p> +<p class="last">fully document the available tags</p> +</div> +</div> +</div> + + + </div> + </div> + </div> + <div class="sphinxsidebar"> + <div class="sphinxsidebarwrapper"> + <h3><a href="index.html">Table Of Contents</a></h3> + <ul> +<li><a class="reference internal" href="#">Placeholder Syntax</a><ul> +<li><a class="reference internal" href="#syntax-overview">Syntax Overview</a></li> +</ul> +</li> +</ul> +<h3>Related Topics</h3> +<ul> + <li><a href="index.html">Documentation overview</a><ul> + <li>Previous: <a href="pagination.html" title="previous chapter">Pagination</a></li> + <li>Next: <a href="member_search.html" title="next chapter">Search Syntax</a></li> + </ul></li> +</ul> +<div id="searchbox" style="display: none"> + <h3>Quick search</h3> + <form class="search" action="search.html" method="get"> + <input type="text" name="q" /> + <input type="submit" value="Go" /> + <input type="hidden" name="check_keywords" value="yes" /> + <input type="hidden" name="area" value="default" /> + </form> + <p class="searchtip" style="font-size: 90%"> + Enter search terms or a module, class or function name. + </p> +</div> +<script type="text/javascript">$('#searchbox').show(0);</script> + </div> + </div> + <div class="clearer"></div> + </div> + <div class="footer"> + © Copyright 2012, Emma. + Last updated on Dec 17, 2012 at 10:51. + </div> + </body> +</html> \ No newline at end of file diff --git a/robots.txt b/robots.txt new file mode 100644 index 0000000..853b003 --- /dev/null +++ b/robots.txt @@ -0,0 +1,6 @@ +User-agent: * +Disallow: +Disallow: _images/ +Disallow: _sources/ +Disallow: _static/ + diff --git a/search.html b/search.html new file mode 100644 index 0000000..54f27c1 --- /dev/null +++ b/search.html @@ -0,0 +1,118 @@ + +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> + + +<html xmlns="http://www.w3.org/1999/xhtml"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> + + <title>Search — audience 0.1 documentation</title> + + <link rel="stylesheet" href="_static/emma.css" type="text/css" /> + <link rel="stylesheet" href="_static/pygments.css" type="text/css" /> + + <script type="text/javascript"> + var DOCUMENTATION_OPTIONS = { + URL_ROOT: '', + VERSION: '0.1', + COLLAPSE_INDEX: false, + FILE_SUFFIX: '.html', + HAS_SOURCE: true + }; + </script> + <script type="text/javascript" src="_static/jquery.js"></script> + <script type="text/javascript" src="_static/underscore.js"></script> + <script type="text/javascript" src="_static/doctools.js"></script> + <script type="text/javascript" src="_static/searchtools.js"></script> + <link rel="top" title="audience 0.1 documentation" href="index.html" /> + <script type="text/javascript"> + jQuery(function() { Search.loadIndex("searchindex.js"); }); + </script> + + + + <style type="text/css"> + .resp-trigger, .resp-trigger:hover {font-size:10pt;text-decoration:none;} + div.sample-response.hide-response pre.response {display: none;} + div.sample-response .tshow, + div.sample-response.hide-response .thide {display: none;} + div.sample-response .thide, + div.sample-response.hide-response .tshow {display: inline;} + </style> + <script> + $().ready(function() { + $("a.resp-trigger").click(function(e) { + e.preventDefault(); + $(this).parents("div.sample-response").toggleClass("hide-response"); + }); + }); + </script> + + + </head> + <body> +<header role="banner"> + <h1>Emma API Documentation</h1> +</header> + <div class="related"> + <h3>Navigation</h3> + <ul> + <li class="right" style="margin-right: 10px"> + <a href="genindex.html" title="General Index" + accesskey="I">index</a></li> + <li class="right" > + <a href="http-routingtable.html" title="HTTP Routing Table" + >routing table</a> |</li> + <li><a href="index.html">audience 0.1 documentation</a> »</li> + </ul> + </div> + + <div class="document"> + <div class="documentwrapper"> + <div class="bodywrapper"> + <div class="body"> + + <h1 id="search-documentation">Search</h1> + <div id="fallback" class="admonition warning"> + <script type="text/javascript">$('#fallback').hide();</script> + <p> + Please activate JavaScript to enable the search + functionality. + </p> + </div> + <p> + From here you can search these documents. Enter your search + words into the box below and click "search". Note that the search + function will automatically search for all of the words. Pages + containing fewer words won't appear in the result list. + </p> + <form action="" method="get"> + <input type="text" name="q" value="" /> + <input type="submit" value="search" /> + <span id="search-progress" style="padding-left: 10px"></span> + </form> + + <div id="search-results"> + + </div> + + </div> + </div> + </div> + <div class="sphinxsidebar"> + <div class="sphinxsidebarwrapper"><h3>Related Topics</h3> +<ul> + <li><a href="index.html">Documentation overview</a><ul> + </ul></li> +</ul> + </div> + </div> + <div class="clearer"></div> + </div> + <div class="footer"> + © Copyright 2012, Emma. + Last updated on Dec 17, 2012 at 10:51. + </div> + </body> +</html> \ No newline at end of file diff --git a/searchindex.js b/searchindex.js new file mode 100644 index 0000000..1dd0faf --- /dev/null +++ b/searchindex.js @@ -0,0 +1 @@ +Search.setIndex({objects:{"":{"/#account_id/members/#member_id/groups/remove":[8,1,1,"put--#account_id-members-#member_id-groups-remove"],"/#account_id/mailings/#mailing_id/winner/#winner_id":[9,2,1,"post--#account_id-mailings-#mailing_id-winner-#winner_id"],"/#account_id/response/#mailing_id/in_progress":[5,0,1,"get--#account_id-response-#mailing_id-in_progress"],"/#account_id/members/groups/remove":[8,1,1,"put--#account_id-members-groups-remove"],"/#account_id/mailings/#mailing_id/searches":[9,0,1,"get--#account_id-mailings-#mailing_id-searches"],"/#account_id/fields":[10,2,1,"post--#account_id-fields"],"/#account_id/members/#group_id/copy":[8,1,1,"put--#account_id-members-#group_id-copy"],"/#account_id/members/status":[8,1,1,"put--#account_id-members-status"],"/#account_id/response/#mailing_id/shares/overview":[5,0,1,"get--#account_id-response-#mailing_id-shares-overview"],"/#account_id/webhooks/events":[4,0,1,"get--#account_id-webhooks-events"],"/#account_id/members/#member_id/optout":[8,0,1,"get--#account_id-members-#member_id-optout"],"/#account_id/webhooks":[4,3,1,"delete--#account_id-webhooks"],"/#account_id/fields/#field_id":[10,3,1,"delete--#account_id-fields-#field_id"],"/#account_id/response/#mailing_id":[5,0,1,"get--#account_id-response-#mailing_id"],"/#account_id/groups/#member_group_id/members/remove":[13,3,1,"delete--#account_id-groups-#member_group_id-members-remove"],"/#account_id/searches":[7,2,1,"post--#account_id-searches"],"/#account_id/members/imports":[8,0,1,"get--#account_id-members-imports"],"/#account_id/forwards/#mailing_id/#member_id":[9,2,1,"post--#account_id-forwards-#mailing_id-#member_id"],"/#account_id/response/#mailing_id/customer_share_clicks":[5,0,1,"get--#account_id-response-#mailing_id-customer_share_clicks"],"/#account_id/mailings/#mailing_id/messages/#member_id":[9,0,1,"get--#account_id-mailings-#mailing_id-messages-#member_id"],"/#account_id/members/#member_id/mailings":[8,0,1,"get--#account_id-members-#member_id-mailings"],"/#account_id/groups/#from_group_id/#to_group_id/members/copy":[13,1,1,"put--#account_id-groups-#from_group_id-#to_group_id-members-copy"],"/#account_id/triggers":[14,2,1,"post--#account_id-triggers"],"/#account_id/triggers/#trigger_id":[14,3,1,"delete--#account_id-triggers-#trigger_id"],"/#account_id/members/delete":[8,1,1,"put--#account_id-members-delete"],"/#account_id/mailings/#mailing_id/groups":[9,0,1,"get--#account_id-mailings-#mailing_id-groups"],"/#account_id/response/#mailing_id/forwards":[5,0,1,"get--#account_id-response-#mailing_id-forwards"],"/#account_id/members/#member_id":[8,3,1,"delete--#account_id-members-#member_id"],"/#account_id/triggers/#trigger_id/mailings":[14,0,1,"get--#account_id-triggers-#trigger_id-mailings"],"/#account_id/searches/#search_id/members":[7,0,1,"get--#account_id-searches-#search_id-members"],"/#account_id/members/status/:status_from/to/:status_to":[8,1,1,"put--#account_id-members-status--status_from-to--status_to"],"/#account_id/response/#mailing_id/sends":[5,0,1,"get--#account_id-response-#mailing_id-sends"],"/#account_id/members":[8,3,1,"delete--#account_id-members"],"/#account_id/members/email/:email":[8,0,1,"get--#account_id-members-email--email"],"/#account_id/response/#mailing_id/links":[5,0,1,"get--#account_id-response-#mailing_id-links"],"/#account_id/searches/#search_id":[7,3,1,"delete--#account_id-searches-#search_id"],"/#account_id/members/imports/#import_id/members":[8,0,1,"get--#account_id-members-imports-#import_id-members"],"/#account_id/fields/#field_id/clear":[10,2,1,"post--#account_id-fields-#field_id-clear"],"/#account_id/groups/#member_group_id/members":[13,3,1,"delete--#account_id-groups-#member_group_id-members"],"/#account_id/members/imports/#import_id":[8,0,1,"get--#account_id-members-imports-#import_id"],"/#account_id/response":[5,0,1,"get--#account_id-response"],"/#account_id/response/#mailing_id/opens":[5,0,1,"get--#account_id-response-#mailing_id-opens"],"/#account_id/members/imports/delete":[8,3,1,"delete--#account_id-members-imports-delete"],"/#account_id/mailings":[9,0,1,"get--#account_id-mailings"],"/#account_id/mailings/cancel/#mailing_id":[9,3,1,"delete--#account_id-mailings-cancel-#mailing_id"],"/#account_id/mailings/validate":[9,2,1,"post--#account_id-mailings-validate"],"/#account_id/response/#mailing_id/deliveries":[5,0,1,"get--#account_id-response-#mailing_id-deliveries"],"/#account_id/mailings/#mailing_id/members":[9,0,1,"get--#account_id-mailings-#mailing_id-members"],"/#account_id/response/#share_id/customer_share":[5,0,1,"get--#account_id-response-#share_id-customer_share"],"/#account_id/webhooks/#webhook_id":[4,3,1,"delete--#account_id-webhooks-#webhook_id"],"/#account_id/members/add":[8,2,1,"post--#account_id-members-add"],"/#account_id/response/#mailing_id/optouts":[5,0,1,"get--#account_id-response-#mailing_id-optouts"],"/#account_id/response/#mailing_id/shares":[5,0,1,"get--#account_id-response-#mailing_id-shares"],"/#account_id/groups/#member_group_id":[13,3,1,"delete--#account_id-groups-#member_group_id"],"/#account_id/mailings/#mailing_id":[9,3,1,"delete--#account_id-mailings-#mailing_id"],"/#account_id/members/#member_id/groups":[8,3,1,"delete--#account_id-members-#member_id-groups"],"/#account_id/groups":[13,2,1,"post--#account_id-groups"],"/#account_id/response/#mailing_id/clicks":[5,0,1,"get--#account_id-response-#mailing_id-clicks"],"/#account_id/mailings/#mailing_id/headsup":[9,0,1,"get--#account_id-mailings-#mailing_id-headsup"],"/#account_id/response/#mailing_id/signups":[5,0,1,"get--#account_id-response-#mailing_id-signups"],"/#account_id/response/#mailing_id/customer_shares":[5,0,1,"get--#account_id-response-#mailing_id-customer_shares"]}},terms:{all:[0,1,4,5,8,9,10,11,12,13,14],code:[0,1,6,3],change_typ:8,queri:[0,2,4],month:[0,5,9,14],four:[0,5],mile:0,least:0,field_creat:[12,4],link_target:[5,9],content:[1,11,6,9,3],privat:1,specif:[8,9,4],friendli:5,send:[1,9,4,3,5],customer_share_click:5,those:[5,12],group_upd:[12,4],sent:[5,8,12,9,14],curl_clos:[1,6,3],brown:[7,8],digit:5,everi:0,string:[0,4,5,7,8,9,10,12,13,14],fals:[1,3,4,5,6,7,8,9,10,13,14],webhook:[1,12,4],mailing_status:9,trigger_id:14,webview_share_click:5,affect:[7,8],member_add:[12,4],create_mail:9,new_boolean:10,foo:0,level:1,group_delet:[12,4],list:[0,1,2,4,5,7,8,9,10,11,12,13,14],upload:8,iter:2,"try":8,item:2,plaintext_onli:[9,14],div:[4,5,7,8,9,10,13,14],survey_id:14,pleas:[1,8,11,9],prevent:2,work:[1,4],ten:0,sync:10,sign:[0,5,4],past:1,second:[0,7,14],follow:[0,1,4,5,7,9,11,13],further:1,durat:9,click:[0,4,5,7,8,12,14],append:2,even:10,what:1,hide:[4,5,7,8,9,10,13,14],appear:1,from_group_id:13,section:1,current:[8,12,9],delet:[1,4,7,8,9,10,12,13,14],"new":[1,4,5,7,8,9,10,11,13,14],net:[1,2,6,3],delivery_t:8,method:[5,8,13,4,9],can:[0,1,2,4,5,7,8,9,11,12,13],widget:[7,10,8,9,13],hash:0,datematch:0,displai:10,variat:9,gener:[0,8,12,14],onli:[5,8],here:[0,1,3,5,6,8],bodi:9,let:[1,4,10],address:[0,1,8,6,9],along:8,sinc:8,valu:[0,5,7,8,10,11],field_upd:[12,4],search:[0,1,9,7],survei:14,sender:[9,14],larger:2,queue:5,prior:9,action:[0,8],chang:[8,4],name_first:[1,3],campaign:5,newbi:5,appli:[7,14],prefer:0,myemma:[4,5,7,8,9,13],filenam:8,customer_shar:5,"boolean":[0,1,5,7,8,9,10,13,14],curlopt_postfield:[1,3],total:5,jone:[7,5,8,13],select:10,newslett:[7,8,13],describ:7,would:[0,1],regist:4,two:[0,5],next:[0,1],create_webhook:4,few:[5,8],call:[1,2,3,4,6,8,12],criteria:7,member_add_to_group:[12,4],type:[1,3,4,5,6,7,10,9,14],until:2,more:[0,4,7,8,9,13],peopl:5,relat:[1,8,11,9],about:[10,8,12,4,9],notic:8,thide:[4,5,7,8,9,10,13,14],flag:[5,7,8,10,9,14],exce:2,indic:8,examin:1,particular:[1,4,5,8,10,12,9],in_progress:5,origin:9,must:[0,7,13,10],none:9,endpoint:[1,4,5,7,8,9,10,13,14],join:[0,7],hour:0,setup:1,member_sinc:[0,5,7,8,9,13],uniqu:5,histori:8,soup:7,remain:[0,9],archiv:[5,9],member_optout:[12,4],drill:5,control:[1,11,9],quickstart:1,give:5,forward_mailing_id:5,email_domain:[0,5],share:[0,5,8,12,4],accept:[0,5,7,8,9,10,11,13,14],total_click:5,tag:[11,9],want:[1,12,13,5],occur:[7,12],some_numeric_field:0,delai:14,alwai:0,webhook_event_id:4,cours:1,end:[2,8],first_nam:[1,3,5,7,8,9,10,11,13,14],started_or_finish:[9,14],anoth:[9,13],get:[1,4,5,6,7,8,9,10,13,14],message_open:[12,4],html_bodi:[9,14],share_statu:5,push_offset:14,del_statu:5,tild:5,num_members_upd:8,simpl:0,chri:9,pizza:[7,8],map:0,autent:1,referenc:7,xxxx:6,sundai:0,membership:13,taco:[7,5,8,9,13],mai:12,multipl:[10,8],data:[1,3,4,5,10,12],welcom:11,add_onli:8,"short":0,json_encod:[1,3],optout:[5,8,12,13],num_dupl:8,favorit:10,correspond:[0,1],greet:11,predic:[0,1],issu:[1,10],"12t11":[7,5,8,9,13],combin:7,allow:[0,7,8],some_zipcode_field:0,signed_up:5,order:[5,10],michel:[8,9],mailing_nam:5,checkbox:10,fields_upd:8,over:2,becaus:12,buyer:[7,8,9,13],comma:[9,13],is_dis:14,vari:8,paramet:[2,4,5,7,8,9,10,13,14],widget_typ:10,style:[0,4,5,7,8,9,10,13,14],group:[0,1,3,4,7,8,9,12,13,14],curl_setopt:[1,6,3],how:[7,1,2,4],import_start:8,better:[13,14],platform:1,pend:[1,9],mailing_list:9,onc:9,mail:[0,1,4,5,8,11,12,9,14],hidden:13,main:1,might:[1,4],link_nam:[5,9],them:[8,9],"return":[0,1,4,5,7,8,9,10,12,13,14],greater:[0,8],thei:[0,9],food:10,timestamp:[0,5,12,9,10],spell:4,dai:0,auth:1,instead:[12,2,8],now:5,down:5,term:[0,1],alex:9,name:[0,4,5,7,8,9,10,11,13,14],edit:[7,1,14,10],curl_getinfo:[1,6,3],authent:[1,6,4,3],successufulli:4,separ:[1,9,13],each:[1,2,5,9,12,11,13],found:[8,9,4,14],updat:[4,7,8,9,10,12,13,14],mean:0,status:[8,9],domain:0,shortcut_nam:10,weight:[4,5,7,8,9,10,13,14],resum:9,individu:[1,8],hard:[0,5],last_nam:[1,3,5,7,8,9,10,11,13,14],"05t15":5,birthdai:[10,14],expect:1,year:[0,5,9,14],our:[1,11,12,4,14],happen:[1,4,5],extract:11,short_display_nam:10,special:[0,7,8,13],out:[0,1,4,5,7,8,10,13],variabl:[1,6,3],message_shar:[12,4],network:[5,12],private_api_kei:[1,6,3],check_multipl:10,categori:1,rel:0,print:6,correct:10,statist:8,benjamin:8,qualifi:11,insid:1,advanc:0,contain:[0,5,7,13,10,9],differ:0,standard:[5,9],status_from:8,base:[5,8],recipient_search:9,dictionari:8,put:[4,7,8,9,10,13,14],"13t23":[7,5,8],visit:11,could:1,omit:5,success:[7,1,9,13,3],filter:[0,1,7],search_id:7,pagin:[1,2],member_id:[5,7,8,9,12,13],summari:[1,5],assign:9,first:[0,1,10,5],oper:[0,1,7,14],rang:5,notifi:12,directli:0,curlopt_ssl_verifyp:[1,6,3],curl_init:[1,6,3],number:[5,2,13,3,10],placehold:[1,11],date:[0,5,8,10,11,14],unlik:9,alreadi:[10,9,13],done:8,plaintext_pref:[7,8,9,13],oppos:8,open:[0,3,4,5,6,7,8,12],payload:4,fanci:5,size:2,given:[0,8,9,4],"long":10,script:1,associ:[1,8,9,4,5],system:[8,12,4,14],messag:[4,5,8,12,11,9,14],attach:11,friend:11,curlinfo_http_cod:[1,6,3],shell:0,option:[0,5,7,8,9,10,13,14],especi:8,signup:[0,1,3,4,5,8,12,14],copi:[8,13],member_upd:[12,4],specifi:[0,2,7,8,10,11,9,14],curl_exec:[1,6,3],curlopt_httphead:[1,6,3],member_signup:[12,4],create_search:7,part:[0,9],enclos:11,than:[0,1,2,3,12,13],with_plaintext:9,"02t10":[5,8],"02t11":[5,8],"02t13":5,nathan:8,whenev:8,provid:[1,5,8,12,9,14],remov:[12,8,13,4],mailing_start:4,rate:2,structur:7,charact:9,greg:8,trackabl:11,were:5,minut:0,danc:1,error_count:[7,8,9,13],pre:[4,5,7,8,9,10,13,14],cleaner:1,sai:0,share_id:5,signup_form_id:[0,8,12,9,14],plaintext:[5,9,14],pass:[1,3],ani:[0,1,2,7,8,9],have:[0,5,8,12,9],tabl:5,seen:5,"null":[7,8,13,10,9,14],kevin:[9,14],signup_mail:0,caus:14,inform:[1,4,6,8,9,10,13],object_id:14,note:[1,8,9,4],also:[0,4,5,7,8,9,11,13],exampl:[0,1,3,5,6,7,11],take:[0,4],which:[0,1,4,8,10,12,9,14],some_number_field:0,singl:[0,1,3,4,5,8,10,12,13],excit:11,sure:1,delete_memb:13,normal:9,parent_mail:14,recipient_count:[5,9,14],previou:9,field_id:[10,12,14],last_run_at:7,most:14,pair:11,"class":[4,5,7,8,9,10,13,14],member_group_id:[8,9,13],mcconnel:[9,14],url:[1,3,4,5,6,12],mailing_finish:[12,4],clear:10,request:[1,2,3],doe:[0,5,7,8,10,13],member_status_upd:[12,4],declar:9,tech:4,determin:1,dataset:10,dow:0,recipi:9,"6db0cc7e6fdb2da589b65f29d90c96b6":9,show:[4,5,7,8,9,10,11,13,14],text:[10,11,12],radiu:0,syntax:[0,1,11,9],radio:10,font:[4,5,7,8,9,10,13,14],fine:9,find:[1,6,5],status_to:8,toast:[7,5,8,13],access:[1,5],giant:12,just:[0,9],pretti:8,column_ord:10,explain:[0,1],winner:9,activ:[1,5,7,8,13,9],figur:1,should:[1,2,3,7,8,11,9],templat:[11,14],share_count:5,count:[1,2,3,5],variou:[8,13],confirmed_opt_in:[7,8,9,13],familiar:1,express:0,account:[1,4,5,7,8,10,13,14],cannot:[8,9,4],progress:9,report:[10,8],requir:[1,7,8,10,11,9],object:[5,13],favorite_food:[5,7,8,13,10,9],bar:0,organ:1,include_archiv:[5,9],"public":1,"default":[5,11,13,4,9],ref_member_id:5,message_share_click:[12,4],through:[1,8,4],where:[0,1,8,11,7],view:1,set:[0,1,2,3,6,8,9,12,13],link_id:[0,5,12,9,14],see:[7,1,8],result:[0,1,2,5,8,9],respons:[0,1,2,4,5,7,8,9,10,13,14],fail:[5,9,4],themselv:2,member_field:[0,7],xxxxx:6,subject:[8,12,9,14],statu:[1,4,5,7,8,9,12,13],fancyonion:11,kei:[0,1,11,4],is_schedul:9,message_forward:[12,4],databas:8,user:[0,8,9,13],last_modified_at:[7,8,9,13],addresse:5,written:1,between:[0,7,2],"import":[1,8,12,4,10],subscript:[1,3],entiti:1,curlopt_url:[1,6,3],email:[0,1,3,5,6,7,8,9,13],wide:14,extend:1,numer:10,http404:[4,5,7,8,9,10,13,14],job:13,entir:[0,8],share_click:5,to_group_id:13,curlopt_returntransf:[1,6,3],addit:[0,1,8,9,11,13],member_remove_from_group:[12,4],send_start:[0,9,14],protect:1,accident:2,last:[0,5,10],delimit:5,pertain:5,message_click:[12,4],curlopt_post:[1,3],audienc:[1,8,9],mang:0,http500:14,seri:5,com:[4,5,6,7,8,9,11,13],zip_code_field:0,"03t15":[7,5,8,13],point:1,toni:[7,8],overview:[0,1,11,12,5],period:1,winner_id:9,colon:[7,11],optout_count:[7,8,9,13],suppli:9,cancel:9,tuesdai:0,duplic:5,quit:[5,8],user_id:4,recur:14,headsup:9,addition:[1,2],due:5,been:[1,8,10,5],mark:[8,9],whom:9,tshow:[4,5,7,8,9,10,13,14],trigger:[1,4,5,7,8,9,10,12,13,14],unsubscrib:0,treat:8,interest:[10,4],basic:[0,1,4,8,13,14],monthli:[7,8,13],blob:4,mailing_mailing_id:5,mailing_id:[0,5,8,12,9,14],fire:[8,4,14],xxx:[1,3],argument:[0,5],link_ord:[5,9],input:1,present:7,clicked_uniqu:5,"case":[1,8],look:[1,14,10],frozen:9,easier:12,email_error:[7,8,9,13],defin:[0,10,8,9],"while":0,outcom:5,abov:[0,1,8,7],error:[1,3,6,8,10,13],loop:8,opt:[0,4,5,7,8,13],readi:9,deliv:5,recipient_group:9,equal:0,itself:0,new_statu:12,webhook_id:4,recipient_memb:9,perform:8,make:[1,12,6,10],belong:[0,8,4],same:4,check:[8,6,9],member:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14],handl:1,html:9,split:9,document:[1,11,12],complet:[1,3,4,6,8,9],week:0,finish:[5,12,4],http:[1,2,3,4,5,6,11,9],href:[4,5,7,8,9,10,13,14],nest:0,someon:4,rais:[4,5,7,8,9,10,13,14],initi:[10,9],php:[1,6,3],bob:[7,5],recent:1,kept:11,center:0,min:5,well:5,inherit:9,person:9,mailing_typ:[9,14],without:0,command:1,thi:[0,1,4,5,7,8,9,10,12,13,14],undefin:0,http_code:[1,6,3],latest:11,construct:[0,7,9],identifi:8,paus:9,execut:[1,3],less:0,resp:[4,5,7,8,9,10,13,14],"_post":[1,3],against:0,aspect:13,recipient_email:9,source_filenam:8,yet:5,smith:[7,5,8,9,13],"12t09":[7,8],display_nam:10,easi:[10,12],"01t00":8,had:0,littl:1,blog:4,add:[12,1,8,13,3],other:[1,8,9,3,5],curlopt_userpwd:[1,6,3],import_finish:[8,12,4],schedul:9,els:[1,6,3],save:7,match:[0,7],build:1,sanit:1,applic:[1,6,3],account_id:[1,3,4,5,6,7,8,9,10,12,13,14],disposit:1,crud:[8,13,14],print_r:[6,3],mailing_statu:[9,14],know:[5,4],background:13,parent_mailing_id:[9,14],bit:1,insert:11,emma:[1,5,7,8,9,12,13],like:1,onion:11,deprec:4,arbitrari:8,manual:9,integ:[1,8,14,10,5],public_kei:4,api:[1,2,6,12,3],either:[0,5,7],bunch:0,output:9,group_id:[1,8,12,3],soft:[0,5],manag:[0,1,13,4],import_id:[8,12],www:[5,9],old:7,deal:[8,13],captur:1,arrai:[0,1,3,5,6,7,8,9,10,12,13,14],some:[1,11,5],"17t10":[7,14],field_delet:[12,4],certain:12,intern:10,sampl:[1,4,5,7,8,9,10,13,14],elaps:[2,9],home:11,deleted_at:[7,8,13,10,9,14],some_string_field:0,librari:11,bounce_count:[7,8,9,13],confirm:8,broad:12,per:5,send_finish:[9,14],larg:[0,2],condit:7,three:9,network_cod:12,localhost:9,refer:[5,7,8,13,10,9],with_html_bodi:9,who:[0,5],bold:[4,5,7,8,9,10,13,14],event_typ:14,inspect:1,usag:[1,8,12],num_members_ad:8,fulli:11,from:[1,4,8,9,12,13,14],post:[1,3,4,7,8,9,10,12,13,14],group_creat:[12,4],gladi:[7,5,8,13],actual:5,zip:0,groups_upd:8,column:10,page:2,includ:[1,5,7,8,9,10,13],webview:9,disabl:[9,14],block:[1,2],yyyi:5,member_data:[1,3],glob:0,bounc:[0,5],within:0,encod:[9,4],delivery_typ:[5,8],compos:0,webview_shar:5,field_typ:10,active_count:[7,8,9,13],public_webview_url:9,pivot:5,your:[1,4,5,7,8,9,10,13],websit:11,span:[4,5,7,8,9,10,13,14],wai:[1,12],area:1,overus:2,group_nam:[8,12,13,9],support:12,unique_click:5,json:[0,1,3,4,6,7],fast:8,custom:[5,8,11,10],avail:[0,11,4],start:[1,2,8,4],interfac:12,send_at:[9,14],exceed:2,"var":3,interv:[0,14],deliveri:5,head:[1,6,9,3],form:[1,3,4,6,8,10,14],enough:2,forc:1,forward:[0,4,5,8,12,9],"31st":0,group_typ:[8,9,13],push_offset_unit:14,link:[0,4,5,11,9,14],line:[1,5],realli:1,"true":[0,1,2,3,4,6,7,8,9,10,13,14],archived_t:[9,14],name_last:[1,3],info:4,pull:2,made:1,possibl:[5,8,12],whether:8,maximum:2,tell:12,http403:9,record:[0,7,8],below:[0,1,8,12],http400:[7,8,9],limit:[5,2,8,9],some_array_field:0,otherwis:[10,8],start_t:14,mta:5,connect:[6,3],notif:9,creat:[4,5,7,9,10,12,13,14],"int":5,retriev:[7,1,2,8,9],email_us:[0,5],repres:5,exist:[0,4,5,7,8,10,13],behavior:11,curl:[1,6],lentil:7,probabl:14,echo:[1,3],successfulli:[5,8,9],mailing_subject:12,grp:13,todo:11,when:[8,12,4,9],detail:[1,4,7,8,9,10,13],invalid:[7,8,9],event:[4,7,8,13,12,9,14],field:[0,1,3,4,5,7,8,9,10,11,12,13,14],valid:[5,8,9,13],futur:1,num_skip:8,test:[5,6,7,13,9,14],ignor:8,you:[0,1,2,4,5,7,8,9,10,11,12,13],member_delet:[12,4],member_status_id:[7,5,8,9,13],public_api_kei:[1,6,3],stat:[5,9],claus:[0,7],event_nam:[12,4],e2ma:[1,2,6,3],error_messag:8,param:[9,4],app_messag:[1,3],ella:8,bulk:[1,8],receiv:[0,2,5,8,12,9],heads_up_email:9,longer:9,descript:[4,14],portion:0,opted_out:5,time:[1,2,8,13,5],reply_to:[9,14],resource_url:12,hello:[11,9,14]},objtypes:{"0":"http:get","1":"http:put","2":"http:post","3":"http:delete"},titles:["Search Syntax","Emma API","Pagination","PHP Signup Example","Webhooks","Response","PHP Get Member By Email Example","Searches","Members","Mailings","Fields","Placeholder Syntax","Webhook Usage","Groups","Triggers"],objnames:{"0":["http","get","HTTP get"],"1":["http","put","HTTP put"],"2":["http","post","HTTP post"],"3":["http","delete","HTTP delete"]},filenames:["member_search","index","pagination","php_signup_example","api/external/webhooks","api/external/response","php_get_member_example","api/external/searches","api/external/members","api/external/mailings","api/external/fields","placeholders","webhooks","api/external/groups","api/external/triggers"]}) \ No newline at end of file diff --git a/webhooks.html b/webhooks.html new file mode 100644 index 0000000..6e49164 --- /dev/null +++ b/webhooks.html @@ -0,0 +1,472 @@ + +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> + + +<html xmlns="http://www.w3.org/1999/xhtml"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> + + <title>Webhook Usage — audience 0.1 documentation</title> + + <link rel="stylesheet" href="_static/emma.css" type="text/css" /> + <link rel="stylesheet" href="_static/pygments.css" type="text/css" /> + + <script type="text/javascript"> + var DOCUMENTATION_OPTIONS = { + URL_ROOT: '', + VERSION: '0.1', + COLLAPSE_INDEX: false, + FILE_SUFFIX: '.html', + HAS_SOURCE: true + }; + </script> + <script type="text/javascript" src="_static/jquery.js"></script> + <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="PHP Signup Example" href="php_signup_example.html" /> + <link rel="prev" title="Search Syntax" href="member_search.html" /> + + + <style type="text/css"> + .resp-trigger, .resp-trigger:hover {font-size:10pt;text-decoration:none;} + div.sample-response.hide-response pre.response {display: none;} + div.sample-response .tshow, + div.sample-response.hide-response .thide {display: none;} + div.sample-response .thide, + div.sample-response.hide-response .tshow {display: inline;} + </style> + <script> + $().ready(function() { + $("a.resp-trigger").click(function(e) { + e.preventDefault(); + $(this).parents("div.sample-response").toggleClass("hide-response"); + }); + }); + </script> + + </head> + <body> +<header role="banner"> + <h1>Emma API Documentation</h1> +</header> + <div class="related"> + <h3>Navigation</h3> + <ul> + <li class="right" style="margin-right: 10px"> + <a href="genindex.html" title="General Index" + accesskey="I">index</a></li> + <li class="right" > + <a href="http-routingtable.html" title="HTTP Routing Table" + >routing table</a> |</li> + <li class="right" > + <a href="php_signup_example.html" title="PHP Signup Example" + accesskey="N">next</a> |</li> + <li class="right" > + <a href="member_search.html" title="Search Syntax" + accesskey="P">previous</a> |</li> + <li><a href="index.html">audience 0.1 documentation</a> »</li> + </ul> + </div> + + <div class="document"> + <div class="documentwrapper"> + <div class="bodywrapper"> + <div class="body"> + + <div class="section" id="webhook-usage"> +<span id="id1"></span><h1>Webhook Usage<a class="headerlink" href="#webhook-usage" title="Permalink to this headline">¶</a></h1> +<div class="section" id="webhook-overview"> +<h2>Webhook Overview<a class="headerlink" href="#webhook-overview" title="Permalink to this headline">¶</a></h2> +<p>Webhooks are an easy way to have Emma’s system notify you when certain events +occur. In general, you will use our API to tell us which events you want to +be notified about. When those events occur, we will make a POST to the URL +you have provided with a particular set of data.</p> +<p>We have a broad array of triggering events and an easy API interface +to create webhooks for each event. We do have <a class="reference internal" href="api/external/webhooks.html"><em>documentation of the webhook +API</em></a>.</p> +<p>Below is a list of each triggering event we currently support and the data +that will be sent when that event occurs.</p> +</div> +<div class="section" id="webhook-post-data"> +<h2>Webhook Post Data<a class="headerlink" href="#webhook-post-data" title="Permalink to this headline">¶</a></h2> +<div class="section" id="member-signup"> +<h3>Member Signup<a class="headerlink" href="#member-signup" title="Permalink to this headline">¶</a></h3> +<div class="highlight-python"><div class="highlight"><pre><span class="p">{</span> + <span class="s">"event_name"</span><span class="p">:</span> <span class="s">"member_signup"</span><span class="p">,</span> + <span class="s">"data"</span><span class="p">:</span> <span class="p">{</span> + <span class="s">"account_id"</span><span class="p">:</span> <span class="n">account_id</span><span class="p">,</span> + <span class="s">"member_id"</span><span class="p">:</span> <span class="n">member_id</span><span class="p">,</span> + <span class="s">"mailing_id"</span><span class="p">:</span> <span class="n">mailing_id</span> + <span class="p">}</span> +<span class="p">}</span> +</pre></div> +</div> +</div> +<div class="section" id="message-open"> +<h3>Message Open<a class="headerlink" href="#message-open" title="Permalink to this headline">¶</a></h3> +<div class="highlight-python"><div class="highlight"><pre><span class="p">{</span> + <span class="s">"event_name"</span><span class="p">:</span> <span class="s">"message_open"</span><span class="p">,</span> + <span class="s">"data"</span><span class="p">:</span> <span class="p">{</span> + <span class="s">"account_id"</span><span class="p">:</span> <span class="n">account_id</span><span class="p">,</span> + <span class="s">"member_id"</span><span class="p">:</span> <span class="n">member_id</span><span class="p">,</span> + <span class="s">"mailing_id"</span><span class="p">:</span> <span class="n">mailing_id</span><span class="p">,</span> + <span class="s">"subject"</span><span class="p">:</span> <span class="n">mailing_subject</span><span class="p">,</span> + <span class="s">"timestamp"</span><span class="p">:</span> <span class="n">timestamp</span> + <span class="p">}</span> +<span class="p">}</span> +</pre></div> +</div> +</div> +<div class="section" id="message-click"> +<h3>Message Click<a class="headerlink" href="#message-click" title="Permalink to this headline">¶</a></h3> +<div class="highlight-python"><div class="highlight"><pre><span class="p">{</span> + <span class="s">"event_name"</span><span class="p">:</span> <span class="s">"message_click"</span><span class="p">,</span> + <span class="s">"data"</span><span class="p">:</span> <span class="p">{</span> + <span class="s">"account_id"</span><span class="p">:</span> <span class="n">account_id</span><span class="p">,</span> + <span class="s">"member_id"</span><span class="p">:</span> <span class="n">member_id</span><span class="p">,</span> + <span class="s">"mailing_id"</span><span class="p">:</span> <span class="n">mailing_id</span><span class="p">,</span> + <span class="s">"subject"</span><span class="p">:</span> <span class="n">mailing_subject</span><span class="p">,</span> + <span class="s">"timestamp"</span><span class="p">:</span> <span class="n">timestamp</span><span class="p">,</span> + <span class="s">"link_id"</span><span class="p">:</span> <span class="n">link_id</span> + <span class="p">}</span> +<span class="p">}</span> +</pre></div> +</div> +</div> +<div class="section" id="member-optout"> +<h3>Member Optout<a class="headerlink" href="#member-optout" title="Permalink to this headline">¶</a></h3> +<div class="highlight-python"><div class="highlight"><pre><span class="p">{</span> + <span class="s">"event_name"</span><span class="p">:</span> <span class="s">"member_optout"</span><span class="p">,</span> + <span class="s">"data"</span><span class="p">:</span> <span class="p">{</span> + <span class="s">"account_id"</span><span class="p">:</span> <span class="n">account_id</span><span class="p">,</span> + <span class="s">"member_id"</span><span class="p">:</span> <span class="n">member_id</span><span class="p">,</span> + <span class="s">"mailing_id"</span><span class="p">:</span> <span class="n">mailing_id</span><span class="p">,</span> + <span class="s">"subject"</span><span class="p">:</span> <span class="n">mailing_subject</span><span class="p">,</span> + <span class="s">"timestamp"</span><span class="p">:</span> <span class="n">timestamp</span> + <span class="p">}</span> +<span class="p">}</span> +</pre></div> +</div> +</div> +<div class="section" id="message-share"> +<h3>Message Share<a class="headerlink" href="#message-share" title="Permalink to this headline">¶</a></h3> +<div class="highlight-python"><div class="highlight"><pre><span class="p">{</span> + <span class="s">"event_name"</span><span class="p">:</span> <span class="s">"message_share"</span><span class="p">,</span> + <span class="s">"data"</span><span class="p">:</span> <span class="p">{</span> + <span class="s">"account_id"</span><span class="p">:</span> <span class="n">account_id</span><span class="p">,</span> + <span class="s">"member_id"</span><span class="p">:</span> <span class="n">member_id</span><span class="p">,</span> + <span class="s">"mailing_id"</span><span class="p">:</span> <span class="n">mailing_id</span><span class="p">,</span> + <span class="s">"subject"</span><span class="p">:</span> <span class="n">mailing_subject</span><span class="p">,</span> + <span class="s">"timestamp"</span><span class="p">:</span> <span class="n">timestamp</span><span class="p">,</span> + <span class="s">"network"</span><span class="p">:</span> <span class="n">network_code</span> + <span class="p">}</span> +<span class="p">}</span> +</pre></div> +</div> +</div> +<div class="section" id="message-share-click"> +<h3>Message Share Click<a class="headerlink" href="#message-share-click" title="Permalink to this headline">¶</a></h3> +<div class="highlight-python"><div class="highlight"><pre><span class="p">{</span> + <span class="s">"event_name"</span><span class="p">:</span> <span class="s">"message_share_click"</span><span class="p">,</span> + <span class="s">"data"</span><span class="p">:</span> <span class="p">{</span> + <span class="s">"account_id"</span><span class="p">:</span> <span class="n">account_id</span><span class="p">,</span> + <span class="s">"member_id"</span><span class="p">:</span> <span class="n">member_id</span><span class="p">,</span> + <span class="s">"mailing_id"</span><span class="p">:</span> <span class="n">mailing_id</span><span class="p">,</span> + <span class="s">"subject"</span><span class="p">:</span> <span class="n">mailing_subject</span><span class="p">,</span> + <span class="s">"timestamp"</span><span class="p">:</span> <span class="n">timestamp</span><span class="p">,</span> + <span class="s">"network"</span><span class="p">:</span> <span class="n">network_code</span> + <span class="p">}</span> +<span class="p">}</span> +</pre></div> +</div> +</div> +<div class="section" id="message-forward"> +<h3>Message Forward<a class="headerlink" href="#message-forward" title="Permalink to this headline">¶</a></h3> +<div class="highlight-python"><div class="highlight"><pre><span class="p">{</span> + <span class="s">"event_name"</span><span class="p">:</span> <span class="s">"message_forward"</span><span class="p">,</span> + <span class="s">"data"</span><span class="p">:</span> <span class="p">{</span> + <span class="s">"account_id"</span><span class="p">:</span> <span class="n">account_id</span><span class="p">,</span> + <span class="s">"member_id"</span><span class="p">:</span> <span class="n">member_id</span><span class="p">,</span> + <span class="s">"mailing_id"</span><span class="p">:</span> <span class="n">mailing_id</span><span class="p">,</span> + <span class="s">"subject"</span><span class="p">:</span> <span class="n">mailing_subject</span><span class="p">,</span> + <span class="s">"timestamp"</span><span class="p">:</span> <span class="n">timestamp</span> + <span class="p">}</span> +<span class="p">}</span> +</pre></div> +</div> +</div> +<div class="section" id="mailing-finish"> +<h3>Mailing Finish<a class="headerlink" href="#mailing-finish" title="Permalink to this headline">¶</a></h3> +<div class="highlight-python"><div class="highlight"><pre><span class="p">{</span> + <span class="s">"event_name"</span><span class="p">:</span> <span class="s">"mailing_finish"</span><span class="p">,</span> + <span class="s">"data"</span><span class="p">:</span> <span class="p">{</span> + <span class="s">"mailing_id"</span><span class="p">:</span> <span class="n">mailing_id</span><span class="p">,</span> + <span class="s">"account_id"</span><span class="p">:</span> <span class="n">account_id</span><span class="p">,</span> + <span class="s">"subject"</span><span class="p">:</span> <span class="n">mailing_subject</span><span class="p">,</span> + <span class="s">"timestamp"</span><span class="p">:</span> <span class="n">timestamp</span> + <span class="p">}</span> +<span class="p">}</span> +</pre></div> +</div> +</div> +<div class="section" id="import-finish"> +<h3>Import Finish<a class="headerlink" href="#import-finish" title="Permalink to this headline">¶</a></h3> +<div class="highlight-python"><div class="highlight"><pre><span class="p">{</span> + <span class="s">"event_name"</span><span class="p">:</span> <span class="s">"import_finish"</span><span class="p">,</span> + <span class="s">"data"</span><span class="p">:</span> <span class="p">{</span> + <span class="s">"import_id"</span><span class="p">:</span> <span class="n">import_id</span><span class="p">,</span> + <span class="s">"account_id"</span><span class="p">:</span> <span class="n">account_id</span><span class="p">,</span> + <span class="s">"timestamp"</span><span class="p">:</span> <span class="n">timestamp</span><span class="p">,</span> + <span class="s">"resource_url"</span><span class="p">:</span> <span class="n">resource_url</span> + <span class="p">}</span> +<span class="p">}</span> +</pre></div> +</div> +</div> +<div class="section" id="member-add"> +<h3>Member Add<a class="headerlink" href="#member-add" title="Permalink to this headline">¶</a></h3> +<div class="highlight-python"><div class="highlight"><pre><span class="p">{</span> + <span class="s">"event_name"</span><span class="p">:</span> <span class="s">"member_add"</span><span class="p">,</span> + <span class="s">"data"</span><span class="p">:</span> <span class="p">{</span> + <span class="s">"member_id"</span><span class="p">:</span> <span class="n">member_id</span><span class="p">,</span> + <span class="s">"account_id"</span><span class="p">:</span> <span class="n">account_id</span><span class="p">,</span> + <span class="s">"timestamp"</span><span class="p">:</span> <span class="n">timestamp</span><span class="p">,</span> + <span class="s">"signup_form_id"</span><span class="p">:</span> <span class="n">signup_form_id</span><span class="p">,</span> + <span class="s">"resource_url"</span><span class="p">:</span> <span class="n">resource_url</span> + <span class="p">}</span> +<span class="p">}</span> +</pre></div> +</div> +</div> +<div class="section" id="member-update"> +<h3>Member Update<a class="headerlink" href="#member-update" title="Permalink to this headline">¶</a></h3> +<div class="highlight-python"><div class="highlight"><pre><span class="p">{</span> + <span class="s">"event_name"</span><span class="p">:</span> <span class="s">"member_update"</span><span class="p">,</span> + <span class="s">"data"</span><span class="p">:</span> <span class="p">{</span> + <span class="s">"member_id"</span><span class="p">:</span> <span class="n">member_id</span><span class="p">,</span> + <span class="s">"account_id"</span><span class="p">:</span> <span class="n">account_id</span><span class="p">,</span> + <span class="s">"timestamp"</span><span class="p">:</span> <span class="n">timestamp</span> + <span class="p">}</span> +<span class="p">}</span> +</pre></div> +</div> +</div> +<div class="section" id="member-delete"> +<h3>Member Delete<a class="headerlink" href="#member-delete" title="Permalink to this headline">¶</a></h3> +<div class="highlight-python"><div class="highlight"><pre><span class="p">{</span> + <span class="s">"event_name"</span><span class="p">:</span> <span class="s">"member_delete"</span><span class="p">,</span> + <span class="s">"data"</span><span class="p">:</span> <span class="p">{</span> + <span class="s">"member_id"</span><span class="p">:</span> <span class="n">member_id</span><span class="p">,</span> + <span class="s">"account_id"</span><span class="p">:</span> <span class="n">account_id</span><span class="p">,</span> + <span class="s">"timestamp"</span><span class="p">:</span> <span class="n">timestamp</span> + <span class="p">}</span> +<span class="p">}</span> +</pre></div> +</div> +</div> +<div class="section" id="member-add-to-group"> +<h3>Member Add To Group<a class="headerlink" href="#member-add-to-group" title="Permalink to this headline">¶</a></h3> +<p>It’s possible that instead of an array for <cite>member_ids</cite> or <cite>group_ids</cite> you +may receive a string with the text <cite>all</cite>. Because of calls that can add a +member to all groups or add all members to a single group, this is easier +than returning a giant list of IDs.</p> +<div class="highlight-python"><pre>{ + "event_name": "member_add_to_group", + "data": { + "member_ids": {member_ids}, + "account_id": account_id, + "timestamp": timestamp. + "group_ids": {group_ids} + } +}</pre> +</div> +</div> +<div class="section" id="member-remove-from-group"> +<h3>Member Remove From Group<a class="headerlink" href="#member-remove-from-group" title="Permalink to this headline">¶</a></h3> +<p>It’s possible that instead of an array for <cite>member_ids</cite> or <cite>group_ids</cite> you +may receive a string with the text <cite>all</cite>. Because of calls that can remove a +member from all groups or remove all members from a single group, this is +easier than returning a giant list of IDs.</p> +<div class="highlight-python"><pre>{ + "event_name": "member_remove_from_group", + "data": { + "member_ids": {member_ids}, + "account_id": account_id, + "timestamp": timestamp. + "group_ids": {group_ids} + } +}</pre> +</div> +</div> +<div class="section" id="group-create"> +<h3>Group Create<a class="headerlink" href="#group-create" title="Permalink to this headline">¶</a></h3> +<div class="highlight-python"><div class="highlight"><pre><span class="p">{</span> + <span class="s">"event_name"</span><span class="p">:</span> <span class="s">"group_create"</span><span class="p">,</span> + <span class="s">"data"</span><span class="p">:</span> <span class="p">{</span> + <span class="s">"group_id"</span><span class="p">:</span> <span class="n">group_id</span><span class="p">,</span> + <span class="s">"group_name"</span><span class="p">:</span> <span class="n">group_name</span><span class="p">,</span> + <span class="s">"account_id"</span><span class="p">:</span> <span class="n">account_id</span><span class="p">,</span> + <span class="s">"timestamp"</span><span class="p">:</span> <span class="n">timestamp</span><span class="p">,</span> + <span class="s">"resource_url"</span><span class="p">:</span> <span class="n">resource_url</span> + <span class="p">}</span> +<span class="p">}</span> +</pre></div> +</div> +</div> +<div class="section" id="group-delete"> +<h3>Group Delete<a class="headerlink" href="#group-delete" title="Permalink to this headline">¶</a></h3> +<div class="highlight-python"><div class="highlight"><pre><span class="p">{</span> + <span class="s">"event_name"</span><span class="p">:</span> <span class="s">"group_delete"</span><span class="p">,</span> + <span class="s">"data"</span><span class="p">:</span> <span class="p">{</span> + <span class="s">"group_id"</span><span class="p">:</span> <span class="n">group_id</span><span class="p">,</span> + <span class="s">"account_id"</span><span class="p">:</span> <span class="n">account_id</span><span class="p">,</span> + <span class="s">"timestamp"</span><span class="p">:</span> <span class="n">timestamp</span><span class="p">,</span> + <span class="s">"resource_url"</span><span class="p">:</span> <span class="n">resource_url</span> + <span class="p">}</span> +<span class="p">}</span> +</pre></div> +</div> +</div> +<div class="section" id="group-update"> +<h3>Group Update<a class="headerlink" href="#group-update" title="Permalink to this headline">¶</a></h3> +<div class="highlight-python"><div class="highlight"><pre><span class="p">{</span> + <span class="s">"event_name"</span><span class="p">:</span> <span class="s">"group_update"</span><span class="p">,</span> + <span class="s">"data"</span><span class="p">:</span> <span class="p">{</span> + <span class="s">"group_id"</span><span class="p">:</span> <span class="n">group_id</span><span class="p">,</span> + <span class="s">"group_name"</span><span class="p">:</span> <span class="n">group_name</span><span class="p">,</span> + <span class="s">"account_id"</span><span class="p">:</span> <span class="n">account_id</span><span class="p">,</span> + <span class="s">"timestamp"</span><span class="p">:</span> <span class="n">timestamp</span><span class="p">,</span> + <span class="s">"resource_url"</span><span class="p">:</span> <span class="n">resource_url</span> + <span class="p">}</span> +<span class="p">}</span> +</pre></div> +</div> +</div> +<div class="section" id="field-create"> +<h3>Field Create<a class="headerlink" href="#field-create" title="Permalink to this headline">¶</a></h3> +<div class="highlight-python"><div class="highlight"><pre><span class="p">{</span> + <span class="s">"event_name"</span><span class="p">:</span> <span class="s">"field_create"</span><span class="p">,</span> + <span class="s">"data"</span><span class="p">:</span> <span class="p">{</span> + <span class="s">"field_id"</span><span class="p">:</span> <span class="n">field_id</span><span class="p">,</span> + <span class="s">"account_id"</span><span class="p">:</span> <span class="n">account_id</span><span class="p">,</span> + <span class="s">"timestamp"</span><span class="p">:</span> <span class="n">timestamp</span><span class="p">,</span> + <span class="s">"resource_url"</span><span class="p">:</span> <span class="n">resource_url</span> + <span class="p">}</span> +<span class="p">}</span> +</pre></div> +</div> +</div> +<div class="section" id="field-delete"> +<h3>Field Delete<a class="headerlink" href="#field-delete" title="Permalink to this headline">¶</a></h3> +<div class="highlight-python"><div class="highlight"><pre><span class="p">{</span> + <span class="s">"event_name"</span><span class="p">:</span> <span class="s">"field_delete"</span><span class="p">,</span> + <span class="s">"data"</span><span class="p">:</span> <span class="p">{</span> + <span class="s">"field_id"</span><span class="p">:</span> <span class="n">field_id</span><span class="p">,</span> + <span class="s">"account_id"</span><span class="p">:</span> <span class="n">account_id</span><span class="p">,</span> + <span class="s">"timestamp"</span><span class="p">:</span> <span class="n">timestamp</span><span class="p">,</span> + <span class="s">"resource_url"</span><span class="p">:</span> <span class="n">resource_url</span> + <span class="p">}</span> +<span class="p">}</span> +</pre></div> +</div> +</div> +<div class="section" id="field-update"> +<h3>Field Update<a class="headerlink" href="#field-update" title="Permalink to this headline">¶</a></h3> +<div class="highlight-python"><div class="highlight"><pre><span class="p">{</span> + <span class="s">"event_name"</span><span class="p">:</span> <span class="s">"field_update"</span><span class="p">,</span> + <span class="s">"data"</span><span class="p">:</span> <span class="p">{</span> + <span class="s">"field_id"</span><span class="p">:</span> <span class="n">field_id</span><span class="p">,</span> + <span class="s">"account_id"</span><span class="p">:</span> <span class="n">account_id</span><span class="p">,</span> + <span class="s">"timestamp"</span><span class="p">:</span> <span class="n">timestamp</span><span class="p">,</span> + <span class="s">"resource_url"</span><span class="p">:</span> <span class="n">resource_url</span> + <span class="p">}</span> +<span class="p">}</span> +</pre></div> +</div> +</div> +<div class="section" id="member-status-update"> +<h3>Member Status Update<a class="headerlink" href="#member-status-update" title="Permalink to this headline">¶</a></h3> +<div class="highlight-python"><div class="highlight"><pre><span class="p">{</span> + <span class="s">"event_name"</span><span class="p">:</span> <span class="s">"member_status_update"</span><span class="p">,</span> + <span class="s">"data"</span><span class="p">:</span> <span class="p">{</span> + <span class="s">"member_ids"</span><span class="p">:</span> <span class="p">{</span><span class="n">member_ids</span><span class="p">},</span> + <span class="s">"account_id"</span><span class="p">:</span> <span class="n">account_id</span><span class="p">,</span> + <span class="s">"new_status"</span><span class="p">:</span> <span class="n">new_status</span><span class="p">,</span> + <span class="s">"timestamp"</span><span class="p">:</span> <span class="n">timestamp</span> + <span class="p">}</span> +<span class="p">}</span> +</pre></div> +</div> +</div> +</div> +</div> + + + </div> + </div> + </div> + <div class="sphinxsidebar"> + <div class="sphinxsidebarwrapper"> + <h3><a href="index.html">Table Of Contents</a></h3> + <ul> +<li><a class="reference internal" href="#">Webhook Usage</a><ul> +<li><a class="reference internal" href="#webhook-overview">Webhook Overview</a></li> +<li><a class="reference internal" href="#webhook-post-data">Webhook Post Data</a><ul> +<li><a class="reference internal" href="#member-signup">Member Signup</a></li> +<li><a class="reference internal" href="#message-open">Message Open</a></li> +<li><a class="reference internal" href="#message-click">Message Click</a></li> +<li><a class="reference internal" href="#member-optout">Member Optout</a></li> +<li><a class="reference internal" href="#message-share">Message Share</a></li> +<li><a class="reference internal" href="#message-share-click">Message Share Click</a></li> +<li><a class="reference internal" href="#message-forward">Message Forward</a></li> +<li><a class="reference internal" href="#mailing-finish">Mailing Finish</a></li> +<li><a class="reference internal" href="#import-finish">Import Finish</a></li> +<li><a class="reference internal" href="#member-add">Member Add</a></li> +<li><a class="reference internal" href="#member-update">Member Update</a></li> +<li><a class="reference internal" href="#member-delete">Member Delete</a></li> +<li><a class="reference internal" href="#member-add-to-group">Member Add To Group</a></li> +<li><a class="reference internal" href="#member-remove-from-group">Member Remove From Group</a></li> +<li><a class="reference internal" href="#group-create">Group Create</a></li> +<li><a class="reference internal" href="#group-delete">Group Delete</a></li> +<li><a class="reference internal" href="#group-update">Group Update</a></li> +<li><a class="reference internal" href="#field-create">Field Create</a></li> +<li><a class="reference internal" href="#field-delete">Field Delete</a></li> +<li><a class="reference internal" href="#field-update">Field Update</a></li> +<li><a class="reference internal" href="#member-status-update">Member Status Update</a></li> +</ul> +</li> +</ul> +</li> +</ul> +<h3>Related Topics</h3> +<ul> + <li><a href="index.html">Documentation overview</a><ul> + <li>Previous: <a href="member_search.html" title="previous chapter">Search Syntax</a></li> + <li>Next: <a href="php_signup_example.html" title="next chapter">PHP Signup Example</a></li> + </ul></li> +</ul> +<div id="searchbox" style="display: none"> + <h3>Quick search</h3> + <form class="search" action="search.html" method="get"> + <input type="text" name="q" /> + <input type="submit" value="Go" /> + <input type="hidden" name="check_keywords" value="yes" /> + <input type="hidden" name="area" value="default" /> + </form> + <p class="searchtip" style="font-size: 90%"> + Enter search terms or a module, class or function name. + </p> +</div> +<script type="text/javascript">$('#searchbox').show(0);</script> + </div> + </div> + <div class="clearer"></div> + </div> + <div class="footer"> + © Copyright 2012, Emma. + Last updated on Dec 17, 2012 at 10:51. + </div> + </body> +</html> \ No newline at end of file From 77d3363c5a6d8788074bfc4aa0fee6dce3164bf9 Mon Sep 17 00:00:00 2001 From: Lance Roggendorff <lance.roggendorff@myemma.com> Date: Mon, 17 Dec 2012 16:11:02 -0600 Subject: [PATCH 002/219] Adding .buildinfo to .gitignore. --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index e43b0f9..e4ff47f 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ .DS_Store +.buildinfo \ No newline at end of file From 59a1980751e93dbe4689b5938eb624d2013af369 Mon Sep 17 00:00:00 2001 From: Lance Roggendorff <lance.roggendorff@myemma.com> Date: Mon, 17 Dec 2012 16:29:15 -0600 Subject: [PATCH 003/219] Update audience documentation. --- api/external/fields.html | 2 +- api/external/groups.html | 2 +- api/external/mailings.html | 2 +- api/external/members.html | 2 +- api/external/response.html | 2 +- api/external/searches.html | 4 ++-- api/external/triggers.html | 8 ++++---- api/external/webhooks.html | 2 +- genindex.html | 2 +- http-routingtable.html | 2 +- index.html | 2 +- member_search.html | 2 +- pagination.html | 2 +- php_get_member_example.html | 2 +- php_signup_example.html | 2 +- placeholders.html | 2 +- search.html | 2 +- searchindex.js | 2 +- webhooks.html | 2 +- 19 files changed, 23 insertions(+), 23 deletions(-) diff --git a/api/external/fields.html b/api/external/fields.html index 3b7f8fc..6a50305 100644 --- a/api/external/fields.html +++ b/api/external/fields.html @@ -374,7 +374,7 @@ <h3>Quick search</h3> </div> <div class="footer"> © Copyright 2012, Emma. - Last updated on Dec 17, 2012 at 10:51. + Last updated on Dec 17, 2012 at 16:29. </div> </body> </html> \ No newline at end of file diff --git a/api/external/groups.html b/api/external/groups.html index 953acfe..243f271 100644 --- a/api/external/groups.html +++ b/api/external/groups.html @@ -661,7 +661,7 @@ <h3>Quick search</h3> </div> <div class="footer"> © Copyright 2012, Emma. - Last updated on Dec 17, 2012 at 10:51. + Last updated on Dec 17, 2012 at 16:29. </div> </body> </html> \ No newline at end of file diff --git a/api/external/mailings.html b/api/external/mailings.html index 6dc9df6..1d29f2b 100644 --- a/api/external/mailings.html +++ b/api/external/mailings.html @@ -768,7 +768,7 @@ <h3>Quick search</h3> </div> <div class="footer"> © Copyright 2012, Emma. - Last updated on Dec 17, 2012 at 10:51. + Last updated on Dec 17, 2012 at 16:29. </div> </body> </html> \ No newline at end of file diff --git a/api/external/members.html b/api/external/members.html index bd2ded4..2d17726 100644 --- a/api/external/members.html +++ b/api/external/members.html @@ -1143,7 +1143,7 @@ <h3>Quick search</h3> </div> <div class="footer"> © Copyright 2012, Emma. - Last updated on Dec 17, 2012 at 10:51. + Last updated on Dec 17, 2012 at 16:29. </div> </body> </html> \ No newline at end of file diff --git a/api/external/response.html b/api/external/response.html index 75dff9c..077e3d7 100644 --- a/api/external/response.html +++ b/api/external/response.html @@ -978,7 +978,7 @@ <h3>Quick search</h3> </div> <div class="footer"> © Copyright 2012, Emma. - Last updated on Dec 17, 2012 at 10:51. + Last updated on Dec 17, 2012 at 16:29. </div> </body> </html> \ No newline at end of file diff --git a/api/external/searches.html b/api/external/searches.html index 0158ff1..f377960 100644 --- a/api/external/searches.html +++ b/api/external/searches.html @@ -172,7 +172,7 @@ <h1>Searches<a class="headerlink" href="#searches" title="Permalink to this head "name": "Test Search", "criteria": "[\"or\", [\"group\", \"eq\", \"Monthly Newsletter\"],[\"group\", \"eq\", \"Widget Buyers\"]]", "deleted_at": null, - "last_run_at": "@D:2012-12-17T10:51:53", + "last_run_at": "@D:2012-12-17T16:29:10", "active_count": 2, "account_id": 100 } @@ -470,7 +470,7 @@ <h3>Quick search</h3> </div> <div class="footer"> © Copyright 2012, Emma. - Last updated on Dec 17, 2012 at 10:51. + Last updated on Dec 17, 2012 at 16:29. </div> </body> </html> \ No newline at end of file diff --git a/api/external/triggers.html b/api/external/triggers.html index 0801b19..6d43505 100644 --- a/api/external/triggers.html +++ b/api/external/triggers.html @@ -121,7 +121,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": 203, "push_offset_units": "0:-14:0:0", - "start_ts": "@D:2012-12-17T10:51:51", + "start_ts": "@D:2012-12-17T16:29:08", "trigger_id": 100, "signups": null, "push_offset": "@I:-1209600.0", @@ -162,7 +162,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": null, "push_offset_units": "0:3:0:0", - "start_ts": "@D:2012-12-17T10:51:51", + "start_ts": "@D:2012-12-17T16:29:08", "trigger_id": 101, "signups": [ 1, @@ -299,7 +299,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": 203, "push_offset_units": "0:-14:0:0", - "start_ts": "@D:2012-12-17T10:51:51", + "start_ts": "@D:2012-12-17T16:29:08", "trigger_id": 100, "signups": null, "push_offset": "@I:-1209600.0", @@ -458,7 +458,7 @@ <h3>Quick search</h3> </div> <div class="footer"> © Copyright 2012, Emma. - Last updated on Dec 17, 2012 at 10:51. + Last updated on Dec 17, 2012 at 16:29. </div> </body> </html> \ No newline at end of file diff --git a/api/external/webhooks.html b/api/external/webhooks.html index 0b822c4..bad3110 100644 --- a/api/external/webhooks.html +++ b/api/external/webhooks.html @@ -446,7 +446,7 @@ <h3>Quick search</h3> </div> <div class="footer"> © Copyright 2012, Emma. - Last updated on Dec 17, 2012 at 10:51. + Last updated on Dec 17, 2012 at 16:29. </div> </body> </html> \ No newline at end of file diff --git a/genindex.html b/genindex.html index d729d1d..f1c4d4e 100644 --- a/genindex.html +++ b/genindex.html @@ -108,7 +108,7 @@ <h3>Quick search</h3> </div> <div class="footer"> © Copyright 2012, Emma. - Last updated on Dec 17, 2012 at 10:51. + Last updated on Dec 17, 2012 at 16:29. </div> </body> </html> \ No newline at end of file diff --git a/http-routingtable.html b/http-routingtable.html index 809e80e..d429a26 100644 --- a/http-routingtable.html +++ b/http-routingtable.html @@ -561,7 +561,7 @@ <h3>Quick search</h3> </div> <div class="footer"> © Copyright 2012, Emma. - Last updated on Dec 17, 2012 at 10:51. + Last updated on Dec 17, 2012 at 16:29. </div> </body> </html> \ No newline at end of file diff --git a/index.html b/index.html index f3b045b..47cfeae 100644 --- a/index.html +++ b/index.html @@ -284,7 +284,7 @@ <h3>Quick search</h3> </div> <div class="footer"> © Copyright 2012, Emma. - Last updated on Dec 17, 2012 at 10:51. + Last updated on Dec 17, 2012 at 16:29. </div> </body> </html> \ No newline at end of file diff --git a/member_search.html b/member_search.html index f8c1e05..f0a66fc 100644 --- a/member_search.html +++ b/member_search.html @@ -215,7 +215,7 @@ <h3>Quick search</h3> </div> <div class="footer"> © Copyright 2012, Emma. - Last updated on Dec 17, 2012 at 10:51. + Last updated on Dec 17, 2012 at 16:29. </div> </body> </html> \ No newline at end of file diff --git a/pagination.html b/pagination.html index 95b0e6f..9cfa2c2 100644 --- a/pagination.html +++ b/pagination.html @@ -127,7 +127,7 @@ <h3>Quick search</h3> </div> <div class="footer"> © Copyright 2012, Emma. - Last updated on Dec 17, 2012 at 10:51. + Last updated on Dec 17, 2012 at 16:29. </div> </body> </html> \ No newline at end of file diff --git a/php_get_member_example.html b/php_get_member_example.html index 72dffcb..40c6d44 100644 --- a/php_get_member_example.html +++ b/php_get_member_example.html @@ -142,7 +142,7 @@ <h3>Quick search</h3> </div> <div class="footer"> © Copyright 2012, Emma. - Last updated on Dec 17, 2012 at 10:51. + Last updated on Dec 17, 2012 at 16:29. </div> </body> </html> \ No newline at end of file diff --git a/php_signup_example.html b/php_signup_example.html index 5c583b7..81f05b6 100644 --- a/php_signup_example.html +++ b/php_signup_example.html @@ -164,7 +164,7 @@ <h3>Quick search</h3> </div> <div class="footer"> © Copyright 2012, Emma. - Last updated on Dec 17, 2012 at 10:51. + Last updated on Dec 17, 2012 at 16:29. </div> </body> </html> \ No newline at end of file diff --git a/placeholders.html b/placeholders.html index 983b2c5..12268a8 100644 --- a/placeholders.html +++ b/placeholders.html @@ -142,7 +142,7 @@ <h3>Quick search</h3> </div> <div class="footer"> © Copyright 2012, Emma. - Last updated on Dec 17, 2012 at 10:51. + Last updated on Dec 17, 2012 at 16:29. </div> </body> </html> \ No newline at end of file diff --git a/search.html b/search.html index 54f27c1..62e5bd3 100644 --- a/search.html +++ b/search.html @@ -112,7 +112,7 @@ <h1 id="search-documentation">Search</h1> </div> <div class="footer"> © Copyright 2012, Emma. - Last updated on Dec 17, 2012 at 10:51. + Last updated on Dec 17, 2012 at 16:29. </div> </body> </html> \ No newline at end of file diff --git a/searchindex.js b/searchindex.js index 1dd0faf..fd97bbe 100644 --- a/searchindex.js +++ b/searchindex.js @@ -1 +1 @@ -Search.setIndex({objects:{"":{"/#account_id/members/#member_id/groups/remove":[8,1,1,"put--#account_id-members-#member_id-groups-remove"],"/#account_id/mailings/#mailing_id/winner/#winner_id":[9,2,1,"post--#account_id-mailings-#mailing_id-winner-#winner_id"],"/#account_id/response/#mailing_id/in_progress":[5,0,1,"get--#account_id-response-#mailing_id-in_progress"],"/#account_id/members/groups/remove":[8,1,1,"put--#account_id-members-groups-remove"],"/#account_id/mailings/#mailing_id/searches":[9,0,1,"get--#account_id-mailings-#mailing_id-searches"],"/#account_id/fields":[10,2,1,"post--#account_id-fields"],"/#account_id/members/#group_id/copy":[8,1,1,"put--#account_id-members-#group_id-copy"],"/#account_id/members/status":[8,1,1,"put--#account_id-members-status"],"/#account_id/response/#mailing_id/shares/overview":[5,0,1,"get--#account_id-response-#mailing_id-shares-overview"],"/#account_id/webhooks/events":[4,0,1,"get--#account_id-webhooks-events"],"/#account_id/members/#member_id/optout":[8,0,1,"get--#account_id-members-#member_id-optout"],"/#account_id/webhooks":[4,3,1,"delete--#account_id-webhooks"],"/#account_id/fields/#field_id":[10,3,1,"delete--#account_id-fields-#field_id"],"/#account_id/response/#mailing_id":[5,0,1,"get--#account_id-response-#mailing_id"],"/#account_id/groups/#member_group_id/members/remove":[13,3,1,"delete--#account_id-groups-#member_group_id-members-remove"],"/#account_id/searches":[7,2,1,"post--#account_id-searches"],"/#account_id/members/imports":[8,0,1,"get--#account_id-members-imports"],"/#account_id/forwards/#mailing_id/#member_id":[9,2,1,"post--#account_id-forwards-#mailing_id-#member_id"],"/#account_id/response/#mailing_id/customer_share_clicks":[5,0,1,"get--#account_id-response-#mailing_id-customer_share_clicks"],"/#account_id/mailings/#mailing_id/messages/#member_id":[9,0,1,"get--#account_id-mailings-#mailing_id-messages-#member_id"],"/#account_id/members/#member_id/mailings":[8,0,1,"get--#account_id-members-#member_id-mailings"],"/#account_id/groups/#from_group_id/#to_group_id/members/copy":[13,1,1,"put--#account_id-groups-#from_group_id-#to_group_id-members-copy"],"/#account_id/triggers":[14,2,1,"post--#account_id-triggers"],"/#account_id/triggers/#trigger_id":[14,3,1,"delete--#account_id-triggers-#trigger_id"],"/#account_id/members/delete":[8,1,1,"put--#account_id-members-delete"],"/#account_id/mailings/#mailing_id/groups":[9,0,1,"get--#account_id-mailings-#mailing_id-groups"],"/#account_id/response/#mailing_id/forwards":[5,0,1,"get--#account_id-response-#mailing_id-forwards"],"/#account_id/members/#member_id":[8,3,1,"delete--#account_id-members-#member_id"],"/#account_id/triggers/#trigger_id/mailings":[14,0,1,"get--#account_id-triggers-#trigger_id-mailings"],"/#account_id/searches/#search_id/members":[7,0,1,"get--#account_id-searches-#search_id-members"],"/#account_id/members/status/:status_from/to/:status_to":[8,1,1,"put--#account_id-members-status--status_from-to--status_to"],"/#account_id/response/#mailing_id/sends":[5,0,1,"get--#account_id-response-#mailing_id-sends"],"/#account_id/members":[8,3,1,"delete--#account_id-members"],"/#account_id/members/email/:email":[8,0,1,"get--#account_id-members-email--email"],"/#account_id/response/#mailing_id/links":[5,0,1,"get--#account_id-response-#mailing_id-links"],"/#account_id/searches/#search_id":[7,3,1,"delete--#account_id-searches-#search_id"],"/#account_id/members/imports/#import_id/members":[8,0,1,"get--#account_id-members-imports-#import_id-members"],"/#account_id/fields/#field_id/clear":[10,2,1,"post--#account_id-fields-#field_id-clear"],"/#account_id/groups/#member_group_id/members":[13,3,1,"delete--#account_id-groups-#member_group_id-members"],"/#account_id/members/imports/#import_id":[8,0,1,"get--#account_id-members-imports-#import_id"],"/#account_id/response":[5,0,1,"get--#account_id-response"],"/#account_id/response/#mailing_id/opens":[5,0,1,"get--#account_id-response-#mailing_id-opens"],"/#account_id/members/imports/delete":[8,3,1,"delete--#account_id-members-imports-delete"],"/#account_id/mailings":[9,0,1,"get--#account_id-mailings"],"/#account_id/mailings/cancel/#mailing_id":[9,3,1,"delete--#account_id-mailings-cancel-#mailing_id"],"/#account_id/mailings/validate":[9,2,1,"post--#account_id-mailings-validate"],"/#account_id/response/#mailing_id/deliveries":[5,0,1,"get--#account_id-response-#mailing_id-deliveries"],"/#account_id/mailings/#mailing_id/members":[9,0,1,"get--#account_id-mailings-#mailing_id-members"],"/#account_id/response/#share_id/customer_share":[5,0,1,"get--#account_id-response-#share_id-customer_share"],"/#account_id/webhooks/#webhook_id":[4,3,1,"delete--#account_id-webhooks-#webhook_id"],"/#account_id/members/add":[8,2,1,"post--#account_id-members-add"],"/#account_id/response/#mailing_id/optouts":[5,0,1,"get--#account_id-response-#mailing_id-optouts"],"/#account_id/response/#mailing_id/shares":[5,0,1,"get--#account_id-response-#mailing_id-shares"],"/#account_id/groups/#member_group_id":[13,3,1,"delete--#account_id-groups-#member_group_id"],"/#account_id/mailings/#mailing_id":[9,3,1,"delete--#account_id-mailings-#mailing_id"],"/#account_id/members/#member_id/groups":[8,3,1,"delete--#account_id-members-#member_id-groups"],"/#account_id/groups":[13,2,1,"post--#account_id-groups"],"/#account_id/response/#mailing_id/clicks":[5,0,1,"get--#account_id-response-#mailing_id-clicks"],"/#account_id/mailings/#mailing_id/headsup":[9,0,1,"get--#account_id-mailings-#mailing_id-headsup"],"/#account_id/response/#mailing_id/signups":[5,0,1,"get--#account_id-response-#mailing_id-signups"],"/#account_id/response/#mailing_id/customer_shares":[5,0,1,"get--#account_id-response-#mailing_id-customer_shares"]}},terms:{all:[0,1,4,5,8,9,10,11,12,13,14],code:[0,1,6,3],change_typ:8,queri:[0,2,4],month:[0,5,9,14],four:[0,5],mile:0,least:0,field_creat:[12,4],link_target:[5,9],content:[1,11,6,9,3],privat:1,specif:[8,9,4],friendli:5,send:[1,9,4,3,5],customer_share_click:5,those:[5,12],group_upd:[12,4],sent:[5,8,12,9,14],curl_clos:[1,6,3],brown:[7,8],digit:5,everi:0,string:[0,4,5,7,8,9,10,12,13,14],fals:[1,3,4,5,6,7,8,9,10,13,14],webhook:[1,12,4],mailing_status:9,trigger_id:14,webview_share_click:5,affect:[7,8],member_add:[12,4],create_mail:9,new_boolean:10,foo:0,level:1,group_delet:[12,4],list:[0,1,2,4,5,7,8,9,10,11,12,13,14],upload:8,iter:2,"try":8,item:2,plaintext_onli:[9,14],div:[4,5,7,8,9,10,13,14],survey_id:14,pleas:[1,8,11,9],prevent:2,work:[1,4],ten:0,sync:10,sign:[0,5,4],past:1,second:[0,7,14],follow:[0,1,4,5,7,9,11,13],further:1,durat:9,click:[0,4,5,7,8,12,14],append:2,even:10,what:1,hide:[4,5,7,8,9,10,13,14],appear:1,from_group_id:13,section:1,current:[8,12,9],delet:[1,4,7,8,9,10,12,13,14],"new":[1,4,5,7,8,9,10,11,13,14],net:[1,2,6,3],delivery_t:8,method:[5,8,13,4,9],can:[0,1,2,4,5,7,8,9,11,12,13],widget:[7,10,8,9,13],hash:0,datematch:0,displai:10,variat:9,gener:[0,8,12,14],onli:[5,8],here:[0,1,3,5,6,8],bodi:9,let:[1,4,10],address:[0,1,8,6,9],along:8,sinc:8,valu:[0,5,7,8,10,11],field_upd:[12,4],search:[0,1,9,7],survei:14,sender:[9,14],larger:2,queue:5,prior:9,action:[0,8],chang:[8,4],name_first:[1,3],campaign:5,newbi:5,appli:[7,14],prefer:0,myemma:[4,5,7,8,9,13],filenam:8,customer_shar:5,"boolean":[0,1,5,7,8,9,10,13,14],curlopt_postfield:[1,3],total:5,jone:[7,5,8,13],select:10,newslett:[7,8,13],describ:7,would:[0,1],regist:4,two:[0,5],next:[0,1],create_webhook:4,few:[5,8],call:[1,2,3,4,6,8,12],criteria:7,member_add_to_group:[12,4],type:[1,3,4,5,6,7,10,9,14],until:2,more:[0,4,7,8,9,13],peopl:5,relat:[1,8,11,9],about:[10,8,12,4,9],notic:8,thide:[4,5,7,8,9,10,13,14],flag:[5,7,8,10,9,14],exce:2,indic:8,examin:1,particular:[1,4,5,8,10,12,9],in_progress:5,origin:9,must:[0,7,13,10],none:9,endpoint:[1,4,5,7,8,9,10,13,14],join:[0,7],hour:0,setup:1,member_sinc:[0,5,7,8,9,13],uniqu:5,histori:8,soup:7,remain:[0,9],archiv:[5,9],member_optout:[12,4],drill:5,control:[1,11,9],quickstart:1,give:5,forward_mailing_id:5,email_domain:[0,5],share:[0,5,8,12,4],accept:[0,5,7,8,9,10,11,13,14],total_click:5,tag:[11,9],want:[1,12,13,5],occur:[7,12],some_numeric_field:0,delai:14,alwai:0,webhook_event_id:4,cours:1,end:[2,8],first_nam:[1,3,5,7,8,9,10,11,13,14],started_or_finish:[9,14],anoth:[9,13],get:[1,4,5,6,7,8,9,10,13,14],message_open:[12,4],html_bodi:[9,14],share_statu:5,push_offset:14,del_statu:5,tild:5,num_members_upd:8,simpl:0,chri:9,pizza:[7,8],map:0,autent:1,referenc:7,xxxx:6,sundai:0,membership:13,taco:[7,5,8,9,13],mai:12,multipl:[10,8],data:[1,3,4,5,10,12],welcom:11,add_onli:8,"short":0,json_encod:[1,3],optout:[5,8,12,13],num_dupl:8,favorit:10,correspond:[0,1],greet:11,predic:[0,1],issu:[1,10],"12t11":[7,5,8,9,13],combin:7,allow:[0,7,8],some_zipcode_field:0,signed_up:5,order:[5,10],michel:[8,9],mailing_nam:5,checkbox:10,fields_upd:8,over:2,becaus:12,buyer:[7,8,9,13],comma:[9,13],is_dis:14,vari:8,paramet:[2,4,5,7,8,9,10,13,14],widget_typ:10,style:[0,4,5,7,8,9,10,13,14],group:[0,1,3,4,7,8,9,12,13,14],curl_setopt:[1,6,3],how:[7,1,2,4],import_start:8,better:[13,14],platform:1,pend:[1,9],mailing_list:9,onc:9,mail:[0,1,4,5,8,11,12,9,14],hidden:13,main:1,might:[1,4],link_nam:[5,9],them:[8,9],"return":[0,1,4,5,7,8,9,10,12,13,14],greater:[0,8],thei:[0,9],food:10,timestamp:[0,5,12,9,10],spell:4,dai:0,auth:1,instead:[12,2,8],now:5,down:5,term:[0,1],alex:9,name:[0,4,5,7,8,9,10,11,13,14],edit:[7,1,14,10],curl_getinfo:[1,6,3],authent:[1,6,4,3],successufulli:4,separ:[1,9,13],each:[1,2,5,9,12,11,13],found:[8,9,4,14],updat:[4,7,8,9,10,12,13,14],mean:0,status:[8,9],domain:0,shortcut_nam:10,weight:[4,5,7,8,9,10,13,14],resum:9,individu:[1,8],hard:[0,5],last_nam:[1,3,5,7,8,9,10,11,13,14],"05t15":5,birthdai:[10,14],expect:1,year:[0,5,9,14],our:[1,11,12,4,14],happen:[1,4,5],extract:11,short_display_nam:10,special:[0,7,8,13],out:[0,1,4,5,7,8,10,13],variabl:[1,6,3],message_shar:[12,4],network:[5,12],private_api_kei:[1,6,3],check_multipl:10,categori:1,rel:0,print:6,correct:10,statist:8,benjamin:8,qualifi:11,insid:1,advanc:0,contain:[0,5,7,13,10,9],differ:0,standard:[5,9],status_from:8,base:[5,8],recipient_search:9,dictionari:8,put:[4,7,8,9,10,13,14],"13t23":[7,5,8],visit:11,could:1,omit:5,success:[7,1,9,13,3],filter:[0,1,7],search_id:7,pagin:[1,2],member_id:[5,7,8,9,12,13],summari:[1,5],assign:9,first:[0,1,10,5],oper:[0,1,7,14],rang:5,notifi:12,directli:0,curlopt_ssl_verifyp:[1,6,3],curl_init:[1,6,3],number:[5,2,13,3,10],placehold:[1,11],date:[0,5,8,10,11,14],unlik:9,alreadi:[10,9,13],done:8,plaintext_pref:[7,8,9,13],oppos:8,open:[0,3,4,5,6,7,8,12],payload:4,fanci:5,size:2,given:[0,8,9,4],"long":10,script:1,associ:[1,8,9,4,5],system:[8,12,4,14],messag:[4,5,8,12,11,9,14],attach:11,friend:11,curlinfo_http_cod:[1,6,3],shell:0,option:[0,5,7,8,9,10,13,14],especi:8,signup:[0,1,3,4,5,8,12,14],copi:[8,13],member_upd:[12,4],specifi:[0,2,7,8,10,11,9,14],curl_exec:[1,6,3],curlopt_httphead:[1,6,3],member_signup:[12,4],create_search:7,part:[0,9],enclos:11,than:[0,1,2,3,12,13],with_plaintext:9,"02t10":[5,8],"02t11":[5,8],"02t13":5,nathan:8,whenev:8,provid:[1,5,8,12,9,14],remov:[12,8,13,4],mailing_start:4,rate:2,structur:7,charact:9,greg:8,trackabl:11,were:5,minut:0,danc:1,error_count:[7,8,9,13],pre:[4,5,7,8,9,10,13,14],cleaner:1,sai:0,share_id:5,signup_form_id:[0,8,12,9,14],plaintext:[5,9,14],pass:[1,3],ani:[0,1,2,7,8,9],have:[0,5,8,12,9],tabl:5,seen:5,"null":[7,8,13,10,9,14],kevin:[9,14],signup_mail:0,caus:14,inform:[1,4,6,8,9,10,13],object_id:14,note:[1,8,9,4],also:[0,4,5,7,8,9,11,13],exampl:[0,1,3,5,6,7,11],take:[0,4],which:[0,1,4,8,10,12,9,14],some_number_field:0,singl:[0,1,3,4,5,8,10,12,13],excit:11,sure:1,delete_memb:13,normal:9,parent_mail:14,recipient_count:[5,9,14],previou:9,field_id:[10,12,14],last_run_at:7,most:14,pair:11,"class":[4,5,7,8,9,10,13,14],member_group_id:[8,9,13],mcconnel:[9,14],url:[1,3,4,5,6,12],mailing_finish:[12,4],clear:10,request:[1,2,3],doe:[0,5,7,8,10,13],member_status_upd:[12,4],declar:9,tech:4,determin:1,dataset:10,dow:0,recipi:9,"6db0cc7e6fdb2da589b65f29d90c96b6":9,show:[4,5,7,8,9,10,11,13,14],text:[10,11,12],radiu:0,syntax:[0,1,11,9],radio:10,font:[4,5,7,8,9,10,13,14],fine:9,find:[1,6,5],status_to:8,toast:[7,5,8,13],access:[1,5],giant:12,just:[0,9],pretti:8,column_ord:10,explain:[0,1],winner:9,activ:[1,5,7,8,13,9],figur:1,should:[1,2,3,7,8,11,9],templat:[11,14],share_count:5,count:[1,2,3,5],variou:[8,13],confirmed_opt_in:[7,8,9,13],familiar:1,express:0,account:[1,4,5,7,8,10,13,14],cannot:[8,9,4],progress:9,report:[10,8],requir:[1,7,8,10,11,9],object:[5,13],favorite_food:[5,7,8,13,10,9],bar:0,organ:1,include_archiv:[5,9],"public":1,"default":[5,11,13,4,9],ref_member_id:5,message_share_click:[12,4],through:[1,8,4],where:[0,1,8,11,7],view:1,set:[0,1,2,3,6,8,9,12,13],link_id:[0,5,12,9,14],see:[7,1,8],result:[0,1,2,5,8,9],respons:[0,1,2,4,5,7,8,9,10,13,14],fail:[5,9,4],themselv:2,member_field:[0,7],xxxxx:6,subject:[8,12,9,14],statu:[1,4,5,7,8,9,12,13],fancyonion:11,kei:[0,1,11,4],is_schedul:9,message_forward:[12,4],databas:8,user:[0,8,9,13],last_modified_at:[7,8,9,13],addresse:5,written:1,between:[0,7,2],"import":[1,8,12,4,10],subscript:[1,3],entiti:1,curlopt_url:[1,6,3],email:[0,1,3,5,6,7,8,9,13],wide:14,extend:1,numer:10,http404:[4,5,7,8,9,10,13,14],job:13,entir:[0,8],share_click:5,to_group_id:13,curlopt_returntransf:[1,6,3],addit:[0,1,8,9,11,13],member_remove_from_group:[12,4],send_start:[0,9,14],protect:1,accident:2,last:[0,5,10],delimit:5,pertain:5,message_click:[12,4],curlopt_post:[1,3],audienc:[1,8,9],mang:0,http500:14,seri:5,com:[4,5,6,7,8,9,11,13],zip_code_field:0,"03t15":[7,5,8,13],point:1,toni:[7,8],overview:[0,1,11,12,5],period:1,winner_id:9,colon:[7,11],optout_count:[7,8,9,13],suppli:9,cancel:9,tuesdai:0,duplic:5,quit:[5,8],user_id:4,recur:14,headsup:9,addition:[1,2],due:5,been:[1,8,10,5],mark:[8,9],whom:9,tshow:[4,5,7,8,9,10,13,14],trigger:[1,4,5,7,8,9,10,12,13,14],unsubscrib:0,treat:8,interest:[10,4],basic:[0,1,4,8,13,14],monthli:[7,8,13],blob:4,mailing_mailing_id:5,mailing_id:[0,5,8,12,9,14],fire:[8,4,14],xxx:[1,3],argument:[0,5],link_ord:[5,9],input:1,present:7,clicked_uniqu:5,"case":[1,8],look:[1,14,10],frozen:9,easier:12,email_error:[7,8,9,13],defin:[0,10,8,9],"while":0,outcom:5,abov:[0,1,8,7],error:[1,3,6,8,10,13],loop:8,opt:[0,4,5,7,8,13],readi:9,deliv:5,recipient_group:9,equal:0,itself:0,new_statu:12,webhook_id:4,recipient_memb:9,perform:8,make:[1,12,6,10],belong:[0,8,4],same:4,check:[8,6,9],member:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14],handl:1,html:9,split:9,document:[1,11,12],complet:[1,3,4,6,8,9],week:0,finish:[5,12,4],http:[1,2,3,4,5,6,11,9],href:[4,5,7,8,9,10,13,14],nest:0,someon:4,rais:[4,5,7,8,9,10,13,14],initi:[10,9],php:[1,6,3],bob:[7,5],recent:1,kept:11,center:0,min:5,well:5,inherit:9,person:9,mailing_typ:[9,14],without:0,command:1,thi:[0,1,4,5,7,8,9,10,12,13,14],undefin:0,http_code:[1,6,3],latest:11,construct:[0,7,9],identifi:8,paus:9,execut:[1,3],less:0,resp:[4,5,7,8,9,10,13,14],"_post":[1,3],against:0,aspect:13,recipient_email:9,source_filenam:8,yet:5,smith:[7,5,8,9,13],"12t09":[7,8],display_nam:10,easi:[10,12],"01t00":8,had:0,littl:1,blog:4,add:[12,1,8,13,3],other:[1,8,9,3,5],curlopt_userpwd:[1,6,3],import_finish:[8,12,4],schedul:9,els:[1,6,3],save:7,match:[0,7],build:1,sanit:1,applic:[1,6,3],account_id:[1,3,4,5,6,7,8,9,10,12,13,14],disposit:1,crud:[8,13,14],print_r:[6,3],mailing_statu:[9,14],know:[5,4],background:13,parent_mailing_id:[9,14],bit:1,insert:11,emma:[1,5,7,8,9,12,13],like:1,onion:11,deprec:4,arbitrari:8,manual:9,integ:[1,8,14,10,5],public_kei:4,api:[1,2,6,12,3],either:[0,5,7],bunch:0,output:9,group_id:[1,8,12,3],soft:[0,5],manag:[0,1,13,4],import_id:[8,12],www:[5,9],old:7,deal:[8,13],captur:1,arrai:[0,1,3,5,6,7,8,9,10,12,13,14],some:[1,11,5],"17t10":[7,14],field_delet:[12,4],certain:12,intern:10,sampl:[1,4,5,7,8,9,10,13,14],elaps:[2,9],home:11,deleted_at:[7,8,13,10,9,14],some_string_field:0,librari:11,bounce_count:[7,8,9,13],confirm:8,broad:12,per:5,send_finish:[9,14],larg:[0,2],condit:7,three:9,network_cod:12,localhost:9,refer:[5,7,8,13,10,9],with_html_bodi:9,who:[0,5],bold:[4,5,7,8,9,10,13,14],event_typ:14,inspect:1,usag:[1,8,12],num_members_ad:8,fulli:11,from:[1,4,8,9,12,13,14],post:[1,3,4,7,8,9,10,12,13,14],group_creat:[12,4],gladi:[7,5,8,13],actual:5,zip:0,groups_upd:8,column:10,page:2,includ:[1,5,7,8,9,10,13],webview:9,disabl:[9,14],block:[1,2],yyyi:5,member_data:[1,3],glob:0,bounc:[0,5],within:0,encod:[9,4],delivery_typ:[5,8],compos:0,webview_shar:5,field_typ:10,active_count:[7,8,9,13],public_webview_url:9,pivot:5,your:[1,4,5,7,8,9,10,13],websit:11,span:[4,5,7,8,9,10,13,14],wai:[1,12],area:1,overus:2,group_nam:[8,12,13,9],support:12,unique_click:5,json:[0,1,3,4,6,7],fast:8,custom:[5,8,11,10],avail:[0,11,4],start:[1,2,8,4],interfac:12,send_at:[9,14],exceed:2,"var":3,interv:[0,14],deliveri:5,head:[1,6,9,3],form:[1,3,4,6,8,10,14],enough:2,forc:1,forward:[0,4,5,8,12,9],"31st":0,group_typ:[8,9,13],push_offset_unit:14,link:[0,4,5,11,9,14],line:[1,5],realli:1,"true":[0,1,2,3,4,6,7,8,9,10,13,14],archived_t:[9,14],name_last:[1,3],info:4,pull:2,made:1,possibl:[5,8,12],whether:8,maximum:2,tell:12,http403:9,record:[0,7,8],below:[0,1,8,12],http400:[7,8,9],limit:[5,2,8,9],some_array_field:0,otherwis:[10,8],start_t:14,mta:5,connect:[6,3],notif:9,creat:[4,5,7,9,10,12,13,14],"int":5,retriev:[7,1,2,8,9],email_us:[0,5],repres:5,exist:[0,4,5,7,8,10,13],behavior:11,curl:[1,6],lentil:7,probabl:14,echo:[1,3],successfulli:[5,8,9],mailing_subject:12,grp:13,todo:11,when:[8,12,4,9],detail:[1,4,7,8,9,10,13],invalid:[7,8,9],event:[4,7,8,13,12,9,14],field:[0,1,3,4,5,7,8,9,10,11,12,13,14],valid:[5,8,9,13],futur:1,num_skip:8,test:[5,6,7,13,9,14],ignor:8,you:[0,1,2,4,5,7,8,9,10,11,12,13],member_delet:[12,4],member_status_id:[7,5,8,9,13],public_api_kei:[1,6,3],stat:[5,9],claus:[0,7],event_nam:[12,4],e2ma:[1,2,6,3],error_messag:8,param:[9,4],app_messag:[1,3],ella:8,bulk:[1,8],receiv:[0,2,5,8,12,9],heads_up_email:9,longer:9,descript:[4,14],portion:0,opted_out:5,time:[1,2,8,13,5],reply_to:[9,14],resource_url:12,hello:[11,9,14]},objtypes:{"0":"http:get","1":"http:put","2":"http:post","3":"http:delete"},titles:["Search Syntax","Emma API","Pagination","PHP Signup Example","Webhooks","Response","PHP Get Member By Email Example","Searches","Members","Mailings","Fields","Placeholder Syntax","Webhook Usage","Groups","Triggers"],objnames:{"0":["http","get","HTTP get"],"1":["http","put","HTTP put"],"2":["http","post","HTTP post"],"3":["http","delete","HTTP delete"]},filenames:["member_search","index","pagination","php_signup_example","api/external/webhooks","api/external/response","php_get_member_example","api/external/searches","api/external/members","api/external/mailings","api/external/fields","placeholders","webhooks","api/external/groups","api/external/triggers"]}) \ No newline at end of file +Search.setIndex({objects:{"":{"/#account_id/members/#member_id/groups/remove":[8,1,1,"put--#account_id-members-#member_id-groups-remove"],"/#account_id/mailings/#mailing_id/winner/#winner_id":[9,2,1,"post--#account_id-mailings-#mailing_id-winner-#winner_id"],"/#account_id/response/#mailing_id/in_progress":[5,0,1,"get--#account_id-response-#mailing_id-in_progress"],"/#account_id/members/groups/remove":[8,1,1,"put--#account_id-members-groups-remove"],"/#account_id/mailings/#mailing_id/searches":[9,0,1,"get--#account_id-mailings-#mailing_id-searches"],"/#account_id/fields":[10,2,1,"post--#account_id-fields"],"/#account_id/members/#group_id/copy":[8,1,1,"put--#account_id-members-#group_id-copy"],"/#account_id/members/status":[8,1,1,"put--#account_id-members-status"],"/#account_id/response/#mailing_id/shares/overview":[5,0,1,"get--#account_id-response-#mailing_id-shares-overview"],"/#account_id/webhooks/events":[4,0,1,"get--#account_id-webhooks-events"],"/#account_id/members/#member_id/optout":[8,0,1,"get--#account_id-members-#member_id-optout"],"/#account_id/webhooks":[4,3,1,"delete--#account_id-webhooks"],"/#account_id/fields/#field_id":[10,3,1,"delete--#account_id-fields-#field_id"],"/#account_id/response/#mailing_id":[5,0,1,"get--#account_id-response-#mailing_id"],"/#account_id/groups/#member_group_id/members/remove":[13,3,1,"delete--#account_id-groups-#member_group_id-members-remove"],"/#account_id/searches":[7,2,1,"post--#account_id-searches"],"/#account_id/members/imports":[8,0,1,"get--#account_id-members-imports"],"/#account_id/forwards/#mailing_id/#member_id":[9,2,1,"post--#account_id-forwards-#mailing_id-#member_id"],"/#account_id/response/#mailing_id/customer_share_clicks":[5,0,1,"get--#account_id-response-#mailing_id-customer_share_clicks"],"/#account_id/mailings/#mailing_id/messages/#member_id":[9,0,1,"get--#account_id-mailings-#mailing_id-messages-#member_id"],"/#account_id/members/#member_id/mailings":[8,0,1,"get--#account_id-members-#member_id-mailings"],"/#account_id/groups/#from_group_id/#to_group_id/members/copy":[13,1,1,"put--#account_id-groups-#from_group_id-#to_group_id-members-copy"],"/#account_id/triggers":[14,2,1,"post--#account_id-triggers"],"/#account_id/triggers/#trigger_id":[14,3,1,"delete--#account_id-triggers-#trigger_id"],"/#account_id/members/delete":[8,1,1,"put--#account_id-members-delete"],"/#account_id/mailings/#mailing_id/groups":[9,0,1,"get--#account_id-mailings-#mailing_id-groups"],"/#account_id/response/#mailing_id/forwards":[5,0,1,"get--#account_id-response-#mailing_id-forwards"],"/#account_id/members/#member_id":[8,3,1,"delete--#account_id-members-#member_id"],"/#account_id/triggers/#trigger_id/mailings":[14,0,1,"get--#account_id-triggers-#trigger_id-mailings"],"/#account_id/searches/#search_id/members":[7,0,1,"get--#account_id-searches-#search_id-members"],"/#account_id/members/status/:status_from/to/:status_to":[8,1,1,"put--#account_id-members-status--status_from-to--status_to"],"/#account_id/response/#mailing_id/sends":[5,0,1,"get--#account_id-response-#mailing_id-sends"],"/#account_id/members":[8,3,1,"delete--#account_id-members"],"/#account_id/members/email/:email":[8,0,1,"get--#account_id-members-email--email"],"/#account_id/response/#mailing_id/links":[5,0,1,"get--#account_id-response-#mailing_id-links"],"/#account_id/searches/#search_id":[7,3,1,"delete--#account_id-searches-#search_id"],"/#account_id/members/imports/#import_id/members":[8,0,1,"get--#account_id-members-imports-#import_id-members"],"/#account_id/fields/#field_id/clear":[10,2,1,"post--#account_id-fields-#field_id-clear"],"/#account_id/groups/#member_group_id/members":[13,3,1,"delete--#account_id-groups-#member_group_id-members"],"/#account_id/members/imports/#import_id":[8,0,1,"get--#account_id-members-imports-#import_id"],"/#account_id/response":[5,0,1,"get--#account_id-response"],"/#account_id/response/#mailing_id/opens":[5,0,1,"get--#account_id-response-#mailing_id-opens"],"/#account_id/members/imports/delete":[8,3,1,"delete--#account_id-members-imports-delete"],"/#account_id/mailings":[9,0,1,"get--#account_id-mailings"],"/#account_id/mailings/cancel/#mailing_id":[9,3,1,"delete--#account_id-mailings-cancel-#mailing_id"],"/#account_id/mailings/validate":[9,2,1,"post--#account_id-mailings-validate"],"/#account_id/response/#mailing_id/deliveries":[5,0,1,"get--#account_id-response-#mailing_id-deliveries"],"/#account_id/mailings/#mailing_id/members":[9,0,1,"get--#account_id-mailings-#mailing_id-members"],"/#account_id/response/#share_id/customer_share":[5,0,1,"get--#account_id-response-#share_id-customer_share"],"/#account_id/webhooks/#webhook_id":[4,3,1,"delete--#account_id-webhooks-#webhook_id"],"/#account_id/members/add":[8,2,1,"post--#account_id-members-add"],"/#account_id/response/#mailing_id/optouts":[5,0,1,"get--#account_id-response-#mailing_id-optouts"],"/#account_id/response/#mailing_id/shares":[5,0,1,"get--#account_id-response-#mailing_id-shares"],"/#account_id/groups/#member_group_id":[13,3,1,"delete--#account_id-groups-#member_group_id"],"/#account_id/mailings/#mailing_id":[9,3,1,"delete--#account_id-mailings-#mailing_id"],"/#account_id/members/#member_id/groups":[8,3,1,"delete--#account_id-members-#member_id-groups"],"/#account_id/groups":[13,2,1,"post--#account_id-groups"],"/#account_id/response/#mailing_id/clicks":[5,0,1,"get--#account_id-response-#mailing_id-clicks"],"/#account_id/mailings/#mailing_id/headsup":[9,0,1,"get--#account_id-mailings-#mailing_id-headsup"],"/#account_id/response/#mailing_id/signups":[5,0,1,"get--#account_id-response-#mailing_id-signups"],"/#account_id/response/#mailing_id/customer_shares":[5,0,1,"get--#account_id-response-#mailing_id-customer_shares"]}},terms:{all:[0,1,4,5,8,9,10,11,12,13,14],code:[0,1,6,3],change_typ:8,queri:[0,2,4],month:[0,5,9,14],four:[0,5],mile:0,least:0,field_creat:[12,4],link_target:[5,9],content:[1,11,6,9,3],privat:1,specif:[8,9,4],friendli:5,send:[1,9,4,3,5],customer_share_click:5,those:[5,12],group_upd:[12,4],sent:[5,8,12,9,14],curl_clos:[1,6,3],brown:[7,8],digit:5,everi:0,string:[0,4,5,7,8,9,10,12,13,14],fals:[1,3,4,5,6,7,8,9,10,13,14],webhook:[1,12,4],mailing_status:9,trigger_id:14,webview_share_click:5,affect:[7,8],member_add:[12,4],create_mail:9,new_boolean:10,foo:0,level:1,group_delet:[12,4],list:[0,1,2,4,5,7,8,9,10,11,12,13,14],upload:8,iter:2,"try":8,item:2,plaintext_onli:[9,14],div:[4,5,7,8,9,10,13,14],survey_id:14,pleas:[1,8,11,9],prevent:2,work:[1,4],ten:0,sync:10,sign:[0,5,4],past:1,second:[0,7,14],follow:[0,1,4,5,7,9,11,13],further:1,durat:9,click:[0,4,5,7,8,12,14],append:2,even:10,what:1,hide:[4,5,7,8,9,10,13,14],appear:1,from_group_id:13,section:1,current:[8,12,9],delet:[1,4,7,8,9,10,12,13,14],"new":[1,4,5,7,8,9,10,11,13,14],net:[1,2,6,3],delivery_t:8,method:[5,8,13,4,9],can:[0,1,2,4,5,7,8,9,11,12,13],widget:[7,10,8,9,13],hash:0,datematch:0,displai:10,variat:9,gener:[0,8,12,14],onli:[5,8],here:[0,1,3,5,6,8],bodi:9,let:[1,4,10],address:[0,1,8,6,9],"17t16":[7,14],along:8,sinc:8,valu:[0,5,7,8,10,11],field_upd:[12,4],search:[0,1,9,7],survei:14,sender:[9,14],larger:2,queue:5,prior:9,action:[0,8],chang:[8,4],name_first:[1,3],campaign:5,newbi:5,appli:[7,14],prefer:0,myemma:[4,5,7,8,9,13],filenam:8,customer_shar:5,"boolean":[0,1,5,7,8,9,10,13,14],curlopt_postfield:[1,3],total:5,jone:[7,5,8,13],select:10,newslett:[7,8,13],describ:7,would:[0,1],regist:4,two:[0,5],next:[0,1],create_webhook:4,few:[5,8],call:[1,2,3,4,6,8,12],criteria:7,member_add_to_group:[12,4],type:[1,3,4,5,6,7,10,9,14],until:2,more:[0,4,7,8,9,13],peopl:5,relat:[1,8,11,9],about:[10,8,12,4,9],notic:8,thide:[4,5,7,8,9,10,13,14],flag:[5,7,8,10,9,14],exce:2,indic:8,examin:1,particular:[1,4,5,8,10,12,9],in_progress:5,origin:9,must:[0,7,13,10],none:9,endpoint:[1,4,5,7,8,9,10,13,14],join:[0,7],hour:0,setup:1,member_sinc:[0,5,7,8,9,13],uniqu:5,histori:8,soup:7,remain:[0,9],archiv:[5,9],member_optout:[12,4],drill:5,control:[1,11,9],quickstart:1,give:5,forward_mailing_id:5,email_domain:[0,5],share:[0,5,8,12,4],accept:[0,5,7,8,9,10,11,13,14],total_click:5,tag:[11,9],want:[1,12,13,5],occur:[7,12],some_numeric_field:0,delai:14,alwai:0,webhook_event_id:4,cours:1,end:[2,8],first_nam:[1,3,5,7,8,9,10,11,13,14],started_or_finish:[9,14],anoth:[9,13],get:[1,4,5,6,7,8,9,10,13,14],message_open:[12,4],html_bodi:[9,14],share_statu:5,push_offset:14,del_statu:5,tild:5,num_members_upd:8,simpl:0,chri:9,pizza:[7,8],map:0,autent:1,referenc:7,xxxx:6,sundai:0,membership:13,taco:[7,5,8,9,13],mai:12,multipl:[10,8],data:[1,3,4,5,10,12],welcom:11,add_onli:8,"short":0,json_encod:[1,3],optout:[5,8,12,13],num_dupl:8,favorit:10,correspond:[0,1],greet:11,predic:[0,1],issu:[1,10],"12t11":[7,5,8,9,13],combin:7,allow:[0,7,8],some_zipcode_field:0,signed_up:5,order:[5,10],michel:[8,9],mailing_nam:5,checkbox:10,fields_upd:8,over:2,becaus:12,buyer:[7,8,9,13],comma:[9,13],is_dis:14,vari:8,paramet:[2,4,5,7,8,9,10,13,14],widget_typ:10,style:[0,4,5,7,8,9,10,13,14],group:[0,1,3,4,7,8,9,12,13,14],curl_setopt:[1,6,3],how:[7,1,2,4],import_start:8,better:[13,14],platform:1,pend:[1,9],mailing_list:9,onc:9,mail:[0,1,4,5,8,11,12,9,14],hidden:13,main:1,might:[1,4],link_nam:[5,9],them:[8,9],"return":[0,1,4,5,7,8,9,10,12,13,14],greater:[0,8],thei:[0,9],food:10,timestamp:[0,5,12,9,10],spell:4,dai:0,auth:1,instead:[12,2,8],now:5,down:5,term:[0,1],alex:9,name:[0,4,5,7,8,9,10,11,13,14],edit:[7,1,14,10],curl_getinfo:[1,6,3],authent:[1,6,4,3],successufulli:4,separ:[1,9,13],each:[1,2,5,9,12,11,13],found:[8,9,4,14],updat:[4,7,8,9,10,12,13,14],mean:0,status:[8,9],domain:0,shortcut_nam:10,weight:[4,5,7,8,9,10,13,14],resum:9,individu:[1,8],hard:[0,5],last_nam:[1,3,5,7,8,9,10,11,13,14],"05t15":5,birthdai:[10,14],expect:1,year:[0,5,9,14],our:[1,11,12,4,14],happen:[1,4,5],extract:11,short_display_nam:10,special:[0,7,8,13],out:[0,1,4,5,7,8,10,13],variabl:[1,6,3],message_shar:[12,4],network:[5,12],private_api_kei:[1,6,3],check_multipl:10,categori:1,rel:0,print:6,correct:10,statist:8,benjamin:8,qualifi:11,insid:1,advanc:0,contain:[0,5,7,13,10,9],differ:0,standard:[5,9],status_from:8,base:[5,8],recipient_search:9,dictionari:8,put:[4,7,8,9,10,13,14],"13t23":[7,5,8],visit:11,could:1,omit:5,success:[7,1,9,13,3],filter:[0,1,7],search_id:7,pagin:[1,2],member_id:[5,7,8,9,12,13],summari:[1,5],assign:9,first:[0,1,10,5],oper:[0,1,7,14],rang:5,notifi:12,directli:0,curlopt_ssl_verifyp:[1,6,3],curl_init:[1,6,3],number:[5,2,13,3,10],placehold:[1,11],date:[0,5,8,10,11,14],unlik:9,alreadi:[10,9,13],done:8,plaintext_pref:[7,8,9,13],oppos:8,open:[0,3,4,5,6,7,8,12],payload:4,fanci:5,size:2,given:[0,8,9,4],"long":10,script:1,associ:[1,8,9,4,5],system:[8,12,4,14],messag:[4,5,8,12,11,9,14],attach:11,friend:11,curlinfo_http_cod:[1,6,3],shell:0,option:[0,5,7,8,9,10,13,14],especi:8,signup:[0,1,3,4,5,8,12,14],copi:[8,13],member_upd:[12,4],specifi:[0,2,7,8,10,11,9,14],curl_exec:[1,6,3],curlopt_httphead:[1,6,3],member_signup:[12,4],create_search:7,part:[0,9],enclos:11,than:[0,1,2,3,12,13],with_plaintext:9,"02t10":[5,8],"02t11":[5,8],"02t13":5,nathan:8,whenev:8,provid:[1,5,8,12,9,14],remov:[12,8,13,4],mailing_start:4,rate:2,structur:7,charact:9,greg:8,trackabl:11,were:5,minut:0,danc:1,error_count:[7,8,9,13],pre:[4,5,7,8,9,10,13,14],cleaner:1,sai:0,share_id:5,signup_form_id:[0,8,12,9,14],plaintext:[5,9,14],pass:[1,3],ani:[0,1,2,7,8,9],have:[0,5,8,12,9],tabl:5,seen:5,"null":[7,8,13,10,9,14],kevin:[9,14],signup_mail:0,caus:14,inform:[1,4,6,8,9,10,13],object_id:14,note:[1,8,9,4],also:[0,4,5,7,8,9,11,13],exampl:[0,1,3,5,6,7,11],take:[0,4],which:[0,1,4,8,10,12,9,14],some_number_field:0,singl:[0,1,3,4,5,8,10,12,13],excit:11,sure:1,delete_memb:13,normal:9,parent_mail:14,recipient_count:[5,9,14],previou:9,field_id:[10,12,14],last_run_at:7,most:14,pair:11,"class":[4,5,7,8,9,10,13,14],member_group_id:[8,9,13],mcconnel:[9,14],url:[1,3,4,5,6,12],mailing_finish:[12,4],clear:10,request:[1,2,3],doe:[0,5,7,8,10,13],member_status_upd:[12,4],declar:9,tech:4,determin:1,dataset:10,dow:0,recipi:9,"6db0cc7e6fdb2da589b65f29d90c96b6":9,show:[4,5,7,8,9,10,11,13,14],text:[10,11,12],radiu:0,syntax:[0,1,11,9],radio:10,font:[4,5,7,8,9,10,13,14],fine:9,find:[1,6,5],status_to:8,toast:[7,5,8,13],access:[1,5],giant:12,just:[0,9],pretti:8,column_ord:10,explain:[0,1],winner:9,activ:[1,5,7,8,13,9],figur:1,should:[1,2,3,7,8,11,9],templat:[11,14],share_count:5,count:[1,2,3,5],variou:[8,13],confirmed_opt_in:[7,8,9,13],familiar:1,express:0,account:[1,4,5,7,8,10,13,14],cannot:[8,9,4],progress:9,report:[10,8],requir:[1,7,8,10,11,9],object:[5,13],favorite_food:[5,7,8,13,10,9],bar:0,organ:1,include_archiv:[5,9],"public":1,"default":[5,11,13,4,9],ref_member_id:5,message_share_click:[12,4],through:[1,8,4],where:[0,1,8,11,7],view:1,set:[0,1,2,3,6,8,9,12,13],link_id:[0,5,12,9,14],see:[7,1,8],result:[0,1,2,5,8,9],respons:[0,1,2,4,5,7,8,9,10,13,14],fail:[5,9,4],themselv:2,member_field:[0,7],xxxxx:6,subject:[8,12,9,14],statu:[1,4,5,7,8,9,12,13],fancyonion:11,kei:[0,1,11,4],is_schedul:9,message_forward:[12,4],databas:8,user:[0,8,9,13],last_modified_at:[7,8,9,13],addresse:5,written:1,between:[0,7,2],"import":[1,8,12,4,10],subscript:[1,3],entiti:1,curlopt_url:[1,6,3],email:[0,1,3,5,6,7,8,9,13],wide:14,extend:1,numer:10,http404:[4,5,7,8,9,10,13,14],job:13,entir:[0,8],share_click:5,to_group_id:13,curlopt_returntransf:[1,6,3],addit:[0,1,8,9,11,13],member_remove_from_group:[12,4],send_start:[0,9,14],protect:1,accident:2,last:[0,5,10],delimit:5,pertain:5,message_click:[12,4],curlopt_post:[1,3],audienc:[1,8,9],mang:0,http500:14,seri:5,com:[4,5,6,7,8,9,11,13],zip_code_field:0,"03t15":[7,5,8,13],point:1,toni:[7,8],overview:[0,1,11,12,5],period:1,winner_id:9,colon:[7,11],optout_count:[7,8,9,13],suppli:9,cancel:9,tuesdai:0,duplic:5,quit:[5,8],user_id:4,recur:14,headsup:9,addition:[1,2],due:5,been:[1,8,10,5],mark:[8,9],whom:9,tshow:[4,5,7,8,9,10,13,14],trigger:[1,4,5,7,8,9,10,12,13,14],unsubscrib:0,treat:8,interest:[10,4],basic:[0,1,4,8,13,14],monthli:[7,8,13],blob:4,mailing_mailing_id:5,mailing_id:[0,5,8,12,9,14],fire:[8,4,14],xxx:[1,3],argument:[0,5],link_ord:[5,9],input:1,present:7,clicked_uniqu:5,"case":[1,8],look:[1,14,10],frozen:9,easier:12,email_error:[7,8,9,13],defin:[0,10,8,9],"while":0,outcom:5,abov:[0,1,8,7],error:[1,3,6,8,10,13],loop:8,opt:[0,4,5,7,8,13],readi:9,deliv:5,recipient_group:9,equal:0,itself:0,new_statu:12,webhook_id:4,recipient_memb:9,perform:8,make:[1,12,6,10],belong:[0,8,4],same:4,check:[8,6,9],member:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14],handl:1,html:9,split:9,document:[1,11,12],complet:[1,3,4,6,8,9],week:0,finish:[5,12,4],http:[1,2,3,4,5,6,11,9],href:[4,5,7,8,9,10,13,14],nest:0,someon:4,rais:[4,5,7,8,9,10,13,14],initi:[10,9],php:[1,6,3],bob:[7,5],recent:1,kept:11,center:0,min:5,well:5,inherit:9,person:9,mailing_typ:[9,14],without:0,command:1,thi:[0,1,4,5,7,8,9,10,12,13,14],undefin:0,http_code:[1,6,3],latest:11,construct:[0,7,9],identifi:8,paus:9,execut:[1,3],less:0,resp:[4,5,7,8,9,10,13,14],"_post":[1,3],against:0,aspect:13,recipient_email:9,source_filenam:8,yet:5,smith:[7,5,8,9,13],"12t09":[7,8],display_nam:10,easi:[10,12],"01t00":8,had:0,littl:1,blog:4,add:[12,1,8,13,3],other:[1,8,9,3,5],curlopt_userpwd:[1,6,3],import_finish:[8,12,4],schedul:9,els:[1,6,3],save:7,match:[0,7],build:1,sanit:1,applic:[1,6,3],account_id:[1,3,4,5,6,7,8,9,10,12,13,14],disposit:1,crud:[8,13,14],print_r:[6,3],mailing_statu:[9,14],know:[5,4],background:13,parent_mailing_id:[9,14],bit:1,insert:11,emma:[1,5,7,8,9,12,13],like:1,onion:11,deprec:4,arbitrari:8,manual:9,integ:[1,8,14,10,5],public_kei:4,api:[1,2,6,12,3],either:[0,5,7],bunch:0,output:9,group_id:[1,8,12,3],soft:[0,5],manag:[0,1,13,4],import_id:[8,12],www:[5,9],old:7,deal:[8,13],captur:1,arrai:[0,1,3,5,6,7,8,9,10,12,13,14],some:[1,11,5],field_delet:[12,4],certain:12,intern:10,sampl:[1,4,5,7,8,9,10,13,14],elaps:[2,9],home:11,deleted_at:[7,8,13,10,9,14],some_string_field:0,librari:11,bounce_count:[7,8,9,13],confirm:8,broad:12,per:5,send_finish:[9,14],larg:[0,2],condit:7,three:9,network_cod:12,localhost:9,refer:[5,7,8,13,10,9],with_html_bodi:9,who:[0,5],bold:[4,5,7,8,9,10,13,14],event_typ:14,inspect:1,usag:[1,8,12],num_members_ad:8,fulli:11,from:[1,4,8,9,12,13,14],post:[1,3,4,7,8,9,10,12,13,14],group_creat:[12,4],gladi:[7,5,8,13],actual:5,zip:0,groups_upd:8,column:10,page:2,includ:[1,5,7,8,9,10,13],webview:9,disabl:[9,14],block:[1,2],yyyi:5,member_data:[1,3],glob:0,bounc:[0,5],within:0,encod:[9,4],delivery_typ:[5,8],compos:0,webview_shar:5,field_typ:10,active_count:[7,8,9,13],public_webview_url:9,pivot:5,your:[1,4,5,7,8,9,10,13],websit:11,span:[4,5,7,8,9,10,13,14],wai:[1,12],area:1,overus:2,group_nam:[8,12,13,9],support:12,unique_click:5,json:[0,1,3,4,6,7],fast:8,custom:[5,8,11,10],avail:[0,11,4],start:[1,2,8,4],interfac:12,send_at:[9,14],exceed:2,"var":3,interv:[0,14],deliveri:5,head:[1,6,9,3],form:[1,3,4,6,8,10,14],enough:2,forc:1,forward:[0,4,5,8,12,9],"31st":0,group_typ:[8,9,13],push_offset_unit:14,link:[0,4,5,11,9,14],line:[1,5],realli:1,"true":[0,1,2,3,4,6,7,8,9,10,13,14],archived_t:[9,14],name_last:[1,3],info:4,pull:2,made:1,possibl:[5,8,12],whether:8,maximum:2,tell:12,http403:9,record:[0,7,8],below:[0,1,8,12],http400:[7,8,9],limit:[5,2,8,9],some_array_field:0,otherwis:[10,8],start_t:14,mta:5,connect:[6,3],notif:9,creat:[4,5,7,9,10,12,13,14],"int":5,retriev:[7,1,2,8,9],email_us:[0,5],repres:5,exist:[0,4,5,7,8,10,13],behavior:11,curl:[1,6],lentil:7,probabl:14,echo:[1,3],successfulli:[5,8,9],mailing_subject:12,grp:13,todo:11,when:[8,12,4,9],detail:[1,4,7,8,9,10,13],invalid:[7,8,9],event:[4,7,8,13,12,9,14],field:[0,1,3,4,5,7,8,9,10,11,12,13,14],valid:[5,8,9,13],futur:1,num_skip:8,test:[5,6,7,13,9,14],ignor:8,you:[0,1,2,4,5,7,8,9,10,11,12,13],member_delet:[12,4],member_status_id:[7,5,8,9,13],public_api_kei:[1,6,3],stat:[5,9],claus:[0,7],event_nam:[12,4],e2ma:[1,2,6,3],error_messag:8,param:[9,4],app_messag:[1,3],ella:8,bulk:[1,8],receiv:[0,2,5,8,12,9],heads_up_email:9,longer:9,descript:[4,14],portion:0,opted_out:5,time:[1,2,8,13,5],reply_to:[9,14],resource_url:12,hello:[11,9,14]},objtypes:{"0":"http:get","1":"http:put","2":"http:post","3":"http:delete"},titles:["Search Syntax","Emma API","Pagination","PHP Signup Example","Webhooks","Response","PHP Get Member By Email Example","Searches","Members","Mailings","Fields","Placeholder Syntax","Webhook Usage","Groups","Triggers"],objnames:{"0":["http","get","HTTP get"],"1":["http","put","HTTP put"],"2":["http","post","HTTP post"],"3":["http","delete","HTTP delete"]},filenames:["member_search","index","pagination","php_signup_example","api/external/webhooks","api/external/response","php_get_member_example","api/external/searches","api/external/members","api/external/mailings","api/external/fields","placeholders","webhooks","api/external/groups","api/external/triggers"]}) \ No newline at end of file diff --git a/webhooks.html b/webhooks.html index 6e49164..fbb827d 100644 --- a/webhooks.html +++ b/webhooks.html @@ -466,7 +466,7 @@ <h3>Quick search</h3> </div> <div class="footer"> © Copyright 2012, Emma. - Last updated on Dec 17, 2012 at 10:51. + Last updated on Dec 17, 2012 at 16:29. </div> </body> </html> \ No newline at end of file From 83cf6e8a169f9622eb5f0bdd9ee319299cf750f5 Mon Sep 17 00:00:00 2001 From: Lance Roggendorff <lance.roggendorff@myemma.com> Date: Mon, 17 Dec 2012 16:30:33 -0600 Subject: [PATCH 004/219] Update audience documentation. --- api/external/fields.html | 2 +- api/external/groups.html | 2 +- api/external/mailings.html | 2 +- api/external/members.html | 2 +- api/external/response.html | 2 +- api/external/searches.html | 4 ++-- api/external/triggers.html | 8 ++++---- api/external/webhooks.html | 2 +- genindex.html | 2 +- http-routingtable.html | 2 +- index.html | 2 +- member_search.html | 2 +- pagination.html | 2 +- php_get_member_example.html | 2 +- php_signup_example.html | 2 +- placeholders.html | 2 +- search.html | 2 +- webhooks.html | 2 +- 18 files changed, 22 insertions(+), 22 deletions(-) diff --git a/api/external/fields.html b/api/external/fields.html index 6a50305..abf03ef 100644 --- a/api/external/fields.html +++ b/api/external/fields.html @@ -374,7 +374,7 @@ <h3>Quick search</h3> </div> <div class="footer"> © Copyright 2012, Emma. - Last updated on Dec 17, 2012 at 16:29. + Last updated on Dec 17, 2012 at 16:30. </div> </body> </html> \ No newline at end of file diff --git a/api/external/groups.html b/api/external/groups.html index 243f271..7bef928 100644 --- a/api/external/groups.html +++ b/api/external/groups.html @@ -661,7 +661,7 @@ <h3>Quick search</h3> </div> <div class="footer"> © Copyright 2012, Emma. - Last updated on Dec 17, 2012 at 16:29. + Last updated on Dec 17, 2012 at 16:30. </div> </body> </html> \ No newline at end of file diff --git a/api/external/mailings.html b/api/external/mailings.html index 1d29f2b..db3cf3b 100644 --- a/api/external/mailings.html +++ b/api/external/mailings.html @@ -768,7 +768,7 @@ <h3>Quick search</h3> </div> <div class="footer"> © Copyright 2012, Emma. - Last updated on Dec 17, 2012 at 16:29. + Last updated on Dec 17, 2012 at 16:30. </div> </body> </html> \ No newline at end of file diff --git a/api/external/members.html b/api/external/members.html index 2d17726..40c5693 100644 --- a/api/external/members.html +++ b/api/external/members.html @@ -1143,7 +1143,7 @@ <h3>Quick search</h3> </div> <div class="footer"> © Copyright 2012, Emma. - Last updated on Dec 17, 2012 at 16:29. + Last updated on Dec 17, 2012 at 16:30. </div> </body> </html> \ No newline at end of file diff --git a/api/external/response.html b/api/external/response.html index 077e3d7..62fba70 100644 --- a/api/external/response.html +++ b/api/external/response.html @@ -978,7 +978,7 @@ <h3>Quick search</h3> </div> <div class="footer"> © Copyright 2012, Emma. - Last updated on Dec 17, 2012 at 16:29. + Last updated on Dec 17, 2012 at 16:30. </div> </body> </html> \ No newline at end of file diff --git a/api/external/searches.html b/api/external/searches.html index f377960..35a424e 100644 --- a/api/external/searches.html +++ b/api/external/searches.html @@ -172,7 +172,7 @@ <h1>Searches<a class="headerlink" href="#searches" title="Permalink to this head "name": "Test Search", "criteria": "[\"or\", [\"group\", \"eq\", \"Monthly Newsletter\"],[\"group\", \"eq\", \"Widget Buyers\"]]", "deleted_at": null, - "last_run_at": "@D:2012-12-17T16:29:10", + "last_run_at": "@D:2012-12-17T16:30:30", "active_count": 2, "account_id": 100 } @@ -470,7 +470,7 @@ <h3>Quick search</h3> </div> <div class="footer"> © Copyright 2012, Emma. - Last updated on Dec 17, 2012 at 16:29. + Last updated on Dec 17, 2012 at 16:30. </div> </body> </html> \ No newline at end of file diff --git a/api/external/triggers.html b/api/external/triggers.html index 6d43505..ee15616 100644 --- a/api/external/triggers.html +++ b/api/external/triggers.html @@ -121,7 +121,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": 203, "push_offset_units": "0:-14:0:0", - "start_ts": "@D:2012-12-17T16:29:08", + "start_ts": "@D:2012-12-17T16:30:28", "trigger_id": 100, "signups": null, "push_offset": "@I:-1209600.0", @@ -162,7 +162,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": null, "push_offset_units": "0:3:0:0", - "start_ts": "@D:2012-12-17T16:29:08", + "start_ts": "@D:2012-12-17T16:30:28", "trigger_id": 101, "signups": [ 1, @@ -299,7 +299,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": 203, "push_offset_units": "0:-14:0:0", - "start_ts": "@D:2012-12-17T16:29:08", + "start_ts": "@D:2012-12-17T16:30:28", "trigger_id": 100, "signups": null, "push_offset": "@I:-1209600.0", @@ -458,7 +458,7 @@ <h3>Quick search</h3> </div> <div class="footer"> © Copyright 2012, Emma. - Last updated on Dec 17, 2012 at 16:29. + Last updated on Dec 17, 2012 at 16:30. </div> </body> </html> \ No newline at end of file diff --git a/api/external/webhooks.html b/api/external/webhooks.html index bad3110..df15f5e 100644 --- a/api/external/webhooks.html +++ b/api/external/webhooks.html @@ -446,7 +446,7 @@ <h3>Quick search</h3> </div> <div class="footer"> © Copyright 2012, Emma. - Last updated on Dec 17, 2012 at 16:29. + Last updated on Dec 17, 2012 at 16:30. </div> </body> </html> \ No newline at end of file diff --git a/genindex.html b/genindex.html index f1c4d4e..a75fe07 100644 --- a/genindex.html +++ b/genindex.html @@ -108,7 +108,7 @@ <h3>Quick search</h3> </div> <div class="footer"> © Copyright 2012, Emma. - Last updated on Dec 17, 2012 at 16:29. + Last updated on Dec 17, 2012 at 16:30. </div> </body> </html> \ No newline at end of file diff --git a/http-routingtable.html b/http-routingtable.html index d429a26..9991d36 100644 --- a/http-routingtable.html +++ b/http-routingtable.html @@ -561,7 +561,7 @@ <h3>Quick search</h3> </div> <div class="footer"> © Copyright 2012, Emma. - Last updated on Dec 17, 2012 at 16:29. + Last updated on Dec 17, 2012 at 16:30. </div> </body> </html> \ No newline at end of file diff --git a/index.html b/index.html index 47cfeae..084e88a 100644 --- a/index.html +++ b/index.html @@ -284,7 +284,7 @@ <h3>Quick search</h3> </div> <div class="footer"> © Copyright 2012, Emma. - Last updated on Dec 17, 2012 at 16:29. + Last updated on Dec 17, 2012 at 16:30. </div> </body> </html> \ No newline at end of file diff --git a/member_search.html b/member_search.html index f0a66fc..fe12034 100644 --- a/member_search.html +++ b/member_search.html @@ -215,7 +215,7 @@ <h3>Quick search</h3> </div> <div class="footer"> © Copyright 2012, Emma. - Last updated on Dec 17, 2012 at 16:29. + Last updated on Dec 17, 2012 at 16:30. </div> </body> </html> \ No newline at end of file diff --git a/pagination.html b/pagination.html index 9cfa2c2..6c046d9 100644 --- a/pagination.html +++ b/pagination.html @@ -127,7 +127,7 @@ <h3>Quick search</h3> </div> <div class="footer"> © Copyright 2012, Emma. - Last updated on Dec 17, 2012 at 16:29. + Last updated on Dec 17, 2012 at 16:30. </div> </body> </html> \ No newline at end of file diff --git a/php_get_member_example.html b/php_get_member_example.html index 40c6d44..55f7cfb 100644 --- a/php_get_member_example.html +++ b/php_get_member_example.html @@ -142,7 +142,7 @@ <h3>Quick search</h3> </div> <div class="footer"> © Copyright 2012, Emma. - Last updated on Dec 17, 2012 at 16:29. + Last updated on Dec 17, 2012 at 16:30. </div> </body> </html> \ No newline at end of file diff --git a/php_signup_example.html b/php_signup_example.html index 81f05b6..74d3b52 100644 --- a/php_signup_example.html +++ b/php_signup_example.html @@ -164,7 +164,7 @@ <h3>Quick search</h3> </div> <div class="footer"> © Copyright 2012, Emma. - Last updated on Dec 17, 2012 at 16:29. + Last updated on Dec 17, 2012 at 16:30. </div> </body> </html> \ No newline at end of file diff --git a/placeholders.html b/placeholders.html index 12268a8..2ea317d 100644 --- a/placeholders.html +++ b/placeholders.html @@ -142,7 +142,7 @@ <h3>Quick search</h3> </div> <div class="footer"> © Copyright 2012, Emma. - Last updated on Dec 17, 2012 at 16:29. + Last updated on Dec 17, 2012 at 16:30. </div> </body> </html> \ No newline at end of file diff --git a/search.html b/search.html index 62e5bd3..0d32fd8 100644 --- a/search.html +++ b/search.html @@ -112,7 +112,7 @@ <h1 id="search-documentation">Search</h1> </div> <div class="footer"> © Copyright 2012, Emma. - Last updated on Dec 17, 2012 at 16:29. + Last updated on Dec 17, 2012 at 16:30. </div> </body> </html> \ No newline at end of file diff --git a/webhooks.html b/webhooks.html index fbb827d..e55e698 100644 --- a/webhooks.html +++ b/webhooks.html @@ -466,7 +466,7 @@ <h3>Quick search</h3> </div> <div class="footer"> © Copyright 2012, Emma. - Last updated on Dec 17, 2012 at 16:29. + Last updated on Dec 17, 2012 at 16:30. </div> </body> </html> \ No newline at end of file From 02bc6185e1cc25f61019699407278e7e22293f28 Mon Sep 17 00:00:00 2001 From: Lance Roggendorff <lance.roggendorff@myemma.com> Date: Mon, 17 Dec 2012 17:02:28 -0600 Subject: [PATCH 005/219] Update audience documentation. --- api/external/fields.html | 2 +- api/external/groups.html | 2 +- api/external/mailings.html | 2 +- api/external/members.html | 2 +- api/external/response.html | 2 +- api/external/searches.html | 4 ++-- api/external/triggers.html | 8 ++++---- api/external/webhooks.html | 2 +- genindex.html | 2 +- http-routingtable.html | 2 +- index.html | 2 +- member_search.html | 2 +- pagination.html | 2 +- php_get_member_example.html | 2 +- php_signup_example.html | 2 +- placeholders.html | 2 +- search.html | 2 +- searchindex.js | 2 +- webhooks.html | 2 +- 19 files changed, 23 insertions(+), 23 deletions(-) diff --git a/api/external/fields.html b/api/external/fields.html index abf03ef..512ec11 100644 --- a/api/external/fields.html +++ b/api/external/fields.html @@ -374,7 +374,7 @@ <h3>Quick search</h3> </div> <div class="footer"> © Copyright 2012, Emma. - Last updated on Dec 17, 2012 at 16:30. + Last updated on Dec 17, 2012 at 17:02. </div> </body> </html> \ No newline at end of file diff --git a/api/external/groups.html b/api/external/groups.html index 7bef928..2029d8e 100644 --- a/api/external/groups.html +++ b/api/external/groups.html @@ -661,7 +661,7 @@ <h3>Quick search</h3> </div> <div class="footer"> © Copyright 2012, Emma. - Last updated on Dec 17, 2012 at 16:30. + Last updated on Dec 17, 2012 at 17:02. </div> </body> </html> \ No newline at end of file diff --git a/api/external/mailings.html b/api/external/mailings.html index db3cf3b..7c770b4 100644 --- a/api/external/mailings.html +++ b/api/external/mailings.html @@ -768,7 +768,7 @@ <h3>Quick search</h3> </div> <div class="footer"> © Copyright 2012, Emma. - Last updated on Dec 17, 2012 at 16:30. + Last updated on Dec 17, 2012 at 17:02. </div> </body> </html> \ No newline at end of file diff --git a/api/external/members.html b/api/external/members.html index 40c5693..5502dd1 100644 --- a/api/external/members.html +++ b/api/external/members.html @@ -1143,7 +1143,7 @@ <h3>Quick search</h3> </div> <div class="footer"> © Copyright 2012, Emma. - Last updated on Dec 17, 2012 at 16:30. + Last updated on Dec 17, 2012 at 17:02. </div> </body> </html> \ No newline at end of file diff --git a/api/external/response.html b/api/external/response.html index 62fba70..eb397da 100644 --- a/api/external/response.html +++ b/api/external/response.html @@ -978,7 +978,7 @@ <h3>Quick search</h3> </div> <div class="footer"> © Copyright 2012, Emma. - Last updated on Dec 17, 2012 at 16:30. + Last updated on Dec 17, 2012 at 17:02. </div> </body> </html> \ No newline at end of file diff --git a/api/external/searches.html b/api/external/searches.html index 35a424e..2a22ee9 100644 --- a/api/external/searches.html +++ b/api/external/searches.html @@ -172,7 +172,7 @@ <h1>Searches<a class="headerlink" href="#searches" title="Permalink to this head "name": "Test Search", "criteria": "[\"or\", [\"group\", \"eq\", \"Monthly Newsletter\"],[\"group\", \"eq\", \"Widget Buyers\"]]", "deleted_at": null, - "last_run_at": "@D:2012-12-17T16:30:30", + "last_run_at": "@D:2012-12-17T17:02:25", "active_count": 2, "account_id": 100 } @@ -470,7 +470,7 @@ <h3>Quick search</h3> </div> <div class="footer"> © Copyright 2012, Emma. - Last updated on Dec 17, 2012 at 16:30. + Last updated on Dec 17, 2012 at 17:02. </div> </body> </html> \ No newline at end of file diff --git a/api/external/triggers.html b/api/external/triggers.html index ee15616..fe8913d 100644 --- a/api/external/triggers.html +++ b/api/external/triggers.html @@ -121,7 +121,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": 203, "push_offset_units": "0:-14:0:0", - "start_ts": "@D:2012-12-17T16:30:28", + "start_ts": "@D:2012-12-17T17:02:22", "trigger_id": 100, "signups": null, "push_offset": "@I:-1209600.0", @@ -162,7 +162,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": null, "push_offset_units": "0:3:0:0", - "start_ts": "@D:2012-12-17T16:30:28", + "start_ts": "@D:2012-12-17T17:02:22", "trigger_id": 101, "signups": [ 1, @@ -299,7 +299,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": 203, "push_offset_units": "0:-14:0:0", - "start_ts": "@D:2012-12-17T16:30:28", + "start_ts": "@D:2012-12-17T17:02:22", "trigger_id": 100, "signups": null, "push_offset": "@I:-1209600.0", @@ -458,7 +458,7 @@ <h3>Quick search</h3> </div> <div class="footer"> © Copyright 2012, Emma. - Last updated on Dec 17, 2012 at 16:30. + Last updated on Dec 17, 2012 at 17:02. </div> </body> </html> \ No newline at end of file diff --git a/api/external/webhooks.html b/api/external/webhooks.html index df15f5e..0983eeb 100644 --- a/api/external/webhooks.html +++ b/api/external/webhooks.html @@ -446,7 +446,7 @@ <h3>Quick search</h3> </div> <div class="footer"> © Copyright 2012, Emma. - Last updated on Dec 17, 2012 at 16:30. + Last updated on Dec 17, 2012 at 17:02. </div> </body> </html> \ No newline at end of file diff --git a/genindex.html b/genindex.html index a75fe07..26b8053 100644 --- a/genindex.html +++ b/genindex.html @@ -108,7 +108,7 @@ <h3>Quick search</h3> </div> <div class="footer"> © Copyright 2012, Emma. - Last updated on Dec 17, 2012 at 16:30. + Last updated on Dec 17, 2012 at 17:02. </div> </body> </html> \ No newline at end of file diff --git a/http-routingtable.html b/http-routingtable.html index 9991d36..647890c 100644 --- a/http-routingtable.html +++ b/http-routingtable.html @@ -561,7 +561,7 @@ <h3>Quick search</h3> </div> <div class="footer"> © Copyright 2012, Emma. - Last updated on Dec 17, 2012 at 16:30. + Last updated on Dec 17, 2012 at 17:02. </div> </body> </html> \ No newline at end of file diff --git a/index.html b/index.html index 084e88a..1bd4102 100644 --- a/index.html +++ b/index.html @@ -284,7 +284,7 @@ <h3>Quick search</h3> </div> <div class="footer"> © Copyright 2012, Emma. - Last updated on Dec 17, 2012 at 16:30. + Last updated on Dec 17, 2012 at 17:02. </div> </body> </html> \ No newline at end of file diff --git a/member_search.html b/member_search.html index fe12034..25047a4 100644 --- a/member_search.html +++ b/member_search.html @@ -215,7 +215,7 @@ <h3>Quick search</h3> </div> <div class="footer"> © Copyright 2012, Emma. - Last updated on Dec 17, 2012 at 16:30. + Last updated on Dec 17, 2012 at 17:02. </div> </body> </html> \ No newline at end of file diff --git a/pagination.html b/pagination.html index 6c046d9..9a12198 100644 --- a/pagination.html +++ b/pagination.html @@ -127,7 +127,7 @@ <h3>Quick search</h3> </div> <div class="footer"> © Copyright 2012, Emma. - Last updated on Dec 17, 2012 at 16:30. + Last updated on Dec 17, 2012 at 17:02. </div> </body> </html> \ No newline at end of file diff --git a/php_get_member_example.html b/php_get_member_example.html index 55f7cfb..3ee419f 100644 --- a/php_get_member_example.html +++ b/php_get_member_example.html @@ -142,7 +142,7 @@ <h3>Quick search</h3> </div> <div class="footer"> © Copyright 2012, Emma. - Last updated on Dec 17, 2012 at 16:30. + Last updated on Dec 17, 2012 at 17:02. </div> </body> </html> \ No newline at end of file diff --git a/php_signup_example.html b/php_signup_example.html index 74d3b52..c5ffcae 100644 --- a/php_signup_example.html +++ b/php_signup_example.html @@ -164,7 +164,7 @@ <h3>Quick search</h3> </div> <div class="footer"> © Copyright 2012, Emma. - Last updated on Dec 17, 2012 at 16:30. + Last updated on Dec 17, 2012 at 17:02. </div> </body> </html> \ No newline at end of file diff --git a/placeholders.html b/placeholders.html index 2ea317d..89d3b53 100644 --- a/placeholders.html +++ b/placeholders.html @@ -142,7 +142,7 @@ <h3>Quick search</h3> </div> <div class="footer"> © Copyright 2012, Emma. - Last updated on Dec 17, 2012 at 16:30. + Last updated on Dec 17, 2012 at 17:02. </div> </body> </html> \ No newline at end of file diff --git a/search.html b/search.html index 0d32fd8..9f6e5a9 100644 --- a/search.html +++ b/search.html @@ -112,7 +112,7 @@ <h1 id="search-documentation">Search</h1> </div> <div class="footer"> © Copyright 2012, Emma. - Last updated on Dec 17, 2012 at 16:30. + Last updated on Dec 17, 2012 at 17:02. </div> </body> </html> \ No newline at end of file diff --git a/searchindex.js b/searchindex.js index fd97bbe..7ccd31b 100644 --- a/searchindex.js +++ b/searchindex.js @@ -1 +1 @@ -Search.setIndex({objects:{"":{"/#account_id/members/#member_id/groups/remove":[8,1,1,"put--#account_id-members-#member_id-groups-remove"],"/#account_id/mailings/#mailing_id/winner/#winner_id":[9,2,1,"post--#account_id-mailings-#mailing_id-winner-#winner_id"],"/#account_id/response/#mailing_id/in_progress":[5,0,1,"get--#account_id-response-#mailing_id-in_progress"],"/#account_id/members/groups/remove":[8,1,1,"put--#account_id-members-groups-remove"],"/#account_id/mailings/#mailing_id/searches":[9,0,1,"get--#account_id-mailings-#mailing_id-searches"],"/#account_id/fields":[10,2,1,"post--#account_id-fields"],"/#account_id/members/#group_id/copy":[8,1,1,"put--#account_id-members-#group_id-copy"],"/#account_id/members/status":[8,1,1,"put--#account_id-members-status"],"/#account_id/response/#mailing_id/shares/overview":[5,0,1,"get--#account_id-response-#mailing_id-shares-overview"],"/#account_id/webhooks/events":[4,0,1,"get--#account_id-webhooks-events"],"/#account_id/members/#member_id/optout":[8,0,1,"get--#account_id-members-#member_id-optout"],"/#account_id/webhooks":[4,3,1,"delete--#account_id-webhooks"],"/#account_id/fields/#field_id":[10,3,1,"delete--#account_id-fields-#field_id"],"/#account_id/response/#mailing_id":[5,0,1,"get--#account_id-response-#mailing_id"],"/#account_id/groups/#member_group_id/members/remove":[13,3,1,"delete--#account_id-groups-#member_group_id-members-remove"],"/#account_id/searches":[7,2,1,"post--#account_id-searches"],"/#account_id/members/imports":[8,0,1,"get--#account_id-members-imports"],"/#account_id/forwards/#mailing_id/#member_id":[9,2,1,"post--#account_id-forwards-#mailing_id-#member_id"],"/#account_id/response/#mailing_id/customer_share_clicks":[5,0,1,"get--#account_id-response-#mailing_id-customer_share_clicks"],"/#account_id/mailings/#mailing_id/messages/#member_id":[9,0,1,"get--#account_id-mailings-#mailing_id-messages-#member_id"],"/#account_id/members/#member_id/mailings":[8,0,1,"get--#account_id-members-#member_id-mailings"],"/#account_id/groups/#from_group_id/#to_group_id/members/copy":[13,1,1,"put--#account_id-groups-#from_group_id-#to_group_id-members-copy"],"/#account_id/triggers":[14,2,1,"post--#account_id-triggers"],"/#account_id/triggers/#trigger_id":[14,3,1,"delete--#account_id-triggers-#trigger_id"],"/#account_id/members/delete":[8,1,1,"put--#account_id-members-delete"],"/#account_id/mailings/#mailing_id/groups":[9,0,1,"get--#account_id-mailings-#mailing_id-groups"],"/#account_id/response/#mailing_id/forwards":[5,0,1,"get--#account_id-response-#mailing_id-forwards"],"/#account_id/members/#member_id":[8,3,1,"delete--#account_id-members-#member_id"],"/#account_id/triggers/#trigger_id/mailings":[14,0,1,"get--#account_id-triggers-#trigger_id-mailings"],"/#account_id/searches/#search_id/members":[7,0,1,"get--#account_id-searches-#search_id-members"],"/#account_id/members/status/:status_from/to/:status_to":[8,1,1,"put--#account_id-members-status--status_from-to--status_to"],"/#account_id/response/#mailing_id/sends":[5,0,1,"get--#account_id-response-#mailing_id-sends"],"/#account_id/members":[8,3,1,"delete--#account_id-members"],"/#account_id/members/email/:email":[8,0,1,"get--#account_id-members-email--email"],"/#account_id/response/#mailing_id/links":[5,0,1,"get--#account_id-response-#mailing_id-links"],"/#account_id/searches/#search_id":[7,3,1,"delete--#account_id-searches-#search_id"],"/#account_id/members/imports/#import_id/members":[8,0,1,"get--#account_id-members-imports-#import_id-members"],"/#account_id/fields/#field_id/clear":[10,2,1,"post--#account_id-fields-#field_id-clear"],"/#account_id/groups/#member_group_id/members":[13,3,1,"delete--#account_id-groups-#member_group_id-members"],"/#account_id/members/imports/#import_id":[8,0,1,"get--#account_id-members-imports-#import_id"],"/#account_id/response":[5,0,1,"get--#account_id-response"],"/#account_id/response/#mailing_id/opens":[5,0,1,"get--#account_id-response-#mailing_id-opens"],"/#account_id/members/imports/delete":[8,3,1,"delete--#account_id-members-imports-delete"],"/#account_id/mailings":[9,0,1,"get--#account_id-mailings"],"/#account_id/mailings/cancel/#mailing_id":[9,3,1,"delete--#account_id-mailings-cancel-#mailing_id"],"/#account_id/mailings/validate":[9,2,1,"post--#account_id-mailings-validate"],"/#account_id/response/#mailing_id/deliveries":[5,0,1,"get--#account_id-response-#mailing_id-deliveries"],"/#account_id/mailings/#mailing_id/members":[9,0,1,"get--#account_id-mailings-#mailing_id-members"],"/#account_id/response/#share_id/customer_share":[5,0,1,"get--#account_id-response-#share_id-customer_share"],"/#account_id/webhooks/#webhook_id":[4,3,1,"delete--#account_id-webhooks-#webhook_id"],"/#account_id/members/add":[8,2,1,"post--#account_id-members-add"],"/#account_id/response/#mailing_id/optouts":[5,0,1,"get--#account_id-response-#mailing_id-optouts"],"/#account_id/response/#mailing_id/shares":[5,0,1,"get--#account_id-response-#mailing_id-shares"],"/#account_id/groups/#member_group_id":[13,3,1,"delete--#account_id-groups-#member_group_id"],"/#account_id/mailings/#mailing_id":[9,3,1,"delete--#account_id-mailings-#mailing_id"],"/#account_id/members/#member_id/groups":[8,3,1,"delete--#account_id-members-#member_id-groups"],"/#account_id/groups":[13,2,1,"post--#account_id-groups"],"/#account_id/response/#mailing_id/clicks":[5,0,1,"get--#account_id-response-#mailing_id-clicks"],"/#account_id/mailings/#mailing_id/headsup":[9,0,1,"get--#account_id-mailings-#mailing_id-headsup"],"/#account_id/response/#mailing_id/signups":[5,0,1,"get--#account_id-response-#mailing_id-signups"],"/#account_id/response/#mailing_id/customer_shares":[5,0,1,"get--#account_id-response-#mailing_id-customer_shares"]}},terms:{all:[0,1,4,5,8,9,10,11,12,13,14],code:[0,1,6,3],change_typ:8,queri:[0,2,4],month:[0,5,9,14],four:[0,5],mile:0,least:0,field_creat:[12,4],link_target:[5,9],content:[1,11,6,9,3],privat:1,specif:[8,9,4],friendli:5,send:[1,9,4,3,5],customer_share_click:5,those:[5,12],group_upd:[12,4],sent:[5,8,12,9,14],curl_clos:[1,6,3],brown:[7,8],digit:5,everi:0,string:[0,4,5,7,8,9,10,12,13,14],fals:[1,3,4,5,6,7,8,9,10,13,14],webhook:[1,12,4],mailing_status:9,trigger_id:14,webview_share_click:5,affect:[7,8],member_add:[12,4],create_mail:9,new_boolean:10,foo:0,level:1,group_delet:[12,4],list:[0,1,2,4,5,7,8,9,10,11,12,13,14],upload:8,iter:2,"try":8,item:2,plaintext_onli:[9,14],div:[4,5,7,8,9,10,13,14],survey_id:14,pleas:[1,8,11,9],prevent:2,work:[1,4],ten:0,sync:10,sign:[0,5,4],past:1,second:[0,7,14],follow:[0,1,4,5,7,9,11,13],further:1,durat:9,click:[0,4,5,7,8,12,14],append:2,even:10,what:1,hide:[4,5,7,8,9,10,13,14],appear:1,from_group_id:13,section:1,current:[8,12,9],delet:[1,4,7,8,9,10,12,13,14],"new":[1,4,5,7,8,9,10,11,13,14],net:[1,2,6,3],delivery_t:8,method:[5,8,13,4,9],can:[0,1,2,4,5,7,8,9,11,12,13],widget:[7,10,8,9,13],hash:0,datematch:0,displai:10,variat:9,gener:[0,8,12,14],onli:[5,8],here:[0,1,3,5,6,8],bodi:9,let:[1,4,10],address:[0,1,8,6,9],"17t16":[7,14],along:8,sinc:8,valu:[0,5,7,8,10,11],field_upd:[12,4],search:[0,1,9,7],survei:14,sender:[9,14],larger:2,queue:5,prior:9,action:[0,8],chang:[8,4],name_first:[1,3],campaign:5,newbi:5,appli:[7,14],prefer:0,myemma:[4,5,7,8,9,13],filenam:8,customer_shar:5,"boolean":[0,1,5,7,8,9,10,13,14],curlopt_postfield:[1,3],total:5,jone:[7,5,8,13],select:10,newslett:[7,8,13],describ:7,would:[0,1],regist:4,two:[0,5],next:[0,1],create_webhook:4,few:[5,8],call:[1,2,3,4,6,8,12],criteria:7,member_add_to_group:[12,4],type:[1,3,4,5,6,7,10,9,14],until:2,more:[0,4,7,8,9,13],peopl:5,relat:[1,8,11,9],about:[10,8,12,4,9],notic:8,thide:[4,5,7,8,9,10,13,14],flag:[5,7,8,10,9,14],exce:2,indic:8,examin:1,particular:[1,4,5,8,10,12,9],in_progress:5,origin:9,must:[0,7,13,10],none:9,endpoint:[1,4,5,7,8,9,10,13,14],join:[0,7],hour:0,setup:1,member_sinc:[0,5,7,8,9,13],uniqu:5,histori:8,soup:7,remain:[0,9],archiv:[5,9],member_optout:[12,4],drill:5,control:[1,11,9],quickstart:1,give:5,forward_mailing_id:5,email_domain:[0,5],share:[0,5,8,12,4],accept:[0,5,7,8,9,10,11,13,14],total_click:5,tag:[11,9],want:[1,12,13,5],occur:[7,12],some_numeric_field:0,delai:14,alwai:0,webhook_event_id:4,cours:1,end:[2,8],first_nam:[1,3,5,7,8,9,10,11,13,14],started_or_finish:[9,14],anoth:[9,13],get:[1,4,5,6,7,8,9,10,13,14],message_open:[12,4],html_bodi:[9,14],share_statu:5,push_offset:14,del_statu:5,tild:5,num_members_upd:8,simpl:0,chri:9,pizza:[7,8],map:0,autent:1,referenc:7,xxxx:6,sundai:0,membership:13,taco:[7,5,8,9,13],mai:12,multipl:[10,8],data:[1,3,4,5,10,12],welcom:11,add_onli:8,"short":0,json_encod:[1,3],optout:[5,8,12,13],num_dupl:8,favorit:10,correspond:[0,1],greet:11,predic:[0,1],issu:[1,10],"12t11":[7,5,8,9,13],combin:7,allow:[0,7,8],some_zipcode_field:0,signed_up:5,order:[5,10],michel:[8,9],mailing_nam:5,checkbox:10,fields_upd:8,over:2,becaus:12,buyer:[7,8,9,13],comma:[9,13],is_dis:14,vari:8,paramet:[2,4,5,7,8,9,10,13,14],widget_typ:10,style:[0,4,5,7,8,9,10,13,14],group:[0,1,3,4,7,8,9,12,13,14],curl_setopt:[1,6,3],how:[7,1,2,4],import_start:8,better:[13,14],platform:1,pend:[1,9],mailing_list:9,onc:9,mail:[0,1,4,5,8,11,12,9,14],hidden:13,main:1,might:[1,4],link_nam:[5,9],them:[8,9],"return":[0,1,4,5,7,8,9,10,12,13,14],greater:[0,8],thei:[0,9],food:10,timestamp:[0,5,12,9,10],spell:4,dai:0,auth:1,instead:[12,2,8],now:5,down:5,term:[0,1],alex:9,name:[0,4,5,7,8,9,10,11,13,14],edit:[7,1,14,10],curl_getinfo:[1,6,3],authent:[1,6,4,3],successufulli:4,separ:[1,9,13],each:[1,2,5,9,12,11,13],found:[8,9,4,14],updat:[4,7,8,9,10,12,13,14],mean:0,status:[8,9],domain:0,shortcut_nam:10,weight:[4,5,7,8,9,10,13,14],resum:9,individu:[1,8],hard:[0,5],last_nam:[1,3,5,7,8,9,10,11,13,14],"05t15":5,birthdai:[10,14],expect:1,year:[0,5,9,14],our:[1,11,12,4,14],happen:[1,4,5],extract:11,short_display_nam:10,special:[0,7,8,13],out:[0,1,4,5,7,8,10,13],variabl:[1,6,3],message_shar:[12,4],network:[5,12],private_api_kei:[1,6,3],check_multipl:10,categori:1,rel:0,print:6,correct:10,statist:8,benjamin:8,qualifi:11,insid:1,advanc:0,contain:[0,5,7,13,10,9],differ:0,standard:[5,9],status_from:8,base:[5,8],recipient_search:9,dictionari:8,put:[4,7,8,9,10,13,14],"13t23":[7,5,8],visit:11,could:1,omit:5,success:[7,1,9,13,3],filter:[0,1,7],search_id:7,pagin:[1,2],member_id:[5,7,8,9,12,13],summari:[1,5],assign:9,first:[0,1,10,5],oper:[0,1,7,14],rang:5,notifi:12,directli:0,curlopt_ssl_verifyp:[1,6,3],curl_init:[1,6,3],number:[5,2,13,3,10],placehold:[1,11],date:[0,5,8,10,11,14],unlik:9,alreadi:[10,9,13],done:8,plaintext_pref:[7,8,9,13],oppos:8,open:[0,3,4,5,6,7,8,12],payload:4,fanci:5,size:2,given:[0,8,9,4],"long":10,script:1,associ:[1,8,9,4,5],system:[8,12,4,14],messag:[4,5,8,12,11,9,14],attach:11,friend:11,curlinfo_http_cod:[1,6,3],shell:0,option:[0,5,7,8,9,10,13,14],especi:8,signup:[0,1,3,4,5,8,12,14],copi:[8,13],member_upd:[12,4],specifi:[0,2,7,8,10,11,9,14],curl_exec:[1,6,3],curlopt_httphead:[1,6,3],member_signup:[12,4],create_search:7,part:[0,9],enclos:11,than:[0,1,2,3,12,13],with_plaintext:9,"02t10":[5,8],"02t11":[5,8],"02t13":5,nathan:8,whenev:8,provid:[1,5,8,12,9,14],remov:[12,8,13,4],mailing_start:4,rate:2,structur:7,charact:9,greg:8,trackabl:11,were:5,minut:0,danc:1,error_count:[7,8,9,13],pre:[4,5,7,8,9,10,13,14],cleaner:1,sai:0,share_id:5,signup_form_id:[0,8,12,9,14],plaintext:[5,9,14],pass:[1,3],ani:[0,1,2,7,8,9],have:[0,5,8,12,9],tabl:5,seen:5,"null":[7,8,13,10,9,14],kevin:[9,14],signup_mail:0,caus:14,inform:[1,4,6,8,9,10,13],object_id:14,note:[1,8,9,4],also:[0,4,5,7,8,9,11,13],exampl:[0,1,3,5,6,7,11],take:[0,4],which:[0,1,4,8,10,12,9,14],some_number_field:0,singl:[0,1,3,4,5,8,10,12,13],excit:11,sure:1,delete_memb:13,normal:9,parent_mail:14,recipient_count:[5,9,14],previou:9,field_id:[10,12,14],last_run_at:7,most:14,pair:11,"class":[4,5,7,8,9,10,13,14],member_group_id:[8,9,13],mcconnel:[9,14],url:[1,3,4,5,6,12],mailing_finish:[12,4],clear:10,request:[1,2,3],doe:[0,5,7,8,10,13],member_status_upd:[12,4],declar:9,tech:4,determin:1,dataset:10,dow:0,recipi:9,"6db0cc7e6fdb2da589b65f29d90c96b6":9,show:[4,5,7,8,9,10,11,13,14],text:[10,11,12],radiu:0,syntax:[0,1,11,9],radio:10,font:[4,5,7,8,9,10,13,14],fine:9,find:[1,6,5],status_to:8,toast:[7,5,8,13],access:[1,5],giant:12,just:[0,9],pretti:8,column_ord:10,explain:[0,1],winner:9,activ:[1,5,7,8,13,9],figur:1,should:[1,2,3,7,8,11,9],templat:[11,14],share_count:5,count:[1,2,3,5],variou:[8,13],confirmed_opt_in:[7,8,9,13],familiar:1,express:0,account:[1,4,5,7,8,10,13,14],cannot:[8,9,4],progress:9,report:[10,8],requir:[1,7,8,10,11,9],object:[5,13],favorite_food:[5,7,8,13,10,9],bar:0,organ:1,include_archiv:[5,9],"public":1,"default":[5,11,13,4,9],ref_member_id:5,message_share_click:[12,4],through:[1,8,4],where:[0,1,8,11,7],view:1,set:[0,1,2,3,6,8,9,12,13],link_id:[0,5,12,9,14],see:[7,1,8],result:[0,1,2,5,8,9],respons:[0,1,2,4,5,7,8,9,10,13,14],fail:[5,9,4],themselv:2,member_field:[0,7],xxxxx:6,subject:[8,12,9,14],statu:[1,4,5,7,8,9,12,13],fancyonion:11,kei:[0,1,11,4],is_schedul:9,message_forward:[12,4],databas:8,user:[0,8,9,13],last_modified_at:[7,8,9,13],addresse:5,written:1,between:[0,7,2],"import":[1,8,12,4,10],subscript:[1,3],entiti:1,curlopt_url:[1,6,3],email:[0,1,3,5,6,7,8,9,13],wide:14,extend:1,numer:10,http404:[4,5,7,8,9,10,13,14],job:13,entir:[0,8],share_click:5,to_group_id:13,curlopt_returntransf:[1,6,3],addit:[0,1,8,9,11,13],member_remove_from_group:[12,4],send_start:[0,9,14],protect:1,accident:2,last:[0,5,10],delimit:5,pertain:5,message_click:[12,4],curlopt_post:[1,3],audienc:[1,8,9],mang:0,http500:14,seri:5,com:[4,5,6,7,8,9,11,13],zip_code_field:0,"03t15":[7,5,8,13],point:1,toni:[7,8],overview:[0,1,11,12,5],period:1,winner_id:9,colon:[7,11],optout_count:[7,8,9,13],suppli:9,cancel:9,tuesdai:0,duplic:5,quit:[5,8],user_id:4,recur:14,headsup:9,addition:[1,2],due:5,been:[1,8,10,5],mark:[8,9],whom:9,tshow:[4,5,7,8,9,10,13,14],trigger:[1,4,5,7,8,9,10,12,13,14],unsubscrib:0,treat:8,interest:[10,4],basic:[0,1,4,8,13,14],monthli:[7,8,13],blob:4,mailing_mailing_id:5,mailing_id:[0,5,8,12,9,14],fire:[8,4,14],xxx:[1,3],argument:[0,5],link_ord:[5,9],input:1,present:7,clicked_uniqu:5,"case":[1,8],look:[1,14,10],frozen:9,easier:12,email_error:[7,8,9,13],defin:[0,10,8,9],"while":0,outcom:5,abov:[0,1,8,7],error:[1,3,6,8,10,13],loop:8,opt:[0,4,5,7,8,13],readi:9,deliv:5,recipient_group:9,equal:0,itself:0,new_statu:12,webhook_id:4,recipient_memb:9,perform:8,make:[1,12,6,10],belong:[0,8,4],same:4,check:[8,6,9],member:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14],handl:1,html:9,split:9,document:[1,11,12],complet:[1,3,4,6,8,9],week:0,finish:[5,12,4],http:[1,2,3,4,5,6,11,9],href:[4,5,7,8,9,10,13,14],nest:0,someon:4,rais:[4,5,7,8,9,10,13,14],initi:[10,9],php:[1,6,3],bob:[7,5],recent:1,kept:11,center:0,min:5,well:5,inherit:9,person:9,mailing_typ:[9,14],without:0,command:1,thi:[0,1,4,5,7,8,9,10,12,13,14],undefin:0,http_code:[1,6,3],latest:11,construct:[0,7,9],identifi:8,paus:9,execut:[1,3],less:0,resp:[4,5,7,8,9,10,13,14],"_post":[1,3],against:0,aspect:13,recipient_email:9,source_filenam:8,yet:5,smith:[7,5,8,9,13],"12t09":[7,8],display_nam:10,easi:[10,12],"01t00":8,had:0,littl:1,blog:4,add:[12,1,8,13,3],other:[1,8,9,3,5],curlopt_userpwd:[1,6,3],import_finish:[8,12,4],schedul:9,els:[1,6,3],save:7,match:[0,7],build:1,sanit:1,applic:[1,6,3],account_id:[1,3,4,5,6,7,8,9,10,12,13,14],disposit:1,crud:[8,13,14],print_r:[6,3],mailing_statu:[9,14],know:[5,4],background:13,parent_mailing_id:[9,14],bit:1,insert:11,emma:[1,5,7,8,9,12,13],like:1,onion:11,deprec:4,arbitrari:8,manual:9,integ:[1,8,14,10,5],public_kei:4,api:[1,2,6,12,3],either:[0,5,7],bunch:0,output:9,group_id:[1,8,12,3],soft:[0,5],manag:[0,1,13,4],import_id:[8,12],www:[5,9],old:7,deal:[8,13],captur:1,arrai:[0,1,3,5,6,7,8,9,10,12,13,14],some:[1,11,5],field_delet:[12,4],certain:12,intern:10,sampl:[1,4,5,7,8,9,10,13,14],elaps:[2,9],home:11,deleted_at:[7,8,13,10,9,14],some_string_field:0,librari:11,bounce_count:[7,8,9,13],confirm:8,broad:12,per:5,send_finish:[9,14],larg:[0,2],condit:7,three:9,network_cod:12,localhost:9,refer:[5,7,8,13,10,9],with_html_bodi:9,who:[0,5],bold:[4,5,7,8,9,10,13,14],event_typ:14,inspect:1,usag:[1,8,12],num_members_ad:8,fulli:11,from:[1,4,8,9,12,13,14],post:[1,3,4,7,8,9,10,12,13,14],group_creat:[12,4],gladi:[7,5,8,13],actual:5,zip:0,groups_upd:8,column:10,page:2,includ:[1,5,7,8,9,10,13],webview:9,disabl:[9,14],block:[1,2],yyyi:5,member_data:[1,3],glob:0,bounc:[0,5],within:0,encod:[9,4],delivery_typ:[5,8],compos:0,webview_shar:5,field_typ:10,active_count:[7,8,9,13],public_webview_url:9,pivot:5,your:[1,4,5,7,8,9,10,13],websit:11,span:[4,5,7,8,9,10,13,14],wai:[1,12],area:1,overus:2,group_nam:[8,12,13,9],support:12,unique_click:5,json:[0,1,3,4,6,7],fast:8,custom:[5,8,11,10],avail:[0,11,4],start:[1,2,8,4],interfac:12,send_at:[9,14],exceed:2,"var":3,interv:[0,14],deliveri:5,head:[1,6,9,3],form:[1,3,4,6,8,10,14],enough:2,forc:1,forward:[0,4,5,8,12,9],"31st":0,group_typ:[8,9,13],push_offset_unit:14,link:[0,4,5,11,9,14],line:[1,5],realli:1,"true":[0,1,2,3,4,6,7,8,9,10,13,14],archived_t:[9,14],name_last:[1,3],info:4,pull:2,made:1,possibl:[5,8,12],whether:8,maximum:2,tell:12,http403:9,record:[0,7,8],below:[0,1,8,12],http400:[7,8,9],limit:[5,2,8,9],some_array_field:0,otherwis:[10,8],start_t:14,mta:5,connect:[6,3],notif:9,creat:[4,5,7,9,10,12,13,14],"int":5,retriev:[7,1,2,8,9],email_us:[0,5],repres:5,exist:[0,4,5,7,8,10,13],behavior:11,curl:[1,6],lentil:7,probabl:14,echo:[1,3],successfulli:[5,8,9],mailing_subject:12,grp:13,todo:11,when:[8,12,4,9],detail:[1,4,7,8,9,10,13],invalid:[7,8,9],event:[4,7,8,13,12,9,14],field:[0,1,3,4,5,7,8,9,10,11,12,13,14],valid:[5,8,9,13],futur:1,num_skip:8,test:[5,6,7,13,9,14],ignor:8,you:[0,1,2,4,5,7,8,9,10,11,12,13],member_delet:[12,4],member_status_id:[7,5,8,9,13],public_api_kei:[1,6,3],stat:[5,9],claus:[0,7],event_nam:[12,4],e2ma:[1,2,6,3],error_messag:8,param:[9,4],app_messag:[1,3],ella:8,bulk:[1,8],receiv:[0,2,5,8,12,9],heads_up_email:9,longer:9,descript:[4,14],portion:0,opted_out:5,time:[1,2,8,13,5],reply_to:[9,14],resource_url:12,hello:[11,9,14]},objtypes:{"0":"http:get","1":"http:put","2":"http:post","3":"http:delete"},titles:["Search Syntax","Emma API","Pagination","PHP Signup Example","Webhooks","Response","PHP Get Member By Email Example","Searches","Members","Mailings","Fields","Placeholder Syntax","Webhook Usage","Groups","Triggers"],objnames:{"0":["http","get","HTTP get"],"1":["http","put","HTTP put"],"2":["http","post","HTTP post"],"3":["http","delete","HTTP delete"]},filenames:["member_search","index","pagination","php_signup_example","api/external/webhooks","api/external/response","php_get_member_example","api/external/searches","api/external/members","api/external/mailings","api/external/fields","placeholders","webhooks","api/external/groups","api/external/triggers"]}) \ No newline at end of file +Search.setIndex({objects:{"":{"/#account_id/members/#member_id/groups/remove":[8,1,1,"put--#account_id-members-#member_id-groups-remove"],"/#account_id/mailings/#mailing_id/winner/#winner_id":[9,2,1,"post--#account_id-mailings-#mailing_id-winner-#winner_id"],"/#account_id/response/#mailing_id/in_progress":[5,0,1,"get--#account_id-response-#mailing_id-in_progress"],"/#account_id/members/groups/remove":[8,1,1,"put--#account_id-members-groups-remove"],"/#account_id/mailings/#mailing_id/searches":[9,0,1,"get--#account_id-mailings-#mailing_id-searches"],"/#account_id/fields":[10,2,1,"post--#account_id-fields"],"/#account_id/members/#group_id/copy":[8,1,1,"put--#account_id-members-#group_id-copy"],"/#account_id/members/status":[8,1,1,"put--#account_id-members-status"],"/#account_id/response/#mailing_id/shares/overview":[5,0,1,"get--#account_id-response-#mailing_id-shares-overview"],"/#account_id/webhooks/events":[4,0,1,"get--#account_id-webhooks-events"],"/#account_id/members/#member_id/optout":[8,0,1,"get--#account_id-members-#member_id-optout"],"/#account_id/webhooks":[4,3,1,"delete--#account_id-webhooks"],"/#account_id/fields/#field_id":[10,3,1,"delete--#account_id-fields-#field_id"],"/#account_id/response/#mailing_id":[5,0,1,"get--#account_id-response-#mailing_id"],"/#account_id/groups/#member_group_id/members/remove":[13,3,1,"delete--#account_id-groups-#member_group_id-members-remove"],"/#account_id/searches":[7,2,1,"post--#account_id-searches"],"/#account_id/members/imports":[8,0,1,"get--#account_id-members-imports"],"/#account_id/forwards/#mailing_id/#member_id":[9,2,1,"post--#account_id-forwards-#mailing_id-#member_id"],"/#account_id/response/#mailing_id/customer_share_clicks":[5,0,1,"get--#account_id-response-#mailing_id-customer_share_clicks"],"/#account_id/mailings/#mailing_id/messages/#member_id":[9,0,1,"get--#account_id-mailings-#mailing_id-messages-#member_id"],"/#account_id/members/#member_id/mailings":[8,0,1,"get--#account_id-members-#member_id-mailings"],"/#account_id/groups/#from_group_id/#to_group_id/members/copy":[13,1,1,"put--#account_id-groups-#from_group_id-#to_group_id-members-copy"],"/#account_id/triggers":[14,2,1,"post--#account_id-triggers"],"/#account_id/triggers/#trigger_id":[14,3,1,"delete--#account_id-triggers-#trigger_id"],"/#account_id/members/delete":[8,1,1,"put--#account_id-members-delete"],"/#account_id/mailings/#mailing_id/groups":[9,0,1,"get--#account_id-mailings-#mailing_id-groups"],"/#account_id/response/#mailing_id/forwards":[5,0,1,"get--#account_id-response-#mailing_id-forwards"],"/#account_id/members/#member_id":[8,3,1,"delete--#account_id-members-#member_id"],"/#account_id/triggers/#trigger_id/mailings":[14,0,1,"get--#account_id-triggers-#trigger_id-mailings"],"/#account_id/searches/#search_id/members":[7,0,1,"get--#account_id-searches-#search_id-members"],"/#account_id/members/status/:status_from/to/:status_to":[8,1,1,"put--#account_id-members-status--status_from-to--status_to"],"/#account_id/response/#mailing_id/sends":[5,0,1,"get--#account_id-response-#mailing_id-sends"],"/#account_id/members":[8,3,1,"delete--#account_id-members"],"/#account_id/members/email/:email":[8,0,1,"get--#account_id-members-email--email"],"/#account_id/response/#mailing_id/links":[5,0,1,"get--#account_id-response-#mailing_id-links"],"/#account_id/searches/#search_id":[7,3,1,"delete--#account_id-searches-#search_id"],"/#account_id/members/imports/#import_id/members":[8,0,1,"get--#account_id-members-imports-#import_id-members"],"/#account_id/fields/#field_id/clear":[10,2,1,"post--#account_id-fields-#field_id-clear"],"/#account_id/groups/#member_group_id/members":[13,3,1,"delete--#account_id-groups-#member_group_id-members"],"/#account_id/members/imports/#import_id":[8,0,1,"get--#account_id-members-imports-#import_id"],"/#account_id/response":[5,0,1,"get--#account_id-response"],"/#account_id/response/#mailing_id/opens":[5,0,1,"get--#account_id-response-#mailing_id-opens"],"/#account_id/members/imports/delete":[8,3,1,"delete--#account_id-members-imports-delete"],"/#account_id/mailings":[9,0,1,"get--#account_id-mailings"],"/#account_id/mailings/cancel/#mailing_id":[9,3,1,"delete--#account_id-mailings-cancel-#mailing_id"],"/#account_id/mailings/validate":[9,2,1,"post--#account_id-mailings-validate"],"/#account_id/response/#mailing_id/deliveries":[5,0,1,"get--#account_id-response-#mailing_id-deliveries"],"/#account_id/mailings/#mailing_id/members":[9,0,1,"get--#account_id-mailings-#mailing_id-members"],"/#account_id/response/#share_id/customer_share":[5,0,1,"get--#account_id-response-#share_id-customer_share"],"/#account_id/webhooks/#webhook_id":[4,3,1,"delete--#account_id-webhooks-#webhook_id"],"/#account_id/members/add":[8,2,1,"post--#account_id-members-add"],"/#account_id/response/#mailing_id/optouts":[5,0,1,"get--#account_id-response-#mailing_id-optouts"],"/#account_id/response/#mailing_id/shares":[5,0,1,"get--#account_id-response-#mailing_id-shares"],"/#account_id/groups/#member_group_id":[13,3,1,"delete--#account_id-groups-#member_group_id"],"/#account_id/mailings/#mailing_id":[9,3,1,"delete--#account_id-mailings-#mailing_id"],"/#account_id/members/#member_id/groups":[8,3,1,"delete--#account_id-members-#member_id-groups"],"/#account_id/groups":[13,2,1,"post--#account_id-groups"],"/#account_id/response/#mailing_id/clicks":[5,0,1,"get--#account_id-response-#mailing_id-clicks"],"/#account_id/mailings/#mailing_id/headsup":[9,0,1,"get--#account_id-mailings-#mailing_id-headsup"],"/#account_id/response/#mailing_id/signups":[5,0,1,"get--#account_id-response-#mailing_id-signups"],"/#account_id/response/#mailing_id/customer_shares":[5,0,1,"get--#account_id-response-#mailing_id-customer_shares"]}},terms:{all:[0,1,4,5,8,9,10,11,12,13,14],code:[0,1,6,3],change_typ:8,queri:[0,2,4],month:[0,5,9,14],four:[0,5],mile:0,least:0,field_creat:[12,4],link_target:[5,9],content:[1,11,6,9,3],privat:1,specif:[8,9,4],friendli:5,send:[1,9,4,3,5],customer_share_click:5,those:[5,12],group_upd:[12,4],sent:[5,8,12,9,14],curl_clos:[1,6,3],brown:[7,8],digit:5,everi:0,string:[0,4,5,7,8,9,10,12,13,14],fals:[1,3,4,5,6,7,8,9,10,13,14],webhook:[1,12,4],mailing_status:9,trigger_id:14,webview_share_click:5,affect:[7,8],member_add:[12,4],create_mail:9,new_boolean:10,foo:0,level:1,group_delet:[12,4],list:[0,1,2,4,5,7,8,9,10,11,12,13,14],upload:8,iter:2,"try":8,item:2,plaintext_onli:[9,14],div:[4,5,7,8,9,10,13,14],survey_id:14,pleas:[1,8,11,9],prevent:2,work:[1,4],ten:0,sync:10,sign:[0,5,4],past:1,second:[0,7,14],follow:[0,1,4,5,7,9,11,13],further:1,durat:9,click:[0,4,5,7,8,12,14],append:2,even:10,what:1,hide:[4,5,7,8,9,10,13,14],appear:1,from_group_id:13,section:1,current:[8,12,9],delet:[1,4,7,8,9,10,12,13,14],"new":[1,4,5,7,8,9,10,11,13,14],net:[1,2,6,3],delivery_t:8,method:[5,8,13,4,9],can:[0,1,2,4,5,7,8,9,11,12,13],widget:[7,10,8,9,13],hash:0,datematch:0,displai:10,variat:9,gener:[0,8,12,14],onli:[5,8],here:[0,1,3,5,6,8],bodi:9,let:[1,4,10],address:[0,1,8,6,9],"17t17":[7,14],along:8,sinc:8,valu:[0,5,7,8,10,11],field_upd:[12,4],search:[0,1,9,7],survei:14,sender:[9,14],larger:2,queue:5,prior:9,action:[0,8],chang:[8,4],name_first:[1,3],campaign:5,newbi:5,appli:[7,14],prefer:0,myemma:[4,5,7,8,9,13],filenam:8,customer_shar:5,"boolean":[0,1,5,7,8,9,10,13,14],curlopt_postfield:[1,3],total:5,jone:[7,5,8,13],select:10,newslett:[7,8,13],describ:7,would:[0,1],regist:4,two:[0,5],next:[0,1],create_webhook:4,few:[5,8],call:[1,2,3,4,6,8,12],criteria:7,member_add_to_group:[12,4],type:[1,3,4,5,6,7,10,9,14],until:2,more:[0,4,7,8,9,13],peopl:5,relat:[1,8,11,9],about:[10,8,12,4,9],notic:8,thide:[4,5,7,8,9,10,13,14],flag:[5,7,8,10,9,14],exce:2,indic:8,examin:1,particular:[1,4,5,8,10,12,9],in_progress:5,origin:9,must:[0,7,13,10],none:9,endpoint:[1,4,5,7,8,9,10,13,14],join:[0,7],hour:0,setup:1,member_sinc:[0,5,7,8,9,13],uniqu:5,histori:8,soup:7,remain:[0,9],archiv:[5,9],member_optout:[12,4],drill:5,control:[1,11,9],quickstart:1,give:5,forward_mailing_id:5,email_domain:[0,5],share:[0,5,8,12,4],accept:[0,5,7,8,9,10,11,13,14],total_click:5,tag:[11,9],want:[1,12,13,5],occur:[7,12],some_numeric_field:0,delai:14,alwai:0,webhook_event_id:4,cours:1,end:[2,8],first_nam:[1,3,5,7,8,9,10,11,13,14],started_or_finish:[9,14],anoth:[9,13],get:[1,4,5,6,7,8,9,10,13,14],message_open:[12,4],html_bodi:[9,14],share_statu:5,push_offset:14,del_statu:5,tild:5,num_members_upd:8,simpl:0,chri:9,pizza:[7,8],map:0,autent:1,referenc:7,xxxx:6,sundai:0,membership:13,taco:[7,5,8,9,13],mai:12,multipl:[10,8],data:[1,3,4,5,10,12],welcom:11,add_onli:8,"short":0,json_encod:[1,3],optout:[5,8,12,13],num_dupl:8,favorit:10,correspond:[0,1],greet:11,predic:[0,1],issu:[1,10],"12t11":[7,5,8,9,13],combin:7,allow:[0,7,8],some_zipcode_field:0,signed_up:5,order:[5,10],michel:[8,9],mailing_nam:5,checkbox:10,fields_upd:8,over:2,becaus:12,buyer:[7,8,9,13],comma:[9,13],is_dis:14,vari:8,paramet:[2,4,5,7,8,9,10,13,14],widget_typ:10,style:[0,4,5,7,8,9,10,13,14],group:[0,1,3,4,7,8,9,12,13,14],curl_setopt:[1,6,3],how:[7,1,2,4],import_start:8,better:[13,14],platform:1,pend:[1,9],mailing_list:9,onc:9,mail:[0,1,4,5,8,11,12,9,14],hidden:13,main:1,might:[1,4],link_nam:[5,9],them:[8,9],"return":[0,1,4,5,7,8,9,10,12,13,14],greater:[0,8],thei:[0,9],food:10,timestamp:[0,5,12,9,10],spell:4,dai:0,auth:1,instead:[12,2,8],now:5,down:5,term:[0,1],alex:9,name:[0,4,5,7,8,9,10,11,13,14],edit:[7,1,14,10],curl_getinfo:[1,6,3],authent:[1,6,4,3],successufulli:4,separ:[1,9,13],each:[1,2,5,9,12,11,13],found:[8,9,4,14],updat:[4,7,8,9,10,12,13,14],mean:0,status:[8,9],domain:0,shortcut_nam:10,weight:[4,5,7,8,9,10,13,14],resum:9,individu:[1,8],hard:[0,5],last_nam:[1,3,5,7,8,9,10,11,13,14],"05t15":5,birthdai:[10,14],expect:1,year:[0,5,9,14],our:[1,11,12,4,14],happen:[1,4,5],extract:11,short_display_nam:10,special:[0,7,8,13],out:[0,1,4,5,7,8,10,13],variabl:[1,6,3],message_shar:[12,4],network:[5,12],private_api_kei:[1,6,3],check_multipl:10,categori:1,rel:0,print:6,correct:10,statist:8,benjamin:8,qualifi:11,insid:1,advanc:0,contain:[0,5,7,13,10,9],differ:0,standard:[5,9],status_from:8,base:[5,8],recipient_search:9,dictionari:8,put:[4,7,8,9,10,13,14],"13t23":[7,5,8],visit:11,could:1,omit:5,success:[7,1,9,13,3],filter:[0,1,7],search_id:7,pagin:[1,2],member_id:[5,7,8,9,12,13],summari:[1,5],assign:9,first:[0,1,10,5],oper:[0,1,7,14],rang:5,notifi:12,directli:0,curlopt_ssl_verifyp:[1,6,3],curl_init:[1,6,3],number:[5,2,13,3,10],placehold:[1,11],date:[0,5,8,10,11,14],unlik:9,alreadi:[10,9,13],done:8,plaintext_pref:[7,8,9,13],oppos:8,open:[0,3,4,5,6,7,8,12],payload:4,fanci:5,size:2,given:[0,8,9,4],"long":10,script:1,associ:[1,8,9,4,5],system:[8,12,4,14],messag:[4,5,8,12,11,9,14],attach:11,friend:11,curlinfo_http_cod:[1,6,3],shell:0,option:[0,5,7,8,9,10,13,14],especi:8,signup:[0,1,3,4,5,8,12,14],copi:[8,13],member_upd:[12,4],specifi:[0,2,7,8,10,11,9,14],curl_exec:[1,6,3],curlopt_httphead:[1,6,3],member_signup:[12,4],create_search:7,part:[0,9],enclos:11,than:[0,1,2,3,12,13],with_plaintext:9,"02t10":[5,8],"02t11":[5,8],"02t13":5,nathan:8,whenev:8,provid:[1,5,8,12,9,14],remov:[12,8,13,4],mailing_start:4,rate:2,structur:7,charact:9,greg:8,trackabl:11,were:5,minut:0,danc:1,error_count:[7,8,9,13],pre:[4,5,7,8,9,10,13,14],cleaner:1,sai:0,share_id:5,signup_form_id:[0,8,12,9,14],plaintext:[5,9,14],pass:[1,3],ani:[0,1,2,7,8,9],have:[0,5,8,12,9],tabl:5,seen:5,"null":[7,8,13,10,9,14],kevin:[9,14],signup_mail:0,caus:14,inform:[1,4,6,8,9,10,13],object_id:14,note:[1,8,9,4],also:[0,4,5,7,8,9,11,13],exampl:[0,1,3,5,6,7,11],take:[0,4],which:[0,1,4,8,10,12,9,14],some_number_field:0,singl:[0,1,3,4,5,8,10,12,13],excit:11,sure:1,delete_memb:13,normal:9,parent_mail:14,recipient_count:[5,9,14],previou:9,field_id:[10,12,14],last_run_at:7,most:14,pair:11,"class":[4,5,7,8,9,10,13,14],member_group_id:[8,9,13],mcconnel:[9,14],url:[1,3,4,5,6,12],mailing_finish:[12,4],clear:10,request:[1,2,3],doe:[0,5,7,8,10,13],member_status_upd:[12,4],declar:9,tech:4,determin:1,dataset:10,dow:0,recipi:9,"6db0cc7e6fdb2da589b65f29d90c96b6":9,show:[4,5,7,8,9,10,11,13,14],text:[10,11,12],radiu:0,syntax:[0,1,11,9],radio:10,font:[4,5,7,8,9,10,13,14],fine:9,find:[1,6,5],status_to:8,toast:[7,5,8,13],access:[1,5],giant:12,just:[0,9],pretti:8,column_ord:10,explain:[0,1],winner:9,activ:[1,5,7,8,13,9],figur:1,should:[1,2,3,7,8,11,9],templat:[11,14],share_count:5,count:[1,2,3,5],variou:[8,13],confirmed_opt_in:[7,8,9,13],familiar:1,express:0,account:[1,4,5,7,8,10,13,14],cannot:[8,9,4],progress:9,report:[10,8],requir:[1,7,8,10,11,9],object:[5,13],favorite_food:[5,7,8,13,10,9],bar:0,organ:1,include_archiv:[5,9],"public":1,"default":[5,11,13,4,9],ref_member_id:5,message_share_click:[12,4],through:[1,8,4],where:[0,1,8,11,7],view:1,set:[0,1,2,3,6,8,9,12,13],link_id:[0,5,12,9,14],see:[7,1,8],result:[0,1,2,5,8,9],respons:[0,1,2,4,5,7,8,9,10,13,14],fail:[5,9,4],themselv:2,member_field:[0,7],xxxxx:6,subject:[8,12,9,14],statu:[1,4,5,7,8,9,12,13],fancyonion:11,kei:[0,1,11,4],is_schedul:9,message_forward:[12,4],databas:8,user:[0,8,9,13],last_modified_at:[7,8,9,13],addresse:5,written:1,between:[0,7,2],"import":[1,8,12,4,10],subscript:[1,3],entiti:1,curlopt_url:[1,6,3],email:[0,1,3,5,6,7,8,9,13],wide:14,extend:1,numer:10,http404:[4,5,7,8,9,10,13,14],job:13,entir:[0,8],share_click:5,to_group_id:13,curlopt_returntransf:[1,6,3],addit:[0,1,8,9,11,13],member_remove_from_group:[12,4],send_start:[0,9,14],protect:1,accident:2,last:[0,5,10],delimit:5,pertain:5,message_click:[12,4],curlopt_post:[1,3],audienc:[1,8,9],mang:0,http500:14,seri:5,com:[4,5,6,7,8,9,11,13],zip_code_field:0,"03t15":[7,5,8,13],point:1,toni:[7,8],overview:[0,1,11,12,5],period:1,winner_id:9,colon:[7,11],optout_count:[7,8,9,13],suppli:9,cancel:9,tuesdai:0,duplic:5,quit:[5,8],user_id:4,recur:14,headsup:9,addition:[1,2],due:5,been:[1,8,10,5],mark:[8,9],whom:9,tshow:[4,5,7,8,9,10,13,14],trigger:[1,4,5,7,8,9,10,12,13,14],unsubscrib:0,treat:8,interest:[10,4],basic:[0,1,4,8,13,14],monthli:[7,8,13],blob:4,mailing_mailing_id:5,mailing_id:[0,5,8,12,9,14],fire:[8,4,14],xxx:[1,3],argument:[0,5],link_ord:[5,9],input:1,present:7,clicked_uniqu:5,"case":[1,8],look:[1,14,10],frozen:9,easier:12,email_error:[7,8,9,13],defin:[0,10,8,9],"while":0,outcom:5,abov:[0,1,8,7],error:[1,3,6,8,10,13],loop:8,opt:[0,4,5,7,8,13],readi:9,deliv:5,recipient_group:9,equal:0,itself:0,new_statu:12,webhook_id:4,recipient_memb:9,perform:8,make:[1,12,6,10],belong:[0,8,4],same:4,check:[8,6,9],member:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14],handl:1,html:9,split:9,document:[1,11,12],complet:[1,3,4,6,8,9],week:0,finish:[5,12,4],http:[1,2,3,4,5,6,11,9],href:[4,5,7,8,9,10,13,14],nest:0,someon:4,rais:[4,5,7,8,9,10,13,14],initi:[10,9],php:[1,6,3],bob:[7,5],recent:1,kept:11,center:0,min:5,well:5,inherit:9,person:9,mailing_typ:[9,14],without:0,command:1,thi:[0,1,4,5,7,8,9,10,12,13,14],undefin:0,http_code:[1,6,3],latest:11,construct:[0,7,9],identifi:8,paus:9,execut:[1,3],less:0,resp:[4,5,7,8,9,10,13,14],"_post":[1,3],against:0,aspect:13,recipient_email:9,source_filenam:8,yet:5,smith:[7,5,8,9,13],"12t09":[7,8],display_nam:10,easi:[10,12],"01t00":8,had:0,littl:1,blog:4,add:[12,1,8,13,3],other:[1,8,9,3,5],curlopt_userpwd:[1,6,3],import_finish:[8,12,4],schedul:9,els:[1,6,3],save:7,match:[0,7],build:1,sanit:1,applic:[1,6,3],account_id:[1,3,4,5,6,7,8,9,10,12,13,14],disposit:1,crud:[8,13,14],print_r:[6,3],mailing_statu:[9,14],know:[5,4],background:13,parent_mailing_id:[9,14],bit:1,insert:11,emma:[1,5,7,8,9,12,13],like:1,onion:11,deprec:4,arbitrari:8,manual:9,integ:[1,8,14,10,5],public_kei:4,api:[1,2,6,12,3],either:[0,5,7],bunch:0,output:9,group_id:[1,8,12,3],soft:[0,5],manag:[0,1,13,4],import_id:[8,12],www:[5,9],old:7,deal:[8,13],captur:1,arrai:[0,1,3,5,6,7,8,9,10,12,13,14],some:[1,11,5],field_delet:[12,4],certain:12,intern:10,sampl:[1,4,5,7,8,9,10,13,14],elaps:[2,9],home:11,deleted_at:[7,8,13,10,9,14],some_string_field:0,librari:11,bounce_count:[7,8,9,13],confirm:8,broad:12,per:5,send_finish:[9,14],larg:[0,2],condit:7,three:9,network_cod:12,localhost:9,refer:[5,7,8,13,10,9],with_html_bodi:9,who:[0,5],bold:[4,5,7,8,9,10,13,14],event_typ:14,inspect:1,usag:[1,8,12],num_members_ad:8,fulli:11,from:[1,4,8,9,12,13,14],post:[1,3,4,7,8,9,10,12,13,14],group_creat:[12,4],gladi:[7,5,8,13],actual:5,zip:0,groups_upd:8,column:10,page:2,includ:[1,5,7,8,9,10,13],webview:9,disabl:[9,14],block:[1,2],yyyi:5,member_data:[1,3],glob:0,bounc:[0,5],within:0,encod:[9,4],delivery_typ:[5,8],compos:0,webview_shar:5,field_typ:10,active_count:[7,8,9,13],public_webview_url:9,pivot:5,your:[1,4,5,7,8,9,10,13],websit:11,span:[4,5,7,8,9,10,13,14],wai:[1,12],area:1,overus:2,group_nam:[8,12,13,9],support:12,unique_click:5,json:[0,1,3,4,6,7],fast:8,custom:[5,8,11,10],avail:[0,11,4],start:[1,2,8,4],interfac:12,send_at:[9,14],exceed:2,"var":3,interv:[0,14],deliveri:5,head:[1,6,9,3],form:[1,3,4,6,8,10,14],enough:2,forc:1,forward:[0,4,5,8,12,9],"31st":0,group_typ:[8,9,13],push_offset_unit:14,link:[0,4,5,11,9,14],line:[1,5],realli:1,"true":[0,1,2,3,4,6,7,8,9,10,13,14],archived_t:[9,14],name_last:[1,3],info:4,pull:2,made:1,possibl:[5,8,12],whether:8,maximum:2,tell:12,http403:9,record:[0,7,8],below:[0,1,8,12],http400:[7,8,9],limit:[5,2,8,9],some_array_field:0,otherwis:[10,8],start_t:14,mta:5,connect:[6,3],notif:9,creat:[4,5,7,9,10,12,13,14],"int":5,retriev:[7,1,2,8,9],email_us:[0,5],repres:5,exist:[0,4,5,7,8,10,13],behavior:11,curl:[1,6],lentil:7,probabl:14,echo:[1,3],successfulli:[5,8,9],mailing_subject:12,grp:13,todo:11,when:[8,12,4,9],detail:[1,4,7,8,9,10,13],invalid:[7,8,9],event:[4,7,8,13,12,9,14],field:[0,1,3,4,5,7,8,9,10,11,12,13,14],valid:[5,8,9,13],futur:1,num_skip:8,test:[5,6,7,13,9,14],ignor:8,you:[0,1,2,4,5,7,8,9,10,11,12,13],member_delet:[12,4],member_status_id:[7,5,8,9,13],public_api_kei:[1,6,3],stat:[5,9],claus:[0,7],event_nam:[12,4],e2ma:[1,2,6,3],error_messag:8,param:[9,4],app_messag:[1,3],ella:8,bulk:[1,8],receiv:[0,2,5,8,12,9],heads_up_email:9,longer:9,descript:[4,14],portion:0,opted_out:5,time:[1,2,8,13,5],reply_to:[9,14],resource_url:12,hello:[11,9,14]},objtypes:{"0":"http:get","1":"http:put","2":"http:post","3":"http:delete"},titles:["Search Syntax","Emma API","Pagination","PHP Signup Example","Webhooks","Response","PHP Get Member By Email Example","Searches","Members","Mailings","Fields","Placeholder Syntax","Webhook Usage","Groups","Triggers"],objnames:{"0":["http","get","HTTP get"],"1":["http","put","HTTP put"],"2":["http","post","HTTP post"],"3":["http","delete","HTTP delete"]},filenames:["member_search","index","pagination","php_signup_example","api/external/webhooks","api/external/response","php_get_member_example","api/external/searches","api/external/members","api/external/mailings","api/external/fields","placeholders","webhooks","api/external/groups","api/external/triggers"]}) \ No newline at end of file diff --git a/webhooks.html b/webhooks.html index e55e698..a64aa3d 100644 --- a/webhooks.html +++ b/webhooks.html @@ -466,7 +466,7 @@ <h3>Quick search</h3> </div> <div class="footer"> © Copyright 2012, Emma. - Last updated on Dec 17, 2012 at 16:30. + Last updated on Dec 17, 2012 at 17:02. </div> </body> </html> \ No newline at end of file From fd711387629be80c566a9a597cdb3d61a2e0f335 Mon Sep 17 00:00:00 2001 From: Lance Roggendorff <lance.roggendorff@myemma.com> Date: Mon, 17 Dec 2012 17:02:38 -0600 Subject: [PATCH 006/219] Update audience documentation. --- api/external/searches.html | 2 +- api/external/triggers.html | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/api/external/searches.html b/api/external/searches.html index 2a22ee9..ba103cc 100644 --- a/api/external/searches.html +++ b/api/external/searches.html @@ -172,7 +172,7 @@ <h1>Searches<a class="headerlink" href="#searches" title="Permalink to this head "name": "Test Search", "criteria": "[\"or\", [\"group\", \"eq\", \"Monthly Newsletter\"],[\"group\", \"eq\", \"Widget Buyers\"]]", "deleted_at": null, - "last_run_at": "@D:2012-12-17T17:02:25", + "last_run_at": "@D:2012-12-17T17:02:34", "active_count": 2, "account_id": 100 } diff --git a/api/external/triggers.html b/api/external/triggers.html index fe8913d..08bb796 100644 --- a/api/external/triggers.html +++ b/api/external/triggers.html @@ -121,7 +121,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": 203, "push_offset_units": "0:-14:0:0", - "start_ts": "@D:2012-12-17T17:02:22", + "start_ts": "@D:2012-12-17T17:02:32", "trigger_id": 100, "signups": null, "push_offset": "@I:-1209600.0", @@ -162,7 +162,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": null, "push_offset_units": "0:3:0:0", - "start_ts": "@D:2012-12-17T17:02:22", + "start_ts": "@D:2012-12-17T17:02:32", "trigger_id": 101, "signups": [ 1, @@ -299,7 +299,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": 203, "push_offset_units": "0:-14:0:0", - "start_ts": "@D:2012-12-17T17:02:22", + "start_ts": "@D:2012-12-17T17:02:32", "trigger_id": 100, "signups": null, "push_offset": "@I:-1209600.0", From 9e540f2626491f8f4abbee72ca4aaca5b95751b5 Mon Sep 17 00:00:00 2001 From: Lance Roggendorff <lance.roggendorff@myemma.com> Date: Tue, 18 Dec 2012 15:53:57 -0600 Subject: [PATCH 007/219] Update audience documentation. --- api/external/fields.html | 2 +- api/external/groups.html | 2 +- api/external/mailings.html | 2 +- api/external/members.html | 2 +- api/external/response.html | 2 +- api/external/searches.html | 4 ++-- api/external/triggers.html | 8 ++++---- api/external/webhooks.html | 2 +- genindex.html | 2 +- http-routingtable.html | 2 +- index.html | 2 +- member_search.html | 2 +- pagination.html | 2 +- php_get_member_example.html | 2 +- php_signup_example.html | 2 +- placeholders.html | 2 +- search.html | 2 +- searchindex.js | 2 +- webhooks.html | 2 +- 19 files changed, 23 insertions(+), 23 deletions(-) diff --git a/api/external/fields.html b/api/external/fields.html index 512ec11..5832f3e 100644 --- a/api/external/fields.html +++ b/api/external/fields.html @@ -374,7 +374,7 @@ <h3>Quick search</h3> </div> <div class="footer"> © Copyright 2012, Emma. - Last updated on Dec 17, 2012 at 17:02. + Last updated on Dec 18, 2012 at 15:53. </div> </body> </html> \ No newline at end of file diff --git a/api/external/groups.html b/api/external/groups.html index 2029d8e..1331690 100644 --- a/api/external/groups.html +++ b/api/external/groups.html @@ -661,7 +661,7 @@ <h3>Quick search</h3> </div> <div class="footer"> © Copyright 2012, Emma. - Last updated on Dec 17, 2012 at 17:02. + Last updated on Dec 18, 2012 at 15:53. </div> </body> </html> \ No newline at end of file diff --git a/api/external/mailings.html b/api/external/mailings.html index 7c770b4..7f1f66a 100644 --- a/api/external/mailings.html +++ b/api/external/mailings.html @@ -768,7 +768,7 @@ <h3>Quick search</h3> </div> <div class="footer"> © Copyright 2012, Emma. - Last updated on Dec 17, 2012 at 17:02. + Last updated on Dec 18, 2012 at 15:53. </div> </body> </html> \ No newline at end of file diff --git a/api/external/members.html b/api/external/members.html index 5502dd1..5f4913f 100644 --- a/api/external/members.html +++ b/api/external/members.html @@ -1143,7 +1143,7 @@ <h3>Quick search</h3> </div> <div class="footer"> © Copyright 2012, Emma. - Last updated on Dec 17, 2012 at 17:02. + Last updated on Dec 18, 2012 at 15:53. </div> </body> </html> \ No newline at end of file diff --git a/api/external/response.html b/api/external/response.html index eb397da..ebbada7 100644 --- a/api/external/response.html +++ b/api/external/response.html @@ -978,7 +978,7 @@ <h3>Quick search</h3> </div> <div class="footer"> © Copyright 2012, Emma. - Last updated on Dec 17, 2012 at 17:02. + Last updated on Dec 18, 2012 at 15:53. </div> </body> </html> \ No newline at end of file diff --git a/api/external/searches.html b/api/external/searches.html index ba103cc..83f858b 100644 --- a/api/external/searches.html +++ b/api/external/searches.html @@ -172,7 +172,7 @@ <h1>Searches<a class="headerlink" href="#searches" title="Permalink to this head "name": "Test Search", "criteria": "[\"or\", [\"group\", \"eq\", \"Monthly Newsletter\"],[\"group\", \"eq\", \"Widget Buyers\"]]", "deleted_at": null, - "last_run_at": "@D:2012-12-17T17:02:34", + "last_run_at": "@D:2012-12-18T15:53:53", "active_count": 2, "account_id": 100 } @@ -470,7 +470,7 @@ <h3>Quick search</h3> </div> <div class="footer"> © Copyright 2012, Emma. - Last updated on Dec 17, 2012 at 17:02. + Last updated on Dec 18, 2012 at 15:53. </div> </body> </html> \ No newline at end of file diff --git a/api/external/triggers.html b/api/external/triggers.html index 08bb796..0b33427 100644 --- a/api/external/triggers.html +++ b/api/external/triggers.html @@ -121,7 +121,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": 203, "push_offset_units": "0:-14:0:0", - "start_ts": "@D:2012-12-17T17:02:32", + "start_ts": "@D:2012-12-18T15:53:50", "trigger_id": 100, "signups": null, "push_offset": "@I:-1209600.0", @@ -162,7 +162,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": null, "push_offset_units": "0:3:0:0", - "start_ts": "@D:2012-12-17T17:02:32", + "start_ts": "@D:2012-12-18T15:53:50", "trigger_id": 101, "signups": [ 1, @@ -299,7 +299,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": 203, "push_offset_units": "0:-14:0:0", - "start_ts": "@D:2012-12-17T17:02:32", + "start_ts": "@D:2012-12-18T15:53:50", "trigger_id": 100, "signups": null, "push_offset": "@I:-1209600.0", @@ -458,7 +458,7 @@ <h3>Quick search</h3> </div> <div class="footer"> © Copyright 2012, Emma. - Last updated on Dec 17, 2012 at 17:02. + Last updated on Dec 18, 2012 at 15:53. </div> </body> </html> \ No newline at end of file diff --git a/api/external/webhooks.html b/api/external/webhooks.html index 0983eeb..6539b34 100644 --- a/api/external/webhooks.html +++ b/api/external/webhooks.html @@ -446,7 +446,7 @@ <h3>Quick search</h3> </div> <div class="footer"> © Copyright 2012, Emma. - Last updated on Dec 17, 2012 at 17:02. + Last updated on Dec 18, 2012 at 15:53. </div> </body> </html> \ No newline at end of file diff --git a/genindex.html b/genindex.html index 26b8053..93f5a30 100644 --- a/genindex.html +++ b/genindex.html @@ -108,7 +108,7 @@ <h3>Quick search</h3> </div> <div class="footer"> © Copyright 2012, Emma. - Last updated on Dec 17, 2012 at 17:02. + Last updated on Dec 18, 2012 at 15:53. </div> </body> </html> \ No newline at end of file diff --git a/http-routingtable.html b/http-routingtable.html index 647890c..38bd45c 100644 --- a/http-routingtable.html +++ b/http-routingtable.html @@ -561,7 +561,7 @@ <h3>Quick search</h3> </div> <div class="footer"> © Copyright 2012, Emma. - Last updated on Dec 17, 2012 at 17:02. + Last updated on Dec 18, 2012 at 15:53. </div> </body> </html> \ No newline at end of file diff --git a/index.html b/index.html index 1bd4102..d44d673 100644 --- a/index.html +++ b/index.html @@ -284,7 +284,7 @@ <h3>Quick search</h3> </div> <div class="footer"> © Copyright 2012, Emma. - Last updated on Dec 17, 2012 at 17:02. + Last updated on Dec 18, 2012 at 15:53. </div> </body> </html> \ No newline at end of file diff --git a/member_search.html b/member_search.html index 25047a4..5527a78 100644 --- a/member_search.html +++ b/member_search.html @@ -215,7 +215,7 @@ <h3>Quick search</h3> </div> <div class="footer"> © Copyright 2012, Emma. - Last updated on Dec 17, 2012 at 17:02. + Last updated on Dec 18, 2012 at 15:53. </div> </body> </html> \ No newline at end of file diff --git a/pagination.html b/pagination.html index 9a12198..7d637eb 100644 --- a/pagination.html +++ b/pagination.html @@ -127,7 +127,7 @@ <h3>Quick search</h3> </div> <div class="footer"> © Copyright 2012, Emma. - Last updated on Dec 17, 2012 at 17:02. + Last updated on Dec 18, 2012 at 15:53. </div> </body> </html> \ No newline at end of file diff --git a/php_get_member_example.html b/php_get_member_example.html index 3ee419f..a95cc3a 100644 --- a/php_get_member_example.html +++ b/php_get_member_example.html @@ -142,7 +142,7 @@ <h3>Quick search</h3> </div> <div class="footer"> © Copyright 2012, Emma. - Last updated on Dec 17, 2012 at 17:02. + Last updated on Dec 18, 2012 at 15:53. </div> </body> </html> \ No newline at end of file diff --git a/php_signup_example.html b/php_signup_example.html index c5ffcae..6fc6cc3 100644 --- a/php_signup_example.html +++ b/php_signup_example.html @@ -164,7 +164,7 @@ <h3>Quick search</h3> </div> <div class="footer"> © Copyright 2012, Emma. - Last updated on Dec 17, 2012 at 17:02. + Last updated on Dec 18, 2012 at 15:53. </div> </body> </html> \ No newline at end of file diff --git a/placeholders.html b/placeholders.html index 89d3b53..afe6cf9 100644 --- a/placeholders.html +++ b/placeholders.html @@ -142,7 +142,7 @@ <h3>Quick search</h3> </div> <div class="footer"> © Copyright 2012, Emma. - Last updated on Dec 17, 2012 at 17:02. + Last updated on Dec 18, 2012 at 15:53. </div> </body> </html> \ No newline at end of file diff --git a/search.html b/search.html index 9f6e5a9..457c310 100644 --- a/search.html +++ b/search.html @@ -112,7 +112,7 @@ <h1 id="search-documentation">Search</h1> </div> <div class="footer"> © Copyright 2012, Emma. - Last updated on Dec 17, 2012 at 17:02. + Last updated on Dec 18, 2012 at 15:53. </div> </body> </html> \ No newline at end of file diff --git a/searchindex.js b/searchindex.js index 7ccd31b..a0fb447 100644 --- a/searchindex.js +++ b/searchindex.js @@ -1 +1 @@ -Search.setIndex({objects:{"":{"/#account_id/members/#member_id/groups/remove":[8,1,1,"put--#account_id-members-#member_id-groups-remove"],"/#account_id/mailings/#mailing_id/winner/#winner_id":[9,2,1,"post--#account_id-mailings-#mailing_id-winner-#winner_id"],"/#account_id/response/#mailing_id/in_progress":[5,0,1,"get--#account_id-response-#mailing_id-in_progress"],"/#account_id/members/groups/remove":[8,1,1,"put--#account_id-members-groups-remove"],"/#account_id/mailings/#mailing_id/searches":[9,0,1,"get--#account_id-mailings-#mailing_id-searches"],"/#account_id/fields":[10,2,1,"post--#account_id-fields"],"/#account_id/members/#group_id/copy":[8,1,1,"put--#account_id-members-#group_id-copy"],"/#account_id/members/status":[8,1,1,"put--#account_id-members-status"],"/#account_id/response/#mailing_id/shares/overview":[5,0,1,"get--#account_id-response-#mailing_id-shares-overview"],"/#account_id/webhooks/events":[4,0,1,"get--#account_id-webhooks-events"],"/#account_id/members/#member_id/optout":[8,0,1,"get--#account_id-members-#member_id-optout"],"/#account_id/webhooks":[4,3,1,"delete--#account_id-webhooks"],"/#account_id/fields/#field_id":[10,3,1,"delete--#account_id-fields-#field_id"],"/#account_id/response/#mailing_id":[5,0,1,"get--#account_id-response-#mailing_id"],"/#account_id/groups/#member_group_id/members/remove":[13,3,1,"delete--#account_id-groups-#member_group_id-members-remove"],"/#account_id/searches":[7,2,1,"post--#account_id-searches"],"/#account_id/members/imports":[8,0,1,"get--#account_id-members-imports"],"/#account_id/forwards/#mailing_id/#member_id":[9,2,1,"post--#account_id-forwards-#mailing_id-#member_id"],"/#account_id/response/#mailing_id/customer_share_clicks":[5,0,1,"get--#account_id-response-#mailing_id-customer_share_clicks"],"/#account_id/mailings/#mailing_id/messages/#member_id":[9,0,1,"get--#account_id-mailings-#mailing_id-messages-#member_id"],"/#account_id/members/#member_id/mailings":[8,0,1,"get--#account_id-members-#member_id-mailings"],"/#account_id/groups/#from_group_id/#to_group_id/members/copy":[13,1,1,"put--#account_id-groups-#from_group_id-#to_group_id-members-copy"],"/#account_id/triggers":[14,2,1,"post--#account_id-triggers"],"/#account_id/triggers/#trigger_id":[14,3,1,"delete--#account_id-triggers-#trigger_id"],"/#account_id/members/delete":[8,1,1,"put--#account_id-members-delete"],"/#account_id/mailings/#mailing_id/groups":[9,0,1,"get--#account_id-mailings-#mailing_id-groups"],"/#account_id/response/#mailing_id/forwards":[5,0,1,"get--#account_id-response-#mailing_id-forwards"],"/#account_id/members/#member_id":[8,3,1,"delete--#account_id-members-#member_id"],"/#account_id/triggers/#trigger_id/mailings":[14,0,1,"get--#account_id-triggers-#trigger_id-mailings"],"/#account_id/searches/#search_id/members":[7,0,1,"get--#account_id-searches-#search_id-members"],"/#account_id/members/status/:status_from/to/:status_to":[8,1,1,"put--#account_id-members-status--status_from-to--status_to"],"/#account_id/response/#mailing_id/sends":[5,0,1,"get--#account_id-response-#mailing_id-sends"],"/#account_id/members":[8,3,1,"delete--#account_id-members"],"/#account_id/members/email/:email":[8,0,1,"get--#account_id-members-email--email"],"/#account_id/response/#mailing_id/links":[5,0,1,"get--#account_id-response-#mailing_id-links"],"/#account_id/searches/#search_id":[7,3,1,"delete--#account_id-searches-#search_id"],"/#account_id/members/imports/#import_id/members":[8,0,1,"get--#account_id-members-imports-#import_id-members"],"/#account_id/fields/#field_id/clear":[10,2,1,"post--#account_id-fields-#field_id-clear"],"/#account_id/groups/#member_group_id/members":[13,3,1,"delete--#account_id-groups-#member_group_id-members"],"/#account_id/members/imports/#import_id":[8,0,1,"get--#account_id-members-imports-#import_id"],"/#account_id/response":[5,0,1,"get--#account_id-response"],"/#account_id/response/#mailing_id/opens":[5,0,1,"get--#account_id-response-#mailing_id-opens"],"/#account_id/members/imports/delete":[8,3,1,"delete--#account_id-members-imports-delete"],"/#account_id/mailings":[9,0,1,"get--#account_id-mailings"],"/#account_id/mailings/cancel/#mailing_id":[9,3,1,"delete--#account_id-mailings-cancel-#mailing_id"],"/#account_id/mailings/validate":[9,2,1,"post--#account_id-mailings-validate"],"/#account_id/response/#mailing_id/deliveries":[5,0,1,"get--#account_id-response-#mailing_id-deliveries"],"/#account_id/mailings/#mailing_id/members":[9,0,1,"get--#account_id-mailings-#mailing_id-members"],"/#account_id/response/#share_id/customer_share":[5,0,1,"get--#account_id-response-#share_id-customer_share"],"/#account_id/webhooks/#webhook_id":[4,3,1,"delete--#account_id-webhooks-#webhook_id"],"/#account_id/members/add":[8,2,1,"post--#account_id-members-add"],"/#account_id/response/#mailing_id/optouts":[5,0,1,"get--#account_id-response-#mailing_id-optouts"],"/#account_id/response/#mailing_id/shares":[5,0,1,"get--#account_id-response-#mailing_id-shares"],"/#account_id/groups/#member_group_id":[13,3,1,"delete--#account_id-groups-#member_group_id"],"/#account_id/mailings/#mailing_id":[9,3,1,"delete--#account_id-mailings-#mailing_id"],"/#account_id/members/#member_id/groups":[8,3,1,"delete--#account_id-members-#member_id-groups"],"/#account_id/groups":[13,2,1,"post--#account_id-groups"],"/#account_id/response/#mailing_id/clicks":[5,0,1,"get--#account_id-response-#mailing_id-clicks"],"/#account_id/mailings/#mailing_id/headsup":[9,0,1,"get--#account_id-mailings-#mailing_id-headsup"],"/#account_id/response/#mailing_id/signups":[5,0,1,"get--#account_id-response-#mailing_id-signups"],"/#account_id/response/#mailing_id/customer_shares":[5,0,1,"get--#account_id-response-#mailing_id-customer_shares"]}},terms:{all:[0,1,4,5,8,9,10,11,12,13,14],code:[0,1,6,3],change_typ:8,queri:[0,2,4],month:[0,5,9,14],four:[0,5],mile:0,least:0,field_creat:[12,4],link_target:[5,9],content:[1,11,6,9,3],privat:1,specif:[8,9,4],friendli:5,send:[1,9,4,3,5],customer_share_click:5,those:[5,12],group_upd:[12,4],sent:[5,8,12,9,14],curl_clos:[1,6,3],brown:[7,8],digit:5,everi:0,string:[0,4,5,7,8,9,10,12,13,14],fals:[1,3,4,5,6,7,8,9,10,13,14],webhook:[1,12,4],mailing_status:9,trigger_id:14,webview_share_click:5,affect:[7,8],member_add:[12,4],create_mail:9,new_boolean:10,foo:0,level:1,group_delet:[12,4],list:[0,1,2,4,5,7,8,9,10,11,12,13,14],upload:8,iter:2,"try":8,item:2,plaintext_onli:[9,14],div:[4,5,7,8,9,10,13,14],survey_id:14,pleas:[1,8,11,9],prevent:2,work:[1,4],ten:0,sync:10,sign:[0,5,4],past:1,second:[0,7,14],follow:[0,1,4,5,7,9,11,13],further:1,durat:9,click:[0,4,5,7,8,12,14],append:2,even:10,what:1,hide:[4,5,7,8,9,10,13,14],appear:1,from_group_id:13,section:1,current:[8,12,9],delet:[1,4,7,8,9,10,12,13,14],"new":[1,4,5,7,8,9,10,11,13,14],net:[1,2,6,3],delivery_t:8,method:[5,8,13,4,9],can:[0,1,2,4,5,7,8,9,11,12,13],widget:[7,10,8,9,13],hash:0,datematch:0,displai:10,variat:9,gener:[0,8,12,14],onli:[5,8],here:[0,1,3,5,6,8],bodi:9,let:[1,4,10],address:[0,1,8,6,9],"17t17":[7,14],along:8,sinc:8,valu:[0,5,7,8,10,11],field_upd:[12,4],search:[0,1,9,7],survei:14,sender:[9,14],larger:2,queue:5,prior:9,action:[0,8],chang:[8,4],name_first:[1,3],campaign:5,newbi:5,appli:[7,14],prefer:0,myemma:[4,5,7,8,9,13],filenam:8,customer_shar:5,"boolean":[0,1,5,7,8,9,10,13,14],curlopt_postfield:[1,3],total:5,jone:[7,5,8,13],select:10,newslett:[7,8,13],describ:7,would:[0,1],regist:4,two:[0,5],next:[0,1],create_webhook:4,few:[5,8],call:[1,2,3,4,6,8,12],criteria:7,member_add_to_group:[12,4],type:[1,3,4,5,6,7,10,9,14],until:2,more:[0,4,7,8,9,13],peopl:5,relat:[1,8,11,9],about:[10,8,12,4,9],notic:8,thide:[4,5,7,8,9,10,13,14],flag:[5,7,8,10,9,14],exce:2,indic:8,examin:1,particular:[1,4,5,8,10,12,9],in_progress:5,origin:9,must:[0,7,13,10],none:9,endpoint:[1,4,5,7,8,9,10,13,14],join:[0,7],hour:0,setup:1,member_sinc:[0,5,7,8,9,13],uniqu:5,histori:8,soup:7,remain:[0,9],archiv:[5,9],member_optout:[12,4],drill:5,control:[1,11,9],quickstart:1,give:5,forward_mailing_id:5,email_domain:[0,5],share:[0,5,8,12,4],accept:[0,5,7,8,9,10,11,13,14],total_click:5,tag:[11,9],want:[1,12,13,5],occur:[7,12],some_numeric_field:0,delai:14,alwai:0,webhook_event_id:4,cours:1,end:[2,8],first_nam:[1,3,5,7,8,9,10,11,13,14],started_or_finish:[9,14],anoth:[9,13],get:[1,4,5,6,7,8,9,10,13,14],message_open:[12,4],html_bodi:[9,14],share_statu:5,push_offset:14,del_statu:5,tild:5,num_members_upd:8,simpl:0,chri:9,pizza:[7,8],map:0,autent:1,referenc:7,xxxx:6,sundai:0,membership:13,taco:[7,5,8,9,13],mai:12,multipl:[10,8],data:[1,3,4,5,10,12],welcom:11,add_onli:8,"short":0,json_encod:[1,3],optout:[5,8,12,13],num_dupl:8,favorit:10,correspond:[0,1],greet:11,predic:[0,1],issu:[1,10],"12t11":[7,5,8,9,13],combin:7,allow:[0,7,8],some_zipcode_field:0,signed_up:5,order:[5,10],michel:[8,9],mailing_nam:5,checkbox:10,fields_upd:8,over:2,becaus:12,buyer:[7,8,9,13],comma:[9,13],is_dis:14,vari:8,paramet:[2,4,5,7,8,9,10,13,14],widget_typ:10,style:[0,4,5,7,8,9,10,13,14],group:[0,1,3,4,7,8,9,12,13,14],curl_setopt:[1,6,3],how:[7,1,2,4],import_start:8,better:[13,14],platform:1,pend:[1,9],mailing_list:9,onc:9,mail:[0,1,4,5,8,11,12,9,14],hidden:13,main:1,might:[1,4],link_nam:[5,9],them:[8,9],"return":[0,1,4,5,7,8,9,10,12,13,14],greater:[0,8],thei:[0,9],food:10,timestamp:[0,5,12,9,10],spell:4,dai:0,auth:1,instead:[12,2,8],now:5,down:5,term:[0,1],alex:9,name:[0,4,5,7,8,9,10,11,13,14],edit:[7,1,14,10],curl_getinfo:[1,6,3],authent:[1,6,4,3],successufulli:4,separ:[1,9,13],each:[1,2,5,9,12,11,13],found:[8,9,4,14],updat:[4,7,8,9,10,12,13,14],mean:0,status:[8,9],domain:0,shortcut_nam:10,weight:[4,5,7,8,9,10,13,14],resum:9,individu:[1,8],hard:[0,5],last_nam:[1,3,5,7,8,9,10,11,13,14],"05t15":5,birthdai:[10,14],expect:1,year:[0,5,9,14],our:[1,11,12,4,14],happen:[1,4,5],extract:11,short_display_nam:10,special:[0,7,8,13],out:[0,1,4,5,7,8,10,13],variabl:[1,6,3],message_shar:[12,4],network:[5,12],private_api_kei:[1,6,3],check_multipl:10,categori:1,rel:0,print:6,correct:10,statist:8,benjamin:8,qualifi:11,insid:1,advanc:0,contain:[0,5,7,13,10,9],differ:0,standard:[5,9],status_from:8,base:[5,8],recipient_search:9,dictionari:8,put:[4,7,8,9,10,13,14],"13t23":[7,5,8],visit:11,could:1,omit:5,success:[7,1,9,13,3],filter:[0,1,7],search_id:7,pagin:[1,2],member_id:[5,7,8,9,12,13],summari:[1,5],assign:9,first:[0,1,10,5],oper:[0,1,7,14],rang:5,notifi:12,directli:0,curlopt_ssl_verifyp:[1,6,3],curl_init:[1,6,3],number:[5,2,13,3,10],placehold:[1,11],date:[0,5,8,10,11,14],unlik:9,alreadi:[10,9,13],done:8,plaintext_pref:[7,8,9,13],oppos:8,open:[0,3,4,5,6,7,8,12],payload:4,fanci:5,size:2,given:[0,8,9,4],"long":10,script:1,associ:[1,8,9,4,5],system:[8,12,4,14],messag:[4,5,8,12,11,9,14],attach:11,friend:11,curlinfo_http_cod:[1,6,3],shell:0,option:[0,5,7,8,9,10,13,14],especi:8,signup:[0,1,3,4,5,8,12,14],copi:[8,13],member_upd:[12,4],specifi:[0,2,7,8,10,11,9,14],curl_exec:[1,6,3],curlopt_httphead:[1,6,3],member_signup:[12,4],create_search:7,part:[0,9],enclos:11,than:[0,1,2,3,12,13],with_plaintext:9,"02t10":[5,8],"02t11":[5,8],"02t13":5,nathan:8,whenev:8,provid:[1,5,8,12,9,14],remov:[12,8,13,4],mailing_start:4,rate:2,structur:7,charact:9,greg:8,trackabl:11,were:5,minut:0,danc:1,error_count:[7,8,9,13],pre:[4,5,7,8,9,10,13,14],cleaner:1,sai:0,share_id:5,signup_form_id:[0,8,12,9,14],plaintext:[5,9,14],pass:[1,3],ani:[0,1,2,7,8,9],have:[0,5,8,12,9],tabl:5,seen:5,"null":[7,8,13,10,9,14],kevin:[9,14],signup_mail:0,caus:14,inform:[1,4,6,8,9,10,13],object_id:14,note:[1,8,9,4],also:[0,4,5,7,8,9,11,13],exampl:[0,1,3,5,6,7,11],take:[0,4],which:[0,1,4,8,10,12,9,14],some_number_field:0,singl:[0,1,3,4,5,8,10,12,13],excit:11,sure:1,delete_memb:13,normal:9,parent_mail:14,recipient_count:[5,9,14],previou:9,field_id:[10,12,14],last_run_at:7,most:14,pair:11,"class":[4,5,7,8,9,10,13,14],member_group_id:[8,9,13],mcconnel:[9,14],url:[1,3,4,5,6,12],mailing_finish:[12,4],clear:10,request:[1,2,3],doe:[0,5,7,8,10,13],member_status_upd:[12,4],declar:9,tech:4,determin:1,dataset:10,dow:0,recipi:9,"6db0cc7e6fdb2da589b65f29d90c96b6":9,show:[4,5,7,8,9,10,11,13,14],text:[10,11,12],radiu:0,syntax:[0,1,11,9],radio:10,font:[4,5,7,8,9,10,13,14],fine:9,find:[1,6,5],status_to:8,toast:[7,5,8,13],access:[1,5],giant:12,just:[0,9],pretti:8,column_ord:10,explain:[0,1],winner:9,activ:[1,5,7,8,13,9],figur:1,should:[1,2,3,7,8,11,9],templat:[11,14],share_count:5,count:[1,2,3,5],variou:[8,13],confirmed_opt_in:[7,8,9,13],familiar:1,express:0,account:[1,4,5,7,8,10,13,14],cannot:[8,9,4],progress:9,report:[10,8],requir:[1,7,8,10,11,9],object:[5,13],favorite_food:[5,7,8,13,10,9],bar:0,organ:1,include_archiv:[5,9],"public":1,"default":[5,11,13,4,9],ref_member_id:5,message_share_click:[12,4],through:[1,8,4],where:[0,1,8,11,7],view:1,set:[0,1,2,3,6,8,9,12,13],link_id:[0,5,12,9,14],see:[7,1,8],result:[0,1,2,5,8,9],respons:[0,1,2,4,5,7,8,9,10,13,14],fail:[5,9,4],themselv:2,member_field:[0,7],xxxxx:6,subject:[8,12,9,14],statu:[1,4,5,7,8,9,12,13],fancyonion:11,kei:[0,1,11,4],is_schedul:9,message_forward:[12,4],databas:8,user:[0,8,9,13],last_modified_at:[7,8,9,13],addresse:5,written:1,between:[0,7,2],"import":[1,8,12,4,10],subscript:[1,3],entiti:1,curlopt_url:[1,6,3],email:[0,1,3,5,6,7,8,9,13],wide:14,extend:1,numer:10,http404:[4,5,7,8,9,10,13,14],job:13,entir:[0,8],share_click:5,to_group_id:13,curlopt_returntransf:[1,6,3],addit:[0,1,8,9,11,13],member_remove_from_group:[12,4],send_start:[0,9,14],protect:1,accident:2,last:[0,5,10],delimit:5,pertain:5,message_click:[12,4],curlopt_post:[1,3],audienc:[1,8,9],mang:0,http500:14,seri:5,com:[4,5,6,7,8,9,11,13],zip_code_field:0,"03t15":[7,5,8,13],point:1,toni:[7,8],overview:[0,1,11,12,5],period:1,winner_id:9,colon:[7,11],optout_count:[7,8,9,13],suppli:9,cancel:9,tuesdai:0,duplic:5,quit:[5,8],user_id:4,recur:14,headsup:9,addition:[1,2],due:5,been:[1,8,10,5],mark:[8,9],whom:9,tshow:[4,5,7,8,9,10,13,14],trigger:[1,4,5,7,8,9,10,12,13,14],unsubscrib:0,treat:8,interest:[10,4],basic:[0,1,4,8,13,14],monthli:[7,8,13],blob:4,mailing_mailing_id:5,mailing_id:[0,5,8,12,9,14],fire:[8,4,14],xxx:[1,3],argument:[0,5],link_ord:[5,9],input:1,present:7,clicked_uniqu:5,"case":[1,8],look:[1,14,10],frozen:9,easier:12,email_error:[7,8,9,13],defin:[0,10,8,9],"while":0,outcom:5,abov:[0,1,8,7],error:[1,3,6,8,10,13],loop:8,opt:[0,4,5,7,8,13],readi:9,deliv:5,recipient_group:9,equal:0,itself:0,new_statu:12,webhook_id:4,recipient_memb:9,perform:8,make:[1,12,6,10],belong:[0,8,4],same:4,check:[8,6,9],member:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14],handl:1,html:9,split:9,document:[1,11,12],complet:[1,3,4,6,8,9],week:0,finish:[5,12,4],http:[1,2,3,4,5,6,11,9],href:[4,5,7,8,9,10,13,14],nest:0,someon:4,rais:[4,5,7,8,9,10,13,14],initi:[10,9],php:[1,6,3],bob:[7,5],recent:1,kept:11,center:0,min:5,well:5,inherit:9,person:9,mailing_typ:[9,14],without:0,command:1,thi:[0,1,4,5,7,8,9,10,12,13,14],undefin:0,http_code:[1,6,3],latest:11,construct:[0,7,9],identifi:8,paus:9,execut:[1,3],less:0,resp:[4,5,7,8,9,10,13,14],"_post":[1,3],against:0,aspect:13,recipient_email:9,source_filenam:8,yet:5,smith:[7,5,8,9,13],"12t09":[7,8],display_nam:10,easi:[10,12],"01t00":8,had:0,littl:1,blog:4,add:[12,1,8,13,3],other:[1,8,9,3,5],curlopt_userpwd:[1,6,3],import_finish:[8,12,4],schedul:9,els:[1,6,3],save:7,match:[0,7],build:1,sanit:1,applic:[1,6,3],account_id:[1,3,4,5,6,7,8,9,10,12,13,14],disposit:1,crud:[8,13,14],print_r:[6,3],mailing_statu:[9,14],know:[5,4],background:13,parent_mailing_id:[9,14],bit:1,insert:11,emma:[1,5,7,8,9,12,13],like:1,onion:11,deprec:4,arbitrari:8,manual:9,integ:[1,8,14,10,5],public_kei:4,api:[1,2,6,12,3],either:[0,5,7],bunch:0,output:9,group_id:[1,8,12,3],soft:[0,5],manag:[0,1,13,4],import_id:[8,12],www:[5,9],old:7,deal:[8,13],captur:1,arrai:[0,1,3,5,6,7,8,9,10,12,13,14],some:[1,11,5],field_delet:[12,4],certain:12,intern:10,sampl:[1,4,5,7,8,9,10,13,14],elaps:[2,9],home:11,deleted_at:[7,8,13,10,9,14],some_string_field:0,librari:11,bounce_count:[7,8,9,13],confirm:8,broad:12,per:5,send_finish:[9,14],larg:[0,2],condit:7,three:9,network_cod:12,localhost:9,refer:[5,7,8,13,10,9],with_html_bodi:9,who:[0,5],bold:[4,5,7,8,9,10,13,14],event_typ:14,inspect:1,usag:[1,8,12],num_members_ad:8,fulli:11,from:[1,4,8,9,12,13,14],post:[1,3,4,7,8,9,10,12,13,14],group_creat:[12,4],gladi:[7,5,8,13],actual:5,zip:0,groups_upd:8,column:10,page:2,includ:[1,5,7,8,9,10,13],webview:9,disabl:[9,14],block:[1,2],yyyi:5,member_data:[1,3],glob:0,bounc:[0,5],within:0,encod:[9,4],delivery_typ:[5,8],compos:0,webview_shar:5,field_typ:10,active_count:[7,8,9,13],public_webview_url:9,pivot:5,your:[1,4,5,7,8,9,10,13],websit:11,span:[4,5,7,8,9,10,13,14],wai:[1,12],area:1,overus:2,group_nam:[8,12,13,9],support:12,unique_click:5,json:[0,1,3,4,6,7],fast:8,custom:[5,8,11,10],avail:[0,11,4],start:[1,2,8,4],interfac:12,send_at:[9,14],exceed:2,"var":3,interv:[0,14],deliveri:5,head:[1,6,9,3],form:[1,3,4,6,8,10,14],enough:2,forc:1,forward:[0,4,5,8,12,9],"31st":0,group_typ:[8,9,13],push_offset_unit:14,link:[0,4,5,11,9,14],line:[1,5],realli:1,"true":[0,1,2,3,4,6,7,8,9,10,13,14],archived_t:[9,14],name_last:[1,3],info:4,pull:2,made:1,possibl:[5,8,12],whether:8,maximum:2,tell:12,http403:9,record:[0,7,8],below:[0,1,8,12],http400:[7,8,9],limit:[5,2,8,9],some_array_field:0,otherwis:[10,8],start_t:14,mta:5,connect:[6,3],notif:9,creat:[4,5,7,9,10,12,13,14],"int":5,retriev:[7,1,2,8,9],email_us:[0,5],repres:5,exist:[0,4,5,7,8,10,13],behavior:11,curl:[1,6],lentil:7,probabl:14,echo:[1,3],successfulli:[5,8,9],mailing_subject:12,grp:13,todo:11,when:[8,12,4,9],detail:[1,4,7,8,9,10,13],invalid:[7,8,9],event:[4,7,8,13,12,9,14],field:[0,1,3,4,5,7,8,9,10,11,12,13,14],valid:[5,8,9,13],futur:1,num_skip:8,test:[5,6,7,13,9,14],ignor:8,you:[0,1,2,4,5,7,8,9,10,11,12,13],member_delet:[12,4],member_status_id:[7,5,8,9,13],public_api_kei:[1,6,3],stat:[5,9],claus:[0,7],event_nam:[12,4],e2ma:[1,2,6,3],error_messag:8,param:[9,4],app_messag:[1,3],ella:8,bulk:[1,8],receiv:[0,2,5,8,12,9],heads_up_email:9,longer:9,descript:[4,14],portion:0,opted_out:5,time:[1,2,8,13,5],reply_to:[9,14],resource_url:12,hello:[11,9,14]},objtypes:{"0":"http:get","1":"http:put","2":"http:post","3":"http:delete"},titles:["Search Syntax","Emma API","Pagination","PHP Signup Example","Webhooks","Response","PHP Get Member By Email Example","Searches","Members","Mailings","Fields","Placeholder Syntax","Webhook Usage","Groups","Triggers"],objnames:{"0":["http","get","HTTP get"],"1":["http","put","HTTP put"],"2":["http","post","HTTP post"],"3":["http","delete","HTTP delete"]},filenames:["member_search","index","pagination","php_signup_example","api/external/webhooks","api/external/response","php_get_member_example","api/external/searches","api/external/members","api/external/mailings","api/external/fields","placeholders","webhooks","api/external/groups","api/external/triggers"]}) \ No newline at end of file +Search.setIndex({objects:{"":{"/#account_id/members/#member_id/groups/remove":[8,1,1,"put--#account_id-members-#member_id-groups-remove"],"/#account_id/mailings/#mailing_id/winner/#winner_id":[9,2,1,"post--#account_id-mailings-#mailing_id-winner-#winner_id"],"/#account_id/response/#mailing_id/in_progress":[5,0,1,"get--#account_id-response-#mailing_id-in_progress"],"/#account_id/members/groups/remove":[8,1,1,"put--#account_id-members-groups-remove"],"/#account_id/mailings/#mailing_id/searches":[9,0,1,"get--#account_id-mailings-#mailing_id-searches"],"/#account_id/fields":[10,2,1,"post--#account_id-fields"],"/#account_id/members/#group_id/copy":[8,1,1,"put--#account_id-members-#group_id-copy"],"/#account_id/members/status":[8,1,1,"put--#account_id-members-status"],"/#account_id/response/#mailing_id/shares/overview":[5,0,1,"get--#account_id-response-#mailing_id-shares-overview"],"/#account_id/webhooks/events":[4,0,1,"get--#account_id-webhooks-events"],"/#account_id/members/#member_id/optout":[8,0,1,"get--#account_id-members-#member_id-optout"],"/#account_id/webhooks":[4,3,1,"delete--#account_id-webhooks"],"/#account_id/fields/#field_id":[10,3,1,"delete--#account_id-fields-#field_id"],"/#account_id/response/#mailing_id":[5,0,1,"get--#account_id-response-#mailing_id"],"/#account_id/groups/#member_group_id/members/remove":[13,3,1,"delete--#account_id-groups-#member_group_id-members-remove"],"/#account_id/searches":[7,2,1,"post--#account_id-searches"],"/#account_id/members/imports":[8,0,1,"get--#account_id-members-imports"],"/#account_id/forwards/#mailing_id/#member_id":[9,2,1,"post--#account_id-forwards-#mailing_id-#member_id"],"/#account_id/response/#mailing_id/customer_share_clicks":[5,0,1,"get--#account_id-response-#mailing_id-customer_share_clicks"],"/#account_id/mailings/#mailing_id/messages/#member_id":[9,0,1,"get--#account_id-mailings-#mailing_id-messages-#member_id"],"/#account_id/members/#member_id/mailings":[8,0,1,"get--#account_id-members-#member_id-mailings"],"/#account_id/groups/#from_group_id/#to_group_id/members/copy":[13,1,1,"put--#account_id-groups-#from_group_id-#to_group_id-members-copy"],"/#account_id/triggers":[14,2,1,"post--#account_id-triggers"],"/#account_id/triggers/#trigger_id":[14,3,1,"delete--#account_id-triggers-#trigger_id"],"/#account_id/members/delete":[8,1,1,"put--#account_id-members-delete"],"/#account_id/mailings/#mailing_id/groups":[9,0,1,"get--#account_id-mailings-#mailing_id-groups"],"/#account_id/response/#mailing_id/forwards":[5,0,1,"get--#account_id-response-#mailing_id-forwards"],"/#account_id/members/#member_id":[8,3,1,"delete--#account_id-members-#member_id"],"/#account_id/triggers/#trigger_id/mailings":[14,0,1,"get--#account_id-triggers-#trigger_id-mailings"],"/#account_id/searches/#search_id/members":[7,0,1,"get--#account_id-searches-#search_id-members"],"/#account_id/members/status/:status_from/to/:status_to":[8,1,1,"put--#account_id-members-status--status_from-to--status_to"],"/#account_id/response/#mailing_id/sends":[5,0,1,"get--#account_id-response-#mailing_id-sends"],"/#account_id/members":[8,3,1,"delete--#account_id-members"],"/#account_id/members/email/:email":[8,0,1,"get--#account_id-members-email--email"],"/#account_id/response/#mailing_id/links":[5,0,1,"get--#account_id-response-#mailing_id-links"],"/#account_id/searches/#search_id":[7,3,1,"delete--#account_id-searches-#search_id"],"/#account_id/members/imports/#import_id/members":[8,0,1,"get--#account_id-members-imports-#import_id-members"],"/#account_id/fields/#field_id/clear":[10,2,1,"post--#account_id-fields-#field_id-clear"],"/#account_id/groups/#member_group_id/members":[13,3,1,"delete--#account_id-groups-#member_group_id-members"],"/#account_id/members/imports/#import_id":[8,0,1,"get--#account_id-members-imports-#import_id"],"/#account_id/response":[5,0,1,"get--#account_id-response"],"/#account_id/response/#mailing_id/opens":[5,0,1,"get--#account_id-response-#mailing_id-opens"],"/#account_id/members/imports/delete":[8,3,1,"delete--#account_id-members-imports-delete"],"/#account_id/mailings":[9,0,1,"get--#account_id-mailings"],"/#account_id/mailings/cancel/#mailing_id":[9,3,1,"delete--#account_id-mailings-cancel-#mailing_id"],"/#account_id/mailings/validate":[9,2,1,"post--#account_id-mailings-validate"],"/#account_id/response/#mailing_id/deliveries":[5,0,1,"get--#account_id-response-#mailing_id-deliveries"],"/#account_id/mailings/#mailing_id/members":[9,0,1,"get--#account_id-mailings-#mailing_id-members"],"/#account_id/response/#share_id/customer_share":[5,0,1,"get--#account_id-response-#share_id-customer_share"],"/#account_id/webhooks/#webhook_id":[4,3,1,"delete--#account_id-webhooks-#webhook_id"],"/#account_id/members/add":[8,2,1,"post--#account_id-members-add"],"/#account_id/response/#mailing_id/optouts":[5,0,1,"get--#account_id-response-#mailing_id-optouts"],"/#account_id/response/#mailing_id/shares":[5,0,1,"get--#account_id-response-#mailing_id-shares"],"/#account_id/groups/#member_group_id":[13,3,1,"delete--#account_id-groups-#member_group_id"],"/#account_id/mailings/#mailing_id":[9,3,1,"delete--#account_id-mailings-#mailing_id"],"/#account_id/members/#member_id/groups":[8,3,1,"delete--#account_id-members-#member_id-groups"],"/#account_id/groups":[13,2,1,"post--#account_id-groups"],"/#account_id/response/#mailing_id/clicks":[5,0,1,"get--#account_id-response-#mailing_id-clicks"],"/#account_id/mailings/#mailing_id/headsup":[9,0,1,"get--#account_id-mailings-#mailing_id-headsup"],"/#account_id/response/#mailing_id/signups":[5,0,1,"get--#account_id-response-#mailing_id-signups"],"/#account_id/response/#mailing_id/customer_shares":[5,0,1,"get--#account_id-response-#mailing_id-customer_shares"]}},terms:{all:[0,1,4,5,8,9,10,11,12,13,14],code:[0,1,6,3],change_typ:8,queri:[0,2,4],month:[0,5,9,14],four:[0,5],mile:0,least:0,field_creat:[12,4],link_target:[5,9],content:[1,11,6,9,3],privat:1,specif:[8,9,4],friendli:5,send:[1,9,4,3,5],customer_share_click:5,those:[5,12],group_upd:[12,4],sent:[5,8,12,9,14],curl_clos:[1,6,3],brown:[7,8],digit:5,everi:0,string:[0,4,5,7,8,9,10,12,13,14],fals:[1,3,4,5,6,7,8,9,10,13,14],webhook:[1,12,4],mailing_status:9,trigger_id:14,webview_share_click:5,affect:[7,8],member_add:[12,4],create_mail:9,new_boolean:10,foo:0,level:1,group_delet:[12,4],list:[0,1,2,4,5,7,8,9,10,11,12,13,14],upload:8,iter:2,"try":8,item:2,plaintext_onli:[9,14],div:[4,5,7,8,9,10,13,14],survey_id:14,pleas:[1,8,11,9],prevent:2,work:[1,4],ten:0,sync:10,sign:[0,5,4],past:1,second:[0,7,14],follow:[0,1,4,5,7,9,11,13],further:1,durat:9,click:[0,4,5,7,8,12,14],append:2,even:10,what:1,hide:[4,5,7,8,9,10,13,14],appear:1,from_group_id:13,section:1,current:[8,12,9],delet:[1,4,7,8,9,10,12,13,14],"new":[1,4,5,7,8,9,10,11,13,14],net:[1,2,6,3],delivery_t:8,method:[5,8,13,4,9],can:[0,1,2,4,5,7,8,9,11,12,13],widget:[7,10,8,9,13],hash:0,datematch:0,displai:10,variat:9,gener:[0,8,12,14],onli:[5,8],here:[0,1,3,5,6,8],bodi:9,let:[1,4,10],address:[0,1,8,6,9],along:8,sinc:8,valu:[0,5,7,8,10,11],field_upd:[12,4],search:[0,1,9,7],survei:14,sender:[9,14],larger:2,queue:5,prior:9,action:[0,8],chang:[8,4],name_first:[1,3],campaign:5,newbi:5,appli:[7,14],prefer:0,myemma:[4,5,7,8,9,13],filenam:8,customer_shar:5,"boolean":[0,1,5,7,8,9,10,13,14],curlopt_postfield:[1,3],total:5,jone:[7,5,8,13],select:10,newslett:[7,8,13],describ:7,would:[0,1],regist:4,two:[0,5],next:[0,1],create_webhook:4,few:[5,8],call:[1,2,3,4,6,8,12],criteria:7,member_add_to_group:[12,4],type:[1,3,4,5,6,7,10,9,14],until:2,more:[0,4,7,8,9,13],peopl:5,relat:[1,8,11,9],about:[10,8,12,4,9],notic:8,thide:[4,5,7,8,9,10,13,14],flag:[5,7,8,10,9,14],exce:2,indic:8,examin:1,particular:[1,4,5,8,10,12,9],in_progress:5,origin:9,must:[0,7,13,10],none:9,endpoint:[1,4,5,7,8,9,10,13,14],join:[0,7],hour:0,setup:1,member_sinc:[0,5,7,8,9,13],uniqu:5,histori:8,soup:7,remain:[0,9],archiv:[5,9],member_optout:[12,4],drill:5,control:[1,11,9],quickstart:1,give:5,forward_mailing_id:5,email_domain:[0,5],share:[0,5,8,12,4],accept:[0,5,7,8,9,10,11,13,14],total_click:5,tag:[11,9],want:[1,12,13,5],occur:[7,12],some_numeric_field:0,delai:14,alwai:0,webhook_event_id:4,cours:1,end:[2,8],first_nam:[1,3,5,7,8,9,10,11,13,14],started_or_finish:[9,14],anoth:[9,13],get:[1,4,5,6,7,8,9,10,13,14],message_open:[12,4],html_bodi:[9,14],share_statu:5,push_offset:14,del_statu:5,tild:5,num_members_upd:8,simpl:0,chri:9,pizza:[7,8],map:0,autent:1,referenc:7,xxxx:6,sundai:0,membership:13,taco:[7,5,8,9,13],mai:12,multipl:[10,8],data:[1,3,4,5,10,12],welcom:11,add_onli:8,"short":0,json_encod:[1,3],optout:[5,8,12,13],num_dupl:8,favorit:10,correspond:[0,1],greet:11,predic:[0,1],issu:[1,10],"12t11":[7,5,8,9,13],combin:7,allow:[0,7,8],some_zipcode_field:0,signed_up:5,order:[5,10],michel:[8,9],mailing_nam:5,checkbox:10,fields_upd:8,over:2,becaus:12,buyer:[7,8,9,13],comma:[9,13],is_dis:14,vari:8,paramet:[2,4,5,7,8,9,10,13,14],widget_typ:10,style:[0,4,5,7,8,9,10,13,14],group:[0,1,3,4,7,8,9,12,13,14],curl_setopt:[1,6,3],how:[7,1,2,4],import_start:8,better:[13,14],platform:1,pend:[1,9],mailing_list:9,onc:9,mail:[0,1,4,5,8,11,12,9,14],hidden:13,main:1,might:[1,4],link_nam:[5,9],them:[8,9],"return":[0,1,4,5,7,8,9,10,12,13,14],greater:[0,8],thei:[0,9],food:10,timestamp:[0,5,12,9,10],spell:4,dai:0,auth:1,instead:[12,2,8],now:5,down:5,term:[0,1],alex:9,name:[0,4,5,7,8,9,10,11,13,14],edit:[7,1,14,10],curl_getinfo:[1,6,3],authent:[1,6,4,3],successufulli:4,separ:[1,9,13],each:[1,2,5,9,12,11,13],found:[8,9,4,14],updat:[4,7,8,9,10,12,13,14],mean:0,status:[8,9],domain:0,shortcut_nam:10,weight:[4,5,7,8,9,10,13,14],resum:9,individu:[1,8],hard:[0,5],last_nam:[1,3,5,7,8,9,10,11,13,14],"05t15":5,birthdai:[10,14],expect:1,year:[0,5,9,14],our:[1,11,12,4,14],happen:[1,4,5],extract:11,short_display_nam:10,special:[0,7,8,13],out:[0,1,4,5,7,8,10,13],variabl:[1,6,3],message_shar:[12,4],network:[5,12],private_api_kei:[1,6,3],check_multipl:10,categori:1,rel:0,print:6,correct:10,statist:8,benjamin:8,qualifi:11,insid:1,advanc:0,contain:[0,5,7,13,10,9],differ:0,standard:[5,9],status_from:8,base:[5,8],recipient_search:9,dictionari:8,put:[4,7,8,9,10,13,14],"13t23":[7,5,8],visit:11,could:1,omit:5,success:[7,1,9,13,3],filter:[0,1,7],search_id:7,pagin:[1,2],member_id:[5,7,8,9,12,13],summari:[1,5],assign:9,first:[0,1,10,5],oper:[0,1,7,14],rang:5,notifi:12,directli:0,curlopt_ssl_verifyp:[1,6,3],curl_init:[1,6,3],number:[5,2,13,3,10],placehold:[1,11],date:[0,5,8,10,11,14],unlik:9,alreadi:[10,9,13],done:8,plaintext_pref:[7,8,9,13],oppos:8,open:[0,3,4,5,6,7,8,12],payload:4,fanci:5,size:2,given:[0,8,9,4],"long":10,script:1,associ:[1,8,9,4,5],system:[8,12,4,14],messag:[4,5,8,12,11,9,14],attach:11,friend:11,curlinfo_http_cod:[1,6,3],shell:0,option:[0,5,7,8,9,10,13,14],especi:8,signup:[0,1,3,4,5,8,12,14],copi:[8,13],member_upd:[12,4],specifi:[0,2,7,8,10,11,9,14],curl_exec:[1,6,3],curlopt_httphead:[1,6,3],member_signup:[12,4],create_search:7,part:[0,9],enclos:11,than:[0,1,2,3,12,13],with_plaintext:9,"02t10":[5,8],"02t11":[5,8],"02t13":5,nathan:8,whenev:8,provid:[1,5,8,12,9,14],remov:[12,8,13,4],mailing_start:4,rate:2,structur:7,charact:9,greg:8,trackabl:11,were:5,minut:0,danc:1,error_count:[7,8,9,13],pre:[4,5,7,8,9,10,13,14],cleaner:1,sai:0,share_id:5,signup_form_id:[0,8,12,9,14],plaintext:[5,9,14],pass:[1,3],ani:[0,1,2,7,8,9],have:[0,5,8,12,9],tabl:5,seen:5,"null":[7,8,13,10,9,14],kevin:[9,14],signup_mail:0,caus:14,inform:[1,4,6,8,9,10,13],object_id:14,note:[1,8,9,4],also:[0,4,5,7,8,9,11,13],exampl:[0,1,3,5,6,7,11],take:[0,4],which:[0,1,4,8,10,12,9,14],some_number_field:0,singl:[0,1,3,4,5,8,10,12,13],excit:11,sure:1,delete_memb:13,normal:9,parent_mail:14,recipient_count:[5,9,14],previou:9,field_id:[10,12,14],last_run_at:7,most:14,pair:11,"class":[4,5,7,8,9,10,13,14],member_group_id:[8,9,13],mcconnel:[9,14],url:[1,3,4,5,6,12],mailing_finish:[12,4],clear:10,request:[1,2,3],doe:[0,5,7,8,10,13],member_status_upd:[12,4],declar:9,tech:4,determin:1,dataset:10,dow:0,recipi:9,"6db0cc7e6fdb2da589b65f29d90c96b6":9,show:[4,5,7,8,9,10,11,13,14],text:[10,11,12],radiu:0,syntax:[0,1,11,9],radio:10,font:[4,5,7,8,9,10,13,14],fine:9,find:[1,6,5],status_to:8,toast:[7,5,8,13],access:[1,5],giant:12,just:[0,9],pretti:8,column_ord:10,explain:[0,1],winner:9,activ:[1,5,7,8,13,9],figur:1,should:[1,2,3,7,8,11,9],templat:[11,14],share_count:5,count:[1,2,3,5],variou:[8,13],confirmed_opt_in:[7,8,9,13],familiar:1,express:0,account:[1,4,5,7,8,10,13,14],cannot:[8,9,4],progress:9,report:[10,8],"18t15":[7,14],requir:[1,7,8,10,11,9],object:[5,13],favorite_food:[5,7,8,13,10,9],bar:0,organ:1,include_archiv:[5,9],"public":1,"default":[5,11,13,4,9],ref_member_id:5,message_share_click:[12,4],through:[1,8,4],where:[0,1,8,11,7],view:1,set:[0,1,2,3,6,8,9,12,13],link_id:[0,5,12,9,14],see:[7,1,8],result:[0,1,2,5,8,9],respons:[0,1,2,4,5,7,8,9,10,13,14],fail:[5,9,4],themselv:2,member_field:[0,7],xxxxx:6,subject:[8,12,9,14],statu:[1,4,5,7,8,9,12,13],fancyonion:11,kei:[0,1,11,4],is_schedul:9,message_forward:[12,4],databas:8,user:[0,8,9,13],last_modified_at:[7,8,9,13],addresse:5,written:1,between:[0,7,2],"import":[1,8,12,4,10],subscript:[1,3],entiti:1,curlopt_url:[1,6,3],email:[0,1,3,5,6,7,8,9,13],wide:14,extend:1,numer:10,http404:[4,5,7,8,9,10,13,14],job:13,entir:[0,8],share_click:5,to_group_id:13,curlopt_returntransf:[1,6,3],addit:[0,1,8,9,11,13],member_remove_from_group:[12,4],send_start:[0,9,14],protect:1,accident:2,last:[0,5,10],delimit:5,pertain:5,message_click:[12,4],curlopt_post:[1,3],audienc:[1,8,9],mang:0,http500:14,seri:5,com:[4,5,6,7,8,9,11,13],zip_code_field:0,"03t15":[7,5,8,13],point:1,toni:[7,8],overview:[0,1,11,12,5],period:1,winner_id:9,colon:[7,11],optout_count:[7,8,9,13],suppli:9,cancel:9,tuesdai:0,duplic:5,quit:[5,8],user_id:4,recur:14,headsup:9,addition:[1,2],due:5,been:[1,8,10,5],mark:[8,9],whom:9,tshow:[4,5,7,8,9,10,13,14],trigger:[1,4,5,7,8,9,10,12,13,14],unsubscrib:0,treat:8,interest:[10,4],basic:[0,1,4,8,13,14],monthli:[7,8,13],blob:4,mailing_mailing_id:5,mailing_id:[0,5,8,12,9,14],fire:[8,4,14],xxx:[1,3],argument:[0,5],link_ord:[5,9],input:1,present:7,clicked_uniqu:5,"case":[1,8],look:[1,14,10],frozen:9,easier:12,email_error:[7,8,9,13],defin:[0,10,8,9],"while":0,outcom:5,abov:[0,1,8,7],error:[1,3,6,8,10,13],loop:8,opt:[0,4,5,7,8,13],readi:9,deliv:5,recipient_group:9,equal:0,itself:0,new_statu:12,webhook_id:4,recipient_memb:9,perform:8,make:[1,12,6,10],belong:[0,8,4],same:4,check:[8,6,9],member:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14],handl:1,html:9,split:9,document:[1,11,12],complet:[1,3,4,6,8,9],week:0,finish:[5,12,4],http:[1,2,3,4,5,6,11,9],href:[4,5,7,8,9,10,13,14],nest:0,someon:4,rais:[4,5,7,8,9,10,13,14],initi:[10,9],php:[1,6,3],bob:[7,5],recent:1,kept:11,center:0,min:5,well:5,inherit:9,person:9,mailing_typ:[9,14],without:0,command:1,thi:[0,1,4,5,7,8,9,10,12,13,14],undefin:0,http_code:[1,6,3],latest:11,construct:[0,7,9],identifi:8,paus:9,execut:[1,3],less:0,resp:[4,5,7,8,9,10,13,14],"_post":[1,3],against:0,aspect:13,recipient_email:9,source_filenam:8,yet:5,smith:[7,5,8,9,13],"12t09":[7,8],display_nam:10,easi:[10,12],"01t00":8,had:0,littl:1,blog:4,add:[12,1,8,13,3],other:[1,8,9,3,5],curlopt_userpwd:[1,6,3],import_finish:[8,12,4],schedul:9,els:[1,6,3],save:7,match:[0,7],build:1,sanit:1,applic:[1,6,3],account_id:[1,3,4,5,6,7,8,9,10,12,13,14],disposit:1,crud:[8,13,14],print_r:[6,3],mailing_statu:[9,14],know:[5,4],background:13,parent_mailing_id:[9,14],bit:1,insert:11,emma:[1,5,7,8,9,12,13],like:1,onion:11,deprec:4,arbitrari:8,manual:9,integ:[1,8,14,10,5],public_kei:4,api:[1,2,6,12,3],either:[0,5,7],bunch:0,output:9,group_id:[1,8,12,3],soft:[0,5],manag:[0,1,13,4],import_id:[8,12],www:[5,9],old:7,deal:[8,13],captur:1,arrai:[0,1,3,5,6,7,8,9,10,12,13,14],some:[1,11,5],field_delet:[12,4],certain:12,intern:10,sampl:[1,4,5,7,8,9,10,13,14],elaps:[2,9],home:11,deleted_at:[7,8,13,10,9,14],some_string_field:0,librari:11,bounce_count:[7,8,9,13],confirm:8,broad:12,per:5,send_finish:[9,14],larg:[0,2],condit:7,three:9,network_cod:12,localhost:9,refer:[5,7,8,13,10,9],with_html_bodi:9,who:[0,5],bold:[4,5,7,8,9,10,13,14],event_typ:14,inspect:1,usag:[1,8,12],num_members_ad:8,fulli:11,from:[1,4,8,9,12,13,14],post:[1,3,4,7,8,9,10,12,13,14],group_creat:[12,4],gladi:[7,5,8,13],actual:5,zip:0,groups_upd:8,column:10,page:2,includ:[1,5,7,8,9,10,13],webview:9,disabl:[9,14],block:[1,2],yyyi:5,member_data:[1,3],glob:0,bounc:[0,5],within:0,encod:[9,4],delivery_typ:[5,8],compos:0,webview_shar:5,field_typ:10,active_count:[7,8,9,13],public_webview_url:9,pivot:5,your:[1,4,5,7,8,9,10,13],websit:11,span:[4,5,7,8,9,10,13,14],wai:[1,12],area:1,overus:2,group_nam:[8,12,13,9],support:12,unique_click:5,json:[0,1,3,4,6,7],fast:8,custom:[5,8,11,10],avail:[0,11,4],start:[1,2,8,4],interfac:12,send_at:[9,14],exceed:2,"var":3,interv:[0,14],deliveri:5,head:[1,6,9,3],form:[1,3,4,6,8,10,14],enough:2,forc:1,forward:[0,4,5,8,12,9],"31st":0,group_typ:[8,9,13],push_offset_unit:14,link:[0,4,5,11,9,14],line:[1,5],realli:1,"true":[0,1,2,3,4,6,7,8,9,10,13,14],archived_t:[9,14],name_last:[1,3],info:4,pull:2,made:1,possibl:[5,8,12],whether:8,maximum:2,tell:12,http403:9,record:[0,7,8],below:[0,1,8,12],http400:[7,8,9],limit:[5,2,8,9],some_array_field:0,otherwis:[10,8],start_t:14,mta:5,connect:[6,3],notif:9,creat:[4,5,7,9,10,12,13,14],"int":5,retriev:[7,1,2,8,9],email_us:[0,5],repres:5,exist:[0,4,5,7,8,10,13],behavior:11,curl:[1,6],lentil:7,probabl:14,echo:[1,3],successfulli:[5,8,9],mailing_subject:12,grp:13,todo:11,when:[8,12,4,9],detail:[1,4,7,8,9,10,13],invalid:[7,8,9],event:[4,7,8,13,12,9,14],field:[0,1,3,4,5,7,8,9,10,11,12,13,14],valid:[5,8,9,13],futur:1,num_skip:8,test:[5,6,7,13,9,14],ignor:8,you:[0,1,2,4,5,7,8,9,10,11,12,13],member_delet:[12,4],member_status_id:[7,5,8,9,13],public_api_kei:[1,6,3],stat:[5,9],claus:[0,7],event_nam:[12,4],e2ma:[1,2,6,3],error_messag:8,param:[9,4],app_messag:[1,3],ella:8,bulk:[1,8],receiv:[0,2,5,8,12,9],heads_up_email:9,longer:9,descript:[4,14],portion:0,opted_out:5,time:[1,2,8,13,5],reply_to:[9,14],resource_url:12,hello:[11,9,14]},objtypes:{"0":"http:get","1":"http:put","2":"http:post","3":"http:delete"},titles:["Search Syntax","Emma API","Pagination","PHP Signup Example","Webhooks","Response","PHP Get Member By Email Example","Searches","Members","Mailings","Fields","Placeholder Syntax","Webhook Usage","Groups","Triggers"],objnames:{"0":["http","get","HTTP get"],"1":["http","put","HTTP put"],"2":["http","post","HTTP post"],"3":["http","delete","HTTP delete"]},filenames:["member_search","index","pagination","php_signup_example","api/external/webhooks","api/external/response","php_get_member_example","api/external/searches","api/external/members","api/external/mailings","api/external/fields","placeholders","webhooks","api/external/groups","api/external/triggers"]}) \ No newline at end of file diff --git a/webhooks.html b/webhooks.html index a64aa3d..3675c0f 100644 --- a/webhooks.html +++ b/webhooks.html @@ -466,7 +466,7 @@ <h3>Quick search</h3> </div> <div class="footer"> © Copyright 2012, Emma. - Last updated on Dec 17, 2012 at 17:02. + Last updated on Dec 18, 2012 at 15:53. </div> </body> </html> \ No newline at end of file From 5f71d8df4044f716d236407820bdad840e750948 Mon Sep 17 00:00:00 2001 From: Lance Roggendorff <lance.roggendorff@myemma.com> Date: Tue, 18 Dec 2012 16:13:33 -0600 Subject: [PATCH 008/219] Update audience documentation. --- api/external/fields.html | 2 +- api/external/groups.html | 2 +- api/external/mailings.html | 2 +- api/external/members.html | 2 +- api/external/response.html | 2 +- api/external/searches.html | 4 ++-- api/external/triggers.html | 8 ++++---- api/external/webhooks.html | 2 +- genindex.html | 2 +- http-routingtable.html | 2 +- index.html | 2 +- member_search.html | 2 +- pagination.html | 2 +- php_get_member_example.html | 2 +- php_signup_example.html | 2 +- placeholders.html | 2 +- search.html | 2 +- searchindex.js | 2 +- webhooks.html | 2 +- 19 files changed, 23 insertions(+), 23 deletions(-) diff --git a/api/external/fields.html b/api/external/fields.html index 5832f3e..126e50b 100644 --- a/api/external/fields.html +++ b/api/external/fields.html @@ -374,7 +374,7 @@ <h3>Quick search</h3> </div> <div class="footer"> © Copyright 2012, Emma. - Last updated on Dec 18, 2012 at 15:53. + Last updated on Dec 18, 2012 at 16:13. </div> </body> </html> \ No newline at end of file diff --git a/api/external/groups.html b/api/external/groups.html index 1331690..257e0fb 100644 --- a/api/external/groups.html +++ b/api/external/groups.html @@ -661,7 +661,7 @@ <h3>Quick search</h3> </div> <div class="footer"> © Copyright 2012, Emma. - Last updated on Dec 18, 2012 at 15:53. + Last updated on Dec 18, 2012 at 16:13. </div> </body> </html> \ No newline at end of file diff --git a/api/external/mailings.html b/api/external/mailings.html index 7f1f66a..c82e010 100644 --- a/api/external/mailings.html +++ b/api/external/mailings.html @@ -768,7 +768,7 @@ <h3>Quick search</h3> </div> <div class="footer"> © Copyright 2012, Emma. - Last updated on Dec 18, 2012 at 15:53. + Last updated on Dec 18, 2012 at 16:13. </div> </body> </html> \ No newline at end of file diff --git a/api/external/members.html b/api/external/members.html index 5f4913f..57aa1c2 100644 --- a/api/external/members.html +++ b/api/external/members.html @@ -1143,7 +1143,7 @@ <h3>Quick search</h3> </div> <div class="footer"> © Copyright 2012, Emma. - Last updated on Dec 18, 2012 at 15:53. + Last updated on Dec 18, 2012 at 16:13. </div> </body> </html> \ No newline at end of file diff --git a/api/external/response.html b/api/external/response.html index ebbada7..e8ff1f4 100644 --- a/api/external/response.html +++ b/api/external/response.html @@ -978,7 +978,7 @@ <h3>Quick search</h3> </div> <div class="footer"> © Copyright 2012, Emma. - Last updated on Dec 18, 2012 at 15:53. + Last updated on Dec 18, 2012 at 16:13. </div> </body> </html> \ No newline at end of file diff --git a/api/external/searches.html b/api/external/searches.html index 83f858b..d76545c 100644 --- a/api/external/searches.html +++ b/api/external/searches.html @@ -172,7 +172,7 @@ <h1>Searches<a class="headerlink" href="#searches" title="Permalink to this head "name": "Test Search", "criteria": "[\"or\", [\"group\", \"eq\", \"Monthly Newsletter\"],[\"group\", \"eq\", \"Widget Buyers\"]]", "deleted_at": null, - "last_run_at": "@D:2012-12-18T15:53:53", + "last_run_at": "@D:2012-12-18T16:13:29", "active_count": 2, "account_id": 100 } @@ -470,7 +470,7 @@ <h3>Quick search</h3> </div> <div class="footer"> © Copyright 2012, Emma. - Last updated on Dec 18, 2012 at 15:53. + Last updated on Dec 18, 2012 at 16:13. </div> </body> </html> \ No newline at end of file diff --git a/api/external/triggers.html b/api/external/triggers.html index 0b33427..518de4f 100644 --- a/api/external/triggers.html +++ b/api/external/triggers.html @@ -121,7 +121,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": 203, "push_offset_units": "0:-14:0:0", - "start_ts": "@D:2012-12-18T15:53:50", + "start_ts": "@D:2012-12-18T16:13:26", "trigger_id": 100, "signups": null, "push_offset": "@I:-1209600.0", @@ -162,7 +162,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": null, "push_offset_units": "0:3:0:0", - "start_ts": "@D:2012-12-18T15:53:50", + "start_ts": "@D:2012-12-18T16:13:26", "trigger_id": 101, "signups": [ 1, @@ -299,7 +299,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": 203, "push_offset_units": "0:-14:0:0", - "start_ts": "@D:2012-12-18T15:53:50", + "start_ts": "@D:2012-12-18T16:13:26", "trigger_id": 100, "signups": null, "push_offset": "@I:-1209600.0", @@ -458,7 +458,7 @@ <h3>Quick search</h3> </div> <div class="footer"> © Copyright 2012, Emma. - Last updated on Dec 18, 2012 at 15:53. + Last updated on Dec 18, 2012 at 16:13. </div> </body> </html> \ No newline at end of file diff --git a/api/external/webhooks.html b/api/external/webhooks.html index 6539b34..386548f 100644 --- a/api/external/webhooks.html +++ b/api/external/webhooks.html @@ -446,7 +446,7 @@ <h3>Quick search</h3> </div> <div class="footer"> © Copyright 2012, Emma. - Last updated on Dec 18, 2012 at 15:53. + Last updated on Dec 18, 2012 at 16:13. </div> </body> </html> \ No newline at end of file diff --git a/genindex.html b/genindex.html index 93f5a30..548c84f 100644 --- a/genindex.html +++ b/genindex.html @@ -108,7 +108,7 @@ <h3>Quick search</h3> </div> <div class="footer"> © Copyright 2012, Emma. - Last updated on Dec 18, 2012 at 15:53. + Last updated on Dec 18, 2012 at 16:13. </div> </body> </html> \ No newline at end of file diff --git a/http-routingtable.html b/http-routingtable.html index 38bd45c..5deb0ed 100644 --- a/http-routingtable.html +++ b/http-routingtable.html @@ -561,7 +561,7 @@ <h3>Quick search</h3> </div> <div class="footer"> © Copyright 2012, Emma. - Last updated on Dec 18, 2012 at 15:53. + Last updated on Dec 18, 2012 at 16:13. </div> </body> </html> \ No newline at end of file diff --git a/index.html b/index.html index d44d673..1922c7a 100644 --- a/index.html +++ b/index.html @@ -284,7 +284,7 @@ <h3>Quick search</h3> </div> <div class="footer"> © Copyright 2012, Emma. - Last updated on Dec 18, 2012 at 15:53. + Last updated on Dec 18, 2012 at 16:13. </div> </body> </html> \ No newline at end of file diff --git a/member_search.html b/member_search.html index 5527a78..2f07268 100644 --- a/member_search.html +++ b/member_search.html @@ -215,7 +215,7 @@ <h3>Quick search</h3> </div> <div class="footer"> © Copyright 2012, Emma. - Last updated on Dec 18, 2012 at 15:53. + Last updated on Dec 18, 2012 at 16:13. </div> </body> </html> \ No newline at end of file diff --git a/pagination.html b/pagination.html index 7d637eb..426a489 100644 --- a/pagination.html +++ b/pagination.html @@ -127,7 +127,7 @@ <h3>Quick search</h3> </div> <div class="footer"> © Copyright 2012, Emma. - Last updated on Dec 18, 2012 at 15:53. + Last updated on Dec 18, 2012 at 16:13. </div> </body> </html> \ No newline at end of file diff --git a/php_get_member_example.html b/php_get_member_example.html index a95cc3a..bb89b37 100644 --- a/php_get_member_example.html +++ b/php_get_member_example.html @@ -142,7 +142,7 @@ <h3>Quick search</h3> </div> <div class="footer"> © Copyright 2012, Emma. - Last updated on Dec 18, 2012 at 15:53. + Last updated on Dec 18, 2012 at 16:13. </div> </body> </html> \ No newline at end of file diff --git a/php_signup_example.html b/php_signup_example.html index 6fc6cc3..05da2ce 100644 --- a/php_signup_example.html +++ b/php_signup_example.html @@ -164,7 +164,7 @@ <h3>Quick search</h3> </div> <div class="footer"> © Copyright 2012, Emma. - Last updated on Dec 18, 2012 at 15:53. + Last updated on Dec 18, 2012 at 16:13. </div> </body> </html> \ No newline at end of file diff --git a/placeholders.html b/placeholders.html index afe6cf9..38c236a 100644 --- a/placeholders.html +++ b/placeholders.html @@ -142,7 +142,7 @@ <h3>Quick search</h3> </div> <div class="footer"> © Copyright 2012, Emma. - Last updated on Dec 18, 2012 at 15:53. + Last updated on Dec 18, 2012 at 16:13. </div> </body> </html> \ No newline at end of file diff --git a/search.html b/search.html index 457c310..ef7e6f2 100644 --- a/search.html +++ b/search.html @@ -112,7 +112,7 @@ <h1 id="search-documentation">Search</h1> </div> <div class="footer"> © Copyright 2012, Emma. - Last updated on Dec 18, 2012 at 15:53. + Last updated on Dec 18, 2012 at 16:13. </div> </body> </html> \ No newline at end of file diff --git a/searchindex.js b/searchindex.js index a0fb447..a82933c 100644 --- a/searchindex.js +++ b/searchindex.js @@ -1 +1 @@ -Search.setIndex({objects:{"":{"/#account_id/members/#member_id/groups/remove":[8,1,1,"put--#account_id-members-#member_id-groups-remove"],"/#account_id/mailings/#mailing_id/winner/#winner_id":[9,2,1,"post--#account_id-mailings-#mailing_id-winner-#winner_id"],"/#account_id/response/#mailing_id/in_progress":[5,0,1,"get--#account_id-response-#mailing_id-in_progress"],"/#account_id/members/groups/remove":[8,1,1,"put--#account_id-members-groups-remove"],"/#account_id/mailings/#mailing_id/searches":[9,0,1,"get--#account_id-mailings-#mailing_id-searches"],"/#account_id/fields":[10,2,1,"post--#account_id-fields"],"/#account_id/members/#group_id/copy":[8,1,1,"put--#account_id-members-#group_id-copy"],"/#account_id/members/status":[8,1,1,"put--#account_id-members-status"],"/#account_id/response/#mailing_id/shares/overview":[5,0,1,"get--#account_id-response-#mailing_id-shares-overview"],"/#account_id/webhooks/events":[4,0,1,"get--#account_id-webhooks-events"],"/#account_id/members/#member_id/optout":[8,0,1,"get--#account_id-members-#member_id-optout"],"/#account_id/webhooks":[4,3,1,"delete--#account_id-webhooks"],"/#account_id/fields/#field_id":[10,3,1,"delete--#account_id-fields-#field_id"],"/#account_id/response/#mailing_id":[5,0,1,"get--#account_id-response-#mailing_id"],"/#account_id/groups/#member_group_id/members/remove":[13,3,1,"delete--#account_id-groups-#member_group_id-members-remove"],"/#account_id/searches":[7,2,1,"post--#account_id-searches"],"/#account_id/members/imports":[8,0,1,"get--#account_id-members-imports"],"/#account_id/forwards/#mailing_id/#member_id":[9,2,1,"post--#account_id-forwards-#mailing_id-#member_id"],"/#account_id/response/#mailing_id/customer_share_clicks":[5,0,1,"get--#account_id-response-#mailing_id-customer_share_clicks"],"/#account_id/mailings/#mailing_id/messages/#member_id":[9,0,1,"get--#account_id-mailings-#mailing_id-messages-#member_id"],"/#account_id/members/#member_id/mailings":[8,0,1,"get--#account_id-members-#member_id-mailings"],"/#account_id/groups/#from_group_id/#to_group_id/members/copy":[13,1,1,"put--#account_id-groups-#from_group_id-#to_group_id-members-copy"],"/#account_id/triggers":[14,2,1,"post--#account_id-triggers"],"/#account_id/triggers/#trigger_id":[14,3,1,"delete--#account_id-triggers-#trigger_id"],"/#account_id/members/delete":[8,1,1,"put--#account_id-members-delete"],"/#account_id/mailings/#mailing_id/groups":[9,0,1,"get--#account_id-mailings-#mailing_id-groups"],"/#account_id/response/#mailing_id/forwards":[5,0,1,"get--#account_id-response-#mailing_id-forwards"],"/#account_id/members/#member_id":[8,3,1,"delete--#account_id-members-#member_id"],"/#account_id/triggers/#trigger_id/mailings":[14,0,1,"get--#account_id-triggers-#trigger_id-mailings"],"/#account_id/searches/#search_id/members":[7,0,1,"get--#account_id-searches-#search_id-members"],"/#account_id/members/status/:status_from/to/:status_to":[8,1,1,"put--#account_id-members-status--status_from-to--status_to"],"/#account_id/response/#mailing_id/sends":[5,0,1,"get--#account_id-response-#mailing_id-sends"],"/#account_id/members":[8,3,1,"delete--#account_id-members"],"/#account_id/members/email/:email":[8,0,1,"get--#account_id-members-email--email"],"/#account_id/response/#mailing_id/links":[5,0,1,"get--#account_id-response-#mailing_id-links"],"/#account_id/searches/#search_id":[7,3,1,"delete--#account_id-searches-#search_id"],"/#account_id/members/imports/#import_id/members":[8,0,1,"get--#account_id-members-imports-#import_id-members"],"/#account_id/fields/#field_id/clear":[10,2,1,"post--#account_id-fields-#field_id-clear"],"/#account_id/groups/#member_group_id/members":[13,3,1,"delete--#account_id-groups-#member_group_id-members"],"/#account_id/members/imports/#import_id":[8,0,1,"get--#account_id-members-imports-#import_id"],"/#account_id/response":[5,0,1,"get--#account_id-response"],"/#account_id/response/#mailing_id/opens":[5,0,1,"get--#account_id-response-#mailing_id-opens"],"/#account_id/members/imports/delete":[8,3,1,"delete--#account_id-members-imports-delete"],"/#account_id/mailings":[9,0,1,"get--#account_id-mailings"],"/#account_id/mailings/cancel/#mailing_id":[9,3,1,"delete--#account_id-mailings-cancel-#mailing_id"],"/#account_id/mailings/validate":[9,2,1,"post--#account_id-mailings-validate"],"/#account_id/response/#mailing_id/deliveries":[5,0,1,"get--#account_id-response-#mailing_id-deliveries"],"/#account_id/mailings/#mailing_id/members":[9,0,1,"get--#account_id-mailings-#mailing_id-members"],"/#account_id/response/#share_id/customer_share":[5,0,1,"get--#account_id-response-#share_id-customer_share"],"/#account_id/webhooks/#webhook_id":[4,3,1,"delete--#account_id-webhooks-#webhook_id"],"/#account_id/members/add":[8,2,1,"post--#account_id-members-add"],"/#account_id/response/#mailing_id/optouts":[5,0,1,"get--#account_id-response-#mailing_id-optouts"],"/#account_id/response/#mailing_id/shares":[5,0,1,"get--#account_id-response-#mailing_id-shares"],"/#account_id/groups/#member_group_id":[13,3,1,"delete--#account_id-groups-#member_group_id"],"/#account_id/mailings/#mailing_id":[9,3,1,"delete--#account_id-mailings-#mailing_id"],"/#account_id/members/#member_id/groups":[8,3,1,"delete--#account_id-members-#member_id-groups"],"/#account_id/groups":[13,2,1,"post--#account_id-groups"],"/#account_id/response/#mailing_id/clicks":[5,0,1,"get--#account_id-response-#mailing_id-clicks"],"/#account_id/mailings/#mailing_id/headsup":[9,0,1,"get--#account_id-mailings-#mailing_id-headsup"],"/#account_id/response/#mailing_id/signups":[5,0,1,"get--#account_id-response-#mailing_id-signups"],"/#account_id/response/#mailing_id/customer_shares":[5,0,1,"get--#account_id-response-#mailing_id-customer_shares"]}},terms:{all:[0,1,4,5,8,9,10,11,12,13,14],code:[0,1,6,3],change_typ:8,queri:[0,2,4],month:[0,5,9,14],four:[0,5],mile:0,least:0,field_creat:[12,4],link_target:[5,9],content:[1,11,6,9,3],privat:1,specif:[8,9,4],friendli:5,send:[1,9,4,3,5],customer_share_click:5,those:[5,12],group_upd:[12,4],sent:[5,8,12,9,14],curl_clos:[1,6,3],brown:[7,8],digit:5,everi:0,string:[0,4,5,7,8,9,10,12,13,14],fals:[1,3,4,5,6,7,8,9,10,13,14],webhook:[1,12,4],mailing_status:9,trigger_id:14,webview_share_click:5,affect:[7,8],member_add:[12,4],create_mail:9,new_boolean:10,foo:0,level:1,group_delet:[12,4],list:[0,1,2,4,5,7,8,9,10,11,12,13,14],upload:8,iter:2,"try":8,item:2,plaintext_onli:[9,14],div:[4,5,7,8,9,10,13,14],survey_id:14,pleas:[1,8,11,9],prevent:2,work:[1,4],ten:0,sync:10,sign:[0,5,4],past:1,second:[0,7,14],follow:[0,1,4,5,7,9,11,13],further:1,durat:9,click:[0,4,5,7,8,12,14],append:2,even:10,what:1,hide:[4,5,7,8,9,10,13,14],appear:1,from_group_id:13,section:1,current:[8,12,9],delet:[1,4,7,8,9,10,12,13,14],"new":[1,4,5,7,8,9,10,11,13,14],net:[1,2,6,3],delivery_t:8,method:[5,8,13,4,9],can:[0,1,2,4,5,7,8,9,11,12,13],widget:[7,10,8,9,13],hash:0,datematch:0,displai:10,variat:9,gener:[0,8,12,14],onli:[5,8],here:[0,1,3,5,6,8],bodi:9,let:[1,4,10],address:[0,1,8,6,9],along:8,sinc:8,valu:[0,5,7,8,10,11],field_upd:[12,4],search:[0,1,9,7],survei:14,sender:[9,14],larger:2,queue:5,prior:9,action:[0,8],chang:[8,4],name_first:[1,3],campaign:5,newbi:5,appli:[7,14],prefer:0,myemma:[4,5,7,8,9,13],filenam:8,customer_shar:5,"boolean":[0,1,5,7,8,9,10,13,14],curlopt_postfield:[1,3],total:5,jone:[7,5,8,13],select:10,newslett:[7,8,13],describ:7,would:[0,1],regist:4,two:[0,5],next:[0,1],create_webhook:4,few:[5,8],call:[1,2,3,4,6,8,12],criteria:7,member_add_to_group:[12,4],type:[1,3,4,5,6,7,10,9,14],until:2,more:[0,4,7,8,9,13],peopl:5,relat:[1,8,11,9],about:[10,8,12,4,9],notic:8,thide:[4,5,7,8,9,10,13,14],flag:[5,7,8,10,9,14],exce:2,indic:8,examin:1,particular:[1,4,5,8,10,12,9],in_progress:5,origin:9,must:[0,7,13,10],none:9,endpoint:[1,4,5,7,8,9,10,13,14],join:[0,7],hour:0,setup:1,member_sinc:[0,5,7,8,9,13],uniqu:5,histori:8,soup:7,remain:[0,9],archiv:[5,9],member_optout:[12,4],drill:5,control:[1,11,9],quickstart:1,give:5,forward_mailing_id:5,email_domain:[0,5],share:[0,5,8,12,4],accept:[0,5,7,8,9,10,11,13,14],total_click:5,tag:[11,9],want:[1,12,13,5],occur:[7,12],some_numeric_field:0,delai:14,alwai:0,webhook_event_id:4,cours:1,end:[2,8],first_nam:[1,3,5,7,8,9,10,11,13,14],started_or_finish:[9,14],anoth:[9,13],get:[1,4,5,6,7,8,9,10,13,14],message_open:[12,4],html_bodi:[9,14],share_statu:5,push_offset:14,del_statu:5,tild:5,num_members_upd:8,simpl:0,chri:9,pizza:[7,8],map:0,autent:1,referenc:7,xxxx:6,sundai:0,membership:13,taco:[7,5,8,9,13],mai:12,multipl:[10,8],data:[1,3,4,5,10,12],welcom:11,add_onli:8,"short":0,json_encod:[1,3],optout:[5,8,12,13],num_dupl:8,favorit:10,correspond:[0,1],greet:11,predic:[0,1],issu:[1,10],"12t11":[7,5,8,9,13],combin:7,allow:[0,7,8],some_zipcode_field:0,signed_up:5,order:[5,10],michel:[8,9],mailing_nam:5,checkbox:10,fields_upd:8,over:2,becaus:12,buyer:[7,8,9,13],comma:[9,13],is_dis:14,vari:8,paramet:[2,4,5,7,8,9,10,13,14],widget_typ:10,style:[0,4,5,7,8,9,10,13,14],group:[0,1,3,4,7,8,9,12,13,14],curl_setopt:[1,6,3],how:[7,1,2,4],import_start:8,better:[13,14],platform:1,pend:[1,9],mailing_list:9,onc:9,mail:[0,1,4,5,8,11,12,9,14],hidden:13,main:1,might:[1,4],link_nam:[5,9],them:[8,9],"return":[0,1,4,5,7,8,9,10,12,13,14],greater:[0,8],thei:[0,9],food:10,timestamp:[0,5,12,9,10],spell:4,dai:0,auth:1,instead:[12,2,8],now:5,down:5,term:[0,1],alex:9,name:[0,4,5,7,8,9,10,11,13,14],edit:[7,1,14,10],curl_getinfo:[1,6,3],authent:[1,6,4,3],successufulli:4,separ:[1,9,13],each:[1,2,5,9,12,11,13],found:[8,9,4,14],updat:[4,7,8,9,10,12,13,14],mean:0,status:[8,9],domain:0,shortcut_nam:10,weight:[4,5,7,8,9,10,13,14],resum:9,individu:[1,8],hard:[0,5],last_nam:[1,3,5,7,8,9,10,11,13,14],"05t15":5,birthdai:[10,14],expect:1,year:[0,5,9,14],our:[1,11,12,4,14],happen:[1,4,5],extract:11,short_display_nam:10,special:[0,7,8,13],out:[0,1,4,5,7,8,10,13],variabl:[1,6,3],message_shar:[12,4],network:[5,12],private_api_kei:[1,6,3],check_multipl:10,categori:1,rel:0,print:6,correct:10,statist:8,benjamin:8,qualifi:11,insid:1,advanc:0,contain:[0,5,7,13,10,9],differ:0,standard:[5,9],status_from:8,base:[5,8],recipient_search:9,dictionari:8,put:[4,7,8,9,10,13,14],"13t23":[7,5,8],visit:11,could:1,omit:5,success:[7,1,9,13,3],filter:[0,1,7],search_id:7,pagin:[1,2],member_id:[5,7,8,9,12,13],summari:[1,5],assign:9,first:[0,1,10,5],oper:[0,1,7,14],rang:5,notifi:12,directli:0,curlopt_ssl_verifyp:[1,6,3],curl_init:[1,6,3],number:[5,2,13,3,10],placehold:[1,11],date:[0,5,8,10,11,14],unlik:9,alreadi:[10,9,13],done:8,plaintext_pref:[7,8,9,13],oppos:8,open:[0,3,4,5,6,7,8,12],payload:4,fanci:5,size:2,given:[0,8,9,4],"long":10,script:1,associ:[1,8,9,4,5],system:[8,12,4,14],messag:[4,5,8,12,11,9,14],attach:11,friend:11,curlinfo_http_cod:[1,6,3],shell:0,option:[0,5,7,8,9,10,13,14],especi:8,signup:[0,1,3,4,5,8,12,14],copi:[8,13],member_upd:[12,4],specifi:[0,2,7,8,10,11,9,14],curl_exec:[1,6,3],curlopt_httphead:[1,6,3],member_signup:[12,4],create_search:7,part:[0,9],enclos:11,than:[0,1,2,3,12,13],with_plaintext:9,"02t10":[5,8],"02t11":[5,8],"02t13":5,nathan:8,whenev:8,provid:[1,5,8,12,9,14],remov:[12,8,13,4],mailing_start:4,rate:2,structur:7,charact:9,greg:8,trackabl:11,were:5,minut:0,danc:1,error_count:[7,8,9,13],pre:[4,5,7,8,9,10,13,14],cleaner:1,sai:0,share_id:5,signup_form_id:[0,8,12,9,14],plaintext:[5,9,14],pass:[1,3],ani:[0,1,2,7,8,9],have:[0,5,8,12,9],tabl:5,seen:5,"null":[7,8,13,10,9,14],kevin:[9,14],signup_mail:0,caus:14,inform:[1,4,6,8,9,10,13],object_id:14,note:[1,8,9,4],also:[0,4,5,7,8,9,11,13],exampl:[0,1,3,5,6,7,11],take:[0,4],which:[0,1,4,8,10,12,9,14],some_number_field:0,singl:[0,1,3,4,5,8,10,12,13],excit:11,sure:1,delete_memb:13,normal:9,parent_mail:14,recipient_count:[5,9,14],previou:9,field_id:[10,12,14],last_run_at:7,most:14,pair:11,"class":[4,5,7,8,9,10,13,14],member_group_id:[8,9,13],mcconnel:[9,14],url:[1,3,4,5,6,12],mailing_finish:[12,4],clear:10,request:[1,2,3],doe:[0,5,7,8,10,13],member_status_upd:[12,4],declar:9,tech:4,determin:1,dataset:10,dow:0,recipi:9,"6db0cc7e6fdb2da589b65f29d90c96b6":9,show:[4,5,7,8,9,10,11,13,14],text:[10,11,12],radiu:0,syntax:[0,1,11,9],radio:10,font:[4,5,7,8,9,10,13,14],fine:9,find:[1,6,5],status_to:8,toast:[7,5,8,13],access:[1,5],giant:12,just:[0,9],pretti:8,column_ord:10,explain:[0,1],winner:9,activ:[1,5,7,8,13,9],figur:1,should:[1,2,3,7,8,11,9],templat:[11,14],share_count:5,count:[1,2,3,5],variou:[8,13],confirmed_opt_in:[7,8,9,13],familiar:1,express:0,account:[1,4,5,7,8,10,13,14],cannot:[8,9,4],progress:9,report:[10,8],"18t15":[7,14],requir:[1,7,8,10,11,9],object:[5,13],favorite_food:[5,7,8,13,10,9],bar:0,organ:1,include_archiv:[5,9],"public":1,"default":[5,11,13,4,9],ref_member_id:5,message_share_click:[12,4],through:[1,8,4],where:[0,1,8,11,7],view:1,set:[0,1,2,3,6,8,9,12,13],link_id:[0,5,12,9,14],see:[7,1,8],result:[0,1,2,5,8,9],respons:[0,1,2,4,5,7,8,9,10,13,14],fail:[5,9,4],themselv:2,member_field:[0,7],xxxxx:6,subject:[8,12,9,14],statu:[1,4,5,7,8,9,12,13],fancyonion:11,kei:[0,1,11,4],is_schedul:9,message_forward:[12,4],databas:8,user:[0,8,9,13],last_modified_at:[7,8,9,13],addresse:5,written:1,between:[0,7,2],"import":[1,8,12,4,10],subscript:[1,3],entiti:1,curlopt_url:[1,6,3],email:[0,1,3,5,6,7,8,9,13],wide:14,extend:1,numer:10,http404:[4,5,7,8,9,10,13,14],job:13,entir:[0,8],share_click:5,to_group_id:13,curlopt_returntransf:[1,6,3],addit:[0,1,8,9,11,13],member_remove_from_group:[12,4],send_start:[0,9,14],protect:1,accident:2,last:[0,5,10],delimit:5,pertain:5,message_click:[12,4],curlopt_post:[1,3],audienc:[1,8,9],mang:0,http500:14,seri:5,com:[4,5,6,7,8,9,11,13],zip_code_field:0,"03t15":[7,5,8,13],point:1,toni:[7,8],overview:[0,1,11,12,5],period:1,winner_id:9,colon:[7,11],optout_count:[7,8,9,13],suppli:9,cancel:9,tuesdai:0,duplic:5,quit:[5,8],user_id:4,recur:14,headsup:9,addition:[1,2],due:5,been:[1,8,10,5],mark:[8,9],whom:9,tshow:[4,5,7,8,9,10,13,14],trigger:[1,4,5,7,8,9,10,12,13,14],unsubscrib:0,treat:8,interest:[10,4],basic:[0,1,4,8,13,14],monthli:[7,8,13],blob:4,mailing_mailing_id:5,mailing_id:[0,5,8,12,9,14],fire:[8,4,14],xxx:[1,3],argument:[0,5],link_ord:[5,9],input:1,present:7,clicked_uniqu:5,"case":[1,8],look:[1,14,10],frozen:9,easier:12,email_error:[7,8,9,13],defin:[0,10,8,9],"while":0,outcom:5,abov:[0,1,8,7],error:[1,3,6,8,10,13],loop:8,opt:[0,4,5,7,8,13],readi:9,deliv:5,recipient_group:9,equal:0,itself:0,new_statu:12,webhook_id:4,recipient_memb:9,perform:8,make:[1,12,6,10],belong:[0,8,4],same:4,check:[8,6,9],member:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14],handl:1,html:9,split:9,document:[1,11,12],complet:[1,3,4,6,8,9],week:0,finish:[5,12,4],http:[1,2,3,4,5,6,11,9],href:[4,5,7,8,9,10,13,14],nest:0,someon:4,rais:[4,5,7,8,9,10,13,14],initi:[10,9],php:[1,6,3],bob:[7,5],recent:1,kept:11,center:0,min:5,well:5,inherit:9,person:9,mailing_typ:[9,14],without:0,command:1,thi:[0,1,4,5,7,8,9,10,12,13,14],undefin:0,http_code:[1,6,3],latest:11,construct:[0,7,9],identifi:8,paus:9,execut:[1,3],less:0,resp:[4,5,7,8,9,10,13,14],"_post":[1,3],against:0,aspect:13,recipient_email:9,source_filenam:8,yet:5,smith:[7,5,8,9,13],"12t09":[7,8],display_nam:10,easi:[10,12],"01t00":8,had:0,littl:1,blog:4,add:[12,1,8,13,3],other:[1,8,9,3,5],curlopt_userpwd:[1,6,3],import_finish:[8,12,4],schedul:9,els:[1,6,3],save:7,match:[0,7],build:1,sanit:1,applic:[1,6,3],account_id:[1,3,4,5,6,7,8,9,10,12,13,14],disposit:1,crud:[8,13,14],print_r:[6,3],mailing_statu:[9,14],know:[5,4],background:13,parent_mailing_id:[9,14],bit:1,insert:11,emma:[1,5,7,8,9,12,13],like:1,onion:11,deprec:4,arbitrari:8,manual:9,integ:[1,8,14,10,5],public_kei:4,api:[1,2,6,12,3],either:[0,5,7],bunch:0,output:9,group_id:[1,8,12,3],soft:[0,5],manag:[0,1,13,4],import_id:[8,12],www:[5,9],old:7,deal:[8,13],captur:1,arrai:[0,1,3,5,6,7,8,9,10,12,13,14],some:[1,11,5],field_delet:[12,4],certain:12,intern:10,sampl:[1,4,5,7,8,9,10,13,14],elaps:[2,9],home:11,deleted_at:[7,8,13,10,9,14],some_string_field:0,librari:11,bounce_count:[7,8,9,13],confirm:8,broad:12,per:5,send_finish:[9,14],larg:[0,2],condit:7,three:9,network_cod:12,localhost:9,refer:[5,7,8,13,10,9],with_html_bodi:9,who:[0,5],bold:[4,5,7,8,9,10,13,14],event_typ:14,inspect:1,usag:[1,8,12],num_members_ad:8,fulli:11,from:[1,4,8,9,12,13,14],post:[1,3,4,7,8,9,10,12,13,14],group_creat:[12,4],gladi:[7,5,8,13],actual:5,zip:0,groups_upd:8,column:10,page:2,includ:[1,5,7,8,9,10,13],webview:9,disabl:[9,14],block:[1,2],yyyi:5,member_data:[1,3],glob:0,bounc:[0,5],within:0,encod:[9,4],delivery_typ:[5,8],compos:0,webview_shar:5,field_typ:10,active_count:[7,8,9,13],public_webview_url:9,pivot:5,your:[1,4,5,7,8,9,10,13],websit:11,span:[4,5,7,8,9,10,13,14],wai:[1,12],area:1,overus:2,group_nam:[8,12,13,9],support:12,unique_click:5,json:[0,1,3,4,6,7],fast:8,custom:[5,8,11,10],avail:[0,11,4],start:[1,2,8,4],interfac:12,send_at:[9,14],exceed:2,"var":3,interv:[0,14],deliveri:5,head:[1,6,9,3],form:[1,3,4,6,8,10,14],enough:2,forc:1,forward:[0,4,5,8,12,9],"31st":0,group_typ:[8,9,13],push_offset_unit:14,link:[0,4,5,11,9,14],line:[1,5],realli:1,"true":[0,1,2,3,4,6,7,8,9,10,13,14],archived_t:[9,14],name_last:[1,3],info:4,pull:2,made:1,possibl:[5,8,12],whether:8,maximum:2,tell:12,http403:9,record:[0,7,8],below:[0,1,8,12],http400:[7,8,9],limit:[5,2,8,9],some_array_field:0,otherwis:[10,8],start_t:14,mta:5,connect:[6,3],notif:9,creat:[4,5,7,9,10,12,13,14],"int":5,retriev:[7,1,2,8,9],email_us:[0,5],repres:5,exist:[0,4,5,7,8,10,13],behavior:11,curl:[1,6],lentil:7,probabl:14,echo:[1,3],successfulli:[5,8,9],mailing_subject:12,grp:13,todo:11,when:[8,12,4,9],detail:[1,4,7,8,9,10,13],invalid:[7,8,9],event:[4,7,8,13,12,9,14],field:[0,1,3,4,5,7,8,9,10,11,12,13,14],valid:[5,8,9,13],futur:1,num_skip:8,test:[5,6,7,13,9,14],ignor:8,you:[0,1,2,4,5,7,8,9,10,11,12,13],member_delet:[12,4],member_status_id:[7,5,8,9,13],public_api_kei:[1,6,3],stat:[5,9],claus:[0,7],event_nam:[12,4],e2ma:[1,2,6,3],error_messag:8,param:[9,4],app_messag:[1,3],ella:8,bulk:[1,8],receiv:[0,2,5,8,12,9],heads_up_email:9,longer:9,descript:[4,14],portion:0,opted_out:5,time:[1,2,8,13,5],reply_to:[9,14],resource_url:12,hello:[11,9,14]},objtypes:{"0":"http:get","1":"http:put","2":"http:post","3":"http:delete"},titles:["Search Syntax","Emma API","Pagination","PHP Signup Example","Webhooks","Response","PHP Get Member By Email Example","Searches","Members","Mailings","Fields","Placeholder Syntax","Webhook Usage","Groups","Triggers"],objnames:{"0":["http","get","HTTP get"],"1":["http","put","HTTP put"],"2":["http","post","HTTP post"],"3":["http","delete","HTTP delete"]},filenames:["member_search","index","pagination","php_signup_example","api/external/webhooks","api/external/response","php_get_member_example","api/external/searches","api/external/members","api/external/mailings","api/external/fields","placeholders","webhooks","api/external/groups","api/external/triggers"]}) \ No newline at end of file +Search.setIndex({objects:{"":{"/#account_id/members/#member_id/groups/remove":[8,1,1,"put--#account_id-members-#member_id-groups-remove"],"/#account_id/mailings/#mailing_id/winner/#winner_id":[9,2,1,"post--#account_id-mailings-#mailing_id-winner-#winner_id"],"/#account_id/response/#mailing_id/in_progress":[5,0,1,"get--#account_id-response-#mailing_id-in_progress"],"/#account_id/members/groups/remove":[8,1,1,"put--#account_id-members-groups-remove"],"/#account_id/mailings/#mailing_id/searches":[9,0,1,"get--#account_id-mailings-#mailing_id-searches"],"/#account_id/fields":[10,2,1,"post--#account_id-fields"],"/#account_id/members/#group_id/copy":[8,1,1,"put--#account_id-members-#group_id-copy"],"/#account_id/members/status":[8,1,1,"put--#account_id-members-status"],"/#account_id/response/#mailing_id/shares/overview":[5,0,1,"get--#account_id-response-#mailing_id-shares-overview"],"/#account_id/webhooks/events":[4,0,1,"get--#account_id-webhooks-events"],"/#account_id/members/#member_id/optout":[8,0,1,"get--#account_id-members-#member_id-optout"],"/#account_id/webhooks":[4,3,1,"delete--#account_id-webhooks"],"/#account_id/fields/#field_id":[10,3,1,"delete--#account_id-fields-#field_id"],"/#account_id/response/#mailing_id":[5,0,1,"get--#account_id-response-#mailing_id"],"/#account_id/groups/#member_group_id/members/remove":[13,3,1,"delete--#account_id-groups-#member_group_id-members-remove"],"/#account_id/searches":[7,2,1,"post--#account_id-searches"],"/#account_id/members/imports":[8,0,1,"get--#account_id-members-imports"],"/#account_id/forwards/#mailing_id/#member_id":[9,2,1,"post--#account_id-forwards-#mailing_id-#member_id"],"/#account_id/response/#mailing_id/customer_share_clicks":[5,0,1,"get--#account_id-response-#mailing_id-customer_share_clicks"],"/#account_id/mailings/#mailing_id/messages/#member_id":[9,0,1,"get--#account_id-mailings-#mailing_id-messages-#member_id"],"/#account_id/members/#member_id/mailings":[8,0,1,"get--#account_id-members-#member_id-mailings"],"/#account_id/groups/#from_group_id/#to_group_id/members/copy":[13,1,1,"put--#account_id-groups-#from_group_id-#to_group_id-members-copy"],"/#account_id/triggers":[14,2,1,"post--#account_id-triggers"],"/#account_id/triggers/#trigger_id":[14,3,1,"delete--#account_id-triggers-#trigger_id"],"/#account_id/members/delete":[8,1,1,"put--#account_id-members-delete"],"/#account_id/mailings/#mailing_id/groups":[9,0,1,"get--#account_id-mailings-#mailing_id-groups"],"/#account_id/response/#mailing_id/forwards":[5,0,1,"get--#account_id-response-#mailing_id-forwards"],"/#account_id/members/#member_id":[8,3,1,"delete--#account_id-members-#member_id"],"/#account_id/triggers/#trigger_id/mailings":[14,0,1,"get--#account_id-triggers-#trigger_id-mailings"],"/#account_id/searches/#search_id/members":[7,0,1,"get--#account_id-searches-#search_id-members"],"/#account_id/members/status/:status_from/to/:status_to":[8,1,1,"put--#account_id-members-status--status_from-to--status_to"],"/#account_id/response/#mailing_id/sends":[5,0,1,"get--#account_id-response-#mailing_id-sends"],"/#account_id/members":[8,3,1,"delete--#account_id-members"],"/#account_id/members/email/:email":[8,0,1,"get--#account_id-members-email--email"],"/#account_id/response/#mailing_id/links":[5,0,1,"get--#account_id-response-#mailing_id-links"],"/#account_id/searches/#search_id":[7,3,1,"delete--#account_id-searches-#search_id"],"/#account_id/members/imports/#import_id/members":[8,0,1,"get--#account_id-members-imports-#import_id-members"],"/#account_id/fields/#field_id/clear":[10,2,1,"post--#account_id-fields-#field_id-clear"],"/#account_id/groups/#member_group_id/members":[13,3,1,"delete--#account_id-groups-#member_group_id-members"],"/#account_id/members/imports/#import_id":[8,0,1,"get--#account_id-members-imports-#import_id"],"/#account_id/response":[5,0,1,"get--#account_id-response"],"/#account_id/response/#mailing_id/opens":[5,0,1,"get--#account_id-response-#mailing_id-opens"],"/#account_id/members/imports/delete":[8,3,1,"delete--#account_id-members-imports-delete"],"/#account_id/mailings":[9,0,1,"get--#account_id-mailings"],"/#account_id/mailings/cancel/#mailing_id":[9,3,1,"delete--#account_id-mailings-cancel-#mailing_id"],"/#account_id/mailings/validate":[9,2,1,"post--#account_id-mailings-validate"],"/#account_id/response/#mailing_id/deliveries":[5,0,1,"get--#account_id-response-#mailing_id-deliveries"],"/#account_id/mailings/#mailing_id/members":[9,0,1,"get--#account_id-mailings-#mailing_id-members"],"/#account_id/response/#share_id/customer_share":[5,0,1,"get--#account_id-response-#share_id-customer_share"],"/#account_id/webhooks/#webhook_id":[4,3,1,"delete--#account_id-webhooks-#webhook_id"],"/#account_id/members/add":[8,2,1,"post--#account_id-members-add"],"/#account_id/response/#mailing_id/optouts":[5,0,1,"get--#account_id-response-#mailing_id-optouts"],"/#account_id/response/#mailing_id/shares":[5,0,1,"get--#account_id-response-#mailing_id-shares"],"/#account_id/groups/#member_group_id":[13,3,1,"delete--#account_id-groups-#member_group_id"],"/#account_id/mailings/#mailing_id":[9,3,1,"delete--#account_id-mailings-#mailing_id"],"/#account_id/members/#member_id/groups":[8,3,1,"delete--#account_id-members-#member_id-groups"],"/#account_id/groups":[13,2,1,"post--#account_id-groups"],"/#account_id/response/#mailing_id/clicks":[5,0,1,"get--#account_id-response-#mailing_id-clicks"],"/#account_id/mailings/#mailing_id/headsup":[9,0,1,"get--#account_id-mailings-#mailing_id-headsup"],"/#account_id/response/#mailing_id/signups":[5,0,1,"get--#account_id-response-#mailing_id-signups"],"/#account_id/response/#mailing_id/customer_shares":[5,0,1,"get--#account_id-response-#mailing_id-customer_shares"]}},terms:{all:[0,1,4,5,8,9,10,11,12,13,14],code:[0,1,6,3],change_typ:8,queri:[0,2,4],month:[0,5,9,14],four:[0,5],mile:0,least:0,field_creat:[12,4],link_target:[5,9],content:[1,11,6,9,3],privat:1,specif:[8,9,4],friendli:5,send:[1,9,4,3,5],customer_share_click:5,those:[5,12],group_upd:[12,4],sent:[5,8,12,9,14],curl_clos:[1,6,3],brown:[7,8],digit:5,everi:0,string:[0,4,5,7,8,9,10,12,13,14],fals:[1,3,4,5,6,7,8,9,10,13,14],webhook:[1,12,4],mailing_status:9,trigger_id:14,webview_share_click:5,affect:[7,8],member_add:[12,4],create_mail:9,new_boolean:10,foo:0,level:1,group_delet:[12,4],list:[0,1,2,4,5,7,8,9,10,11,12,13,14],upload:8,iter:2,"try":8,item:2,plaintext_onli:[9,14],progress:9,div:[4,5,7,8,9,10,13,14],survey_id:14,pleas:[1,8,11,9],prevent:2,work:[1,4],ten:0,sync:10,sign:[0,5,4],past:1,second:[0,7,14],follow:[0,1,4,5,7,9,11,13],further:1,durat:9,click:[0,4,5,7,8,12,14],append:2,even:10,what:1,hide:[4,5,7,8,9,10,13,14],appear:1,from_group_id:13,section:1,current:[8,12,9],delet:[1,4,7,8,9,10,12,13,14],"new":[1,4,5,7,8,9,10,11,13,14],net:[1,2,6,3],delivery_t:8,method:[5,8,13,4,9],can:[0,1,2,4,5,7,8,9,11,12,13],widget:[7,10,8,9,13],hash:0,datematch:0,displai:10,variat:9,gener:[0,8,12,14],onli:[5,8],here:[0,1,3,5,6,8],bodi:9,let:[1,4,10],address:[0,1,8,6,9],along:8,sinc:8,valu:[0,5,7,8,10,11],field_upd:[12,4],search:[0,1,9,7],survei:14,sender:[9,14],larger:2,queue:5,prior:9,action:[0,8],chang:[8,4],name_first:[1,3],campaign:5,newbi:5,appli:[7,14],prefer:0,myemma:[4,5,7,8,9,13],filenam:8,customer_shar:5,"boolean":[0,1,5,7,8,9,10,13,14],curlopt_postfield:[1,3],total:5,jone:[7,5,8,13],select:10,newslett:[7,8,13],describ:7,would:[0,1],regist:4,two:[0,5],next:[0,1],create_webhook:4,few:[5,8],call:[1,2,3,4,6,8,12],criteria:7,member_add_to_group:[12,4],type:[1,3,4,5,6,7,10,9,14],until:2,more:[0,4,7,8,9,13],peopl:5,relat:[1,8,11,9],about:[10,8,12,4,9],notic:8,thide:[4,5,7,8,9,10,13,14],flag:[5,7,8,10,9,14],exce:2,indic:8,examin:1,particular:[1,4,5,8,10,12,9],in_progress:5,origin:9,must:[0,7,13,10],none:9,endpoint:[1,4,5,7,8,9,10,13,14],join:[0,7],hour:0,setup:1,member_sinc:[0,5,7,8,9,13],uniqu:5,histori:8,soup:7,remain:[0,9],archiv:[5,9],member_optout:[12,4],drill:5,control:[1,11,9],quickstart:1,give:5,forward_mailing_id:5,email_domain:[0,5],share:[0,5,8,12,4],accept:[0,5,7,8,9,10,11,13,14],total_click:5,tag:[11,9],want:[1,12,13,5],occur:[7,12],some_numeric_field:0,delai:14,alwai:0,webhook_event_id:4,cours:1,end:[2,8],first_nam:[1,3,5,7,8,9,10,11,13,14],started_or_finish:[9,14],anoth:[9,13],get:[1,4,5,6,7,8,9,10,13,14],message_open:[12,4],html_bodi:[9,14],share_statu:5,push_offset:14,del_statu:5,tild:5,num_members_upd:8,simpl:0,chri:9,pizza:[7,8],map:0,autent:1,referenc:7,xxxx:6,sundai:0,membership:13,taco:[7,5,8,9,13],mai:12,multipl:[10,8],data:[1,3,4,5,10,12],welcom:11,add_onli:8,"short":0,json_encod:[1,3],optout:[5,8,12,13],num_dupl:8,favorit:10,correspond:[0,1],greet:11,predic:[0,1],issu:[1,10],"12t11":[7,5,8,9,13],combin:7,allow:[0,7,8],some_zipcode_field:0,signed_up:5,order:[5,10],michel:[8,9],mailing_nam:5,checkbox:10,fields_upd:8,over:2,becaus:12,buyer:[7,8,9,13],comma:[9,13],is_dis:14,vari:8,paramet:[2,4,5,7,8,9,10,13,14],widget_typ:10,style:[0,4,5,7,8,9,10,13,14],group:[0,1,3,4,7,8,9,12,13,14],curl_setopt:[1,6,3],how:[7,1,2,4],import_start:8,better:[13,14],platform:1,pend:[1,9],mailing_list:9,onc:9,mail:[0,1,4,5,8,11,12,9,14],hidden:13,main:1,might:[1,4],link_nam:[5,9],them:[8,9],"return":[0,1,4,5,7,8,9,10,12,13,14],greater:[0,8],thei:[0,9],food:10,timestamp:[0,5,12,9,10],spell:4,dai:0,auth:1,instead:[12,2,8],now:5,down:5,term:[0,1],alex:9,name:[0,4,5,7,8,9,10,11,13,14],edit:[7,1,14,10],curl_getinfo:[1,6,3],authent:[1,6,4,3],successufulli:4,separ:[1,9,13],each:[1,2,5,9,12,11,13],found:[8,9,4,14],updat:[4,7,8,9,10,12,13,14],mean:0,status:[8,9],domain:0,shortcut_nam:10,weight:[4,5,7,8,9,10,13,14],resum:9,individu:[1,8],hard:[0,5],last_nam:[1,3,5,7,8,9,10,11,13,14],"05t15":5,birthdai:[10,14],expect:1,year:[0,5,9,14],our:[1,11,12,4,14],happen:[1,4,5],extract:11,short_display_nam:10,special:[0,7,8,13],out:[0,1,4,5,7,8,10,13],variabl:[1,6,3],message_shar:[12,4],network:[5,12],private_api_kei:[1,6,3],check_multipl:10,categori:1,rel:0,print:6,correct:10,statist:8,benjamin:8,qualifi:11,insid:1,advanc:0,contain:[0,5,7,13,10,9],differ:0,standard:[5,9],status_from:8,base:[5,8],recipient_search:9,dictionari:8,put:[4,7,8,9,10,13,14],"13t23":[7,5,8],visit:11,could:1,omit:5,success:[7,1,9,13,3],filter:[0,1,7],search_id:7,pagin:[1,2],member_id:[5,7,8,9,12,13],summari:[1,5],assign:9,first:[0,1,10,5],oper:[0,1,7,14],rang:5,notifi:12,directli:0,curlopt_ssl_verifyp:[1,6,3],curl_init:[1,6,3],number:[5,2,13,3,10],placehold:[1,11],date:[0,5,8,10,11,14],unlik:9,alreadi:[10,9,13],done:8,plaintext_pref:[7,8,9,13],oppos:8,open:[0,3,4,5,6,7,8,12],payload:4,fanci:5,size:2,given:[0,8,9,4],"long":10,script:1,associ:[1,8,9,4,5],system:[8,12,4,14],messag:[4,5,8,12,11,9,14],attach:11,friend:11,curlinfo_http_cod:[1,6,3],shell:0,option:[0,5,7,8,9,10,13,14],especi:8,signup:[0,1,3,4,5,8,12,14],copi:[8,13],member_upd:[12,4],specifi:[0,2,7,8,10,11,9,14],curl_exec:[1,6,3],curlopt_httphead:[1,6,3],member_signup:[12,4],create_search:7,part:[0,9],enclos:11,than:[0,1,2,3,12,13],with_plaintext:9,"02t10":[5,8],"02t11":[5,8],"02t13":5,nathan:8,whenev:8,provid:[1,5,8,12,9,14],remov:[12,8,13,4],mailing_start:4,rate:2,structur:7,charact:9,greg:8,trackabl:11,were:5,minut:0,danc:1,error_count:[7,8,9,13],pre:[4,5,7,8,9,10,13,14],cleaner:1,sai:0,share_id:5,signup_form_id:[0,8,12,9,14],plaintext:[5,9,14],pass:[1,3],ani:[0,1,2,7,8,9],have:[0,5,8,12,9],tabl:5,seen:5,"null":[7,8,13,10,9,14],kevin:[9,14],signup_mail:0,caus:14,inform:[1,4,6,8,9,10,13],object_id:14,note:[1,8,9,4],also:[0,4,5,7,8,9,11,13],exampl:[0,1,3,5,6,7,11],take:[0,4],which:[0,1,4,8,10,12,9,14],some_number_field:0,singl:[0,1,3,4,5,8,10,12,13],excit:11,sure:1,delete_memb:13,normal:9,parent_mail:14,recipient_count:[5,9,14],previou:9,field_id:[10,12,14],last_run_at:7,most:14,pair:11,"class":[4,5,7,8,9,10,13,14],member_group_id:[8,9,13],mcconnel:[9,14],url:[1,3,4,5,6,12],mailing_finish:[12,4],clear:10,request:[1,2,3],doe:[0,5,7,8,10,13],member_status_upd:[12,4],declar:9,tech:4,determin:1,dataset:10,dow:0,recipi:9,"6db0cc7e6fdb2da589b65f29d90c96b6":9,show:[4,5,7,8,9,10,11,13,14],text:[10,11,12],radiu:0,syntax:[0,1,11,9],radio:10,font:[4,5,7,8,9,10,13,14],fine:9,find:[1,6,5],status_to:8,toast:[7,5,8,13],access:[1,5],giant:12,just:[0,9],pretti:8,column_ord:10,explain:[0,1],winner:9,activ:[1,5,7,8,13,9],figur:1,should:[1,2,3,7,8,11,9],templat:[11,14],share_count:5,count:[1,2,3,5],variou:[8,13],confirmed_opt_in:[7,8,9,13],familiar:1,express:0,account:[1,4,5,7,8,10,13,14],cannot:[8,9,4],"import":[1,8,12,4,10],report:[10,8],requir:[1,7,8,10,11,9],object:[5,13],favorite_food:[5,7,8,13,10,9],bar:0,organ:1,include_archiv:[5,9],"public":1,"default":[5,11,13,4,9],ref_member_id:5,message_share_click:[12,4],through:[1,8,4],where:[0,1,8,11,7],view:1,set:[0,1,2,3,6,8,9,12,13],link_id:[0,5,12,9,14],see:[7,1,8],result:[0,1,2,5,8,9],respons:[0,1,2,4,5,7,8,9,10,13,14],fail:[5,9,4],themselv:2,member_field:[0,7],xxxxx:6,subject:[8,12,9,14],statu:[1,4,5,7,8,9,12,13],fancyonion:11,kei:[0,1,11,4],is_schedul:9,message_forward:[12,4],databas:8,user:[0,8,9,13],last_modified_at:[7,8,9,13],addresse:5,written:1,between:[0,7,2],"18t16":[7,14],subscript:[1,3],entiti:1,curlopt_url:[1,6,3],email:[0,1,3,5,6,7,8,9,13],wide:14,extend:1,numer:10,http404:[4,5,7,8,9,10,13,14],job:13,entir:[0,8],share_click:5,to_group_id:13,curlopt_returntransf:[1,6,3],addit:[0,1,8,9,11,13],member_remove_from_group:[12,4],send_start:[0,9,14],protect:1,accident:2,last:[0,5,10],delimit:5,pertain:5,message_click:[12,4],curlopt_post:[1,3],audienc:[1,8,9],mang:0,http500:14,seri:5,com:[4,5,6,7,8,9,11,13],zip_code_field:0,"03t15":[7,5,8,13],point:1,toni:[7,8],overview:[0,1,11,12,5],period:1,winner_id:9,colon:[7,11],optout_count:[7,8,9,13],suppli:9,cancel:9,tuesdai:0,duplic:5,quit:[5,8],user_id:4,recur:14,headsup:9,addition:[1,2],due:5,been:[1,8,10,5],mark:[8,9],whom:9,tshow:[4,5,7,8,9,10,13,14],trigger:[1,4,5,7,8,9,10,12,13,14],unsubscrib:0,treat:8,interest:[10,4],basic:[0,1,4,8,13,14],monthli:[7,8,13],blob:4,mailing_mailing_id:5,mailing_id:[0,5,8,12,9,14],fire:[8,4,14],xxx:[1,3],argument:[0,5],link_ord:[5,9],input:1,present:7,clicked_uniqu:5,"case":[1,8],look:[1,14,10],frozen:9,easier:12,email_error:[7,8,9,13],defin:[0,10,8,9],"while":0,outcom:5,abov:[0,1,8,7],error:[1,3,6,8,10,13],loop:8,opt:[0,4,5,7,8,13],readi:9,deliv:5,recipient_group:9,equal:0,itself:0,new_statu:12,webhook_id:4,recipient_memb:9,perform:8,make:[1,12,6,10],belong:[0,8,4],same:4,check:[8,6,9],member:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14],handl:1,html:9,split:9,document:[1,11,12],complet:[1,3,4,6,8,9],week:0,finish:[5,12,4],http:[1,2,3,4,5,6,11,9],href:[4,5,7,8,9,10,13,14],nest:0,someon:4,rais:[4,5,7,8,9,10,13,14],initi:[10,9],php:[1,6,3],bob:[7,5],recent:1,kept:11,center:0,min:5,well:5,inherit:9,person:9,mailing_typ:[9,14],without:0,command:1,thi:[0,1,4,5,7,8,9,10,12,13,14],undefin:0,http_code:[1,6,3],latest:11,construct:[0,7,9],identifi:8,paus:9,execut:[1,3],less:0,resp:[4,5,7,8,9,10,13,14],"_post":[1,3],against:0,aspect:13,recipient_email:9,source_filenam:8,yet:5,smith:[7,5,8,9,13],"12t09":[7,8],display_nam:10,easi:[10,12],"01t00":8,had:0,littl:1,blog:4,add:[12,1,8,13,3],other:[1,8,9,3,5],curlopt_userpwd:[1,6,3],import_finish:[8,12,4],schedul:9,els:[1,6,3],save:7,match:[0,7],build:1,sanit:1,applic:[1,6,3],account_id:[1,3,4,5,6,7,8,9,10,12,13,14],disposit:1,crud:[8,13,14],print_r:[6,3],mailing_statu:[9,14],know:[5,4],background:13,parent_mailing_id:[9,14],bit:1,insert:11,emma:[1,5,7,8,9,12,13],like:1,onion:11,deprec:4,arbitrari:8,manual:9,integ:[1,8,14,10,5],public_kei:4,api:[1,2,6,12,3],either:[0,5,7],bunch:0,output:9,group_id:[1,8,12,3],soft:[0,5],manag:[0,1,13,4],import_id:[8,12],www:[5,9],old:7,deal:[8,13],captur:1,arrai:[0,1,3,5,6,7,8,9,10,12,13,14],some:[1,11,5],field_delet:[12,4],certain:12,intern:10,sampl:[1,4,5,7,8,9,10,13,14],elaps:[2,9],home:11,deleted_at:[7,8,13,10,9,14],some_string_field:0,librari:11,bounce_count:[7,8,9,13],confirm:8,broad:12,per:5,send_finish:[9,14],larg:[0,2],condit:7,three:9,network_cod:12,localhost:9,refer:[5,7,8,13,10,9],with_html_bodi:9,who:[0,5],bold:[4,5,7,8,9,10,13,14],event_typ:14,inspect:1,usag:[1,8,12],num_members_ad:8,fulli:11,from:[1,4,8,9,12,13,14],post:[1,3,4,7,8,9,10,12,13,14],group_creat:[12,4],gladi:[7,5,8,13],actual:5,zip:0,groups_upd:8,column:10,page:2,includ:[1,5,7,8,9,10,13],webview:9,disabl:[9,14],block:[1,2],yyyi:5,member_data:[1,3],glob:0,bounc:[0,5],within:0,encod:[9,4],delivery_typ:[5,8],compos:0,webview_shar:5,field_typ:10,active_count:[7,8,9,13],public_webview_url:9,pivot:5,your:[1,4,5,7,8,9,10,13],websit:11,span:[4,5,7,8,9,10,13,14],wai:[1,12],area:1,overus:2,group_nam:[8,12,13,9],support:12,unique_click:5,json:[0,1,3,4,6,7],fast:8,custom:[5,8,11,10],avail:[0,11,4],start:[1,2,8,4],interfac:12,send_at:[9,14],exceed:2,"var":3,interv:[0,14],deliveri:5,head:[1,6,9,3],form:[1,3,4,6,8,10,14],enough:2,forc:1,forward:[0,4,5,8,12,9],"31st":0,group_typ:[8,9,13],push_offset_unit:14,link:[0,4,5,11,9,14],line:[1,5],realli:1,"true":[0,1,2,3,4,6,7,8,9,10,13,14],archived_t:[9,14],name_last:[1,3],info:4,pull:2,made:1,possibl:[5,8,12],whether:8,maximum:2,tell:12,http403:9,record:[0,7,8],below:[0,1,8,12],http400:[7,8,9],limit:[5,2,8,9],some_array_field:0,otherwis:[10,8],start_t:14,mta:5,connect:[6,3],notif:9,creat:[4,5,7,9,10,12,13,14],"int":5,retriev:[7,1,2,8,9],email_us:[0,5],repres:5,exist:[0,4,5,7,8,10,13],behavior:11,curl:[1,6],lentil:7,probabl:14,echo:[1,3],successfulli:[5,8,9],mailing_subject:12,grp:13,todo:11,when:[8,12,4,9],detail:[1,4,7,8,9,10,13],invalid:[7,8,9],event:[4,7,8,13,12,9,14],field:[0,1,3,4,5,7,8,9,10,11,12,13,14],valid:[5,8,9,13],futur:1,num_skip:8,test:[5,6,7,13,9,14],ignor:8,you:[0,1,2,4,5,7,8,9,10,11,12,13],member_delet:[12,4],member_status_id:[7,5,8,9,13],public_api_kei:[1,6,3],stat:[5,9],claus:[0,7],event_nam:[12,4],e2ma:[1,2,6,3],error_messag:8,param:[9,4],app_messag:[1,3],ella:8,bulk:[1,8],receiv:[0,2,5,8,12,9],heads_up_email:9,longer:9,descript:[4,14],portion:0,opted_out:5,time:[1,2,8,13,5],reply_to:[9,14],resource_url:12,hello:[11,9,14]},objtypes:{"0":"http:get","1":"http:put","2":"http:post","3":"http:delete"},titles:["Search Syntax","Emma API","Pagination","PHP Signup Example","Webhooks","Response","PHP Get Member By Email Example","Searches","Members","Mailings","Fields","Placeholder Syntax","Webhook Usage","Groups","Triggers"],objnames:{"0":["http","get","HTTP get"],"1":["http","put","HTTP put"],"2":["http","post","HTTP post"],"3":["http","delete","HTTP delete"]},filenames:["member_search","index","pagination","php_signup_example","api/external/webhooks","api/external/response","php_get_member_example","api/external/searches","api/external/members","api/external/mailings","api/external/fields","placeholders","webhooks","api/external/groups","api/external/triggers"]}) \ No newline at end of file diff --git a/webhooks.html b/webhooks.html index 3675c0f..f095866 100644 --- a/webhooks.html +++ b/webhooks.html @@ -466,7 +466,7 @@ <h3>Quick search</h3> </div> <div class="footer"> © Copyright 2012, Emma. - Last updated on Dec 18, 2012 at 15:53. + Last updated on Dec 18, 2012 at 16:13. </div> </body> </html> \ No newline at end of file From 22d76e1b9b614ba21047706308791ce41002c183 Mon Sep 17 00:00:00 2001 From: Lance Roggendorff <lance.roggendorff@myemma.com> Date: Tue, 18 Dec 2012 16:13:46 -0600 Subject: [PATCH 009/219] Update audience documentation. --- api/external/searches.html | 2 +- api/external/triggers.html | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/api/external/searches.html b/api/external/searches.html index d76545c..96ed4a7 100644 --- a/api/external/searches.html +++ b/api/external/searches.html @@ -172,7 +172,7 @@ <h1>Searches<a class="headerlink" href="#searches" title="Permalink to this head "name": "Test Search", "criteria": "[\"or\", [\"group\", \"eq\", \"Monthly Newsletter\"],[\"group\", \"eq\", \"Widget Buyers\"]]", "deleted_at": null, - "last_run_at": "@D:2012-12-18T16:13:29", + "last_run_at": "@D:2012-12-18T16:13:42", "active_count": 2, "account_id": 100 } diff --git a/api/external/triggers.html b/api/external/triggers.html index 518de4f..9c91cc5 100644 --- a/api/external/triggers.html +++ b/api/external/triggers.html @@ -121,7 +121,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": 203, "push_offset_units": "0:-14:0:0", - "start_ts": "@D:2012-12-18T16:13:26", + "start_ts": "@D:2012-12-18T16:13:40", "trigger_id": 100, "signups": null, "push_offset": "@I:-1209600.0", @@ -162,7 +162,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": null, "push_offset_units": "0:3:0:0", - "start_ts": "@D:2012-12-18T16:13:26", + "start_ts": "@D:2012-12-18T16:13:40", "trigger_id": 101, "signups": [ 1, @@ -299,7 +299,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": 203, "push_offset_units": "0:-14:0:0", - "start_ts": "@D:2012-12-18T16:13:26", + "start_ts": "@D:2012-12-18T16:13:40", "trigger_id": 100, "signups": null, "push_offset": "@I:-1209600.0", From cf1f138d993d531156b3c9bd9ce1b3118c2091d3 Mon Sep 17 00:00:00 2001 From: Lance Roggendorff <lance.roggendorff@myemma.com> Date: Tue, 18 Dec 2012 16:13:58 -0600 Subject: [PATCH 010/219] Update audience documentation. --- api/external/searches.html | 2 +- api/external/triggers.html | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/api/external/searches.html b/api/external/searches.html index 96ed4a7..2a5cf56 100644 --- a/api/external/searches.html +++ b/api/external/searches.html @@ -172,7 +172,7 @@ <h1>Searches<a class="headerlink" href="#searches" title="Permalink to this head "name": "Test Search", "criteria": "[\"or\", [\"group\", \"eq\", \"Monthly Newsletter\"],[\"group\", \"eq\", \"Widget Buyers\"]]", "deleted_at": null, - "last_run_at": "@D:2012-12-18T16:13:42", + "last_run_at": "@D:2012-12-18T16:13:53", "active_count": 2, "account_id": 100 } diff --git a/api/external/triggers.html b/api/external/triggers.html index 9c91cc5..a0f827b 100644 --- a/api/external/triggers.html +++ b/api/external/triggers.html @@ -121,7 +121,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": 203, "push_offset_units": "0:-14:0:0", - "start_ts": "@D:2012-12-18T16:13:40", + "start_ts": "@D:2012-12-18T16:13:51", "trigger_id": 100, "signups": null, "push_offset": "@I:-1209600.0", @@ -162,7 +162,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": null, "push_offset_units": "0:3:0:0", - "start_ts": "@D:2012-12-18T16:13:40", + "start_ts": "@D:2012-12-18T16:13:51", "trigger_id": 101, "signups": [ 1, @@ -299,7 +299,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": 203, "push_offset_units": "0:-14:0:0", - "start_ts": "@D:2012-12-18T16:13:40", + "start_ts": "@D:2012-12-18T16:13:51", "trigger_id": 100, "signups": null, "push_offset": "@I:-1209600.0", From dc4cce23afbf7f76f23772f8069915b0a9648e58 Mon Sep 17 00:00:00 2001 From: Lance Roggendorff <lance.roggendorff@myemma.com> Date: Tue, 18 Dec 2012 16:14:09 -0600 Subject: [PATCH 011/219] Update audience documentation. --- api/external/fields.html | 2 +- api/external/groups.html | 2 +- api/external/mailings.html | 2 +- api/external/members.html | 2 +- api/external/response.html | 2 +- api/external/searches.html | 4 ++-- api/external/triggers.html | 8 ++++---- api/external/webhooks.html | 2 +- genindex.html | 2 +- http-routingtable.html | 2 +- index.html | 2 +- member_search.html | 2 +- pagination.html | 2 +- php_get_member_example.html | 2 +- php_signup_example.html | 2 +- placeholders.html | 2 +- search.html | 2 +- webhooks.html | 2 +- 18 files changed, 22 insertions(+), 22 deletions(-) diff --git a/api/external/fields.html b/api/external/fields.html index 126e50b..5436dbf 100644 --- a/api/external/fields.html +++ b/api/external/fields.html @@ -374,7 +374,7 @@ <h3>Quick search</h3> </div> <div class="footer"> © Copyright 2012, Emma. - Last updated on Dec 18, 2012 at 16:13. + Last updated on Dec 18, 2012 at 16:14. </div> </body> </html> \ No newline at end of file diff --git a/api/external/groups.html b/api/external/groups.html index 257e0fb..f781088 100644 --- a/api/external/groups.html +++ b/api/external/groups.html @@ -661,7 +661,7 @@ <h3>Quick search</h3> </div> <div class="footer"> © Copyright 2012, Emma. - Last updated on Dec 18, 2012 at 16:13. + Last updated on Dec 18, 2012 at 16:14. </div> </body> </html> \ No newline at end of file diff --git a/api/external/mailings.html b/api/external/mailings.html index c82e010..348af80 100644 --- a/api/external/mailings.html +++ b/api/external/mailings.html @@ -768,7 +768,7 @@ <h3>Quick search</h3> </div> <div class="footer"> © Copyright 2012, Emma. - Last updated on Dec 18, 2012 at 16:13. + Last updated on Dec 18, 2012 at 16:14. </div> </body> </html> \ No newline at end of file diff --git a/api/external/members.html b/api/external/members.html index 57aa1c2..784edad 100644 --- a/api/external/members.html +++ b/api/external/members.html @@ -1143,7 +1143,7 @@ <h3>Quick search</h3> </div> <div class="footer"> © Copyright 2012, Emma. - Last updated on Dec 18, 2012 at 16:13. + Last updated on Dec 18, 2012 at 16:14. </div> </body> </html> \ No newline at end of file diff --git a/api/external/response.html b/api/external/response.html index e8ff1f4..5f8b454 100644 --- a/api/external/response.html +++ b/api/external/response.html @@ -978,7 +978,7 @@ <h3>Quick search</h3> </div> <div class="footer"> © Copyright 2012, Emma. - Last updated on Dec 18, 2012 at 16:13. + Last updated on Dec 18, 2012 at 16:14. </div> </body> </html> \ No newline at end of file diff --git a/api/external/searches.html b/api/external/searches.html index 2a5cf56..49a3192 100644 --- a/api/external/searches.html +++ b/api/external/searches.html @@ -172,7 +172,7 @@ <h1>Searches<a class="headerlink" href="#searches" title="Permalink to this head "name": "Test Search", "criteria": "[\"or\", [\"group\", \"eq\", \"Monthly Newsletter\"],[\"group\", \"eq\", \"Widget Buyers\"]]", "deleted_at": null, - "last_run_at": "@D:2012-12-18T16:13:53", + "last_run_at": "@D:2012-12-18T16:14:05", "active_count": 2, "account_id": 100 } @@ -470,7 +470,7 @@ <h3>Quick search</h3> </div> <div class="footer"> © Copyright 2012, Emma. - Last updated on Dec 18, 2012 at 16:13. + Last updated on Dec 18, 2012 at 16:14. </div> </body> </html> \ No newline at end of file diff --git a/api/external/triggers.html b/api/external/triggers.html index a0f827b..5399861 100644 --- a/api/external/triggers.html +++ b/api/external/triggers.html @@ -121,7 +121,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": 203, "push_offset_units": "0:-14:0:0", - "start_ts": "@D:2012-12-18T16:13:51", + "start_ts": "@D:2012-12-18T16:14:03", "trigger_id": 100, "signups": null, "push_offset": "@I:-1209600.0", @@ -162,7 +162,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": null, "push_offset_units": "0:3:0:0", - "start_ts": "@D:2012-12-18T16:13:51", + "start_ts": "@D:2012-12-18T16:14:03", "trigger_id": 101, "signups": [ 1, @@ -299,7 +299,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": 203, "push_offset_units": "0:-14:0:0", - "start_ts": "@D:2012-12-18T16:13:51", + "start_ts": "@D:2012-12-18T16:14:03", "trigger_id": 100, "signups": null, "push_offset": "@I:-1209600.0", @@ -458,7 +458,7 @@ <h3>Quick search</h3> </div> <div class="footer"> © Copyright 2012, Emma. - Last updated on Dec 18, 2012 at 16:13. + Last updated on Dec 18, 2012 at 16:14. </div> </body> </html> \ No newline at end of file diff --git a/api/external/webhooks.html b/api/external/webhooks.html index 386548f..723b4be 100644 --- a/api/external/webhooks.html +++ b/api/external/webhooks.html @@ -446,7 +446,7 @@ <h3>Quick search</h3> </div> <div class="footer"> © Copyright 2012, Emma. - Last updated on Dec 18, 2012 at 16:13. + Last updated on Dec 18, 2012 at 16:14. </div> </body> </html> \ No newline at end of file diff --git a/genindex.html b/genindex.html index 548c84f..6009d8d 100644 --- a/genindex.html +++ b/genindex.html @@ -108,7 +108,7 @@ <h3>Quick search</h3> </div> <div class="footer"> © Copyright 2012, Emma. - Last updated on Dec 18, 2012 at 16:13. + Last updated on Dec 18, 2012 at 16:14. </div> </body> </html> \ No newline at end of file diff --git a/http-routingtable.html b/http-routingtable.html index 5deb0ed..dd855bf 100644 --- a/http-routingtable.html +++ b/http-routingtable.html @@ -561,7 +561,7 @@ <h3>Quick search</h3> </div> <div class="footer"> © Copyright 2012, Emma. - Last updated on Dec 18, 2012 at 16:13. + Last updated on Dec 18, 2012 at 16:14. </div> </body> </html> \ No newline at end of file diff --git a/index.html b/index.html index 1922c7a..004a083 100644 --- a/index.html +++ b/index.html @@ -284,7 +284,7 @@ <h3>Quick search</h3> </div> <div class="footer"> © Copyright 2012, Emma. - Last updated on Dec 18, 2012 at 16:13. + Last updated on Dec 18, 2012 at 16:14. </div> </body> </html> \ No newline at end of file diff --git a/member_search.html b/member_search.html index 2f07268..4c18399 100644 --- a/member_search.html +++ b/member_search.html @@ -215,7 +215,7 @@ <h3>Quick search</h3> </div> <div class="footer"> © Copyright 2012, Emma. - Last updated on Dec 18, 2012 at 16:13. + Last updated on Dec 18, 2012 at 16:14. </div> </body> </html> \ No newline at end of file diff --git a/pagination.html b/pagination.html index 426a489..d87d8df 100644 --- a/pagination.html +++ b/pagination.html @@ -127,7 +127,7 @@ <h3>Quick search</h3> </div> <div class="footer"> © Copyright 2012, Emma. - Last updated on Dec 18, 2012 at 16:13. + Last updated on Dec 18, 2012 at 16:14. </div> </body> </html> \ No newline at end of file diff --git a/php_get_member_example.html b/php_get_member_example.html index bb89b37..4ea2b9c 100644 --- a/php_get_member_example.html +++ b/php_get_member_example.html @@ -142,7 +142,7 @@ <h3>Quick search</h3> </div> <div class="footer"> © Copyright 2012, Emma. - Last updated on Dec 18, 2012 at 16:13. + Last updated on Dec 18, 2012 at 16:14. </div> </body> </html> \ No newline at end of file diff --git a/php_signup_example.html b/php_signup_example.html index 05da2ce..2366a29 100644 --- a/php_signup_example.html +++ b/php_signup_example.html @@ -164,7 +164,7 @@ <h3>Quick search</h3> </div> <div class="footer"> © Copyright 2012, Emma. - Last updated on Dec 18, 2012 at 16:13. + Last updated on Dec 18, 2012 at 16:14. </div> </body> </html> \ No newline at end of file diff --git a/placeholders.html b/placeholders.html index 38c236a..76be0e1 100644 --- a/placeholders.html +++ b/placeholders.html @@ -142,7 +142,7 @@ <h3>Quick search</h3> </div> <div class="footer"> © Copyright 2012, Emma. - Last updated on Dec 18, 2012 at 16:13. + Last updated on Dec 18, 2012 at 16:14. </div> </body> </html> \ No newline at end of file diff --git a/search.html b/search.html index ef7e6f2..2f10548 100644 --- a/search.html +++ b/search.html @@ -112,7 +112,7 @@ <h1 id="search-documentation">Search</h1> </div> <div class="footer"> © Copyright 2012, Emma. - Last updated on Dec 18, 2012 at 16:13. + Last updated on Dec 18, 2012 at 16:14. </div> </body> </html> \ No newline at end of file diff --git a/webhooks.html b/webhooks.html index f095866..05ae124 100644 --- a/webhooks.html +++ b/webhooks.html @@ -466,7 +466,7 @@ <h3>Quick search</h3> </div> <div class="footer"> © Copyright 2012, Emma. - Last updated on Dec 18, 2012 at 16:13. + Last updated on Dec 18, 2012 at 16:14. </div> </body> </html> \ No newline at end of file From d7a15e706222b306d1ebd8610eb1f4dcd42a583a Mon Sep 17 00:00:00 2001 From: Lance Roggendorff <lance.roggendorff@myemma.com> Date: Tue, 18 Dec 2012 16:14:23 -0600 Subject: [PATCH 012/219] Update audience documentation. --- api/external/searches.html | 2 +- api/external/triggers.html | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/api/external/searches.html b/api/external/searches.html index 49a3192..d1f0f1e 100644 --- a/api/external/searches.html +++ b/api/external/searches.html @@ -172,7 +172,7 @@ <h1>Searches<a class="headerlink" href="#searches" title="Permalink to this head "name": "Test Search", "criteria": "[\"or\", [\"group\", \"eq\", \"Monthly Newsletter\"],[\"group\", \"eq\", \"Widget Buyers\"]]", "deleted_at": null, - "last_run_at": "@D:2012-12-18T16:14:05", + "last_run_at": "@D:2012-12-18T16:14:18", "active_count": 2, "account_id": 100 } diff --git a/api/external/triggers.html b/api/external/triggers.html index 5399861..168ee64 100644 --- a/api/external/triggers.html +++ b/api/external/triggers.html @@ -121,7 +121,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": 203, "push_offset_units": "0:-14:0:0", - "start_ts": "@D:2012-12-18T16:14:03", + "start_ts": "@D:2012-12-18T16:14:16", "trigger_id": 100, "signups": null, "push_offset": "@I:-1209600.0", @@ -162,7 +162,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": null, "push_offset_units": "0:3:0:0", - "start_ts": "@D:2012-12-18T16:14:03", + "start_ts": "@D:2012-12-18T16:14:16", "trigger_id": 101, "signups": [ 1, @@ -299,7 +299,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": 203, "push_offset_units": "0:-14:0:0", - "start_ts": "@D:2012-12-18T16:14:03", + "start_ts": "@D:2012-12-18T16:14:16", "trigger_id": 100, "signups": null, "push_offset": "@I:-1209600.0", From 2b8cc0ce5a4643deb9106cfcde3026fa32b6b9bf Mon Sep 17 00:00:00 2001 From: Lance Roggendorff <lance.roggendorff@myemma.com> Date: Tue, 18 Dec 2012 16:15:16 -0600 Subject: [PATCH 013/219] Update audience documentation. --- api/external/fields.html | 2 +- api/external/groups.html | 2 +- api/external/mailings.html | 2 +- api/external/members.html | 2 +- api/external/response.html | 2 +- api/external/searches.html | 4 ++-- api/external/triggers.html | 8 ++++---- api/external/webhooks.html | 2 +- genindex.html | 2 +- http-routingtable.html | 2 +- index.html | 2 +- member_search.html | 2 +- pagination.html | 2 +- php_get_member_example.html | 2 +- php_signup_example.html | 2 +- placeholders.html | 2 +- search.html | 2 +- webhooks.html | 2 +- 18 files changed, 22 insertions(+), 22 deletions(-) diff --git a/api/external/fields.html b/api/external/fields.html index 5436dbf..21ca13e 100644 --- a/api/external/fields.html +++ b/api/external/fields.html @@ -374,7 +374,7 @@ <h3>Quick search</h3> </div> <div class="footer"> © Copyright 2012, Emma. - Last updated on Dec 18, 2012 at 16:14. + Last updated on Dec 18, 2012 at 16:15. </div> </body> </html> \ No newline at end of file diff --git a/api/external/groups.html b/api/external/groups.html index f781088..7e122d2 100644 --- a/api/external/groups.html +++ b/api/external/groups.html @@ -661,7 +661,7 @@ <h3>Quick search</h3> </div> <div class="footer"> © Copyright 2012, Emma. - Last updated on Dec 18, 2012 at 16:14. + Last updated on Dec 18, 2012 at 16:15. </div> </body> </html> \ No newline at end of file diff --git a/api/external/mailings.html b/api/external/mailings.html index 348af80..ef96ecb 100644 --- a/api/external/mailings.html +++ b/api/external/mailings.html @@ -768,7 +768,7 @@ <h3>Quick search</h3> </div> <div class="footer"> © Copyright 2012, Emma. - Last updated on Dec 18, 2012 at 16:14. + Last updated on Dec 18, 2012 at 16:15. </div> </body> </html> \ No newline at end of file diff --git a/api/external/members.html b/api/external/members.html index 784edad..9d7489f 100644 --- a/api/external/members.html +++ b/api/external/members.html @@ -1143,7 +1143,7 @@ <h3>Quick search</h3> </div> <div class="footer"> © Copyright 2012, Emma. - Last updated on Dec 18, 2012 at 16:14. + Last updated on Dec 18, 2012 at 16:15. </div> </body> </html> \ No newline at end of file diff --git a/api/external/response.html b/api/external/response.html index 5f8b454..c496f71 100644 --- a/api/external/response.html +++ b/api/external/response.html @@ -978,7 +978,7 @@ <h3>Quick search</h3> </div> <div class="footer"> © Copyright 2012, Emma. - Last updated on Dec 18, 2012 at 16:14. + Last updated on Dec 18, 2012 at 16:15. </div> </body> </html> \ No newline at end of file diff --git a/api/external/searches.html b/api/external/searches.html index d1f0f1e..7862dcd 100644 --- a/api/external/searches.html +++ b/api/external/searches.html @@ -172,7 +172,7 @@ <h1>Searches<a class="headerlink" href="#searches" title="Permalink to this head "name": "Test Search", "criteria": "[\"or\", [\"group\", \"eq\", \"Monthly Newsletter\"],[\"group\", \"eq\", \"Widget Buyers\"]]", "deleted_at": null, - "last_run_at": "@D:2012-12-18T16:14:18", + "last_run_at": "@D:2012-12-18T16:15:11", "active_count": 2, "account_id": 100 } @@ -470,7 +470,7 @@ <h3>Quick search</h3> </div> <div class="footer"> © Copyright 2012, Emma. - Last updated on Dec 18, 2012 at 16:14. + Last updated on Dec 18, 2012 at 16:15. </div> </body> </html> \ No newline at end of file diff --git a/api/external/triggers.html b/api/external/triggers.html index 168ee64..4a1228a 100644 --- a/api/external/triggers.html +++ b/api/external/triggers.html @@ -121,7 +121,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": 203, "push_offset_units": "0:-14:0:0", - "start_ts": "@D:2012-12-18T16:14:16", + "start_ts": "@D:2012-12-18T16:15:09", "trigger_id": 100, "signups": null, "push_offset": "@I:-1209600.0", @@ -162,7 +162,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": null, "push_offset_units": "0:3:0:0", - "start_ts": "@D:2012-12-18T16:14:16", + "start_ts": "@D:2012-12-18T16:15:09", "trigger_id": 101, "signups": [ 1, @@ -299,7 +299,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": 203, "push_offset_units": "0:-14:0:0", - "start_ts": "@D:2012-12-18T16:14:16", + "start_ts": "@D:2012-12-18T16:15:09", "trigger_id": 100, "signups": null, "push_offset": "@I:-1209600.0", @@ -458,7 +458,7 @@ <h3>Quick search</h3> </div> <div class="footer"> © Copyright 2012, Emma. - Last updated on Dec 18, 2012 at 16:14. + Last updated on Dec 18, 2012 at 16:15. </div> </body> </html> \ No newline at end of file diff --git a/api/external/webhooks.html b/api/external/webhooks.html index 723b4be..2017cb2 100644 --- a/api/external/webhooks.html +++ b/api/external/webhooks.html @@ -446,7 +446,7 @@ <h3>Quick search</h3> </div> <div class="footer"> © Copyright 2012, Emma. - Last updated on Dec 18, 2012 at 16:14. + Last updated on Dec 18, 2012 at 16:15. </div> </body> </html> \ No newline at end of file diff --git a/genindex.html b/genindex.html index 6009d8d..533985f 100644 --- a/genindex.html +++ b/genindex.html @@ -108,7 +108,7 @@ <h3>Quick search</h3> </div> <div class="footer"> © Copyright 2012, Emma. - Last updated on Dec 18, 2012 at 16:14. + Last updated on Dec 18, 2012 at 16:15. </div> </body> </html> \ No newline at end of file diff --git a/http-routingtable.html b/http-routingtable.html index dd855bf..8214c45 100644 --- a/http-routingtable.html +++ b/http-routingtable.html @@ -561,7 +561,7 @@ <h3>Quick search</h3> </div> <div class="footer"> © Copyright 2012, Emma. - Last updated on Dec 18, 2012 at 16:14. + Last updated on Dec 18, 2012 at 16:15. </div> </body> </html> \ No newline at end of file diff --git a/index.html b/index.html index 004a083..c6fb75e 100644 --- a/index.html +++ b/index.html @@ -284,7 +284,7 @@ <h3>Quick search</h3> </div> <div class="footer"> © Copyright 2012, Emma. - Last updated on Dec 18, 2012 at 16:14. + Last updated on Dec 18, 2012 at 16:15. </div> </body> </html> \ No newline at end of file diff --git a/member_search.html b/member_search.html index 4c18399..656330b 100644 --- a/member_search.html +++ b/member_search.html @@ -215,7 +215,7 @@ <h3>Quick search</h3> </div> <div class="footer"> © Copyright 2012, Emma. - Last updated on Dec 18, 2012 at 16:14. + Last updated on Dec 18, 2012 at 16:15. </div> </body> </html> \ No newline at end of file diff --git a/pagination.html b/pagination.html index d87d8df..195f621 100644 --- a/pagination.html +++ b/pagination.html @@ -127,7 +127,7 @@ <h3>Quick search</h3> </div> <div class="footer"> © Copyright 2012, Emma. - Last updated on Dec 18, 2012 at 16:14. + Last updated on Dec 18, 2012 at 16:15. </div> </body> </html> \ No newline at end of file diff --git a/php_get_member_example.html b/php_get_member_example.html index 4ea2b9c..d5f39f9 100644 --- a/php_get_member_example.html +++ b/php_get_member_example.html @@ -142,7 +142,7 @@ <h3>Quick search</h3> </div> <div class="footer"> © Copyright 2012, Emma. - Last updated on Dec 18, 2012 at 16:14. + Last updated on Dec 18, 2012 at 16:15. </div> </body> </html> \ No newline at end of file diff --git a/php_signup_example.html b/php_signup_example.html index 2366a29..50a9738 100644 --- a/php_signup_example.html +++ b/php_signup_example.html @@ -164,7 +164,7 @@ <h3>Quick search</h3> </div> <div class="footer"> © Copyright 2012, Emma. - Last updated on Dec 18, 2012 at 16:14. + Last updated on Dec 18, 2012 at 16:15. </div> </body> </html> \ No newline at end of file diff --git a/placeholders.html b/placeholders.html index 76be0e1..8b59f3a 100644 --- a/placeholders.html +++ b/placeholders.html @@ -142,7 +142,7 @@ <h3>Quick search</h3> </div> <div class="footer"> © Copyright 2012, Emma. - Last updated on Dec 18, 2012 at 16:14. + Last updated on Dec 18, 2012 at 16:15. </div> </body> </html> \ No newline at end of file diff --git a/search.html b/search.html index 2f10548..2c3f38a 100644 --- a/search.html +++ b/search.html @@ -112,7 +112,7 @@ <h1 id="search-documentation">Search</h1> </div> <div class="footer"> © Copyright 2012, Emma. - Last updated on Dec 18, 2012 at 16:14. + Last updated on Dec 18, 2012 at 16:15. </div> </body> </html> \ No newline at end of file diff --git a/webhooks.html b/webhooks.html index 05ae124..ecfaa4c 100644 --- a/webhooks.html +++ b/webhooks.html @@ -466,7 +466,7 @@ <h3>Quick search</h3> </div> <div class="footer"> © Copyright 2012, Emma. - Last updated on Dec 18, 2012 at 16:14. + Last updated on Dec 18, 2012 at 16:15. </div> </body> </html> \ No newline at end of file From 4039f8996ddb425304fd65073a0cd115dac9887f Mon Sep 17 00:00:00 2001 From: Lance Roggendorff <lance.roggendorff@myemma.com> Date: Wed, 2 Jan 2013 13:34:38 -0600 Subject: [PATCH 014/219] Update audience documentation. --- _images/api_keys.jpg | Bin 101838 -> 68384 bytes _static/emma.css | 36 +++++----------- _static/img/bg-header.png | Bin 2051 -> 1003 bytes _static/img/logo.png | Bin 8704 -> 7296 bytes api/external/fields.html | 75 ++++++++++++++++++++++----------- api/external/groups.html | 75 ++++++++++++++++++++++----------- api/external/mailings.html | 75 ++++++++++++++++++++++----------- api/external/members.html | 75 ++++++++++++++++++++++----------- api/external/response.html | 75 ++++++++++++++++++++++----------- api/external/searches.html | 77 +++++++++++++++++++++++----------- api/external/triggers.html | 81 ++++++++++++++++++++++++------------ api/external/webhooks.html | 75 ++++++++++++++++++++++----------- genindex.html | 80 ++++++++++++++++++++++------------- http-routingtable.html | 75 ++++++++++++++++++++++----------- index.html | 75 ++++++++++++++++++++++----------- member_search.html | 75 ++++++++++++++++++++++----------- pagination.html | 75 ++++++++++++++++++++++----------- php_get_member_example.html | 75 ++++++++++++++++++++++----------- php_signup_example.html | 75 ++++++++++++++++++++++----------- placeholders.html | 75 ++++++++++++++++++++++----------- search.html | 75 ++++++++++++++++++++++----------- searchindex.js | 2 +- webhooks.html | 75 ++++++++++++++++++++++----------- 23 files changed, 935 insertions(+), 466 deletions(-) diff --git a/_images/api_keys.jpg b/_images/api_keys.jpg index 19740fcc1321e90cbe987d5b9eaa1afd7d26f756..8db3b098e88038b9bdf27bb4096d19865c56d0a0 100644 GIT binary patch literal 68384 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 Q4wV~a)2=16K+Zn?4PHDN9{>OV literal 101838 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�^TFH(@3E9zX(&6 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 diff --git a/_static/emma.css b/_static/emma.css index 7ff58b2..5e0532d 100644 --- a/_static/emma.css +++ b/_static/emma.css @@ -408,7 +408,9 @@ a:hover tt { * we normalize monospace styles ourselves * table font-size is reset in the HTML5 reset above so there is no need to repeat */ -body { font:13px/1.231 sans-serif; *font-size:small; } /* hack retained to preserve specificity */ +body { font:15px/1.231 sans-serif; *font-size:small; } /* hack retained to preserve specificity */ + +body { font-family: "proxima-nova", sans-serif} select, input, textarea, button { font:99% sans-serif; } @@ -476,22 +478,6 @@ textarea { overflow: auto; } /* thnx ivannikolic! www.sitepoint.com/blogs/2010/0 .clearer { display:none; } -/******************************************************** -********************************************************* -* FONT-FACE -********************************************************* -********************************************************/ -@font-face { - font-family: 'BebasNeueRegular'; - src: url('img/fonts/BebasNeue-webfont.eot'); - src: url('img/fonts/BebasNeue-webfont.eot?#iefix') format('embedded-opentype'), - url('img/fonts/BebasNeue-webfont.woff') format('woff'), - url('img/fonts/BebasNeue-webfont.ttf') format('truetype'), - url('img/fonts/BebasNeue-webfont.svg#BebasNeueRegular') format('svg'); - font-weight: normal; - font-style: normal; - -} /******************************************************** ********************************************************* @@ -507,8 +493,8 @@ pre { background:#fff; z-index:3; -webkit-border-radius:0; -moz-border-radius:0; /*Header - Main*/ -header[role="banner"] { height:140px; max-width:1140px; margin:16px auto 0; } -header[role="banner"] h1 { width:342px; height:86px; margin:0 auto; background:url(img/logo.png) no-repeat; text-indent:-9999px; } +header[role="banner"] { height:140px; max-width:940px; margin:16px auto 0; } +header[role="banner"] h1 { width:342px; height:86px; margin:0; background:url(img/logo.png) no-repeat; text-indent:-9999px; } /*Page*/ div.document { position:relative; margin-top:0; } @@ -517,7 +503,7 @@ div.document { position:relative; margin-top:0; } div.sphinxsidebar { } div.sphinxsidebarwrapper { } div.sphinxsidebar a { color:#507B9B; } -div.sphinxsidebar h3, div.sphinxsidebar h3 a { position:relative; margin-top:24px; padding-top:6px; font-family:'BebasNeueRegular'; /*border-top:3px solid #666;*/ color:#999; text-decoration:none; border:none; } +div.sphinxsidebar h3, div.sphinxsidebar h3 a { position:relative; margin-top:24px; padding-top:6px; font-family:'proxima-nova-alt-ext-cond'; /*border-top:3px solid #666;*/ color:#999; font-weight: 600; text-transform: uppercase; text-decoration:none; border:none; } div.sphinxsidebar h3 a { border:none; } div.sphinxsidebar h3:first-child { margin-top:0; } /* div.sphinxsidebar h3:before { content:''; display:block; position:absolute; left:0; top:3px; width:100%; height:100%; border-top:1px solid #666; }*/ @@ -526,15 +512,15 @@ div.sphinxsidebarwrapper > ul > li > a { } div.sphinxsidebarwrapper > ul > li > a:hover { border:none; } div.sphinxsidebar ul ul { margin-top:8px; } div.sphinxsidebar ul ul ul { margin-top:8px; } -div.sphinxsidebar li { margin-bottom:12px; font-weight:bold; font-size:12px; } -div.sphinxsidebar li li { font-weight:normal; font-size:12px; } +div.sphinxsidebar li { margin-bottom:12px; /*font-weight:bold;*/ font-size:14px; } +div.sphinxsidebar li li { font-weight:normal; font-size:14px; } div.sphinxsidebar li li a { color:#507B9B; } /*Main Content*/ div.bodywrapper { position:relative; z-index:2; } div.body { position:relative; padding:0 30px 30px; z-index:3; } - div.body h1 { margin-bottom:24px; font-family:"Helvetica",Arial,sans-serif; font-weight:bold; font-size:32px; } + div.body h1 { margin-bottom:24px; font-family:"proxima-nova","Helvetica",Arial,sans-serif; font-weight:bold; font-size:32px; } div.body .section { margin-top:24px; } div.body .section:first-child { margin-top:0; } - div.body h2 { margin-top:24px; margin-bottom:12px; font-family:"Helvetica",Arial,sans-serif; font-weight:bold; font-size:20px; color:#666; } -div.body p, div.body dd, div.body li { line-height: 1.4em; } \ No newline at end of file + div.body h2 { margin-top:24px; margin-bottom:12px; font-family:"proxima-nova","Helvetica",Arial,sans-serif; font-weight:bold; font-size:20px; color:#666; } +div.body p, div.body dd, div.body li { line-height: 140%; } \ No newline at end of file diff --git a/_static/img/bg-header.png b/_static/img/bg-header.png index 2f754d74b189bd7748c2d0c417247df3dfd02510..de6ea4513b061c3cc883ef99f4e412ad95854d32 100644 GIT binary patch literal 1003 zcmaJ=&ui0A91m2{l?~=?6O~6M;=$%ulWqykX4j-!VHsUpSOvl5$J-jZ<Ymd5&2|xY z5IlMCBK`r+gUIkEBI3b=;B9#E=3y5vGMRXi`O>wW2W#Nvz4zt&`FwwU-owh`+(`Oj znxd$Y^1N0h`xsew&Zo%#!_luRWE;nN1J}?hZkr*b3J$U$D0}7_tU}Y-+V}|b6qUN_ z)*HBCEGRbe7&Gx<VlN<QiptN#foZoO1{Pd%eU<+H<{b@ON2Qk~gEN96Y`XK?A*^jL z*6r<<Ej#qgG|0yaA@CqJLF}#jkrJzPhgTuz#LUv5<APf%eUenesDL60A&?j@V{<tk z<V1!SIa!o%0D<E<mKRuVGQ)F<G^ubr=zcVb7CNg+RV#I4k()|4F%A@#ZMWM@JIkPO zjpb!oW;uZsgbeY>L|Z;K<BT6o^cXZ4*`XU?7x^GzG%d7=RhndaQi2!sY5l0%CekoA zHUpMtxTK_>qhb8t)${t^5w611eE&%t)wcr3R$+uTLz@h4bs`BBD8&$(7=?9&)_Yy7 zG!aHo69u4HlNcTtrtSKPrGqdGrR+!8^lezyRGM%wuInf{Ju8=_DKR@Wo8x(1C=?}8 zpVbSRpyxDAlX_SU*_$5paS!X9Vx@uDL=0X)B5N>o??R^(A`f(mR@}k42m|@LSZ8o9 z*@0M=B*P}7{cF@c6VXp{><gD%`qGC!(R)aQ{rK(CGx8{gD+_h~`1ttn@bKW^V1IxA z=jY27vFl~6P>;V@E7qCRHT?Acg-@2H?T+sa?Tn^!_Dykm=yvJrt4q7l+;9HdqosSp rFJ_)>P!E>4bm{%|u^-g((7DkSN-Ugxy>~19Jb8X)eNlTkyR!2K^7=jy delta 2036 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 SR@Ni{0000<MNUMnLSTZyA_QOn diff --git a/_static/img/logo.png b/_static/img/logo.png index 4a5f862e1335ba7f80c4467ace350cda286704ec..d8cd3a183c381a1412a2412329a648b1e7407d5c 100644 GIT binary patch literal 7296 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 literal 8704 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 PbO4kUKD;TDhXno)UETWK diff --git a/api/external/fields.html b/api/external/fields.html index 21ca13e..9e0faf1 100644 --- a/api/external/fields.html +++ b/api/external/fields.html @@ -1,13 +1,15 @@ -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" - "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> + +<!doctype html> + <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> - <title>Fields — audience 0.1 documentation</title> + <title>Emma API Documentation | Emma, Inc.</title> + <link rel="stylesheet" href="../../_static/emma.css" type="text/css" /> <link rel="stylesheet" href="../../_static/pygments.css" type="text/css" /> @@ -27,30 +29,41 @@ <link rel="top" title="audience 0.1 documentation" href="../../index.html" /> <link rel="next" title="Groups" href="groups.html" /> <link rel="prev" title="Emma API" href="../../index.html" /> - + <link rel="icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> + <link rel="shortcut icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> + <link rel="apple-touch-icon-precomposed" href="http://myemma.com/static/global/favicons/apple-iphone.png" /> + <link rel="apple-touch-icon-precomposed" sizes="72x72" href="http://myemma.com/static/global/favicons/apple-ipad.png" /> + <link rel="apple-touch-icon-precomposed" sizes="114x114" href="http://myemma.com/static/global/favicons/apple-iphone-2x.png" /> + <link rel="apple-touch-icon-precomposed" sizes="144x144" href="http://myemma.com/static/global/favicons/apple-ipad-2x.png" /> + + <script type="text/javascript" src="//use.typekit.net/zfm0nfo.js"></script> + <script type="text/javascript">try{Typekit.load();}catch(e){}</script> + + <script src="http://code.jquery.com/jquery-1.4.min.js"></script> + <script>window.jQuery || document.write('<script src="_static/jquery.js"><\/script>')</script> - <style type="text/css"> - .resp-trigger, .resp-trigger:hover {font-size:10pt;text-decoration:none;} - div.sample-response.hide-response pre.response {display: none;} - div.sample-response .tshow, - div.sample-response.hide-response .thide {display: none;} - div.sample-response .thide, - div.sample-response.hide-response .tshow {display: inline;} - </style> - <script> - $().ready(function() { - $("a.resp-trigger").click(function(e) { - e.preventDefault(); - $(this).parents("div.sample-response").toggleClass("hide-response"); + <style type="text/css"> + .resp-trigger, .resp-trigger:hover {font-size:10pt;text-decoration:none;} + div.sample-response.hide-response pre.response {display: none;} + div.sample-response .tshow, + div.sample-response.hide-response .thide {display: none;} + div.sample-response .thide, + div.sample-response.hide-response .tshow {display: inline;} + </style> + <script> + $().ready(function() { + $("a.resp-trigger").click(function(e) { + e.preventDefault(); + $(this).parents("div.sample-response").toggleClass("hide-response"); + }); }); - }); - </script> + </script> </head> <body> -<header role="banner"> - <h1>Emma API Documentation</h1> -</header> + <header role="banner"> + <h1>Emma API Documentation</h1> + </header> <div class="related"> <h3>Navigation</h3> <ul> @@ -368,13 +381,27 @@ <h3>Quick search</h3> </p> </div> <script type="text/javascript">$('#searchbox').show(0);</script> +<div id="emma-links"> + <h3>Emma Links</h3> + <ul> + <li><a href="http://myemma.com" title="Visit Emma's homepage" target="_blank">Emma Home</a></li> + + <li><a href="http://myemma.com/blog" title="Visit the Emma Blog" target="_blank">Emma Blog</a></li> + <li><a href="http://myemma.com/help" title="Visit Emma's help guide" target="_blank">Emma Help</a></li> + </ul> +</div> + +<div id="inquiry"> + <h3>Interested in Emma?</h3> + <p>Emma's email marketing makes communicating simple and stylish. <a href="/get-started/inquire" title="Get started today.">Get started today</a>.</p> +</div> </div> </div> <div class="clearer"></div> </div> <div class="footer"> - © Copyright 2012, Emma. - Last updated on Dec 18, 2012 at 16:15. + © Copyright 2013, Emma. + Last updated on Jan 02, 2013 at 01:34 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/groups.html b/api/external/groups.html index 7e122d2..0b89e03 100644 --- a/api/external/groups.html +++ b/api/external/groups.html @@ -1,13 +1,15 @@ -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" - "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> + +<!doctype html> + <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> - <title>Groups — audience 0.1 documentation</title> + <title>Emma API Documentation | Emma, Inc.</title> + <link rel="stylesheet" href="../../_static/emma.css" type="text/css" /> <link rel="stylesheet" href="../../_static/pygments.css" type="text/css" /> @@ -27,30 +29,41 @@ <link rel="top" title="audience 0.1 documentation" href="../../index.html" /> <link rel="next" title="Mailings" href="mailings.html" /> <link rel="prev" title="Fields" href="fields.html" /> - + <link rel="icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> + <link rel="shortcut icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> + <link rel="apple-touch-icon-precomposed" href="http://myemma.com/static/global/favicons/apple-iphone.png" /> + <link rel="apple-touch-icon-precomposed" sizes="72x72" href="http://myemma.com/static/global/favicons/apple-ipad.png" /> + <link rel="apple-touch-icon-precomposed" sizes="114x114" href="http://myemma.com/static/global/favicons/apple-iphone-2x.png" /> + <link rel="apple-touch-icon-precomposed" sizes="144x144" href="http://myemma.com/static/global/favicons/apple-ipad-2x.png" /> + + <script type="text/javascript" src="//use.typekit.net/zfm0nfo.js"></script> + <script type="text/javascript">try{Typekit.load();}catch(e){}</script> + + <script src="http://code.jquery.com/jquery-1.4.min.js"></script> + <script>window.jQuery || document.write('<script src="_static/jquery.js"><\/script>')</script> - <style type="text/css"> - .resp-trigger, .resp-trigger:hover {font-size:10pt;text-decoration:none;} - div.sample-response.hide-response pre.response {display: none;} - div.sample-response .tshow, - div.sample-response.hide-response .thide {display: none;} - div.sample-response .thide, - div.sample-response.hide-response .tshow {display: inline;} - </style> - <script> - $().ready(function() { - $("a.resp-trigger").click(function(e) { - e.preventDefault(); - $(this).parents("div.sample-response").toggleClass("hide-response"); + <style type="text/css"> + .resp-trigger, .resp-trigger:hover {font-size:10pt;text-decoration:none;} + div.sample-response.hide-response pre.response {display: none;} + div.sample-response .tshow, + div.sample-response.hide-response .thide {display: none;} + div.sample-response .thide, + div.sample-response.hide-response .tshow {display: inline;} + </style> + <script> + $().ready(function() { + $("a.resp-trigger").click(function(e) { + e.preventDefault(); + $(this).parents("div.sample-response").toggleClass("hide-response"); + }); }); - }); - </script> + </script> </head> <body> -<header role="banner"> - <h1>Emma API Documentation</h1> -</header> + <header role="banner"> + <h1>Emma API Documentation</h1> + </header> <div class="related"> <h3>Navigation</h3> <ul> @@ -655,13 +668,27 @@ <h3>Quick search</h3> </p> </div> <script type="text/javascript">$('#searchbox').show(0);</script> +<div id="emma-links"> + <h3>Emma Links</h3> + <ul> + <li><a href="http://myemma.com" title="Visit Emma's homepage" target="_blank">Emma Home</a></li> + + <li><a href="http://myemma.com/blog" title="Visit the Emma Blog" target="_blank">Emma Blog</a></li> + <li><a href="http://myemma.com/help" title="Visit Emma's help guide" target="_blank">Emma Help</a></li> + </ul> +</div> + +<div id="inquiry"> + <h3>Interested in Emma?</h3> + <p>Emma's email marketing makes communicating simple and stylish. <a href="/get-started/inquire" title="Get started today.">Get started today</a>.</p> +</div> </div> </div> <div class="clearer"></div> </div> <div class="footer"> - © Copyright 2012, Emma. - Last updated on Dec 18, 2012 at 16:15. + © Copyright 2013, Emma. + Last updated on Jan 02, 2013 at 01:34 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/mailings.html b/api/external/mailings.html index ef96ecb..c734902 100644 --- a/api/external/mailings.html +++ b/api/external/mailings.html @@ -1,13 +1,15 @@ -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" - "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> + +<!doctype html> + <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> - <title>Mailings — audience 0.1 documentation</title> + <title>Emma API Documentation | Emma, Inc.</title> + <link rel="stylesheet" href="../../_static/emma.css" type="text/css" /> <link rel="stylesheet" href="../../_static/pygments.css" type="text/css" /> @@ -27,30 +29,41 @@ <link rel="top" title="audience 0.1 documentation" href="../../index.html" /> <link rel="next" title="Members" href="members.html" /> <link rel="prev" title="Groups" href="groups.html" /> - + <link rel="icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> + <link rel="shortcut icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> + <link rel="apple-touch-icon-precomposed" href="http://myemma.com/static/global/favicons/apple-iphone.png" /> + <link rel="apple-touch-icon-precomposed" sizes="72x72" href="http://myemma.com/static/global/favicons/apple-ipad.png" /> + <link rel="apple-touch-icon-precomposed" sizes="114x114" href="http://myemma.com/static/global/favicons/apple-iphone-2x.png" /> + <link rel="apple-touch-icon-precomposed" sizes="144x144" href="http://myemma.com/static/global/favicons/apple-ipad-2x.png" /> + + <script type="text/javascript" src="//use.typekit.net/zfm0nfo.js"></script> + <script type="text/javascript">try{Typekit.load();}catch(e){}</script> + + <script src="http://code.jquery.com/jquery-1.4.min.js"></script> + <script>window.jQuery || document.write('<script src="_static/jquery.js"><\/script>')</script> - <style type="text/css"> - .resp-trigger, .resp-trigger:hover {font-size:10pt;text-decoration:none;} - div.sample-response.hide-response pre.response {display: none;} - div.sample-response .tshow, - div.sample-response.hide-response .thide {display: none;} - div.sample-response .thide, - div.sample-response.hide-response .tshow {display: inline;} - </style> - <script> - $().ready(function() { - $("a.resp-trigger").click(function(e) { - e.preventDefault(); - $(this).parents("div.sample-response").toggleClass("hide-response"); + <style type="text/css"> + .resp-trigger, .resp-trigger:hover {font-size:10pt;text-decoration:none;} + div.sample-response.hide-response pre.response {display: none;} + div.sample-response .tshow, + div.sample-response.hide-response .thide {display: none;} + div.sample-response .thide, + div.sample-response.hide-response .tshow {display: inline;} + </style> + <script> + $().ready(function() { + $("a.resp-trigger").click(function(e) { + e.preventDefault(); + $(this).parents("div.sample-response").toggleClass("hide-response"); + }); }); - }); - </script> + </script> </head> <body> -<header role="banner"> - <h1>Emma API Documentation</h1> -</header> + <header role="banner"> + <h1>Emma API Documentation</h1> + </header> <div class="related"> <h3>Navigation</h3> <ul> @@ -762,13 +775,27 @@ <h3>Quick search</h3> </p> </div> <script type="text/javascript">$('#searchbox').show(0);</script> +<div id="emma-links"> + <h3>Emma Links</h3> + <ul> + <li><a href="http://myemma.com" title="Visit Emma's homepage" target="_blank">Emma Home</a></li> + + <li><a href="http://myemma.com/blog" title="Visit the Emma Blog" target="_blank">Emma Blog</a></li> + <li><a href="http://myemma.com/help" title="Visit Emma's help guide" target="_blank">Emma Help</a></li> + </ul> +</div> + +<div id="inquiry"> + <h3>Interested in Emma?</h3> + <p>Emma's email marketing makes communicating simple and stylish. <a href="/get-started/inquire" title="Get started today.">Get started today</a>.</p> +</div> </div> </div> <div class="clearer"></div> </div> <div class="footer"> - © Copyright 2012, Emma. - Last updated on Dec 18, 2012 at 16:15. + © Copyright 2013, Emma. + Last updated on Jan 02, 2013 at 01:34 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/members.html b/api/external/members.html index 9d7489f..541051b 100644 --- a/api/external/members.html +++ b/api/external/members.html @@ -1,13 +1,15 @@ -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" - "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> + +<!doctype html> + <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> - <title>Members — audience 0.1 documentation</title> + <title>Emma API Documentation | Emma, Inc.</title> + <link rel="stylesheet" href="../../_static/emma.css" type="text/css" /> <link rel="stylesheet" href="../../_static/pygments.css" type="text/css" /> @@ -27,30 +29,41 @@ <link rel="top" title="audience 0.1 documentation" href="../../index.html" /> <link rel="next" title="Response" href="response.html" /> <link rel="prev" title="Mailings" href="mailings.html" /> - + <link rel="icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> + <link rel="shortcut icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> + <link rel="apple-touch-icon-precomposed" href="http://myemma.com/static/global/favicons/apple-iphone.png" /> + <link rel="apple-touch-icon-precomposed" sizes="72x72" href="http://myemma.com/static/global/favicons/apple-ipad.png" /> + <link rel="apple-touch-icon-precomposed" sizes="114x114" href="http://myemma.com/static/global/favicons/apple-iphone-2x.png" /> + <link rel="apple-touch-icon-precomposed" sizes="144x144" href="http://myemma.com/static/global/favicons/apple-ipad-2x.png" /> + + <script type="text/javascript" src="//use.typekit.net/zfm0nfo.js"></script> + <script type="text/javascript">try{Typekit.load();}catch(e){}</script> + + <script src="http://code.jquery.com/jquery-1.4.min.js"></script> + <script>window.jQuery || document.write('<script src="_static/jquery.js"><\/script>')</script> - <style type="text/css"> - .resp-trigger, .resp-trigger:hover {font-size:10pt;text-decoration:none;} - div.sample-response.hide-response pre.response {display: none;} - div.sample-response .tshow, - div.sample-response.hide-response .thide {display: none;} - div.sample-response .thide, - div.sample-response.hide-response .tshow {display: inline;} - </style> - <script> - $().ready(function() { - $("a.resp-trigger").click(function(e) { - e.preventDefault(); - $(this).parents("div.sample-response").toggleClass("hide-response"); + <style type="text/css"> + .resp-trigger, .resp-trigger:hover {font-size:10pt;text-decoration:none;} + div.sample-response.hide-response pre.response {display: none;} + div.sample-response .tshow, + div.sample-response.hide-response .thide {display: none;} + div.sample-response .thide, + div.sample-response.hide-response .tshow {display: inline;} + </style> + <script> + $().ready(function() { + $("a.resp-trigger").click(function(e) { + e.preventDefault(); + $(this).parents("div.sample-response").toggleClass("hide-response"); + }); }); - }); - </script> + </script> </head> <body> -<header role="banner"> - <h1>Emma API Documentation</h1> -</header> + <header role="banner"> + <h1>Emma API Documentation</h1> + </header> <div class="related"> <h3>Navigation</h3> <ul> @@ -1137,13 +1150,27 @@ <h3>Quick search</h3> </p> </div> <script type="text/javascript">$('#searchbox').show(0);</script> +<div id="emma-links"> + <h3>Emma Links</h3> + <ul> + <li><a href="http://myemma.com" title="Visit Emma's homepage" target="_blank">Emma Home</a></li> + + <li><a href="http://myemma.com/blog" title="Visit the Emma Blog" target="_blank">Emma Blog</a></li> + <li><a href="http://myemma.com/help" title="Visit Emma's help guide" target="_blank">Emma Help</a></li> + </ul> +</div> + +<div id="inquiry"> + <h3>Interested in Emma?</h3> + <p>Emma's email marketing makes communicating simple and stylish. <a href="/get-started/inquire" title="Get started today.">Get started today</a>.</p> +</div> </div> </div> <div class="clearer"></div> </div> <div class="footer"> - © Copyright 2012, Emma. - Last updated on Dec 18, 2012 at 16:15. + © Copyright 2013, Emma. + Last updated on Jan 02, 2013 at 01:34 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/response.html b/api/external/response.html index c496f71..30603d5 100644 --- a/api/external/response.html +++ b/api/external/response.html @@ -1,13 +1,15 @@ -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" - "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> + +<!doctype html> + <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> - <title>Response — audience 0.1 documentation</title> + <title>Emma API Documentation | Emma, Inc.</title> + <link rel="stylesheet" href="../../_static/emma.css" type="text/css" /> <link rel="stylesheet" href="../../_static/pygments.css" type="text/css" /> @@ -27,30 +29,41 @@ <link rel="top" title="audience 0.1 documentation" href="../../index.html" /> <link rel="next" title="Searches" href="searches.html" /> <link rel="prev" title="Members" href="members.html" /> - + <link rel="icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> + <link rel="shortcut icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> + <link rel="apple-touch-icon-precomposed" href="http://myemma.com/static/global/favicons/apple-iphone.png" /> + <link rel="apple-touch-icon-precomposed" sizes="72x72" href="http://myemma.com/static/global/favicons/apple-ipad.png" /> + <link rel="apple-touch-icon-precomposed" sizes="114x114" href="http://myemma.com/static/global/favicons/apple-iphone-2x.png" /> + <link rel="apple-touch-icon-precomposed" sizes="144x144" href="http://myemma.com/static/global/favicons/apple-ipad-2x.png" /> + + <script type="text/javascript" src="//use.typekit.net/zfm0nfo.js"></script> + <script type="text/javascript">try{Typekit.load();}catch(e){}</script> + + <script src="http://code.jquery.com/jquery-1.4.min.js"></script> + <script>window.jQuery || document.write('<script src="_static/jquery.js"><\/script>')</script> - <style type="text/css"> - .resp-trigger, .resp-trigger:hover {font-size:10pt;text-decoration:none;} - div.sample-response.hide-response pre.response {display: none;} - div.sample-response .tshow, - div.sample-response.hide-response .thide {display: none;} - div.sample-response .thide, - div.sample-response.hide-response .tshow {display: inline;} - </style> - <script> - $().ready(function() { - $("a.resp-trigger").click(function(e) { - e.preventDefault(); - $(this).parents("div.sample-response").toggleClass("hide-response"); + <style type="text/css"> + .resp-trigger, .resp-trigger:hover {font-size:10pt;text-decoration:none;} + div.sample-response.hide-response pre.response {display: none;} + div.sample-response .tshow, + div.sample-response.hide-response .thide {display: none;} + div.sample-response .thide, + div.sample-response.hide-response .tshow {display: inline;} + </style> + <script> + $().ready(function() { + $("a.resp-trigger").click(function(e) { + e.preventDefault(); + $(this).parents("div.sample-response").toggleClass("hide-response"); + }); }); - }); - </script> + </script> </head> <body> -<header role="banner"> - <h1>Emma API Documentation</h1> -</header> + <header role="banner"> + <h1>Emma API Documentation</h1> + </header> <div class="related"> <h3>Navigation</h3> <ul> @@ -972,13 +985,27 @@ <h3>Quick search</h3> </p> </div> <script type="text/javascript">$('#searchbox').show(0);</script> +<div id="emma-links"> + <h3>Emma Links</h3> + <ul> + <li><a href="http://myemma.com" title="Visit Emma's homepage" target="_blank">Emma Home</a></li> + + <li><a href="http://myemma.com/blog" title="Visit the Emma Blog" target="_blank">Emma Blog</a></li> + <li><a href="http://myemma.com/help" title="Visit Emma's help guide" target="_blank">Emma Help</a></li> + </ul> +</div> + +<div id="inquiry"> + <h3>Interested in Emma?</h3> + <p>Emma's email marketing makes communicating simple and stylish. <a href="/get-started/inquire" title="Get started today.">Get started today</a>.</p> +</div> </div> </div> <div class="clearer"></div> </div> <div class="footer"> - © Copyright 2012, Emma. - Last updated on Dec 18, 2012 at 16:15. + © Copyright 2013, Emma. + Last updated on Jan 02, 2013 at 01:34 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/searches.html b/api/external/searches.html index 7862dcd..d324717 100644 --- a/api/external/searches.html +++ b/api/external/searches.html @@ -1,13 +1,15 @@ -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" - "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> + +<!doctype html> + <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> - <title>Searches — audience 0.1 documentation</title> + <title>Emma API Documentation | Emma, Inc.</title> + <link rel="stylesheet" href="../../_static/emma.css" type="text/css" /> <link rel="stylesheet" href="../../_static/pygments.css" type="text/css" /> @@ -27,30 +29,41 @@ <link rel="top" title="audience 0.1 documentation" href="../../index.html" /> <link rel="next" title="Triggers" href="triggers.html" /> <link rel="prev" title="Response" href="response.html" /> - + <link rel="icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> + <link rel="shortcut icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> + <link rel="apple-touch-icon-precomposed" href="http://myemma.com/static/global/favicons/apple-iphone.png" /> + <link rel="apple-touch-icon-precomposed" sizes="72x72" href="http://myemma.com/static/global/favicons/apple-ipad.png" /> + <link rel="apple-touch-icon-precomposed" sizes="114x114" href="http://myemma.com/static/global/favicons/apple-iphone-2x.png" /> + <link rel="apple-touch-icon-precomposed" sizes="144x144" href="http://myemma.com/static/global/favicons/apple-ipad-2x.png" /> + + <script type="text/javascript" src="//use.typekit.net/zfm0nfo.js"></script> + <script type="text/javascript">try{Typekit.load();}catch(e){}</script> + + <script src="http://code.jquery.com/jquery-1.4.min.js"></script> + <script>window.jQuery || document.write('<script src="_static/jquery.js"><\/script>')</script> - <style type="text/css"> - .resp-trigger, .resp-trigger:hover {font-size:10pt;text-decoration:none;} - div.sample-response.hide-response pre.response {display: none;} - div.sample-response .tshow, - div.sample-response.hide-response .thide {display: none;} - div.sample-response .thide, - div.sample-response.hide-response .tshow {display: inline;} - </style> - <script> - $().ready(function() { - $("a.resp-trigger").click(function(e) { - e.preventDefault(); - $(this).parents("div.sample-response").toggleClass("hide-response"); + <style type="text/css"> + .resp-trigger, .resp-trigger:hover {font-size:10pt;text-decoration:none;} + div.sample-response.hide-response pre.response {display: none;} + div.sample-response .tshow, + div.sample-response.hide-response .thide {display: none;} + div.sample-response .thide, + div.sample-response.hide-response .tshow {display: inline;} + </style> + <script> + $().ready(function() { + $("a.resp-trigger").click(function(e) { + e.preventDefault(); + $(this).parents("div.sample-response").toggleClass("hide-response"); + }); }); - }); - </script> + </script> </head> <body> -<header role="banner"> - <h1>Emma API Documentation</h1> -</header> + <header role="banner"> + <h1>Emma API Documentation</h1> + </header> <div class="related"> <h3>Navigation</h3> <ul> @@ -172,7 +185,7 @@ <h1>Searches<a class="headerlink" href="#searches" title="Permalink to this head "name": "Test Search", "criteria": "[\"or\", [\"group\", \"eq\", \"Monthly Newsletter\"],[\"group\", \"eq\", \"Widget Buyers\"]]", "deleted_at": null, - "last_run_at": "@D:2012-12-18T16:15:11", + "last_run_at": "@D:2013-01-02T13:34:33", "active_count": 2, "account_id": 100 } @@ -464,13 +477,27 @@ <h3>Quick search</h3> </p> </div> <script type="text/javascript">$('#searchbox').show(0);</script> +<div id="emma-links"> + <h3>Emma Links</h3> + <ul> + <li><a href="http://myemma.com" title="Visit Emma's homepage" target="_blank">Emma Home</a></li> + + <li><a href="http://myemma.com/blog" title="Visit the Emma Blog" target="_blank">Emma Blog</a></li> + <li><a href="http://myemma.com/help" title="Visit Emma's help guide" target="_blank">Emma Help</a></li> + </ul> +</div> + +<div id="inquiry"> + <h3>Interested in Emma?</h3> + <p>Emma's email marketing makes communicating simple and stylish. <a href="/get-started/inquire" title="Get started today.">Get started today</a>.</p> +</div> </div> </div> <div class="clearer"></div> </div> <div class="footer"> - © Copyright 2012, Emma. - Last updated on Dec 18, 2012 at 16:15. + © Copyright 2013, Emma. + Last updated on Jan 02, 2013 at 01:34 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/triggers.html b/api/external/triggers.html index 4a1228a..0edaa27 100644 --- a/api/external/triggers.html +++ b/api/external/triggers.html @@ -1,13 +1,15 @@ -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" - "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> + +<!doctype html> + <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> - <title>Triggers — audience 0.1 documentation</title> + <title>Emma API Documentation | Emma, Inc.</title> + <link rel="stylesheet" href="../../_static/emma.css" type="text/css" /> <link rel="stylesheet" href="../../_static/pygments.css" type="text/css" /> @@ -27,30 +29,41 @@ <link rel="top" title="audience 0.1 documentation" href="../../index.html" /> <link rel="next" title="Webhooks" href="webhooks.html" /> <link rel="prev" title="Searches" href="searches.html" /> - + <link rel="icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> + <link rel="shortcut icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> + <link rel="apple-touch-icon-precomposed" href="http://myemma.com/static/global/favicons/apple-iphone.png" /> + <link rel="apple-touch-icon-precomposed" sizes="72x72" href="http://myemma.com/static/global/favicons/apple-ipad.png" /> + <link rel="apple-touch-icon-precomposed" sizes="114x114" href="http://myemma.com/static/global/favicons/apple-iphone-2x.png" /> + <link rel="apple-touch-icon-precomposed" sizes="144x144" href="http://myemma.com/static/global/favicons/apple-ipad-2x.png" /> + + <script type="text/javascript" src="//use.typekit.net/zfm0nfo.js"></script> + <script type="text/javascript">try{Typekit.load();}catch(e){}</script> + + <script src="http://code.jquery.com/jquery-1.4.min.js"></script> + <script>window.jQuery || document.write('<script src="_static/jquery.js"><\/script>')</script> - <style type="text/css"> - .resp-trigger, .resp-trigger:hover {font-size:10pt;text-decoration:none;} - div.sample-response.hide-response pre.response {display: none;} - div.sample-response .tshow, - div.sample-response.hide-response .thide {display: none;} - div.sample-response .thide, - div.sample-response.hide-response .tshow {display: inline;} - </style> - <script> - $().ready(function() { - $("a.resp-trigger").click(function(e) { - e.preventDefault(); - $(this).parents("div.sample-response").toggleClass("hide-response"); + <style type="text/css"> + .resp-trigger, .resp-trigger:hover {font-size:10pt;text-decoration:none;} + div.sample-response.hide-response pre.response {display: none;} + div.sample-response .tshow, + div.sample-response.hide-response .thide {display: none;} + div.sample-response .thide, + div.sample-response.hide-response .tshow {display: inline;} + </style> + <script> + $().ready(function() { + $("a.resp-trigger").click(function(e) { + e.preventDefault(); + $(this).parents("div.sample-response").toggleClass("hide-response"); + }); }); - }); - </script> + </script> </head> <body> -<header role="banner"> - <h1>Emma API Documentation</h1> -</header> + <header role="banner"> + <h1>Emma API Documentation</h1> + </header> <div class="related"> <h3>Navigation</h3> <ul> @@ -121,7 +134,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": 203, "push_offset_units": "0:-14:0:0", - "start_ts": "@D:2012-12-18T16:15:09", + "start_ts": "@D:2013-01-02T13:34:30", "trigger_id": 100, "signups": null, "push_offset": "@I:-1209600.0", @@ -162,7 +175,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": null, "push_offset_units": "0:3:0:0", - "start_ts": "@D:2012-12-18T16:15:09", + "start_ts": "@D:2013-01-02T13:34:30", "trigger_id": 101, "signups": [ 1, @@ -299,7 +312,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": 203, "push_offset_units": "0:-14:0:0", - "start_ts": "@D:2012-12-18T16:15:09", + "start_ts": "@D:2013-01-02T13:34:30", "trigger_id": 100, "signups": null, "push_offset": "@I:-1209600.0", @@ -452,13 +465,27 @@ <h3>Quick search</h3> </p> </div> <script type="text/javascript">$('#searchbox').show(0);</script> +<div id="emma-links"> + <h3>Emma Links</h3> + <ul> + <li><a href="http://myemma.com" title="Visit Emma's homepage" target="_blank">Emma Home</a></li> + + <li><a href="http://myemma.com/blog" title="Visit the Emma Blog" target="_blank">Emma Blog</a></li> + <li><a href="http://myemma.com/help" title="Visit Emma's help guide" target="_blank">Emma Help</a></li> + </ul> +</div> + +<div id="inquiry"> + <h3>Interested in Emma?</h3> + <p>Emma's email marketing makes communicating simple and stylish. <a href="/get-started/inquire" title="Get started today.">Get started today</a>.</p> +</div> </div> </div> <div class="clearer"></div> </div> <div class="footer"> - © Copyright 2012, Emma. - Last updated on Dec 18, 2012 at 16:15. + © Copyright 2013, Emma. + Last updated on Jan 02, 2013 at 01:34 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/webhooks.html b/api/external/webhooks.html index 2017cb2..66a4a36 100644 --- a/api/external/webhooks.html +++ b/api/external/webhooks.html @@ -1,13 +1,15 @@ -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" - "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> + +<!doctype html> + <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> - <title>Webhooks — audience 0.1 documentation</title> + <title>Emma API Documentation | Emma, Inc.</title> + <link rel="stylesheet" href="../../_static/emma.css" type="text/css" /> <link rel="stylesheet" href="../../_static/pygments.css" type="text/css" /> @@ -27,30 +29,41 @@ <link rel="top" title="audience 0.1 documentation" href="../../index.html" /> <link rel="next" title="Pagination" href="../../pagination.html" /> <link rel="prev" title="Triggers" href="triggers.html" /> - + <link rel="icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> + <link rel="shortcut icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> + <link rel="apple-touch-icon-precomposed" href="http://myemma.com/static/global/favicons/apple-iphone.png" /> + <link rel="apple-touch-icon-precomposed" sizes="72x72" href="http://myemma.com/static/global/favicons/apple-ipad.png" /> + <link rel="apple-touch-icon-precomposed" sizes="114x114" href="http://myemma.com/static/global/favicons/apple-iphone-2x.png" /> + <link rel="apple-touch-icon-precomposed" sizes="144x144" href="http://myemma.com/static/global/favicons/apple-ipad-2x.png" /> + + <script type="text/javascript" src="//use.typekit.net/zfm0nfo.js"></script> + <script type="text/javascript">try{Typekit.load();}catch(e){}</script> + + <script src="http://code.jquery.com/jquery-1.4.min.js"></script> + <script>window.jQuery || document.write('<script src="_static/jquery.js"><\/script>')</script> - <style type="text/css"> - .resp-trigger, .resp-trigger:hover {font-size:10pt;text-decoration:none;} - div.sample-response.hide-response pre.response {display: none;} - div.sample-response .tshow, - div.sample-response.hide-response .thide {display: none;} - div.sample-response .thide, - div.sample-response.hide-response .tshow {display: inline;} - </style> - <script> - $().ready(function() { - $("a.resp-trigger").click(function(e) { - e.preventDefault(); - $(this).parents("div.sample-response").toggleClass("hide-response"); + <style type="text/css"> + .resp-trigger, .resp-trigger:hover {font-size:10pt;text-decoration:none;} + div.sample-response.hide-response pre.response {display: none;} + div.sample-response .tshow, + div.sample-response.hide-response .thide {display: none;} + div.sample-response .thide, + div.sample-response.hide-response .tshow {display: inline;} + </style> + <script> + $().ready(function() { + $("a.resp-trigger").click(function(e) { + e.preventDefault(); + $(this).parents("div.sample-response").toggleClass("hide-response"); + }); }); - }); - </script> + </script> </head> <body> -<header role="banner"> - <h1>Emma API Documentation</h1> -</header> + <header role="banner"> + <h1>Emma API Documentation</h1> + </header> <div class="related"> <h3>Navigation</h3> <ul> @@ -440,13 +453,27 @@ <h3>Quick search</h3> </p> </div> <script type="text/javascript">$('#searchbox').show(0);</script> +<div id="emma-links"> + <h3>Emma Links</h3> + <ul> + <li><a href="http://myemma.com" title="Visit Emma's homepage" target="_blank">Emma Home</a></li> + + <li><a href="http://myemma.com/blog" title="Visit the Emma Blog" target="_blank">Emma Blog</a></li> + <li><a href="http://myemma.com/help" title="Visit Emma's help guide" target="_blank">Emma Help</a></li> + </ul> +</div> + +<div id="inquiry"> + <h3>Interested in Emma?</h3> + <p>Emma's email marketing makes communicating simple and stylish. <a href="/get-started/inquire" title="Get started today.">Get started today</a>.</p> +</div> </div> </div> <div class="clearer"></div> </div> <div class="footer"> - © Copyright 2012, Emma. - Last updated on Dec 18, 2012 at 16:15. + © Copyright 2013, Emma. + Last updated on Jan 02, 2013 at 01:34 PM. </div> </body> </html> \ No newline at end of file diff --git a/genindex.html b/genindex.html index 533985f..c2b8fcd 100644 --- a/genindex.html +++ b/genindex.html @@ -1,15 +1,17 @@ -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" - "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> + +<!doctype html> + <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> - <title>Index — audience 0.1 documentation</title> + <title>Emma API Documentation | Emma, Inc.</title> + <link rel="stylesheet" href="_static/emma.css" type="text/css" /> <link rel="stylesheet" href="_static/pygments.css" type="text/css" /> @@ -27,30 +29,41 @@ <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="icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> + <link rel="shortcut icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> + <link rel="apple-touch-icon-precomposed" href="http://myemma.com/static/global/favicons/apple-iphone.png" /> + <link rel="apple-touch-icon-precomposed" sizes="72x72" href="http://myemma.com/static/global/favicons/apple-ipad.png" /> + <link rel="apple-touch-icon-precomposed" sizes="114x114" href="http://myemma.com/static/global/favicons/apple-iphone-2x.png" /> + <link rel="apple-touch-icon-precomposed" sizes="144x144" href="http://myemma.com/static/global/favicons/apple-ipad-2x.png" /> + + <script type="text/javascript" src="//use.typekit.net/zfm0nfo.js"></script> + <script type="text/javascript">try{Typekit.load();}catch(e){}</script> + + <script src="http://code.jquery.com/jquery-1.4.min.js"></script> + <script>window.jQuery || document.write('<script src="_static/jquery.js"><\/script>')</script> - <style type="text/css"> - .resp-trigger, .resp-trigger:hover {font-size:10pt;text-decoration:none;} - div.sample-response.hide-response pre.response {display: none;} - div.sample-response .tshow, - div.sample-response.hide-response .thide {display: none;} - div.sample-response .thide, - div.sample-response.hide-response .tshow {display: inline;} - </style> - <script> - $().ready(function() { - $("a.resp-trigger").click(function(e) { - e.preventDefault(); - $(this).parents("div.sample-response").toggleClass("hide-response"); + <style type="text/css"> + .resp-trigger, .resp-trigger:hover {font-size:10pt;text-decoration:none;} + div.sample-response.hide-response pre.response {display: none;} + div.sample-response .tshow, + div.sample-response.hide-response .thide {display: none;} + div.sample-response .thide, + div.sample-response.hide-response .tshow {display: inline;} + </style> + <script> + $().ready(function() { + $("a.resp-trigger").click(function(e) { + e.preventDefault(); + $(this).parents("div.sample-response").toggleClass("hide-response"); + }); }); - }); - </script> + </script> </head> <body> -<header role="banner"> - <h1>Emma API Documentation</h1> -</header> + <header role="banner"> + <h1>Emma API Documentation</h1> + </header> <div class="related"> <h3>Navigation</h3> <ul> @@ -81,14 +94,11 @@ <h1 id="index">Index</h1> </div> </div> <div class="sphinxsidebar"> - <div class="sphinxsidebarwrapper"> - - <h3>Related Topics</h3> + <div class="sphinxsidebarwrapper"><h3>Related Topics</h3> <ul> <li><a href="index.html">Documentation overview</a><ul> </ul></li> </ul> - <div id="searchbox" style="display: none"> <h3>Quick search</h3> <form class="search" action="search.html" method="get"> @@ -102,13 +112,27 @@ <h3>Quick search</h3> </p> </div> <script type="text/javascript">$('#searchbox').show(0);</script> +<div id="emma-links"> + <h3>Emma Links</h3> + <ul> + <li><a href="http://myemma.com" title="Visit Emma's homepage" target="_blank">Emma Home</a></li> + + <li><a href="http://myemma.com/blog" title="Visit the Emma Blog" target="_blank">Emma Blog</a></li> + <li><a href="http://myemma.com/help" title="Visit Emma's help guide" target="_blank">Emma Help</a></li> + </ul> +</div> + +<div id="inquiry"> + <h3>Interested in Emma?</h3> + <p>Emma's email marketing makes communicating simple and stylish. <a href="/get-started/inquire" title="Get started today.">Get started today</a>.</p> +</div> </div> </div> <div class="clearer"></div> </div> <div class="footer"> - © Copyright 2012, Emma. - Last updated on Dec 18, 2012 at 16:15. + © Copyright 2013, Emma. + Last updated on Jan 02, 2013 at 01:34 PM. </div> </body> </html> \ No newline at end of file diff --git a/http-routingtable.html b/http-routingtable.html index 8214c45..d89dcdc 100644 --- a/http-routingtable.html +++ b/http-routingtable.html @@ -1,13 +1,15 @@ -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" - "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> + +<!doctype html> + <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> - <title>HTTP Routing Table — audience 0.1 documentation</title> + <title>Emma API Documentation | Emma, Inc.</title> + <link rel="stylesheet" href="_static/emma.css" type="text/css" /> <link rel="stylesheet" href="_static/pygments.css" type="text/css" /> @@ -26,24 +28,35 @@ <script type="text/javascript" src="_static/doctools.js"></script> <link rel="top" title="audience 0.1 documentation" href="index.html" /> - + <link rel="icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> + <link rel="shortcut icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> + <link rel="apple-touch-icon-precomposed" href="http://myemma.com/static/global/favicons/apple-iphone.png" /> + <link rel="apple-touch-icon-precomposed" sizes="72x72" href="http://myemma.com/static/global/favicons/apple-ipad.png" /> + <link rel="apple-touch-icon-precomposed" sizes="114x114" href="http://myemma.com/static/global/favicons/apple-iphone-2x.png" /> + <link rel="apple-touch-icon-precomposed" sizes="144x144" href="http://myemma.com/static/global/favicons/apple-ipad-2x.png" /> + + <script type="text/javascript" src="//use.typekit.net/zfm0nfo.js"></script> + <script type="text/javascript">try{Typekit.load();}catch(e){}</script> + + <script src="http://code.jquery.com/jquery-1.4.min.js"></script> + <script>window.jQuery || document.write('<script src="_static/jquery.js"><\/script>')</script> - <style type="text/css"> - .resp-trigger, .resp-trigger:hover {font-size:10pt;text-decoration:none;} - div.sample-response.hide-response pre.response {display: none;} - div.sample-response .tshow, - div.sample-response.hide-response .thide {display: none;} - div.sample-response .thide, - div.sample-response.hide-response .tshow {display: inline;} - </style> - <script> - $().ready(function() { - $("a.resp-trigger").click(function(e) { - e.preventDefault(); - $(this).parents("div.sample-response").toggleClass("hide-response"); + <style type="text/css"> + .resp-trigger, .resp-trigger:hover {font-size:10pt;text-decoration:none;} + div.sample-response.hide-response pre.response {display: none;} + div.sample-response .tshow, + div.sample-response.hide-response .thide {display: none;} + div.sample-response .thide, + div.sample-response.hide-response .tshow {display: inline;} + </style> + <script> + $().ready(function() { + $("a.resp-trigger").click(function(e) { + e.preventDefault(); + $(this).parents("div.sample-response").toggleClass("hide-response"); + }); }); - }); - </script> + </script> <script type="text/javascript"> @@ -53,9 +66,9 @@ </head> <body> -<header role="banner"> - <h1>Emma API Documentation</h1> -</header> + <header role="banner"> + <h1>Emma API Documentation</h1> + </header> <div class="related"> <h3>Navigation</h3> <ul> @@ -555,13 +568,27 @@ <h3>Quick search</h3> </p> </div> <script type="text/javascript">$('#searchbox').show(0);</script> +<div id="emma-links"> + <h3>Emma Links</h3> + <ul> + <li><a href="http://myemma.com" title="Visit Emma's homepage" target="_blank">Emma Home</a></li> + + <li><a href="http://myemma.com/blog" title="Visit the Emma Blog" target="_blank">Emma Blog</a></li> + <li><a href="http://myemma.com/help" title="Visit Emma's help guide" target="_blank">Emma Help</a></li> + </ul> +</div> + +<div id="inquiry"> + <h3>Interested in Emma?</h3> + <p>Emma's email marketing makes communicating simple and stylish. <a href="/get-started/inquire" title="Get started today.">Get started today</a>.</p> +</div> </div> </div> <div class="clearer"></div> </div> <div class="footer"> - © Copyright 2012, Emma. - Last updated on Dec 18, 2012 at 16:15. + © Copyright 2013, Emma. + Last updated on Jan 02, 2013 at 01:34 PM. </div> </body> </html> \ No newline at end of file diff --git a/index.html b/index.html index c6fb75e..6aa33bf 100644 --- a/index.html +++ b/index.html @@ -1,13 +1,15 @@ -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" - "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> + +<!doctype html> + <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> - <title>Emma API — audience 0.1 documentation</title> + <title>Emma API Documentation | Emma, Inc.</title> + <link rel="stylesheet" href="_static/emma.css" type="text/css" /> <link rel="stylesheet" href="_static/pygments.css" type="text/css" /> @@ -26,30 +28,41 @@ <script type="text/javascript" src="_static/doctools.js"></script> <link rel="top" title="audience 0.1 documentation" href="#" /> <link rel="next" title="Fields" href="api/external/fields.html" /> - + <link rel="icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> + <link rel="shortcut icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> + <link rel="apple-touch-icon-precomposed" href="http://myemma.com/static/global/favicons/apple-iphone.png" /> + <link rel="apple-touch-icon-precomposed" sizes="72x72" href="http://myemma.com/static/global/favicons/apple-ipad.png" /> + <link rel="apple-touch-icon-precomposed" sizes="114x114" href="http://myemma.com/static/global/favicons/apple-iphone-2x.png" /> + <link rel="apple-touch-icon-precomposed" sizes="144x144" href="http://myemma.com/static/global/favicons/apple-ipad-2x.png" /> + + <script type="text/javascript" src="//use.typekit.net/zfm0nfo.js"></script> + <script type="text/javascript">try{Typekit.load();}catch(e){}</script> + + <script src="http://code.jquery.com/jquery-1.4.min.js"></script> + <script>window.jQuery || document.write('<script src="_static/jquery.js"><\/script>')</script> - <style type="text/css"> - .resp-trigger, .resp-trigger:hover {font-size:10pt;text-decoration:none;} - div.sample-response.hide-response pre.response {display: none;} - div.sample-response .tshow, - div.sample-response.hide-response .thide {display: none;} - div.sample-response .thide, - div.sample-response.hide-response .tshow {display: inline;} - </style> - <script> - $().ready(function() { - $("a.resp-trigger").click(function(e) { - e.preventDefault(); - $(this).parents("div.sample-response").toggleClass("hide-response"); + <style type="text/css"> + .resp-trigger, .resp-trigger:hover {font-size:10pt;text-decoration:none;} + div.sample-response.hide-response pre.response {display: none;} + div.sample-response .tshow, + div.sample-response.hide-response .thide {display: none;} + div.sample-response .thide, + div.sample-response.hide-response .tshow {display: inline;} + </style> + <script> + $().ready(function() { + $("a.resp-trigger").click(function(e) { + e.preventDefault(); + $(this).parents("div.sample-response").toggleClass("hide-response"); + }); }); - }); - </script> + </script> </head> <body> -<header role="banner"> - <h1>Emma API Documentation</h1> -</header> + <header role="banner"> + <h1>Emma API Documentation</h1> + </header> <div class="related"> <h3>Navigation</h3> <ul> @@ -278,13 +291,27 @@ <h3>Quick search</h3> </p> </div> <script type="text/javascript">$('#searchbox').show(0);</script> +<div id="emma-links"> + <h3>Emma Links</h3> + <ul> + <li><a href="http://myemma.com" title="Visit Emma's homepage" target="_blank">Emma Home</a></li> + + <li><a href="http://myemma.com/blog" title="Visit the Emma Blog" target="_blank">Emma Blog</a></li> + <li><a href="http://myemma.com/help" title="Visit Emma's help guide" target="_blank">Emma Help</a></li> + </ul> +</div> + +<div id="inquiry"> + <h3>Interested in Emma?</h3> + <p>Emma's email marketing makes communicating simple and stylish. <a href="/get-started/inquire" title="Get started today.">Get started today</a>.</p> +</div> </div> </div> <div class="clearer"></div> </div> <div class="footer"> - © Copyright 2012, Emma. - Last updated on Dec 18, 2012 at 16:15. + © Copyright 2013, Emma. + Last updated on Jan 02, 2013 at 01:34 PM. </div> </body> </html> \ No newline at end of file diff --git a/member_search.html b/member_search.html index 656330b..bce2c05 100644 --- a/member_search.html +++ b/member_search.html @@ -1,13 +1,15 @@ -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" - "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> + +<!doctype html> + <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> - <title>Search Syntax — audience 0.1 documentation</title> + <title>Emma API Documentation | Emma, Inc.</title> + <link rel="stylesheet" href="_static/emma.css" type="text/css" /> <link rel="stylesheet" href="_static/pygments.css" type="text/css" /> @@ -27,30 +29,41 @@ <link rel="top" title="audience 0.1 documentation" href="index.html" /> <link rel="next" title="Webhook Usage" href="webhooks.html" /> <link rel="prev" title="Placeholder Syntax" href="placeholders.html" /> - + <link rel="icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> + <link rel="shortcut icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> + <link rel="apple-touch-icon-precomposed" href="http://myemma.com/static/global/favicons/apple-iphone.png" /> + <link rel="apple-touch-icon-precomposed" sizes="72x72" href="http://myemma.com/static/global/favicons/apple-ipad.png" /> + <link rel="apple-touch-icon-precomposed" sizes="114x114" href="http://myemma.com/static/global/favicons/apple-iphone-2x.png" /> + <link rel="apple-touch-icon-precomposed" sizes="144x144" href="http://myemma.com/static/global/favicons/apple-ipad-2x.png" /> + + <script type="text/javascript" src="//use.typekit.net/zfm0nfo.js"></script> + <script type="text/javascript">try{Typekit.load();}catch(e){}</script> + + <script src="http://code.jquery.com/jquery-1.4.min.js"></script> + <script>window.jQuery || document.write('<script src="_static/jquery.js"><\/script>')</script> - <style type="text/css"> - .resp-trigger, .resp-trigger:hover {font-size:10pt;text-decoration:none;} - div.sample-response.hide-response pre.response {display: none;} - div.sample-response .tshow, - div.sample-response.hide-response .thide {display: none;} - div.sample-response .thide, - div.sample-response.hide-response .tshow {display: inline;} - </style> - <script> - $().ready(function() { - $("a.resp-trigger").click(function(e) { - e.preventDefault(); - $(this).parents("div.sample-response").toggleClass("hide-response"); + <style type="text/css"> + .resp-trigger, .resp-trigger:hover {font-size:10pt;text-decoration:none;} + div.sample-response.hide-response pre.response {display: none;} + div.sample-response .tshow, + div.sample-response.hide-response .thide {display: none;} + div.sample-response .thide, + div.sample-response.hide-response .tshow {display: inline;} + </style> + <script> + $().ready(function() { + $("a.resp-trigger").click(function(e) { + e.preventDefault(); + $(this).parents("div.sample-response").toggleClass("hide-response"); + }); }); - }); - </script> + </script> </head> <body> -<header role="banner"> - <h1>Emma API Documentation</h1> -</header> + <header role="banner"> + <h1>Emma API Documentation</h1> + </header> <div class="related"> <h3>Navigation</h3> <ul> @@ -209,13 +222,27 @@ <h3>Quick search</h3> </p> </div> <script type="text/javascript">$('#searchbox').show(0);</script> +<div id="emma-links"> + <h3>Emma Links</h3> + <ul> + <li><a href="http://myemma.com" title="Visit Emma's homepage" target="_blank">Emma Home</a></li> + + <li><a href="http://myemma.com/blog" title="Visit the Emma Blog" target="_blank">Emma Blog</a></li> + <li><a href="http://myemma.com/help" title="Visit Emma's help guide" target="_blank">Emma Help</a></li> + </ul> +</div> + +<div id="inquiry"> + <h3>Interested in Emma?</h3> + <p>Emma's email marketing makes communicating simple and stylish. <a href="/get-started/inquire" title="Get started today.">Get started today</a>.</p> +</div> </div> </div> <div class="clearer"></div> </div> <div class="footer"> - © Copyright 2012, Emma. - Last updated on Dec 18, 2012 at 16:15. + © Copyright 2013, Emma. + Last updated on Jan 02, 2013 at 01:34 PM. </div> </body> </html> \ No newline at end of file diff --git a/pagination.html b/pagination.html index 195f621..694a760 100644 --- a/pagination.html +++ b/pagination.html @@ -1,13 +1,15 @@ -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" - "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> + +<!doctype html> + <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> - <title>Pagination — audience 0.1 documentation</title> + <title>Emma API Documentation | Emma, Inc.</title> + <link rel="stylesheet" href="_static/emma.css" type="text/css" /> <link rel="stylesheet" href="_static/pygments.css" type="text/css" /> @@ -27,30 +29,41 @@ <link rel="top" title="audience 0.1 documentation" href="index.html" /> <link rel="next" title="Placeholder Syntax" href="placeholders.html" /> <link rel="prev" title="Webhooks" href="api/external/webhooks.html" /> - + <link rel="icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> + <link rel="shortcut icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> + <link rel="apple-touch-icon-precomposed" href="http://myemma.com/static/global/favicons/apple-iphone.png" /> + <link rel="apple-touch-icon-precomposed" sizes="72x72" href="http://myemma.com/static/global/favicons/apple-ipad.png" /> + <link rel="apple-touch-icon-precomposed" sizes="114x114" href="http://myemma.com/static/global/favicons/apple-iphone-2x.png" /> + <link rel="apple-touch-icon-precomposed" sizes="144x144" href="http://myemma.com/static/global/favicons/apple-ipad-2x.png" /> + + <script type="text/javascript" src="//use.typekit.net/zfm0nfo.js"></script> + <script type="text/javascript">try{Typekit.load();}catch(e){}</script> + + <script src="http://code.jquery.com/jquery-1.4.min.js"></script> + <script>window.jQuery || document.write('<script src="_static/jquery.js"><\/script>')</script> - <style type="text/css"> - .resp-trigger, .resp-trigger:hover {font-size:10pt;text-decoration:none;} - div.sample-response.hide-response pre.response {display: none;} - div.sample-response .tshow, - div.sample-response.hide-response .thide {display: none;} - div.sample-response .thide, - div.sample-response.hide-response .tshow {display: inline;} - </style> - <script> - $().ready(function() { - $("a.resp-trigger").click(function(e) { - e.preventDefault(); - $(this).parents("div.sample-response").toggleClass("hide-response"); + <style type="text/css"> + .resp-trigger, .resp-trigger:hover {font-size:10pt;text-decoration:none;} + div.sample-response.hide-response pre.response {display: none;} + div.sample-response .tshow, + div.sample-response.hide-response .thide {display: none;} + div.sample-response .thide, + div.sample-response.hide-response .tshow {display: inline;} + </style> + <script> + $().ready(function() { + $("a.resp-trigger").click(function(e) { + e.preventDefault(); + $(this).parents("div.sample-response").toggleClass("hide-response"); + }); }); - }); - </script> + </script> </head> <body> -<header role="banner"> - <h1>Emma API Documentation</h1> -</header> + <header role="banner"> + <h1>Emma API Documentation</h1> + </header> <div class="related"> <h3>Navigation</h3> <ul> @@ -121,13 +134,27 @@ <h3>Quick search</h3> </p> </div> <script type="text/javascript">$('#searchbox').show(0);</script> +<div id="emma-links"> + <h3>Emma Links</h3> + <ul> + <li><a href="http://myemma.com" title="Visit Emma's homepage" target="_blank">Emma Home</a></li> + + <li><a href="http://myemma.com/blog" title="Visit the Emma Blog" target="_blank">Emma Blog</a></li> + <li><a href="http://myemma.com/help" title="Visit Emma's help guide" target="_blank">Emma Help</a></li> + </ul> +</div> + +<div id="inquiry"> + <h3>Interested in Emma?</h3> + <p>Emma's email marketing makes communicating simple and stylish. <a href="/get-started/inquire" title="Get started today.">Get started today</a>.</p> +</div> </div> </div> <div class="clearer"></div> </div> <div class="footer"> - © Copyright 2012, Emma. - Last updated on Dec 18, 2012 at 16:15. + © Copyright 2013, Emma. + Last updated on Jan 02, 2013 at 01:34 PM. </div> </body> </html> \ No newline at end of file diff --git a/php_get_member_example.html b/php_get_member_example.html index d5f39f9..7601a8e 100644 --- a/php_get_member_example.html +++ b/php_get_member_example.html @@ -1,13 +1,15 @@ -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" - "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> + +<!doctype html> + <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> - <title>PHP Get Member By Email Example — audience 0.1 documentation</title> + <title>Emma API Documentation | Emma, Inc.</title> + <link rel="stylesheet" href="_static/emma.css" type="text/css" /> <link rel="stylesheet" href="_static/pygments.css" type="text/css" /> @@ -26,30 +28,41 @@ <script type="text/javascript" src="_static/doctools.js"></script> <link rel="top" title="audience 0.1 documentation" href="index.html" /> <link rel="prev" title="PHP Signup Example" href="php_signup_example.html" /> - + <link rel="icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> + <link rel="shortcut icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> + <link rel="apple-touch-icon-precomposed" href="http://myemma.com/static/global/favicons/apple-iphone.png" /> + <link rel="apple-touch-icon-precomposed" sizes="72x72" href="http://myemma.com/static/global/favicons/apple-ipad.png" /> + <link rel="apple-touch-icon-precomposed" sizes="114x114" href="http://myemma.com/static/global/favicons/apple-iphone-2x.png" /> + <link rel="apple-touch-icon-precomposed" sizes="144x144" href="http://myemma.com/static/global/favicons/apple-ipad-2x.png" /> + + <script type="text/javascript" src="//use.typekit.net/zfm0nfo.js"></script> + <script type="text/javascript">try{Typekit.load();}catch(e){}</script> + + <script src="http://code.jquery.com/jquery-1.4.min.js"></script> + <script>window.jQuery || document.write('<script src="_static/jquery.js"><\/script>')</script> - <style type="text/css"> - .resp-trigger, .resp-trigger:hover {font-size:10pt;text-decoration:none;} - div.sample-response.hide-response pre.response {display: none;} - div.sample-response .tshow, - div.sample-response.hide-response .thide {display: none;} - div.sample-response .thide, - div.sample-response.hide-response .tshow {display: inline;} - </style> - <script> - $().ready(function() { - $("a.resp-trigger").click(function(e) { - e.preventDefault(); - $(this).parents("div.sample-response").toggleClass("hide-response"); + <style type="text/css"> + .resp-trigger, .resp-trigger:hover {font-size:10pt;text-decoration:none;} + div.sample-response.hide-response pre.response {display: none;} + div.sample-response .tshow, + div.sample-response.hide-response .thide {display: none;} + div.sample-response .thide, + div.sample-response.hide-response .tshow {display: inline;} + </style> + <script> + $().ready(function() { + $("a.resp-trigger").click(function(e) { + e.preventDefault(); + $(this).parents("div.sample-response").toggleClass("hide-response"); + }); }); - }); - </script> + </script> </head> <body> -<header role="banner"> - <h1>Emma API Documentation</h1> -</header> + <header role="banner"> + <h1>Emma API Documentation</h1> + </header> <div class="related"> <h3>Navigation</h3> <ul> @@ -136,13 +149,27 @@ <h3>Quick search</h3> </p> </div> <script type="text/javascript">$('#searchbox').show(0);</script> +<div id="emma-links"> + <h3>Emma Links</h3> + <ul> + <li><a href="http://myemma.com" title="Visit Emma's homepage" target="_blank">Emma Home</a></li> + + <li><a href="http://myemma.com/blog" title="Visit the Emma Blog" target="_blank">Emma Blog</a></li> + <li><a href="http://myemma.com/help" title="Visit Emma's help guide" target="_blank">Emma Help</a></li> + </ul> +</div> + +<div id="inquiry"> + <h3>Interested in Emma?</h3> + <p>Emma's email marketing makes communicating simple and stylish. <a href="/get-started/inquire" title="Get started today.">Get started today</a>.</p> +</div> </div> </div> <div class="clearer"></div> </div> <div class="footer"> - © Copyright 2012, Emma. - Last updated on Dec 18, 2012 at 16:15. + © Copyright 2013, Emma. + Last updated on Jan 02, 2013 at 01:34 PM. </div> </body> </html> \ No newline at end of file diff --git a/php_signup_example.html b/php_signup_example.html index 50a9738..28bbd5e 100644 --- a/php_signup_example.html +++ b/php_signup_example.html @@ -1,13 +1,15 @@ -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" - "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> + +<!doctype html> + <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> - <title>PHP Signup Example — audience 0.1 documentation</title> + <title>Emma API Documentation | Emma, Inc.</title> + <link rel="stylesheet" href="_static/emma.css" type="text/css" /> <link rel="stylesheet" href="_static/pygments.css" type="text/css" /> @@ -27,30 +29,41 @@ <link rel="top" title="audience 0.1 documentation" href="index.html" /> <link rel="next" title="PHP Get Member By Email Example" href="php_get_member_example.html" /> <link rel="prev" title="Webhook Usage" href="webhooks.html" /> - + <link rel="icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> + <link rel="shortcut icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> + <link rel="apple-touch-icon-precomposed" href="http://myemma.com/static/global/favicons/apple-iphone.png" /> + <link rel="apple-touch-icon-precomposed" sizes="72x72" href="http://myemma.com/static/global/favicons/apple-ipad.png" /> + <link rel="apple-touch-icon-precomposed" sizes="114x114" href="http://myemma.com/static/global/favicons/apple-iphone-2x.png" /> + <link rel="apple-touch-icon-precomposed" sizes="144x144" href="http://myemma.com/static/global/favicons/apple-ipad-2x.png" /> + + <script type="text/javascript" src="//use.typekit.net/zfm0nfo.js"></script> + <script type="text/javascript">try{Typekit.load();}catch(e){}</script> + + <script src="http://code.jquery.com/jquery-1.4.min.js"></script> + <script>window.jQuery || document.write('<script src="_static/jquery.js"><\/script>')</script> - <style type="text/css"> - .resp-trigger, .resp-trigger:hover {font-size:10pt;text-decoration:none;} - div.sample-response.hide-response pre.response {display: none;} - div.sample-response .tshow, - div.sample-response.hide-response .thide {display: none;} - div.sample-response .thide, - div.sample-response.hide-response .tshow {display: inline;} - </style> - <script> - $().ready(function() { - $("a.resp-trigger").click(function(e) { - e.preventDefault(); - $(this).parents("div.sample-response").toggleClass("hide-response"); + <style type="text/css"> + .resp-trigger, .resp-trigger:hover {font-size:10pt;text-decoration:none;} + div.sample-response.hide-response pre.response {display: none;} + div.sample-response .tshow, + div.sample-response.hide-response .thide {display: none;} + div.sample-response .thide, + div.sample-response.hide-response .tshow {display: inline;} + </style> + <script> + $().ready(function() { + $("a.resp-trigger").click(function(e) { + e.preventDefault(); + $(this).parents("div.sample-response").toggleClass("hide-response"); + }); }); - }); - </script> + </script> </head> <body> -<header role="banner"> - <h1>Emma API Documentation</h1> -</header> + <header role="banner"> + <h1>Emma API Documentation</h1> + </header> <div class="related"> <h3>Navigation</h3> <ul> @@ -158,13 +171,27 @@ <h3>Quick search</h3> </p> </div> <script type="text/javascript">$('#searchbox').show(0);</script> +<div id="emma-links"> + <h3>Emma Links</h3> + <ul> + <li><a href="http://myemma.com" title="Visit Emma's homepage" target="_blank">Emma Home</a></li> + + <li><a href="http://myemma.com/blog" title="Visit the Emma Blog" target="_blank">Emma Blog</a></li> + <li><a href="http://myemma.com/help" title="Visit Emma's help guide" target="_blank">Emma Help</a></li> + </ul> +</div> + +<div id="inquiry"> + <h3>Interested in Emma?</h3> + <p>Emma's email marketing makes communicating simple and stylish. <a href="/get-started/inquire" title="Get started today.">Get started today</a>.</p> +</div> </div> </div> <div class="clearer"></div> </div> <div class="footer"> - © Copyright 2012, Emma. - Last updated on Dec 18, 2012 at 16:15. + © Copyright 2013, Emma. + Last updated on Jan 02, 2013 at 01:34 PM. </div> </body> </html> \ No newline at end of file diff --git a/placeholders.html b/placeholders.html index 8b59f3a..44919d5 100644 --- a/placeholders.html +++ b/placeholders.html @@ -1,13 +1,15 @@ -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" - "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> + +<!doctype html> + <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> - <title>Placeholder Syntax — audience 0.1 documentation</title> + <title>Emma API Documentation | Emma, Inc.</title> + <link rel="stylesheet" href="_static/emma.css" type="text/css" /> <link rel="stylesheet" href="_static/pygments.css" type="text/css" /> @@ -27,30 +29,41 @@ <link rel="top" title="audience 0.1 documentation" href="index.html" /> <link rel="next" title="Search Syntax" href="member_search.html" /> <link rel="prev" title="Pagination" href="pagination.html" /> - + <link rel="icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> + <link rel="shortcut icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> + <link rel="apple-touch-icon-precomposed" href="http://myemma.com/static/global/favicons/apple-iphone.png" /> + <link rel="apple-touch-icon-precomposed" sizes="72x72" href="http://myemma.com/static/global/favicons/apple-ipad.png" /> + <link rel="apple-touch-icon-precomposed" sizes="114x114" href="http://myemma.com/static/global/favicons/apple-iphone-2x.png" /> + <link rel="apple-touch-icon-precomposed" sizes="144x144" href="http://myemma.com/static/global/favicons/apple-ipad-2x.png" /> + + <script type="text/javascript" src="//use.typekit.net/zfm0nfo.js"></script> + <script type="text/javascript">try{Typekit.load();}catch(e){}</script> + + <script src="http://code.jquery.com/jquery-1.4.min.js"></script> + <script>window.jQuery || document.write('<script src="_static/jquery.js"><\/script>')</script> - <style type="text/css"> - .resp-trigger, .resp-trigger:hover {font-size:10pt;text-decoration:none;} - div.sample-response.hide-response pre.response {display: none;} - div.sample-response .tshow, - div.sample-response.hide-response .thide {display: none;} - div.sample-response .thide, - div.sample-response.hide-response .tshow {display: inline;} - </style> - <script> - $().ready(function() { - $("a.resp-trigger").click(function(e) { - e.preventDefault(); - $(this).parents("div.sample-response").toggleClass("hide-response"); + <style type="text/css"> + .resp-trigger, .resp-trigger:hover {font-size:10pt;text-decoration:none;} + div.sample-response.hide-response pre.response {display: none;} + div.sample-response .tshow, + div.sample-response.hide-response .thide {display: none;} + div.sample-response .thide, + div.sample-response.hide-response .tshow {display: inline;} + </style> + <script> + $().ready(function() { + $("a.resp-trigger").click(function(e) { + e.preventDefault(); + $(this).parents("div.sample-response").toggleClass("hide-response"); + }); }); - }); - </script> + </script> </head> <body> -<header role="banner"> - <h1>Emma API Documentation</h1> -</header> + <header role="banner"> + <h1>Emma API Documentation</h1> + </header> <div class="related"> <h3>Navigation</h3> <ul> @@ -136,13 +149,27 @@ <h3>Quick search</h3> </p> </div> <script type="text/javascript">$('#searchbox').show(0);</script> +<div id="emma-links"> + <h3>Emma Links</h3> + <ul> + <li><a href="http://myemma.com" title="Visit Emma's homepage" target="_blank">Emma Home</a></li> + + <li><a href="http://myemma.com/blog" title="Visit the Emma Blog" target="_blank">Emma Blog</a></li> + <li><a href="http://myemma.com/help" title="Visit Emma's help guide" target="_blank">Emma Help</a></li> + </ul> +</div> + +<div id="inquiry"> + <h3>Interested in Emma?</h3> + <p>Emma's email marketing makes communicating simple and stylish. <a href="/get-started/inquire" title="Get started today.">Get started today</a>.</p> +</div> </div> </div> <div class="clearer"></div> </div> <div class="footer"> - © Copyright 2012, Emma. - Last updated on Dec 18, 2012 at 16:15. + © Copyright 2013, Emma. + Last updated on Jan 02, 2013 at 01:34 PM. </div> </body> </html> \ No newline at end of file diff --git a/search.html b/search.html index 2c3f38a..cb5eda0 100644 --- a/search.html +++ b/search.html @@ -1,13 +1,15 @@ -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" - "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> + +<!doctype html> + <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> - <title>Search — audience 0.1 documentation</title> + <title>Emma API Documentation | Emma, Inc.</title> + <link rel="stylesheet" href="_static/emma.css" type="text/css" /> <link rel="stylesheet" href="_static/pygments.css" type="text/css" /> @@ -30,31 +32,42 @@ jQuery(function() { Search.loadIndex("searchindex.js"); }); </script> - + <link rel="icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> + <link rel="shortcut icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> + <link rel="apple-touch-icon-precomposed" href="http://myemma.com/static/global/favicons/apple-iphone.png" /> + <link rel="apple-touch-icon-precomposed" sizes="72x72" href="http://myemma.com/static/global/favicons/apple-ipad.png" /> + <link rel="apple-touch-icon-precomposed" sizes="114x114" href="http://myemma.com/static/global/favicons/apple-iphone-2x.png" /> + <link rel="apple-touch-icon-precomposed" sizes="144x144" href="http://myemma.com/static/global/favicons/apple-ipad-2x.png" /> + + <script type="text/javascript" src="//use.typekit.net/zfm0nfo.js"></script> + <script type="text/javascript">try{Typekit.load();}catch(e){}</script> + + <script src="http://code.jquery.com/jquery-1.4.min.js"></script> + <script>window.jQuery || document.write('<script src="_static/jquery.js"><\/script>')</script> - <style type="text/css"> - .resp-trigger, .resp-trigger:hover {font-size:10pt;text-decoration:none;} - div.sample-response.hide-response pre.response {display: none;} - div.sample-response .tshow, - div.sample-response.hide-response .thide {display: none;} - div.sample-response .thide, - div.sample-response.hide-response .tshow {display: inline;} - </style> - <script> - $().ready(function() { - $("a.resp-trigger").click(function(e) { - e.preventDefault(); - $(this).parents("div.sample-response").toggleClass("hide-response"); + <style type="text/css"> + .resp-trigger, .resp-trigger:hover {font-size:10pt;text-decoration:none;} + div.sample-response.hide-response pre.response {display: none;} + div.sample-response .tshow, + div.sample-response.hide-response .thide {display: none;} + div.sample-response .thide, + div.sample-response.hide-response .tshow {display: inline;} + </style> + <script> + $().ready(function() { + $("a.resp-trigger").click(function(e) { + e.preventDefault(); + $(this).parents("div.sample-response").toggleClass("hide-response"); + }); }); - }); - </script> + </script> </head> <body> -<header role="banner"> - <h1>Emma API Documentation</h1> -</header> + <header role="banner"> + <h1>Emma API Documentation</h1> + </header> <div class="related"> <h3>Navigation</h3> <ul> @@ -106,13 +119,27 @@ <h1 id="search-documentation">Search</h1> <li><a href="index.html">Documentation overview</a><ul> </ul></li> </ul> +<div id="emma-links"> + <h3>Emma Links</h3> + <ul> + <li><a href="http://myemma.com" title="Visit Emma's homepage" target="_blank">Emma Home</a></li> + + <li><a href="http://myemma.com/blog" title="Visit the Emma Blog" target="_blank">Emma Blog</a></li> + <li><a href="http://myemma.com/help" title="Visit Emma's help guide" target="_blank">Emma Help</a></li> + </ul> +</div> + +<div id="inquiry"> + <h3>Interested in Emma?</h3> + <p>Emma's email marketing makes communicating simple and stylish. <a href="/get-started/inquire" title="Get started today.">Get started today</a>.</p> +</div> </div> </div> <div class="clearer"></div> </div> <div class="footer"> - © Copyright 2012, Emma. - Last updated on Dec 18, 2012 at 16:15. + © Copyright 2013, Emma. + Last updated on Jan 02, 2013 at 01:34 PM. </div> </body> </html> \ No newline at end of file diff --git a/searchindex.js b/searchindex.js index a82933c..d3cd831 100644 --- a/searchindex.js +++ b/searchindex.js @@ -1 +1 @@ -Search.setIndex({objects:{"":{"/#account_id/members/#member_id/groups/remove":[8,1,1,"put--#account_id-members-#member_id-groups-remove"],"/#account_id/mailings/#mailing_id/winner/#winner_id":[9,2,1,"post--#account_id-mailings-#mailing_id-winner-#winner_id"],"/#account_id/response/#mailing_id/in_progress":[5,0,1,"get--#account_id-response-#mailing_id-in_progress"],"/#account_id/members/groups/remove":[8,1,1,"put--#account_id-members-groups-remove"],"/#account_id/mailings/#mailing_id/searches":[9,0,1,"get--#account_id-mailings-#mailing_id-searches"],"/#account_id/fields":[10,2,1,"post--#account_id-fields"],"/#account_id/members/#group_id/copy":[8,1,1,"put--#account_id-members-#group_id-copy"],"/#account_id/members/status":[8,1,1,"put--#account_id-members-status"],"/#account_id/response/#mailing_id/shares/overview":[5,0,1,"get--#account_id-response-#mailing_id-shares-overview"],"/#account_id/webhooks/events":[4,0,1,"get--#account_id-webhooks-events"],"/#account_id/members/#member_id/optout":[8,0,1,"get--#account_id-members-#member_id-optout"],"/#account_id/webhooks":[4,3,1,"delete--#account_id-webhooks"],"/#account_id/fields/#field_id":[10,3,1,"delete--#account_id-fields-#field_id"],"/#account_id/response/#mailing_id":[5,0,1,"get--#account_id-response-#mailing_id"],"/#account_id/groups/#member_group_id/members/remove":[13,3,1,"delete--#account_id-groups-#member_group_id-members-remove"],"/#account_id/searches":[7,2,1,"post--#account_id-searches"],"/#account_id/members/imports":[8,0,1,"get--#account_id-members-imports"],"/#account_id/forwards/#mailing_id/#member_id":[9,2,1,"post--#account_id-forwards-#mailing_id-#member_id"],"/#account_id/response/#mailing_id/customer_share_clicks":[5,0,1,"get--#account_id-response-#mailing_id-customer_share_clicks"],"/#account_id/mailings/#mailing_id/messages/#member_id":[9,0,1,"get--#account_id-mailings-#mailing_id-messages-#member_id"],"/#account_id/members/#member_id/mailings":[8,0,1,"get--#account_id-members-#member_id-mailings"],"/#account_id/groups/#from_group_id/#to_group_id/members/copy":[13,1,1,"put--#account_id-groups-#from_group_id-#to_group_id-members-copy"],"/#account_id/triggers":[14,2,1,"post--#account_id-triggers"],"/#account_id/triggers/#trigger_id":[14,3,1,"delete--#account_id-triggers-#trigger_id"],"/#account_id/members/delete":[8,1,1,"put--#account_id-members-delete"],"/#account_id/mailings/#mailing_id/groups":[9,0,1,"get--#account_id-mailings-#mailing_id-groups"],"/#account_id/response/#mailing_id/forwards":[5,0,1,"get--#account_id-response-#mailing_id-forwards"],"/#account_id/members/#member_id":[8,3,1,"delete--#account_id-members-#member_id"],"/#account_id/triggers/#trigger_id/mailings":[14,0,1,"get--#account_id-triggers-#trigger_id-mailings"],"/#account_id/searches/#search_id/members":[7,0,1,"get--#account_id-searches-#search_id-members"],"/#account_id/members/status/:status_from/to/:status_to":[8,1,1,"put--#account_id-members-status--status_from-to--status_to"],"/#account_id/response/#mailing_id/sends":[5,0,1,"get--#account_id-response-#mailing_id-sends"],"/#account_id/members":[8,3,1,"delete--#account_id-members"],"/#account_id/members/email/:email":[8,0,1,"get--#account_id-members-email--email"],"/#account_id/response/#mailing_id/links":[5,0,1,"get--#account_id-response-#mailing_id-links"],"/#account_id/searches/#search_id":[7,3,1,"delete--#account_id-searches-#search_id"],"/#account_id/members/imports/#import_id/members":[8,0,1,"get--#account_id-members-imports-#import_id-members"],"/#account_id/fields/#field_id/clear":[10,2,1,"post--#account_id-fields-#field_id-clear"],"/#account_id/groups/#member_group_id/members":[13,3,1,"delete--#account_id-groups-#member_group_id-members"],"/#account_id/members/imports/#import_id":[8,0,1,"get--#account_id-members-imports-#import_id"],"/#account_id/response":[5,0,1,"get--#account_id-response"],"/#account_id/response/#mailing_id/opens":[5,0,1,"get--#account_id-response-#mailing_id-opens"],"/#account_id/members/imports/delete":[8,3,1,"delete--#account_id-members-imports-delete"],"/#account_id/mailings":[9,0,1,"get--#account_id-mailings"],"/#account_id/mailings/cancel/#mailing_id":[9,3,1,"delete--#account_id-mailings-cancel-#mailing_id"],"/#account_id/mailings/validate":[9,2,1,"post--#account_id-mailings-validate"],"/#account_id/response/#mailing_id/deliveries":[5,0,1,"get--#account_id-response-#mailing_id-deliveries"],"/#account_id/mailings/#mailing_id/members":[9,0,1,"get--#account_id-mailings-#mailing_id-members"],"/#account_id/response/#share_id/customer_share":[5,0,1,"get--#account_id-response-#share_id-customer_share"],"/#account_id/webhooks/#webhook_id":[4,3,1,"delete--#account_id-webhooks-#webhook_id"],"/#account_id/members/add":[8,2,1,"post--#account_id-members-add"],"/#account_id/response/#mailing_id/optouts":[5,0,1,"get--#account_id-response-#mailing_id-optouts"],"/#account_id/response/#mailing_id/shares":[5,0,1,"get--#account_id-response-#mailing_id-shares"],"/#account_id/groups/#member_group_id":[13,3,1,"delete--#account_id-groups-#member_group_id"],"/#account_id/mailings/#mailing_id":[9,3,1,"delete--#account_id-mailings-#mailing_id"],"/#account_id/members/#member_id/groups":[8,3,1,"delete--#account_id-members-#member_id-groups"],"/#account_id/groups":[13,2,1,"post--#account_id-groups"],"/#account_id/response/#mailing_id/clicks":[5,0,1,"get--#account_id-response-#mailing_id-clicks"],"/#account_id/mailings/#mailing_id/headsup":[9,0,1,"get--#account_id-mailings-#mailing_id-headsup"],"/#account_id/response/#mailing_id/signups":[5,0,1,"get--#account_id-response-#mailing_id-signups"],"/#account_id/response/#mailing_id/customer_shares":[5,0,1,"get--#account_id-response-#mailing_id-customer_shares"]}},terms:{all:[0,1,4,5,8,9,10,11,12,13,14],code:[0,1,6,3],change_typ:8,queri:[0,2,4],month:[0,5,9,14],four:[0,5],mile:0,least:0,field_creat:[12,4],link_target:[5,9],content:[1,11,6,9,3],privat:1,specif:[8,9,4],friendli:5,send:[1,9,4,3,5],customer_share_click:5,those:[5,12],group_upd:[12,4],sent:[5,8,12,9,14],curl_clos:[1,6,3],brown:[7,8],digit:5,everi:0,string:[0,4,5,7,8,9,10,12,13,14],fals:[1,3,4,5,6,7,8,9,10,13,14],webhook:[1,12,4],mailing_status:9,trigger_id:14,webview_share_click:5,affect:[7,8],member_add:[12,4],create_mail:9,new_boolean:10,foo:0,level:1,group_delet:[12,4],list:[0,1,2,4,5,7,8,9,10,11,12,13,14],upload:8,iter:2,"try":8,item:2,plaintext_onli:[9,14],progress:9,div:[4,5,7,8,9,10,13,14],survey_id:14,pleas:[1,8,11,9],prevent:2,work:[1,4],ten:0,sync:10,sign:[0,5,4],past:1,second:[0,7,14],follow:[0,1,4,5,7,9,11,13],further:1,durat:9,click:[0,4,5,7,8,12,14],append:2,even:10,what:1,hide:[4,5,7,8,9,10,13,14],appear:1,from_group_id:13,section:1,current:[8,12,9],delet:[1,4,7,8,9,10,12,13,14],"new":[1,4,5,7,8,9,10,11,13,14],net:[1,2,6,3],delivery_t:8,method:[5,8,13,4,9],can:[0,1,2,4,5,7,8,9,11,12,13],widget:[7,10,8,9,13],hash:0,datematch:0,displai:10,variat:9,gener:[0,8,12,14],onli:[5,8],here:[0,1,3,5,6,8],bodi:9,let:[1,4,10],address:[0,1,8,6,9],along:8,sinc:8,valu:[0,5,7,8,10,11],field_upd:[12,4],search:[0,1,9,7],survei:14,sender:[9,14],larger:2,queue:5,prior:9,action:[0,8],chang:[8,4],name_first:[1,3],campaign:5,newbi:5,appli:[7,14],prefer:0,myemma:[4,5,7,8,9,13],filenam:8,customer_shar:5,"boolean":[0,1,5,7,8,9,10,13,14],curlopt_postfield:[1,3],total:5,jone:[7,5,8,13],select:10,newslett:[7,8,13],describ:7,would:[0,1],regist:4,two:[0,5],next:[0,1],create_webhook:4,few:[5,8],call:[1,2,3,4,6,8,12],criteria:7,member_add_to_group:[12,4],type:[1,3,4,5,6,7,10,9,14],until:2,more:[0,4,7,8,9,13],peopl:5,relat:[1,8,11,9],about:[10,8,12,4,9],notic:8,thide:[4,5,7,8,9,10,13,14],flag:[5,7,8,10,9,14],exce:2,indic:8,examin:1,particular:[1,4,5,8,10,12,9],in_progress:5,origin:9,must:[0,7,13,10],none:9,endpoint:[1,4,5,7,8,9,10,13,14],join:[0,7],hour:0,setup:1,member_sinc:[0,5,7,8,9,13],uniqu:5,histori:8,soup:7,remain:[0,9],archiv:[5,9],member_optout:[12,4],drill:5,control:[1,11,9],quickstart:1,give:5,forward_mailing_id:5,email_domain:[0,5],share:[0,5,8,12,4],accept:[0,5,7,8,9,10,11,13,14],total_click:5,tag:[11,9],want:[1,12,13,5],occur:[7,12],some_numeric_field:0,delai:14,alwai:0,webhook_event_id:4,cours:1,end:[2,8],first_nam:[1,3,5,7,8,9,10,11,13,14],started_or_finish:[9,14],anoth:[9,13],get:[1,4,5,6,7,8,9,10,13,14],message_open:[12,4],html_bodi:[9,14],share_statu:5,push_offset:14,del_statu:5,tild:5,num_members_upd:8,simpl:0,chri:9,pizza:[7,8],map:0,autent:1,referenc:7,xxxx:6,sundai:0,membership:13,taco:[7,5,8,9,13],mai:12,multipl:[10,8],data:[1,3,4,5,10,12],welcom:11,add_onli:8,"short":0,json_encod:[1,3],optout:[5,8,12,13],num_dupl:8,favorit:10,correspond:[0,1],greet:11,predic:[0,1],issu:[1,10],"12t11":[7,5,8,9,13],combin:7,allow:[0,7,8],some_zipcode_field:0,signed_up:5,order:[5,10],michel:[8,9],mailing_nam:5,checkbox:10,fields_upd:8,over:2,becaus:12,buyer:[7,8,9,13],comma:[9,13],is_dis:14,vari:8,paramet:[2,4,5,7,8,9,10,13,14],widget_typ:10,style:[0,4,5,7,8,9,10,13,14],group:[0,1,3,4,7,8,9,12,13,14],curl_setopt:[1,6,3],how:[7,1,2,4],import_start:8,better:[13,14],platform:1,pend:[1,9],mailing_list:9,onc:9,mail:[0,1,4,5,8,11,12,9,14],hidden:13,main:1,might:[1,4],link_nam:[5,9],them:[8,9],"return":[0,1,4,5,7,8,9,10,12,13,14],greater:[0,8],thei:[0,9],food:10,timestamp:[0,5,12,9,10],spell:4,dai:0,auth:1,instead:[12,2,8],now:5,down:5,term:[0,1],alex:9,name:[0,4,5,7,8,9,10,11,13,14],edit:[7,1,14,10],curl_getinfo:[1,6,3],authent:[1,6,4,3],successufulli:4,separ:[1,9,13],each:[1,2,5,9,12,11,13],found:[8,9,4,14],updat:[4,7,8,9,10,12,13,14],mean:0,status:[8,9],domain:0,shortcut_nam:10,weight:[4,5,7,8,9,10,13,14],resum:9,individu:[1,8],hard:[0,5],last_nam:[1,3,5,7,8,9,10,11,13,14],"05t15":5,birthdai:[10,14],expect:1,year:[0,5,9,14],our:[1,11,12,4,14],happen:[1,4,5],extract:11,short_display_nam:10,special:[0,7,8,13],out:[0,1,4,5,7,8,10,13],variabl:[1,6,3],message_shar:[12,4],network:[5,12],private_api_kei:[1,6,3],check_multipl:10,categori:1,rel:0,print:6,correct:10,statist:8,benjamin:8,qualifi:11,insid:1,advanc:0,contain:[0,5,7,13,10,9],differ:0,standard:[5,9],status_from:8,base:[5,8],recipient_search:9,dictionari:8,put:[4,7,8,9,10,13,14],"13t23":[7,5,8],visit:11,could:1,omit:5,success:[7,1,9,13,3],filter:[0,1,7],search_id:7,pagin:[1,2],member_id:[5,7,8,9,12,13],summari:[1,5],assign:9,first:[0,1,10,5],oper:[0,1,7,14],rang:5,notifi:12,directli:0,curlopt_ssl_verifyp:[1,6,3],curl_init:[1,6,3],number:[5,2,13,3,10],placehold:[1,11],date:[0,5,8,10,11,14],unlik:9,alreadi:[10,9,13],done:8,plaintext_pref:[7,8,9,13],oppos:8,open:[0,3,4,5,6,7,8,12],payload:4,fanci:5,size:2,given:[0,8,9,4],"long":10,script:1,associ:[1,8,9,4,5],system:[8,12,4,14],messag:[4,5,8,12,11,9,14],attach:11,friend:11,curlinfo_http_cod:[1,6,3],shell:0,option:[0,5,7,8,9,10,13,14],especi:8,signup:[0,1,3,4,5,8,12,14],copi:[8,13],member_upd:[12,4],specifi:[0,2,7,8,10,11,9,14],curl_exec:[1,6,3],curlopt_httphead:[1,6,3],member_signup:[12,4],create_search:7,part:[0,9],enclos:11,than:[0,1,2,3,12,13],with_plaintext:9,"02t10":[5,8],"02t11":[5,8],"02t13":5,nathan:8,whenev:8,provid:[1,5,8,12,9,14],remov:[12,8,13,4],mailing_start:4,rate:2,structur:7,charact:9,greg:8,trackabl:11,were:5,minut:0,danc:1,error_count:[7,8,9,13],pre:[4,5,7,8,9,10,13,14],cleaner:1,sai:0,share_id:5,signup_form_id:[0,8,12,9,14],plaintext:[5,9,14],pass:[1,3],ani:[0,1,2,7,8,9],have:[0,5,8,12,9],tabl:5,seen:5,"null":[7,8,13,10,9,14],kevin:[9,14],signup_mail:0,caus:14,inform:[1,4,6,8,9,10,13],object_id:14,note:[1,8,9,4],also:[0,4,5,7,8,9,11,13],exampl:[0,1,3,5,6,7,11],take:[0,4],which:[0,1,4,8,10,12,9,14],some_number_field:0,singl:[0,1,3,4,5,8,10,12,13],excit:11,sure:1,delete_memb:13,normal:9,parent_mail:14,recipient_count:[5,9,14],previou:9,field_id:[10,12,14],last_run_at:7,most:14,pair:11,"class":[4,5,7,8,9,10,13,14],member_group_id:[8,9,13],mcconnel:[9,14],url:[1,3,4,5,6,12],mailing_finish:[12,4],clear:10,request:[1,2,3],doe:[0,5,7,8,10,13],member_status_upd:[12,4],declar:9,tech:4,determin:1,dataset:10,dow:0,recipi:9,"6db0cc7e6fdb2da589b65f29d90c96b6":9,show:[4,5,7,8,9,10,11,13,14],text:[10,11,12],radiu:0,syntax:[0,1,11,9],radio:10,font:[4,5,7,8,9,10,13,14],fine:9,find:[1,6,5],status_to:8,toast:[7,5,8,13],access:[1,5],giant:12,just:[0,9],pretti:8,column_ord:10,explain:[0,1],winner:9,activ:[1,5,7,8,13,9],figur:1,should:[1,2,3,7,8,11,9],templat:[11,14],share_count:5,count:[1,2,3,5],variou:[8,13],confirmed_opt_in:[7,8,9,13],familiar:1,express:0,account:[1,4,5,7,8,10,13,14],cannot:[8,9,4],"import":[1,8,12,4,10],report:[10,8],requir:[1,7,8,10,11,9],object:[5,13],favorite_food:[5,7,8,13,10,9],bar:0,organ:1,include_archiv:[5,9],"public":1,"default":[5,11,13,4,9],ref_member_id:5,message_share_click:[12,4],through:[1,8,4],where:[0,1,8,11,7],view:1,set:[0,1,2,3,6,8,9,12,13],link_id:[0,5,12,9,14],see:[7,1,8],result:[0,1,2,5,8,9],respons:[0,1,2,4,5,7,8,9,10,13,14],fail:[5,9,4],themselv:2,member_field:[0,7],xxxxx:6,subject:[8,12,9,14],statu:[1,4,5,7,8,9,12,13],fancyonion:11,kei:[0,1,11,4],is_schedul:9,message_forward:[12,4],databas:8,user:[0,8,9,13],last_modified_at:[7,8,9,13],addresse:5,written:1,between:[0,7,2],"18t16":[7,14],subscript:[1,3],entiti:1,curlopt_url:[1,6,3],email:[0,1,3,5,6,7,8,9,13],wide:14,extend:1,numer:10,http404:[4,5,7,8,9,10,13,14],job:13,entir:[0,8],share_click:5,to_group_id:13,curlopt_returntransf:[1,6,3],addit:[0,1,8,9,11,13],member_remove_from_group:[12,4],send_start:[0,9,14],protect:1,accident:2,last:[0,5,10],delimit:5,pertain:5,message_click:[12,4],curlopt_post:[1,3],audienc:[1,8,9],mang:0,http500:14,seri:5,com:[4,5,6,7,8,9,11,13],zip_code_field:0,"03t15":[7,5,8,13],point:1,toni:[7,8],overview:[0,1,11,12,5],period:1,winner_id:9,colon:[7,11],optout_count:[7,8,9,13],suppli:9,cancel:9,tuesdai:0,duplic:5,quit:[5,8],user_id:4,recur:14,headsup:9,addition:[1,2],due:5,been:[1,8,10,5],mark:[8,9],whom:9,tshow:[4,5,7,8,9,10,13,14],trigger:[1,4,5,7,8,9,10,12,13,14],unsubscrib:0,treat:8,interest:[10,4],basic:[0,1,4,8,13,14],monthli:[7,8,13],blob:4,mailing_mailing_id:5,mailing_id:[0,5,8,12,9,14],fire:[8,4,14],xxx:[1,3],argument:[0,5],link_ord:[5,9],input:1,present:7,clicked_uniqu:5,"case":[1,8],look:[1,14,10],frozen:9,easier:12,email_error:[7,8,9,13],defin:[0,10,8,9],"while":0,outcom:5,abov:[0,1,8,7],error:[1,3,6,8,10,13],loop:8,opt:[0,4,5,7,8,13],readi:9,deliv:5,recipient_group:9,equal:0,itself:0,new_statu:12,webhook_id:4,recipient_memb:9,perform:8,make:[1,12,6,10],belong:[0,8,4],same:4,check:[8,6,9],member:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14],handl:1,html:9,split:9,document:[1,11,12],complet:[1,3,4,6,8,9],week:0,finish:[5,12,4],http:[1,2,3,4,5,6,11,9],href:[4,5,7,8,9,10,13,14],nest:0,someon:4,rais:[4,5,7,8,9,10,13,14],initi:[10,9],php:[1,6,3],bob:[7,5],recent:1,kept:11,center:0,min:5,well:5,inherit:9,person:9,mailing_typ:[9,14],without:0,command:1,thi:[0,1,4,5,7,8,9,10,12,13,14],undefin:0,http_code:[1,6,3],latest:11,construct:[0,7,9],identifi:8,paus:9,execut:[1,3],less:0,resp:[4,5,7,8,9,10,13,14],"_post":[1,3],against:0,aspect:13,recipient_email:9,source_filenam:8,yet:5,smith:[7,5,8,9,13],"12t09":[7,8],display_nam:10,easi:[10,12],"01t00":8,had:0,littl:1,blog:4,add:[12,1,8,13,3],other:[1,8,9,3,5],curlopt_userpwd:[1,6,3],import_finish:[8,12,4],schedul:9,els:[1,6,3],save:7,match:[0,7],build:1,sanit:1,applic:[1,6,3],account_id:[1,3,4,5,6,7,8,9,10,12,13,14],disposit:1,crud:[8,13,14],print_r:[6,3],mailing_statu:[9,14],know:[5,4],background:13,parent_mailing_id:[9,14],bit:1,insert:11,emma:[1,5,7,8,9,12,13],like:1,onion:11,deprec:4,arbitrari:8,manual:9,integ:[1,8,14,10,5],public_kei:4,api:[1,2,6,12,3],either:[0,5,7],bunch:0,output:9,group_id:[1,8,12,3],soft:[0,5],manag:[0,1,13,4],import_id:[8,12],www:[5,9],old:7,deal:[8,13],captur:1,arrai:[0,1,3,5,6,7,8,9,10,12,13,14],some:[1,11,5],field_delet:[12,4],certain:12,intern:10,sampl:[1,4,5,7,8,9,10,13,14],elaps:[2,9],home:11,deleted_at:[7,8,13,10,9,14],some_string_field:0,librari:11,bounce_count:[7,8,9,13],confirm:8,broad:12,per:5,send_finish:[9,14],larg:[0,2],condit:7,three:9,network_cod:12,localhost:9,refer:[5,7,8,13,10,9],with_html_bodi:9,who:[0,5],bold:[4,5,7,8,9,10,13,14],event_typ:14,inspect:1,usag:[1,8,12],num_members_ad:8,fulli:11,from:[1,4,8,9,12,13,14],post:[1,3,4,7,8,9,10,12,13,14],group_creat:[12,4],gladi:[7,5,8,13],actual:5,zip:0,groups_upd:8,column:10,page:2,includ:[1,5,7,8,9,10,13],webview:9,disabl:[9,14],block:[1,2],yyyi:5,member_data:[1,3],glob:0,bounc:[0,5],within:0,encod:[9,4],delivery_typ:[5,8],compos:0,webview_shar:5,field_typ:10,active_count:[7,8,9,13],public_webview_url:9,pivot:5,your:[1,4,5,7,8,9,10,13],websit:11,span:[4,5,7,8,9,10,13,14],wai:[1,12],area:1,overus:2,group_nam:[8,12,13,9],support:12,unique_click:5,json:[0,1,3,4,6,7],fast:8,custom:[5,8,11,10],avail:[0,11,4],start:[1,2,8,4],interfac:12,send_at:[9,14],exceed:2,"var":3,interv:[0,14],deliveri:5,head:[1,6,9,3],form:[1,3,4,6,8,10,14],enough:2,forc:1,forward:[0,4,5,8,12,9],"31st":0,group_typ:[8,9,13],push_offset_unit:14,link:[0,4,5,11,9,14],line:[1,5],realli:1,"true":[0,1,2,3,4,6,7,8,9,10,13,14],archived_t:[9,14],name_last:[1,3],info:4,pull:2,made:1,possibl:[5,8,12],whether:8,maximum:2,tell:12,http403:9,record:[0,7,8],below:[0,1,8,12],http400:[7,8,9],limit:[5,2,8,9],some_array_field:0,otherwis:[10,8],start_t:14,mta:5,connect:[6,3],notif:9,creat:[4,5,7,9,10,12,13,14],"int":5,retriev:[7,1,2,8,9],email_us:[0,5],repres:5,exist:[0,4,5,7,8,10,13],behavior:11,curl:[1,6],lentil:7,probabl:14,echo:[1,3],successfulli:[5,8,9],mailing_subject:12,grp:13,todo:11,when:[8,12,4,9],detail:[1,4,7,8,9,10,13],invalid:[7,8,9],event:[4,7,8,13,12,9,14],field:[0,1,3,4,5,7,8,9,10,11,12,13,14],valid:[5,8,9,13],futur:1,num_skip:8,test:[5,6,7,13,9,14],ignor:8,you:[0,1,2,4,5,7,8,9,10,11,12,13],member_delet:[12,4],member_status_id:[7,5,8,9,13],public_api_kei:[1,6,3],stat:[5,9],claus:[0,7],event_nam:[12,4],e2ma:[1,2,6,3],error_messag:8,param:[9,4],app_messag:[1,3],ella:8,bulk:[1,8],receiv:[0,2,5,8,12,9],heads_up_email:9,longer:9,descript:[4,14],portion:0,opted_out:5,time:[1,2,8,13,5],reply_to:[9,14],resource_url:12,hello:[11,9,14]},objtypes:{"0":"http:get","1":"http:put","2":"http:post","3":"http:delete"},titles:["Search Syntax","Emma API","Pagination","PHP Signup Example","Webhooks","Response","PHP Get Member By Email Example","Searches","Members","Mailings","Fields","Placeholder Syntax","Webhook Usage","Groups","Triggers"],objnames:{"0":["http","get","HTTP get"],"1":["http","put","HTTP put"],"2":["http","post","HTTP post"],"3":["http","delete","HTTP delete"]},filenames:["member_search","index","pagination","php_signup_example","api/external/webhooks","api/external/response","php_get_member_example","api/external/searches","api/external/members","api/external/mailings","api/external/fields","placeholders","webhooks","api/external/groups","api/external/triggers"]}) \ No newline at end of file +Search.setIndex({objects:{"":{"/#account_id/members/#member_id/groups/remove":[8,1,1,"put--#account_id-members-#member_id-groups-remove"],"/#account_id/mailings/#mailing_id/winner/#winner_id":[9,2,1,"post--#account_id-mailings-#mailing_id-winner-#winner_id"],"/#account_id/response/#mailing_id/in_progress":[5,0,1,"get--#account_id-response-#mailing_id-in_progress"],"/#account_id/members/groups/remove":[8,1,1,"put--#account_id-members-groups-remove"],"/#account_id/mailings/#mailing_id/searches":[9,0,1,"get--#account_id-mailings-#mailing_id-searches"],"/#account_id/fields":[10,2,1,"post--#account_id-fields"],"/#account_id/members/#group_id/copy":[8,1,1,"put--#account_id-members-#group_id-copy"],"/#account_id/members/status":[8,1,1,"put--#account_id-members-status"],"/#account_id/response/#mailing_id/shares/overview":[5,0,1,"get--#account_id-response-#mailing_id-shares-overview"],"/#account_id/webhooks/events":[4,0,1,"get--#account_id-webhooks-events"],"/#account_id/members/#member_id/optout":[8,0,1,"get--#account_id-members-#member_id-optout"],"/#account_id/webhooks":[4,3,1,"delete--#account_id-webhooks"],"/#account_id/fields/#field_id":[10,3,1,"delete--#account_id-fields-#field_id"],"/#account_id/response/#mailing_id":[5,0,1,"get--#account_id-response-#mailing_id"],"/#account_id/groups/#member_group_id/members/remove":[13,3,1,"delete--#account_id-groups-#member_group_id-members-remove"],"/#account_id/searches":[7,2,1,"post--#account_id-searches"],"/#account_id/members/imports":[8,0,1,"get--#account_id-members-imports"],"/#account_id/forwards/#mailing_id/#member_id":[9,2,1,"post--#account_id-forwards-#mailing_id-#member_id"],"/#account_id/response/#mailing_id/customer_share_clicks":[5,0,1,"get--#account_id-response-#mailing_id-customer_share_clicks"],"/#account_id/mailings/#mailing_id/messages/#member_id":[9,0,1,"get--#account_id-mailings-#mailing_id-messages-#member_id"],"/#account_id/members/#member_id/mailings":[8,0,1,"get--#account_id-members-#member_id-mailings"],"/#account_id/groups/#from_group_id/#to_group_id/members/copy":[13,1,1,"put--#account_id-groups-#from_group_id-#to_group_id-members-copy"],"/#account_id/triggers":[14,2,1,"post--#account_id-triggers"],"/#account_id/triggers/#trigger_id":[14,3,1,"delete--#account_id-triggers-#trigger_id"],"/#account_id/members/delete":[8,1,1,"put--#account_id-members-delete"],"/#account_id/mailings/#mailing_id/groups":[9,0,1,"get--#account_id-mailings-#mailing_id-groups"],"/#account_id/response/#mailing_id/forwards":[5,0,1,"get--#account_id-response-#mailing_id-forwards"],"/#account_id/members/#member_id":[8,3,1,"delete--#account_id-members-#member_id"],"/#account_id/triggers/#trigger_id/mailings":[14,0,1,"get--#account_id-triggers-#trigger_id-mailings"],"/#account_id/searches/#search_id/members":[7,0,1,"get--#account_id-searches-#search_id-members"],"/#account_id/members/status/:status_from/to/:status_to":[8,1,1,"put--#account_id-members-status--status_from-to--status_to"],"/#account_id/response/#mailing_id/sends":[5,0,1,"get--#account_id-response-#mailing_id-sends"],"/#account_id/members":[8,3,1,"delete--#account_id-members"],"/#account_id/members/email/:email":[8,0,1,"get--#account_id-members-email--email"],"/#account_id/response/#mailing_id/links":[5,0,1,"get--#account_id-response-#mailing_id-links"],"/#account_id/searches/#search_id":[7,3,1,"delete--#account_id-searches-#search_id"],"/#account_id/members/imports/#import_id/members":[8,0,1,"get--#account_id-members-imports-#import_id-members"],"/#account_id/fields/#field_id/clear":[10,2,1,"post--#account_id-fields-#field_id-clear"],"/#account_id/groups/#member_group_id/members":[13,3,1,"delete--#account_id-groups-#member_group_id-members"],"/#account_id/members/imports/#import_id":[8,0,1,"get--#account_id-members-imports-#import_id"],"/#account_id/response":[5,0,1,"get--#account_id-response"],"/#account_id/response/#mailing_id/opens":[5,0,1,"get--#account_id-response-#mailing_id-opens"],"/#account_id/members/imports/delete":[8,3,1,"delete--#account_id-members-imports-delete"],"/#account_id/mailings":[9,0,1,"get--#account_id-mailings"],"/#account_id/mailings/cancel/#mailing_id":[9,3,1,"delete--#account_id-mailings-cancel-#mailing_id"],"/#account_id/mailings/validate":[9,2,1,"post--#account_id-mailings-validate"],"/#account_id/response/#mailing_id/deliveries":[5,0,1,"get--#account_id-response-#mailing_id-deliveries"],"/#account_id/mailings/#mailing_id/members":[9,0,1,"get--#account_id-mailings-#mailing_id-members"],"/#account_id/response/#share_id/customer_share":[5,0,1,"get--#account_id-response-#share_id-customer_share"],"/#account_id/webhooks/#webhook_id":[4,3,1,"delete--#account_id-webhooks-#webhook_id"],"/#account_id/members/add":[8,2,1,"post--#account_id-members-add"],"/#account_id/response/#mailing_id/optouts":[5,0,1,"get--#account_id-response-#mailing_id-optouts"],"/#account_id/response/#mailing_id/shares":[5,0,1,"get--#account_id-response-#mailing_id-shares"],"/#account_id/groups/#member_group_id":[13,3,1,"delete--#account_id-groups-#member_group_id"],"/#account_id/mailings/#mailing_id":[9,3,1,"delete--#account_id-mailings-#mailing_id"],"/#account_id/members/#member_id/groups":[8,3,1,"delete--#account_id-members-#member_id-groups"],"/#account_id/groups":[13,2,1,"post--#account_id-groups"],"/#account_id/response/#mailing_id/clicks":[5,0,1,"get--#account_id-response-#mailing_id-clicks"],"/#account_id/mailings/#mailing_id/headsup":[9,0,1,"get--#account_id-mailings-#mailing_id-headsup"],"/#account_id/response/#mailing_id/signups":[5,0,1,"get--#account_id-response-#mailing_id-signups"],"/#account_id/response/#mailing_id/customer_shares":[5,0,1,"get--#account_id-response-#mailing_id-customer_shares"]}},terms:{all:[0,1,4,5,8,9,10,11,12,13,14],code:[0,1,6,3],change_typ:8,queri:[0,2,4],month:[0,5,9,14],four:[0,5],mile:0,least:0,field_creat:[12,4],link_target:[5,9],content:[1,11,6,9,3],privat:1,specif:[8,9,4],friendli:5,send:[1,9,4,3,5],customer_share_click:5,those:[5,12],group_upd:[12,4],sent:[5,8,12,9,14],curl_clos:[1,6,3],brown:[7,8],digit:5,everi:0,string:[0,4,5,7,8,9,10,12,13,14],fals:[1,3,4,5,6,7,8,9,10,13,14],webhook:[1,12,4],mailing_status:9,trigger_id:14,webview_share_click:5,affect:[7,8],member_add:[12,4],create_mail:9,new_boolean:10,foo:0,level:1,group_delet:[12,4],list:[0,1,2,4,5,7,8,9,10,11,12,13,14],upload:8,iter:2,"try":8,item:2,plaintext_onli:[9,14],div:[4,5,7,8,9,10,13,14],survey_id:14,pleas:[1,8,11,9],prevent:2,work:[1,4],ten:0,sync:10,sign:[0,5,4],past:1,second:[0,7,14],follow:[0,1,4,5,7,9,11,13],further:1,durat:9,click:[0,4,5,7,8,12,14],append:2,even:10,what:1,hide:[4,5,7,8,9,10,13,14],appear:1,from_group_id:13,section:1,current:[8,12,9],delet:[1,4,7,8,9,10,12,13,14],"new":[1,4,5,7,8,9,10,11,13,14],net:[1,2,6,3],delivery_t:8,method:[5,8,13,4,9],can:[0,1,2,4,5,7,8,9,11,12,13],widget:[7,10,8,9,13],hash:0,datematch:0,displai:10,variat:9,gener:[0,8,12,14],onli:[5,8],here:[0,1,3,5,6,8],bodi:9,let:[1,4,10],address:[0,1,8,6,9],along:8,sinc:8,valu:[0,5,7,8,10,11],field_upd:[12,4],search:[0,1,9,7],survei:14,sender:[9,14],larger:2,queue:5,prior:9,action:[0,8],chang:[8,4],name_first:[1,3],campaign:5,newbi:5,appli:[7,14],prefer:0,myemma:[4,5,7,8,9,13],filenam:8,customer_shar:5,"boolean":[0,1,5,7,8,9,10,13,14],curlopt_postfield:[1,3],total:5,jone:[7,5,8,13],select:10,newslett:[7,8,13],describ:7,would:[0,1],regist:4,two:[0,5],next:[0,1],create_webhook:4,few:[5,8],call:[1,2,3,4,6,8,12],criteria:7,member_add_to_group:[12,4],type:[1,3,4,5,6,7,10,9,14],until:2,more:[0,4,7,8,9,13],peopl:5,relat:[1,8,11,9],about:[10,8,12,4,9],notic:8,thide:[4,5,7,8,9,10,13,14],flag:[5,7,8,10,9,14],exce:2,indic:8,examin:1,particular:[1,4,5,8,10,12,9],in_progress:5,origin:9,must:[0,7,13,10],none:9,endpoint:[1,4,5,7,8,9,10,13,14],join:[0,7],hour:0,setup:1,member_sinc:[0,5,7,8,9,13],uniqu:5,histori:8,soup:7,remain:[0,9],archiv:[5,9],member_optout:[12,4],drill:5,control:[1,11,9],quickstart:1,give:5,forward_mailing_id:5,email_domain:[0,5],share:[0,5,8,12,4],accept:[0,5,7,8,9,10,11,13,14],total_click:5,tag:[11,9],want:[1,12,13,5],occur:[7,12],some_numeric_field:0,delai:14,alwai:0,webhook_event_id:4,cours:1,end:[2,8],first_nam:[1,3,5,7,8,9,10,11,13,14],started_or_finish:[9,14],anoth:[9,13],get:[1,4,5,6,7,8,9,10,13,14],message_open:[12,4],html_bodi:[9,14],share_statu:5,push_offset:14,del_statu:5,tild:5,num_members_upd:8,simpl:0,chri:9,pizza:[7,8],map:0,autent:1,referenc:7,xxxx:6,sundai:0,membership:13,taco:[7,5,8,9,13],mai:12,multipl:[10,8],data:[1,3,4,5,10,12],welcom:11,add_onli:8,"short":0,json_encod:[1,3],optout:[5,8,12,13],num_dupl:8,favorit:10,correspond:[0,1],greet:11,predic:[0,1],issu:[1,10],"12t11":[7,5,8,9,13],combin:7,allow:[0,7,8],some_zipcode_field:0,signed_up:5,order:[5,10],michel:[8,9],mailing_nam:5,checkbox:10,fields_upd:8,over:2,becaus:12,buyer:[7,8,9,13],comma:[9,13],is_dis:14,vari:8,paramet:[2,4,5,7,8,9,10,13,14],widget_typ:10,style:[0,4,5,7,8,9,10,13,14],group:[0,1,3,4,7,8,9,12,13,14],curl_setopt:[1,6,3],how:[7,1,2,4],import_start:8,better:[13,14],platform:1,pend:[1,9],mailing_list:9,onc:9,mail:[0,1,4,5,8,11,12,9,14],hidden:13,main:1,might:[1,4],link_nam:[5,9],them:[8,9],"return":[0,1,4,5,7,8,9,10,12,13,14],greater:[0,8],thei:[0,9],food:10,timestamp:[0,5,12,9,10],spell:4,dai:0,auth:1,instead:[12,2,8],now:5,down:5,term:[0,1],alex:9,name:[0,4,5,7,8,9,10,11,13,14],edit:[7,1,14,10],curl_getinfo:[1,6,3],authent:[1,6,4,3],successufulli:4,separ:[1,9,13],each:[1,2,5,9,12,11,13],found:[8,9,4,14],updat:[4,7,8,9,10,12,13,14],mean:0,status:[8,9],domain:0,shortcut_nam:10,weight:[4,5,7,8,9,10,13,14],resum:9,individu:[1,8],hard:[0,5],last_nam:[1,3,5,7,8,9,10,11,13,14],"05t15":5,birthdai:[10,14],expect:1,year:[0,5,9,14],our:[1,11,12,4,14],happen:[1,4,5],extract:11,short_display_nam:10,special:[0,7,8,13],out:[0,1,4,5,7,8,10,13],variabl:[1,6,3],message_shar:[12,4],network:[5,12],private_api_kei:[1,6,3],check_multipl:10,categori:1,rel:0,print:6,correct:10,statist:8,benjamin:8,qualifi:11,insid:1,advanc:0,contain:[0,5,7,13,10,9],differ:0,standard:[5,9],status_from:8,base:[5,8],recipient_search:9,dictionari:8,put:[4,7,8,9,10,13,14],"13t23":[7,5,8],visit:11,could:1,omit:5,success:[7,1,9,13,3],filter:[0,1,7],search_id:7,pagin:[1,2],member_id:[5,7,8,9,12,13],summari:[1,5],assign:9,first:[0,1,10,5],oper:[0,1,7,14],rang:5,notifi:12,directli:0,curlopt_ssl_verifyp:[1,6,3],curl_init:[1,6,3],number:[5,2,13,3,10],placehold:[1,11],date:[0,5,8,10,11,14],unlik:9,alreadi:[10,9,13],done:8,plaintext_pref:[7,8,9,13],oppos:8,open:[0,3,4,5,6,7,8,12],payload:4,fanci:5,size:2,given:[0,8,9,4],"long":10,script:1,associ:[1,8,9,4,5],system:[8,12,4,14],messag:[4,5,8,12,11,9,14],attach:11,friend:11,curlinfo_http_cod:[1,6,3],shell:0,option:[0,5,7,8,9,10,13,14],especi:8,signup:[0,1,3,4,5,8,12,14],copi:[8,13],member_upd:[12,4],specifi:[0,2,7,8,10,11,9,14],curl_exec:[1,6,3],curlopt_httphead:[1,6,3],member_signup:[12,4],create_search:7,part:[0,9],enclos:11,than:[0,1,2,3,12,13],with_plaintext:9,"02t10":[5,8],"02t11":[5,8],"02t13":[7,5,14],nathan:8,whenev:8,provid:[1,5,8,12,9,14],remov:[12,8,13,4],mailing_start:4,rate:2,structur:7,charact:9,greg:8,trackabl:11,were:5,minut:0,danc:1,error_count:[7,8,9,13],pre:[4,5,7,8,9,10,13,14],cleaner:1,sai:0,share_id:5,signup_form_id:[0,8,12,9,14],plaintext:[5,9,14],pass:[1,3],ani:[0,1,2,7,8,9],have:[0,5,8,12,9],tabl:5,seen:5,"null":[7,8,13,10,9,14],kevin:[9,14],signup_mail:0,caus:14,inform:[1,4,6,8,9,10,13],object_id:14,note:[1,8,9,4],also:[0,4,5,7,8,9,11,13],exampl:[0,1,3,5,6,7,11],take:[0,4],which:[0,1,4,8,10,12,9,14],some_number_field:0,singl:[0,1,3,4,5,8,10,12,13],excit:11,sure:1,delete_memb:13,normal:9,parent_mail:14,recipient_count:[5,9,14],previou:9,field_id:[10,12,14],last_run_at:7,most:14,pair:11,"class":[4,5,7,8,9,10,13,14],member_group_id:[8,9,13],mcconnel:[9,14],url:[1,3,4,5,6,12],mailing_finish:[12,4],clear:10,request:[1,2,3],doe:[0,5,7,8,10,13],member_status_upd:[12,4],declar:9,tech:4,determin:1,dataset:10,dow:0,recipi:9,"6db0cc7e6fdb2da589b65f29d90c96b6":9,show:[4,5,7,8,9,10,11,13,14],text:[10,11,12],radiu:0,syntax:[0,1,11,9],radio:10,font:[4,5,7,8,9,10,13,14],fine:9,find:[1,6,5],status_to:8,toast:[7,5,8,13],access:[1,5],giant:12,just:[0,9],pretti:8,column_ord:10,explain:[0,1],winner:9,activ:[1,5,7,8,13,9],figur:1,should:[1,2,3,7,8,11,9],templat:[11,14],share_count:5,count:[1,2,3,5],variou:[8,13],confirmed_opt_in:[7,8,9,13],familiar:1,express:0,account:[1,4,5,7,8,10,13,14],cannot:[8,9,4],progress:9,report:[10,8],requir:[1,7,8,10,11,9],object:[5,13],favorite_food:[5,7,8,13,10,9],bar:0,organ:1,include_archiv:[5,9],"public":1,"default":[5,11,13,4,9],ref_member_id:5,message_share_click:[12,4],through:[1,8,4],where:[0,1,8,11,7],view:1,set:[0,1,2,3,6,8,9,12,13],link_id:[0,5,12,9,14],see:[7,1,8],result:[0,1,2,5,8,9],respons:[0,1,2,4,5,7,8,9,10,13,14],fail:[5,9,4],themselv:2,member_field:[0,7],xxxxx:6,subject:[8,12,9,14],statu:[1,4,5,7,8,9,12,13],fancyonion:11,kei:[0,1,11,4],is_schedul:9,message_forward:[12,4],databas:8,user:[0,8,9,13],last_modified_at:[7,8,9,13],addresse:5,written:1,between:[0,7,2],"import":[1,8,12,4,10],subscript:[1,3],entiti:1,curlopt_url:[1,6,3],email:[0,1,3,5,6,7,8,9,13],wide:14,extend:1,numer:10,http404:[4,5,7,8,9,10,13,14],job:13,entir:[0,8],share_click:5,to_group_id:13,curlopt_returntransf:[1,6,3],addit:[0,1,8,9,11,13],member_remove_from_group:[12,4],send_start:[0,9,14],protect:1,accident:2,last:[0,5,10],delimit:5,pertain:5,message_click:[12,4],curlopt_post:[1,3],audienc:[1,8,9],mang:0,http500:14,seri:5,com:[4,5,6,7,8,9,11,13],zip_code_field:0,"03t15":[7,5,8,13],point:1,toni:[7,8],overview:[0,1,11,12,5],period:1,winner_id:9,colon:[7,11],optout_count:[7,8,9,13],suppli:9,cancel:9,tuesdai:0,duplic:5,quit:[5,8],user_id:4,recur:14,headsup:9,addition:[1,2],due:5,been:[1,8,10,5],mark:[8,9],whom:9,tshow:[4,5,7,8,9,10,13,14],trigger:[1,4,5,7,8,9,10,12,13,14],unsubscrib:0,treat:8,interest:[10,4],basic:[0,1,4,8,13,14],monthli:[7,8,13],blob:4,mailing_mailing_id:5,mailing_id:[0,5,8,12,9,14],fire:[8,4,14],xxx:[1,3],argument:[0,5],link_ord:[5,9],input:1,present:7,clicked_uniqu:5,"case":[1,8],look:[1,14,10],frozen:9,easier:12,email_error:[7,8,9,13],defin:[0,10,8,9],"while":0,outcom:5,abov:[0,1,8,7],error:[1,3,6,8,10,13],loop:8,opt:[0,4,5,7,8,13],readi:9,deliv:5,recipient_group:9,equal:0,itself:0,new_statu:12,webhook_id:4,recipient_memb:9,perform:8,make:[1,12,6,10],belong:[0,8,4],same:4,check:[8,6,9],member:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14],handl:1,html:9,split:9,document:[1,11,12],complet:[1,3,4,6,8,9],week:0,finish:[5,12,4],http:[1,2,3,4,5,6,11,9],href:[4,5,7,8,9,10,13,14],nest:0,someon:4,rais:[4,5,7,8,9,10,13,14],initi:[10,9],php:[1,6,3],bob:[7,5],recent:1,kept:11,center:0,min:5,well:5,inherit:9,person:9,mailing_typ:[9,14],without:0,command:1,thi:[0,1,4,5,7,8,9,10,12,13,14],undefin:0,http_code:[1,6,3],latest:11,construct:[0,7,9],identifi:8,paus:9,execut:[1,3],less:0,resp:[4,5,7,8,9,10,13,14],"_post":[1,3],against:0,aspect:13,recipient_email:9,source_filenam:8,yet:5,smith:[7,5,8,9,13],"12t09":[7,8],display_nam:10,easi:[10,12],"01t00":8,had:0,littl:1,blog:4,add:[12,1,8,13,3],other:[1,8,9,3,5],curlopt_userpwd:[1,6,3],import_finish:[8,12,4],schedul:9,els:[1,6,3],save:7,match:[0,7],build:1,sanit:1,applic:[1,6,3],account_id:[1,3,4,5,6,7,8,9,10,12,13,14],disposit:1,crud:[8,13,14],print_r:[6,3],mailing_statu:[9,14],know:[5,4],background:13,parent_mailing_id:[9,14],bit:1,insert:11,emma:[1,5,7,8,9,12,13],like:1,onion:11,deprec:4,arbitrari:8,manual:9,integ:[1,8,14,10,5],public_kei:4,api:[1,2,6,12,3],either:[0,5,7],bunch:0,output:9,group_id:[1,8,12,3],soft:[0,5],manag:[0,1,13,4],import_id:[8,12],www:[5,9],old:7,deal:[8,13],captur:1,arrai:[0,1,3,5,6,7,8,9,10,12,13,14],some:[1,11,5],field_delet:[12,4],certain:12,intern:10,sampl:[1,4,5,7,8,9,10,13,14],elaps:[2,9],home:11,deleted_at:[7,8,13,10,9,14],some_string_field:0,librari:11,bounce_count:[7,8,9,13],confirm:8,broad:12,per:5,send_finish:[9,14],larg:[0,2],condit:7,three:9,network_cod:12,localhost:9,refer:[5,7,8,13,10,9],with_html_bodi:9,who:[0,5],bold:[4,5,7,8,9,10,13,14],event_typ:14,inspect:1,usag:[1,8,12],num_members_ad:8,fulli:11,from:[1,4,8,9,12,13,14],post:[1,3,4,7,8,9,10,12,13,14],group_creat:[12,4],gladi:[7,5,8,13],actual:5,zip:0,groups_upd:8,column:10,page:2,includ:[1,5,7,8,9,10,13],webview:9,disabl:[9,14],block:[1,2],yyyi:5,member_data:[1,3],glob:0,bounc:[0,5],within:0,encod:[9,4],delivery_typ:[5,8],compos:0,webview_shar:5,field_typ:10,active_count:[7,8,9,13],public_webview_url:9,pivot:5,your:[1,4,5,7,8,9,10,13],websit:11,span:[4,5,7,8,9,10,13,14],wai:[1,12],area:1,overus:2,group_nam:[8,12,13,9],support:12,unique_click:5,json:[0,1,3,4,6,7],fast:8,custom:[5,8,11,10],avail:[0,11,4],start:[1,2,8,4],interfac:12,send_at:[9,14],exceed:2,"var":3,interv:[0,14],deliveri:5,head:[1,6,9,3],form:[1,3,4,6,8,10,14],enough:2,forc:1,forward:[0,4,5,8,12,9],"31st":0,group_typ:[8,9,13],push_offset_unit:14,link:[0,4,5,11,9,14],line:[1,5],realli:1,"true":[0,1,2,3,4,6,7,8,9,10,13,14],archived_t:[9,14],name_last:[1,3],info:4,pull:2,made:1,possibl:[5,8,12],whether:8,maximum:2,tell:12,http403:9,record:[0,7,8],below:[0,1,8,12],http400:[7,8,9],limit:[5,2,8,9],some_array_field:0,otherwis:[10,8],start_t:14,mta:5,connect:[6,3],notif:9,creat:[4,5,7,9,10,12,13,14],"int":5,retriev:[7,1,2,8,9],email_us:[0,5],repres:5,exist:[0,4,5,7,8,10,13],behavior:11,curl:[1,6],lentil:7,probabl:14,echo:[1,3],successfulli:[5,8,9],mailing_subject:12,grp:13,todo:11,when:[8,12,4,9],detail:[1,4,7,8,9,10,13],invalid:[7,8,9],event:[4,7,8,13,12,9,14],field:[0,1,3,4,5,7,8,9,10,11,12,13,14],valid:[5,8,9,13],futur:1,num_skip:8,test:[5,6,7,13,9,14],ignor:8,you:[0,1,2,4,5,7,8,9,10,11,12,13],member_delet:[12,4],member_status_id:[7,5,8,9,13],public_api_kei:[1,6,3],stat:[5,9],claus:[0,7],event_nam:[12,4],e2ma:[1,2,6,3],error_messag:8,param:[9,4],app_messag:[1,3],ella:8,bulk:[1,8],receiv:[0,2,5,8,12,9],heads_up_email:9,longer:9,descript:[4,14],portion:0,opted_out:5,time:[1,2,8,13,5],reply_to:[9,14],resource_url:12,hello:[11,9,14]},objtypes:{"0":"http:get","1":"http:put","2":"http:post","3":"http:delete"},titles:["Search Syntax","Emma API","Pagination","PHP Signup Example","Webhooks","Response","PHP Get Member By Email Example","Searches","Members","Mailings","Fields","Placeholder Syntax","Webhook Usage","Groups","Triggers"],objnames:{"0":["http","get","HTTP get"],"1":["http","put","HTTP put"],"2":["http","post","HTTP post"],"3":["http","delete","HTTP delete"]},filenames:["member_search","index","pagination","php_signup_example","api/external/webhooks","api/external/response","php_get_member_example","api/external/searches","api/external/members","api/external/mailings","api/external/fields","placeholders","webhooks","api/external/groups","api/external/triggers"]}) \ No newline at end of file diff --git a/webhooks.html b/webhooks.html index ecfaa4c..789e185 100644 --- a/webhooks.html +++ b/webhooks.html @@ -1,13 +1,15 @@ -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" - "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> + +<!doctype html> + <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> - <title>Webhook Usage — audience 0.1 documentation</title> + <title>Emma API Documentation | Emma, Inc.</title> + <link rel="stylesheet" href="_static/emma.css" type="text/css" /> <link rel="stylesheet" href="_static/pygments.css" type="text/css" /> @@ -27,30 +29,41 @@ <link rel="top" title="audience 0.1 documentation" href="index.html" /> <link rel="next" title="PHP Signup Example" href="php_signup_example.html" /> <link rel="prev" title="Search Syntax" href="member_search.html" /> - + <link rel="icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> + <link rel="shortcut icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> + <link rel="apple-touch-icon-precomposed" href="http://myemma.com/static/global/favicons/apple-iphone.png" /> + <link rel="apple-touch-icon-precomposed" sizes="72x72" href="http://myemma.com/static/global/favicons/apple-ipad.png" /> + <link rel="apple-touch-icon-precomposed" sizes="114x114" href="http://myemma.com/static/global/favicons/apple-iphone-2x.png" /> + <link rel="apple-touch-icon-precomposed" sizes="144x144" href="http://myemma.com/static/global/favicons/apple-ipad-2x.png" /> + + <script type="text/javascript" src="//use.typekit.net/zfm0nfo.js"></script> + <script type="text/javascript">try{Typekit.load();}catch(e){}</script> + + <script src="http://code.jquery.com/jquery-1.4.min.js"></script> + <script>window.jQuery || document.write('<script src="_static/jquery.js"><\/script>')</script> - <style type="text/css"> - .resp-trigger, .resp-trigger:hover {font-size:10pt;text-decoration:none;} - div.sample-response.hide-response pre.response {display: none;} - div.sample-response .tshow, - div.sample-response.hide-response .thide {display: none;} - div.sample-response .thide, - div.sample-response.hide-response .tshow {display: inline;} - </style> - <script> - $().ready(function() { - $("a.resp-trigger").click(function(e) { - e.preventDefault(); - $(this).parents("div.sample-response").toggleClass("hide-response"); + <style type="text/css"> + .resp-trigger, .resp-trigger:hover {font-size:10pt;text-decoration:none;} + div.sample-response.hide-response pre.response {display: none;} + div.sample-response .tshow, + div.sample-response.hide-response .thide {display: none;} + div.sample-response .thide, + div.sample-response.hide-response .tshow {display: inline;} + </style> + <script> + $().ready(function() { + $("a.resp-trigger").click(function(e) { + e.preventDefault(); + $(this).parents("div.sample-response").toggleClass("hide-response"); + }); }); - }); - </script> + </script> </head> <body> -<header role="banner"> - <h1>Emma API Documentation</h1> -</header> + <header role="banner"> + <h1>Emma API Documentation</h1> + </header> <div class="related"> <h3>Navigation</h3> <ul> @@ -460,13 +473,27 @@ <h3>Quick search</h3> </p> </div> <script type="text/javascript">$('#searchbox').show(0);</script> +<div id="emma-links"> + <h3>Emma Links</h3> + <ul> + <li><a href="http://myemma.com" title="Visit Emma's homepage" target="_blank">Emma Home</a></li> + + <li><a href="http://myemma.com/blog" title="Visit the Emma Blog" target="_blank">Emma Blog</a></li> + <li><a href="http://myemma.com/help" title="Visit Emma's help guide" target="_blank">Emma Help</a></li> + </ul> +</div> + +<div id="inquiry"> + <h3>Interested in Emma?</h3> + <p>Emma's email marketing makes communicating simple and stylish. <a href="/get-started/inquire" title="Get started today.">Get started today</a>.</p> +</div> </div> </div> <div class="clearer"></div> </div> <div class="footer"> - © Copyright 2012, Emma. - Last updated on Dec 18, 2012 at 16:15. + © Copyright 2013, Emma. + Last updated on Jan 02, 2013 at 01:34 PM. </div> </body> </html> \ No newline at end of file From c6dbfe457a06f0aab42cd2a4ec909bfa29bdb4a6 Mon Sep 17 00:00:00 2001 From: Lance Roggendorff <lance.roggendorff@myemma.com> Date: Thu, 3 Jan 2013 11:19:16 -0600 Subject: [PATCH 015/219] Update audience documentation. --- api/external/fields.html | 20 ++++++++++---------- api/external/groups.html | 20 ++++++++++---------- api/external/mailings.html | 20 ++++++++++---------- api/external/members.html | 20 ++++++++++---------- api/external/response.html | 20 ++++++++++---------- api/external/searches.html | 22 +++++++++++----------- api/external/triggers.html | 26 +++++++++++++------------- api/external/webhooks.html | 20 ++++++++++---------- genindex.html | 20 ++++++++++---------- http-routingtable.html | 20 ++++++++++---------- index.html | 20 ++++++++++---------- member_search.html | 20 ++++++++++---------- pagination.html | 20 ++++++++++---------- php_get_member_example.html | 20 ++++++++++---------- php_signup_example.html | 20 ++++++++++---------- placeholders.html | 20 ++++++++++---------- search.html | 20 ++++++++++---------- searchindex.js | 2 +- webhooks.html | 20 ++++++++++---------- 19 files changed, 185 insertions(+), 185 deletions(-) diff --git a/api/external/fields.html b/api/external/fields.html index 9e0faf1..0e45f23 100644 --- a/api/external/fields.html +++ b/api/external/fields.html @@ -3,7 +3,6 @@ <!doctype html> - <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> @@ -23,7 +22,12 @@ HAS_SOURCE: true }; </script> - <script type="text/javascript" src="../../_static/jquery.js"></script> + + <script src="http://code.jquery.com/jquery-1.4.min.js"></script> + <script>window.jQuery || document.write('<script src="_static/jquery.js"><\/script>')</script> + + <script type="text/javascript" src="//use.typekit.net/zfm0nfo.js"></script> + <script type="text/javascript">try{Typekit.load();}catch(e){}</script> <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" /> @@ -36,12 +40,6 @@ <link rel="apple-touch-icon-precomposed" sizes="114x114" href="http://myemma.com/static/global/favicons/apple-iphone-2x.png" /> <link rel="apple-touch-icon-precomposed" sizes="144x144" href="http://myemma.com/static/global/favicons/apple-ipad-2x.png" /> - <script type="text/javascript" src="//use.typekit.net/zfm0nfo.js"></script> - <script type="text/javascript">try{Typekit.load();}catch(e){}</script> - - <script src="http://code.jquery.com/jquery-1.4.min.js"></script> - <script>window.jQuery || document.write('<script src="_static/jquery.js"><\/script>')</script> - <style type="text/css"> .resp-trigger, .resp-trigger:hover {font-size:10pt;text-decoration:none;} div.sample-response.hide-response pre.response {display: none;} @@ -62,7 +60,9 @@ </head> <body> <header role="banner"> - <h1>Emma API Documentation</h1> + <a href="index.html"> + <h1>Emma API Documentation</h1> + </a> </header> <div class="related"> <h3>Navigation</h3> @@ -401,7 +401,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 02, 2013 at 01:34 PM. + Last updated on Jan 03, 2013 at 11:19 AM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/groups.html b/api/external/groups.html index 0b89e03..cb96c30 100644 --- a/api/external/groups.html +++ b/api/external/groups.html @@ -3,7 +3,6 @@ <!doctype html> - <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> @@ -23,7 +22,12 @@ HAS_SOURCE: true }; </script> - <script type="text/javascript" src="../../_static/jquery.js"></script> + + <script src="http://code.jquery.com/jquery-1.4.min.js"></script> + <script>window.jQuery || document.write('<script src="_static/jquery.js"><\/script>')</script> + + <script type="text/javascript" src="//use.typekit.net/zfm0nfo.js"></script> + <script type="text/javascript">try{Typekit.load();}catch(e){}</script> <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" /> @@ -36,12 +40,6 @@ <link rel="apple-touch-icon-precomposed" sizes="114x114" href="http://myemma.com/static/global/favicons/apple-iphone-2x.png" /> <link rel="apple-touch-icon-precomposed" sizes="144x144" href="http://myemma.com/static/global/favicons/apple-ipad-2x.png" /> - <script type="text/javascript" src="//use.typekit.net/zfm0nfo.js"></script> - <script type="text/javascript">try{Typekit.load();}catch(e){}</script> - - <script src="http://code.jquery.com/jquery-1.4.min.js"></script> - <script>window.jQuery || document.write('<script src="_static/jquery.js"><\/script>')</script> - <style type="text/css"> .resp-trigger, .resp-trigger:hover {font-size:10pt;text-decoration:none;} div.sample-response.hide-response pre.response {display: none;} @@ -62,7 +60,9 @@ </head> <body> <header role="banner"> - <h1>Emma API Documentation</h1> + <a href="index.html"> + <h1>Emma API Documentation</h1> + </a> </header> <div class="related"> <h3>Navigation</h3> @@ -688,7 +688,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 02, 2013 at 01:34 PM. + Last updated on Jan 03, 2013 at 11:19 AM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/mailings.html b/api/external/mailings.html index c734902..aca9f52 100644 --- a/api/external/mailings.html +++ b/api/external/mailings.html @@ -3,7 +3,6 @@ <!doctype html> - <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> @@ -23,7 +22,12 @@ HAS_SOURCE: true }; </script> - <script type="text/javascript" src="../../_static/jquery.js"></script> + + <script src="http://code.jquery.com/jquery-1.4.min.js"></script> + <script>window.jQuery || document.write('<script src="_static/jquery.js"><\/script>')</script> + + <script type="text/javascript" src="//use.typekit.net/zfm0nfo.js"></script> + <script type="text/javascript">try{Typekit.load();}catch(e){}</script> <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" /> @@ -36,12 +40,6 @@ <link rel="apple-touch-icon-precomposed" sizes="114x114" href="http://myemma.com/static/global/favicons/apple-iphone-2x.png" /> <link rel="apple-touch-icon-precomposed" sizes="144x144" href="http://myemma.com/static/global/favicons/apple-ipad-2x.png" /> - <script type="text/javascript" src="//use.typekit.net/zfm0nfo.js"></script> - <script type="text/javascript">try{Typekit.load();}catch(e){}</script> - - <script src="http://code.jquery.com/jquery-1.4.min.js"></script> - <script>window.jQuery || document.write('<script src="_static/jquery.js"><\/script>')</script> - <style type="text/css"> .resp-trigger, .resp-trigger:hover {font-size:10pt;text-decoration:none;} div.sample-response.hide-response pre.response {display: none;} @@ -62,7 +60,9 @@ </head> <body> <header role="banner"> - <h1>Emma API Documentation</h1> + <a href="index.html"> + <h1>Emma API Documentation</h1> + </a> </header> <div class="related"> <h3>Navigation</h3> @@ -795,7 +795,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 02, 2013 at 01:34 PM. + Last updated on Jan 03, 2013 at 11:19 AM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/members.html b/api/external/members.html index 541051b..dce9042 100644 --- a/api/external/members.html +++ b/api/external/members.html @@ -3,7 +3,6 @@ <!doctype html> - <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> @@ -23,7 +22,12 @@ HAS_SOURCE: true }; </script> - <script type="text/javascript" src="../../_static/jquery.js"></script> + + <script src="http://code.jquery.com/jquery-1.4.min.js"></script> + <script>window.jQuery || document.write('<script src="_static/jquery.js"><\/script>')</script> + + <script type="text/javascript" src="//use.typekit.net/zfm0nfo.js"></script> + <script type="text/javascript">try{Typekit.load();}catch(e){}</script> <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" /> @@ -36,12 +40,6 @@ <link rel="apple-touch-icon-precomposed" sizes="114x114" href="http://myemma.com/static/global/favicons/apple-iphone-2x.png" /> <link rel="apple-touch-icon-precomposed" sizes="144x144" href="http://myemma.com/static/global/favicons/apple-ipad-2x.png" /> - <script type="text/javascript" src="//use.typekit.net/zfm0nfo.js"></script> - <script type="text/javascript">try{Typekit.load();}catch(e){}</script> - - <script src="http://code.jquery.com/jquery-1.4.min.js"></script> - <script>window.jQuery || document.write('<script src="_static/jquery.js"><\/script>')</script> - <style type="text/css"> .resp-trigger, .resp-trigger:hover {font-size:10pt;text-decoration:none;} div.sample-response.hide-response pre.response {display: none;} @@ -62,7 +60,9 @@ </head> <body> <header role="banner"> - <h1>Emma API Documentation</h1> + <a href="index.html"> + <h1>Emma API Documentation</h1> + </a> </header> <div class="related"> <h3>Navigation</h3> @@ -1170,7 +1170,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 02, 2013 at 01:34 PM. + Last updated on Jan 03, 2013 at 11:19 AM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/response.html b/api/external/response.html index 30603d5..dce792a 100644 --- a/api/external/response.html +++ b/api/external/response.html @@ -3,7 +3,6 @@ <!doctype html> - <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> @@ -23,7 +22,12 @@ HAS_SOURCE: true }; </script> - <script type="text/javascript" src="../../_static/jquery.js"></script> + + <script src="http://code.jquery.com/jquery-1.4.min.js"></script> + <script>window.jQuery || document.write('<script src="_static/jquery.js"><\/script>')</script> + + <script type="text/javascript" src="//use.typekit.net/zfm0nfo.js"></script> + <script type="text/javascript">try{Typekit.load();}catch(e){}</script> <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" /> @@ -36,12 +40,6 @@ <link rel="apple-touch-icon-precomposed" sizes="114x114" href="http://myemma.com/static/global/favicons/apple-iphone-2x.png" /> <link rel="apple-touch-icon-precomposed" sizes="144x144" href="http://myemma.com/static/global/favicons/apple-ipad-2x.png" /> - <script type="text/javascript" src="//use.typekit.net/zfm0nfo.js"></script> - <script type="text/javascript">try{Typekit.load();}catch(e){}</script> - - <script src="http://code.jquery.com/jquery-1.4.min.js"></script> - <script>window.jQuery || document.write('<script src="_static/jquery.js"><\/script>')</script> - <style type="text/css"> .resp-trigger, .resp-trigger:hover {font-size:10pt;text-decoration:none;} div.sample-response.hide-response pre.response {display: none;} @@ -62,7 +60,9 @@ </head> <body> <header role="banner"> - <h1>Emma API Documentation</h1> + <a href="index.html"> + <h1>Emma API Documentation</h1> + </a> </header> <div class="related"> <h3>Navigation</h3> @@ -1005,7 +1005,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 02, 2013 at 01:34 PM. + Last updated on Jan 03, 2013 at 11:19 AM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/searches.html b/api/external/searches.html index d324717..f699845 100644 --- a/api/external/searches.html +++ b/api/external/searches.html @@ -3,7 +3,6 @@ <!doctype html> - <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> @@ -23,7 +22,12 @@ HAS_SOURCE: true }; </script> - <script type="text/javascript" src="../../_static/jquery.js"></script> + + <script src="http://code.jquery.com/jquery-1.4.min.js"></script> + <script>window.jQuery || document.write('<script src="_static/jquery.js"><\/script>')</script> + + <script type="text/javascript" src="//use.typekit.net/zfm0nfo.js"></script> + <script type="text/javascript">try{Typekit.load();}catch(e){}</script> <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" /> @@ -36,12 +40,6 @@ <link rel="apple-touch-icon-precomposed" sizes="114x114" href="http://myemma.com/static/global/favicons/apple-iphone-2x.png" /> <link rel="apple-touch-icon-precomposed" sizes="144x144" href="http://myemma.com/static/global/favicons/apple-ipad-2x.png" /> - <script type="text/javascript" src="//use.typekit.net/zfm0nfo.js"></script> - <script type="text/javascript">try{Typekit.load();}catch(e){}</script> - - <script src="http://code.jquery.com/jquery-1.4.min.js"></script> - <script>window.jQuery || document.write('<script src="_static/jquery.js"><\/script>')</script> - <style type="text/css"> .resp-trigger, .resp-trigger:hover {font-size:10pt;text-decoration:none;} div.sample-response.hide-response pre.response {display: none;} @@ -62,7 +60,9 @@ </head> <body> <header role="banner"> - <h1>Emma API Documentation</h1> + <a href="index.html"> + <h1>Emma API Documentation</h1> + </a> </header> <div class="related"> <h3>Navigation</h3> @@ -185,7 +185,7 @@ <h1>Searches<a class="headerlink" href="#searches" title="Permalink to this head "name": "Test Search", "criteria": "[\"or\", [\"group\", \"eq\", \"Monthly Newsletter\"],[\"group\", \"eq\", \"Widget Buyers\"]]", "deleted_at": null, - "last_run_at": "@D:2013-01-02T13:34:33", + "last_run_at": "@D:2013-01-03T11:19:12", "active_count": 2, "account_id": 100 } @@ -497,7 +497,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 02, 2013 at 01:34 PM. + Last updated on Jan 03, 2013 at 11:19 AM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/triggers.html b/api/external/triggers.html index 0edaa27..0ed6dbd 100644 --- a/api/external/triggers.html +++ b/api/external/triggers.html @@ -3,7 +3,6 @@ <!doctype html> - <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> @@ -23,7 +22,12 @@ HAS_SOURCE: true }; </script> - <script type="text/javascript" src="../../_static/jquery.js"></script> + + <script src="http://code.jquery.com/jquery-1.4.min.js"></script> + <script>window.jQuery || document.write('<script src="_static/jquery.js"><\/script>')</script> + + <script type="text/javascript" src="//use.typekit.net/zfm0nfo.js"></script> + <script type="text/javascript">try{Typekit.load();}catch(e){}</script> <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" /> @@ -36,12 +40,6 @@ <link rel="apple-touch-icon-precomposed" sizes="114x114" href="http://myemma.com/static/global/favicons/apple-iphone-2x.png" /> <link rel="apple-touch-icon-precomposed" sizes="144x144" href="http://myemma.com/static/global/favicons/apple-ipad-2x.png" /> - <script type="text/javascript" src="//use.typekit.net/zfm0nfo.js"></script> - <script type="text/javascript">try{Typekit.load();}catch(e){}</script> - - <script src="http://code.jquery.com/jquery-1.4.min.js"></script> - <script>window.jQuery || document.write('<script src="_static/jquery.js"><\/script>')</script> - <style type="text/css"> .resp-trigger, .resp-trigger:hover {font-size:10pt;text-decoration:none;} div.sample-response.hide-response pre.response {display: none;} @@ -62,7 +60,9 @@ </head> <body> <header role="banner"> - <h1>Emma API Documentation</h1> + <a href="index.html"> + <h1>Emma API Documentation</h1> + </a> </header> <div class="related"> <h3>Navigation</h3> @@ -134,7 +134,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": 203, "push_offset_units": "0:-14:0:0", - "start_ts": "@D:2013-01-02T13:34:30", + "start_ts": "@D:2013-01-03T11:19:10", "trigger_id": 100, "signups": null, "push_offset": "@I:-1209600.0", @@ -175,7 +175,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": null, "push_offset_units": "0:3:0:0", - "start_ts": "@D:2013-01-02T13:34:30", + "start_ts": "@D:2013-01-03T11:19:10", "trigger_id": 101, "signups": [ 1, @@ -312,7 +312,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": 203, "push_offset_units": "0:-14:0:0", - "start_ts": "@D:2013-01-02T13:34:30", + "start_ts": "@D:2013-01-03T11:19:10", "trigger_id": 100, "signups": null, "push_offset": "@I:-1209600.0", @@ -485,7 +485,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 02, 2013 at 01:34 PM. + Last updated on Jan 03, 2013 at 11:19 AM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/webhooks.html b/api/external/webhooks.html index 66a4a36..dd44f91 100644 --- a/api/external/webhooks.html +++ b/api/external/webhooks.html @@ -3,7 +3,6 @@ <!doctype html> - <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> @@ -23,7 +22,12 @@ HAS_SOURCE: true }; </script> - <script type="text/javascript" src="../../_static/jquery.js"></script> + + <script src="http://code.jquery.com/jquery-1.4.min.js"></script> + <script>window.jQuery || document.write('<script src="_static/jquery.js"><\/script>')</script> + + <script type="text/javascript" src="//use.typekit.net/zfm0nfo.js"></script> + <script type="text/javascript">try{Typekit.load();}catch(e){}</script> <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" /> @@ -36,12 +40,6 @@ <link rel="apple-touch-icon-precomposed" sizes="114x114" href="http://myemma.com/static/global/favicons/apple-iphone-2x.png" /> <link rel="apple-touch-icon-precomposed" sizes="144x144" href="http://myemma.com/static/global/favicons/apple-ipad-2x.png" /> - <script type="text/javascript" src="//use.typekit.net/zfm0nfo.js"></script> - <script type="text/javascript">try{Typekit.load();}catch(e){}</script> - - <script src="http://code.jquery.com/jquery-1.4.min.js"></script> - <script>window.jQuery || document.write('<script src="_static/jquery.js"><\/script>')</script> - <style type="text/css"> .resp-trigger, .resp-trigger:hover {font-size:10pt;text-decoration:none;} div.sample-response.hide-response pre.response {display: none;} @@ -62,7 +60,9 @@ </head> <body> <header role="banner"> - <h1>Emma API Documentation</h1> + <a href="index.html"> + <h1>Emma API Documentation</h1> + </a> </header> <div class="related"> <h3>Navigation</h3> @@ -473,7 +473,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 02, 2013 at 01:34 PM. + Last updated on Jan 03, 2013 at 11:19 AM. </div> </body> </html> \ No newline at end of file diff --git a/genindex.html b/genindex.html index c2b8fcd..34e5896 100644 --- a/genindex.html +++ b/genindex.html @@ -5,7 +5,6 @@ <!doctype html> - <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> @@ -25,7 +24,12 @@ HAS_SOURCE: true }; </script> - <script type="text/javascript" src="_static/jquery.js"></script> + + <script src="http://code.jquery.com/jquery-1.4.min.js"></script> + <script>window.jQuery || document.write('<script src="_static/jquery.js"><\/script>')</script> + + <script type="text/javascript" src="//use.typekit.net/zfm0nfo.js"></script> + <script type="text/javascript">try{Typekit.load();}catch(e){}</script> <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" /> @@ -36,12 +40,6 @@ <link rel="apple-touch-icon-precomposed" sizes="114x114" href="http://myemma.com/static/global/favicons/apple-iphone-2x.png" /> <link rel="apple-touch-icon-precomposed" sizes="144x144" href="http://myemma.com/static/global/favicons/apple-ipad-2x.png" /> - <script type="text/javascript" src="//use.typekit.net/zfm0nfo.js"></script> - <script type="text/javascript">try{Typekit.load();}catch(e){}</script> - - <script src="http://code.jquery.com/jquery-1.4.min.js"></script> - <script>window.jQuery || document.write('<script src="_static/jquery.js"><\/script>')</script> - <style type="text/css"> .resp-trigger, .resp-trigger:hover {font-size:10pt;text-decoration:none;} div.sample-response.hide-response pre.response {display: none;} @@ -62,7 +60,9 @@ </head> <body> <header role="banner"> - <h1>Emma API Documentation</h1> + <a href="index.html"> + <h1>Emma API Documentation</h1> + </a> </header> <div class="related"> <h3>Navigation</h3> @@ -132,7 +132,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 02, 2013 at 01:34 PM. + Last updated on Jan 03, 2013 at 11:19 AM. </div> </body> </html> \ No newline at end of file diff --git a/http-routingtable.html b/http-routingtable.html index d89dcdc..69b3369 100644 --- a/http-routingtable.html +++ b/http-routingtable.html @@ -3,7 +3,6 @@ <!doctype html> - <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> @@ -23,7 +22,12 @@ HAS_SOURCE: true }; </script> - <script type="text/javascript" src="_static/jquery.js"></script> + + <script src="http://code.jquery.com/jquery-1.4.min.js"></script> + <script>window.jQuery || document.write('<script src="_static/jquery.js"><\/script>')</script> + + <script type="text/javascript" src="//use.typekit.net/zfm0nfo.js"></script> + <script type="text/javascript">try{Typekit.load();}catch(e){}</script> <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" /> @@ -35,12 +39,6 @@ <link rel="apple-touch-icon-precomposed" sizes="114x114" href="http://myemma.com/static/global/favicons/apple-iphone-2x.png" /> <link rel="apple-touch-icon-precomposed" sizes="144x144" href="http://myemma.com/static/global/favicons/apple-ipad-2x.png" /> - <script type="text/javascript" src="//use.typekit.net/zfm0nfo.js"></script> - <script type="text/javascript">try{Typekit.load();}catch(e){}</script> - - <script src="http://code.jquery.com/jquery-1.4.min.js"></script> - <script>window.jQuery || document.write('<script src="_static/jquery.js"><\/script>')</script> - <style type="text/css"> .resp-trigger, .resp-trigger:hover {font-size:10pt;text-decoration:none;} div.sample-response.hide-response pre.response {display: none;} @@ -67,7 +65,9 @@ </head> <body> <header role="banner"> - <h1>Emma API Documentation</h1> + <a href="index.html"> + <h1>Emma API Documentation</h1> + </a> </header> <div class="related"> <h3>Navigation</h3> @@ -588,7 +588,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 02, 2013 at 01:34 PM. + Last updated on Jan 03, 2013 at 11:19 AM. </div> </body> </html> \ No newline at end of file diff --git a/index.html b/index.html index 6aa33bf..e92a602 100644 --- a/index.html +++ b/index.html @@ -3,7 +3,6 @@ <!doctype html> - <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> @@ -23,7 +22,12 @@ HAS_SOURCE: true }; </script> - <script type="text/javascript" src="_static/jquery.js"></script> + + <script src="http://code.jquery.com/jquery-1.4.min.js"></script> + <script>window.jQuery || document.write('<script src="_static/jquery.js"><\/script>')</script> + + <script type="text/javascript" src="//use.typekit.net/zfm0nfo.js"></script> + <script type="text/javascript">try{Typekit.load();}catch(e){}</script> <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="#" /> @@ -35,12 +39,6 @@ <link rel="apple-touch-icon-precomposed" sizes="114x114" href="http://myemma.com/static/global/favicons/apple-iphone-2x.png" /> <link rel="apple-touch-icon-precomposed" sizes="144x144" href="http://myemma.com/static/global/favicons/apple-ipad-2x.png" /> - <script type="text/javascript" src="//use.typekit.net/zfm0nfo.js"></script> - <script type="text/javascript">try{Typekit.load();}catch(e){}</script> - - <script src="http://code.jquery.com/jquery-1.4.min.js"></script> - <script>window.jQuery || document.write('<script src="_static/jquery.js"><\/script>')</script> - <style type="text/css"> .resp-trigger, .resp-trigger:hover {font-size:10pt;text-decoration:none;} div.sample-response.hide-response pre.response {display: none;} @@ -61,7 +59,9 @@ </head> <body> <header role="banner"> - <h1>Emma API Documentation</h1> + <a href="index.html"> + <h1>Emma API Documentation</h1> + </a> </header> <div class="related"> <h3>Navigation</h3> @@ -311,7 +311,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 02, 2013 at 01:34 PM. + Last updated on Jan 03, 2013 at 11:19 AM. </div> </body> </html> \ No newline at end of file diff --git a/member_search.html b/member_search.html index bce2c05..7921324 100644 --- a/member_search.html +++ b/member_search.html @@ -3,7 +3,6 @@ <!doctype html> - <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> @@ -23,7 +22,12 @@ HAS_SOURCE: true }; </script> - <script type="text/javascript" src="_static/jquery.js"></script> + + <script src="http://code.jquery.com/jquery-1.4.min.js"></script> + <script>window.jQuery || document.write('<script src="_static/jquery.js"><\/script>')</script> + + <script type="text/javascript" src="//use.typekit.net/zfm0nfo.js"></script> + <script type="text/javascript">try{Typekit.load();}catch(e){}</script> <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" /> @@ -36,12 +40,6 @@ <link rel="apple-touch-icon-precomposed" sizes="114x114" href="http://myemma.com/static/global/favicons/apple-iphone-2x.png" /> <link rel="apple-touch-icon-precomposed" sizes="144x144" href="http://myemma.com/static/global/favicons/apple-ipad-2x.png" /> - <script type="text/javascript" src="//use.typekit.net/zfm0nfo.js"></script> - <script type="text/javascript">try{Typekit.load();}catch(e){}</script> - - <script src="http://code.jquery.com/jquery-1.4.min.js"></script> - <script>window.jQuery || document.write('<script src="_static/jquery.js"><\/script>')</script> - <style type="text/css"> .resp-trigger, .resp-trigger:hover {font-size:10pt;text-decoration:none;} div.sample-response.hide-response pre.response {display: none;} @@ -62,7 +60,9 @@ </head> <body> <header role="banner"> - <h1>Emma API Documentation</h1> + <a href="index.html"> + <h1>Emma API Documentation</h1> + </a> </header> <div class="related"> <h3>Navigation</h3> @@ -242,7 +242,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 02, 2013 at 01:34 PM. + Last updated on Jan 03, 2013 at 11:19 AM. </div> </body> </html> \ No newline at end of file diff --git a/pagination.html b/pagination.html index 694a760..e2d345d 100644 --- a/pagination.html +++ b/pagination.html @@ -3,7 +3,6 @@ <!doctype html> - <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> @@ -23,7 +22,12 @@ HAS_SOURCE: true }; </script> - <script type="text/javascript" src="_static/jquery.js"></script> + + <script src="http://code.jquery.com/jquery-1.4.min.js"></script> + <script>window.jQuery || document.write('<script src="_static/jquery.js"><\/script>')</script> + + <script type="text/javascript" src="//use.typekit.net/zfm0nfo.js"></script> + <script type="text/javascript">try{Typekit.load();}catch(e){}</script> <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" /> @@ -36,12 +40,6 @@ <link rel="apple-touch-icon-precomposed" sizes="114x114" href="http://myemma.com/static/global/favicons/apple-iphone-2x.png" /> <link rel="apple-touch-icon-precomposed" sizes="144x144" href="http://myemma.com/static/global/favicons/apple-ipad-2x.png" /> - <script type="text/javascript" src="//use.typekit.net/zfm0nfo.js"></script> - <script type="text/javascript">try{Typekit.load();}catch(e){}</script> - - <script src="http://code.jquery.com/jquery-1.4.min.js"></script> - <script>window.jQuery || document.write('<script src="_static/jquery.js"><\/script>')</script> - <style type="text/css"> .resp-trigger, .resp-trigger:hover {font-size:10pt;text-decoration:none;} div.sample-response.hide-response pre.response {display: none;} @@ -62,7 +60,9 @@ </head> <body> <header role="banner"> - <h1>Emma API Documentation</h1> + <a href="index.html"> + <h1>Emma API Documentation</h1> + </a> </header> <div class="related"> <h3>Navigation</h3> @@ -154,7 +154,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 02, 2013 at 01:34 PM. + Last updated on Jan 03, 2013 at 11:19 AM. </div> </body> </html> \ No newline at end of file diff --git a/php_get_member_example.html b/php_get_member_example.html index 7601a8e..da207ef 100644 --- a/php_get_member_example.html +++ b/php_get_member_example.html @@ -3,7 +3,6 @@ <!doctype html> - <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> @@ -23,7 +22,12 @@ HAS_SOURCE: true }; </script> - <script type="text/javascript" src="_static/jquery.js"></script> + + <script src="http://code.jquery.com/jquery-1.4.min.js"></script> + <script>window.jQuery || document.write('<script src="_static/jquery.js"><\/script>')</script> + + <script type="text/javascript" src="//use.typekit.net/zfm0nfo.js"></script> + <script type="text/javascript">try{Typekit.load();}catch(e){}</script> <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" /> @@ -35,12 +39,6 @@ <link rel="apple-touch-icon-precomposed" sizes="114x114" href="http://myemma.com/static/global/favicons/apple-iphone-2x.png" /> <link rel="apple-touch-icon-precomposed" sizes="144x144" href="http://myemma.com/static/global/favicons/apple-ipad-2x.png" /> - <script type="text/javascript" src="//use.typekit.net/zfm0nfo.js"></script> - <script type="text/javascript">try{Typekit.load();}catch(e){}</script> - - <script src="http://code.jquery.com/jquery-1.4.min.js"></script> - <script>window.jQuery || document.write('<script src="_static/jquery.js"><\/script>')</script> - <style type="text/css"> .resp-trigger, .resp-trigger:hover {font-size:10pt;text-decoration:none;} div.sample-response.hide-response pre.response {display: none;} @@ -61,7 +59,9 @@ </head> <body> <header role="banner"> - <h1>Emma API Documentation</h1> + <a href="index.html"> + <h1>Emma API Documentation</h1> + </a> </header> <div class="related"> <h3>Navigation</h3> @@ -169,7 +169,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 02, 2013 at 01:34 PM. + Last updated on Jan 03, 2013 at 11:19 AM. </div> </body> </html> \ No newline at end of file diff --git a/php_signup_example.html b/php_signup_example.html index 28bbd5e..53a2b7e 100644 --- a/php_signup_example.html +++ b/php_signup_example.html @@ -3,7 +3,6 @@ <!doctype html> - <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> @@ -23,7 +22,12 @@ HAS_SOURCE: true }; </script> - <script type="text/javascript" src="_static/jquery.js"></script> + + <script src="http://code.jquery.com/jquery-1.4.min.js"></script> + <script>window.jQuery || document.write('<script src="_static/jquery.js"><\/script>')</script> + + <script type="text/javascript" src="//use.typekit.net/zfm0nfo.js"></script> + <script type="text/javascript">try{Typekit.load();}catch(e){}</script> <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" /> @@ -36,12 +40,6 @@ <link rel="apple-touch-icon-precomposed" sizes="114x114" href="http://myemma.com/static/global/favicons/apple-iphone-2x.png" /> <link rel="apple-touch-icon-precomposed" sizes="144x144" href="http://myemma.com/static/global/favicons/apple-ipad-2x.png" /> - <script type="text/javascript" src="//use.typekit.net/zfm0nfo.js"></script> - <script type="text/javascript">try{Typekit.load();}catch(e){}</script> - - <script src="http://code.jquery.com/jquery-1.4.min.js"></script> - <script>window.jQuery || document.write('<script src="_static/jquery.js"><\/script>')</script> - <style type="text/css"> .resp-trigger, .resp-trigger:hover {font-size:10pt;text-decoration:none;} div.sample-response.hide-response pre.response {display: none;} @@ -62,7 +60,9 @@ </head> <body> <header role="banner"> - <h1>Emma API Documentation</h1> + <a href="index.html"> + <h1>Emma API Documentation</h1> + </a> </header> <div class="related"> <h3>Navigation</h3> @@ -191,7 +191,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 02, 2013 at 01:34 PM. + Last updated on Jan 03, 2013 at 11:19 AM. </div> </body> </html> \ No newline at end of file diff --git a/placeholders.html b/placeholders.html index 44919d5..f276ae0 100644 --- a/placeholders.html +++ b/placeholders.html @@ -3,7 +3,6 @@ <!doctype html> - <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> @@ -23,7 +22,12 @@ HAS_SOURCE: true }; </script> - <script type="text/javascript" src="_static/jquery.js"></script> + + <script src="http://code.jquery.com/jquery-1.4.min.js"></script> + <script>window.jQuery || document.write('<script src="_static/jquery.js"><\/script>')</script> + + <script type="text/javascript" src="//use.typekit.net/zfm0nfo.js"></script> + <script type="text/javascript">try{Typekit.load();}catch(e){}</script> <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" /> @@ -36,12 +40,6 @@ <link rel="apple-touch-icon-precomposed" sizes="114x114" href="http://myemma.com/static/global/favicons/apple-iphone-2x.png" /> <link rel="apple-touch-icon-precomposed" sizes="144x144" href="http://myemma.com/static/global/favicons/apple-ipad-2x.png" /> - <script type="text/javascript" src="//use.typekit.net/zfm0nfo.js"></script> - <script type="text/javascript">try{Typekit.load();}catch(e){}</script> - - <script src="http://code.jquery.com/jquery-1.4.min.js"></script> - <script>window.jQuery || document.write('<script src="_static/jquery.js"><\/script>')</script> - <style type="text/css"> .resp-trigger, .resp-trigger:hover {font-size:10pt;text-decoration:none;} div.sample-response.hide-response pre.response {display: none;} @@ -62,7 +60,9 @@ </head> <body> <header role="banner"> - <h1>Emma API Documentation</h1> + <a href="index.html"> + <h1>Emma API Documentation</h1> + </a> </header> <div class="related"> <h3>Navigation</h3> @@ -169,7 +169,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 02, 2013 at 01:34 PM. + Last updated on Jan 03, 2013 at 11:19 AM. </div> </body> </html> \ No newline at end of file diff --git a/search.html b/search.html index cb5eda0..0ac8f0b 100644 --- a/search.html +++ b/search.html @@ -3,7 +3,6 @@ <!doctype html> - <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> @@ -23,7 +22,12 @@ HAS_SOURCE: true }; </script> - <script type="text/javascript" src="_static/jquery.js"></script> + + <script src="http://code.jquery.com/jquery-1.4.min.js"></script> + <script>window.jQuery || document.write('<script src="_static/jquery.js"><\/script>')</script> + + <script type="text/javascript" src="//use.typekit.net/zfm0nfo.js"></script> + <script type="text/javascript">try{Typekit.load();}catch(e){}</script> <script type="text/javascript" src="_static/underscore.js"></script> <script type="text/javascript" src="_static/doctools.js"></script> <script type="text/javascript" src="_static/searchtools.js"></script> @@ -39,12 +43,6 @@ <link rel="apple-touch-icon-precomposed" sizes="114x114" href="http://myemma.com/static/global/favicons/apple-iphone-2x.png" /> <link rel="apple-touch-icon-precomposed" sizes="144x144" href="http://myemma.com/static/global/favicons/apple-ipad-2x.png" /> - <script type="text/javascript" src="//use.typekit.net/zfm0nfo.js"></script> - <script type="text/javascript">try{Typekit.load();}catch(e){}</script> - - <script src="http://code.jquery.com/jquery-1.4.min.js"></script> - <script>window.jQuery || document.write('<script src="_static/jquery.js"><\/script>')</script> - <style type="text/css"> .resp-trigger, .resp-trigger:hover {font-size:10pt;text-decoration:none;} div.sample-response.hide-response pre.response {display: none;} @@ -66,7 +64,9 @@ </head> <body> <header role="banner"> - <h1>Emma API Documentation</h1> + <a href="index.html"> + <h1>Emma API Documentation</h1> + </a> </header> <div class="related"> <h3>Navigation</h3> @@ -139,7 +139,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 02, 2013 at 01:34 PM. + Last updated on Jan 03, 2013 at 11:19 AM. </div> </body> </html> \ No newline at end of file diff --git a/searchindex.js b/searchindex.js index d3cd831..53a73a1 100644 --- a/searchindex.js +++ b/searchindex.js @@ -1 +1 @@ -Search.setIndex({objects:{"":{"/#account_id/members/#member_id/groups/remove":[8,1,1,"put--#account_id-members-#member_id-groups-remove"],"/#account_id/mailings/#mailing_id/winner/#winner_id":[9,2,1,"post--#account_id-mailings-#mailing_id-winner-#winner_id"],"/#account_id/response/#mailing_id/in_progress":[5,0,1,"get--#account_id-response-#mailing_id-in_progress"],"/#account_id/members/groups/remove":[8,1,1,"put--#account_id-members-groups-remove"],"/#account_id/mailings/#mailing_id/searches":[9,0,1,"get--#account_id-mailings-#mailing_id-searches"],"/#account_id/fields":[10,2,1,"post--#account_id-fields"],"/#account_id/members/#group_id/copy":[8,1,1,"put--#account_id-members-#group_id-copy"],"/#account_id/members/status":[8,1,1,"put--#account_id-members-status"],"/#account_id/response/#mailing_id/shares/overview":[5,0,1,"get--#account_id-response-#mailing_id-shares-overview"],"/#account_id/webhooks/events":[4,0,1,"get--#account_id-webhooks-events"],"/#account_id/members/#member_id/optout":[8,0,1,"get--#account_id-members-#member_id-optout"],"/#account_id/webhooks":[4,3,1,"delete--#account_id-webhooks"],"/#account_id/fields/#field_id":[10,3,1,"delete--#account_id-fields-#field_id"],"/#account_id/response/#mailing_id":[5,0,1,"get--#account_id-response-#mailing_id"],"/#account_id/groups/#member_group_id/members/remove":[13,3,1,"delete--#account_id-groups-#member_group_id-members-remove"],"/#account_id/searches":[7,2,1,"post--#account_id-searches"],"/#account_id/members/imports":[8,0,1,"get--#account_id-members-imports"],"/#account_id/forwards/#mailing_id/#member_id":[9,2,1,"post--#account_id-forwards-#mailing_id-#member_id"],"/#account_id/response/#mailing_id/customer_share_clicks":[5,0,1,"get--#account_id-response-#mailing_id-customer_share_clicks"],"/#account_id/mailings/#mailing_id/messages/#member_id":[9,0,1,"get--#account_id-mailings-#mailing_id-messages-#member_id"],"/#account_id/members/#member_id/mailings":[8,0,1,"get--#account_id-members-#member_id-mailings"],"/#account_id/groups/#from_group_id/#to_group_id/members/copy":[13,1,1,"put--#account_id-groups-#from_group_id-#to_group_id-members-copy"],"/#account_id/triggers":[14,2,1,"post--#account_id-triggers"],"/#account_id/triggers/#trigger_id":[14,3,1,"delete--#account_id-triggers-#trigger_id"],"/#account_id/members/delete":[8,1,1,"put--#account_id-members-delete"],"/#account_id/mailings/#mailing_id/groups":[9,0,1,"get--#account_id-mailings-#mailing_id-groups"],"/#account_id/response/#mailing_id/forwards":[5,0,1,"get--#account_id-response-#mailing_id-forwards"],"/#account_id/members/#member_id":[8,3,1,"delete--#account_id-members-#member_id"],"/#account_id/triggers/#trigger_id/mailings":[14,0,1,"get--#account_id-triggers-#trigger_id-mailings"],"/#account_id/searches/#search_id/members":[7,0,1,"get--#account_id-searches-#search_id-members"],"/#account_id/members/status/:status_from/to/:status_to":[8,1,1,"put--#account_id-members-status--status_from-to--status_to"],"/#account_id/response/#mailing_id/sends":[5,0,1,"get--#account_id-response-#mailing_id-sends"],"/#account_id/members":[8,3,1,"delete--#account_id-members"],"/#account_id/members/email/:email":[8,0,1,"get--#account_id-members-email--email"],"/#account_id/response/#mailing_id/links":[5,0,1,"get--#account_id-response-#mailing_id-links"],"/#account_id/searches/#search_id":[7,3,1,"delete--#account_id-searches-#search_id"],"/#account_id/members/imports/#import_id/members":[8,0,1,"get--#account_id-members-imports-#import_id-members"],"/#account_id/fields/#field_id/clear":[10,2,1,"post--#account_id-fields-#field_id-clear"],"/#account_id/groups/#member_group_id/members":[13,3,1,"delete--#account_id-groups-#member_group_id-members"],"/#account_id/members/imports/#import_id":[8,0,1,"get--#account_id-members-imports-#import_id"],"/#account_id/response":[5,0,1,"get--#account_id-response"],"/#account_id/response/#mailing_id/opens":[5,0,1,"get--#account_id-response-#mailing_id-opens"],"/#account_id/members/imports/delete":[8,3,1,"delete--#account_id-members-imports-delete"],"/#account_id/mailings":[9,0,1,"get--#account_id-mailings"],"/#account_id/mailings/cancel/#mailing_id":[9,3,1,"delete--#account_id-mailings-cancel-#mailing_id"],"/#account_id/mailings/validate":[9,2,1,"post--#account_id-mailings-validate"],"/#account_id/response/#mailing_id/deliveries":[5,0,1,"get--#account_id-response-#mailing_id-deliveries"],"/#account_id/mailings/#mailing_id/members":[9,0,1,"get--#account_id-mailings-#mailing_id-members"],"/#account_id/response/#share_id/customer_share":[5,0,1,"get--#account_id-response-#share_id-customer_share"],"/#account_id/webhooks/#webhook_id":[4,3,1,"delete--#account_id-webhooks-#webhook_id"],"/#account_id/members/add":[8,2,1,"post--#account_id-members-add"],"/#account_id/response/#mailing_id/optouts":[5,0,1,"get--#account_id-response-#mailing_id-optouts"],"/#account_id/response/#mailing_id/shares":[5,0,1,"get--#account_id-response-#mailing_id-shares"],"/#account_id/groups/#member_group_id":[13,3,1,"delete--#account_id-groups-#member_group_id"],"/#account_id/mailings/#mailing_id":[9,3,1,"delete--#account_id-mailings-#mailing_id"],"/#account_id/members/#member_id/groups":[8,3,1,"delete--#account_id-members-#member_id-groups"],"/#account_id/groups":[13,2,1,"post--#account_id-groups"],"/#account_id/response/#mailing_id/clicks":[5,0,1,"get--#account_id-response-#mailing_id-clicks"],"/#account_id/mailings/#mailing_id/headsup":[9,0,1,"get--#account_id-mailings-#mailing_id-headsup"],"/#account_id/response/#mailing_id/signups":[5,0,1,"get--#account_id-response-#mailing_id-signups"],"/#account_id/response/#mailing_id/customer_shares":[5,0,1,"get--#account_id-response-#mailing_id-customer_shares"]}},terms:{all:[0,1,4,5,8,9,10,11,12,13,14],code:[0,1,6,3],change_typ:8,queri:[0,2,4],month:[0,5,9,14],four:[0,5],mile:0,least:0,field_creat:[12,4],link_target:[5,9],content:[1,11,6,9,3],privat:1,specif:[8,9,4],friendli:5,send:[1,9,4,3,5],customer_share_click:5,those:[5,12],group_upd:[12,4],sent:[5,8,12,9,14],curl_clos:[1,6,3],brown:[7,8],digit:5,everi:0,string:[0,4,5,7,8,9,10,12,13,14],fals:[1,3,4,5,6,7,8,9,10,13,14],webhook:[1,12,4],mailing_status:9,trigger_id:14,webview_share_click:5,affect:[7,8],member_add:[12,4],create_mail:9,new_boolean:10,foo:0,level:1,group_delet:[12,4],list:[0,1,2,4,5,7,8,9,10,11,12,13,14],upload:8,iter:2,"try":8,item:2,plaintext_onli:[9,14],div:[4,5,7,8,9,10,13,14],survey_id:14,pleas:[1,8,11,9],prevent:2,work:[1,4],ten:0,sync:10,sign:[0,5,4],past:1,second:[0,7,14],follow:[0,1,4,5,7,9,11,13],further:1,durat:9,click:[0,4,5,7,8,12,14],append:2,even:10,what:1,hide:[4,5,7,8,9,10,13,14],appear:1,from_group_id:13,section:1,current:[8,12,9],delet:[1,4,7,8,9,10,12,13,14],"new":[1,4,5,7,8,9,10,11,13,14],net:[1,2,6,3],delivery_t:8,method:[5,8,13,4,9],can:[0,1,2,4,5,7,8,9,11,12,13],widget:[7,10,8,9,13],hash:0,datematch:0,displai:10,variat:9,gener:[0,8,12,14],onli:[5,8],here:[0,1,3,5,6,8],bodi:9,let:[1,4,10],address:[0,1,8,6,9],along:8,sinc:8,valu:[0,5,7,8,10,11],field_upd:[12,4],search:[0,1,9,7],survei:14,sender:[9,14],larger:2,queue:5,prior:9,action:[0,8],chang:[8,4],name_first:[1,3],campaign:5,newbi:5,appli:[7,14],prefer:0,myemma:[4,5,7,8,9,13],filenam:8,customer_shar:5,"boolean":[0,1,5,7,8,9,10,13,14],curlopt_postfield:[1,3],total:5,jone:[7,5,8,13],select:10,newslett:[7,8,13],describ:7,would:[0,1],regist:4,two:[0,5],next:[0,1],create_webhook:4,few:[5,8],call:[1,2,3,4,6,8,12],criteria:7,member_add_to_group:[12,4],type:[1,3,4,5,6,7,10,9,14],until:2,more:[0,4,7,8,9,13],peopl:5,relat:[1,8,11,9],about:[10,8,12,4,9],notic:8,thide:[4,5,7,8,9,10,13,14],flag:[5,7,8,10,9,14],exce:2,indic:8,examin:1,particular:[1,4,5,8,10,12,9],in_progress:5,origin:9,must:[0,7,13,10],none:9,endpoint:[1,4,5,7,8,9,10,13,14],join:[0,7],hour:0,setup:1,member_sinc:[0,5,7,8,9,13],uniqu:5,histori:8,soup:7,remain:[0,9],archiv:[5,9],member_optout:[12,4],drill:5,control:[1,11,9],quickstart:1,give:5,forward_mailing_id:5,email_domain:[0,5],share:[0,5,8,12,4],accept:[0,5,7,8,9,10,11,13,14],total_click:5,tag:[11,9],want:[1,12,13,5],occur:[7,12],some_numeric_field:0,delai:14,alwai:0,webhook_event_id:4,cours:1,end:[2,8],first_nam:[1,3,5,7,8,9,10,11,13,14],started_or_finish:[9,14],anoth:[9,13],get:[1,4,5,6,7,8,9,10,13,14],message_open:[12,4],html_bodi:[9,14],share_statu:5,push_offset:14,del_statu:5,tild:5,num_members_upd:8,simpl:0,chri:9,pizza:[7,8],map:0,autent:1,referenc:7,xxxx:6,sundai:0,membership:13,taco:[7,5,8,9,13],mai:12,multipl:[10,8],data:[1,3,4,5,10,12],welcom:11,add_onli:8,"short":0,json_encod:[1,3],optout:[5,8,12,13],num_dupl:8,favorit:10,correspond:[0,1],greet:11,predic:[0,1],issu:[1,10],"12t11":[7,5,8,9,13],combin:7,allow:[0,7,8],some_zipcode_field:0,signed_up:5,order:[5,10],michel:[8,9],mailing_nam:5,checkbox:10,fields_upd:8,over:2,becaus:12,buyer:[7,8,9,13],comma:[9,13],is_dis:14,vari:8,paramet:[2,4,5,7,8,9,10,13,14],widget_typ:10,style:[0,4,5,7,8,9,10,13,14],group:[0,1,3,4,7,8,9,12,13,14],curl_setopt:[1,6,3],how:[7,1,2,4],import_start:8,better:[13,14],platform:1,pend:[1,9],mailing_list:9,onc:9,mail:[0,1,4,5,8,11,12,9,14],hidden:13,main:1,might:[1,4],link_nam:[5,9],them:[8,9],"return":[0,1,4,5,7,8,9,10,12,13,14],greater:[0,8],thei:[0,9],food:10,timestamp:[0,5,12,9,10],spell:4,dai:0,auth:1,instead:[12,2,8],now:5,down:5,term:[0,1],alex:9,name:[0,4,5,7,8,9,10,11,13,14],edit:[7,1,14,10],curl_getinfo:[1,6,3],authent:[1,6,4,3],successufulli:4,separ:[1,9,13],each:[1,2,5,9,12,11,13],found:[8,9,4,14],updat:[4,7,8,9,10,12,13,14],mean:0,status:[8,9],domain:0,shortcut_nam:10,weight:[4,5,7,8,9,10,13,14],resum:9,individu:[1,8],hard:[0,5],last_nam:[1,3,5,7,8,9,10,11,13,14],"05t15":5,birthdai:[10,14],expect:1,year:[0,5,9,14],our:[1,11,12,4,14],happen:[1,4,5],extract:11,short_display_nam:10,special:[0,7,8,13],out:[0,1,4,5,7,8,10,13],variabl:[1,6,3],message_shar:[12,4],network:[5,12],private_api_kei:[1,6,3],check_multipl:10,categori:1,rel:0,print:6,correct:10,statist:8,benjamin:8,qualifi:11,insid:1,advanc:0,contain:[0,5,7,13,10,9],differ:0,standard:[5,9],status_from:8,base:[5,8],recipient_search:9,dictionari:8,put:[4,7,8,9,10,13,14],"13t23":[7,5,8],visit:11,could:1,omit:5,success:[7,1,9,13,3],filter:[0,1,7],search_id:7,pagin:[1,2],member_id:[5,7,8,9,12,13],summari:[1,5],assign:9,first:[0,1,10,5],oper:[0,1,7,14],rang:5,notifi:12,directli:0,curlopt_ssl_verifyp:[1,6,3],curl_init:[1,6,3],number:[5,2,13,3,10],placehold:[1,11],date:[0,5,8,10,11,14],unlik:9,alreadi:[10,9,13],done:8,plaintext_pref:[7,8,9,13],oppos:8,open:[0,3,4,5,6,7,8,12],payload:4,fanci:5,size:2,given:[0,8,9,4],"long":10,script:1,associ:[1,8,9,4,5],system:[8,12,4,14],messag:[4,5,8,12,11,9,14],attach:11,friend:11,curlinfo_http_cod:[1,6,3],shell:0,option:[0,5,7,8,9,10,13,14],especi:8,signup:[0,1,3,4,5,8,12,14],copi:[8,13],member_upd:[12,4],specifi:[0,2,7,8,10,11,9,14],curl_exec:[1,6,3],curlopt_httphead:[1,6,3],member_signup:[12,4],create_search:7,part:[0,9],enclos:11,than:[0,1,2,3,12,13],with_plaintext:9,"02t10":[5,8],"02t11":[5,8],"02t13":[7,5,14],nathan:8,whenev:8,provid:[1,5,8,12,9,14],remov:[12,8,13,4],mailing_start:4,rate:2,structur:7,charact:9,greg:8,trackabl:11,were:5,minut:0,danc:1,error_count:[7,8,9,13],pre:[4,5,7,8,9,10,13,14],cleaner:1,sai:0,share_id:5,signup_form_id:[0,8,12,9,14],plaintext:[5,9,14],pass:[1,3],ani:[0,1,2,7,8,9],have:[0,5,8,12,9],tabl:5,seen:5,"null":[7,8,13,10,9,14],kevin:[9,14],signup_mail:0,caus:14,inform:[1,4,6,8,9,10,13],object_id:14,note:[1,8,9,4],also:[0,4,5,7,8,9,11,13],exampl:[0,1,3,5,6,7,11],take:[0,4],which:[0,1,4,8,10,12,9,14],some_number_field:0,singl:[0,1,3,4,5,8,10,12,13],excit:11,sure:1,delete_memb:13,normal:9,parent_mail:14,recipient_count:[5,9,14],previou:9,field_id:[10,12,14],last_run_at:7,most:14,pair:11,"class":[4,5,7,8,9,10,13,14],member_group_id:[8,9,13],mcconnel:[9,14],url:[1,3,4,5,6,12],mailing_finish:[12,4],clear:10,request:[1,2,3],doe:[0,5,7,8,10,13],member_status_upd:[12,4],declar:9,tech:4,determin:1,dataset:10,dow:0,recipi:9,"6db0cc7e6fdb2da589b65f29d90c96b6":9,show:[4,5,7,8,9,10,11,13,14],text:[10,11,12],radiu:0,syntax:[0,1,11,9],radio:10,font:[4,5,7,8,9,10,13,14],fine:9,find:[1,6,5],status_to:8,toast:[7,5,8,13],access:[1,5],giant:12,just:[0,9],pretti:8,column_ord:10,explain:[0,1],winner:9,activ:[1,5,7,8,13,9],figur:1,should:[1,2,3,7,8,11,9],templat:[11,14],share_count:5,count:[1,2,3,5],variou:[8,13],confirmed_opt_in:[7,8,9,13],familiar:1,express:0,account:[1,4,5,7,8,10,13,14],cannot:[8,9,4],progress:9,report:[10,8],requir:[1,7,8,10,11,9],object:[5,13],favorite_food:[5,7,8,13,10,9],bar:0,organ:1,include_archiv:[5,9],"public":1,"default":[5,11,13,4,9],ref_member_id:5,message_share_click:[12,4],through:[1,8,4],where:[0,1,8,11,7],view:1,set:[0,1,2,3,6,8,9,12,13],link_id:[0,5,12,9,14],see:[7,1,8],result:[0,1,2,5,8,9],respons:[0,1,2,4,5,7,8,9,10,13,14],fail:[5,9,4],themselv:2,member_field:[0,7],xxxxx:6,subject:[8,12,9,14],statu:[1,4,5,7,8,9,12,13],fancyonion:11,kei:[0,1,11,4],is_schedul:9,message_forward:[12,4],databas:8,user:[0,8,9,13],last_modified_at:[7,8,9,13],addresse:5,written:1,between:[0,7,2],"import":[1,8,12,4,10],subscript:[1,3],entiti:1,curlopt_url:[1,6,3],email:[0,1,3,5,6,7,8,9,13],wide:14,extend:1,numer:10,http404:[4,5,7,8,9,10,13,14],job:13,entir:[0,8],share_click:5,to_group_id:13,curlopt_returntransf:[1,6,3],addit:[0,1,8,9,11,13],member_remove_from_group:[12,4],send_start:[0,9,14],protect:1,accident:2,last:[0,5,10],delimit:5,pertain:5,message_click:[12,4],curlopt_post:[1,3],audienc:[1,8,9],mang:0,http500:14,seri:5,com:[4,5,6,7,8,9,11,13],zip_code_field:0,"03t15":[7,5,8,13],point:1,toni:[7,8],overview:[0,1,11,12,5],period:1,winner_id:9,colon:[7,11],optout_count:[7,8,9,13],suppli:9,cancel:9,tuesdai:0,duplic:5,quit:[5,8],user_id:4,recur:14,headsup:9,addition:[1,2],due:5,been:[1,8,10,5],mark:[8,9],whom:9,tshow:[4,5,7,8,9,10,13,14],trigger:[1,4,5,7,8,9,10,12,13,14],unsubscrib:0,treat:8,interest:[10,4],basic:[0,1,4,8,13,14],monthli:[7,8,13],blob:4,mailing_mailing_id:5,mailing_id:[0,5,8,12,9,14],fire:[8,4,14],xxx:[1,3],argument:[0,5],link_ord:[5,9],input:1,present:7,clicked_uniqu:5,"case":[1,8],look:[1,14,10],frozen:9,easier:12,email_error:[7,8,9,13],defin:[0,10,8,9],"while":0,outcom:5,abov:[0,1,8,7],error:[1,3,6,8,10,13],loop:8,opt:[0,4,5,7,8,13],readi:9,deliv:5,recipient_group:9,equal:0,itself:0,new_statu:12,webhook_id:4,recipient_memb:9,perform:8,make:[1,12,6,10],belong:[0,8,4],same:4,check:[8,6,9],member:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14],handl:1,html:9,split:9,document:[1,11,12],complet:[1,3,4,6,8,9],week:0,finish:[5,12,4],http:[1,2,3,4,5,6,11,9],href:[4,5,7,8,9,10,13,14],nest:0,someon:4,rais:[4,5,7,8,9,10,13,14],initi:[10,9],php:[1,6,3],bob:[7,5],recent:1,kept:11,center:0,min:5,well:5,inherit:9,person:9,mailing_typ:[9,14],without:0,command:1,thi:[0,1,4,5,7,8,9,10,12,13,14],undefin:0,http_code:[1,6,3],latest:11,construct:[0,7,9],identifi:8,paus:9,execut:[1,3],less:0,resp:[4,5,7,8,9,10,13,14],"_post":[1,3],against:0,aspect:13,recipient_email:9,source_filenam:8,yet:5,smith:[7,5,8,9,13],"12t09":[7,8],display_nam:10,easi:[10,12],"01t00":8,had:0,littl:1,blog:4,add:[12,1,8,13,3],other:[1,8,9,3,5],curlopt_userpwd:[1,6,3],import_finish:[8,12,4],schedul:9,els:[1,6,3],save:7,match:[0,7],build:1,sanit:1,applic:[1,6,3],account_id:[1,3,4,5,6,7,8,9,10,12,13,14],disposit:1,crud:[8,13,14],print_r:[6,3],mailing_statu:[9,14],know:[5,4],background:13,parent_mailing_id:[9,14],bit:1,insert:11,emma:[1,5,7,8,9,12,13],like:1,onion:11,deprec:4,arbitrari:8,manual:9,integ:[1,8,14,10,5],public_kei:4,api:[1,2,6,12,3],either:[0,5,7],bunch:0,output:9,group_id:[1,8,12,3],soft:[0,5],manag:[0,1,13,4],import_id:[8,12],www:[5,9],old:7,deal:[8,13],captur:1,arrai:[0,1,3,5,6,7,8,9,10,12,13,14],some:[1,11,5],field_delet:[12,4],certain:12,intern:10,sampl:[1,4,5,7,8,9,10,13,14],elaps:[2,9],home:11,deleted_at:[7,8,13,10,9,14],some_string_field:0,librari:11,bounce_count:[7,8,9,13],confirm:8,broad:12,per:5,send_finish:[9,14],larg:[0,2],condit:7,three:9,network_cod:12,localhost:9,refer:[5,7,8,13,10,9],with_html_bodi:9,who:[0,5],bold:[4,5,7,8,9,10,13,14],event_typ:14,inspect:1,usag:[1,8,12],num_members_ad:8,fulli:11,from:[1,4,8,9,12,13,14],post:[1,3,4,7,8,9,10,12,13,14],group_creat:[12,4],gladi:[7,5,8,13],actual:5,zip:0,groups_upd:8,column:10,page:2,includ:[1,5,7,8,9,10,13],webview:9,disabl:[9,14],block:[1,2],yyyi:5,member_data:[1,3],glob:0,bounc:[0,5],within:0,encod:[9,4],delivery_typ:[5,8],compos:0,webview_shar:5,field_typ:10,active_count:[7,8,9,13],public_webview_url:9,pivot:5,your:[1,4,5,7,8,9,10,13],websit:11,span:[4,5,7,8,9,10,13,14],wai:[1,12],area:1,overus:2,group_nam:[8,12,13,9],support:12,unique_click:5,json:[0,1,3,4,6,7],fast:8,custom:[5,8,11,10],avail:[0,11,4],start:[1,2,8,4],interfac:12,send_at:[9,14],exceed:2,"var":3,interv:[0,14],deliveri:5,head:[1,6,9,3],form:[1,3,4,6,8,10,14],enough:2,forc:1,forward:[0,4,5,8,12,9],"31st":0,group_typ:[8,9,13],push_offset_unit:14,link:[0,4,5,11,9,14],line:[1,5],realli:1,"true":[0,1,2,3,4,6,7,8,9,10,13,14],archived_t:[9,14],name_last:[1,3],info:4,pull:2,made:1,possibl:[5,8,12],whether:8,maximum:2,tell:12,http403:9,record:[0,7,8],below:[0,1,8,12],http400:[7,8,9],limit:[5,2,8,9],some_array_field:0,otherwis:[10,8],start_t:14,mta:5,connect:[6,3],notif:9,creat:[4,5,7,9,10,12,13,14],"int":5,retriev:[7,1,2,8,9],email_us:[0,5],repres:5,exist:[0,4,5,7,8,10,13],behavior:11,curl:[1,6],lentil:7,probabl:14,echo:[1,3],successfulli:[5,8,9],mailing_subject:12,grp:13,todo:11,when:[8,12,4,9],detail:[1,4,7,8,9,10,13],invalid:[7,8,9],event:[4,7,8,13,12,9,14],field:[0,1,3,4,5,7,8,9,10,11,12,13,14],valid:[5,8,9,13],futur:1,num_skip:8,test:[5,6,7,13,9,14],ignor:8,you:[0,1,2,4,5,7,8,9,10,11,12,13],member_delet:[12,4],member_status_id:[7,5,8,9,13],public_api_kei:[1,6,3],stat:[5,9],claus:[0,7],event_nam:[12,4],e2ma:[1,2,6,3],error_messag:8,param:[9,4],app_messag:[1,3],ella:8,bulk:[1,8],receiv:[0,2,5,8,12,9],heads_up_email:9,longer:9,descript:[4,14],portion:0,opted_out:5,time:[1,2,8,13,5],reply_to:[9,14],resource_url:12,hello:[11,9,14]},objtypes:{"0":"http:get","1":"http:put","2":"http:post","3":"http:delete"},titles:["Search Syntax","Emma API","Pagination","PHP Signup Example","Webhooks","Response","PHP Get Member By Email Example","Searches","Members","Mailings","Fields","Placeholder Syntax","Webhook Usage","Groups","Triggers"],objnames:{"0":["http","get","HTTP get"],"1":["http","put","HTTP put"],"2":["http","post","HTTP post"],"3":["http","delete","HTTP delete"]},filenames:["member_search","index","pagination","php_signup_example","api/external/webhooks","api/external/response","php_get_member_example","api/external/searches","api/external/members","api/external/mailings","api/external/fields","placeholders","webhooks","api/external/groups","api/external/triggers"]}) \ No newline at end of file +Search.setIndex({objects:{"":{"/#account_id/members/#member_id/groups/remove":[8,1,1,"put--#account_id-members-#member_id-groups-remove"],"/#account_id/mailings/#mailing_id/winner/#winner_id":[9,2,1,"post--#account_id-mailings-#mailing_id-winner-#winner_id"],"/#account_id/response/#mailing_id/in_progress":[5,0,1,"get--#account_id-response-#mailing_id-in_progress"],"/#account_id/members/groups/remove":[8,1,1,"put--#account_id-members-groups-remove"],"/#account_id/mailings/#mailing_id/searches":[9,0,1,"get--#account_id-mailings-#mailing_id-searches"],"/#account_id/fields":[10,2,1,"post--#account_id-fields"],"/#account_id/members/#group_id/copy":[8,1,1,"put--#account_id-members-#group_id-copy"],"/#account_id/members/status":[8,1,1,"put--#account_id-members-status"],"/#account_id/response/#mailing_id/shares/overview":[5,0,1,"get--#account_id-response-#mailing_id-shares-overview"],"/#account_id/webhooks/events":[4,0,1,"get--#account_id-webhooks-events"],"/#account_id/members/#member_id/optout":[8,0,1,"get--#account_id-members-#member_id-optout"],"/#account_id/webhooks":[4,3,1,"delete--#account_id-webhooks"],"/#account_id/fields/#field_id":[10,3,1,"delete--#account_id-fields-#field_id"],"/#account_id/response/#mailing_id":[5,0,1,"get--#account_id-response-#mailing_id"],"/#account_id/groups/#member_group_id/members/remove":[13,3,1,"delete--#account_id-groups-#member_group_id-members-remove"],"/#account_id/searches":[7,2,1,"post--#account_id-searches"],"/#account_id/members/imports":[8,0,1,"get--#account_id-members-imports"],"/#account_id/forwards/#mailing_id/#member_id":[9,2,1,"post--#account_id-forwards-#mailing_id-#member_id"],"/#account_id/response/#mailing_id/customer_share_clicks":[5,0,1,"get--#account_id-response-#mailing_id-customer_share_clicks"],"/#account_id/mailings/#mailing_id/messages/#member_id":[9,0,1,"get--#account_id-mailings-#mailing_id-messages-#member_id"],"/#account_id/members/#member_id/mailings":[8,0,1,"get--#account_id-members-#member_id-mailings"],"/#account_id/groups/#from_group_id/#to_group_id/members/copy":[13,1,1,"put--#account_id-groups-#from_group_id-#to_group_id-members-copy"],"/#account_id/triggers":[14,2,1,"post--#account_id-triggers"],"/#account_id/triggers/#trigger_id":[14,3,1,"delete--#account_id-triggers-#trigger_id"],"/#account_id/members/delete":[8,1,1,"put--#account_id-members-delete"],"/#account_id/mailings/#mailing_id/groups":[9,0,1,"get--#account_id-mailings-#mailing_id-groups"],"/#account_id/response/#mailing_id/forwards":[5,0,1,"get--#account_id-response-#mailing_id-forwards"],"/#account_id/members/#member_id":[8,3,1,"delete--#account_id-members-#member_id"],"/#account_id/triggers/#trigger_id/mailings":[14,0,1,"get--#account_id-triggers-#trigger_id-mailings"],"/#account_id/searches/#search_id/members":[7,0,1,"get--#account_id-searches-#search_id-members"],"/#account_id/members/status/:status_from/to/:status_to":[8,1,1,"put--#account_id-members-status--status_from-to--status_to"],"/#account_id/response/#mailing_id/sends":[5,0,1,"get--#account_id-response-#mailing_id-sends"],"/#account_id/members":[8,3,1,"delete--#account_id-members"],"/#account_id/members/email/:email":[8,0,1,"get--#account_id-members-email--email"],"/#account_id/response/#mailing_id/links":[5,0,1,"get--#account_id-response-#mailing_id-links"],"/#account_id/searches/#search_id":[7,3,1,"delete--#account_id-searches-#search_id"],"/#account_id/members/imports/#import_id/members":[8,0,1,"get--#account_id-members-imports-#import_id-members"],"/#account_id/fields/#field_id/clear":[10,2,1,"post--#account_id-fields-#field_id-clear"],"/#account_id/groups/#member_group_id/members":[13,3,1,"delete--#account_id-groups-#member_group_id-members"],"/#account_id/members/imports/#import_id":[8,0,1,"get--#account_id-members-imports-#import_id"],"/#account_id/response":[5,0,1,"get--#account_id-response"],"/#account_id/response/#mailing_id/opens":[5,0,1,"get--#account_id-response-#mailing_id-opens"],"/#account_id/members/imports/delete":[8,3,1,"delete--#account_id-members-imports-delete"],"/#account_id/mailings":[9,0,1,"get--#account_id-mailings"],"/#account_id/mailings/cancel/#mailing_id":[9,3,1,"delete--#account_id-mailings-cancel-#mailing_id"],"/#account_id/mailings/validate":[9,2,1,"post--#account_id-mailings-validate"],"/#account_id/response/#mailing_id/deliveries":[5,0,1,"get--#account_id-response-#mailing_id-deliveries"],"/#account_id/mailings/#mailing_id/members":[9,0,1,"get--#account_id-mailings-#mailing_id-members"],"/#account_id/response/#share_id/customer_share":[5,0,1,"get--#account_id-response-#share_id-customer_share"],"/#account_id/webhooks/#webhook_id":[4,3,1,"delete--#account_id-webhooks-#webhook_id"],"/#account_id/members/add":[8,2,1,"post--#account_id-members-add"],"/#account_id/response/#mailing_id/optouts":[5,0,1,"get--#account_id-response-#mailing_id-optouts"],"/#account_id/response/#mailing_id/shares":[5,0,1,"get--#account_id-response-#mailing_id-shares"],"/#account_id/groups/#member_group_id":[13,3,1,"delete--#account_id-groups-#member_group_id"],"/#account_id/mailings/#mailing_id":[9,3,1,"delete--#account_id-mailings-#mailing_id"],"/#account_id/members/#member_id/groups":[8,3,1,"delete--#account_id-members-#member_id-groups"],"/#account_id/groups":[13,2,1,"post--#account_id-groups"],"/#account_id/response/#mailing_id/clicks":[5,0,1,"get--#account_id-response-#mailing_id-clicks"],"/#account_id/mailings/#mailing_id/headsup":[9,0,1,"get--#account_id-mailings-#mailing_id-headsup"],"/#account_id/response/#mailing_id/signups":[5,0,1,"get--#account_id-response-#mailing_id-signups"],"/#account_id/response/#mailing_id/customer_shares":[5,0,1,"get--#account_id-response-#mailing_id-customer_shares"]}},terms:{all:[0,1,4,5,8,9,10,11,12,13,14],code:[0,1,6,3],change_typ:8,queri:[0,2,4],month:[0,5,9,14],four:[0,5],mile:0,least:0,field_creat:[12,4],link_target:[5,9],content:[1,11,6,9,3],privat:1,specif:[8,9,4],friendli:5,send:[1,9,4,3,5],customer_share_click:5,those:[5,12],group_upd:[12,4],sent:[5,8,12,9,14],curl_clos:[1,6,3],brown:[7,8],digit:5,everi:0,string:[0,4,5,7,8,9,10,12,13,14],fals:[1,3,4,5,6,7,8,9,10,13,14],webhook:[1,12,4],mailing_status:9,trigger_id:14,webview_share_click:5,affect:[7,8],member_add:[12,4],create_mail:9,new_boolean:10,foo:0,level:1,group_delet:[12,4],list:[0,1,2,4,5,7,8,9,10,11,12,13,14],upload:8,iter:2,"try":8,item:2,plaintext_onli:[9,14],div:[4,5,7,8,9,10,13,14],survey_id:14,pleas:[1,8,11,9],prevent:2,work:[1,4],ten:0,sync:10,sign:[0,5,4],past:1,second:[0,7,14],follow:[0,1,4,5,7,9,11,13],further:1,durat:9,click:[0,4,5,7,8,12,14],append:2,even:10,what:1,hide:[4,5,7,8,9,10,13,14],appear:1,from_group_id:13,section:1,current:[8,12,9],delet:[1,4,7,8,9,10,12,13,14],"new":[1,4,5,7,8,9,10,11,13,14],net:[1,2,6,3],delivery_t:8,method:[5,8,13,4,9],can:[0,1,2,4,5,7,8,9,11,12,13],widget:[7,10,8,9,13],hash:0,datematch:0,displai:10,variat:9,gener:[0,8,12,14],onli:[5,8],here:[0,1,3,5,6,8],bodi:9,let:[1,4,10],address:[0,1,8,6,9],along:8,sinc:8,valu:[0,5,7,8,10,11],field_upd:[12,4],search:[0,1,9,7],survei:14,sender:[9,14],larger:2,queue:5,prior:9,action:[0,8],chang:[8,4],name_first:[1,3],campaign:5,newbi:5,appli:[7,14],prefer:0,myemma:[4,5,7,8,9,13],filenam:8,customer_shar:5,"boolean":[0,1,5,7,8,9,10,13,14],curlopt_postfield:[1,3],total:5,jone:[7,5,8,13],select:10,newslett:[7,8,13],describ:7,would:[0,1],regist:4,two:[0,5],next:[0,1],create_webhook:4,few:[5,8],call:[1,2,3,4,6,8,12],criteria:7,member_add_to_group:[12,4],type:[1,3,4,5,6,7,10,9,14],until:2,more:[0,4,7,8,9,13],peopl:5,relat:[1,8,11,9],about:[10,8,12,4,9],notic:8,thide:[4,5,7,8,9,10,13,14],flag:[5,7,8,10,9,14],exce:2,indic:8,examin:1,particular:[1,4,5,8,10,12,9],in_progress:5,origin:9,must:[0,7,13,10],none:9,endpoint:[1,4,5,7,8,9,10,13,14],join:[0,7],hour:0,setup:1,member_sinc:[0,5,7,8,9,13],uniqu:5,histori:8,soup:7,remain:[0,9],archiv:[5,9],member_optout:[12,4],drill:5,control:[1,11,9],quickstart:1,give:5,forward_mailing_id:5,email_domain:[0,5],share:[0,5,8,12,4],accept:[0,5,7,8,9,10,11,13,14],total_click:5,tag:[11,9],want:[1,12,13,5],occur:[7,12],some_numeric_field:0,delai:14,alwai:0,webhook_event_id:4,cours:1,end:[2,8],first_nam:[1,3,5,7,8,9,10,11,13,14],started_or_finish:[9,14],anoth:[9,13],get:[1,4,5,6,7,8,9,10,13,14],message_open:[12,4],html_bodi:[9,14],share_statu:5,push_offset:14,del_statu:5,tild:5,num_members_upd:8,simpl:0,chri:9,pizza:[7,8],map:0,autent:1,referenc:7,xxxx:6,sundai:0,membership:13,taco:[7,5,8,9,13],mai:12,multipl:[10,8],data:[1,3,4,5,10,12],welcom:11,add_onli:8,"short":0,json_encod:[1,3],optout:[5,8,12,13],num_dupl:8,favorit:10,correspond:[0,1],greet:11,predic:[0,1],issu:[1,10],"12t11":[7,5,8,9,13],combin:7,allow:[0,7,8],some_zipcode_field:0,signed_up:5,order:[5,10],michel:[8,9],mailing_nam:5,checkbox:10,fields_upd:8,over:2,becaus:12,buyer:[7,8,9,13],comma:[9,13],is_dis:14,vari:8,paramet:[2,4,5,7,8,9,10,13,14],widget_typ:10,style:[0,4,5,7,8,9,10,13,14],group:[0,1,3,4,7,8,9,12,13,14],curl_setopt:[1,6,3],how:[7,1,2,4],import_start:8,better:[13,14],platform:1,pend:[1,9],mailing_list:9,onc:9,mail:[0,1,4,5,8,11,12,9,14],hidden:13,main:1,might:[1,4],link_nam:[5,9],them:[8,9],"return":[0,1,4,5,7,8,9,10,12,13,14],greater:[0,8],thei:[0,9],food:10,timestamp:[0,5,12,9,10],spell:4,dai:0,auth:1,instead:[12,2,8],now:5,down:5,term:[0,1],alex:9,name:[0,4,5,7,8,9,10,11,13,14],edit:[7,1,14,10],curl_getinfo:[1,6,3],authent:[1,6,4,3],successufulli:4,separ:[1,9,13],each:[1,2,5,9,12,11,13],found:[8,9,4,14],updat:[4,7,8,9,10,12,13,14],mean:0,status:[8,9],domain:0,shortcut_nam:10,weight:[4,5,7,8,9,10,13,14],resum:9,individu:[1,8],hard:[0,5],last_nam:[1,3,5,7,8,9,10,11,13,14],"05t15":5,birthdai:[10,14],expect:1,year:[0,5,9,14],our:[1,11,12,4,14],happen:[1,4,5],extract:11,short_display_nam:10,special:[0,7,8,13],out:[0,1,4,5,7,8,10,13],variabl:[1,6,3],message_shar:[12,4],network:[5,12],private_api_kei:[1,6,3],check_multipl:10,categori:1,rel:0,print:6,correct:10,statist:8,benjamin:8,qualifi:11,insid:1,advanc:0,contain:[0,5,7,13,10,9],differ:0,standard:[5,9],status_from:8,base:[5,8],recipient_search:9,dictionari:8,put:[4,7,8,9,10,13,14],"13t23":[7,5,8],visit:11,could:1,omit:5,success:[7,1,9,13,3],filter:[0,1,7],search_id:7,pagin:[1,2],member_id:[5,7,8,9,12,13],summari:[1,5],assign:9,first:[0,1,10,5],oper:[0,1,7,14],rang:5,notifi:12,directli:0,curlopt_ssl_verifyp:[1,6,3],curl_init:[1,6,3],number:[5,2,13,3,10],placehold:[1,11],date:[0,5,8,10,11,14],unlik:9,alreadi:[10,9,13],done:8,plaintext_pref:[7,8,9,13],oppos:8,open:[0,3,4,5,6,7,8,12],payload:4,fanci:5,size:2,given:[0,8,9,4],"long":10,script:1,associ:[1,8,9,4,5],system:[8,12,4,14],messag:[4,5,8,12,11,9,14],attach:11,friend:11,curlinfo_http_cod:[1,6,3],shell:0,option:[0,5,7,8,9,10,13,14],especi:8,signup:[0,1,3,4,5,8,12,14],copi:[8,13],member_upd:[12,4],specifi:[0,2,7,8,10,11,9,14],curl_exec:[1,6,3],curlopt_httphead:[1,6,3],member_signup:[12,4],create_search:7,part:[0,9],enclos:11,than:[0,1,2,3,12,13],with_plaintext:9,"02t10":[5,8],"02t11":[5,8],"02t13":5,nathan:8,whenev:8,provid:[1,5,8,12,9,14],remov:[12,8,13,4],mailing_start:4,rate:2,structur:7,charact:9,greg:8,trackabl:11,were:5,minut:0,danc:1,error_count:[7,8,9,13],pre:[4,5,7,8,9,10,13,14],cleaner:1,sai:0,share_id:5,signup_form_id:[0,8,12,9,14],plaintext:[5,9,14],pass:[1,3],ani:[0,1,2,7,8,9],have:[0,5,8,12,9],tabl:5,seen:5,"null":[7,8,13,10,9,14],kevin:[9,14],signup_mail:0,caus:14,inform:[1,4,6,8,9,10,13],object_id:14,note:[1,8,9,4],also:[0,4,5,7,8,9,11,13],exampl:[0,1,3,5,6,7,11],take:[0,4],which:[0,1,4,8,10,12,9,14],some_number_field:0,singl:[0,1,3,4,5,8,10,12,13],excit:11,sure:1,delete_memb:13,normal:9,parent_mail:14,recipient_count:[5,9,14],previou:9,field_id:[10,12,14],last_run_at:7,most:14,pair:11,"class":[4,5,7,8,9,10,13,14],member_group_id:[8,9,13],mcconnel:[9,14],url:[1,3,4,5,6,12],mailing_finish:[12,4],clear:10,request:[1,2,3],doe:[0,5,7,8,10,13],member_status_upd:[12,4],declar:9,tech:4,determin:1,dataset:10,dow:0,recipi:9,"6db0cc7e6fdb2da589b65f29d90c96b6":9,show:[4,5,7,8,9,10,11,13,14],text:[10,11,12],radiu:0,syntax:[0,1,11,9],radio:10,font:[4,5,7,8,9,10,13,14],fine:9,find:[1,6,5],status_to:8,toast:[7,5,8,13],access:[1,5],giant:12,just:[0,9],pretti:8,column_ord:10,explain:[0,1],winner:9,activ:[1,5,7,8,13,9],figur:1,should:[1,2,3,7,8,11,9],templat:[11,14],share_count:5,count:[1,2,3,5],variou:[8,13],confirmed_opt_in:[7,8,9,13],familiar:1,express:0,account:[1,4,5,7,8,10,13,14],cannot:[8,9,4],progress:9,report:[10,8],requir:[1,7,8,10,11,9],object:[5,13],favorite_food:[5,7,8,13,10,9],bar:0,organ:1,include_archiv:[5,9],"public":1,"default":[5,11,13,4,9],ref_member_id:5,message_share_click:[12,4],through:[1,8,4],where:[0,1,8,11,7],view:1,set:[0,1,2,3,6,8,9,12,13],link_id:[0,5,12,9,14],see:[7,1,8],result:[0,1,2,5,8,9],respons:[0,1,2,4,5,7,8,9,10,13,14],fail:[5,9,4],themselv:2,member_field:[0,7],xxxxx:6,subject:[8,12,9,14],statu:[1,4,5,7,8,9,12,13],fancyonion:11,kei:[0,1,11,4],is_schedul:9,message_forward:[12,4],databas:8,user:[0,8,9,13],last_modified_at:[7,8,9,13],addresse:5,written:1,between:[0,7,2],"import":[1,8,12,4,10],subscript:[1,3],entiti:1,curlopt_url:[1,6,3],email:[0,1,3,5,6,7,8,9,13],wide:14,extend:1,numer:10,http404:[4,5,7,8,9,10,13,14],job:13,entir:[0,8],share_click:5,to_group_id:13,curlopt_returntransf:[1,6,3],addit:[0,1,8,9,11,13],member_remove_from_group:[12,4],send_start:[0,9,14],protect:1,accident:2,last:[0,5,10],delimit:5,pertain:5,message_click:[12,4],curlopt_post:[1,3],audienc:[1,8,9],mang:0,http500:14,seri:5,com:[4,5,6,7,8,9,11,13],zip_code_field:0,"03t15":[7,5,8,13],"03t11":[7,14],point:1,toni:[7,8],overview:[0,1,11,12,5],period:1,winner_id:9,colon:[7,11],optout_count:[7,8,9,13],suppli:9,cancel:9,tuesdai:0,duplic:5,quit:[5,8],user_id:4,recur:14,headsup:9,addition:[1,2],due:5,been:[1,8,10,5],mark:[8,9],whom:9,tshow:[4,5,7,8,9,10,13,14],trigger:[1,4,5,7,8,9,10,12,13,14],unsubscrib:0,treat:8,interest:[10,4],basic:[0,1,4,8,13,14],monthli:[7,8,13],blob:4,mailing_mailing_id:5,mailing_id:[0,5,8,12,9,14],fire:[8,4,14],xxx:[1,3],argument:[0,5],link_ord:[5,9],input:1,present:7,clicked_uniqu:5,"case":[1,8],look:[1,14,10],frozen:9,easier:12,email_error:[7,8,9,13],defin:[0,10,8,9],"while":0,outcom:5,abov:[0,1,8,7],error:[1,3,6,8,10,13],loop:8,opt:[0,4,5,7,8,13],readi:9,deliv:5,recipient_group:9,equal:0,itself:0,new_statu:12,webhook_id:4,recipient_memb:9,perform:8,make:[1,12,6,10],belong:[0,8,4],same:4,check:[8,6,9],member:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14],handl:1,html:9,split:9,document:[1,11,12],complet:[1,3,4,6,8,9],week:0,finish:[5,12,4],http:[1,2,3,4,5,6,11,9],href:[4,5,7,8,9,10,13,14],nest:0,someon:4,rais:[4,5,7,8,9,10,13,14],initi:[10,9],php:[1,6,3],bob:[7,5],recent:1,kept:11,center:0,min:5,well:5,inherit:9,person:9,mailing_typ:[9,14],without:0,command:1,thi:[0,1,4,5,7,8,9,10,12,13,14],undefin:0,http_code:[1,6,3],latest:11,construct:[0,7,9],identifi:8,paus:9,execut:[1,3],less:0,resp:[4,5,7,8,9,10,13,14],"_post":[1,3],against:0,aspect:13,recipient_email:9,source_filenam:8,yet:5,smith:[7,5,8,9,13],"12t09":[7,8],display_nam:10,easi:[10,12],"01t00":8,had:0,littl:1,blog:4,add:[12,1,8,13,3],other:[1,8,9,3,5],curlopt_userpwd:[1,6,3],import_finish:[8,12,4],schedul:9,els:[1,6,3],save:7,match:[0,7],build:1,sanit:1,applic:[1,6,3],account_id:[1,3,4,5,6,7,8,9,10,12,13,14],disposit:1,crud:[8,13,14],print_r:[6,3],mailing_statu:[9,14],know:[5,4],background:13,parent_mailing_id:[9,14],bit:1,insert:11,emma:[1,5,7,8,9,12,13],like:1,onion:11,deprec:4,arbitrari:8,manual:9,integ:[1,8,14,10,5],public_kei:4,api:[1,2,6,12,3],either:[0,5,7],bunch:0,output:9,group_id:[1,8,12,3],soft:[0,5],manag:[0,1,13,4],import_id:[8,12],www:[5,9],old:7,deal:[8,13],captur:1,arrai:[0,1,3,5,6,7,8,9,10,12,13,14],some:[1,11,5],field_delet:[12,4],certain:12,intern:10,sampl:[1,4,5,7,8,9,10,13,14],elaps:[2,9],home:11,deleted_at:[7,8,13,10,9,14],some_string_field:0,librari:11,bounce_count:[7,8,9,13],confirm:8,broad:12,per:5,send_finish:[9,14],larg:[0,2],condit:7,three:9,network_cod:12,localhost:9,refer:[5,7,8,13,10,9],with_html_bodi:9,who:[0,5],bold:[4,5,7,8,9,10,13,14],event_typ:14,inspect:1,usag:[1,8,12],num_members_ad:8,fulli:11,from:[1,4,8,9,12,13,14],post:[1,3,4,7,8,9,10,12,13,14],group_creat:[12,4],gladi:[7,5,8,13],actual:5,zip:0,groups_upd:8,column:10,page:2,includ:[1,5,7,8,9,10,13],webview:9,disabl:[9,14],block:[1,2],yyyi:5,member_data:[1,3],glob:0,bounc:[0,5],within:0,encod:[9,4],delivery_typ:[5,8],compos:0,webview_shar:5,field_typ:10,active_count:[7,8,9,13],public_webview_url:9,pivot:5,your:[1,4,5,7,8,9,10,13],websit:11,span:[4,5,7,8,9,10,13,14],wai:[1,12],area:1,overus:2,group_nam:[8,12,13,9],support:12,unique_click:5,json:[0,1,3,4,6,7],fast:8,custom:[5,8,11,10],avail:[0,11,4],start:[1,2,8,4],interfac:12,send_at:[9,14],exceed:2,"var":3,interv:[0,14],deliveri:5,head:[1,6,9,3],form:[1,3,4,6,8,10,14],enough:2,forc:1,forward:[0,4,5,8,12,9],"31st":0,group_typ:[8,9,13],push_offset_unit:14,link:[0,4,5,11,9,14],line:[1,5],realli:1,"true":[0,1,2,3,4,6,7,8,9,10,13,14],archived_t:[9,14],name_last:[1,3],info:4,pull:2,made:1,possibl:[5,8,12],whether:8,maximum:2,tell:12,http403:9,record:[0,7,8],below:[0,1,8,12],http400:[7,8,9],limit:[5,2,8,9],some_array_field:0,otherwis:[10,8],start_t:14,mta:5,connect:[6,3],notif:9,creat:[4,5,7,9,10,12,13,14],"int":5,retriev:[7,1,2,8,9],email_us:[0,5],repres:5,exist:[0,4,5,7,8,10,13],behavior:11,curl:[1,6],lentil:7,probabl:14,echo:[1,3],successfulli:[5,8,9],mailing_subject:12,grp:13,todo:11,when:[8,12,4,9],detail:[1,4,7,8,9,10,13],invalid:[7,8,9],event:[4,7,8,13,12,9,14],field:[0,1,3,4,5,7,8,9,10,11,12,13,14],valid:[5,8,9,13],futur:1,num_skip:8,test:[5,6,7,13,9,14],ignor:8,you:[0,1,2,4,5,7,8,9,10,11,12,13],member_delet:[12,4],member_status_id:[7,5,8,9,13],public_api_kei:[1,6,3],stat:[5,9],claus:[0,7],event_nam:[12,4],e2ma:[1,2,6,3],error_messag:8,param:[9,4],app_messag:[1,3],ella:8,bulk:[1,8],receiv:[0,2,5,8,12,9],heads_up_email:9,longer:9,descript:[4,14],portion:0,opted_out:5,time:[1,2,8,13,5],reply_to:[9,14],resource_url:12,hello:[11,9,14]},objtypes:{"0":"http:get","1":"http:put","2":"http:post","3":"http:delete"},titles:["Search Syntax","Emma API","Pagination","PHP Signup Example","Webhooks","Response","PHP Get Member By Email Example","Searches","Members","Mailings","Fields","Placeholder Syntax","Webhook Usage","Groups","Triggers"],objnames:{"0":["http","get","HTTP get"],"1":["http","put","HTTP put"],"2":["http","post","HTTP post"],"3":["http","delete","HTTP delete"]},filenames:["member_search","index","pagination","php_signup_example","api/external/webhooks","api/external/response","php_get_member_example","api/external/searches","api/external/members","api/external/mailings","api/external/fields","placeholders","webhooks","api/external/groups","api/external/triggers"]}) \ No newline at end of file diff --git a/webhooks.html b/webhooks.html index 789e185..1e6b377 100644 --- a/webhooks.html +++ b/webhooks.html @@ -3,7 +3,6 @@ <!doctype html> - <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> @@ -23,7 +22,12 @@ HAS_SOURCE: true }; </script> - <script type="text/javascript" src="_static/jquery.js"></script> + + <script src="http://code.jquery.com/jquery-1.4.min.js"></script> + <script>window.jQuery || document.write('<script src="_static/jquery.js"><\/script>')</script> + + <script type="text/javascript" src="//use.typekit.net/zfm0nfo.js"></script> + <script type="text/javascript">try{Typekit.load();}catch(e){}</script> <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" /> @@ -36,12 +40,6 @@ <link rel="apple-touch-icon-precomposed" sizes="114x114" href="http://myemma.com/static/global/favicons/apple-iphone-2x.png" /> <link rel="apple-touch-icon-precomposed" sizes="144x144" href="http://myemma.com/static/global/favicons/apple-ipad-2x.png" /> - <script type="text/javascript" src="//use.typekit.net/zfm0nfo.js"></script> - <script type="text/javascript">try{Typekit.load();}catch(e){}</script> - - <script src="http://code.jquery.com/jquery-1.4.min.js"></script> - <script>window.jQuery || document.write('<script src="_static/jquery.js"><\/script>')</script> - <style type="text/css"> .resp-trigger, .resp-trigger:hover {font-size:10pt;text-decoration:none;} div.sample-response.hide-response pre.response {display: none;} @@ -62,7 +60,9 @@ </head> <body> <header role="banner"> - <h1>Emma API Documentation</h1> + <a href="index.html"> + <h1>Emma API Documentation</h1> + </a> </header> <div class="related"> <h3>Navigation</h3> @@ -493,7 +493,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 02, 2013 at 01:34 PM. + Last updated on Jan 03, 2013 at 11:19 AM. </div> </body> </html> \ No newline at end of file From cb80fbee4a8e5eaa1ef364c73d4015ef3cade65f Mon Sep 17 00:00:00 2001 From: Lance Roggendorff <lance.roggendorff@myemma.com> Date: Thu, 3 Jan 2013 14:13:38 -0600 Subject: [PATCH 016/219] Update audience documentation. --- api/external/fields.html | 16 +++++++++++++++- api/external/groups.html | 16 +++++++++++++++- api/external/mailings.html | 16 +++++++++++++++- api/external/members.html | 16 +++++++++++++++- api/external/response.html | 16 +++++++++++++++- api/external/searches.html | 18 ++++++++++++++++-- api/external/triggers.html | 22 ++++++++++++++++++---- api/external/webhooks.html | 16 +++++++++++++++- genindex.html | 16 +++++++++++++++- http-routingtable.html | 16 +++++++++++++++- index.html | 16 +++++++++++++++- member_search.html | 16 +++++++++++++++- pagination.html | 16 +++++++++++++++- php_get_member_example.html | 16 +++++++++++++++- php_signup_example.html | 16 +++++++++++++++- placeholders.html | 16 +++++++++++++++- search.html | 16 +++++++++++++++- searchindex.js | 2 +- webhooks.html | 16 +++++++++++++++- 19 files changed, 275 insertions(+), 23 deletions(-) diff --git a/api/external/fields.html b/api/external/fields.html index 0e45f23..9b014cf 100644 --- a/api/external/fields.html +++ b/api/external/fields.html @@ -56,6 +56,20 @@ }); }); </script> + + <script type="text/javascript"> + + var _gaq = _gaq || []; + _gaq.push(['_setAccount', 'UA-512410-18']); + _gaq.push(['_trackPageview']); + + (function() { + var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; + ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; + var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); + })(); + + </script> </head> <body> @@ -401,7 +415,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 03, 2013 at 11:19 AM. + Last updated on Jan 03, 2013 at 02:13 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/groups.html b/api/external/groups.html index cb96c30..55b2585 100644 --- a/api/external/groups.html +++ b/api/external/groups.html @@ -56,6 +56,20 @@ }); }); </script> + + <script type="text/javascript"> + + var _gaq = _gaq || []; + _gaq.push(['_setAccount', 'UA-512410-18']); + _gaq.push(['_trackPageview']); + + (function() { + var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; + ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; + var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); + })(); + + </script> </head> <body> @@ -688,7 +702,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 03, 2013 at 11:19 AM. + Last updated on Jan 03, 2013 at 02:13 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/mailings.html b/api/external/mailings.html index aca9f52..c731bd5 100644 --- a/api/external/mailings.html +++ b/api/external/mailings.html @@ -56,6 +56,20 @@ }); }); </script> + + <script type="text/javascript"> + + var _gaq = _gaq || []; + _gaq.push(['_setAccount', 'UA-512410-18']); + _gaq.push(['_trackPageview']); + + (function() { + var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; + ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; + var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); + })(); + + </script> </head> <body> @@ -795,7 +809,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 03, 2013 at 11:19 AM. + Last updated on Jan 03, 2013 at 02:13 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/members.html b/api/external/members.html index dce9042..40c8e6d 100644 --- a/api/external/members.html +++ b/api/external/members.html @@ -56,6 +56,20 @@ }); }); </script> + + <script type="text/javascript"> + + var _gaq = _gaq || []; + _gaq.push(['_setAccount', 'UA-512410-18']); + _gaq.push(['_trackPageview']); + + (function() { + var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; + ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; + var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); + })(); + + </script> </head> <body> @@ -1170,7 +1184,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 03, 2013 at 11:19 AM. + Last updated on Jan 03, 2013 at 02:13 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/response.html b/api/external/response.html index dce792a..36fe76e 100644 --- a/api/external/response.html +++ b/api/external/response.html @@ -56,6 +56,20 @@ }); }); </script> + + <script type="text/javascript"> + + var _gaq = _gaq || []; + _gaq.push(['_setAccount', 'UA-512410-18']); + _gaq.push(['_trackPageview']); + + (function() { + var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; + ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; + var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); + })(); + + </script> </head> <body> @@ -1005,7 +1019,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 03, 2013 at 11:19 AM. + Last updated on Jan 03, 2013 at 02:13 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/searches.html b/api/external/searches.html index f699845..428a3e3 100644 --- a/api/external/searches.html +++ b/api/external/searches.html @@ -56,6 +56,20 @@ }); }); </script> + + <script type="text/javascript"> + + var _gaq = _gaq || []; + _gaq.push(['_setAccount', 'UA-512410-18']); + _gaq.push(['_trackPageview']); + + (function() { + var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; + ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; + var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); + })(); + + </script> </head> <body> @@ -185,7 +199,7 @@ <h1>Searches<a class="headerlink" href="#searches" title="Permalink to this head "name": "Test Search", "criteria": "[\"or\", [\"group\", \"eq\", \"Monthly Newsletter\"],[\"group\", \"eq\", \"Widget Buyers\"]]", "deleted_at": null, - "last_run_at": "@D:2013-01-03T11:19:12", + "last_run_at": "@D:2013-01-03T14:13:33", "active_count": 2, "account_id": 100 } @@ -497,7 +511,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 03, 2013 at 11:19 AM. + Last updated on Jan 03, 2013 at 02:13 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/triggers.html b/api/external/triggers.html index 0ed6dbd..4bfafe0 100644 --- a/api/external/triggers.html +++ b/api/external/triggers.html @@ -56,6 +56,20 @@ }); }); </script> + + <script type="text/javascript"> + + var _gaq = _gaq || []; + _gaq.push(['_setAccount', 'UA-512410-18']); + _gaq.push(['_trackPageview']); + + (function() { + var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; + ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; + var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); + })(); + + </script> </head> <body> @@ -134,7 +148,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": 203, "push_offset_units": "0:-14:0:0", - "start_ts": "@D:2013-01-03T11:19:10", + "start_ts": "@D:2013-01-03T14:13:30", "trigger_id": 100, "signups": null, "push_offset": "@I:-1209600.0", @@ -175,7 +189,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": null, "push_offset_units": "0:3:0:0", - "start_ts": "@D:2013-01-03T11:19:10", + "start_ts": "@D:2013-01-03T14:13:30", "trigger_id": 101, "signups": [ 1, @@ -312,7 +326,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": 203, "push_offset_units": "0:-14:0:0", - "start_ts": "@D:2013-01-03T11:19:10", + "start_ts": "@D:2013-01-03T14:13:30", "trigger_id": 100, "signups": null, "push_offset": "@I:-1209600.0", @@ -485,7 +499,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 03, 2013 at 11:19 AM. + Last updated on Jan 03, 2013 at 02:13 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/webhooks.html b/api/external/webhooks.html index dd44f91..61d6bf8 100644 --- a/api/external/webhooks.html +++ b/api/external/webhooks.html @@ -56,6 +56,20 @@ }); }); </script> + + <script type="text/javascript"> + + var _gaq = _gaq || []; + _gaq.push(['_setAccount', 'UA-512410-18']); + _gaq.push(['_trackPageview']); + + (function() { + var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; + ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; + var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); + })(); + + </script> </head> <body> @@ -473,7 +487,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 03, 2013 at 11:19 AM. + Last updated on Jan 03, 2013 at 02:13 PM. </div> </body> </html> \ No newline at end of file diff --git a/genindex.html b/genindex.html index 34e5896..997e90d 100644 --- a/genindex.html +++ b/genindex.html @@ -56,6 +56,20 @@ }); }); </script> + + <script type="text/javascript"> + + var _gaq = _gaq || []; + _gaq.push(['_setAccount', 'UA-512410-18']); + _gaq.push(['_trackPageview']); + + (function() { + var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; + ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; + var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); + })(); + + </script> </head> <body> @@ -132,7 +146,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 03, 2013 at 11:19 AM. + Last updated on Jan 03, 2013 at 02:13 PM. </div> </body> </html> \ No newline at end of file diff --git a/http-routingtable.html b/http-routingtable.html index 69b3369..8d03400 100644 --- a/http-routingtable.html +++ b/http-routingtable.html @@ -55,6 +55,20 @@ }); }); </script> + + <script type="text/javascript"> + + var _gaq = _gaq || []; + _gaq.push(['_setAccount', 'UA-512410-18']); + _gaq.push(['_trackPageview']); + + (function() { + var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; + ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; + var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); + })(); + + </script> <script type="text/javascript"> @@ -588,7 +602,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 03, 2013 at 11:19 AM. + Last updated on Jan 03, 2013 at 02:13 PM. </div> </body> </html> \ No newline at end of file diff --git a/index.html b/index.html index e92a602..d2cddca 100644 --- a/index.html +++ b/index.html @@ -55,6 +55,20 @@ }); }); </script> + + <script type="text/javascript"> + + var _gaq = _gaq || []; + _gaq.push(['_setAccount', 'UA-512410-18']); + _gaq.push(['_trackPageview']); + + (function() { + var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; + ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; + var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); + })(); + + </script> </head> <body> @@ -311,7 +325,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 03, 2013 at 11:19 AM. + Last updated on Jan 03, 2013 at 02:13 PM. </div> </body> </html> \ No newline at end of file diff --git a/member_search.html b/member_search.html index 7921324..2178f01 100644 --- a/member_search.html +++ b/member_search.html @@ -56,6 +56,20 @@ }); }); </script> + + <script type="text/javascript"> + + var _gaq = _gaq || []; + _gaq.push(['_setAccount', 'UA-512410-18']); + _gaq.push(['_trackPageview']); + + (function() { + var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; + ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; + var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); + })(); + + </script> </head> <body> @@ -242,7 +256,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 03, 2013 at 11:19 AM. + Last updated on Jan 03, 2013 at 02:13 PM. </div> </body> </html> \ No newline at end of file diff --git a/pagination.html b/pagination.html index e2d345d..74cb209 100644 --- a/pagination.html +++ b/pagination.html @@ -56,6 +56,20 @@ }); }); </script> + + <script type="text/javascript"> + + var _gaq = _gaq || []; + _gaq.push(['_setAccount', 'UA-512410-18']); + _gaq.push(['_trackPageview']); + + (function() { + var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; + ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; + var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); + })(); + + </script> </head> <body> @@ -154,7 +168,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 03, 2013 at 11:19 AM. + Last updated on Jan 03, 2013 at 02:13 PM. </div> </body> </html> \ No newline at end of file diff --git a/php_get_member_example.html b/php_get_member_example.html index da207ef..1b02c15 100644 --- a/php_get_member_example.html +++ b/php_get_member_example.html @@ -55,6 +55,20 @@ }); }); </script> + + <script type="text/javascript"> + + var _gaq = _gaq || []; + _gaq.push(['_setAccount', 'UA-512410-18']); + _gaq.push(['_trackPageview']); + + (function() { + var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; + ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; + var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); + })(); + + </script> </head> <body> @@ -169,7 +183,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 03, 2013 at 11:19 AM. + Last updated on Jan 03, 2013 at 02:13 PM. </div> </body> </html> \ No newline at end of file diff --git a/php_signup_example.html b/php_signup_example.html index 53a2b7e..48b4ba0 100644 --- a/php_signup_example.html +++ b/php_signup_example.html @@ -56,6 +56,20 @@ }); }); </script> + + <script type="text/javascript"> + + var _gaq = _gaq || []; + _gaq.push(['_setAccount', 'UA-512410-18']); + _gaq.push(['_trackPageview']); + + (function() { + var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; + ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; + var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); + })(); + + </script> </head> <body> @@ -191,7 +205,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 03, 2013 at 11:19 AM. + Last updated on Jan 03, 2013 at 02:13 PM. </div> </body> </html> \ No newline at end of file diff --git a/placeholders.html b/placeholders.html index f276ae0..a1a1052 100644 --- a/placeholders.html +++ b/placeholders.html @@ -56,6 +56,20 @@ }); }); </script> + + <script type="text/javascript"> + + var _gaq = _gaq || []; + _gaq.push(['_setAccount', 'UA-512410-18']); + _gaq.push(['_trackPageview']); + + (function() { + var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; + ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; + var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); + })(); + + </script> </head> <body> @@ -169,7 +183,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 03, 2013 at 11:19 AM. + Last updated on Jan 03, 2013 at 02:13 PM. </div> </body> </html> \ No newline at end of file diff --git a/search.html b/search.html index 0ac8f0b..1ecd942 100644 --- a/search.html +++ b/search.html @@ -59,6 +59,20 @@ }); }); </script> + + <script type="text/javascript"> + + var _gaq = _gaq || []; + _gaq.push(['_setAccount', 'UA-512410-18']); + _gaq.push(['_trackPageview']); + + (function() { + var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; + ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; + var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); + })(); + + </script> </head> @@ -139,7 +153,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 03, 2013 at 11:19 AM. + Last updated on Jan 03, 2013 at 02:13 PM. </div> </body> </html> \ No newline at end of file diff --git a/searchindex.js b/searchindex.js index 53a73a1..df3eb97 100644 --- a/searchindex.js +++ b/searchindex.js @@ -1 +1 @@ -Search.setIndex({objects:{"":{"/#account_id/members/#member_id/groups/remove":[8,1,1,"put--#account_id-members-#member_id-groups-remove"],"/#account_id/mailings/#mailing_id/winner/#winner_id":[9,2,1,"post--#account_id-mailings-#mailing_id-winner-#winner_id"],"/#account_id/response/#mailing_id/in_progress":[5,0,1,"get--#account_id-response-#mailing_id-in_progress"],"/#account_id/members/groups/remove":[8,1,1,"put--#account_id-members-groups-remove"],"/#account_id/mailings/#mailing_id/searches":[9,0,1,"get--#account_id-mailings-#mailing_id-searches"],"/#account_id/fields":[10,2,1,"post--#account_id-fields"],"/#account_id/members/#group_id/copy":[8,1,1,"put--#account_id-members-#group_id-copy"],"/#account_id/members/status":[8,1,1,"put--#account_id-members-status"],"/#account_id/response/#mailing_id/shares/overview":[5,0,1,"get--#account_id-response-#mailing_id-shares-overview"],"/#account_id/webhooks/events":[4,0,1,"get--#account_id-webhooks-events"],"/#account_id/members/#member_id/optout":[8,0,1,"get--#account_id-members-#member_id-optout"],"/#account_id/webhooks":[4,3,1,"delete--#account_id-webhooks"],"/#account_id/fields/#field_id":[10,3,1,"delete--#account_id-fields-#field_id"],"/#account_id/response/#mailing_id":[5,0,1,"get--#account_id-response-#mailing_id"],"/#account_id/groups/#member_group_id/members/remove":[13,3,1,"delete--#account_id-groups-#member_group_id-members-remove"],"/#account_id/searches":[7,2,1,"post--#account_id-searches"],"/#account_id/members/imports":[8,0,1,"get--#account_id-members-imports"],"/#account_id/forwards/#mailing_id/#member_id":[9,2,1,"post--#account_id-forwards-#mailing_id-#member_id"],"/#account_id/response/#mailing_id/customer_share_clicks":[5,0,1,"get--#account_id-response-#mailing_id-customer_share_clicks"],"/#account_id/mailings/#mailing_id/messages/#member_id":[9,0,1,"get--#account_id-mailings-#mailing_id-messages-#member_id"],"/#account_id/members/#member_id/mailings":[8,0,1,"get--#account_id-members-#member_id-mailings"],"/#account_id/groups/#from_group_id/#to_group_id/members/copy":[13,1,1,"put--#account_id-groups-#from_group_id-#to_group_id-members-copy"],"/#account_id/triggers":[14,2,1,"post--#account_id-triggers"],"/#account_id/triggers/#trigger_id":[14,3,1,"delete--#account_id-triggers-#trigger_id"],"/#account_id/members/delete":[8,1,1,"put--#account_id-members-delete"],"/#account_id/mailings/#mailing_id/groups":[9,0,1,"get--#account_id-mailings-#mailing_id-groups"],"/#account_id/response/#mailing_id/forwards":[5,0,1,"get--#account_id-response-#mailing_id-forwards"],"/#account_id/members/#member_id":[8,3,1,"delete--#account_id-members-#member_id"],"/#account_id/triggers/#trigger_id/mailings":[14,0,1,"get--#account_id-triggers-#trigger_id-mailings"],"/#account_id/searches/#search_id/members":[7,0,1,"get--#account_id-searches-#search_id-members"],"/#account_id/members/status/:status_from/to/:status_to":[8,1,1,"put--#account_id-members-status--status_from-to--status_to"],"/#account_id/response/#mailing_id/sends":[5,0,1,"get--#account_id-response-#mailing_id-sends"],"/#account_id/members":[8,3,1,"delete--#account_id-members"],"/#account_id/members/email/:email":[8,0,1,"get--#account_id-members-email--email"],"/#account_id/response/#mailing_id/links":[5,0,1,"get--#account_id-response-#mailing_id-links"],"/#account_id/searches/#search_id":[7,3,1,"delete--#account_id-searches-#search_id"],"/#account_id/members/imports/#import_id/members":[8,0,1,"get--#account_id-members-imports-#import_id-members"],"/#account_id/fields/#field_id/clear":[10,2,1,"post--#account_id-fields-#field_id-clear"],"/#account_id/groups/#member_group_id/members":[13,3,1,"delete--#account_id-groups-#member_group_id-members"],"/#account_id/members/imports/#import_id":[8,0,1,"get--#account_id-members-imports-#import_id"],"/#account_id/response":[5,0,1,"get--#account_id-response"],"/#account_id/response/#mailing_id/opens":[5,0,1,"get--#account_id-response-#mailing_id-opens"],"/#account_id/members/imports/delete":[8,3,1,"delete--#account_id-members-imports-delete"],"/#account_id/mailings":[9,0,1,"get--#account_id-mailings"],"/#account_id/mailings/cancel/#mailing_id":[9,3,1,"delete--#account_id-mailings-cancel-#mailing_id"],"/#account_id/mailings/validate":[9,2,1,"post--#account_id-mailings-validate"],"/#account_id/response/#mailing_id/deliveries":[5,0,1,"get--#account_id-response-#mailing_id-deliveries"],"/#account_id/mailings/#mailing_id/members":[9,0,1,"get--#account_id-mailings-#mailing_id-members"],"/#account_id/response/#share_id/customer_share":[5,0,1,"get--#account_id-response-#share_id-customer_share"],"/#account_id/webhooks/#webhook_id":[4,3,1,"delete--#account_id-webhooks-#webhook_id"],"/#account_id/members/add":[8,2,1,"post--#account_id-members-add"],"/#account_id/response/#mailing_id/optouts":[5,0,1,"get--#account_id-response-#mailing_id-optouts"],"/#account_id/response/#mailing_id/shares":[5,0,1,"get--#account_id-response-#mailing_id-shares"],"/#account_id/groups/#member_group_id":[13,3,1,"delete--#account_id-groups-#member_group_id"],"/#account_id/mailings/#mailing_id":[9,3,1,"delete--#account_id-mailings-#mailing_id"],"/#account_id/members/#member_id/groups":[8,3,1,"delete--#account_id-members-#member_id-groups"],"/#account_id/groups":[13,2,1,"post--#account_id-groups"],"/#account_id/response/#mailing_id/clicks":[5,0,1,"get--#account_id-response-#mailing_id-clicks"],"/#account_id/mailings/#mailing_id/headsup":[9,0,1,"get--#account_id-mailings-#mailing_id-headsup"],"/#account_id/response/#mailing_id/signups":[5,0,1,"get--#account_id-response-#mailing_id-signups"],"/#account_id/response/#mailing_id/customer_shares":[5,0,1,"get--#account_id-response-#mailing_id-customer_shares"]}},terms:{all:[0,1,4,5,8,9,10,11,12,13,14],code:[0,1,6,3],change_typ:8,queri:[0,2,4],month:[0,5,9,14],four:[0,5],mile:0,least:0,field_creat:[12,4],link_target:[5,9],content:[1,11,6,9,3],privat:1,specif:[8,9,4],friendli:5,send:[1,9,4,3,5],customer_share_click:5,those:[5,12],group_upd:[12,4],sent:[5,8,12,9,14],curl_clos:[1,6,3],brown:[7,8],digit:5,everi:0,string:[0,4,5,7,8,9,10,12,13,14],fals:[1,3,4,5,6,7,8,9,10,13,14],webhook:[1,12,4],mailing_status:9,trigger_id:14,webview_share_click:5,affect:[7,8],member_add:[12,4],create_mail:9,new_boolean:10,foo:0,level:1,group_delet:[12,4],list:[0,1,2,4,5,7,8,9,10,11,12,13,14],upload:8,iter:2,"try":8,item:2,plaintext_onli:[9,14],div:[4,5,7,8,9,10,13,14],survey_id:14,pleas:[1,8,11,9],prevent:2,work:[1,4],ten:0,sync:10,sign:[0,5,4],past:1,second:[0,7,14],follow:[0,1,4,5,7,9,11,13],further:1,durat:9,click:[0,4,5,7,8,12,14],append:2,even:10,what:1,hide:[4,5,7,8,9,10,13,14],appear:1,from_group_id:13,section:1,current:[8,12,9],delet:[1,4,7,8,9,10,12,13,14],"new":[1,4,5,7,8,9,10,11,13,14],net:[1,2,6,3],delivery_t:8,method:[5,8,13,4,9],can:[0,1,2,4,5,7,8,9,11,12,13],widget:[7,10,8,9,13],hash:0,datematch:0,displai:10,variat:9,gener:[0,8,12,14],onli:[5,8],here:[0,1,3,5,6,8],bodi:9,let:[1,4,10],address:[0,1,8,6,9],along:8,sinc:8,valu:[0,5,7,8,10,11],field_upd:[12,4],search:[0,1,9,7],survei:14,sender:[9,14],larger:2,queue:5,prior:9,action:[0,8],chang:[8,4],name_first:[1,3],campaign:5,newbi:5,appli:[7,14],prefer:0,myemma:[4,5,7,8,9,13],filenam:8,customer_shar:5,"boolean":[0,1,5,7,8,9,10,13,14],curlopt_postfield:[1,3],total:5,jone:[7,5,8,13],select:10,newslett:[7,8,13],describ:7,would:[0,1],regist:4,two:[0,5],next:[0,1],create_webhook:4,few:[5,8],call:[1,2,3,4,6,8,12],criteria:7,member_add_to_group:[12,4],type:[1,3,4,5,6,7,10,9,14],until:2,more:[0,4,7,8,9,13],peopl:5,relat:[1,8,11,9],about:[10,8,12,4,9],notic:8,thide:[4,5,7,8,9,10,13,14],flag:[5,7,8,10,9,14],exce:2,indic:8,examin:1,particular:[1,4,5,8,10,12,9],in_progress:5,origin:9,must:[0,7,13,10],none:9,endpoint:[1,4,5,7,8,9,10,13,14],join:[0,7],hour:0,setup:1,member_sinc:[0,5,7,8,9,13],uniqu:5,histori:8,soup:7,remain:[0,9],archiv:[5,9],member_optout:[12,4],drill:5,control:[1,11,9],quickstart:1,give:5,forward_mailing_id:5,email_domain:[0,5],share:[0,5,8,12,4],accept:[0,5,7,8,9,10,11,13,14],total_click:5,tag:[11,9],want:[1,12,13,5],occur:[7,12],some_numeric_field:0,delai:14,alwai:0,webhook_event_id:4,cours:1,end:[2,8],first_nam:[1,3,5,7,8,9,10,11,13,14],started_or_finish:[9,14],anoth:[9,13],get:[1,4,5,6,7,8,9,10,13,14],message_open:[12,4],html_bodi:[9,14],share_statu:5,push_offset:14,del_statu:5,tild:5,num_members_upd:8,simpl:0,chri:9,pizza:[7,8],map:0,autent:1,referenc:7,xxxx:6,sundai:0,membership:13,taco:[7,5,8,9,13],mai:12,multipl:[10,8],data:[1,3,4,5,10,12],welcom:11,add_onli:8,"short":0,json_encod:[1,3],optout:[5,8,12,13],num_dupl:8,favorit:10,correspond:[0,1],greet:11,predic:[0,1],issu:[1,10],"12t11":[7,5,8,9,13],combin:7,allow:[0,7,8],some_zipcode_field:0,signed_up:5,order:[5,10],michel:[8,9],mailing_nam:5,checkbox:10,fields_upd:8,over:2,becaus:12,buyer:[7,8,9,13],comma:[9,13],is_dis:14,vari:8,paramet:[2,4,5,7,8,9,10,13,14],widget_typ:10,style:[0,4,5,7,8,9,10,13,14],group:[0,1,3,4,7,8,9,12,13,14],curl_setopt:[1,6,3],how:[7,1,2,4],import_start:8,better:[13,14],platform:1,pend:[1,9],mailing_list:9,onc:9,mail:[0,1,4,5,8,11,12,9,14],hidden:13,main:1,might:[1,4],link_nam:[5,9],them:[8,9],"return":[0,1,4,5,7,8,9,10,12,13,14],greater:[0,8],thei:[0,9],food:10,timestamp:[0,5,12,9,10],spell:4,dai:0,auth:1,instead:[12,2,8],now:5,down:5,term:[0,1],alex:9,name:[0,4,5,7,8,9,10,11,13,14],edit:[7,1,14,10],curl_getinfo:[1,6,3],authent:[1,6,4,3],successufulli:4,separ:[1,9,13],each:[1,2,5,9,12,11,13],found:[8,9,4,14],updat:[4,7,8,9,10,12,13,14],mean:0,status:[8,9],domain:0,shortcut_nam:10,weight:[4,5,7,8,9,10,13,14],resum:9,individu:[1,8],hard:[0,5],last_nam:[1,3,5,7,8,9,10,11,13,14],"05t15":5,birthdai:[10,14],expect:1,year:[0,5,9,14],our:[1,11,12,4,14],happen:[1,4,5],extract:11,short_display_nam:10,special:[0,7,8,13],out:[0,1,4,5,7,8,10,13],variabl:[1,6,3],message_shar:[12,4],network:[5,12],private_api_kei:[1,6,3],check_multipl:10,categori:1,rel:0,print:6,correct:10,statist:8,benjamin:8,qualifi:11,insid:1,advanc:0,contain:[0,5,7,13,10,9],differ:0,standard:[5,9],status_from:8,base:[5,8],recipient_search:9,dictionari:8,put:[4,7,8,9,10,13,14],"13t23":[7,5,8],visit:11,could:1,omit:5,success:[7,1,9,13,3],filter:[0,1,7],search_id:7,pagin:[1,2],member_id:[5,7,8,9,12,13],summari:[1,5],assign:9,first:[0,1,10,5],oper:[0,1,7,14],rang:5,notifi:12,directli:0,curlopt_ssl_verifyp:[1,6,3],curl_init:[1,6,3],number:[5,2,13,3,10],placehold:[1,11],date:[0,5,8,10,11,14],unlik:9,alreadi:[10,9,13],done:8,plaintext_pref:[7,8,9,13],oppos:8,open:[0,3,4,5,6,7,8,12],payload:4,fanci:5,size:2,given:[0,8,9,4],"long":10,script:1,associ:[1,8,9,4,5],system:[8,12,4,14],messag:[4,5,8,12,11,9,14],attach:11,friend:11,curlinfo_http_cod:[1,6,3],shell:0,option:[0,5,7,8,9,10,13,14],especi:8,signup:[0,1,3,4,5,8,12,14],copi:[8,13],member_upd:[12,4],specifi:[0,2,7,8,10,11,9,14],curl_exec:[1,6,3],curlopt_httphead:[1,6,3],member_signup:[12,4],create_search:7,part:[0,9],enclos:11,than:[0,1,2,3,12,13],with_plaintext:9,"02t10":[5,8],"02t11":[5,8],"02t13":5,nathan:8,whenev:8,provid:[1,5,8,12,9,14],remov:[12,8,13,4],mailing_start:4,rate:2,structur:7,charact:9,greg:8,trackabl:11,were:5,minut:0,danc:1,error_count:[7,8,9,13],pre:[4,5,7,8,9,10,13,14],cleaner:1,sai:0,share_id:5,signup_form_id:[0,8,12,9,14],plaintext:[5,9,14],pass:[1,3],ani:[0,1,2,7,8,9],have:[0,5,8,12,9],tabl:5,seen:5,"null":[7,8,13,10,9,14],kevin:[9,14],signup_mail:0,caus:14,inform:[1,4,6,8,9,10,13],object_id:14,note:[1,8,9,4],also:[0,4,5,7,8,9,11,13],exampl:[0,1,3,5,6,7,11],take:[0,4],which:[0,1,4,8,10,12,9,14],some_number_field:0,singl:[0,1,3,4,5,8,10,12,13],excit:11,sure:1,delete_memb:13,normal:9,parent_mail:14,recipient_count:[5,9,14],previou:9,field_id:[10,12,14],last_run_at:7,most:14,pair:11,"class":[4,5,7,8,9,10,13,14],member_group_id:[8,9,13],mcconnel:[9,14],url:[1,3,4,5,6,12],mailing_finish:[12,4],clear:10,request:[1,2,3],doe:[0,5,7,8,10,13],member_status_upd:[12,4],declar:9,tech:4,determin:1,dataset:10,dow:0,recipi:9,"6db0cc7e6fdb2da589b65f29d90c96b6":9,show:[4,5,7,8,9,10,11,13,14],text:[10,11,12],radiu:0,syntax:[0,1,11,9],radio:10,font:[4,5,7,8,9,10,13,14],fine:9,find:[1,6,5],status_to:8,toast:[7,5,8,13],access:[1,5],giant:12,just:[0,9],pretti:8,column_ord:10,explain:[0,1],winner:9,activ:[1,5,7,8,13,9],figur:1,should:[1,2,3,7,8,11,9],templat:[11,14],share_count:5,count:[1,2,3,5],variou:[8,13],confirmed_opt_in:[7,8,9,13],familiar:1,express:0,account:[1,4,5,7,8,10,13,14],cannot:[8,9,4],progress:9,report:[10,8],requir:[1,7,8,10,11,9],object:[5,13],favorite_food:[5,7,8,13,10,9],bar:0,organ:1,include_archiv:[5,9],"public":1,"default":[5,11,13,4,9],ref_member_id:5,message_share_click:[12,4],through:[1,8,4],where:[0,1,8,11,7],view:1,set:[0,1,2,3,6,8,9,12,13],link_id:[0,5,12,9,14],see:[7,1,8],result:[0,1,2,5,8,9],respons:[0,1,2,4,5,7,8,9,10,13,14],fail:[5,9,4],themselv:2,member_field:[0,7],xxxxx:6,subject:[8,12,9,14],statu:[1,4,5,7,8,9,12,13],fancyonion:11,kei:[0,1,11,4],is_schedul:9,message_forward:[12,4],databas:8,user:[0,8,9,13],last_modified_at:[7,8,9,13],addresse:5,written:1,between:[0,7,2],"import":[1,8,12,4,10],subscript:[1,3],entiti:1,curlopt_url:[1,6,3],email:[0,1,3,5,6,7,8,9,13],wide:14,extend:1,numer:10,http404:[4,5,7,8,9,10,13,14],job:13,entir:[0,8],share_click:5,to_group_id:13,curlopt_returntransf:[1,6,3],addit:[0,1,8,9,11,13],member_remove_from_group:[12,4],send_start:[0,9,14],protect:1,accident:2,last:[0,5,10],delimit:5,pertain:5,message_click:[12,4],curlopt_post:[1,3],audienc:[1,8,9],mang:0,http500:14,seri:5,com:[4,5,6,7,8,9,11,13],zip_code_field:0,"03t15":[7,5,8,13],"03t11":[7,14],point:1,toni:[7,8],overview:[0,1,11,12,5],period:1,winner_id:9,colon:[7,11],optout_count:[7,8,9,13],suppli:9,cancel:9,tuesdai:0,duplic:5,quit:[5,8],user_id:4,recur:14,headsup:9,addition:[1,2],due:5,been:[1,8,10,5],mark:[8,9],whom:9,tshow:[4,5,7,8,9,10,13,14],trigger:[1,4,5,7,8,9,10,12,13,14],unsubscrib:0,treat:8,interest:[10,4],basic:[0,1,4,8,13,14],monthli:[7,8,13],blob:4,mailing_mailing_id:5,mailing_id:[0,5,8,12,9,14],fire:[8,4,14],xxx:[1,3],argument:[0,5],link_ord:[5,9],input:1,present:7,clicked_uniqu:5,"case":[1,8],look:[1,14,10],frozen:9,easier:12,email_error:[7,8,9,13],defin:[0,10,8,9],"while":0,outcom:5,abov:[0,1,8,7],error:[1,3,6,8,10,13],loop:8,opt:[0,4,5,7,8,13],readi:9,deliv:5,recipient_group:9,equal:0,itself:0,new_statu:12,webhook_id:4,recipient_memb:9,perform:8,make:[1,12,6,10],belong:[0,8,4],same:4,check:[8,6,9],member:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14],handl:1,html:9,split:9,document:[1,11,12],complet:[1,3,4,6,8,9],week:0,finish:[5,12,4],http:[1,2,3,4,5,6,11,9],href:[4,5,7,8,9,10,13,14],nest:0,someon:4,rais:[4,5,7,8,9,10,13,14],initi:[10,9],php:[1,6,3],bob:[7,5],recent:1,kept:11,center:0,min:5,well:5,inherit:9,person:9,mailing_typ:[9,14],without:0,command:1,thi:[0,1,4,5,7,8,9,10,12,13,14],undefin:0,http_code:[1,6,3],latest:11,construct:[0,7,9],identifi:8,paus:9,execut:[1,3],less:0,resp:[4,5,7,8,9,10,13,14],"_post":[1,3],against:0,aspect:13,recipient_email:9,source_filenam:8,yet:5,smith:[7,5,8,9,13],"12t09":[7,8],display_nam:10,easi:[10,12],"01t00":8,had:0,littl:1,blog:4,add:[12,1,8,13,3],other:[1,8,9,3,5],curlopt_userpwd:[1,6,3],import_finish:[8,12,4],schedul:9,els:[1,6,3],save:7,match:[0,7],build:1,sanit:1,applic:[1,6,3],account_id:[1,3,4,5,6,7,8,9,10,12,13,14],disposit:1,crud:[8,13,14],print_r:[6,3],mailing_statu:[9,14],know:[5,4],background:13,parent_mailing_id:[9,14],bit:1,insert:11,emma:[1,5,7,8,9,12,13],like:1,onion:11,deprec:4,arbitrari:8,manual:9,integ:[1,8,14,10,5],public_kei:4,api:[1,2,6,12,3],either:[0,5,7],bunch:0,output:9,group_id:[1,8,12,3],soft:[0,5],manag:[0,1,13,4],import_id:[8,12],www:[5,9],old:7,deal:[8,13],captur:1,arrai:[0,1,3,5,6,7,8,9,10,12,13,14],some:[1,11,5],field_delet:[12,4],certain:12,intern:10,sampl:[1,4,5,7,8,9,10,13,14],elaps:[2,9],home:11,deleted_at:[7,8,13,10,9,14],some_string_field:0,librari:11,bounce_count:[7,8,9,13],confirm:8,broad:12,per:5,send_finish:[9,14],larg:[0,2],condit:7,three:9,network_cod:12,localhost:9,refer:[5,7,8,13,10,9],with_html_bodi:9,who:[0,5],bold:[4,5,7,8,9,10,13,14],event_typ:14,inspect:1,usag:[1,8,12],num_members_ad:8,fulli:11,from:[1,4,8,9,12,13,14],post:[1,3,4,7,8,9,10,12,13,14],group_creat:[12,4],gladi:[7,5,8,13],actual:5,zip:0,groups_upd:8,column:10,page:2,includ:[1,5,7,8,9,10,13],webview:9,disabl:[9,14],block:[1,2],yyyi:5,member_data:[1,3],glob:0,bounc:[0,5],within:0,encod:[9,4],delivery_typ:[5,8],compos:0,webview_shar:5,field_typ:10,active_count:[7,8,9,13],public_webview_url:9,pivot:5,your:[1,4,5,7,8,9,10,13],websit:11,span:[4,5,7,8,9,10,13,14],wai:[1,12],area:1,overus:2,group_nam:[8,12,13,9],support:12,unique_click:5,json:[0,1,3,4,6,7],fast:8,custom:[5,8,11,10],avail:[0,11,4],start:[1,2,8,4],interfac:12,send_at:[9,14],exceed:2,"var":3,interv:[0,14],deliveri:5,head:[1,6,9,3],form:[1,3,4,6,8,10,14],enough:2,forc:1,forward:[0,4,5,8,12,9],"31st":0,group_typ:[8,9,13],push_offset_unit:14,link:[0,4,5,11,9,14],line:[1,5],realli:1,"true":[0,1,2,3,4,6,7,8,9,10,13,14],archived_t:[9,14],name_last:[1,3],info:4,pull:2,made:1,possibl:[5,8,12],whether:8,maximum:2,tell:12,http403:9,record:[0,7,8],below:[0,1,8,12],http400:[7,8,9],limit:[5,2,8,9],some_array_field:0,otherwis:[10,8],start_t:14,mta:5,connect:[6,3],notif:9,creat:[4,5,7,9,10,12,13,14],"int":5,retriev:[7,1,2,8,9],email_us:[0,5],repres:5,exist:[0,4,5,7,8,10,13],behavior:11,curl:[1,6],lentil:7,probabl:14,echo:[1,3],successfulli:[5,8,9],mailing_subject:12,grp:13,todo:11,when:[8,12,4,9],detail:[1,4,7,8,9,10,13],invalid:[7,8,9],event:[4,7,8,13,12,9,14],field:[0,1,3,4,5,7,8,9,10,11,12,13,14],valid:[5,8,9,13],futur:1,num_skip:8,test:[5,6,7,13,9,14],ignor:8,you:[0,1,2,4,5,7,8,9,10,11,12,13],member_delet:[12,4],member_status_id:[7,5,8,9,13],public_api_kei:[1,6,3],stat:[5,9],claus:[0,7],event_nam:[12,4],e2ma:[1,2,6,3],error_messag:8,param:[9,4],app_messag:[1,3],ella:8,bulk:[1,8],receiv:[0,2,5,8,12,9],heads_up_email:9,longer:9,descript:[4,14],portion:0,opted_out:5,time:[1,2,8,13,5],reply_to:[9,14],resource_url:12,hello:[11,9,14]},objtypes:{"0":"http:get","1":"http:put","2":"http:post","3":"http:delete"},titles:["Search Syntax","Emma API","Pagination","PHP Signup Example","Webhooks","Response","PHP Get Member By Email Example","Searches","Members","Mailings","Fields","Placeholder Syntax","Webhook Usage","Groups","Triggers"],objnames:{"0":["http","get","HTTP get"],"1":["http","put","HTTP put"],"2":["http","post","HTTP post"],"3":["http","delete","HTTP delete"]},filenames:["member_search","index","pagination","php_signup_example","api/external/webhooks","api/external/response","php_get_member_example","api/external/searches","api/external/members","api/external/mailings","api/external/fields","placeholders","webhooks","api/external/groups","api/external/triggers"]}) \ No newline at end of file +Search.setIndex({objects:{"":{"/#account_id/members/#member_id/groups/remove":[8,1,1,"put--#account_id-members-#member_id-groups-remove"],"/#account_id/mailings/#mailing_id/winner/#winner_id":[9,2,1,"post--#account_id-mailings-#mailing_id-winner-#winner_id"],"/#account_id/response/#mailing_id/in_progress":[5,0,1,"get--#account_id-response-#mailing_id-in_progress"],"/#account_id/members/groups/remove":[8,1,1,"put--#account_id-members-groups-remove"],"/#account_id/mailings/#mailing_id/searches":[9,0,1,"get--#account_id-mailings-#mailing_id-searches"],"/#account_id/fields":[10,2,1,"post--#account_id-fields"],"/#account_id/members/#group_id/copy":[8,1,1,"put--#account_id-members-#group_id-copy"],"/#account_id/members/status":[8,1,1,"put--#account_id-members-status"],"/#account_id/response/#mailing_id/shares/overview":[5,0,1,"get--#account_id-response-#mailing_id-shares-overview"],"/#account_id/webhooks/events":[4,0,1,"get--#account_id-webhooks-events"],"/#account_id/members/#member_id/optout":[8,0,1,"get--#account_id-members-#member_id-optout"],"/#account_id/webhooks":[4,3,1,"delete--#account_id-webhooks"],"/#account_id/fields/#field_id":[10,3,1,"delete--#account_id-fields-#field_id"],"/#account_id/response/#mailing_id":[5,0,1,"get--#account_id-response-#mailing_id"],"/#account_id/groups/#member_group_id/members/remove":[13,3,1,"delete--#account_id-groups-#member_group_id-members-remove"],"/#account_id/searches":[7,2,1,"post--#account_id-searches"],"/#account_id/members/imports":[8,0,1,"get--#account_id-members-imports"],"/#account_id/forwards/#mailing_id/#member_id":[9,2,1,"post--#account_id-forwards-#mailing_id-#member_id"],"/#account_id/response/#mailing_id/customer_share_clicks":[5,0,1,"get--#account_id-response-#mailing_id-customer_share_clicks"],"/#account_id/mailings/#mailing_id/messages/#member_id":[9,0,1,"get--#account_id-mailings-#mailing_id-messages-#member_id"],"/#account_id/members/#member_id/mailings":[8,0,1,"get--#account_id-members-#member_id-mailings"],"/#account_id/groups/#from_group_id/#to_group_id/members/copy":[13,1,1,"put--#account_id-groups-#from_group_id-#to_group_id-members-copy"],"/#account_id/triggers":[14,2,1,"post--#account_id-triggers"],"/#account_id/triggers/#trigger_id":[14,3,1,"delete--#account_id-triggers-#trigger_id"],"/#account_id/members/delete":[8,1,1,"put--#account_id-members-delete"],"/#account_id/mailings/#mailing_id/groups":[9,0,1,"get--#account_id-mailings-#mailing_id-groups"],"/#account_id/response/#mailing_id/forwards":[5,0,1,"get--#account_id-response-#mailing_id-forwards"],"/#account_id/members/#member_id":[8,3,1,"delete--#account_id-members-#member_id"],"/#account_id/triggers/#trigger_id/mailings":[14,0,1,"get--#account_id-triggers-#trigger_id-mailings"],"/#account_id/searches/#search_id/members":[7,0,1,"get--#account_id-searches-#search_id-members"],"/#account_id/members/status/:status_from/to/:status_to":[8,1,1,"put--#account_id-members-status--status_from-to--status_to"],"/#account_id/response/#mailing_id/sends":[5,0,1,"get--#account_id-response-#mailing_id-sends"],"/#account_id/members":[8,3,1,"delete--#account_id-members"],"/#account_id/members/email/:email":[8,0,1,"get--#account_id-members-email--email"],"/#account_id/response/#mailing_id/links":[5,0,1,"get--#account_id-response-#mailing_id-links"],"/#account_id/searches/#search_id":[7,3,1,"delete--#account_id-searches-#search_id"],"/#account_id/members/imports/#import_id/members":[8,0,1,"get--#account_id-members-imports-#import_id-members"],"/#account_id/fields/#field_id/clear":[10,2,1,"post--#account_id-fields-#field_id-clear"],"/#account_id/groups/#member_group_id/members":[13,3,1,"delete--#account_id-groups-#member_group_id-members"],"/#account_id/members/imports/#import_id":[8,0,1,"get--#account_id-members-imports-#import_id"],"/#account_id/response":[5,0,1,"get--#account_id-response"],"/#account_id/response/#mailing_id/opens":[5,0,1,"get--#account_id-response-#mailing_id-opens"],"/#account_id/members/imports/delete":[8,3,1,"delete--#account_id-members-imports-delete"],"/#account_id/mailings":[9,0,1,"get--#account_id-mailings"],"/#account_id/mailings/cancel/#mailing_id":[9,3,1,"delete--#account_id-mailings-cancel-#mailing_id"],"/#account_id/mailings/validate":[9,2,1,"post--#account_id-mailings-validate"],"/#account_id/response/#mailing_id/deliveries":[5,0,1,"get--#account_id-response-#mailing_id-deliveries"],"/#account_id/mailings/#mailing_id/members":[9,0,1,"get--#account_id-mailings-#mailing_id-members"],"/#account_id/response/#share_id/customer_share":[5,0,1,"get--#account_id-response-#share_id-customer_share"],"/#account_id/webhooks/#webhook_id":[4,3,1,"delete--#account_id-webhooks-#webhook_id"],"/#account_id/members/add":[8,2,1,"post--#account_id-members-add"],"/#account_id/response/#mailing_id/optouts":[5,0,1,"get--#account_id-response-#mailing_id-optouts"],"/#account_id/response/#mailing_id/shares":[5,0,1,"get--#account_id-response-#mailing_id-shares"],"/#account_id/groups/#member_group_id":[13,3,1,"delete--#account_id-groups-#member_group_id"],"/#account_id/mailings/#mailing_id":[9,3,1,"delete--#account_id-mailings-#mailing_id"],"/#account_id/members/#member_id/groups":[8,3,1,"delete--#account_id-members-#member_id-groups"],"/#account_id/groups":[13,2,1,"post--#account_id-groups"],"/#account_id/response/#mailing_id/clicks":[5,0,1,"get--#account_id-response-#mailing_id-clicks"],"/#account_id/mailings/#mailing_id/headsup":[9,0,1,"get--#account_id-mailings-#mailing_id-headsup"],"/#account_id/response/#mailing_id/signups":[5,0,1,"get--#account_id-response-#mailing_id-signups"],"/#account_id/response/#mailing_id/customer_shares":[5,0,1,"get--#account_id-response-#mailing_id-customer_shares"]}},terms:{all:[0,1,4,5,8,9,10,11,12,13,14],code:[0,1,6,3],change_typ:8,queri:[0,2,4],month:[0,5,9,14],four:[0,5],mile:0,least:0,field_creat:[12,4],link_target:[5,9],content:[1,11,6,9,3],privat:1,specif:[8,9,4],friendli:5,send:[1,9,4,3,5],customer_share_click:5,those:[5,12],group_upd:[12,4],sent:[5,8,12,9,14],curl_clos:[1,6,3],brown:[7,8],digit:5,everi:0,string:[0,4,5,7,8,9,10,12,13,14],fals:[1,3,4,5,6,7,8,9,10,13,14],webhook:[1,12,4],mailing_status:9,trigger_id:14,webview_share_click:5,affect:[7,8],member_add:[12,4],create_mail:9,new_boolean:10,foo:0,level:1,group_delet:[12,4],list:[0,1,2,4,5,7,8,9,10,11,12,13,14],upload:8,iter:2,"try":8,item:2,plaintext_onli:[9,14],div:[4,5,7,8,9,10,13,14],survey_id:14,pleas:[1,8,11,9],prevent:2,work:[1,4],ten:0,sync:10,sign:[0,5,4],past:1,second:[0,7,14],follow:[0,1,4,5,7,9,11,13],further:1,durat:9,click:[0,4,5,7,8,12,14],append:2,even:10,what:1,hide:[4,5,7,8,9,10,13,14],appear:1,from_group_id:13,section:1,current:[8,12,9],delet:[1,4,7,8,9,10,12,13,14],"new":[1,4,5,7,8,9,10,11,13,14],net:[1,2,6,3],delivery_t:8,method:[5,8,13,4,9],can:[0,1,2,4,5,7,8,9,11,12,13],widget:[7,10,8,9,13],hash:0,datematch:0,displai:10,variat:9,gener:[0,8,12,14],onli:[5,8],here:[0,1,3,5,6,8],bodi:9,let:[1,4,10],address:[0,1,8,6,9],along:8,sinc:8,valu:[0,5,7,8,10,11],field_upd:[12,4],search:[0,1,9,7],survei:14,sender:[9,14],larger:2,queue:5,prior:9,action:[0,8],chang:[8,4],name_first:[1,3],campaign:5,newbi:5,appli:[7,14],prefer:0,myemma:[4,5,7,8,9,13],filenam:8,customer_shar:5,"boolean":[0,1,5,7,8,9,10,13,14],curlopt_postfield:[1,3],total:5,jone:[7,5,8,13],select:10,newslett:[7,8,13],describ:7,would:[0,1],regist:4,two:[0,5],next:[0,1],create_webhook:4,few:[5,8],call:[1,2,3,4,6,8,12],criteria:7,member_add_to_group:[12,4],type:[1,3,4,5,6,7,10,9,14],until:2,more:[0,4,7,8,9,13],peopl:5,relat:[1,8,11,9],about:[10,8,12,4,9],notic:8,thide:[4,5,7,8,9,10,13,14],flag:[5,7,8,10,9,14],exce:2,indic:8,examin:1,particular:[1,4,5,8,10,12,9],in_progress:5,origin:9,must:[0,7,13,10],none:9,endpoint:[1,4,5,7,8,9,10,13,14],join:[0,7],hour:0,setup:1,member_sinc:[0,5,7,8,9,13],uniqu:5,histori:8,soup:7,remain:[0,9],archiv:[5,9],member_optout:[12,4],drill:5,control:[1,11,9],quickstart:1,give:5,forward_mailing_id:5,email_domain:[0,5],share:[0,5,8,12,4],accept:[0,5,7,8,9,10,11,13,14],total_click:5,tag:[11,9],want:[1,12,13,5],occur:[7,12],some_numeric_field:0,delai:14,alwai:0,webhook_event_id:4,cours:1,end:[2,8],first_nam:[1,3,5,7,8,9,10,11,13,14],started_or_finish:[9,14],anoth:[9,13],get:[1,4,5,6,7,8,9,10,13,14],message_open:[12,4],html_bodi:[9,14],share_statu:5,push_offset:14,del_statu:5,tild:5,num_members_upd:8,simpl:0,chri:9,pizza:[7,8],map:0,autent:1,referenc:7,xxxx:6,sundai:0,membership:13,taco:[7,5,8,9,13],mai:12,multipl:[10,8],data:[1,3,4,5,10,12],welcom:11,add_onli:8,"short":0,json_encod:[1,3],optout:[5,8,12,13],num_dupl:8,favorit:10,correspond:[0,1],greet:11,predic:[0,1],issu:[1,10],"12t11":[7,5,8,9,13],combin:7,allow:[0,7,8],some_zipcode_field:0,signed_up:5,order:[5,10],michel:[8,9],mailing_nam:5,checkbox:10,fields_upd:8,over:2,becaus:12,buyer:[7,8,9,13],comma:[9,13],is_dis:14,vari:8,paramet:[2,4,5,7,8,9,10,13,14],widget_typ:10,style:[0,4,5,7,8,9,10,13,14],group:[0,1,3,4,7,8,9,12,13,14],curl_setopt:[1,6,3],how:[7,1,2,4],import_start:8,better:[13,14],platform:1,pend:[1,9],mailing_list:9,onc:9,mail:[0,1,4,5,8,11,12,9,14],hidden:13,main:1,might:[1,4],link_nam:[5,9],them:[8,9],"return":[0,1,4,5,7,8,9,10,12,13,14],greater:[0,8],thei:[0,9],food:10,timestamp:[0,5,12,9,10],spell:4,dai:0,auth:1,instead:[12,2,8],now:5,down:5,term:[0,1],alex:9,name:[0,4,5,7,8,9,10,11,13,14],edit:[7,1,14,10],curl_getinfo:[1,6,3],authent:[1,6,4,3],successufulli:4,separ:[1,9,13],each:[1,2,5,9,12,11,13],found:[8,9,4,14],updat:[4,7,8,9,10,12,13,14],mean:0,status:[8,9],domain:0,shortcut_nam:10,weight:[4,5,7,8,9,10,13,14],resum:9,individu:[1,8],hard:[0,5],last_nam:[1,3,5,7,8,9,10,11,13,14],"05t15":5,birthdai:[10,14],expect:1,year:[0,5,9,14],our:[1,11,12,4,14],happen:[1,4,5],extract:11,short_display_nam:10,special:[0,7,8,13],out:[0,1,4,5,7,8,10,13],variabl:[1,6,3],message_shar:[12,4],network:[5,12],private_api_kei:[1,6,3],check_multipl:10,categori:1,rel:0,print:6,correct:10,statist:8,benjamin:8,qualifi:11,insid:1,advanc:0,contain:[0,5,7,13,10,9],differ:0,standard:[5,9],status_from:8,base:[5,8],recipient_search:9,dictionari:8,put:[4,7,8,9,10,13,14],"13t23":[7,5,8],visit:11,could:1,omit:5,success:[7,1,9,13,3],filter:[0,1,7],search_id:7,pagin:[1,2],member_id:[5,7,8,9,12,13],summari:[1,5],assign:9,first:[0,1,10,5],oper:[0,1,7,14],rang:5,notifi:12,directli:0,curlopt_ssl_verifyp:[1,6,3],curl_init:[1,6,3],number:[5,2,13,3,10],placehold:[1,11],date:[0,5,8,10,11,14],unlik:9,alreadi:[10,9,13],done:8,plaintext_pref:[7,8,9,13],oppos:8,open:[0,3,4,5,6,7,8,12],payload:4,fanci:5,size:2,given:[0,8,9,4],"long":10,script:1,associ:[1,8,9,4,5],system:[8,12,4,14],messag:[4,5,8,12,11,9,14],attach:11,friend:11,curlinfo_http_cod:[1,6,3],shell:0,option:[0,5,7,8,9,10,13,14],especi:8,signup:[0,1,3,4,5,8,12,14],copi:[8,13],member_upd:[12,4],specifi:[0,2,7,8,10,11,9,14],curl_exec:[1,6,3],curlopt_httphead:[1,6,3],member_signup:[12,4],create_search:7,part:[0,9],enclos:11,than:[0,1,2,3,12,13],with_plaintext:9,"02t10":[5,8],"02t11":[5,8],"02t13":5,nathan:8,whenev:8,provid:[1,5,8,12,9,14],remov:[12,8,13,4],mailing_start:4,rate:2,structur:7,charact:9,greg:8,trackabl:11,were:5,minut:0,danc:1,error_count:[7,8,9,13],pre:[4,5,7,8,9,10,13,14],cleaner:1,sai:0,share_id:5,signup_form_id:[0,8,12,9,14],plaintext:[5,9,14],pass:[1,3],ani:[0,1,2,7,8,9],have:[0,5,8,12,9],tabl:5,seen:5,"null":[7,8,13,10,9,14],kevin:[9,14],signup_mail:0,caus:14,inform:[1,4,6,8,9,10,13],object_id:14,note:[1,8,9,4],also:[0,4,5,7,8,9,11,13],exampl:[0,1,3,5,6,7,11],take:[0,4],which:[0,1,4,8,10,12,9,14],some_number_field:0,singl:[0,1,3,4,5,8,10,12,13],excit:11,sure:1,delete_memb:13,normal:9,parent_mail:14,recipient_count:[5,9,14],previou:9,field_id:[10,12,14],last_run_at:7,most:14,pair:11,"class":[4,5,7,8,9,10,13,14],member_group_id:[8,9,13],mcconnel:[9,14],url:[1,3,4,5,6,12],mailing_finish:[12,4],clear:10,request:[1,2,3],doe:[0,5,7,8,10,13],member_status_upd:[12,4],declar:9,tech:4,determin:1,dataset:10,dow:0,recipi:9,"6db0cc7e6fdb2da589b65f29d90c96b6":9,show:[4,5,7,8,9,10,11,13,14],text:[10,11,12],radiu:0,syntax:[0,1,11,9],radio:10,font:[4,5,7,8,9,10,13,14],fine:9,find:[1,6,5],status_to:8,toast:[7,5,8,13],access:[1,5],giant:12,just:[0,9],pretti:8,column_ord:10,explain:[0,1],winner:9,activ:[1,5,7,8,13,9],figur:1,should:[1,2,3,7,8,11,9],templat:[11,14],share_count:5,count:[1,2,3,5],variou:[8,13],confirmed_opt_in:[7,8,9,13],familiar:1,express:0,account:[1,4,5,7,8,10,13,14],cannot:[8,9,4],progress:9,report:[10,8],requir:[1,7,8,10,11,9],object:[5,13],favorite_food:[5,7,8,13,10,9],bar:0,organ:1,include_archiv:[5,9],"public":1,"default":[5,11,13,4,9],ref_member_id:5,message_share_click:[12,4],through:[1,8,4],where:[0,1,8,11,7],view:1,set:[0,1,2,3,6,8,9,12,13],link_id:[0,5,12,9,14],see:[7,1,8],result:[0,1,2,5,8,9],respons:[0,1,2,4,5,7,8,9,10,13,14],fail:[5,9,4],themselv:2,member_field:[0,7],xxxxx:6,subject:[8,12,9,14],statu:[1,4,5,7,8,9,12,13],fancyonion:11,kei:[0,1,11,4],is_schedul:9,message_forward:[12,4],databas:8,user:[0,8,9,13],last_modified_at:[7,8,9,13],addresse:5,written:1,between:[0,7,2],"import":[1,8,12,4,10],subscript:[1,3],entiti:1,curlopt_url:[1,6,3],email:[0,1,3,5,6,7,8,9,13],wide:14,extend:1,numer:10,http404:[4,5,7,8,9,10,13,14],job:13,entir:[0,8],share_click:5,to_group_id:13,curlopt_returntransf:[1,6,3],addit:[0,1,8,9,11,13],member_remove_from_group:[12,4],send_start:[0,9,14],protect:1,accident:2,last:[0,5,10],delimit:5,pertain:5,message_click:[12,4],curlopt_post:[1,3],audienc:[1,8,9],mang:0,http500:14,seri:5,com:[4,5,6,7,8,9,11,13],zip_code_field:0,"03t15":[7,5,8,13],"03t14":[7,14],point:1,toni:[7,8],overview:[0,1,11,12,5],period:1,winner_id:9,colon:[7,11],optout_count:[7,8,9,13],suppli:9,cancel:9,tuesdai:0,duplic:5,quit:[5,8],user_id:4,recur:14,headsup:9,addition:[1,2],due:5,been:[1,8,10,5],mark:[8,9],whom:9,tshow:[4,5,7,8,9,10,13,14],trigger:[1,4,5,7,8,9,10,12,13,14],unsubscrib:0,treat:8,interest:[10,4],basic:[0,1,4,8,13,14],monthli:[7,8,13],blob:4,mailing_mailing_id:5,mailing_id:[0,5,8,12,9,14],fire:[8,4,14],xxx:[1,3],argument:[0,5],link_ord:[5,9],input:1,present:7,clicked_uniqu:5,"case":[1,8],look:[1,14,10],frozen:9,easier:12,email_error:[7,8,9,13],defin:[0,10,8,9],"while":0,outcom:5,abov:[0,1,8,7],error:[1,3,6,8,10,13],loop:8,opt:[0,4,5,7,8,13],readi:9,deliv:5,recipient_group:9,equal:0,itself:0,new_statu:12,webhook_id:4,recipient_memb:9,perform:8,make:[1,12,6,10],belong:[0,8,4],same:4,check:[8,6,9],member:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14],handl:1,html:9,split:9,document:[1,11,12],complet:[1,3,4,6,8,9],week:0,finish:[5,12,4],http:[1,2,3,4,5,6,11,9],href:[4,5,7,8,9,10,13,14],nest:0,someon:4,rais:[4,5,7,8,9,10,13,14],initi:[10,9],php:[1,6,3],bob:[7,5],recent:1,kept:11,center:0,min:5,well:5,inherit:9,person:9,mailing_typ:[9,14],without:0,command:1,thi:[0,1,4,5,7,8,9,10,12,13,14],undefin:0,http_code:[1,6,3],latest:11,construct:[0,7,9],identifi:8,paus:9,execut:[1,3],less:0,resp:[4,5,7,8,9,10,13,14],"_post":[1,3],against:0,aspect:13,recipient_email:9,source_filenam:8,yet:5,smith:[7,5,8,9,13],"12t09":[7,8],display_nam:10,easi:[10,12],"01t00":8,had:0,littl:1,blog:4,add:[12,1,8,13,3],other:[1,8,9,3,5],curlopt_userpwd:[1,6,3],import_finish:[8,12,4],schedul:9,els:[1,6,3],save:7,match:[0,7],build:1,sanit:1,applic:[1,6,3],account_id:[1,3,4,5,6,7,8,9,10,12,13,14],disposit:1,crud:[8,13,14],print_r:[6,3],mailing_statu:[9,14],know:[5,4],background:13,parent_mailing_id:[9,14],bit:1,insert:11,emma:[1,5,7,8,9,12,13],like:1,onion:11,deprec:4,arbitrari:8,manual:9,integ:[1,8,14,10,5],public_kei:4,api:[1,2,6,12,3],either:[0,5,7],bunch:0,output:9,group_id:[1,8,12,3],soft:[0,5],manag:[0,1,13,4],import_id:[8,12],www:[5,9],old:7,deal:[8,13],captur:1,arrai:[0,1,3,5,6,7,8,9,10,12,13,14],some:[1,11,5],field_delet:[12,4],certain:12,intern:10,sampl:[1,4,5,7,8,9,10,13,14],elaps:[2,9],home:11,deleted_at:[7,8,13,10,9,14],some_string_field:0,librari:11,bounce_count:[7,8,9,13],confirm:8,broad:12,per:5,send_finish:[9,14],larg:[0,2],condit:7,three:9,network_cod:12,localhost:9,refer:[5,7,8,13,10,9],with_html_bodi:9,who:[0,5],bold:[4,5,7,8,9,10,13,14],event_typ:14,inspect:1,usag:[1,8,12],num_members_ad:8,fulli:11,from:[1,4,8,9,12,13,14],post:[1,3,4,7,8,9,10,12,13,14],group_creat:[12,4],gladi:[7,5,8,13],actual:5,zip:0,groups_upd:8,column:10,page:2,includ:[1,5,7,8,9,10,13],webview:9,disabl:[9,14],block:[1,2],yyyi:5,member_data:[1,3],glob:0,bounc:[0,5],within:0,encod:[9,4],delivery_typ:[5,8],compos:0,webview_shar:5,field_typ:10,active_count:[7,8,9,13],public_webview_url:9,pivot:5,your:[1,4,5,7,8,9,10,13],websit:11,span:[4,5,7,8,9,10,13,14],wai:[1,12],area:1,overus:2,group_nam:[8,12,13,9],support:12,unique_click:5,json:[0,1,3,4,6,7],fast:8,custom:[5,8,11,10],avail:[0,11,4],start:[1,2,8,4],interfac:12,send_at:[9,14],exceed:2,"var":3,interv:[0,14],deliveri:5,head:[1,6,9,3],form:[1,3,4,6,8,10,14],enough:2,forc:1,forward:[0,4,5,8,12,9],"31st":0,group_typ:[8,9,13],push_offset_unit:14,link:[0,4,5,11,9,14],line:[1,5],realli:1,"true":[0,1,2,3,4,6,7,8,9,10,13,14],archived_t:[9,14],name_last:[1,3],info:4,pull:2,made:1,possibl:[5,8,12],whether:8,maximum:2,tell:12,http403:9,record:[0,7,8],below:[0,1,8,12],http400:[7,8,9],limit:[5,2,8,9],some_array_field:0,otherwis:[10,8],start_t:14,mta:5,connect:[6,3],notif:9,creat:[4,5,7,9,10,12,13,14],"int":5,retriev:[7,1,2,8,9],email_us:[0,5],repres:5,exist:[0,4,5,7,8,10,13],behavior:11,curl:[1,6],lentil:7,probabl:14,echo:[1,3],successfulli:[5,8,9],mailing_subject:12,grp:13,todo:11,when:[8,12,4,9],detail:[1,4,7,8,9,10,13],invalid:[7,8,9],event:[4,7,8,13,12,9,14],field:[0,1,3,4,5,7,8,9,10,11,12,13,14],valid:[5,8,9,13],futur:1,num_skip:8,test:[5,6,7,13,9,14],ignor:8,you:[0,1,2,4,5,7,8,9,10,11,12,13],member_delet:[12,4],member_status_id:[7,5,8,9,13],public_api_kei:[1,6,3],stat:[5,9],claus:[0,7],event_nam:[12,4],e2ma:[1,2,6,3],error_messag:8,param:[9,4],app_messag:[1,3],ella:8,bulk:[1,8],receiv:[0,2,5,8,12,9],heads_up_email:9,longer:9,descript:[4,14],portion:0,opted_out:5,time:[1,2,8,13,5],reply_to:[9,14],resource_url:12,hello:[11,9,14]},objtypes:{"0":"http:get","1":"http:put","2":"http:post","3":"http:delete"},titles:["Search Syntax","Emma API","Pagination","PHP Signup Example","Webhooks","Response","PHP Get Member By Email Example","Searches","Members","Mailings","Fields","Placeholder Syntax","Webhook Usage","Groups","Triggers"],objnames:{"0":["http","get","HTTP get"],"1":["http","put","HTTP put"],"2":["http","post","HTTP post"],"3":["http","delete","HTTP delete"]},filenames:["member_search","index","pagination","php_signup_example","api/external/webhooks","api/external/response","php_get_member_example","api/external/searches","api/external/members","api/external/mailings","api/external/fields","placeholders","webhooks","api/external/groups","api/external/triggers"]}) \ No newline at end of file diff --git a/webhooks.html b/webhooks.html index 1e6b377..72c29bd 100644 --- a/webhooks.html +++ b/webhooks.html @@ -56,6 +56,20 @@ }); }); </script> + + <script type="text/javascript"> + + var _gaq = _gaq || []; + _gaq.push(['_setAccount', 'UA-512410-18']); + _gaq.push(['_trackPageview']); + + (function() { + var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; + ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; + var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); + })(); + + </script> </head> <body> @@ -493,7 +507,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 03, 2013 at 11:19 AM. + Last updated on Jan 03, 2013 at 02:13 PM. </div> </body> </html> \ No newline at end of file From e12473c079f5ae1191c35a8c72b31703eab61ed5 Mon Sep 17 00:00:00 2001 From: Lance Roggendorff <lance.roggendorff@myemma.com> Date: Fri, 4 Jan 2013 09:46:14 -0600 Subject: [PATCH 017/219] Update audience documentation. --- api/external/fields.html | 2 +- api/external/groups.html | 2 +- api/external/mailings.html | 2 +- api/external/members.html | 2 +- api/external/response.html | 2 +- api/external/searches.html | 4 ++-- api/external/triggers.html | 8 ++++---- api/external/webhooks.html | 2 +- genindex.html | 2 +- http-routingtable.html | 2 +- index.html | 2 +- member_search.html | 2 +- pagination.html | 2 +- php_get_member_example.html | 2 +- php_signup_example.html | 2 +- placeholders.html | 2 +- search.html | 2 +- searchindex.js | 2 +- webhooks.html | 2 +- 19 files changed, 23 insertions(+), 23 deletions(-) diff --git a/api/external/fields.html b/api/external/fields.html index 9b014cf..e75a52f 100644 --- a/api/external/fields.html +++ b/api/external/fields.html @@ -415,7 +415,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 03, 2013 at 02:13 PM. + Last updated on Jan 04, 2013 at 09:46 AM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/groups.html b/api/external/groups.html index 55b2585..f345c2b 100644 --- a/api/external/groups.html +++ b/api/external/groups.html @@ -702,7 +702,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 03, 2013 at 02:13 PM. + Last updated on Jan 04, 2013 at 09:46 AM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/mailings.html b/api/external/mailings.html index c731bd5..25445de 100644 --- a/api/external/mailings.html +++ b/api/external/mailings.html @@ -809,7 +809,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 03, 2013 at 02:13 PM. + Last updated on Jan 04, 2013 at 09:46 AM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/members.html b/api/external/members.html index 40c8e6d..6a6c31c 100644 --- a/api/external/members.html +++ b/api/external/members.html @@ -1184,7 +1184,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 03, 2013 at 02:13 PM. + Last updated on Jan 04, 2013 at 09:46 AM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/response.html b/api/external/response.html index 36fe76e..c42eb94 100644 --- a/api/external/response.html +++ b/api/external/response.html @@ -1019,7 +1019,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 03, 2013 at 02:13 PM. + Last updated on Jan 04, 2013 at 09:46 AM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/searches.html b/api/external/searches.html index 428a3e3..344f5bf 100644 --- a/api/external/searches.html +++ b/api/external/searches.html @@ -199,7 +199,7 @@ <h1>Searches<a class="headerlink" href="#searches" title="Permalink to this head "name": "Test Search", "criteria": "[\"or\", [\"group\", \"eq\", \"Monthly Newsletter\"],[\"group\", \"eq\", \"Widget Buyers\"]]", "deleted_at": null, - "last_run_at": "@D:2013-01-03T14:13:33", + "last_run_at": "@D:2013-01-04T09:46:08", "active_count": 2, "account_id": 100 } @@ -511,7 +511,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 03, 2013 at 02:13 PM. + Last updated on Jan 04, 2013 at 09:46 AM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/triggers.html b/api/external/triggers.html index 4bfafe0..cdc21b0 100644 --- a/api/external/triggers.html +++ b/api/external/triggers.html @@ -148,7 +148,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": 203, "push_offset_units": "0:-14:0:0", - "start_ts": "@D:2013-01-03T14:13:30", + "start_ts": "@D:2013-01-04T09:46:06", "trigger_id": 100, "signups": null, "push_offset": "@I:-1209600.0", @@ -189,7 +189,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": null, "push_offset_units": "0:3:0:0", - "start_ts": "@D:2013-01-03T14:13:30", + "start_ts": "@D:2013-01-04T09:46:06", "trigger_id": 101, "signups": [ 1, @@ -326,7 +326,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": 203, "push_offset_units": "0:-14:0:0", - "start_ts": "@D:2013-01-03T14:13:30", + "start_ts": "@D:2013-01-04T09:46:06", "trigger_id": 100, "signups": null, "push_offset": "@I:-1209600.0", @@ -499,7 +499,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 03, 2013 at 02:13 PM. + Last updated on Jan 04, 2013 at 09:46 AM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/webhooks.html b/api/external/webhooks.html index 61d6bf8..1dad7b4 100644 --- a/api/external/webhooks.html +++ b/api/external/webhooks.html @@ -487,7 +487,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 03, 2013 at 02:13 PM. + Last updated on Jan 04, 2013 at 09:46 AM. </div> </body> </html> \ No newline at end of file diff --git a/genindex.html b/genindex.html index 997e90d..bbdd71b 100644 --- a/genindex.html +++ b/genindex.html @@ -146,7 +146,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 03, 2013 at 02:13 PM. + Last updated on Jan 04, 2013 at 09:46 AM. </div> </body> </html> \ No newline at end of file diff --git a/http-routingtable.html b/http-routingtable.html index 8d03400..a32b00a 100644 --- a/http-routingtable.html +++ b/http-routingtable.html @@ -602,7 +602,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 03, 2013 at 02:13 PM. + Last updated on Jan 04, 2013 at 09:46 AM. </div> </body> </html> \ No newline at end of file diff --git a/index.html b/index.html index d2cddca..980a1f8 100644 --- a/index.html +++ b/index.html @@ -325,7 +325,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 03, 2013 at 02:13 PM. + Last updated on Jan 04, 2013 at 09:46 AM. </div> </body> </html> \ No newline at end of file diff --git a/member_search.html b/member_search.html index 2178f01..f26ccee 100644 --- a/member_search.html +++ b/member_search.html @@ -256,7 +256,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 03, 2013 at 02:13 PM. + Last updated on Jan 04, 2013 at 09:46 AM. </div> </body> </html> \ No newline at end of file diff --git a/pagination.html b/pagination.html index 74cb209..277717e 100644 --- a/pagination.html +++ b/pagination.html @@ -168,7 +168,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 03, 2013 at 02:13 PM. + Last updated on Jan 04, 2013 at 09:46 AM. </div> </body> </html> \ No newline at end of file diff --git a/php_get_member_example.html b/php_get_member_example.html index 1b02c15..9baece5 100644 --- a/php_get_member_example.html +++ b/php_get_member_example.html @@ -183,7 +183,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 03, 2013 at 02:13 PM. + Last updated on Jan 04, 2013 at 09:46 AM. </div> </body> </html> \ No newline at end of file diff --git a/php_signup_example.html b/php_signup_example.html index 48b4ba0..c91aa8c 100644 --- a/php_signup_example.html +++ b/php_signup_example.html @@ -205,7 +205,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 03, 2013 at 02:13 PM. + Last updated on Jan 04, 2013 at 09:46 AM. </div> </body> </html> \ No newline at end of file diff --git a/placeholders.html b/placeholders.html index a1a1052..84584be 100644 --- a/placeholders.html +++ b/placeholders.html @@ -183,7 +183,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 03, 2013 at 02:13 PM. + Last updated on Jan 04, 2013 at 09:46 AM. </div> </body> </html> \ No newline at end of file diff --git a/search.html b/search.html index 1ecd942..533fecf 100644 --- a/search.html +++ b/search.html @@ -153,7 +153,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 03, 2013 at 02:13 PM. + Last updated on Jan 04, 2013 at 09:46 AM. </div> </body> </html> \ No newline at end of file diff --git a/searchindex.js b/searchindex.js index df3eb97..9747b36 100644 --- a/searchindex.js +++ b/searchindex.js @@ -1 +1 @@ -Search.setIndex({objects:{"":{"/#account_id/members/#member_id/groups/remove":[8,1,1,"put--#account_id-members-#member_id-groups-remove"],"/#account_id/mailings/#mailing_id/winner/#winner_id":[9,2,1,"post--#account_id-mailings-#mailing_id-winner-#winner_id"],"/#account_id/response/#mailing_id/in_progress":[5,0,1,"get--#account_id-response-#mailing_id-in_progress"],"/#account_id/members/groups/remove":[8,1,1,"put--#account_id-members-groups-remove"],"/#account_id/mailings/#mailing_id/searches":[9,0,1,"get--#account_id-mailings-#mailing_id-searches"],"/#account_id/fields":[10,2,1,"post--#account_id-fields"],"/#account_id/members/#group_id/copy":[8,1,1,"put--#account_id-members-#group_id-copy"],"/#account_id/members/status":[8,1,1,"put--#account_id-members-status"],"/#account_id/response/#mailing_id/shares/overview":[5,0,1,"get--#account_id-response-#mailing_id-shares-overview"],"/#account_id/webhooks/events":[4,0,1,"get--#account_id-webhooks-events"],"/#account_id/members/#member_id/optout":[8,0,1,"get--#account_id-members-#member_id-optout"],"/#account_id/webhooks":[4,3,1,"delete--#account_id-webhooks"],"/#account_id/fields/#field_id":[10,3,1,"delete--#account_id-fields-#field_id"],"/#account_id/response/#mailing_id":[5,0,1,"get--#account_id-response-#mailing_id"],"/#account_id/groups/#member_group_id/members/remove":[13,3,1,"delete--#account_id-groups-#member_group_id-members-remove"],"/#account_id/searches":[7,2,1,"post--#account_id-searches"],"/#account_id/members/imports":[8,0,1,"get--#account_id-members-imports"],"/#account_id/forwards/#mailing_id/#member_id":[9,2,1,"post--#account_id-forwards-#mailing_id-#member_id"],"/#account_id/response/#mailing_id/customer_share_clicks":[5,0,1,"get--#account_id-response-#mailing_id-customer_share_clicks"],"/#account_id/mailings/#mailing_id/messages/#member_id":[9,0,1,"get--#account_id-mailings-#mailing_id-messages-#member_id"],"/#account_id/members/#member_id/mailings":[8,0,1,"get--#account_id-members-#member_id-mailings"],"/#account_id/groups/#from_group_id/#to_group_id/members/copy":[13,1,1,"put--#account_id-groups-#from_group_id-#to_group_id-members-copy"],"/#account_id/triggers":[14,2,1,"post--#account_id-triggers"],"/#account_id/triggers/#trigger_id":[14,3,1,"delete--#account_id-triggers-#trigger_id"],"/#account_id/members/delete":[8,1,1,"put--#account_id-members-delete"],"/#account_id/mailings/#mailing_id/groups":[9,0,1,"get--#account_id-mailings-#mailing_id-groups"],"/#account_id/response/#mailing_id/forwards":[5,0,1,"get--#account_id-response-#mailing_id-forwards"],"/#account_id/members/#member_id":[8,3,1,"delete--#account_id-members-#member_id"],"/#account_id/triggers/#trigger_id/mailings":[14,0,1,"get--#account_id-triggers-#trigger_id-mailings"],"/#account_id/searches/#search_id/members":[7,0,1,"get--#account_id-searches-#search_id-members"],"/#account_id/members/status/:status_from/to/:status_to":[8,1,1,"put--#account_id-members-status--status_from-to--status_to"],"/#account_id/response/#mailing_id/sends":[5,0,1,"get--#account_id-response-#mailing_id-sends"],"/#account_id/members":[8,3,1,"delete--#account_id-members"],"/#account_id/members/email/:email":[8,0,1,"get--#account_id-members-email--email"],"/#account_id/response/#mailing_id/links":[5,0,1,"get--#account_id-response-#mailing_id-links"],"/#account_id/searches/#search_id":[7,3,1,"delete--#account_id-searches-#search_id"],"/#account_id/members/imports/#import_id/members":[8,0,1,"get--#account_id-members-imports-#import_id-members"],"/#account_id/fields/#field_id/clear":[10,2,1,"post--#account_id-fields-#field_id-clear"],"/#account_id/groups/#member_group_id/members":[13,3,1,"delete--#account_id-groups-#member_group_id-members"],"/#account_id/members/imports/#import_id":[8,0,1,"get--#account_id-members-imports-#import_id"],"/#account_id/response":[5,0,1,"get--#account_id-response"],"/#account_id/response/#mailing_id/opens":[5,0,1,"get--#account_id-response-#mailing_id-opens"],"/#account_id/members/imports/delete":[8,3,1,"delete--#account_id-members-imports-delete"],"/#account_id/mailings":[9,0,1,"get--#account_id-mailings"],"/#account_id/mailings/cancel/#mailing_id":[9,3,1,"delete--#account_id-mailings-cancel-#mailing_id"],"/#account_id/mailings/validate":[9,2,1,"post--#account_id-mailings-validate"],"/#account_id/response/#mailing_id/deliveries":[5,0,1,"get--#account_id-response-#mailing_id-deliveries"],"/#account_id/mailings/#mailing_id/members":[9,0,1,"get--#account_id-mailings-#mailing_id-members"],"/#account_id/response/#share_id/customer_share":[5,0,1,"get--#account_id-response-#share_id-customer_share"],"/#account_id/webhooks/#webhook_id":[4,3,1,"delete--#account_id-webhooks-#webhook_id"],"/#account_id/members/add":[8,2,1,"post--#account_id-members-add"],"/#account_id/response/#mailing_id/optouts":[5,0,1,"get--#account_id-response-#mailing_id-optouts"],"/#account_id/response/#mailing_id/shares":[5,0,1,"get--#account_id-response-#mailing_id-shares"],"/#account_id/groups/#member_group_id":[13,3,1,"delete--#account_id-groups-#member_group_id"],"/#account_id/mailings/#mailing_id":[9,3,1,"delete--#account_id-mailings-#mailing_id"],"/#account_id/members/#member_id/groups":[8,3,1,"delete--#account_id-members-#member_id-groups"],"/#account_id/groups":[13,2,1,"post--#account_id-groups"],"/#account_id/response/#mailing_id/clicks":[5,0,1,"get--#account_id-response-#mailing_id-clicks"],"/#account_id/mailings/#mailing_id/headsup":[9,0,1,"get--#account_id-mailings-#mailing_id-headsup"],"/#account_id/response/#mailing_id/signups":[5,0,1,"get--#account_id-response-#mailing_id-signups"],"/#account_id/response/#mailing_id/customer_shares":[5,0,1,"get--#account_id-response-#mailing_id-customer_shares"]}},terms:{all:[0,1,4,5,8,9,10,11,12,13,14],code:[0,1,6,3],change_typ:8,queri:[0,2,4],month:[0,5,9,14],four:[0,5],mile:0,least:0,field_creat:[12,4],link_target:[5,9],content:[1,11,6,9,3],privat:1,specif:[8,9,4],friendli:5,send:[1,9,4,3,5],customer_share_click:5,those:[5,12],group_upd:[12,4],sent:[5,8,12,9,14],curl_clos:[1,6,3],brown:[7,8],digit:5,everi:0,string:[0,4,5,7,8,9,10,12,13,14],fals:[1,3,4,5,6,7,8,9,10,13,14],webhook:[1,12,4],mailing_status:9,trigger_id:14,webview_share_click:5,affect:[7,8],member_add:[12,4],create_mail:9,new_boolean:10,foo:0,level:1,group_delet:[12,4],list:[0,1,2,4,5,7,8,9,10,11,12,13,14],upload:8,iter:2,"try":8,item:2,plaintext_onli:[9,14],div:[4,5,7,8,9,10,13,14],survey_id:14,pleas:[1,8,11,9],prevent:2,work:[1,4],ten:0,sync:10,sign:[0,5,4],past:1,second:[0,7,14],follow:[0,1,4,5,7,9,11,13],further:1,durat:9,click:[0,4,5,7,8,12,14],append:2,even:10,what:1,hide:[4,5,7,8,9,10,13,14],appear:1,from_group_id:13,section:1,current:[8,12,9],delet:[1,4,7,8,9,10,12,13,14],"new":[1,4,5,7,8,9,10,11,13,14],net:[1,2,6,3],delivery_t:8,method:[5,8,13,4,9],can:[0,1,2,4,5,7,8,9,11,12,13],widget:[7,10,8,9,13],hash:0,datematch:0,displai:10,variat:9,gener:[0,8,12,14],onli:[5,8],here:[0,1,3,5,6,8],bodi:9,let:[1,4,10],address:[0,1,8,6,9],along:8,sinc:8,valu:[0,5,7,8,10,11],field_upd:[12,4],search:[0,1,9,7],survei:14,sender:[9,14],larger:2,queue:5,prior:9,action:[0,8],chang:[8,4],name_first:[1,3],campaign:5,newbi:5,appli:[7,14],prefer:0,myemma:[4,5,7,8,9,13],filenam:8,customer_shar:5,"boolean":[0,1,5,7,8,9,10,13,14],curlopt_postfield:[1,3],total:5,jone:[7,5,8,13],select:10,newslett:[7,8,13],describ:7,would:[0,1],regist:4,two:[0,5],next:[0,1],create_webhook:4,few:[5,8],call:[1,2,3,4,6,8,12],criteria:7,member_add_to_group:[12,4],type:[1,3,4,5,6,7,10,9,14],until:2,more:[0,4,7,8,9,13],peopl:5,relat:[1,8,11,9],about:[10,8,12,4,9],notic:8,thide:[4,5,7,8,9,10,13,14],flag:[5,7,8,10,9,14],exce:2,indic:8,examin:1,particular:[1,4,5,8,10,12,9],in_progress:5,origin:9,must:[0,7,13,10],none:9,endpoint:[1,4,5,7,8,9,10,13,14],join:[0,7],hour:0,setup:1,member_sinc:[0,5,7,8,9,13],uniqu:5,histori:8,soup:7,remain:[0,9],archiv:[5,9],member_optout:[12,4],drill:5,control:[1,11,9],quickstart:1,give:5,forward_mailing_id:5,email_domain:[0,5],share:[0,5,8,12,4],accept:[0,5,7,8,9,10,11,13,14],total_click:5,tag:[11,9],want:[1,12,13,5],occur:[7,12],some_numeric_field:0,delai:14,alwai:0,webhook_event_id:4,cours:1,end:[2,8],first_nam:[1,3,5,7,8,9,10,11,13,14],started_or_finish:[9,14],anoth:[9,13],get:[1,4,5,6,7,8,9,10,13,14],message_open:[12,4],html_bodi:[9,14],share_statu:5,push_offset:14,del_statu:5,tild:5,num_members_upd:8,simpl:0,chri:9,pizza:[7,8],map:0,autent:1,referenc:7,xxxx:6,sundai:0,membership:13,taco:[7,5,8,9,13],mai:12,multipl:[10,8],data:[1,3,4,5,10,12],welcom:11,add_onli:8,"short":0,json_encod:[1,3],optout:[5,8,12,13],num_dupl:8,favorit:10,correspond:[0,1],greet:11,predic:[0,1],issu:[1,10],"12t11":[7,5,8,9,13],combin:7,allow:[0,7,8],some_zipcode_field:0,signed_up:5,order:[5,10],michel:[8,9],mailing_nam:5,checkbox:10,fields_upd:8,over:2,becaus:12,buyer:[7,8,9,13],comma:[9,13],is_dis:14,vari:8,paramet:[2,4,5,7,8,9,10,13,14],widget_typ:10,style:[0,4,5,7,8,9,10,13,14],group:[0,1,3,4,7,8,9,12,13,14],curl_setopt:[1,6,3],how:[7,1,2,4],import_start:8,better:[13,14],platform:1,pend:[1,9],mailing_list:9,onc:9,mail:[0,1,4,5,8,11,12,9,14],hidden:13,main:1,might:[1,4],link_nam:[5,9],them:[8,9],"return":[0,1,4,5,7,8,9,10,12,13,14],greater:[0,8],thei:[0,9],food:10,timestamp:[0,5,12,9,10],spell:4,dai:0,auth:1,instead:[12,2,8],now:5,down:5,term:[0,1],alex:9,name:[0,4,5,7,8,9,10,11,13,14],edit:[7,1,14,10],curl_getinfo:[1,6,3],authent:[1,6,4,3],successufulli:4,separ:[1,9,13],each:[1,2,5,9,12,11,13],found:[8,9,4,14],updat:[4,7,8,9,10,12,13,14],mean:0,status:[8,9],domain:0,shortcut_nam:10,weight:[4,5,7,8,9,10,13,14],resum:9,individu:[1,8],hard:[0,5],last_nam:[1,3,5,7,8,9,10,11,13,14],"05t15":5,birthdai:[10,14],expect:1,year:[0,5,9,14],our:[1,11,12,4,14],happen:[1,4,5],extract:11,short_display_nam:10,special:[0,7,8,13],out:[0,1,4,5,7,8,10,13],variabl:[1,6,3],message_shar:[12,4],network:[5,12],private_api_kei:[1,6,3],check_multipl:10,categori:1,rel:0,print:6,correct:10,statist:8,benjamin:8,qualifi:11,insid:1,advanc:0,contain:[0,5,7,13,10,9],differ:0,standard:[5,9],status_from:8,base:[5,8],recipient_search:9,dictionari:8,put:[4,7,8,9,10,13,14],"13t23":[7,5,8],visit:11,could:1,omit:5,success:[7,1,9,13,3],filter:[0,1,7],search_id:7,pagin:[1,2],member_id:[5,7,8,9,12,13],summari:[1,5],assign:9,first:[0,1,10,5],oper:[0,1,7,14],rang:5,notifi:12,directli:0,curlopt_ssl_verifyp:[1,6,3],curl_init:[1,6,3],number:[5,2,13,3,10],placehold:[1,11],date:[0,5,8,10,11,14],unlik:9,alreadi:[10,9,13],done:8,plaintext_pref:[7,8,9,13],oppos:8,open:[0,3,4,5,6,7,8,12],payload:4,fanci:5,size:2,given:[0,8,9,4],"long":10,script:1,associ:[1,8,9,4,5],system:[8,12,4,14],messag:[4,5,8,12,11,9,14],attach:11,friend:11,curlinfo_http_cod:[1,6,3],shell:0,option:[0,5,7,8,9,10,13,14],especi:8,signup:[0,1,3,4,5,8,12,14],copi:[8,13],member_upd:[12,4],specifi:[0,2,7,8,10,11,9,14],curl_exec:[1,6,3],curlopt_httphead:[1,6,3],member_signup:[12,4],create_search:7,part:[0,9],enclos:11,than:[0,1,2,3,12,13],with_plaintext:9,"02t10":[5,8],"02t11":[5,8],"02t13":5,nathan:8,whenev:8,provid:[1,5,8,12,9,14],remov:[12,8,13,4],mailing_start:4,rate:2,structur:7,charact:9,greg:8,trackabl:11,were:5,minut:0,danc:1,error_count:[7,8,9,13],pre:[4,5,7,8,9,10,13,14],cleaner:1,sai:0,share_id:5,signup_form_id:[0,8,12,9,14],plaintext:[5,9,14],pass:[1,3],ani:[0,1,2,7,8,9],have:[0,5,8,12,9],tabl:5,seen:5,"null":[7,8,13,10,9,14],kevin:[9,14],signup_mail:0,caus:14,inform:[1,4,6,8,9,10,13],object_id:14,note:[1,8,9,4],also:[0,4,5,7,8,9,11,13],exampl:[0,1,3,5,6,7,11],take:[0,4],which:[0,1,4,8,10,12,9,14],some_number_field:0,singl:[0,1,3,4,5,8,10,12,13],excit:11,sure:1,delete_memb:13,normal:9,parent_mail:14,recipient_count:[5,9,14],previou:9,field_id:[10,12,14],last_run_at:7,most:14,pair:11,"class":[4,5,7,8,9,10,13,14],member_group_id:[8,9,13],mcconnel:[9,14],url:[1,3,4,5,6,12],mailing_finish:[12,4],clear:10,request:[1,2,3],doe:[0,5,7,8,10,13],member_status_upd:[12,4],declar:9,tech:4,determin:1,dataset:10,dow:0,recipi:9,"6db0cc7e6fdb2da589b65f29d90c96b6":9,show:[4,5,7,8,9,10,11,13,14],text:[10,11,12],radiu:0,syntax:[0,1,11,9],radio:10,font:[4,5,7,8,9,10,13,14],fine:9,find:[1,6,5],status_to:8,toast:[7,5,8,13],access:[1,5],giant:12,just:[0,9],pretti:8,column_ord:10,explain:[0,1],winner:9,activ:[1,5,7,8,13,9],figur:1,should:[1,2,3,7,8,11,9],templat:[11,14],share_count:5,count:[1,2,3,5],variou:[8,13],confirmed_opt_in:[7,8,9,13],familiar:1,express:0,account:[1,4,5,7,8,10,13,14],cannot:[8,9,4],progress:9,report:[10,8],requir:[1,7,8,10,11,9],object:[5,13],favorite_food:[5,7,8,13,10,9],bar:0,organ:1,include_archiv:[5,9],"public":1,"default":[5,11,13,4,9],ref_member_id:5,message_share_click:[12,4],through:[1,8,4],where:[0,1,8,11,7],view:1,set:[0,1,2,3,6,8,9,12,13],link_id:[0,5,12,9,14],see:[7,1,8],result:[0,1,2,5,8,9],respons:[0,1,2,4,5,7,8,9,10,13,14],fail:[5,9,4],themselv:2,member_field:[0,7],xxxxx:6,subject:[8,12,9,14],statu:[1,4,5,7,8,9,12,13],fancyonion:11,kei:[0,1,11,4],is_schedul:9,message_forward:[12,4],databas:8,user:[0,8,9,13],last_modified_at:[7,8,9,13],addresse:5,written:1,between:[0,7,2],"import":[1,8,12,4,10],subscript:[1,3],entiti:1,curlopt_url:[1,6,3],email:[0,1,3,5,6,7,8,9,13],wide:14,extend:1,numer:10,http404:[4,5,7,8,9,10,13,14],job:13,entir:[0,8],share_click:5,to_group_id:13,curlopt_returntransf:[1,6,3],addit:[0,1,8,9,11,13],member_remove_from_group:[12,4],send_start:[0,9,14],protect:1,accident:2,last:[0,5,10],delimit:5,pertain:5,message_click:[12,4],curlopt_post:[1,3],audienc:[1,8,9],mang:0,http500:14,seri:5,com:[4,5,6,7,8,9,11,13],zip_code_field:0,"03t15":[7,5,8,13],"03t14":[7,14],point:1,toni:[7,8],overview:[0,1,11,12,5],period:1,winner_id:9,colon:[7,11],optout_count:[7,8,9,13],suppli:9,cancel:9,tuesdai:0,duplic:5,quit:[5,8],user_id:4,recur:14,headsup:9,addition:[1,2],due:5,been:[1,8,10,5],mark:[8,9],whom:9,tshow:[4,5,7,8,9,10,13,14],trigger:[1,4,5,7,8,9,10,12,13,14],unsubscrib:0,treat:8,interest:[10,4],basic:[0,1,4,8,13,14],monthli:[7,8,13],blob:4,mailing_mailing_id:5,mailing_id:[0,5,8,12,9,14],fire:[8,4,14],xxx:[1,3],argument:[0,5],link_ord:[5,9],input:1,present:7,clicked_uniqu:5,"case":[1,8],look:[1,14,10],frozen:9,easier:12,email_error:[7,8,9,13],defin:[0,10,8,9],"while":0,outcom:5,abov:[0,1,8,7],error:[1,3,6,8,10,13],loop:8,opt:[0,4,5,7,8,13],readi:9,deliv:5,recipient_group:9,equal:0,itself:0,new_statu:12,webhook_id:4,recipient_memb:9,perform:8,make:[1,12,6,10],belong:[0,8,4],same:4,check:[8,6,9],member:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14],handl:1,html:9,split:9,document:[1,11,12],complet:[1,3,4,6,8,9],week:0,finish:[5,12,4],http:[1,2,3,4,5,6,11,9],href:[4,5,7,8,9,10,13,14],nest:0,someon:4,rais:[4,5,7,8,9,10,13,14],initi:[10,9],php:[1,6,3],bob:[7,5],recent:1,kept:11,center:0,min:5,well:5,inherit:9,person:9,mailing_typ:[9,14],without:0,command:1,thi:[0,1,4,5,7,8,9,10,12,13,14],undefin:0,http_code:[1,6,3],latest:11,construct:[0,7,9],identifi:8,paus:9,execut:[1,3],less:0,resp:[4,5,7,8,9,10,13,14],"_post":[1,3],against:0,aspect:13,recipient_email:9,source_filenam:8,yet:5,smith:[7,5,8,9,13],"12t09":[7,8],display_nam:10,easi:[10,12],"01t00":8,had:0,littl:1,blog:4,add:[12,1,8,13,3],other:[1,8,9,3,5],curlopt_userpwd:[1,6,3],import_finish:[8,12,4],schedul:9,els:[1,6,3],save:7,match:[0,7],build:1,sanit:1,applic:[1,6,3],account_id:[1,3,4,5,6,7,8,9,10,12,13,14],disposit:1,crud:[8,13,14],print_r:[6,3],mailing_statu:[9,14],know:[5,4],background:13,parent_mailing_id:[9,14],bit:1,insert:11,emma:[1,5,7,8,9,12,13],like:1,onion:11,deprec:4,arbitrari:8,manual:9,integ:[1,8,14,10,5],public_kei:4,api:[1,2,6,12,3],either:[0,5,7],bunch:0,output:9,group_id:[1,8,12,3],soft:[0,5],manag:[0,1,13,4],import_id:[8,12],www:[5,9],old:7,deal:[8,13],captur:1,arrai:[0,1,3,5,6,7,8,9,10,12,13,14],some:[1,11,5],field_delet:[12,4],certain:12,intern:10,sampl:[1,4,5,7,8,9,10,13,14],elaps:[2,9],home:11,deleted_at:[7,8,13,10,9,14],some_string_field:0,librari:11,bounce_count:[7,8,9,13],confirm:8,broad:12,per:5,send_finish:[9,14],larg:[0,2],condit:7,three:9,network_cod:12,localhost:9,refer:[5,7,8,13,10,9],with_html_bodi:9,who:[0,5],bold:[4,5,7,8,9,10,13,14],event_typ:14,inspect:1,usag:[1,8,12],num_members_ad:8,fulli:11,from:[1,4,8,9,12,13,14],post:[1,3,4,7,8,9,10,12,13,14],group_creat:[12,4],gladi:[7,5,8,13],actual:5,zip:0,groups_upd:8,column:10,page:2,includ:[1,5,7,8,9,10,13],webview:9,disabl:[9,14],block:[1,2],yyyi:5,member_data:[1,3],glob:0,bounc:[0,5],within:0,encod:[9,4],delivery_typ:[5,8],compos:0,webview_shar:5,field_typ:10,active_count:[7,8,9,13],public_webview_url:9,pivot:5,your:[1,4,5,7,8,9,10,13],websit:11,span:[4,5,7,8,9,10,13,14],wai:[1,12],area:1,overus:2,group_nam:[8,12,13,9],support:12,unique_click:5,json:[0,1,3,4,6,7],fast:8,custom:[5,8,11,10],avail:[0,11,4],start:[1,2,8,4],interfac:12,send_at:[9,14],exceed:2,"var":3,interv:[0,14],deliveri:5,head:[1,6,9,3],form:[1,3,4,6,8,10,14],enough:2,forc:1,forward:[0,4,5,8,12,9],"31st":0,group_typ:[8,9,13],push_offset_unit:14,link:[0,4,5,11,9,14],line:[1,5],realli:1,"true":[0,1,2,3,4,6,7,8,9,10,13,14],archived_t:[9,14],name_last:[1,3],info:4,pull:2,made:1,possibl:[5,8,12],whether:8,maximum:2,tell:12,http403:9,record:[0,7,8],below:[0,1,8,12],http400:[7,8,9],limit:[5,2,8,9],some_array_field:0,otherwis:[10,8],start_t:14,mta:5,connect:[6,3],notif:9,creat:[4,5,7,9,10,12,13,14],"int":5,retriev:[7,1,2,8,9],email_us:[0,5],repres:5,exist:[0,4,5,7,8,10,13],behavior:11,curl:[1,6],lentil:7,probabl:14,echo:[1,3],successfulli:[5,8,9],mailing_subject:12,grp:13,todo:11,when:[8,12,4,9],detail:[1,4,7,8,9,10,13],invalid:[7,8,9],event:[4,7,8,13,12,9,14],field:[0,1,3,4,5,7,8,9,10,11,12,13,14],valid:[5,8,9,13],futur:1,num_skip:8,test:[5,6,7,13,9,14],ignor:8,you:[0,1,2,4,5,7,8,9,10,11,12,13],member_delet:[12,4],member_status_id:[7,5,8,9,13],public_api_kei:[1,6,3],stat:[5,9],claus:[0,7],event_nam:[12,4],e2ma:[1,2,6,3],error_messag:8,param:[9,4],app_messag:[1,3],ella:8,bulk:[1,8],receiv:[0,2,5,8,12,9],heads_up_email:9,longer:9,descript:[4,14],portion:0,opted_out:5,time:[1,2,8,13,5],reply_to:[9,14],resource_url:12,hello:[11,9,14]},objtypes:{"0":"http:get","1":"http:put","2":"http:post","3":"http:delete"},titles:["Search Syntax","Emma API","Pagination","PHP Signup Example","Webhooks","Response","PHP Get Member By Email Example","Searches","Members","Mailings","Fields","Placeholder Syntax","Webhook Usage","Groups","Triggers"],objnames:{"0":["http","get","HTTP get"],"1":["http","put","HTTP put"],"2":["http","post","HTTP post"],"3":["http","delete","HTTP delete"]},filenames:["member_search","index","pagination","php_signup_example","api/external/webhooks","api/external/response","php_get_member_example","api/external/searches","api/external/members","api/external/mailings","api/external/fields","placeholders","webhooks","api/external/groups","api/external/triggers"]}) \ No newline at end of file +Search.setIndex({objects:{"":{"/#account_id/members/#member_id/groups/remove":[8,1,1,"put--#account_id-members-#member_id-groups-remove"],"/#account_id/mailings/#mailing_id/winner/#winner_id":[9,2,1,"post--#account_id-mailings-#mailing_id-winner-#winner_id"],"/#account_id/response/#mailing_id/in_progress":[5,0,1,"get--#account_id-response-#mailing_id-in_progress"],"/#account_id/members/groups/remove":[8,1,1,"put--#account_id-members-groups-remove"],"/#account_id/mailings/#mailing_id/searches":[9,0,1,"get--#account_id-mailings-#mailing_id-searches"],"/#account_id/fields":[10,2,1,"post--#account_id-fields"],"/#account_id/members/#group_id/copy":[8,1,1,"put--#account_id-members-#group_id-copy"],"/#account_id/members/status":[8,1,1,"put--#account_id-members-status"],"/#account_id/response/#mailing_id/shares/overview":[5,0,1,"get--#account_id-response-#mailing_id-shares-overview"],"/#account_id/webhooks/events":[4,0,1,"get--#account_id-webhooks-events"],"/#account_id/members/#member_id/optout":[8,0,1,"get--#account_id-members-#member_id-optout"],"/#account_id/webhooks":[4,3,1,"delete--#account_id-webhooks"],"/#account_id/fields/#field_id":[10,3,1,"delete--#account_id-fields-#field_id"],"/#account_id/response/#mailing_id":[5,0,1,"get--#account_id-response-#mailing_id"],"/#account_id/groups/#member_group_id/members/remove":[13,3,1,"delete--#account_id-groups-#member_group_id-members-remove"],"/#account_id/searches":[7,2,1,"post--#account_id-searches"],"/#account_id/members/imports":[8,0,1,"get--#account_id-members-imports"],"/#account_id/forwards/#mailing_id/#member_id":[9,2,1,"post--#account_id-forwards-#mailing_id-#member_id"],"/#account_id/response/#mailing_id/customer_share_clicks":[5,0,1,"get--#account_id-response-#mailing_id-customer_share_clicks"],"/#account_id/mailings/#mailing_id/messages/#member_id":[9,0,1,"get--#account_id-mailings-#mailing_id-messages-#member_id"],"/#account_id/members/#member_id/mailings":[8,0,1,"get--#account_id-members-#member_id-mailings"],"/#account_id/groups/#from_group_id/#to_group_id/members/copy":[13,1,1,"put--#account_id-groups-#from_group_id-#to_group_id-members-copy"],"/#account_id/triggers":[14,2,1,"post--#account_id-triggers"],"/#account_id/triggers/#trigger_id":[14,3,1,"delete--#account_id-triggers-#trigger_id"],"/#account_id/members/delete":[8,1,1,"put--#account_id-members-delete"],"/#account_id/mailings/#mailing_id/groups":[9,0,1,"get--#account_id-mailings-#mailing_id-groups"],"/#account_id/response/#mailing_id/forwards":[5,0,1,"get--#account_id-response-#mailing_id-forwards"],"/#account_id/members/#member_id":[8,3,1,"delete--#account_id-members-#member_id"],"/#account_id/triggers/#trigger_id/mailings":[14,0,1,"get--#account_id-triggers-#trigger_id-mailings"],"/#account_id/searches/#search_id/members":[7,0,1,"get--#account_id-searches-#search_id-members"],"/#account_id/members/status/:status_from/to/:status_to":[8,1,1,"put--#account_id-members-status--status_from-to--status_to"],"/#account_id/response/#mailing_id/sends":[5,0,1,"get--#account_id-response-#mailing_id-sends"],"/#account_id/members":[8,3,1,"delete--#account_id-members"],"/#account_id/members/email/:email":[8,0,1,"get--#account_id-members-email--email"],"/#account_id/response/#mailing_id/links":[5,0,1,"get--#account_id-response-#mailing_id-links"],"/#account_id/searches/#search_id":[7,3,1,"delete--#account_id-searches-#search_id"],"/#account_id/members/imports/#import_id/members":[8,0,1,"get--#account_id-members-imports-#import_id-members"],"/#account_id/fields/#field_id/clear":[10,2,1,"post--#account_id-fields-#field_id-clear"],"/#account_id/groups/#member_group_id/members":[13,3,1,"delete--#account_id-groups-#member_group_id-members"],"/#account_id/members/imports/#import_id":[8,0,1,"get--#account_id-members-imports-#import_id"],"/#account_id/response":[5,0,1,"get--#account_id-response"],"/#account_id/response/#mailing_id/opens":[5,0,1,"get--#account_id-response-#mailing_id-opens"],"/#account_id/members/imports/delete":[8,3,1,"delete--#account_id-members-imports-delete"],"/#account_id/mailings":[9,0,1,"get--#account_id-mailings"],"/#account_id/mailings/cancel/#mailing_id":[9,3,1,"delete--#account_id-mailings-cancel-#mailing_id"],"/#account_id/mailings/validate":[9,2,1,"post--#account_id-mailings-validate"],"/#account_id/response/#mailing_id/deliveries":[5,0,1,"get--#account_id-response-#mailing_id-deliveries"],"/#account_id/mailings/#mailing_id/members":[9,0,1,"get--#account_id-mailings-#mailing_id-members"],"/#account_id/response/#share_id/customer_share":[5,0,1,"get--#account_id-response-#share_id-customer_share"],"/#account_id/webhooks/#webhook_id":[4,3,1,"delete--#account_id-webhooks-#webhook_id"],"/#account_id/members/add":[8,2,1,"post--#account_id-members-add"],"/#account_id/response/#mailing_id/optouts":[5,0,1,"get--#account_id-response-#mailing_id-optouts"],"/#account_id/response/#mailing_id/shares":[5,0,1,"get--#account_id-response-#mailing_id-shares"],"/#account_id/groups/#member_group_id":[13,3,1,"delete--#account_id-groups-#member_group_id"],"/#account_id/mailings/#mailing_id":[9,3,1,"delete--#account_id-mailings-#mailing_id"],"/#account_id/members/#member_id/groups":[8,3,1,"delete--#account_id-members-#member_id-groups"],"/#account_id/groups":[13,2,1,"post--#account_id-groups"],"/#account_id/response/#mailing_id/clicks":[5,0,1,"get--#account_id-response-#mailing_id-clicks"],"/#account_id/mailings/#mailing_id/headsup":[9,0,1,"get--#account_id-mailings-#mailing_id-headsup"],"/#account_id/response/#mailing_id/signups":[5,0,1,"get--#account_id-response-#mailing_id-signups"],"/#account_id/response/#mailing_id/customer_shares":[5,0,1,"get--#account_id-response-#mailing_id-customer_shares"]}},terms:{all:[0,1,4,5,8,9,10,11,12,13,14],code:[0,1,6,3],change_typ:8,queri:[0,2,4],month:[0,5,9,14],four:[0,5],mile:0,least:0,field_creat:[12,4],link_target:[5,9],content:[1,11,6,9,3],privat:1,specif:[8,9,4],friendli:5,send:[1,9,4,3,5],customer_share_click:5,those:[5,12],group_upd:[12,4],sent:[5,8,12,9,14],curl_clos:[1,6,3],brown:[7,8],digit:5,everi:0,string:[0,4,5,7,8,9,10,12,13,14],fals:[1,3,4,5,6,7,8,9,10,13,14],webhook:[1,12,4],mailing_status:9,trigger_id:14,webview_share_click:5,affect:[7,8],member_add:[12,4],create_mail:9,new_boolean:10,foo:0,level:1,group_delet:[12,4],list:[0,1,2,4,5,7,8,9,10,11,12,13,14],upload:8,iter:2,"try":8,item:2,plaintext_onli:[9,14],div:[4,5,7,8,9,10,13,14],survey_id:14,pleas:[1,8,11,9],prevent:2,work:[1,4],ten:0,sync:10,sign:[0,5,4],past:1,second:[0,7,14],follow:[0,1,4,5,7,9,11,13],further:1,durat:9,click:[0,4,5,7,8,12,14],append:2,even:10,what:1,hide:[4,5,7,8,9,10,13,14],appear:1,from_group_id:13,section:1,current:[8,12,9],delet:[1,4,7,8,9,10,12,13,14],"new":[1,4,5,7,8,9,10,11,13,14],net:[1,2,6,3],delivery_t:8,method:[5,8,13,4,9],can:[0,1,2,4,5,7,8,9,11,12,13],widget:[7,10,8,9,13],hash:0,datematch:0,displai:10,variat:9,gener:[0,8,12,14],onli:[5,8],here:[0,1,3,5,6,8],bodi:9,let:[1,4,10],address:[0,1,8,6,9],along:8,sinc:8,valu:[0,5,7,8,10,11],field_upd:[12,4],search:[0,1,9,7],survei:14,sender:[9,14],larger:2,queue:5,prior:9,action:[0,8],chang:[8,4],name_first:[1,3],campaign:5,newbi:5,appli:[7,14],prefer:0,myemma:[4,5,7,8,9,13],filenam:8,customer_shar:5,"boolean":[0,1,5,7,8,9,10,13,14],curlopt_postfield:[1,3],total:5,jone:[7,5,8,13],select:10,newslett:[7,8,13],describ:7,would:[0,1],regist:4,two:[0,5],next:[0,1],create_webhook:4,few:[5,8],call:[1,2,3,4,6,8,12],criteria:7,member_add_to_group:[12,4],type:[1,3,4,5,6,7,10,9,14],until:2,more:[0,4,7,8,9,13],peopl:5,relat:[1,8,11,9],about:[10,8,12,4,9],notic:8,thide:[4,5,7,8,9,10,13,14],flag:[5,7,8,10,9,14],exce:2,indic:8,examin:1,particular:[1,4,5,8,10,12,9],in_progress:5,origin:9,must:[0,7,13,10],none:9,endpoint:[1,4,5,7,8,9,10,13,14],join:[0,7],hour:0,setup:1,member_sinc:[0,5,7,8,9,13],uniqu:5,histori:8,soup:7,remain:[0,9],archiv:[5,9],member_optout:[12,4],drill:5,control:[1,11,9],quickstart:1,give:5,forward_mailing_id:5,email_domain:[0,5],share:[0,5,8,12,4],accept:[0,5,7,8,9,10,11,13,14],total_click:5,tag:[11,9],want:[1,12,13,5],occur:[7,12],some_numeric_field:0,delai:14,alwai:0,webhook_event_id:4,cours:1,end:[2,8],first_nam:[1,3,5,7,8,9,10,11,13,14],started_or_finish:[9,14],anoth:[9,13],get:[1,4,5,6,7,8,9,10,13,14],message_open:[12,4],html_bodi:[9,14],share_statu:5,push_offset:14,del_statu:5,tild:5,num_members_upd:8,simpl:0,chri:9,pizza:[7,8],map:0,autent:1,referenc:7,xxxx:6,sundai:0,membership:13,taco:[7,5,8,9,13],mai:12,multipl:[10,8],data:[1,3,4,5,10,12],welcom:11,add_onli:8,"short":0,json_encod:[1,3],optout:[5,8,12,13],num_dupl:8,favorit:10,correspond:[0,1],greet:11,predic:[0,1],issu:[1,10],"12t11":[7,5,8,9,13],combin:7,allow:[0,7,8],some_zipcode_field:0,signed_up:5,order:[5,10],michel:[8,9],mailing_nam:5,checkbox:10,fields_upd:8,over:2,becaus:12,buyer:[7,8,9,13],comma:[9,13],is_dis:14,vari:8,paramet:[2,4,5,7,8,9,10,13,14],widget_typ:10,style:[0,4,5,7,8,9,10,13,14],group:[0,1,3,4,7,8,9,12,13,14],curl_setopt:[1,6,3],how:[7,1,2,4],import_start:8,better:[13,14],platform:1,pend:[1,9],mailing_list:9,onc:9,mail:[0,1,4,5,8,11,12,9,14],hidden:13,main:1,might:[1,4],link_nam:[5,9],them:[8,9],"return":[0,1,4,5,7,8,9,10,12,13,14],greater:[0,8],thei:[0,9],food:10,timestamp:[0,5,12,9,10],spell:4,dai:0,auth:1,instead:[12,2,8],now:5,down:5,term:[0,1],alex:9,name:[0,4,5,7,8,9,10,11,13,14],edit:[7,1,14,10],curl_getinfo:[1,6,3],authent:[1,6,4,3],successufulli:4,separ:[1,9,13],each:[1,2,5,9,12,11,13],found:[8,9,4,14],updat:[4,7,8,9,10,12,13,14],mean:0,status:[8,9],domain:0,shortcut_nam:10,weight:[4,5,7,8,9,10,13,14],resum:9,individu:[1,8],hard:[0,5],last_nam:[1,3,5,7,8,9,10,11,13,14],"05t15":5,birthdai:[10,14],expect:1,year:[0,5,9,14],our:[1,11,12,4,14],happen:[1,4,5],extract:11,short_display_nam:10,special:[0,7,8,13],out:[0,1,4,5,7,8,10,13],variabl:[1,6,3],message_shar:[12,4],network:[5,12],private_api_kei:[1,6,3],check_multipl:10,categori:1,rel:0,print:6,correct:10,statist:8,benjamin:8,qualifi:11,insid:1,advanc:0,contain:[0,5,7,13,10,9],differ:0,standard:[5,9],status_from:8,base:[5,8],recipient_search:9,dictionari:8,put:[4,7,8,9,10,13,14],"13t23":[7,5,8],visit:11,could:1,omit:5,success:[7,1,9,13,3],filter:[0,1,7],search_id:7,pagin:[1,2],member_id:[5,7,8,9,12,13],summari:[1,5],assign:9,first:[0,1,10,5],oper:[0,1,7,14],rang:5,notifi:12,directli:0,curlopt_ssl_verifyp:[1,6,3],curl_init:[1,6,3],number:[5,2,13,3,10],placehold:[1,11],date:[0,5,8,10,11,14],unlik:9,alreadi:[10,9,13],done:8,plaintext_pref:[7,8,9,13],oppos:8,open:[0,3,4,5,6,7,8,12],payload:4,fanci:5,size:2,given:[0,8,9,4],"long":10,script:1,associ:[1,8,9,4,5],system:[8,12,4,14],messag:[4,5,8,12,11,9,14],attach:11,friend:11,curlinfo_http_cod:[1,6,3],shell:0,option:[0,5,7,8,9,10,13,14],especi:8,signup:[0,1,3,4,5,8,12,14],copi:[8,13],member_upd:[12,4],specifi:[0,2,7,8,10,11,9,14],curl_exec:[1,6,3],curlopt_httphead:[1,6,3],member_signup:[12,4],create_search:7,part:[0,9],enclos:11,than:[0,1,2,3,12,13],with_plaintext:9,"02t10":[5,8],"02t11":[5,8],"02t13":5,nathan:8,whenev:8,provid:[1,5,8,12,9,14],remov:[12,8,13,4],mailing_start:4,rate:2,structur:7,charact:9,greg:8,trackabl:11,were:5,minut:0,danc:1,error_count:[7,8,9,13],pre:[4,5,7,8,9,10,13,14],cleaner:1,sai:0,share_id:5,signup_form_id:[0,8,12,9,14],plaintext:[5,9,14],pass:[1,3],ani:[0,1,2,7,8,9],have:[0,5,8,12,9],tabl:5,seen:5,"null":[7,8,13,10,9,14],kevin:[9,14],signup_mail:0,caus:14,inform:[1,4,6,8,9,10,13],object_id:14,note:[1,8,9,4],also:[0,4,5,7,8,9,11,13],exampl:[0,1,3,5,6,7,11],take:[0,4],which:[0,1,4,8,10,12,9,14],some_number_field:0,singl:[0,1,3,4,5,8,10,12,13],excit:11,sure:1,delete_memb:13,normal:9,parent_mail:14,recipient_count:[5,9,14],previou:9,field_id:[10,12,14],last_run_at:7,most:14,"04t09":[7,14],pair:11,"class":[4,5,7,8,9,10,13,14],member_group_id:[8,9,13],mcconnel:[9,14],url:[1,3,4,5,6,12],mailing_finish:[12,4],clear:10,request:[1,2,3],doe:[0,5,7,8,10,13],member_status_upd:[12,4],declar:9,tech:4,determin:1,dataset:10,dow:0,recipi:9,"6db0cc7e6fdb2da589b65f29d90c96b6":9,show:[4,5,7,8,9,10,11,13,14],text:[10,11,12],radiu:0,syntax:[0,1,11,9],radio:10,font:[4,5,7,8,9,10,13,14],fine:9,find:[1,6,5],status_to:8,toast:[7,5,8,13],access:[1,5],giant:12,just:[0,9],pretti:8,column_ord:10,explain:[0,1],winner:9,activ:[1,5,7,8,13,9],figur:1,should:[1,2,3,7,8,11,9],templat:[11,14],share_count:5,count:[1,2,3,5],variou:[8,13],confirmed_opt_in:[7,8,9,13],familiar:1,express:0,account:[1,4,5,7,8,10,13,14],cannot:[8,9,4],progress:9,report:[10,8],requir:[1,7,8,10,11,9],object:[5,13],favorite_food:[5,7,8,13,10,9],bar:0,organ:1,include_archiv:[5,9],"public":1,"default":[5,11,13,4,9],ref_member_id:5,message_share_click:[12,4],through:[1,8,4],where:[0,1,8,11,7],view:1,set:[0,1,2,3,6,8,9,12,13],link_id:[0,5,12,9,14],see:[7,1,8],result:[0,1,2,5,8,9],respons:[0,1,2,4,5,7,8,9,10,13,14],fail:[5,9,4],themselv:2,member_field:[0,7],xxxxx:6,subject:[8,12,9,14],statu:[1,4,5,7,8,9,12,13],fancyonion:11,kei:[0,1,11,4],is_schedul:9,message_forward:[12,4],databas:8,user:[0,8,9,13],last_modified_at:[7,8,9,13],addresse:5,written:1,between:[0,7,2],"import":[1,8,12,4,10],subscript:[1,3],entiti:1,curlopt_url:[1,6,3],email:[0,1,3,5,6,7,8,9,13],wide:14,extend:1,numer:10,http404:[4,5,7,8,9,10,13,14],job:13,entir:[0,8],share_click:5,to_group_id:13,curlopt_returntransf:[1,6,3],addit:[0,1,8,9,11,13],member_remove_from_group:[12,4],send_start:[0,9,14],protect:1,accident:2,last:[0,5,10],delimit:5,pertain:5,message_click:[12,4],curlopt_post:[1,3],audienc:[1,8,9],mang:0,http500:14,seri:5,com:[4,5,6,7,8,9,11,13],zip_code_field:0,"03t15":[7,5,8,13],point:1,toni:[7,8],overview:[0,1,11,12,5],period:1,winner_id:9,colon:[7,11],optout_count:[7,8,9,13],suppli:9,cancel:9,tuesdai:0,duplic:5,quit:[5,8],user_id:4,recur:14,headsup:9,addition:[1,2],due:5,been:[1,8,10,5],mark:[8,9],whom:9,tshow:[4,5,7,8,9,10,13,14],trigger:[1,4,5,7,8,9,10,12,13,14],unsubscrib:0,treat:8,interest:[10,4],basic:[0,1,4,8,13,14],monthli:[7,8,13],blob:4,mailing_mailing_id:5,mailing_id:[0,5,8,12,9,14],fire:[8,4,14],xxx:[1,3],argument:[0,5],link_ord:[5,9],input:1,present:7,clicked_uniqu:5,"case":[1,8],look:[1,14,10],frozen:9,easier:12,email_error:[7,8,9,13],defin:[0,10,8,9],"while":0,outcom:5,abov:[0,1,8,7],error:[1,3,6,8,10,13],loop:8,opt:[0,4,5,7,8,13],readi:9,deliv:5,recipient_group:9,equal:0,itself:0,new_statu:12,webhook_id:4,recipient_memb:9,perform:8,make:[1,12,6,10],belong:[0,8,4],same:4,check:[8,6,9],member:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14],handl:1,html:9,split:9,document:[1,11,12],complet:[1,3,4,6,8,9],week:0,finish:[5,12,4],http:[1,2,3,4,5,6,11,9],href:[4,5,7,8,9,10,13,14],nest:0,someon:4,rais:[4,5,7,8,9,10,13,14],initi:[10,9],php:[1,6,3],bob:[7,5],recent:1,kept:11,center:0,min:5,well:5,inherit:9,person:9,mailing_typ:[9,14],without:0,command:1,thi:[0,1,4,5,7,8,9,10,12,13,14],undefin:0,http_code:[1,6,3],latest:11,construct:[0,7,9],identifi:8,paus:9,execut:[1,3],less:0,resp:[4,5,7,8,9,10,13,14],"_post":[1,3],against:0,aspect:13,recipient_email:9,source_filenam:8,yet:5,smith:[7,5,8,9,13],"12t09":[7,8],display_nam:10,easi:[10,12],"01t00":8,had:0,littl:1,blog:4,add:[12,1,8,13,3],other:[1,8,9,3,5],curlopt_userpwd:[1,6,3],import_finish:[8,12,4],schedul:9,els:[1,6,3],save:7,match:[0,7],build:1,sanit:1,applic:[1,6,3],account_id:[1,3,4,5,6,7,8,9,10,12,13,14],disposit:1,crud:[8,13,14],print_r:[6,3],mailing_statu:[9,14],know:[5,4],background:13,parent_mailing_id:[9,14],bit:1,insert:11,emma:[1,5,7,8,9,12,13],like:1,onion:11,deprec:4,arbitrari:8,manual:9,integ:[1,8,14,10,5],public_kei:4,api:[1,2,6,12,3],either:[0,5,7],bunch:0,output:9,group_id:[1,8,12,3],soft:[0,5],manag:[0,1,13,4],import_id:[8,12],www:[5,9],old:7,deal:[8,13],captur:1,arrai:[0,1,3,5,6,7,8,9,10,12,13,14],some:[1,11,5],field_delet:[12,4],certain:12,intern:10,sampl:[1,4,5,7,8,9,10,13,14],elaps:[2,9],home:11,deleted_at:[7,8,13,10,9,14],some_string_field:0,librari:11,bounce_count:[7,8,9,13],confirm:8,broad:12,per:5,send_finish:[9,14],larg:[0,2],condit:7,three:9,network_cod:12,localhost:9,refer:[5,7,8,13,10,9],with_html_bodi:9,who:[0,5],bold:[4,5,7,8,9,10,13,14],event_typ:14,inspect:1,usag:[1,8,12],num_members_ad:8,fulli:11,from:[1,4,8,9,12,13,14],post:[1,3,4,7,8,9,10,12,13,14],group_creat:[12,4],gladi:[7,5,8,13],actual:5,zip:0,groups_upd:8,column:10,page:2,includ:[1,5,7,8,9,10,13],webview:9,disabl:[9,14],block:[1,2],yyyi:5,member_data:[1,3],glob:0,bounc:[0,5],within:0,encod:[9,4],delivery_typ:[5,8],compos:0,webview_shar:5,field_typ:10,active_count:[7,8,9,13],public_webview_url:9,pivot:5,your:[1,4,5,7,8,9,10,13],websit:11,span:[4,5,7,8,9,10,13,14],wai:[1,12],area:1,overus:2,group_nam:[8,12,13,9],support:12,unique_click:5,json:[0,1,3,4,6,7],fast:8,custom:[5,8,11,10],avail:[0,11,4],start:[1,2,8,4],interfac:12,send_at:[9,14],exceed:2,"var":3,interv:[0,14],deliveri:5,head:[1,6,9,3],form:[1,3,4,6,8,10,14],enough:2,forc:1,forward:[0,4,5,8,12,9],"31st":0,group_typ:[8,9,13],push_offset_unit:14,link:[0,4,5,11,9,14],line:[1,5],realli:1,"true":[0,1,2,3,4,6,7,8,9,10,13,14],archived_t:[9,14],name_last:[1,3],info:4,pull:2,made:1,possibl:[5,8,12],whether:8,maximum:2,tell:12,http403:9,record:[0,7,8],below:[0,1,8,12],http400:[7,8,9],limit:[5,2,8,9],some_array_field:0,otherwis:[10,8],start_t:14,mta:5,connect:[6,3],notif:9,creat:[4,5,7,9,10,12,13,14],"int":5,retriev:[7,1,2,8,9],email_us:[0,5],repres:5,exist:[0,4,5,7,8,10,13],behavior:11,curl:[1,6],lentil:7,probabl:14,echo:[1,3],successfulli:[5,8,9],mailing_subject:12,grp:13,todo:11,when:[8,12,4,9],detail:[1,4,7,8,9,10,13],invalid:[7,8,9],event:[4,7,8,13,12,9,14],field:[0,1,3,4,5,7,8,9,10,11,12,13,14],valid:[5,8,9,13],futur:1,num_skip:8,test:[5,6,7,13,9,14],ignor:8,you:[0,1,2,4,5,7,8,9,10,11,12,13],member_delet:[12,4],member_status_id:[7,5,8,9,13],public_api_kei:[1,6,3],stat:[5,9],claus:[0,7],event_nam:[12,4],e2ma:[1,2,6,3],error_messag:8,param:[9,4],app_messag:[1,3],ella:8,bulk:[1,8],receiv:[0,2,5,8,12,9],heads_up_email:9,longer:9,descript:[4,14],portion:0,opted_out:5,time:[1,2,8,13,5],reply_to:[9,14],resource_url:12,hello:[11,9,14]},objtypes:{"0":"http:get","1":"http:put","2":"http:post","3":"http:delete"},titles:["Search Syntax","Emma API","Pagination","PHP Signup Example","Webhooks","Response","PHP Get Member By Email Example","Searches","Members","Mailings","Fields","Placeholder Syntax","Webhook Usage","Groups","Triggers"],objnames:{"0":["http","get","HTTP get"],"1":["http","put","HTTP put"],"2":["http","post","HTTP post"],"3":["http","delete","HTTP delete"]},filenames:["member_search","index","pagination","php_signup_example","api/external/webhooks","api/external/response","php_get_member_example","api/external/searches","api/external/members","api/external/mailings","api/external/fields","placeholders","webhooks","api/external/groups","api/external/triggers"]}) \ No newline at end of file diff --git a/webhooks.html b/webhooks.html index 72c29bd..e009fde 100644 --- a/webhooks.html +++ b/webhooks.html @@ -507,7 +507,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 03, 2013 at 02:13 PM. + Last updated on Jan 04, 2013 at 09:46 AM. </div> </body> </html> \ No newline at end of file From 41c9922cf481f888f4116636febb91a31bf1335b Mon Sep 17 00:00:00 2001 From: Hernan Ciudad <hernan@myemma.com> Date: Mon, 7 Jan 2013 14:57:00 -0600 Subject: [PATCH 018/219] Update audience documentation. --- _sources/index.txt | 4 +- _sources/php_signup_example.txt | 4 +- _static/basic.css | 16 +-- _static/doctools.js | 10 +- _static/searchtools.js | 140 ++++++++------------- _static/underscore.js | 7 -- api/external/fields.html | 46 ++++--- api/external/groups.html | 99 ++++++++------- api/external/mailings.html | 108 +++++++++------- api/external/members.html | 212 ++++++++++++++++++++------------ api/external/response.html | 122 ++++++++++-------- api/external/searches.html | 60 +++++---- api/external/triggers.html | 56 +++++---- api/external/webhooks.html | 49 ++++---- genindex.html | 18 ++- http-routingtable.html | 13 +- index.html | 26 +--- member_search.html | 8 +- objects.inv | Bin 1369 -> 1388 bytes pagination.html | 8 +- php_get_member_example.html | 8 +- php_signup_example.html | 14 +-- placeholders.html | 8 +- search.html | 6 +- searchindex.js | 2 +- webhooks.html | 8 +- 26 files changed, 550 insertions(+), 502 deletions(-) diff --git a/_sources/index.txt b/_sources/index.txt index 92df53d..6f54024 100644 --- a/_sources/index.txt +++ b/_sources/index.txt @@ -54,8 +54,8 @@ Then, we'll want to capture the POSTed form variables from the request. $member_data = array( "email" => $email, "fields" => array( - "name_first" => $first_name, - "name_last" => $last_name + "first_name" => $first_name, + "last_name" => $last_name ), "group_ids" => $groups ); diff --git a/_sources/php_signup_example.txt b/_sources/php_signup_example.txt index 03f8048..ed653fb 100644 --- a/_sources/php_signup_example.txt +++ b/_sources/php_signup_example.txt @@ -21,8 +21,8 @@ Here's the complete example of the PHP code to signup a single member. $member_data = array( "email" => $email, "fields" => array( - "name_first" => $first_name, - "name_last" => $last_name + "first_name" => $first_name, + "last_name" => $last_name ), "group_ids" => $groups ); diff --git a/_static/basic.css b/_static/basic.css index 43e8baf..32630d5 100644 --- a/_static/basic.css +++ b/_static/basic.css @@ -79,14 +79,6 @@ div.sphinxsidebar input { font-size: 1em; } -div.sphinxsidebar #searchbox input[type="text"] { - width: 170px; -} - -div.sphinxsidebar #searchbox input[type="submit"] { - width: 30px; -} - img { border: 0; } @@ -244,6 +236,7 @@ img.align-center, .figure.align-center, object.align-center { } .align-center { + clear: both; text-align: center; } @@ -447,11 +440,6 @@ dl.glossary dt { font-style: oblique; } -abbr, acronym { - border-bottom: dotted 1px; - cursor: help; -} - /* -- code displays --------------------------------------------------------- */ pre { @@ -537,4 +525,4 @@ span.eqno { #top-link { display: none; } -} \ No newline at end of file +} diff --git a/_static/doctools.js b/_static/doctools.js index d4619fd..8b9bd2c 100644 --- a/_static/doctools.js +++ b/_static/doctools.js @@ -2,7 +2,7 @@ * doctools.js * ~~~~~~~~~~~ * - * Sphinx JavaScript utilities for all documentation. + * Sphinx JavaScript utilties for all documentation. * * :copyright: Copyright 2007-2011 by the Sphinx team, see AUTHORS. * :license: BSD, see LICENSE for details. @@ -185,9 +185,9 @@ var Documentation = { body.highlightText(this.toLowerCase(), 'highlighted'); }); }, 10); - $('<p class="highlight-link"><a href="javascript:Documentation.' + - 'hideSearchWords()">' + _('Hide Search Matches') + '</a></p>') - .appendTo($('#searchbox')); + $('<li class="highlight-link"><a href="javascript:Documentation.' + + 'hideSearchWords()">' + _('Hide Search Matches') + '</a></li>') + .appendTo($('.sidebar .this-page-menu')); } }, @@ -213,7 +213,7 @@ var Documentation = { * helper function to hide the search marks again */ hideSearchWords : function() { - $('#searchbox .highlight-link').fadeOut(300); + $('.sidebar .this-page-menu li.highlight-link').fadeOut(300); $('span.highlighted').removeClass('highlighted'); }, diff --git a/_static/searchtools.js b/_static/searchtools.js index 663be4c..dae92b5 100644 --- a/_static/searchtools.js +++ b/_static/searchtools.js @@ -1,6 +1,6 @@ /* - * searchtools.js_t - * ~~~~~~~~~~~~~~~~ + * searchtools.js + * ~~~~~~~~~~~~~~ * * Sphinx JavaScript utilties for the full-text search. * @@ -36,11 +36,10 @@ jQuery.makeSearchSummary = function(text, keywords, hlwords) { return rv; } - /** * Porter Stemmer */ -var Stemmer = function() { +var PorterStemmer = function() { var step2list = { ational: 'ate', @@ -301,20 +300,20 @@ var Search = { }, query : function(query) { - var stopwords = ["and","then","into","it","as","are","in","if","for","no","there","their","was","is","be","to","that","but","they","not","such","with","by","a","on","these","of","will","this","near","the","or","at"]; - - // Stem the searchterms and add them to the correct list - var stemmer = new Stemmer(); + var stopwords = ['and', 'then', 'into', 'it', 'as', 'are', 'in', + 'if', 'for', 'no', 'there', 'their', 'was', 'is', + 'be', 'to', 'that', 'but', 'they', 'not', 'such', + 'with', 'by', 'a', 'on', 'these', 'of', 'will', + 'this', 'near', 'the', 'or', 'at']; + + // stem the searchterms and add them to the correct list + var stemmer = new PorterStemmer(); var searchterms = []; var excluded = []; var hlterms = []; var tmp = query.split(/\s+/); - var objectterms = []; + var object = (tmp.length == 1) ? tmp[0].toLowerCase() : null; for (var i = 0; i < tmp.length; i++) { - if (tmp[i] != "") { - objectterms.push(tmp[i].toLowerCase()); - } - if ($u.indexOf(stopwords, tmp[i]) != -1 || tmp[i].match(/^\d+$/) || tmp[i] == "") { // skip this "word" @@ -345,6 +344,9 @@ var Search = { var filenames = this._index.filenames; var titles = this._index.titles; var terms = this._index.terms; + var objects = this._index.objects; + var objtypes = this._index.objtypes; + var objnames = this._index.objnames; var fileMap = {}; var files = null; // different result priorities @@ -355,19 +357,40 @@ var Search = { $('#search-progress').empty(); // lookup as object - for (var i = 0; i < objectterms.length; i++) { - var others = [].concat(objectterms.slice(0,i), - objectterms.slice(i+1, objectterms.length)) - var results = this.performObjectSearch(objectterms[i], others); - // Assume first word is most likely to be the object, - // other words more likely to be in description. - // Therefore put matches for earlier words first. - // (Results are eventually used in reverse order). - objectResults = results[0].concat(objectResults); - importantResults = results[1].concat(importantResults); - unimportantResults = results[2].concat(unimportantResults); + if (object != null) { + for (var prefix in objects) { + for (var name in objects[prefix]) { + var fullname = (prefix ? prefix + '.' : '') + name; + if (fullname.toLowerCase().indexOf(object) > -1) { + match = objects[prefix][name]; + descr = objnames[match[1]] + _(', in ') + titles[match[0]]; + // XXX the generated anchors are not generally correct + // XXX there may be custom prefixes + result = [filenames[match[0]], fullname, '#'+fullname, descr]; + switch (match[2]) { + case 1: objectResults.push(result); break; + case 0: importantResults.push(result); break; + case 2: unimportantResults.push(result); break; + } + } + } + } } + // sort results descending + objectResults.sort(function(a, b) { + return (a[1] > b[1]) ? -1 : ((a[1] < b[1]) ? 1 : 0); + }); + + importantResults.sort(function(a, b) { + return (a[1] > b[1]) ? -1 : ((a[1] < b[1]) ? 1 : 0); + }); + + unimportantResults.sort(function(a, b) { + return (a[1] > b[1]) ? -1 : ((a[1] < b[1]) ? 1 : 0); + }); + + // perform the search on the required terms for (var i = 0; i < searchterms.length; i++) { var word = searchterms[i]; @@ -466,7 +489,7 @@ var Search = { listItem.slideDown(5, function() { displayNextItem(); }); - }, "text"); + }); } else { // no source available, just display title Search.output.append(listItem); @@ -487,74 +510,9 @@ var Search = { } } displayNextItem(); - }, - - performObjectSearch : function(object, otherterms) { - var filenames = this._index.filenames; - var objects = this._index.objects; - var objnames = this._index.objnames; - var titles = this._index.titles; - - var importantResults = []; - var objectResults = []; - var unimportantResults = []; - - for (var prefix in objects) { - for (var name in objects[prefix]) { - var fullname = (prefix ? prefix + '.' : '') + name; - if (fullname.toLowerCase().indexOf(object) > -1) { - var match = objects[prefix][name]; - var objname = objnames[match[1]][2]; - var title = titles[match[0]]; - // If more than one term searched for, we require other words to be - // found in the name/title/description - if (otherterms.length > 0) { - var haystack = (prefix + ' ' + name + ' ' + - objname + ' ' + title).toLowerCase(); - var allfound = true; - for (var i = 0; i < otherterms.length; i++) { - if (haystack.indexOf(otherterms[i]) == -1) { - allfound = false; - break; - } - } - if (!allfound) { - continue; - } - } - var descr = objname + _(', in ') + title; - anchor = match[3]; - if (anchor == '') - anchor = fullname; - else if (anchor == '-') - anchor = objnames[match[1]][1] + '-' + fullname; - result = [filenames[match[0]], fullname, '#'+anchor, descr]; - switch (match[2]) { - case 1: objectResults.push(result); break; - case 0: importantResults.push(result); break; - case 2: unimportantResults.push(result); break; - } - } - } - } - - // sort results descending - objectResults.sort(function(a, b) { - return (a[1] > b[1]) ? -1 : ((a[1] < b[1]) ? 1 : 0); - }); - - importantResults.sort(function(a, b) { - return (a[1] > b[1]) ? -1 : ((a[1] < b[1]) ? 1 : 0); - }); - - unimportantResults.sort(function(a, b) { - return (a[1] > b[1]) ? -1 : ((a[1] < b[1]) ? 1 : 0); - }); - - return [importantResults, objectResults, unimportantResults] } } $(document).ready(function() { Search.init(); -}); \ No newline at end of file +}); diff --git a/_static/underscore.js b/_static/underscore.js index 5d89914..9146e08 100644 --- a/_static/underscore.js +++ b/_static/underscore.js @@ -1,10 +1,3 @@ -// Underscore.js 0.5.5 -// (c) 2009 Jeremy Ashkenas, DocumentCloud Inc. -// Underscore is freely distributable under the terms of the MIT license. -// Portions of Underscore are inspired by or borrowed from Prototype.js, -// Oliver Steele's Functional, and John Resig's Micro-Templating. -// For all details and documentation: -// http://documentcloud.github.com/underscore/ (function(){var j=this,n=j._,i=function(a){this._wrapped=a},m=typeof StopIteration!=="undefined"?StopIteration:"__break__",b=j._=function(a){return new i(a)};if(typeof exports!=="undefined")exports._=b;var k=Array.prototype.slice,o=Array.prototype.unshift,p=Object.prototype.toString,q=Object.prototype.hasOwnProperty,r=Object.prototype.propertyIsEnumerable;b.VERSION="0.5.5";b.each=function(a,c,d){try{if(a.forEach)a.forEach(c,d);else if(b.isArray(a)||b.isArguments(a))for(var e=0,f=a.length;e<f;e++)c.call(d, a[e],e,a);else{var g=b.keys(a);f=g.length;for(e=0;e<f;e++)c.call(d,a[g[e]],g[e],a)}}catch(h){if(h!=m)throw h;}return a};b.map=function(a,c,d){if(a&&b.isFunction(a.map))return a.map(c,d);var e=[];b.each(a,function(f,g,h){e.push(c.call(d,f,g,h))});return e};b.reduce=function(a,c,d,e){if(a&&b.isFunction(a.reduce))return a.reduce(b.bind(d,e),c);b.each(a,function(f,g,h){c=d.call(e,c,f,g,h)});return c};b.reduceRight=function(a,c,d,e){if(a&&b.isFunction(a.reduceRight))return a.reduceRight(b.bind(d,e),c); var f=b.clone(b.toArray(a)).reverse();b.each(f,function(g,h){c=d.call(e,c,g,h,a)});return c};b.detect=function(a,c,d){var e;b.each(a,function(f,g,h){if(c.call(d,f,g,h)){e=f;b.breakLoop()}});return e};b.select=function(a,c,d){if(a&&b.isFunction(a.filter))return a.filter(c,d);var e=[];b.each(a,function(f,g,h){c.call(d,f,g,h)&&e.push(f)});return e};b.reject=function(a,c,d){var e=[];b.each(a,function(f,g,h){!c.call(d,f,g,h)&&e.push(f)});return e};b.all=function(a,c,d){c=c||b.identity;if(a&&b.isFunction(a.every))return a.every(c, diff --git a/api/external/fields.html b/api/external/fields.html index e75a52f..c3a22b8 100644 --- a/api/external/fields.html +++ b/api/external/fields.html @@ -30,7 +30,7 @@ <script type="text/javascript">try{Typekit.load();}catch(e){}</script> <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="top" title="audience v0.1 documentation" href="../../index.html" /> <link rel="next" title="Groups" href="groups.html" /> <link rel="prev" title="Emma API" href="../../index.html" /> <link rel="icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> @@ -93,7 +93,7 @@ <h3>Navigation</h3> <li class="right" > <a href="../../index.html" title="Emma API" accesskey="P">previous</a> |</li> - <li><a href="../../index.html">audience 0.1 documentation</a> »</li> + <li><a href="../../index.html">audience v0.1 documentation</a> »</li> </ul> </div> @@ -113,18 +113,19 @@ <h1>Fields<a class="headerlink" href="#fields" title="Permalink to this headline <dl class="get"> <dt id="get--#account_id-fields"> <tt class="descname">GET </tt><tt class="descname">/#account_id/fields</tt><a class="headerlink" href="#get--#account_id-fields" title="Permalink to this definition">¶</a></dt> -<dd><p>Gets a list of this account’s defined fields.</p> +<dd><p><tt class="docutils literal"><span class="pre">GET</span> <span class="pre">/#account_id/fields</span></tt></p> +<p>Gets a list of this account’s defined fields.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> +<tr class="field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> <li><strong>deleted</strong> (<em>boolean</em>) – Accepts True or 1. Optional flag to include deleted fields.</li> </ul> </td> </tr> -<tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first last">An array of fields.</p> +<tr class="field"><th class="field-name">Returns :</th><td class="field-body"><p class="first last">An array of fields.</p> </td> </tr> </tbody> @@ -199,21 +200,22 @@ <h1>Fields<a class="headerlink" href="#fields" title="Permalink to this headline <dl class="get"> <dt id="get--#account_id-fields-#field_id"> <tt class="descname">GET </tt><tt class="descname">/#account_id/fields/#field_id</tt><a class="headerlink" href="#get--#account_id-fields-#field_id" title="Permalink to this definition">¶</a></dt> -<dd><p>Gets the detailed information about a particular field.</p> +<dd><p><tt class="docutils literal"><span class="pre">GET</span> <span class="pre">/#account_id/fields/#field_id</span></tt></p> +<p>Gets the detailed information about a particular field.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> +<tr class="field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> <li><strong>deleted</strong> (<em>boolean</em>) – Accepts True or 1. Optionally show a field even if it has been deleted.</li> </ul> </td> </tr> -<tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">A field.</p> +<tr class="field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">A field.</p> </td> </tr> -<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the field does not exist.</p> +<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the field does not exist.</p> </td> </tr> </tbody> @@ -246,13 +248,14 @@ <h1>Fields<a class="headerlink" href="#fields" title="Permalink to this headline <dl class="post"> <dt id="post--#account_id-fields"> <tt class="descname">POST </tt><tt class="descname">/#account_id/fields</tt><a class="headerlink" href="#post--#account_id-fields" title="Permalink to this definition">¶</a></dt> -<dd><p>Create a new field field.</p> +<dd><p><tt class="docutils literal"><span class="pre">POST</span> <span class="pre">/#account_id/fields</span></tt></p> +<p>Create a new field field.</p> <p>There must not already be a field with this name.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> +<tr class="field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> <li><strong>shortcut_name</strong> (<em>string</em>) – The internal name for this field.</li> <li><strong>display_name</strong> (<em>string</em>) – Display name, used for forms and reports.</li> <li><strong>field_type</strong> (<em>string</em>) – The type of value this field will contain. @@ -265,7 +268,7 @@ <h1>Fields<a class="headerlink" href="#fields" title="Permalink to this headline </ul> </td> </tr> -<tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first last">A reference to the new field.</p> +<tr class="field"><th class="field-name">Returns :</th><td class="field-body"><p class="first last">A reference to the new field.</p> </td> </tr> </tbody> @@ -292,12 +295,13 @@ <h1>Fields<a class="headerlink" href="#fields" title="Permalink to this headline <dl class="delete"> <dt id="delete--#account_id-fields-#field_id"> <tt class="descname">DELETE </tt><tt class="descname">/#account_id/fields/#field_id</tt><a class="headerlink" href="#delete--#account_id-fields-#field_id" title="Permalink to this definition">¶</a></dt> -<dd><p>Deletes a field.</p> +<dd><p><tt class="docutils literal"><span class="pre">DELETE</span> <span class="pre">/#account_id/fields/#field_id</span></tt></p> +<p>Deletes a field.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">True if the field is deleted, False otherwise.</td> +<tr class="field"><th class="field-name">Returns :</th><td class="field-body">True if the field is deleted, False otherwise.</td> </tr> </tbody> </table> @@ -317,12 +321,13 @@ <h1>Fields<a class="headerlink" href="#fields" title="Permalink to this headline <dl class="post"> <dt id="post--#account_id-fields-#field_id-clear"> <tt class="descname">POST </tt><tt class="descname">/#account_id/fields/#field_id/clear</tt><a class="headerlink" href="#post--#account_id-fields-#field_id-clear" title="Permalink to this definition">¶</a></dt> -<dd><p>Clear the member data for the specified field.</p> +<dd><p><tt class="docutils literal"><span class="pre">POST</span> <span class="pre">/#account_id/fields/#field_id/clear</span></tt></p> +<p>Clear the member data for the specified field.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">True if all of the member field data is deleted</td> +<tr class="field"><th class="field-name">Returns :</th><td class="field-body">True if all of the member field data is deleted</td> </tr> </tbody> </table> @@ -343,12 +348,13 @@ <h1>Fields<a class="headerlink" href="#fields" title="Permalink to this headline <dl class="put"> <dt id="put--#account_id-fields-#field_id"> <tt class="descname">PUT </tt><tt class="descname">/#account_id/fields/#field_id</tt><a class="headerlink" href="#put--#account_id-fields-#field_id" title="Permalink to this definition">¶</a></dt> -<dd><p>Updates an existing field.</p> +<dd><p><tt class="docutils literal"><span class="pre">PUT</span> <span class="pre">/#account_id/fields/#field_id</span></tt></p> +<p>Updates an existing field.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">A reference to the updated field.</td> +<tr class="field"><th class="field-name">Returns :</th><td class="field-body">A reference to the updated field.</td> </tr> </tbody> </table> @@ -385,7 +391,7 @@ <h1>Fields<a class="headerlink" href="#fields" title="Permalink to this headline <div id="searchbox" style="display: none"> <h3>Quick search</h3> <form class="search" action="../../search.html" method="get"> - <input type="text" name="q" /> + <input type="text" name="q" size="18" /> <input type="submit" value="Go" /> <input type="hidden" name="check_keywords" value="yes" /> <input type="hidden" name="area" value="default" /> @@ -415,7 +421,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 04, 2013 at 09:46 AM. + Last updated on Jan 07, 2013 at 02:56 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/groups.html b/api/external/groups.html index f345c2b..d0346bb 100644 --- a/api/external/groups.html +++ b/api/external/groups.html @@ -30,7 +30,7 @@ <script type="text/javascript">try{Typekit.load();}catch(e){}</script> <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="top" title="audience v0.1 documentation" href="../../index.html" /> <link rel="next" title="Mailings" href="mailings.html" /> <link rel="prev" title="Fields" href="fields.html" /> <link rel="icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> @@ -93,7 +93,7 @@ <h3>Navigation</h3> <li class="right" > <a href="fields.html" title="Fields" accesskey="P">previous</a> |</li> - <li><a href="../../index.html">audience 0.1 documentation</a> »</li> + <li><a href="../../index.html">audience v0.1 documentation</a> »</li> </ul> </div> @@ -113,15 +113,16 @@ <h1>Groups<a class="headerlink" href="#groups" title="Permalink to this headline <dl class="get"> <dt id="get--#account_id-groups"> <tt class="descname">GET </tt><tt class="descname">/#account_id/groups</tt><a class="headerlink" href="#get--#account_id-groups" title="Permalink to this definition">¶</a></dt> -<dd><p>Get a basic listing of all active member groups for a single account.</p> +<dd><p><tt class="docutils literal"><span class="pre">GET</span> <span class="pre">/#account_id/groups</span></tt></p> +<p>Get a basic listing of all active member groups for a single account.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">An array of groups.</p> +<tr class="field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">An array of groups.</p> </td> </tr> -<tr class="field-even field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first last simple"> +<tr class="field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first last simple"> <li><strong>group_types</strong> (<em>string</em>) – Accepts a comma-separated string with one or more of the following group_types: ‘g’ (group), ‘t’ (test), ‘h’ (hidden), ‘all’ (all). Defaults to ‘g’.</li> @@ -221,15 +222,16 @@ <h1>Groups<a class="headerlink" href="#groups" title="Permalink to this headline <dl class="post"> <dt id="post--#account_id-groups"> <tt class="descname">POST </tt><tt class="descname">/#account_id/groups</tt><a class="headerlink" href="#post--#account_id-groups" title="Permalink to this definition">¶</a></dt> -<dd><p>Create one or more new member groups.</p> +<dd><p><tt class="docutils literal"><span class="pre">POST</span> <span class="pre">/#account_id/groups</span></tt></p> +<p>Create one or more new member groups.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">An array of the new group ids and group names.</p> +<tr class="field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">An array of the new group ids and group names.</p> </td> </tr> -<tr class="field-even field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first last simple"> +<tr class="field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first last simple"> <li><strong>groups</strong> (<em>array</em>) – An array of group objects. Each object must contain a <cite>group_name</cite> parameter.</li> </ul> @@ -265,14 +267,15 @@ <h1>Groups<a class="headerlink" href="#groups" title="Permalink to this headline <dl class="get"> <dt id="get--#account_id-groups-#member_group_id"> <tt class="descname">GET </tt><tt class="descname">/#account_id/groups/#member_group_id</tt><a class="headerlink" href="#get--#account_id-groups-#member_group_id" title="Permalink to this definition">¶</a></dt> -<dd><p>Get the detailed information for a single member group.</p> +<dd><p><tt class="docutils literal"><span class="pre">GET</span> <span class="pre">/#account_id/groups/#member_group_id</span></tt></p> +<p>Get the detailed information for a single member group.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">A group.</td> +<tr class="field"><th class="field-name">Returns :</th><td class="field-body">A group.</td> </tr> -<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the group does not exist.</td> +<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the group does not exist.</td> </tr> </tbody> </table> @@ -301,20 +304,21 @@ <h1>Groups<a class="headerlink" href="#groups" title="Permalink to this headline <dl class="put"> <dt id="put--#account_id-groups-#member_group_id"> <tt class="descname">PUT </tt><tt class="descname">/#account_id/groups/#member_group_id</tt><a class="headerlink" href="#put--#account_id-groups-#member_group_id" title="Permalink to this definition">¶</a></dt> -<dd><p>Update information for a single member group.</p> +<dd><p><tt class="docutils literal"><span class="pre">PUT</span> <span class="pre">/#account_id/groups/#member_group_id</span></tt></p> +<p>Update information for a single member group.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> +<tr class="field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> <li><strong>group_name</strong> (<em>string</em>) – Updated group name.</li> </ul> </td> </tr> -<tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">True if the update was successful</p> +<tr class="field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">True if the update was successful</p> </td> </tr> -<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the group does not exist.</p> +<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the group does not exist.</p> </td> </tr> </tbody> @@ -338,14 +342,15 @@ <h1>Groups<a class="headerlink" href="#groups" title="Permalink to this headline <dl class="delete"> <dt id="delete--#account_id-groups-#member_group_id"> <tt class="descname">DELETE </tt><tt class="descname">/#account_id/groups/#member_group_id</tt><a class="headerlink" href="#delete--#account_id-groups-#member_group_id" title="Permalink to this definition">¶</a></dt> -<dd><p>Delete a single member group.</p> +<dd><p><tt class="docutils literal"><span class="pre">DELETE</span> <span class="pre">/#account_id/groups/#member_group_id</span></tt></p> +<p>Delete a single member group.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">True if the group is deleted.</td> +<tr class="field"><th class="field-name">Returns :</th><td class="field-body">True if the group is deleted.</td> </tr> -<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the group does not exist.</td> +<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the group does not exist.</td> </tr> </tbody> </table> @@ -365,20 +370,21 @@ <h1>Groups<a class="headerlink" href="#groups" title="Permalink to this headline <dl class="get"> <dt id="get--#account_id-groups-#member_group_id-members"> <tt class="descname">GET </tt><tt class="descname">/#account_id/groups/#member_group_id/members</tt><a class="headerlink" href="#get--#account_id-groups-#member_group_id-members" title="Permalink to this definition">¶</a></dt> -<dd><p>Get the members in a single active member group.</p> +<dd><p><tt class="docutils literal"><span class="pre">GET</span> <span class="pre">/#account_id/groups/#member_group_id/members</span></tt></p> +<p>Get the members in a single active member group.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">An array of members.</p> +<tr class="field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">An array of members.</p> </td> </tr> -<tr class="field-even field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> +<tr class="field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> <li><strong>deleted</strong> (<em>boolean</em>) – include deleted members. Optional, defaults to false.</li> </ul> </td> </tr> -<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the group does not exist.</p> +<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the group does not exist.</p> </td> </tr> </tbody> @@ -439,22 +445,23 @@ <h1>Groups<a class="headerlink" href="#groups" title="Permalink to this headline <dl class="put"> <dt id="put--#account_id-groups-#member_group_id-members"> <tt class="descname">PUT </tt><tt class="descname">/#account_id/groups/#member_group_id/members</tt><a class="headerlink" href="#put--#account_id-groups-#member_group_id-members" title="Permalink to this definition">¶</a></dt> -<dd><p>Add a list of members to a single active member group.</p> +<dd><p><tt class="docutils literal"><span class="pre">PUT</span> <span class="pre">/#account_id/groups/#member_group_id/members</span></tt></p> +<p>Add a list of members to a single active member group.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> +<tr class="field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> <li><strong>member_ids</strong> (<em>array</em>) – An array of member ids.</li> </ul> </td> </tr> -<tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">An array of references to the members added to the group. If +<tr class="field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">An array of references to the members added to the group. If a member already exists in the group or is not a valid member, that reference will not be returned.</p> </td> </tr> -<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the group does not exist.</p> +<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the group does not exist.</p> </td> </tr> </tbody> @@ -482,20 +489,21 @@ <h1>Groups<a class="headerlink" href="#groups" title="Permalink to this headline <dl class="put"> <dt id="put--#account_id-groups-#member_group_id-members-remove"> <tt class="descname">PUT </tt><tt class="descname">/#account_id/groups/#member_group_id/members/remove</tt><a class="headerlink" href="#put--#account_id-groups-#member_group_id-members-remove" title="Permalink to this definition">¶</a></dt> -<dd><p>Remove members from a single active member group.</p> +<dd><p><tt class="docutils literal"><span class="pre">PUT</span> <span class="pre">/#account_id/groups/#member_group_id/members/remove</span></tt></p> +<p>Remove members from a single active member group.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> +<tr class="field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> <li><strong>member_ids</strong> (<em>array</em>) – An array of member ids.</li> </ul> </td> </tr> -<tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">An array of references to the removed members.</p> +<tr class="field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">An array of references to the removed members.</p> </td> </tr> -<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the group does not exist.</p> +<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the group does not exist.</p> </td> </tr> </tbody> @@ -525,21 +533,22 @@ <h1>Groups<a class="headerlink" href="#groups" title="Permalink to this headline <dl class="delete"> <dt id="delete--#account_id-groups-#member_group_id-members"> <tt class="descname">DELETE </tt><tt class="descname">/#account_id/groups/#member_group_id/members</tt><a class="headerlink" href="#delete--#account_id-groups-#member_group_id-members" title="Permalink to this definition">¶</a></dt> -<dd><p>Remove all members from a single active member group.</p> +<dd><p><tt class="docutils literal"><span class="pre">DELETE</span> <span class="pre">/#account_id/groups/#member_group_id/members</span></tt></p> +<p>Remove all members from a single active member group.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> +<tr class="field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> <li><strong>member_status_id</strong> (<em>string</em>) – Optional. This is ‘a’ (active), ‘o’ (optout), or ‘e’ (error).</li> </ul> </td> </tr> -<tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">Returns the number of members removed from the group.</p> +<tr class="field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">Returns the number of members removed from the group.</p> </td> </tr> -<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the group does not exist.</p> +<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the group does not exist.</p> </td> </tr> </tbody> @@ -571,22 +580,23 @@ <h1>Groups<a class="headerlink" href="#groups" title="Permalink to this headline <dl class="delete"> <dt id="delete--#account_id-groups-#member_group_id-members-remove"> <tt class="descname">DELETE </tt><tt class="descname">/#account_id/groups/#member_group_id/members/remove</tt><a class="headerlink" href="#delete--#account_id-groups-#member_group_id-members-remove" title="Permalink to this definition">¶</a></dt> -<dd><p>Remove all members from all active member groups as a background job. +<dd><p><tt class="docutils literal"><span class="pre">DELETE</span> <span class="pre">/#account_id/groups/#member_group_id/members/remove</span></tt></p> +<p>Remove all members from all active member groups as a background job. The member_status_id parameter must be set.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> +<tr class="field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> <li><strong>member_status_id</strong> (<em>string</em>) – This is ‘a’ (active), ‘o’ (optout), or ‘e’ (error).</li> </ul> </td> </tr> -<tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">Returns true.</p> +<tr class="field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">Returns true.</p> </td> </tr> -<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the group does not exist.</p> +<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the group does not exist.</p> </td> </tr> </tbody> @@ -618,21 +628,22 @@ <h1>Groups<a class="headerlink" href="#groups" title="Permalink to this headline <dl class="put"> <dt id="put--#account_id-groups-#from_group_id-#to_group_id-members-copy"> <tt class="descname">PUT </tt><tt class="descname">/#account_id/groups/#from_group_id/#to_group_id/members/copy</tt><a class="headerlink" href="#put--#account_id-groups-#from_group_id-#to_group_id-members-copy" title="Permalink to this definition">¶</a></dt> -<dd><p>Copy all the users of one group into another group.</p> +<dd><p><tt class="docutils literal"><span class="pre">PUT</span> <span class="pre">/#account_id/groups/#from_group_id/#to_group_id/members/copy</span></tt></p> +<p>Copy all the users of one group into another group.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> +<tr class="field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> <li><strong>member_status_id</strong> (<em>array</em>) – This is ‘a’ (active), ‘o’ (optout), or ‘e’ (error).</li> </ul> </td> </tr> -<tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">True</p> +<tr class="field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">True</p> </td> </tr> -<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the group does not exist.</p> +<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the group does not exist.</p> </td> </tr> </tbody> @@ -672,7 +683,7 @@ <h1>Groups<a class="headerlink" href="#groups" title="Permalink to this headline <div id="searchbox" style="display: none"> <h3>Quick search</h3> <form class="search" action="../../search.html" method="get"> - <input type="text" name="q" /> + <input type="text" name="q" size="18" /> <input type="submit" value="Go" /> <input type="hidden" name="check_keywords" value="yes" /> <input type="hidden" name="area" value="default" /> @@ -702,7 +713,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 04, 2013 at 09:46 AM. + Last updated on Jan 07, 2013 at 02:56 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/mailings.html b/api/external/mailings.html index 25445de..e0e6109 100644 --- a/api/external/mailings.html +++ b/api/external/mailings.html @@ -30,7 +30,7 @@ <script type="text/javascript">try{Typekit.load();}catch(e){}</script> <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="top" title="audience v0.1 documentation" href="../../index.html" /> <link rel="next" title="Members" href="members.html" /> <link rel="prev" title="Groups" href="groups.html" /> <link rel="icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> @@ -93,7 +93,7 @@ <h3>Navigation</h3> <li class="right" > <a href="groups.html" title="Groups" accesskey="P">previous</a> |</li> - <li><a href="../../index.html">audience 0.1 documentation</a> »</li> + <li><a href="../../index.html">audience v0.1 documentation</a> »</li> </ul> </div> @@ -110,12 +110,13 @@ <h1>Mailings<a class="headerlink" href="#mailings" title="Permalink to this head <dl class="get"> <dt id="get--#account_id-mailings"> <tt class="descname">GET </tt><tt class="descname">/#account_id/mailings</tt><a class="headerlink" href="#get--#account_id-mailings" title="Permalink to this definition">¶</a></dt> -<dd><p>Get information about current mailings.</p> +<dd><p><tt class="docutils literal"><span class="pre">GET</span> <span class="pre">/#account_id/mailings</span></tt></p> +<p>Get information about current mailings.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> +<tr class="field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> <li><strong>include_archived</strong> (<em>boolean</em>) – Optional flag to include archived mailings in the list.</li> <li><strong>mailing_types</strong> (<em>string</em>) – Accepts a comma-separated string with one or more of the following mailing types: ‘m’ (standard), ‘t’ (test), @@ -131,10 +132,10 @@ <h1>Mailings<a class="headerlink" href="#mailings" title="Permalink to this head </ul> </td> </tr> -<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><p class="first"><tt class="docutils literal"><span class="pre">Http400</span></tt> if invalid mailing types or statuses are specified.</p> +<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><p class="first"><tt class="docutils literal"><span class="pre">Http400</span></tt> if invalid mailing types or statuses are specified.</p> </td> </tr> -<tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body"><p class="first last">An array of mailings.</p> +<tr class="field"><th class="field-name">Returns :</th><td class="field-body"><p class="first last">An array of mailings.</p> </td> </tr> </tbody> @@ -258,14 +259,15 @@ <h1>Mailings<a class="headerlink" href="#mailings" title="Permalink to this head <dl class="get"> <dt id="get--#account_id-mailings-#mailing_id"> <tt class="descname">GET </tt><tt class="descname">/#account_id/mailings/#mailing_id</tt><a class="headerlink" href="#get--#account_id-mailings-#mailing_id" title="Permalink to this definition">¶</a></dt> -<dd><p>Get detailed information for one mailing.</p> +<dd><p><tt class="docutils literal"><span class="pre">GET</span> <span class="pre">/#account_id/mailings/#mailing_id</span></tt></p> +<p>Get detailed information for one mailing.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">A mailing.</td> +<tr class="field"><th class="field-name">Returns :</th><td class="field-body">A mailing.</td> </tr> -<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no mailing is found.</td> +<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no mailing is found.</td> </tr> </tbody> </table> @@ -327,14 +329,15 @@ <h1>Mailings<a class="headerlink" href="#mailings" title="Permalink to this head <dl class="get"> <dt id="get--#account_id-mailings-#mailing_id-members"> <tt class="descname">GET </tt><tt class="descname">/#account_id/mailings/#mailing_id/members</tt><a class="headerlink" href="#get--#account_id-mailings-#mailing_id-members" title="Permalink to this definition">¶</a></dt> -<dd><p>Get the list of members to whom the given mailing was sent.</p> +<dd><p><tt class="docutils literal"><span class="pre">GET</span> <span class="pre">/#account_id/mailings/#mailing_id/members</span></tt></p> +<p>Get the list of members to whom the given mailing was sent.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">An array of members including status and member fields.</td> +<tr class="field"><th class="field-name">Returns :</th><td class="field-body">An array of members including status and member fields.</td> </tr> -<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no mailing is found.</td> +<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no mailing is found.</td> </tr> </tbody> </table> @@ -375,24 +378,25 @@ <h1>Mailings<a class="headerlink" href="#mailings" title="Permalink to this head <dl class="get"> <dt id="get--#account_id-mailings-#mailing_id-messages-#member_id"> <tt class="descname">GET </tt><tt class="descname">/#account_id/mailings/#mailing_id/messages/#member_id</tt><a class="headerlink" href="#get--#account_id-mailings-#mailing_id-messages-#member_id" title="Permalink to this definition">¶</a></dt> -<dd><p>Gets the personalized message content as sent to a specific member +<dd><p><tt class="docutils literal"><span class="pre">GET</span> <span class="pre">/#account_id/mailings/#mailing_id/messages/#member_id</span></tt></p> +<p>Gets the personalized message content as sent to a specific member as part of the specified mailing.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> +<tr class="field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> <li><strong>type</strong> (<em>string</em>) – Accepts: ‘all’, ‘html’, ‘plaintext’, ‘subject’. Defaults to ‘all’, if not provided.</li> </ul> </td> </tr> -<tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">Message content from a mailing, personalized for a member. +<tr class="field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">Message content from a mailing, personalized for a member. The response will contain all parts of the mailing content by default, or just the type of content specified by <cite>type</cite>.</p> </td> </tr> -<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no message is found.</p> +<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no message is found.</p> </td> </tr> </tbody> @@ -430,14 +434,15 @@ <h1>Mailings<a class="headerlink" href="#mailings" title="Permalink to this head <dl class="get"> <dt id="get--#account_id-mailings-#mailing_id-groups"> <tt class="descname">GET </tt><tt class="descname">/#account_id/mailings/#mailing_id/groups</tt><a class="headerlink" href="#get--#account_id-mailings-#mailing_id-groups" title="Permalink to this definition">¶</a></dt> -<dd><p>Get the groups to which a particular mailing was sent.</p> +<dd><p><tt class="docutils literal"><span class="pre">GET</span> <span class="pre">/#account_id/mailings/#mailing_id/groups</span></tt></p> +<p>Get the groups to which a particular mailing was sent.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">An array of groups.</td> +<tr class="field"><th class="field-name">Returns :</th><td class="field-body">An array of groups.</td> </tr> -<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no mailing is found.</td> +<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no mailing is found.</td> </tr> </tbody> </table> @@ -469,14 +474,15 @@ <h1>Mailings<a class="headerlink" href="#mailings" title="Permalink to this head <dl class="get"> <dt id="get--#account_id-mailings-#mailing_id-searches"> <tt class="descname">GET </tt><tt class="descname">/#account_id/mailings/#mailing_id/searches</tt><a class="headerlink" href="#get--#account_id-mailings-#mailing_id-searches" title="Permalink to this definition">¶</a></dt> -<dd><p>Get all searches associated with a sent mailing.</p> +<dd><p><tt class="docutils literal"><span class="pre">GET</span> <span class="pre">/#account_id/mailings/#mailing_id/searches</span></tt></p> +<p>Get all searches associated with a sent mailing.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">An array of searches.</td> +<tr class="field"><th class="field-name">Returns :</th><td class="field-body">An array of searches.</td> </tr> -<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no mailing is found.</td> +<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no mailing is found.</td> </tr> </tbody> </table> @@ -499,7 +505,8 @@ <h1>Mailings<a class="headerlink" href="#mailings" title="Permalink to this head <dl class="put"> <dt id="put--#account_id-mailings-#mailing_id"> <tt class="descname">PUT </tt><tt class="descname">/#account_id/mailings/#mailing_id</tt><a class="headerlink" href="#put--#account_id-mailings-#mailing_id" title="Permalink to this definition">¶</a></dt> -<dd><p>Update status of a current mailing</p> +<dd><p><tt class="docutils literal"><span class="pre">PUT</span> <span class="pre">/#account_id/mailings/#mailing_id</span></tt></p> +<p>Update status of a current mailing</p> <p>The status can be one of <tt class="docutils literal"><span class="pre">canceled</span></tt>, <tt class="docutils literal"><span class="pre">paused</span></tt> or <tt class="docutils literal"><span class="pre">ready</span></tt>. This method can be used to control the progress of a mailing by pausing, canceling or resuming it. Once a mailing is canceled it can’t be @@ -510,13 +517,14 @@ <h1>Mailings<a class="headerlink" href="#mailings" title="Permalink to this head <dl class="delete"> <dt id="delete--#account_id-mailings-#mailing_id"> <tt class="descname">DELETE </tt><tt class="descname">/#account_id/mailings/#mailing_id</tt><a class="headerlink" href="#delete--#account_id-mailings-#mailing_id" title="Permalink to this definition">¶</a></dt> -<dd><p>Sets archived timestamp for a mailing so it is no longer included in +<dd><p><tt class="docutils literal"><span class="pre">DELETE</span> <span class="pre">/#account_id/mailings/#mailing_id</span></tt></p> +<p>Sets archived timestamp for a mailing so it is no longer included in mailing_list.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">True if the mailing is successfully archived.</td> +<tr class="field"><th class="field-name">Returns :</th><td class="field-body">True if the mailing is successfully archived.</td> </tr> </tbody> </table> @@ -536,13 +544,14 @@ <h1>Mailings<a class="headerlink" href="#mailings" title="Permalink to this head <dl class="delete"> <dt id="delete--#account_id-mailings-cancel-#mailing_id"> <tt class="descname">DELETE </tt><tt class="descname">/#account_id/mailings/cancel/#mailing_id</tt><a class="headerlink" href="#delete--#account_id-mailings-cancel-#mailing_id" title="Permalink to this definition">¶</a></dt> -<dd><p>Cancels a mailing that has a current status of pending or +<dd><p><tt class="docutils literal"><span class="pre">DELETE</span> <span class="pre">/#account_id/mailings/cancel/#mailing_id</span></tt></p> +<p>Cancels a mailing that has a current status of pending or paused. All other statuses will result in a 404.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">True if mailing marked as cancelled.</td> +<tr class="field"><th class="field-name">Returns :</th><td class="field-body">True if mailing marked as cancelled.</td> </tr> </tbody> </table> @@ -562,14 +571,15 @@ <h1>Mailings<a class="headerlink" href="#mailings" title="Permalink to this head <dl class="post"> <dt id="post--#account_id-forwards-#mailing_id-#member_id"> <tt class="descname">POST </tt><tt class="descname">/#account_id/forwards/#mailing_id/#member_id</tt><a class="headerlink" href="#post--#account_id-forwards-#mailing_id-#member_id" title="Permalink to this definition">¶</a></dt> -<dd><p>Forward a previous message to additional recipients. If these +<dd><p><tt class="docutils literal"><span class="pre">POST</span> <span class="pre">/#account_id/forwards/#mailing_id/#member_id</span></tt></p> +<p>Forward a previous message to additional recipients. If these recipients are not already in the audience, they will be added with a status of FORWARDED.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> +<tr class="field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> <li><strong>recipient_emails</strong> (<em>array</em>) – An array of email addresses to which to forward the specified message.</li> <li><strong>note</strong> (<em>string</em>) – A note to include in the forward. This note will be HTML @@ -577,10 +587,10 @@ <h1>Mailings<a class="headerlink" href="#mailings" title="Permalink to this head </ul> </td> </tr> -<tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">A reference to the new mailing.</p> +<tr class="field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">A reference to the new mailing.</p> </td> </tr> -<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no message is found.</p> +<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no message is found.</p> </td> </tr> </tbody> @@ -609,13 +619,14 @@ <h1>Mailings<a class="headerlink" href="#mailings" title="Permalink to this head <dl class="post"> <dt id="post--#account_id-mailings-#mailing_id"> <tt class="descname">POST </tt><tt class="descname">/#account_id/mailings/#mailing_id</tt><a class="headerlink" href="#post--#account_id-mailings-#mailing_id" title="Permalink to this definition">¶</a></dt> -<dd><p>Send a prior mailing to additional recipients. A new mailing will be +<dd><p><tt class="docutils literal"><span class="pre">POST</span> <span class="pre">/#account_id/mailings/#mailing_id</span></tt></p> +<p>Send a prior mailing to additional recipients. A new mailing will be created that inherits its content from the original.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> +<tr class="field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> <li><strong>sender</strong> (<em>string</em>) – The message sender. If this is not supplied, the sender of the original mailing will be used.</li> <li><strong>heads_up_emails</strong> (<em>array</em>) – A list of email addresses that heads up @@ -629,10 +640,10 @@ <h1>Mailings<a class="headerlink" href="#mailings" title="Permalink to this head </ul> </td> </tr> -<tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">A reference to the new mailing.</p> +<tr class="field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">A reference to the new mailing.</p> </td> </tr> -<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no mailing is found.</p> +<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no mailing is found.</p> </td> </tr> </tbody> @@ -660,14 +671,15 @@ <h1>Mailings<a class="headerlink" href="#mailings" title="Permalink to this head <dl class="get"> <dt id="get--#account_id-mailings-#mailing_id-headsup"> <tt class="descname">GET </tt><tt class="descname">/#account_id/mailings/#mailing_id/headsup</tt><a class="headerlink" href="#get--#account_id-mailings-#mailing_id-headsup" title="Permalink to this definition">¶</a></dt> -<dd><p>Get heads up email address(es) related to a mailing.</p> +<dd><p><tt class="docutils literal"><span class="pre">GET</span> <span class="pre">/#account_id/mailings/#mailing_id/headsup</span></tt></p> +<p>Get heads up email address(es) related to a mailing.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">An array of heads up email addresses.</td> +<tr class="field"><th class="field-name">Returns :</th><td class="field-body">An array of heads up email addresses.</td> </tr> -<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no mailing is found.</td> +<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no mailing is found.</td> </tr> </tbody> </table> @@ -690,13 +702,14 @@ <h1>Mailings<a class="headerlink" href="#mailings" title="Permalink to this head <dl class="post"> <dt id="post--#account_id-mailings-validate"> <tt class="descname">POST </tt><tt class="descname">/#account_id/mailings/validate</tt><a class="headerlink" href="#post--#account_id-mailings-validate" title="Permalink to this definition">¶</a></dt> -<dd><p>Validate that a mailing has valid personalization-tag syntax. Checks +<dd><p><tt class="docutils literal"><span class="pre">POST</span> <span class="pre">/#account_id/mailings/validate</span></tt></p> +<p>Validate that a mailing has valid personalization-tag syntax. Checks tag syntax in three params:</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> +<tr class="field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> <li><strong>html_body</strong> (<em>string</em>) – The html contents of the mailing</li> <li><strong>plaintext</strong> (<em>string</em>) – The plaintext contents of the mailing. Unlike in <tt class="docutils literal"><span class="pre">create_mailing</span></tt>, this param is not required.</li> @@ -704,10 +717,10 @@ <h1>Mailings<a class="headerlink" href="#mailings" title="Permalink to this head </ul> </td> </tr> -<tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">true</p> +<tr class="field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">true</p> </td> </tr> -<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http400</span></tt> if any tags are invalid. The response body will +<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http400</span></tt> if any tags are invalid. The response body will have information about the invalid tags.</p> </td> </tr> @@ -732,7 +745,8 @@ <h1>Mailings<a class="headerlink" href="#mailings" title="Permalink to this head <dl class="post"> <dt id="post--#account_id-mailings-#mailing_id-winner-#winner_id"> <tt class="descname">POST </tt><tt class="descname">/#account_id/mailings/#mailing_id/winner/#winner_id</tt><a class="headerlink" href="#post--#account_id-mailings-#mailing_id-winner-#winner_id" title="Permalink to this definition">¶</a></dt> -<dd><p>Declare the winner of a split test manually. In the event that the test +<dd><p><tt class="docutils literal"><span class="pre">POST</span> <span class="pre">/#account_id/mailings/#mailing_id/winner/#winner_id</span></tt></p> +<p>Declare the winner of a split test manually. In the event that the test duration has not elapsed, the current stats for each test will be frozen and the content defined in the user declared winner will sent to the remaining members for the mailing. Please note, any messages that are @@ -742,9 +756,9 @@ <h1>Mailings<a class="headerlink" href="#mailings" title="Permalink to this head <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">True on success.</td> +<tr class="field"><th class="field-name">Returns :</th><td class="field-body">True on success.</td> </tr> -<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http403</span></tt> if the winner cannot be manually declared.</td> +<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http403</span></tt> if the winner cannot be manually declared.</td> </tr> </tbody> </table> @@ -779,7 +793,7 @@ <h1>Mailings<a class="headerlink" href="#mailings" title="Permalink to this head <div id="searchbox" style="display: none"> <h3>Quick search</h3> <form class="search" action="../../search.html" method="get"> - <input type="text" name="q" /> + <input type="text" name="q" size="18" /> <input type="submit" value="Go" /> <input type="hidden" name="check_keywords" value="yes" /> <input type="hidden" name="area" value="default" /> @@ -809,7 +823,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 04, 2013 at 09:46 AM. + Last updated on Jan 07, 2013 at 02:56 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/members.html b/api/external/members.html index 6a6c31c..0bfd1fe 100644 --- a/api/external/members.html +++ b/api/external/members.html @@ -30,7 +30,7 @@ <script type="text/javascript">try{Typekit.load();}catch(e){}</script> <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="top" title="audience v0.1 documentation" href="../../index.html" /> <link rel="next" title="Response" href="response.html" /> <link rel="prev" title="Mailings" href="mailings.html" /> <link rel="icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> @@ -93,7 +93,7 @@ <h3>Navigation</h3> <li class="right" > <a href="mailings.html" title="Mailings" accesskey="P">previous</a> |</li> - <li><a href="../../index.html">audience 0.1 documentation</a> »</li> + <li><a href="../../index.html">audience v0.1 documentation</a> »</li> </ul> </div> @@ -118,18 +118,19 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli <dl class="get"> <dt id="get--#account_id-members"> <tt class="descname">GET </tt><tt class="descname">/#account_id/members</tt><a class="headerlink" href="#get--#account_id-members" title="Permalink to this definition">¶</a></dt> -<dd><p>Get a basic listing of all members in an account.</p> +<dd><p><tt class="docutils literal"><span class="pre">GET</span> <span class="pre">/#account_id/members</span></tt></p> +<p>Get a basic listing of all members in an account.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> +<tr class="field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> <li><strong>deleted</strong> (<em>boolean</em>) – Accepts True or 1. Optional flag to include deleted members.</li> </ul> </td> </tr> -<tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first last">A list of members in the given account.</p> +<tr class="field"><th class="field-name">Returns :</th><td class="field-body"><p class="first last">A list of members in the given account.</p> </td> </tr> </tbody> @@ -239,22 +240,23 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli <dl class="get"> <dt id="get--#account_id-members-#member_id"> <tt class="descname">GET </tt><tt class="descname">/#account_id/members/#member_id</tt><a class="headerlink" href="#get--#account_id-members-#member_id" title="Permalink to this definition">¶</a></dt> -<dd><p>Get detailed information on a particular member, including all custom +<dd><p><tt class="docutils literal"><span class="pre">GET</span> <span class="pre">/#account_id/members/#member_id</span></tt></p> +<p>Get detailed information on a particular member, including all custom fields.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> +<tr class="field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> <li><strong>deleted</strong> (<em>boolean</em>) – Accepts True or 1. Optional flag to include deleted members.</li> </ul> </td> </tr> -<tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">A single member if one exists.</p> +<tr class="field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">A single member if one exists.</p> </td> </tr> -<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no member is found.</p> +<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no member is found.</p> </td> </tr> </tbody> @@ -293,22 +295,23 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli <dl class="get"> <dt id="get--#account_id-members-email--email"> <tt class="descname">GET </tt><tt class="descname">/#account_id/members/email/:email</tt><a class="headerlink" href="#get--#account_id-members-email--email" title="Permalink to this definition">¶</a></dt> -<dd><p>Get detailed information on a particular member, including all custom +<dd><p><tt class="docutils literal"><span class="pre">GET</span> <span class="pre">/#account_id/members/email/:email</span></tt></p> +<p>Get detailed information on a particular member, including all custom fields, by email address instead of ID.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> +<tr class="field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> <li><strong>deleted</strong> (<em>boolean</em>) – Accepts True or 1. Optional flag to include deleted members.</li> </ul> </td> </tr> -<tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">A single member if one exists.</p> +<tr class="field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">A single member if one exists.</p> </td> </tr> -<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no member is found.</p> +<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no member is found.</p> </td> </tr> </tbody> @@ -347,15 +350,16 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli <dl class="get"> <dt id="get--#account_id-members-#member_id-optout"> <tt class="descname">GET </tt><tt class="descname">/#account_id/members/#member_id/optout</tt><a class="headerlink" href="#get--#account_id-members-#member_id-optout" title="Permalink to this definition">¶</a></dt> -<dd><p>If a member has been opted out, returns the details +<dd><p><tt class="docutils literal"><span class="pre">GET</span> <span class="pre">/#account_id/members/#member_id/optout</span></tt></p> +<p>If a member has been opted out, returns the details of their optout, specifically date and mailing_id.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">Member opt out date and mailing if member is opted out.</td> +<tr class="field"><th class="field-name">Returns :</th><td class="field-body">Member opt out date and mailing if member is opted out.</td> </tr> -<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no member is found.</td> +<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no member is found.</td> </tr> </tbody> </table> @@ -375,16 +379,48 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli </p> </dd></dl> +<dl class="put"> +<dt id="put--#account_id-members-email-optout--email"> +<tt class="descname">PUT </tt><tt class="descname">/#account_id/members/email/optout/:email</tt><a class="headerlink" href="#put--#account_id-members-email-optout--email" title="Permalink to this definition">¶</a></dt> +<dd><p><tt class="docutils literal"><span class="pre">PUT</span> <span class="pre">/#account_id/members/email/optout/:email</span></tt></p> +<p>Update a member’s status to optout keyed on email address +instead of an ID.</p> +<table class="docutils field-list" frame="void" rules="none"> +<col class="field-name" /> +<col class="field-body" /> +<tbody valign="top"> +<tr class="field"><th class="field-name">Returns :</th><td class="field-body">True if member status change was successful or +member was already opted out.</td> +</tr> +<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no member is found.</td> +</tr> +</tbody> +</table> +<p> +<div class="sample-response hide-response"> +<span style="font-weight:bold;">Sample Response</span> +<a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>PUT /100/members/email/optout/tony@myemma.com</b> +{} + +true +</pre> +</div> +</p> +</dd></dl> + <dl class="post"> <dt id="post--#account_id-members"> <tt class="descname">POST </tt><tt class="descname">/#account_id/members</tt><a class="headerlink" href="#post--#account_id-members" title="Permalink to this definition">¶</a></dt> -<dd><p>Add new members or update existing members in bulk. If you are doing +<dd><p><tt class="docutils literal"><span class="pre">POST</span> <span class="pre">/#account_id/members</span></tt></p> +<p>Add new members or update existing members in bulk. If you are doing actions for a single member please see the <cite>/members/add</cite> call below.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first last simple"> +<tr class="field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first last simple"> <li><strong>members</strong> (<em>array</em>) – An array of members to update</li> </ul> </td> @@ -398,7 +434,7 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first last simple"> +<tr class="field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first last simple"> <li><strong>source_filename</strong> (<em>string</em>) – An arbitrary string to associate with this import.</li> </ul> </td> @@ -410,13 +446,13 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> +<tr class="field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> <li><strong>add_only</strong> (<em>boolean</em>) – Optional. Only add new members, ignore existing members.</li> <li><strong>group_ids</strong> (<em>array of integers</em>) – Optional. Add imported members to this list of groups.</li> </ul> </td> </tr> -<tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first last">An import id</p> +<tr class="field"><th class="field-name">Returns :</th><td class="field-body"><p class="first last">An import id</p> </td> </tr> </tbody> @@ -449,13 +485,14 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli <dl class="post"> <dt id="post--#account_id-members-add"> <tt class="descname">POST </tt><tt class="descname">/#account_id/members/add</tt><a class="headerlink" href="#post--#account_id-members-add" title="Permalink to this definition">¶</a></dt> -<dd><p>Adds or updates a single audience member. If you are performing actions +<dd><p><tt class="docutils literal"><span class="pre">POST</span> <span class="pre">/#account_id/members/add</span></tt></p> +<p>Adds or updates a single audience member. If you are performing actions on bulk members please use the <cite>/members</cite> call above.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> +<tr class="field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> <li><strong>email</strong> (<em>string</em>) – Email address of member to add or update</li> <li><strong>fields</strong> (<em>dictionary</em>) – Names and values of user-defined fields to update</li> <li><strong>group_ids</strong> (<em>integer</em>) – Optional. Add imported members to this list of groups.</li> @@ -465,7 +502,7 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli </ul> </td> </tr> -<tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first last">The member_id of the new or updated member, whether the +<tr class="field"><th class="field-name">Returns :</th><td class="field-body"><p class="first last">The member_id of the new or updated member, whether the member was added or an existing member was updated, and the status of the member. The status will be reported as ‘a’ (active), ‘e’ (error), or ‘o’ (optout).</p> </td> @@ -498,18 +535,19 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli <dl class="put"> <dt id="put--#account_id-members-delete"> <tt class="descname">PUT </tt><tt class="descname">/#account_id/members/delete</tt><a class="headerlink" href="#put--#account_id-members-delete" title="Permalink to this definition">¶</a></dt> -<dd><p>Delete an array of members.</p> +<dd><p><tt class="docutils literal"><span class="pre">PUT</span> <span class="pre">/#account_id/members/delete</span></tt></p> +<p>Delete an array of members.</p> <p>The members will be marked as deleted and cannot be retrieved.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> +<tr class="field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> <li><strong>member_ids</strong> (<em>array</em>) – An array of member ids to delete.</li> </ul> </td> </tr> -<tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first last">True if all members are successfully deleted, otherwise False.</p> +<tr class="field"><th class="field-name">Returns :</th><td class="field-body"><p class="first last">True if all members are successfully deleted, otherwise False.</p> </td> </tr> </tbody> @@ -536,20 +574,21 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli <dl class="put"> <dt id="put--#account_id-members-status"> <tt class="descname">PUT </tt><tt class="descname">/#account_id/members/status</tt><a class="headerlink" href="#put--#account_id-members-status" title="Permalink to this definition">¶</a></dt> -<dd><p>Change the status for an array of members.</p> +<dd><p><tt class="docutils literal"><span class="pre">PUT</span> <span class="pre">/#account_id/members/status</span></tt></p> +<p>Change the status for an array of members.</p> <p>The members will have their member_status_id updated.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> +<tr class="field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> <li><strong>member_ids</strong> (<em>array</em>) – The array of member ids to change.</li> <li><strong>status_to</strong> (<em>string</em>) – The new status for the given members. Accepts one of ‘a’ (active), ‘e’ (error), ‘o’ (optout).</li> </ul> </td> </tr> -<tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first last">True if the members are successfully updated, otherwise +<tr class="field"><th class="field-name">Returns :</th><td class="field-body"><p class="first last">True if the members are successfully updated, otherwise False.</p> </td> </tr> @@ -578,7 +617,8 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli <dl class="put"> <dt id="put--#account_id-members-#member_id"> <tt class="descname">PUT </tt><tt class="descname">/#account_id/members/#member_id</tt><a class="headerlink" href="#put--#account_id-members-#member_id" title="Permalink to this definition">¶</a></dt> -<dd><p>Update a single member’s information.</p> +<dd><p><tt class="docutils literal"><span class="pre">PUT</span> <span class="pre">/#account_id/members/#member_id</span></tt></p> +<p>Update a single member’s information.</p> <p>Update the information for an existing member. Note that this method allows the email address to be updated (which cannot be done with a POST, since in that case the email address is used to identify the @@ -587,7 +627,7 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> +<tr class="field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> <li><strong>email</strong> (<em>string</em>) – A new email address for the member.</li> <li><strong>status_to</strong> (<em>string</em>) – A new status for the member. Accepts one of ‘a’ (active), ‘e’ (error), ‘o’ (opt-out).</li> @@ -596,10 +636,10 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli </ul> </td> </tr> -<tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">True if the member was updated successfully</p> +<tr class="field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">True if the member was updated successfully</p> </td> </tr> -<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no member is found.</p> +<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no member is found.</p> </td> </tr> </tbody> @@ -628,16 +668,17 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli <dl class="delete"> <dt id="delete--#account_id-members-#member_id"> <tt class="descname">DELETE </tt><tt class="descname">/#account_id/members/#member_id</tt><a class="headerlink" href="#delete--#account_id-members-#member_id" title="Permalink to this definition">¶</a></dt> -<dd><p>Delete the specified member.</p> +<dd><p><tt class="docutils literal"><span class="pre">DELETE</span> <span class="pre">/#account_id/members/#member_id</span></tt></p> +<p>Delete the specified member.</p> <p>The member, along with any associated response and history information, will be completely removed from the database.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">True if the member is deleted.</td> +<tr class="field"><th class="field-name">Returns :</th><td class="field-body">True if the member is deleted.</td> </tr> -<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no member is found.</td> +<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no member is found.</td> </tr> </tbody> </table> @@ -657,14 +698,15 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli <dl class="get"> <dt id="get--#account_id-members-#member_id-groups"> <tt class="descname">GET </tt><tt class="descname">/#account_id/members/#member_id/groups</tt><a class="headerlink" href="#get--#account_id-members-#member_id-groups" title="Permalink to this definition">¶</a></dt> -<dd><p>Get the groups to which a member belongs.</p> +<dd><p><tt class="docutils literal"><span class="pre">GET</span> <span class="pre">/#account_id/members/#member_id/groups</span></tt></p> +<p>Get the groups to which a member belongs.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">An array of groups.</td> +<tr class="field"><th class="field-name">Returns :</th><td class="field-body">An array of groups.</td> </tr> -<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no member is found.</td> +<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no member is found.</td> </tr> </tbody> </table> @@ -716,20 +758,21 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli <dl class="put"> <dt id="put--#account_id-members-#member_id-groups"> <tt class="descname">PUT </tt><tt class="descname">/#account_id/members/#member_id/groups</tt><a class="headerlink" href="#put--#account_id-members-#member_id-groups" title="Permalink to this definition">¶</a></dt> -<dd><p>Add a single member to one or more groups.</p> +<dd><p><tt class="docutils literal"><span class="pre">PUT</span> <span class="pre">/#account_id/members/#member_id/groups</span></tt></p> +<p>Add a single member to one or more groups.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> +<tr class="field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> <li><strong>group_ids</strong> (<em>array</em>) – Group ids to which to add this member.</li> </ul> </td> </tr> -<tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">An array of ids of the affected groups.</p> +<tr class="field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">An array of ids of the affected groups.</p> </td> </tr> -<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no member is found.</p> +<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no member is found.</p> </td> </tr> </tbody> @@ -759,20 +802,21 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli <dl class="put"> <dt id="put--#account_id-members-#member_id-groups-remove"> <tt class="descname">PUT </tt><tt class="descname">/#account_id/members/#member_id/groups/remove</tt><a class="headerlink" href="#put--#account_id-members-#member_id-groups-remove" title="Permalink to this definition">¶</a></dt> -<dd><p>Remove a single member from one or more groups.</p> +<dd><p><tt class="docutils literal"><span class="pre">PUT</span> <span class="pre">/#account_id/members/#member_id/groups/remove</span></tt></p> +<p>Remove a single member from one or more groups.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> +<tr class="field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> <li><strong>group_ids</strong> (<em>array</em>) – Group ids from which to remove this member.</li> </ul> </td> </tr> -<tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">An array of references to the affected groups.</p> +<tr class="field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">An array of references to the affected groups.</p> </td> </tr> -<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no member is found.</p> +<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no member is found.</p> </td> </tr> </tbody> @@ -800,17 +844,18 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli <dl class="delete"> <dt id="delete--#account_id-members"> <tt class="descname">DELETE </tt><tt class="descname">/#account_id/members</tt><a class="headerlink" href="#delete--#account_id-members" title="Permalink to this definition">¶</a></dt> -<dd><p>Delete all members.</p> +<dd><p><tt class="docutils literal"><span class="pre">DELETE</span> <span class="pre">/#account_id/members</span></tt></p> +<p>Delete all members.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> +<tr class="field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> <li><strong>member_status_id</strong> (<em>string</em>) – This is ‘a’ (active), ‘o’ (optout), or ‘e’ (error).</li> </ul> </td> </tr> -<tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first last">Returns true.</p> +<tr class="field"><th class="field-name">Returns :</th><td class="field-body"><p class="first last">Returns true.</p> </td> </tr> </tbody> @@ -831,14 +876,15 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli <dl class="delete"> <dt id="delete--#account_id-members-#member_id-groups"> <tt class="descname">DELETE </tt><tt class="descname">/#account_id/members/#member_id/groups</tt><a class="headerlink" href="#delete--#account_id-members-#member_id-groups" title="Permalink to this definition">¶</a></dt> -<dd><p>Remove the specified member from all groups.</p> +<dd><p><tt class="docutils literal"><span class="pre">DELETE</span> <span class="pre">/#account_id/members/#member_id/groups</span></tt></p> +<p>Remove the specified member from all groups.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">True if the member is removed from all groups.</td> +<tr class="field"><th class="field-name">Returns :</th><td class="field-body">True if the member is removed from all groups.</td> </tr> -<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no member is found.</td> +<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no member is found.</td> </tr> </tbody> </table> @@ -858,21 +904,22 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli <dl class="put"> <dt id="put--#account_id-members-groups-remove"> <tt class="descname">PUT </tt><tt class="descname">/#account_id/members/groups/remove</tt><a class="headerlink" href="#put--#account_id-members-groups-remove" title="Permalink to this definition">¶</a></dt> -<dd><p>Remove multiple members from groups.</p> +<dd><p><tt class="docutils literal"><span class="pre">PUT</span> <span class="pre">/#account_id/members/groups/remove</span></tt></p> +<p>Remove multiple members from groups.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> +<tr class="field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> <li><strong>member_ids</strong> (<em>array</em>) – Member ids to remove from the given groups.</li> <li><strong>group_ids</strong> (<em>array</em>) – Group ids from which to remove the given members.</li> </ul> </td> </tr> -<tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">True if the members are deleted, otherwise False.</p> +<tr class="field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">True if the members are deleted, otherwise False.</p> </td> </tr> -<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http404</span></tt> if any of the members or groups do not exist</p> +<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http404</span></tt> if any of the members or groups do not exist</p> </td> </tr> </tbody> @@ -901,12 +948,13 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli <dl class="get"> <dt id="get--#account_id-members-#member_id-mailings"> <tt class="descname">GET </tt><tt class="descname">/#account_id/members/#member_id/mailings</tt><a class="headerlink" href="#get--#account_id-members-#member_id-mailings" title="Permalink to this definition">¶</a></dt> -<dd><p>Get the entire mailing history for a member.</p> +<dd><p><tt class="docutils literal"><span class="pre">GET</span> <span class="pre">/#account_id/members/#member_id/mailings</span></tt></p> +<p>Get the entire mailing history for a member.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">Message history details for the specified member.</td> +<tr class="field"><th class="field-name">Returns :</th><td class="field-body">Message history details for the specified member.</td> </tr> </tbody> </table> @@ -941,12 +989,13 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli <dl class="get"> <dt id="get--#account_id-members-imports-#import_id-members"> <tt class="descname">GET </tt><tt class="descname">/#account_id/members/imports/#import_id/members</tt><a class="headerlink" href="#get--#account_id-members-imports-#import_id-members" title="Permalink to this definition">¶</a></dt> -<dd><p>Get a list of members affected by this import.</p> +<dd><p><tt class="docutils literal"><span class="pre">GET</span> <span class="pre">/#account_id/members/imports/#import_id/members</span></tt></p> +<p>Get a list of members affected by this import.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">A list of members in the given account and import.</td> +<tr class="field"><th class="field-name">Returns :</th><td class="field-body">A list of members in the given account and import.</td> </tr> </tbody> </table> @@ -974,12 +1023,13 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli <dl class="get"> <dt id="get--#account_id-members-imports-#import_id"> <tt class="descname">GET </tt><tt class="descname">/#account_id/members/imports/#import_id</tt><a class="headerlink" href="#get--#account_id-members-imports-#import_id" title="Permalink to this definition">¶</a></dt> -<dd><p>Get information and statistics about this import.</p> +<dd><p><tt class="docutils literal"><span class="pre">GET</span> <span class="pre">/#account_id/members/imports/#import_id</span></tt></p> +<p>Get information and statistics about this import.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">Import details for the given import_id.</td> +<tr class="field"><th class="field-name">Returns :</th><td class="field-body">Import details for the given import_id.</td> </tr> </tbody> </table> @@ -1014,12 +1064,13 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli <dl class="get"> <dt id="get--#account_id-members-imports"> <tt class="descname">GET </tt><tt class="descname">/#account_id/members/imports</tt><a class="headerlink" href="#get--#account_id-members-imports" title="Permalink to this definition">¶</a></dt> -<dd><p>Get information about all imports for this account.</p> +<dd><p><tt class="docutils literal"><span class="pre">GET</span> <span class="pre">/#account_id/members/imports</span></tt></p> +<p>Get information about all imports for this account.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">An array of import details.</td> +<tr class="field"><th class="field-name">Returns :</th><td class="field-body">An array of import details.</td> </tr> </tbody> </table> @@ -1042,14 +1093,15 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli <dl class="delete"> <dt id="delete--#account_id-members-imports-delete"> <tt class="descname">DELETE </tt><tt class="descname">/#account_id/members/imports/delete</tt><a class="headerlink" href="#delete--#account_id-members-imports-delete" title="Permalink to this definition">¶</a></dt> -<dd><p>Update an import record to be marked as ‘deleted’.</p> +<dd><p><tt class="docutils literal"><span class="pre">DELETE</span> <span class="pre">/#account_id/members/imports/delete</span></tt></p> +<p>Update an import record to be marked as ‘deleted’.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">True if the import is marked as deleted.</td> +<tr class="field"><th class="field-name">Returns :</th><td class="field-body">True if the import is marked as deleted.</td> </tr> -<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the import record does not exist</td> +<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the import record does not exist</td> </tr> </tbody> </table> @@ -1058,20 +1110,21 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli <dl class="put"> <dt id="put--#account_id-members-#group_id-copy"> <tt class="descname">PUT </tt><tt class="descname">/#account_id/members/#group_id/copy</tt><a class="headerlink" href="#put--#account_id-members-#group_id-copy" title="Permalink to this definition">¶</a></dt> -<dd><p>Copy all account members of one or more statuses into a group.</p> +<dd><p><tt class="docutils literal"><span class="pre">PUT</span> <span class="pre">/#account_id/members/#group_id/copy</span></tt></p> +<p>Copy all account members of one or more statuses into a group.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> +<tr class="field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> <li><strong>member_status_id</strong> (<em>array of strings</em>) – ‘a’ (active), ‘o’ (optout), and/or ‘e’ (error).</li> </ul> </td> </tr> -<tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">True</p> +<tr class="field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">True</p> </td> </tr> -<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the group does not exist.</p> +<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the group does not exist.</p> </td> </tr> </tbody> @@ -1098,7 +1151,8 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli <dl class="put"> <dt id="put--#account_id-members-status--status_from-to--status_to"> <tt class="descname">PUT </tt><tt class="descname">/#account_id/members/status/:status_from/to/:status_to</tt><a class="headerlink" href="#put--#account_id-members-status--status_from-to--status_to" title="Permalink to this definition">¶</a></dt> -<dd><dl class="docutils"> +<dd><p><tt class="docutils literal"><span class="pre">PUT</span> <span class="pre">/#account_id/members/status/:status_from/to/:status_to</span></tt></p> +<dl class="docutils"> <dt>Update the status for a group of members, based on their current</dt> <dd>status. Valid statuses id are (‘a’,’e’, ‘f’, ‘o’) active, error, forwarded, optout.</dd> @@ -1107,16 +1161,16 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> +<tr class="field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> <li><strong>group_id</strong> – Optional. Limit the update to members of the specified group</li> </ul> </td> </tr> -<tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">True</p> +<tr class="field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">True</p> </td> </tr> -<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http400</span></tt> if the specified status is invalid</p> +<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http400</span></tt> if the specified status is invalid</p> </td> </tr> </tbody> @@ -1154,7 +1208,7 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli <div id="searchbox" style="display: none"> <h3>Quick search</h3> <form class="search" action="../../search.html" method="get"> - <input type="text" name="q" /> + <input type="text" name="q" size="18" /> <input type="submit" value="Go" /> <input type="hidden" name="check_keywords" value="yes" /> <input type="hidden" name="area" value="default" /> @@ -1184,7 +1238,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 04, 2013 at 09:46 AM. + Last updated on Jan 07, 2013 at 02:56 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/response.html b/api/external/response.html index c42eb94..f9cfd0d 100644 --- a/api/external/response.html +++ b/api/external/response.html @@ -30,7 +30,7 @@ <script type="text/javascript">try{Typekit.load();}catch(e){}</script> <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="top" title="audience v0.1 documentation" href="../../index.html" /> <link rel="next" title="Searches" href="searches.html" /> <link rel="prev" title="Members" href="members.html" /> <link rel="icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> @@ -93,7 +93,7 @@ <h3>Navigation</h3> <li class="right" > <a href="members.html" title="Members" accesskey="P">previous</a> |</li> - <li><a href="../../index.html">audience 0.1 documentation</a> »</li> + <li><a href="../../index.html">audience v0.1 documentation</a> »</li> </ul> </div> @@ -112,7 +112,8 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head <dl class="get"> <dt id="get--#account_id-response"> <tt class="descname">GET </tt><tt class="descname">/#account_id/response</tt><a class="headerlink" href="#get--#account_id-response" title="Permalink to this definition">¶</a></dt> -<dd><p>Get the response summary for an account.</p> +<dd><p><tt class="docutils literal"><span class="pre">GET</span> <span class="pre">/#account_id/response</span></tt></p> +<p>Get the response summary for an account.</p> <p>This method will return a month-based time series of data including sends, opens, clicks, mailings, forwards, and opt-outs. Test mailings and forwards are not included in the data returned.</p> @@ -145,7 +146,7 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first last simple"> +<tr class="field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first last simple"> <li><strong>include_archived</strong> (<em>boolean</em>) – Accepts 1. All other values are False. Optional flag to include archived mailings in the list.</li> <li><strong>range</strong> (<em>string</em>) – Accepts 2 dates (YYYY-MM-DD) delimited by a tilde (~). @@ -206,7 +207,8 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head <dl class="get"> <dt id="get--#account_id-response-#mailing_id"> <tt class="descname">GET </tt><tt class="descname">/#account_id/response/#mailing_id</tt><a class="headerlink" href="#get--#account_id-response-#mailing_id" title="Permalink to this definition">¶</a></dt> -<dd><p>Get the response summary for a particular mailing.</p> +<dd><p><tt class="docutils literal"><span class="pre">GET</span> <span class="pre">/#account_id/response/#mailing_id</span></tt></p> +<p>Get the response summary for a particular mailing.</p> <p>This method will return the counts of each type of response activity for a particular mailing.</p> <dl class="docutils"> @@ -231,9 +233,9 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing does not exist.</td> +<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing does not exist.</td> </tr> -<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing is not valid +<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing is not valid mailing type - ‘m’ for standard mailings, ‘t’ for test mailings and ‘r’ for trigger mailings.</td> </tr> @@ -272,7 +274,8 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head <dl class="get"> <dt id="get--#account_id-response-#mailing_id-sends"> <tt class="descname">GET </tt><tt class="descname">/#account_id/response/#mailing_id/sends</tt><a class="headerlink" href="#get--#account_id-response-#mailing_id-sends" title="Permalink to this definition">¶</a></dt> -<dd><p>Get the list of messages that have been sent to an MTA for delivery.</p> +<dd><p><tt class="docutils literal"><span class="pre">GET</span> <span class="pre">/#account_id/response/#mailing_id/sends</span></tt></p> +<p>Get the list of messages that have been sent to an MTA for delivery.</p> <dl class="docutils"> <dt><strong>Returns:</strong></dt> <dd><p class="first">An array of objects with the following fields:</p> @@ -287,9 +290,9 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing does not exist.</td> +<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing does not exist.</td> </tr> -<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing is not valid +<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing is not valid mailing type - ‘m’ for standard mailings, ‘t’ for test mailings and ‘r’ for trigger mailings.</td> </tr> @@ -353,7 +356,8 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head <dl class="get"> <dt id="get--#account_id-response-#mailing_id-in_progress"> <tt class="descname">GET </tt><tt class="descname">/#account_id/response/#mailing_id/in_progress</tt><a class="headerlink" href="#get--#account_id-response-#mailing_id-in_progress" title="Permalink to this definition">¶</a></dt> -<dd><p>Get the list of messages that are in the queue, +<dd><p><tt class="docutils literal"><span class="pre">GET</span> <span class="pre">/#account_id/response/#mailing_id/in_progress</span></tt></p> +<p>Get the list of messages that are in the queue, possibly sent, but not yet delivered.</p> <dl class="docutils"> <dt><strong>Returns:</strong></dt> @@ -368,9 +372,9 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing does not exist.</td> +<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing does not exist.</td> </tr> -<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing is not valid +<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing is not valid mailing type - ‘m’ for standard mailings, ‘t’ for test mailings and ‘r’ for trigger mailings.</td> </tr> @@ -418,7 +422,8 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head <dl class="get"> <dt id="get--#account_id-response-#mailing_id-deliveries"> <tt class="descname">GET </tt><tt class="descname">/#account_id/response/#mailing_id/deliveries</tt><a class="headerlink" href="#get--#account_id-response-#mailing_id-deliveries" title="Permalink to this definition">¶</a></dt> -<dd><p>Get the list of messages that have finished delivery.</p> +<dd><p><tt class="docutils literal"><span class="pre">GET</span> <span class="pre">/#account_id/response/#mailing_id/deliveries</span></tt></p> +<p>Get the list of messages that have finished delivery.</p> <p>This will include those that were successfully delivered, as well as those that failed due to hard or soft bounces.</p> <p>This list can be limited by <tt class="docutils literal"><span class="pre">delivery_type</span></tt>.</p> @@ -426,7 +431,7 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first last simple"> +<tr class="field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first last simple"> <li><strong>del_status</strong> (<em>string</em>) – Accepted options: ‘all’, ‘delivered’, ‘bounced’, ‘hard’, ‘soft’. Defaults to ‘all’, if not provided.</li> </ul> @@ -449,9 +454,9 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing does not exist.</td> +<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing does not exist.</td> </tr> -<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing is not valid +<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing is not valid mailing type - ‘m’ for standard mailings, ‘t’ for test mailings and ‘r’ for trigger mailings.</td> </tr> @@ -492,7 +497,8 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head <dl class="get"> <dt id="get--#account_id-response-#mailing_id-opens"> <tt class="descname">GET </tt><tt class="descname">/#account_id/response/#mailing_id/opens</tt><a class="headerlink" href="#get--#account_id-response-#mailing_id-opens" title="Permalink to this definition">¶</a></dt> -<dd><p>Get the list of opened messages for this campaign.</p> +<dd><p><tt class="docutils literal"><span class="pre">GET</span> <span class="pre">/#account_id/response/#mailing_id/opens</span></tt></p> +<p>Get the list of opened messages for this campaign.</p> <dl class="docutils"> <dt><strong>Returns:</strong></dt> <dd><p class="first">An array of objects with the following fields:</p> @@ -507,9 +513,9 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing does not exist.</td> +<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing does not exist.</td> </tr> -<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing is not valid +<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing is not valid mailing type - ‘m’ for standard mailings, ‘t’ for test mailings and ‘r’ for trigger mailings.</td> </tr> @@ -559,7 +565,8 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head <dl class="get"> <dt id="get--#account_id-response-#mailing_id-links"> <tt class="descname">GET </tt><tt class="descname">/#account_id/response/#mailing_id/links</tt><a class="headerlink" href="#get--#account_id-response-#mailing_id-links" title="Permalink to this definition">¶</a></dt> -<dd><p>Get the list of links for this mailing.</p> +<dd><p><tt class="docutils literal"><span class="pre">GET</span> <span class="pre">/#account_id/response/#mailing_id/links</span></tt></p> +<p>Get the list of links for this mailing.</p> <dl class="docutils"> <dt><strong>Returns:</strong></dt> <dd><p class="first">An array of objects with the following fields:</p> @@ -577,9 +584,9 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing does not exist.</td> +<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing does not exist.</td> </tr> -<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing is not valid +<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing is not valid mailing type - ‘m’ for standard mailings, ‘t’ for test mailings and ‘r’ for trigger mailings.</td> </tr> @@ -612,13 +619,14 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head <dl class="get"> <dt id="get--#account_id-response-#mailing_id-clicks"> <tt class="descname">GET </tt><tt class="descname">/#account_id/response/#mailing_id/clicks</tt><a class="headerlink" href="#get--#account_id-response-#mailing_id-clicks" title="Permalink to this definition">¶</a></dt> -<dd><p>Get the list of clicks for this mailing.</p> +<dd><p><tt class="docutils literal"><span class="pre">GET</span> <span class="pre">/#account_id/response/#mailing_id/clicks</span></tt></p> +<p>Get the list of clicks for this mailing.</p> <p>This list can also be limited by <tt class="docutils literal"><span class="pre">member_id</span></tt> or <tt class="docutils literal"><span class="pre">link_id</span></tt>.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first last simple"> +<tr class="field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first last simple"> <li><strong>member_id</strong> (<em>int</em>) – Limits results to a single member.</li> <li><strong>link_id</strong> (<em>int</em>) – Limits results to a single link.</li> </ul> @@ -641,9 +649,9 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing does not exist.</td> +<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing does not exist.</td> </tr> -<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing is not valid +<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing is not valid mailing type - ‘m’ for standard mailings, ‘t’ for test mailings and ‘r’ for trigger mailings.</td> </tr> @@ -682,7 +690,8 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head <dl class="get"> <dt id="get--#account_id-response-#mailing_id-forwards"> <tt class="descname">GET </tt><tt class="descname">/#account_id/response/#mailing_id/forwards</tt><a class="headerlink" href="#get--#account_id-response-#mailing_id-forwards" title="Permalink to this definition">¶</a></dt> -<dd><p>Get the list of forwards for this mailing.</p> +<dd><p><tt class="docutils literal"><span class="pre">GET</span> <span class="pre">/#account_id/response/#mailing_id/forwards</span></tt></p> +<p>Get the list of forwards for this mailing.</p> <dl class="docutils"> <dt><strong>Returns:</strong></dt> <dd><p class="first">An array of objects with the following fields:</p> @@ -698,9 +707,9 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing does not exist.</td> +<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing does not exist.</td> </tr> -<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing is not valid +<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing is not valid mailing type - ‘m’ for standard mailings, ‘t’ for test mailings and ‘r’ for trigger mailings.</td> </tr> @@ -725,7 +734,8 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head <dl class="get"> <dt id="get--#account_id-response-#mailing_id-optouts"> <tt class="descname">GET </tt><tt class="descname">/#account_id/response/#mailing_id/optouts</tt><a class="headerlink" href="#get--#account_id-response-#mailing_id-optouts" title="Permalink to this definition">¶</a></dt> -<dd><p>Get the list of optouts for this mailing.</p> +<dd><p><tt class="docutils literal"><span class="pre">GET</span> <span class="pre">/#account_id/response/#mailing_id/optouts</span></tt></p> +<p>Get the list of optouts for this mailing.</p> <dl class="docutils"> <dt><strong>Returns:</strong></dt> <dd><p class="first">An array of objects with the following fields:</p> @@ -742,9 +752,9 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing does not exist.</td> +<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing does not exist.</td> </tr> -<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing is not valid +<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing is not valid mailing type - ‘m’ for standard mailings, ‘t’ for test mailings and ‘r’ for trigger mailings.</td> </tr> @@ -780,7 +790,8 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head <dl class="get"> <dt id="get--#account_id-response-#mailing_id-signups"> <tt class="descname">GET </tt><tt class="descname">/#account_id/response/#mailing_id/signups</tt><a class="headerlink" href="#get--#account_id-response-#mailing_id-signups" title="Permalink to this definition">¶</a></dt> -<dd><p>Get the list of signups for this mailing.</p> +<dd><p><tt class="docutils literal"><span class="pre">GET</span> <span class="pre">/#account_id/response/#mailing_id/signups</span></tt></p> +<p>Get the list of signups for this mailing.</p> <dl class="docutils"> <dt><strong>Returns:</strong></dt> <dd><p class="first">An array of objects with the following fields:</p> @@ -798,9 +809,9 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing does not exist.</td> +<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing does not exist.</td> </tr> -<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing is not valid +<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing is not valid mailing type - ‘m’ for standard mailings, ‘t’ for test mailings and ‘r’ for trigger mailings.</td> </tr> @@ -838,7 +849,8 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head <dl class="get"> <dt id="get--#account_id-response-#mailing_id-shares"> <tt class="descname">GET </tt><tt class="descname">/#account_id/response/#mailing_id/shares</tt><a class="headerlink" href="#get--#account_id-response-#mailing_id-shares" title="Permalink to this definition">¶</a></dt> -<dd><p>Get the list of shares for this mailing</p> +<dd><p><tt class="docutils literal"><span class="pre">GET</span> <span class="pre">/#account_id/response/#mailing_id/shares</span></tt></p> +<p>Get the list of shares for this mailing</p> <dl class="docutils"> <dt><strong>Returns:</strong></dt> <dd><p class="first">An array of objects with the following fields:</p> @@ -853,9 +865,9 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing does not exist.</td> +<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing does not exist.</td> </tr> -<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing is not valid +<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing is not valid mailing type - ‘m’ for standard mailings, ‘t’ for test mailings and ‘r’ for trigger mailings.</td> </tr> @@ -866,7 +878,8 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head <dl class="get"> <dt id="get--#account_id-response-#mailing_id-customer_shares"> <tt class="descname">GET </tt><tt class="descname">/#account_id/response/#mailing_id/customer_shares</tt><a class="headerlink" href="#get--#account_id-response-#mailing_id-customer_shares" title="Permalink to this definition">¶</a></dt> -<dd><p>Get the list of customer shares for this mailing</p> +<dd><p><tt class="docutils literal"><span class="pre">GET</span> <span class="pre">/#account_id/response/#mailing_id/customer_shares</span></tt></p> +<p>Get the list of customer shares for this mailing</p> <dl class="docutils"> <dt><strong>Returns:</strong></dt> <dd><p class="first">An array of objects with the following fields:</p> @@ -880,9 +893,9 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing does not exist.</td> +<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing does not exist.</td> </tr> -<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing is not valid +<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing is not valid mailing type - ‘m’ for standard mailings, ‘t’ for test mailings and ‘r’ for trigger mailings.</td> </tr> @@ -893,7 +906,8 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head <dl class="get"> <dt id="get--#account_id-response-#mailing_id-customer_share_clicks"> <tt class="descname">GET </tt><tt class="descname">/#account_id/response/#mailing_id/customer_share_clicks</tt><a class="headerlink" href="#get--#account_id-response-#mailing_id-customer_share_clicks" title="Permalink to this definition">¶</a></dt> -<dd><p>Get the list of customer share clicks for this mailing</p> +<dd><p><tt class="docutils literal"><span class="pre">GET</span> <span class="pre">/#account_id/response/#mailing_id/customer_share_clicks</span></tt></p> +<p>Get the list of customer share clicks for this mailing</p> <dl class="docutils"> <dt><strong>Returns:</strong></dt> <dd><p class="first">An array of objects with the following fields:</p> @@ -908,9 +922,9 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing does not exist.</td> +<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing does not exist.</td> </tr> -<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing is not valid +<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing is not valid mailing type - ‘m’ for standard mailings, ‘t’ for test mailings and ‘r’ for trigger mailings.</td> </tr> @@ -921,7 +935,8 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head <dl class="get"> <dt id="get--#account_id-response-#share_id-customer_share"> <tt class="descname">GET </tt><tt class="descname">/#account_id/response/#share_id/customer_share</tt><a class="headerlink" href="#get--#account_id-response-#share_id-customer_share" title="Permalink to this definition">¶</a></dt> -<dd><p>Get the customer share associated with the share id.</p> +<dd><p><tt class="docutils literal"><span class="pre">GET</span> <span class="pre">/#account_id/response/#share_id/customer_share</span></tt></p> +<p>Get the customer share associated with the share id.</p> <dl class="docutils"> <dt><strong>Returns:</strong></dt> <dd><p class="first">An object with the following fields:</p> @@ -936,9 +951,9 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing does not exist.</td> +<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing does not exist.</td> </tr> -<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing is not valid +<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing is not valid mailing type - ‘m’ for standard mailings, ‘t’ for test mailings and ‘r’ for trigger mailings.</td> </tr> @@ -949,7 +964,8 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head <dl class="get"> <dt id="get--#account_id-response-#mailing_id-shares-overview"> <tt class="descname">GET </tt><tt class="descname">/#account_id/response/#mailing_id/shares/overview</tt><a class="headerlink" href="#get--#account_id-response-#mailing_id-shares-overview" title="Permalink to this definition">¶</a></dt> -<dd><p>Get overview of shares pertaining to this mailing_id.</p> +<dd><p><tt class="docutils literal"><span class="pre">GET</span> <span class="pre">/#account_id/response/#mailing_id/shares/overview</span></tt></p> +<p>Get overview of shares pertaining to this mailing_id.</p> <dl class="docutils"> <dt><strong>Returns:</strong></dt> <dd><p class="first">An array of objects with the following fields:</p> @@ -964,9 +980,9 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing does not exist.</td> +<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing does not exist.</td> </tr> -<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing is not valid</td> +<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing is not valid</td> </tr> </tbody> </table> @@ -989,7 +1005,7 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head <div id="searchbox" style="display: none"> <h3>Quick search</h3> <form class="search" action="../../search.html" method="get"> - <input type="text" name="q" /> + <input type="text" name="q" size="18" /> <input type="submit" value="Go" /> <input type="hidden" name="check_keywords" value="yes" /> <input type="hidden" name="area" value="default" /> @@ -1019,7 +1035,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 04, 2013 at 09:46 AM. + Last updated on Jan 07, 2013 at 02:56 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/searches.html b/api/external/searches.html index 344f5bf..f17b00c 100644 --- a/api/external/searches.html +++ b/api/external/searches.html @@ -30,7 +30,7 @@ <script type="text/javascript">try{Typekit.load();}catch(e){}</script> <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="top" title="audience v0.1 documentation" href="../../index.html" /> <link rel="next" title="Triggers" href="triggers.html" /> <link rel="prev" title="Response" href="response.html" /> <link rel="icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> @@ -93,7 +93,7 @@ <h3>Navigation</h3> <li class="right" > <a href="response.html" title="Response" accesskey="P">previous</a> |</li> - <li><a href="../../index.html">audience 0.1 documentation</a> »</li> + <li><a href="../../index.html">audience v0.1 documentation</a> »</li> </ul> </div> @@ -110,18 +110,19 @@ <h1>Searches<a class="headerlink" href="#searches" title="Permalink to this head <dl class="get"> <dt id="get--#account_id-searches"> <tt class="descname">GET </tt><tt class="descname">/#account_id/searches</tt><a class="headerlink" href="#get--#account_id-searches" title="Permalink to this definition">¶</a></dt> -<dd><p>Retrieve a list of saved searches.</p> +<dd><p><tt class="docutils literal"><span class="pre">GET</span> <span class="pre">/#account_id/searches</span></tt></p> +<p>Retrieve a list of saved searches.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> +<tr class="field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> <li><strong>deleted</strong> (<em>boolean</em>) – Accepts True or 1. Optional flag to include deleted searches.</li> </ul> </td> </tr> -<tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first last">An array of searches.</p> +<tr class="field"><th class="field-name">Returns :</th><td class="field-body"><p class="first last">An array of searches.</p> </td> </tr> </tbody> @@ -166,21 +167,22 @@ <h1>Searches<a class="headerlink" href="#searches" title="Permalink to this head <dl class="get"> <dt id="get--#account_id-searches-#search_id"> <tt class="descname">GET </tt><tt class="descname">/#account_id/searches/#search_id</tt><a class="headerlink" href="#get--#account_id-searches-#search_id" title="Permalink to this definition">¶</a></dt> -<dd><p>Get the details for a saved search.</p> +<dd><p><tt class="docutils literal"><span class="pre">GET</span> <span class="pre">/#account_id/searches/#search_id</span></tt></p> +<p>Get the details for a saved search.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">A search.</p> +<tr class="field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">A search.</p> </td> </tr> -<tr class="field-even field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> +<tr class="field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> <li><strong>deleted</strong> (<em>boolean</em>) – Accepts True or 1. Optional flag to include deleted searches.</li> </ul> </td> </tr> -<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the search does not exist.</p> +<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the search does not exist.</p> </td> </tr> </tbody> @@ -199,7 +201,7 @@ <h1>Searches<a class="headerlink" href="#searches" title="Permalink to this head "name": "Test Search", "criteria": "[\"or\", [\"group\", \"eq\", \"Monthly Newsletter\"],[\"group\", \"eq\", \"Widget Buyers\"]]", "deleted_at": null, - "last_run_at": "@D:2013-01-04T09:46:08", + "last_run_at": "@D:2013-01-07T14:56:54", "active_count": 2, "account_id": 100 } @@ -211,7 +213,8 @@ <h1>Searches<a class="headerlink" href="#searches" title="Permalink to this head <dl class="post"> <dt id="post--#account_id-searches"> <tt class="descname">POST </tt><tt class="descname">/#account_id/searches</tt><a class="headerlink" href="#post--#account_id-searches" title="Permalink to this definition">¶</a></dt> -<dd><p>Create a saved search.</p> +<dd><p><tt class="docutils literal"><span class="pre">POST</span> <span class="pre">/#account_id/searches</span></tt></p> +<p>Create a saved search.</p> <p>The detail of a search is specified in a JSON structure that describes the clauses to be applied using groups of <em>filter</em> <em>type</em>, <em>operator</em> and <em>value</em>. Where the <em>filter</em> <em>type</em> is <tt class="docutils literal"><span class="pre">member_field</span></tt>, the @@ -233,17 +236,17 @@ <h1>Searches<a class="headerlink" href="#searches" title="Permalink to this head <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> +<tr class="field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> <li><strong>criteria</strong> (<em>array</em>) – A combination of search conditions, as described above.</li> <li><strong>name</strong> (<em>string</em>) – A name used to describe this search.</li> </ul> </td> </tr> -<tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">The ID of the new search</p> +<tr class="field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">The ID of the new search</p> </td> </tr> -<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http400</span></tt> if the search is invalid</p> +<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http400</span></tt> if the search is invalid</p> </td> </tr> </tbody> @@ -280,27 +283,28 @@ <h1>Searches<a class="headerlink" href="#searches" title="Permalink to this head <dl class="put"> <dt id="put--#account_id-searches-#search_id"> <tt class="descname">PUT </tt><tt class="descname">/#account_id/searches/#search_id</tt><a class="headerlink" href="#put--#account_id-searches-#search_id" title="Permalink to this definition">¶</a></dt> -<dd><p>Update a saved search.</p> +<dd><p><tt class="docutils literal"><span class="pre">PUT</span> <span class="pre">/#account_id/searches/#search_id</span></tt></p> +<p>Update a saved search.</p> <p>No parameters are required, but either the <tt class="docutils literal"><span class="pre">name</span></tt> or <tt class="docutils literal"><span class="pre">criteria</span></tt> parameter must be present for an update to occur.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> +<tr class="field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> <li><strong>criteria</strong> (<em>array</em>) – A combination of search conditions, as described above (see <cite>create_search</cite>).</li> <li><strong>name</strong> (<em>string</em>) – A name used to describe this search.</li> </ul> </td> </tr> -<tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">True if the update was successful</p> +<tr class="field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">True if the update was successful</p> </td> </tr> -<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><p class="first"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the search does not exist.</p> +<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><p class="first"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the search does not exist.</p> </td> </tr> -<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http400</span></tt> if the search criteria is invalid</p> +<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http400</span></tt> if the search criteria is invalid</p> </td> </tr> </tbody> @@ -336,15 +340,16 @@ <h1>Searches<a class="headerlink" href="#searches" title="Permalink to this head <dl class="delete"> <dt id="delete--#account_id-searches-#search_id"> <tt class="descname">DELETE </tt><tt class="descname">/#account_id/searches/#search_id</tt><a class="headerlink" href="#delete--#account_id-searches-#search_id" title="Permalink to this definition">¶</a></dt> -<dd><p>Delete a saved search. The member records referred to by the search +<dd><p><tt class="docutils literal"><span class="pre">DELETE</span> <span class="pre">/#account_id/searches/#search_id</span></tt></p> +<p>Delete a saved search. The member records referred to by the search are not affected.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">True if the search is deleted.</td> +<tr class="field"><th class="field-name">Returns :</th><td class="field-body">True if the search is deleted.</td> </tr> -<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the search does not exist.</td> +<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the search does not exist.</td> </tr> </tbody> </table> @@ -364,14 +369,15 @@ <h1>Searches<a class="headerlink" href="#searches" title="Permalink to this head <dl class="get"> <dt id="get--#account_id-searches-#search_id-members"> <tt class="descname">GET </tt><tt class="descname">/#account_id/searches/#search_id/members</tt><a class="headerlink" href="#get--#account_id-searches-#search_id-members" title="Permalink to this definition">¶</a></dt> -<dd><p>Get the members matching the search.</p> +<dd><p><tt class="docutils literal"><span class="pre">GET</span> <span class="pre">/#account_id/searches/#search_id/members</span></tt></p> +<p>Get the members matching the search.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">An array of members.</td> +<tr class="field"><th class="field-name">Returns :</th><td class="field-body">An array of members.</td> </tr> -<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the search does not exist.</td> +<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the search does not exist.</td> </tr> </tbody> </table> @@ -481,7 +487,7 @@ <h1>Searches<a class="headerlink" href="#searches" title="Permalink to this head <div id="searchbox" style="display: none"> <h3>Quick search</h3> <form class="search" action="../../search.html" method="get"> - <input type="text" name="q" /> + <input type="text" name="q" size="18" /> <input type="submit" value="Go" /> <input type="hidden" name="check_keywords" value="yes" /> <input type="hidden" name="area" value="default" /> @@ -511,7 +517,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 04, 2013 at 09:46 AM. + Last updated on Jan 07, 2013 at 02:56 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/triggers.html b/api/external/triggers.html index cdc21b0..95eaba0 100644 --- a/api/external/triggers.html +++ b/api/external/triggers.html @@ -30,7 +30,7 @@ <script type="text/javascript">try{Typekit.load();}catch(e){}</script> <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="top" title="audience v0.1 documentation" href="../../index.html" /> <link rel="next" title="Webhooks" href="webhooks.html" /> <link rel="prev" title="Searches" href="searches.html" /> <link rel="icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> @@ -93,7 +93,7 @@ <h3>Navigation</h3> <li class="right" > <a href="searches.html" title="Searches" accesskey="P">previous</a> |</li> - <li><a href="../../index.html">audience 0.1 documentation</a> »</li> + <li><a href="../../index.html">audience v0.1 documentation</a> »</li> </ul> </div> @@ -109,7 +109,8 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head <dl class="get"> <dt id="get--#account_id-triggers"> <tt class="descname">GET </tt><tt class="descname">/#account_id/triggers</tt><a class="headerlink" href="#get--#account_id-triggers" title="Permalink to this definition">¶</a></dt> -<dd><p>Get a basic listing of all triggers in an account.</p> +<dd><p><tt class="docutils literal"><span class="pre">GET</span> <span class="pre">/#account_id/triggers</span></tt></p> +<p>Get a basic listing of all triggers in an account.</p> <p> <div class="sample-response hide-response"> <span style="font-weight:bold;">Sample Response</span> @@ -148,7 +149,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": 203, "push_offset_units": "0:-14:0:0", - "start_ts": "@D:2013-01-04T09:46:06", + "start_ts": "@D:2013-01-07T14:56:51", "trigger_id": 100, "signups": null, "push_offset": "@I:-1209600.0", @@ -189,7 +190,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": null, "push_offset_units": "0:3:0:0", - "start_ts": "@D:2013-01-04T09:46:06", + "start_ts": "@D:2013-01-07T14:56:51", "trigger_id": 101, "signups": [ 1, @@ -214,12 +215,13 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head <dl class="post"> <dt id="post--#account_id-triggers"> <tt class="descname">POST </tt><tt class="descname">/#account_id/triggers</tt><a class="headerlink" href="#post--#account_id-triggers" title="Permalink to this definition">¶</a></dt> -<dd><p>Create a new trigger.</p> +<dd><p><tt class="docutils literal"><span class="pre">POST</span> <span class="pre">/#account_id/triggers</span></tt></p> +<p>Create a new trigger.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> +<tr class="field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> <li><strong>name</strong> (<em>string</em>) – A descriptive name for the trigger.</li> <li><strong>event_type</strong> (<em>string</em>) – The type of event that causes this trigger to fire. Accepts one of ‘s’ (signup), ‘c’ (click), ‘u’ (survey), ‘d’ (date), @@ -239,14 +241,14 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head </ul> </td> </tr> -<tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">The new trigger’s id.</p> +<tr class="field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">The new trigger’s id.</p> </td> </tr> -<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><p class="first"><tt class="docutils literal"><span class="pre">Http500</span></tt> if object_ids is null and event_type is one of: +<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><p class="first"><tt class="docutils literal"><span class="pre">Http500</span></tt> if object_ids is null and event_type is one of: ‘s’ (signup), ‘c’ (click), ‘u’ (survey).</p> </td> </tr> -<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http500</span></tt> if field_id is null and event_type is one of: +<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http500</span></tt> if field_id is null and event_type is one of: ‘d’ (date), ‘r’ (recurring date).</p> </td> </tr> @@ -278,14 +280,15 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head <dl class="get"> <dt id="get--#account_id-triggers-#trigger_id"> <tt class="descname">GET </tt><tt class="descname">/#account_id/triggers/#trigger_id</tt><a class="headerlink" href="#get--#account_id-triggers-#trigger_id" title="Permalink to this definition">¶</a></dt> -<dd><p>Look up a trigger by trigger id.</p> +<dd><p><tt class="docutils literal"><span class="pre">GET</span> <span class="pre">/#account_id/triggers/#trigger_id</span></tt></p> +<p>Look up a trigger by trigger id.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">A trigger.</td> +<tr class="field"><th class="field-name">Returns :</th><td class="field-body">A trigger.</td> </tr> -<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no trigger is found.</td> +<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no trigger is found.</td> </tr> </tbody> </table> @@ -326,7 +329,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": 203, "push_offset_units": "0:-14:0:0", - "start_ts": "@D:2013-01-04T09:46:06", + "start_ts": "@D:2013-01-07T14:56:51", "trigger_id": 100, "signups": null, "push_offset": "@I:-1209600.0", @@ -345,14 +348,15 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head <dl class="put"> <dt id="put--#account_id-triggers-#trigger_id"> <tt class="descname">PUT </tt><tt class="descname">/#account_id/triggers/#trigger_id</tt><a class="headerlink" href="#put--#account_id-triggers-#trigger_id" title="Permalink to this definition">¶</a></dt> -<dd><p>Update or edit a trigger.</p> +<dd><p><tt class="docutils literal"><span class="pre">PUT</span> <span class="pre">/#account_id/triggers/#trigger_id</span></tt></p> +<p>Update or edit a trigger.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">The id of the updated trigger.</td> +<tr class="field"><th class="field-name">Returns :</th><td class="field-body">The id of the updated trigger.</td> </tr> -<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no trigger is found.</td> +<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no trigger is found.</td> </tr> </tbody> </table> @@ -375,14 +379,15 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head <dl class="delete"> <dt id="delete--#account_id-triggers-#trigger_id"> <tt class="descname">DELETE </tt><tt class="descname">/#account_id/triggers/#trigger_id</tt><a class="headerlink" href="#delete--#account_id-triggers-#trigger_id" title="Permalink to this definition">¶</a></dt> -<dd><p>Delete a trigger.</p> +<dd><p><tt class="docutils literal"><span class="pre">DELETE</span> <span class="pre">/#account_id/triggers/#trigger_id</span></tt></p> +<p>Delete a trigger.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">True if the trigger is deleted.</td> +<tr class="field"><th class="field-name">Returns :</th><td class="field-body">True if the trigger is deleted.</td> </tr> -<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no trigger is found.</td> +<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no trigger is found.</td> </tr> </tbody> </table> @@ -402,14 +407,15 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head <dl class="get"> <dt id="get--#account_id-triggers-#trigger_id-mailings"> <tt class="descname">GET </tt><tt class="descname">/#account_id/triggers/#trigger_id/mailings</tt><a class="headerlink" href="#get--#account_id-triggers-#trigger_id-mailings" title="Permalink to this definition">¶</a></dt> -<dd><p>Get mailings sent by a trigger.</p> +<dd><p><tt class="docutils literal"><span class="pre">GET</span> <span class="pre">/#account_id/triggers/#trigger_id/mailings</span></tt></p> +<p>Get mailings sent by a trigger.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">An array of mailings.</td> +<tr class="field"><th class="field-name">Returns :</th><td class="field-body">An array of mailings.</td> </tr> -<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no trigger is found.</td> +<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no trigger is found.</td> </tr> </tbody> </table> @@ -469,7 +475,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head <div id="searchbox" style="display: none"> <h3>Quick search</h3> <form class="search" action="../../search.html" method="get"> - <input type="text" name="q" /> + <input type="text" name="q" size="18" /> <input type="submit" value="Go" /> <input type="hidden" name="check_keywords" value="yes" /> <input type="hidden" name="area" value="default" /> @@ -499,7 +505,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 04, 2013 at 09:46 AM. + Last updated on Jan 07, 2013 at 02:56 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/webhooks.html b/api/external/webhooks.html index 1dad7b4..24f7140 100644 --- a/api/external/webhooks.html +++ b/api/external/webhooks.html @@ -30,7 +30,7 @@ <script type="text/javascript">try{Typekit.load();}catch(e){}</script> <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="top" title="audience v0.1 documentation" href="../../index.html" /> <link rel="next" title="Pagination" href="../../pagination.html" /> <link rel="prev" title="Triggers" href="triggers.html" /> <link rel="icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> @@ -93,7 +93,7 @@ <h3>Navigation</h3> <li class="right" > <a href="triggers.html" title="Triggers" accesskey="P">previous</a> |</li> - <li><a href="../../index.html">audience 0.1 documentation</a> »</li> + <li><a href="../../index.html">audience v0.1 documentation</a> »</li> </ul> </div> @@ -111,12 +111,13 @@ <h1>Webhooks<a class="headerlink" href="#webhooks" title="Permalink to this head <dl class="get"> <dt id="get--#account_id-webhooks"> <tt class="descname">GET </tt><tt class="descname">/#account_id/webhooks</tt><a class="headerlink" href="#get--#account_id-webhooks" title="Permalink to this definition">¶</a></dt> -<dd><p>Get a basic listing of all webhooks associated with an account.</p> +<dd><p><tt class="docutils literal"><span class="pre">GET</span> <span class="pre">/#account_id/webhooks</span></tt></p> +<p>Get a basic listing of all webhooks associated with an account.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">A list of webhooks that belong to the given account.</td> +<tr class="field"><th class="field-name">Returns :</th><td class="field-body">A list of webhooks that belong to the given account.</td> </tr> </tbody> </table> @@ -152,14 +153,15 @@ <h1>Webhooks<a class="headerlink" href="#webhooks" title="Permalink to this head <dl class="get"> <dt id="get--#account_id-webhooks-#webhook_id"> <tt class="descname">GET </tt><tt class="descname">/#account_id/webhooks/#webhook_id</tt><a class="headerlink" href="#get--#account_id-webhooks-#webhook_id" title="Permalink to this definition">¶</a></dt> -<dd><p>Get information for a specific webhook belonging to a specific account.</p> +<dd><p><tt class="docutils literal"><span class="pre">GET</span> <span class="pre">/#account_id/webhooks/#webhook_id</span></tt></p> +<p>Get information for a specific webhook belonging to a specific account.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">Details for a single webhook</td> +<tr class="field"><th class="field-name">Returns :</th><td class="field-body">Details for a single webhook</td> </tr> -<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no webhook found</td> +<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no webhook found</td> </tr> </tbody> </table> @@ -185,13 +187,14 @@ <h1>Webhooks<a class="headerlink" href="#webhooks" title="Permalink to this head <dl class="get"> <dt id="get--#account_id-webhooks-events"> <tt class="descname">GET </tt><tt class="descname">/#account_id/webhooks/events</tt><a class="headerlink" href="#get--#account_id-webhooks-events" title="Permalink to this definition">¶</a></dt> -<dd><p>Get a listing of all event types that are available for +<dd><p><tt class="docutils literal"><span class="pre">GET</span> <span class="pre">/#account_id/webhooks/events</span></tt></p> +<p>Get a listing of all event types that are available for webhooks.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">A list of event types and descriptions</td> +<tr class="field"><th class="field-name">Returns :</th><td class="field-body">A list of event types and descriptions</td> </tr> </tbody> </table> @@ -323,7 +326,8 @@ <h1>Webhooks<a class="headerlink" href="#webhooks" title="Permalink to this head <dl class="post"> <dt id="post--#account_id-webhooks"> <tt class="descname">POST </tt><tt class="descname">/#account_id/webhooks</tt><a class="headerlink" href="#post--#account_id-webhooks" title="Permalink to this definition">¶</a></dt> -<dd><p>Create an new webhook.</p> +<dd><p><tt class="docutils literal"><span class="pre">POST</span> <span class="pre">/#account_id/webhooks</span></tt></p> +<p>Create an new webhook.</p> <p>If method is ‘POST’, the data will be posted to the given URL as a blob of JSON. If the method is ‘GET’ the data will be added to the query string of your URL as a url encoded blob of JSON in a key called ‘payload’.</p> @@ -331,7 +335,7 @@ <h1>Webhooks<a class="headerlink" href="#webhooks" title="Permalink to this head <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first last simple"> +<tr class="field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first last simple"> <li><strong>event</strong> (<em>string</em>) – The name of an event to register this webhook for</li> <li><strong>url</strong> (<em>string</em>) – The URL to call when the event happens</li> <li><strong>method</strong> (<em>string</em>) – The method to use when calling the webhook. Can be GET or POST. Defaults to POST.</li> @@ -361,14 +365,15 @@ <h1>Webhooks<a class="headerlink" href="#webhooks" title="Permalink to this head <dl class="put"> <dt id="put--#account_id-webhooks-#webhook_id"> <tt class="descname">PUT </tt><tt class="descname">/#account_id/webhooks/#webhook_id</tt><a class="headerlink" href="#put--#account_id-webhooks-#webhook_id" title="Permalink to this definition">¶</a></dt> -<dd><p>Update an existing webhook. Takes the same params as create_webhook.</p> +<dd><p><tt class="docutils literal"><span class="pre">PUT</span> <span class="pre">/#account_id/webhooks/#webhook_id</span></tt></p> +<p>Update an existing webhook. Takes the same params as create_webhook.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">The id of the updated webhook, or False if the update failed.</td> +<tr class="field"><th class="field-name">Returns :</th><td class="field-body">The id of the updated webhook, or False if the update failed.</td> </tr> -<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the webhook cannot be found.</td> +<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the webhook cannot be found.</td> </tr> </tbody> </table> @@ -391,14 +396,15 @@ <h1>Webhooks<a class="headerlink" href="#webhooks" title="Permalink to this head <dl class="delete"> <dt id="delete--#account_id-webhooks-#webhook_id"> <tt class="descname">DELETE </tt><tt class="descname">/#account_id/webhooks/#webhook_id</tt><a class="headerlink" href="#delete--#account_id-webhooks-#webhook_id" title="Permalink to this definition">¶</a></dt> -<dd><p>Deletes an existing webhook.</p> +<dd><p><tt class="docutils literal"><span class="pre">DELETE</span> <span class="pre">/#account_id/webhooks/#webhook_id</span></tt></p> +<p>Deletes an existing webhook.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">True if the webhook deleted successufully.</td> +<tr class="field"><th class="field-name">Returns :</th><td class="field-body">True if the webhook deleted successufully.</td> </tr> -<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no webhook found</td> +<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no webhook found</td> </tr> </tbody> </table> @@ -418,12 +424,13 @@ <h1>Webhooks<a class="headerlink" href="#webhooks" title="Permalink to this head <dl class="delete"> <dt id="delete--#account_id-webhooks"> <tt class="descname">DELETE </tt><tt class="descname">/#account_id/webhooks</tt><a class="headerlink" href="#delete--#account_id-webhooks" title="Permalink to this definition">¶</a></dt> -<dd><p>Delete all webhooks registered for an account.</p> +<dd><p><tt class="docutils literal"><span class="pre">DELETE</span> <span class="pre">/#account_id/webhooks</span></tt></p> +<p>Delete all webhooks registered for an account.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">True if the webhooks deleted successufully.</td> +<tr class="field"><th class="field-name">Returns :</th><td class="field-body">True if the webhooks deleted successufully.</td> </tr> </tbody> </table> @@ -457,7 +464,7 @@ <h1>Webhooks<a class="headerlink" href="#webhooks" title="Permalink to this head <div id="searchbox" style="display: none"> <h3>Quick search</h3> <form class="search" action="../../search.html" method="get"> - <input type="text" name="q" /> + <input type="text" name="q" size="18" /> <input type="submit" value="Go" /> <input type="hidden" name="check_keywords" value="yes" /> <input type="hidden" name="area" value="default" /> @@ -487,7 +494,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 04, 2013 at 09:46 AM. + Last updated on Jan 07, 2013 at 02:56 PM. </div> </body> </html> \ No newline at end of file diff --git a/genindex.html b/genindex.html index bbdd71b..38e6f45 100644 --- a/genindex.html +++ b/genindex.html @@ -1,7 +1,5 @@ - - <!doctype html> @@ -32,7 +30,7 @@ <script type="text/javascript">try{Typekit.load();}catch(e){}</script> <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="top" title="audience v0.1 documentation" href="index.html" /> <link rel="icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> <link rel="shortcut icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> <link rel="apple-touch-icon-precomposed" href="http://myemma.com/static/global/favicons/apple-iphone.png" /> @@ -87,7 +85,7 @@ <h3>Navigation</h3> <li class="right" > <a href="http-routingtable.html" title="HTTP Routing Table" >routing table</a> |</li> - <li><a href="index.html">audience 0.1 documentation</a> »</li> + <li><a href="index.html">audience v0.1 documentation</a> »</li> </ul> </div> @@ -97,11 +95,11 @@ <h3>Navigation</h3> <div class="body"> -<h1 id="index">Index</h1> + <h1 id="index">Index</h1> -<div class="genindex-jumpbox"> - -</div> + <div class="genindex-jumpbox"> + + </div> </div> @@ -116,7 +114,7 @@ <h1 id="index">Index</h1> <div id="searchbox" style="display: none"> <h3>Quick search</h3> <form class="search" action="search.html" method="get"> - <input type="text" name="q" /> + <input type="text" name="q" size="18" /> <input type="submit" value="Go" /> <input type="hidden" name="check_keywords" value="yes" /> <input type="hidden" name="area" value="default" /> @@ -146,7 +144,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 04, 2013 at 09:46 AM. + Last updated on Jan 07, 2013 at 02:56 PM. </div> </body> </html> \ No newline at end of file diff --git a/http-routingtable.html b/http-routingtable.html index a32b00a..238023c 100644 --- a/http-routingtable.html +++ b/http-routingtable.html @@ -30,7 +30,7 @@ <script type="text/javascript">try{Typekit.load();}catch(e){}</script> <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="top" title="audience v0.1 documentation" href="index.html" /> <link rel="icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> <link rel="shortcut icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> @@ -92,7 +92,7 @@ <h3>Navigation</h3> <li class="right" > <a href="#" title="HTTP Routing Table" >routing table</a> |</li> - <li><a href="index.html">audience 0.1 documentation</a> »</li> + <li><a href="index.html">audience v0.1 documentation</a> »</li> </ul> </div> @@ -347,6 +347,11 @@ <h1>HTTP Routing Table</h1> <td> <a href="api/external/members.html#get--#account_id-members-email--email"><tt class="xref">GET /#account_id/members/email/:email</tt></a></td><td> <em></em></td></tr> + <tr> + <td></td> + <td> + <a href="api/external/members.html#put--#account_id-members-email-optout--email"><tt class="xref">PUT /#account_id/members/email/optout/:email</tt></a></td><td> + <em></em></td></tr> <tr> <td></td> <td> @@ -572,7 +577,7 @@ <h1>HTTP Routing Table</h1> <div id="searchbox" style="display: none"> <h3>Quick search</h3> <form class="search" action="search.html" method="get"> - <input type="text" name="q" /> + <input type="text" name="q" size="18" /> <input type="submit" value="Go" /> <input type="hidden" name="check_keywords" value="yes" /> <input type="hidden" name="area" value="default" /> @@ -602,7 +607,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 04, 2013 at 09:46 AM. + Last updated on Jan 07, 2013 at 02:56 PM. </div> </body> </html> \ No newline at end of file diff --git a/index.html b/index.html index 980a1f8..e4ad152 100644 --- a/index.html +++ b/index.html @@ -30,7 +30,7 @@ <script type="text/javascript">try{Typekit.load();}catch(e){}</script> <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="#" /> + <link rel="top" title="audience v0.1 documentation" href="#" /> <link rel="next" title="Fields" href="api/external/fields.html" /> <link rel="icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> <link rel="shortcut icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> @@ -89,7 +89,7 @@ <h3>Navigation</h3> <li class="right" > <a href="api/external/fields.html" title="Fields" accesskey="N">next</a> |</li> - <li><a href="#">audience 0.1 documentation</a> »</li> + <li><a href="#">audience v0.1 documentation</a> »</li> </ul> </div> @@ -162,8 +162,8 @@ <h2>Quickstart<a class="headerlink" href="#quickstart" title="Permalink to this <span class="nv">$member_data</span> <span class="o">=</span> <span class="k">array</span><span class="p">(</span> <span class="s2">"email"</span> <span class="o">=></span> <span class="nv">$email</span><span class="p">,</span> <span class="s2">"fields"</span> <span class="o">=></span> <span class="k">array</span><span class="p">(</span> - <span class="s2">"name_first"</span> <span class="o">=></span> <span class="nv">$first_name</span><span class="p">,</span> - <span class="s2">"name_last"</span> <span class="o">=></span> <span class="nv">$last_name</span> + <span class="s2">"first_name"</span> <span class="o">=></span> <span class="nv">$first_name</span><span class="p">,</span> + <span class="s2">"last_name"</span> <span class="o">=></span> <span class="nv">$last_name</span> <span class="p">),</span> <span class="s2">"group_ids"</span> <span class="o">=></span> <span class="nv">$groups</span> <span class="p">);</span> @@ -182,20 +182,6 @@ <h2>Quickstart<a class="headerlink" href="#quickstart" title="Permalink to this </div> <p>Next, we’ll do a little dance with cURL that I’m sure is familiar. I’ll explain some particulars below the code block.</p> -<div class="highlight-php"><div class="highlight"><pre><span class="c1">// setup and execute the cURL command</span> -<span class="nv">$ch</span> <span class="o">=</span> <span class="nb">curl_init</span><span class="p">();</span> -<span class="hll"><span class="nb">curl_setopt</span><span class="p">(</span><span class="nv">$ch</span><span class="p">,</span> <span class="nx">CURLOPT_USERPWD</span><span class="p">,</span> <span class="nv">$public_api_key</span> <span class="o">.</span> <span class="s2">":"</span> <span class="o">.</span> <span class="nv">$private_api_key</span><span class="p">);</span> -</span><span class="nb">curl_setopt</span><span class="p">(</span><span class="nv">$ch</span><span class="p">,</span> <span class="nx">CURLOPT_URL</span><span class="p">,</span> <span class="nv">$url</span><span class="p">);</span> -<span class="nb">curl_setopt</span><span class="p">(</span><span class="nv">$ch</span><span class="p">,</span> <span class="nx">CURLOPT_POST</span><span class="p">,</span> <span class="nb">count</span><span class="p">(</span><span class="nv">$member_data</span><span class="p">));</span> -<span class="hll"><span class="nb">curl_setopt</span><span class="p">(</span><span class="nv">$ch</span><span class="p">,</span> <span class="nx">CURLOPT_POSTFIELDS</span><span class="p">,</span> <span class="nb">json_encode</span><span class="p">(</span><span class="nv">$member_data</span><span class="p">));</span> -</span><span class="hll"><span class="nb">curl_setopt</span><span class="p">(</span><span class="nv">$ch</span><span class="p">,</span> <span class="nx">CURLOPT_HTTPHEADER</span><span class="p">,</span> <span class="k">array</span><span class="p">(</span><span class="s1">'Content-type: application/json'</span><span class="p">));</span> -</span><span class="nb">curl_setopt</span><span class="p">(</span><span class="nv">$ch</span><span class="p">,</span> <span class="nx">CURLOPT_RETURNTRANSFER</span><span class="p">,</span> <span class="k">true</span><span class="p">);</span> -<span class="nb">curl_setopt</span><span class="p">(</span><span class="nv">$ch</span><span class="p">,</span> <span class="nx">CURLOPT_SSL_VERIFYPEER</span><span class="p">,</span> <span class="k">false</span><span class="p">);</span> -<span class="nv">$head</span> <span class="o">=</span> <span class="nb">curl_exec</span><span class="p">(</span><span class="nv">$ch</span><span class="p">);</span> -<span class="nv">$http_code</span> <span class="o">=</span> <span class="nb">curl_getinfo</span><span class="p">(</span><span class="nv">$ch</span><span class="p">,</span> <span class="nx">CURLINFO_HTTP_CODE</span><span class="p">);</span> -<span class="nb">curl_close</span><span class="p">(</span><span class="nv">$ch</span><span class="p">);</span> -</pre></div> -</div> <p>On line 3 is where we use the public/private keys to authenticate our call. On lines 6-7, we force the API call to make its request in JSON and expect JSON in return.</p> @@ -295,7 +281,7 @@ <h3>Related Topics</h3> <div id="searchbox" style="display: none"> <h3>Quick search</h3> <form class="search" action="search.html" method="get"> - <input type="text" name="q" /> + <input type="text" name="q" size="18" /> <input type="submit" value="Go" /> <input type="hidden" name="check_keywords" value="yes" /> <input type="hidden" name="area" value="default" /> @@ -325,7 +311,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 04, 2013 at 09:46 AM. + Last updated on Jan 07, 2013 at 02:56 PM. </div> </body> </html> \ No newline at end of file diff --git a/member_search.html b/member_search.html index f26ccee..12856bf 100644 --- a/member_search.html +++ b/member_search.html @@ -30,7 +30,7 @@ <script type="text/javascript">try{Typekit.load();}catch(e){}</script> <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="top" title="audience v0.1 documentation" href="index.html" /> <link rel="next" title="Webhook Usage" href="webhooks.html" /> <link rel="prev" title="Placeholder Syntax" href="placeholders.html" /> <link rel="icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> @@ -93,7 +93,7 @@ <h3>Navigation</h3> <li class="right" > <a href="placeholders.html" title="Placeholder Syntax" accesskey="P">previous</a> |</li> - <li><a href="index.html">audience 0.1 documentation</a> »</li> + <li><a href="index.html">audience v0.1 documentation</a> »</li> </ul> </div> @@ -226,7 +226,7 @@ <h3>Related Topics</h3> <div id="searchbox" style="display: none"> <h3>Quick search</h3> <form class="search" action="search.html" method="get"> - <input type="text" name="q" /> + <input type="text" name="q" size="18" /> <input type="submit" value="Go" /> <input type="hidden" name="check_keywords" value="yes" /> <input type="hidden" name="area" value="default" /> @@ -256,7 +256,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 04, 2013 at 09:46 AM. + Last updated on Jan 07, 2013 at 02:56 PM. </div> </body> </html> \ No newline at end of file diff --git a/objects.inv b/objects.inv index b731c22a0bd7aaf682df323740307765565d5cb4..c0b6d561228ba49fb607041755078dac48d52a6d 100644 GIT binary patch delta 973 zcmV;;12X*C3hWAyrGJS(-W%J`;~BdUwXAdTFX?ptTJkqhChS{M*wU{TU6rTg`}q5% zQaRAH`DCubw*H~=z7)38hj_av_4nL&ybyj*Th*Cv_8&71|CoQt@A2PDCwQA({NAR_ zQvNaxevXZsl4s(g%3QSP?z7f>Y4E+?QqM}5?eX(ol>E9Cy&g2YkTus*)eF3-+@O6K z&9Eiba?p-SRBxk+vvHW;lR*K+0dJEB0!@FfkUEJRY>q`ae2P}}P28i$LQ>@QuG$aY z=5ZA@fo_T@nsz8lyRFy<))*Bna4Ne|MLeC|RM1XoQAb{Bg9tD4v9-mtBS!Z0_4YZa zo*M=;AJY5{-^jk#AX2zZbP$)_VTKR8^kjZSTUvMiu{$uf>c*2z4&(NhVu$I6m|=e^ z*%EY1dF$zjJ`I=>j;=ZyGrJ@<G#F~&JjbFbTGX-iJR<Ios-787p&97W6Q4BBT$FOi zn`Go6&R{7a&ZgIRAja7|_e?aqTI=KU;D8qkO__<9Gq58se?mG=bktEDG*N5acmqcZ zG9S{N!4JfqK(4eE<nPUt;0S+%g)o2TH0Sw*9287CVM)uP4vq35O<PQgz%GL4UEf3% zmBZW@{R~5`)YW>lrVp<7P`xV%Viub!?JZk8g|Cc36~1AHNd`<9>*WLwTVQemgNURC z_^koJ>SvTITGFk79c;{r4$m%nazT8a+}DJJlMB7S2I%|@c|}LKzjmAIy;XnJeM_CR zTJNt+HJ`_Jmq)_pB-2vdNRTD(G}nE1aIG!Ko&!6QGojx9MDQ0F)exx)eRQ{2kbTE| zJSRxc-T+QNds~rGvNuu^9{KzU?}+r(e9z<lO0}B)YZYa)FgC+yT2224e9}7#z(0RS zS<!F3qfA<xCO_z#h(ent9rS-eQ1J61>sqvf@NVDxa8<W;FbpjSfsnyvGyLUr+pA^I zs+B)^z#IqcnS=Wm|Dg#YT%1%ZLiDN0&HI&?GUt=?Ix@u*ROqG_WblNvCV)5V{D~Vv z^|r!#CBR2+{|yL2U4&XIT<jHSxr2xNW>}hI*57wBGidY>E7Dd9<%WL{hv%$U4DdnZ zyb{mzqY`2xM)2ty!d@J1D{$=bdrx9z5C6b)nHCY#s}Qj_oe(qe7JD8T9b=mAv5_zd zl{!M}i5=u6$bDkXc%6yz3FHR&p}Yp>_74n*n~>e$$tg_gJ57j`lA;EaiKrWhno=B; v^uw2X(Rg>q{xGxeAt4>=Xc@p$9A)@SI67upFb}iL!vKf_2<iU=DRH2#JCEyW delta 954 zcmV;r14aDo3fT&frGMa$_r~_~cm@}umUS-vC7sS+Oa3Oxgndg2Tl)2)tMZh5AKzap zl><$iPv$CY>mMrbOJO^Gh_{PUf6sl#3*q;)Rh{W(znE$G$9yHf$FG-8@HV^ny-k^= z{AC*a92++!&%{NQxoFSbXRZ0t;CsELo|Q1$<LA97`E@ILX&rbWYp$iL7kE>-LHjbA zVN0y#pdFQ{-bNE=<1p`&LIK4AXOjp5O@CWRokR{c$D$lQMXUNI?$Ki*De`((?FVo3 zxQd!UH$@apJCvo}R_p_7jEWXGmEEW!p3ZJ6Xs5KOBd@eUgqQi)+G5%fBYXOKdmL2H z4TG5nY5s<1WZ!ELDcmMHh|BIU!-rjZGB44V)}4Rs4vek3@nn<3xP4OWF#QlSOn)U? zf^I2qJsr`f0aL=!RYzlHm&Aq!Lk*ngSTse8I<}ri#Qjm#Gvg^V13h};lg62gQVw~O zj6B2{EG5L*^coMuIGg95iDp-8eS97q@M57UGZAwJcI4$xNXLneI;w*vYONdpz|n%t zhjeG~1F<KND{Te&dov|C!rx#a%zrt}c|IWr1(Qx#(z2*SqkKry7Ly{di{N?JH&I39 zF!x12!%!=AwH~eMgX=w1?+SvL#imMo%N9@JD`QZFBWB=<J3#Fxbt`UC;%<i>bF9Gu z;)e&s=P7PYNH{#uU&sKRpQNtn2)~e>uHRc#-Bo?kYAx|hHJ`@>?vb!L$$zvIHxgvY zJI!_99b9V*vggc<w4bTJU?OZ;jA{rLg+97lEXcl-Hl81%Cr|*VpFpihDG3xQ4~~2U zgm*;xYM$qDf2CSY-&#f4ER4<YnO4*HfKR&00Ql!u87um&tBgr&)8q$z6H#c>q=P;P zia$PNU5j=Q-tBoGuIjc9hJT?2Ar>*XY=*y_Zu@uFvufo}9x%rNd*<N&#lP!;2p1>S ziV(f+ar1uVrOf%{ypBxq1Qq&O3Nm;?S`)yVb$-hXp?X_ky%OL(vwsZ(p)NwL6)tuW zv)sW$iZLwBG3)O;nHe;Ch!troh0-&K!*kXv2KXRyUWw=VQ3<gTBY$}N3}G)0w-q>c z|GX!+v4?+Px=f3R8BU1Un@)(C_#=597#(ApekCJe5-N3s))PC(OOX4-n(;al<rBya z@I!eG%<Uf-5H}&a!IM*%)OVT?DJ4Y>CKFLN5H+PZDCvj)uSMhC9s9$~zK4XUqh$b3 cag^aR;pmuY!92_|4+{ez4j`oe50&C`3eXhGO8@`> diff --git a/pagination.html b/pagination.html index 277717e..0c3f215 100644 --- a/pagination.html +++ b/pagination.html @@ -30,7 +30,7 @@ <script type="text/javascript">try{Typekit.load();}catch(e){}</script> <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="top" title="audience v0.1 documentation" href="index.html" /> <link rel="next" title="Placeholder Syntax" href="placeholders.html" /> <link rel="prev" title="Webhooks" href="api/external/webhooks.html" /> <link rel="icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> @@ -93,7 +93,7 @@ <h3>Navigation</h3> <li class="right" > <a href="api/external/webhooks.html" title="Webhooks" accesskey="P">previous</a> |</li> - <li><a href="index.html">audience 0.1 documentation</a> »</li> + <li><a href="index.html">audience v0.1 documentation</a> »</li> </ul> </div> @@ -138,7 +138,7 @@ <h3>Navigation</h3> <div id="searchbox" style="display: none"> <h3>Quick search</h3> <form class="search" action="search.html" method="get"> - <input type="text" name="q" /> + <input type="text" name="q" size="18" /> <input type="submit" value="Go" /> <input type="hidden" name="check_keywords" value="yes" /> <input type="hidden" name="area" value="default" /> @@ -168,7 +168,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 04, 2013 at 09:46 AM. + Last updated on Jan 07, 2013 at 02:56 PM. </div> </body> </html> \ No newline at end of file diff --git a/php_get_member_example.html b/php_get_member_example.html index 9baece5..a08d744 100644 --- a/php_get_member_example.html +++ b/php_get_member_example.html @@ -30,7 +30,7 @@ <script type="text/javascript">try{Typekit.load();}catch(e){}</script> <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="top" title="audience v0.1 documentation" href="index.html" /> <link rel="prev" title="PHP Signup Example" href="php_signup_example.html" /> <link rel="icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> <link rel="shortcut icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> @@ -89,7 +89,7 @@ <h3>Navigation</h3> <li class="right" > <a href="php_signup_example.html" title="PHP Signup Example" accesskey="P">previous</a> |</li> - <li><a href="index.html">audience 0.1 documentation</a> »</li> + <li><a href="index.html">audience v0.1 documentation</a> »</li> </ul> </div> @@ -153,7 +153,7 @@ <h1>PHP Get Member By Email Example<a class="headerlink" href="#php-get-member-b <div id="searchbox" style="display: none"> <h3>Quick search</h3> <form class="search" action="search.html" method="get"> - <input type="text" name="q" /> + <input type="text" name="q" size="18" /> <input type="submit" value="Go" /> <input type="hidden" name="check_keywords" value="yes" /> <input type="hidden" name="area" value="default" /> @@ -183,7 +183,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 04, 2013 at 09:46 AM. + Last updated on Jan 07, 2013 at 02:56 PM. </div> </body> </html> \ No newline at end of file diff --git a/php_signup_example.html b/php_signup_example.html index c91aa8c..640370c 100644 --- a/php_signup_example.html +++ b/php_signup_example.html @@ -30,7 +30,7 @@ <script type="text/javascript">try{Typekit.load();}catch(e){}</script> <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="top" title="audience v0.1 documentation" href="index.html" /> <link rel="next" title="PHP Get Member By Email Example" href="php_get_member_example.html" /> <link rel="prev" title="Webhook Usage" href="webhooks.html" /> <link rel="icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> @@ -93,7 +93,7 @@ <h3>Navigation</h3> <li class="right" > <a href="webhooks.html" title="Webhook Usage" accesskey="P">previous</a> |</li> - <li><a href="index.html">audience 0.1 documentation</a> »</li> + <li><a href="index.html">audience v0.1 documentation</a> »</li> </ul> </div> @@ -121,8 +121,8 @@ <h1>PHP Signup Example<a class="headerlink" href="#php-signup-example" title="Pe <span class="nv">$member_data</span> <span class="o">=</span> <span class="k">array</span><span class="p">(</span> <span class="s2">"email"</span> <span class="o">=></span> <span class="nv">$email</span><span class="p">,</span> <span class="s2">"fields"</span> <span class="o">=></span> <span class="k">array</span><span class="p">(</span> - <span class="s2">"name_first"</span> <span class="o">=></span> <span class="nv">$first_name</span><span class="p">,</span> - <span class="s2">"name_last"</span> <span class="o">=></span> <span class="nv">$last_name</span> + <span class="s2">"first_name"</span> <span class="o">=></span> <span class="nv">$first_name</span><span class="p">,</span> + <span class="s2">"last_name"</span> <span class="o">=></span> <span class="nv">$last_name</span> <span class="p">),</span> <span class="s2">"group_ids"</span> <span class="o">=></span> <span class="nv">$groups</span> <span class="p">);</span> @@ -137,7 +137,7 @@ <h1>PHP Signup Example<a class="headerlink" href="#php-signup-example" title="Pe <span class="nb">curl_setopt</span><span class="p">(</span><span class="nv">$ch</span><span class="p">,</span> <span class="nx">CURLOPT_USERPWD</span><span class="p">,</span> <span class="nv">$public_api_key</span> <span class="o">.</span> <span class="s2">":"</span> <span class="o">.</span> <span class="nv">$private_api_key</span><span class="p">);</span> <span class="nb">curl_setopt</span><span class="p">(</span><span class="nv">$ch</span><span class="p">,</span> <span class="nx">CURLOPT_URL</span><span class="p">,</span> <span class="nv">$url</span><span class="p">);</span> <span class="nb">curl_setopt</span><span class="p">(</span><span class="nv">$ch</span><span class="p">,</span> <span class="nx">CURLOPT_POST</span><span class="p">,</span> <span class="nb">count</span><span class="p">(</span><span class="nv">$member_data</span><span class="p">));</span> -<span class="nb">curl_setopt</span><span class="p">(</span><span class="nv">$ch</span><span class="p">,</span> <span class="nx">CURLOPT_POSTFIELDS</span><span class="p">,</span> <span class="nb">json_encode</span><span class="p">(</span><span class="nv">$member_data</span><span class="p">));</span> +<span class="nb">curl_setopt</span><span class="p">(</span><span class="nv">$ch</span><span class="p">,</span> <span class="nx">CURLOPT_POSTFIELDS</span><span class="p">,</span> <span class="nx">json_encode</span><span class="p">(</span><span class="nv">$member_data</span><span class="p">));</span> <span class="nb">curl_setopt</span><span class="p">(</span><span class="nv">$ch</span><span class="p">,</span> <span class="nx">CURLOPT_HTTPHEADER</span><span class="p">,</span> <span class="k">array</span><span class="p">(</span><span class="s1">'Content-type: application/json'</span><span class="p">));</span> <span class="nb">curl_setopt</span><span class="p">(</span><span class="nv">$ch</span><span class="p">,</span> <span class="nx">CURLOPT_RETURNTRANSFER</span><span class="p">,</span> <span class="k">true</span><span class="p">);</span> <span class="nb">curl_setopt</span><span class="p">(</span><span class="nv">$ch</span><span class="p">,</span> <span class="nx">CURLOPT_SSL_VERIFYPEER</span><span class="p">,</span> <span class="k">false</span><span class="p">);</span> @@ -175,7 +175,7 @@ <h1>PHP Signup Example<a class="headerlink" href="#php-signup-example" title="Pe <div id="searchbox" style="display: none"> <h3>Quick search</h3> <form class="search" action="search.html" method="get"> - <input type="text" name="q" /> + <input type="text" name="q" size="18" /> <input type="submit" value="Go" /> <input type="hidden" name="check_keywords" value="yes" /> <input type="hidden" name="area" value="default" /> @@ -205,7 +205,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 04, 2013 at 09:46 AM. + Last updated on Jan 07, 2013 at 02:56 PM. </div> </body> </html> \ No newline at end of file diff --git a/placeholders.html b/placeholders.html index 84584be..628ac92 100644 --- a/placeholders.html +++ b/placeholders.html @@ -30,7 +30,7 @@ <script type="text/javascript">try{Typekit.load();}catch(e){}</script> <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="top" title="audience v0.1 documentation" href="index.html" /> <link rel="next" title="Search Syntax" href="member_search.html" /> <link rel="prev" title="Pagination" href="pagination.html" /> <link rel="icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> @@ -93,7 +93,7 @@ <h3>Navigation</h3> <li class="right" > <a href="pagination.html" title="Pagination" accesskey="P">previous</a> |</li> - <li><a href="index.html">audience 0.1 documentation</a> »</li> + <li><a href="index.html">audience v0.1 documentation</a> »</li> </ul> </div> @@ -153,7 +153,7 @@ <h3>Related Topics</h3> <div id="searchbox" style="display: none"> <h3>Quick search</h3> <form class="search" action="search.html" method="get"> - <input type="text" name="q" /> + <input type="text" name="q" size="18" /> <input type="submit" value="Go" /> <input type="hidden" name="check_keywords" value="yes" /> <input type="hidden" name="area" value="default" /> @@ -183,7 +183,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 04, 2013 at 09:46 AM. + Last updated on Jan 07, 2013 at 02:56 PM. </div> </body> </html> \ No newline at end of file diff --git a/search.html b/search.html index 533fecf..c3cf5f9 100644 --- a/search.html +++ b/search.html @@ -31,7 +31,7 @@ <script type="text/javascript" src="_static/underscore.js"></script> <script type="text/javascript" src="_static/doctools.js"></script> <script type="text/javascript" src="_static/searchtools.js"></script> - <link rel="top" title="audience 0.1 documentation" href="index.html" /> + <link rel="top" title="audience v0.1 documentation" href="index.html" /> <script type="text/javascript"> jQuery(function() { Search.loadIndex("searchindex.js"); }); </script> @@ -91,7 +91,7 @@ <h3>Navigation</h3> <li class="right" > <a href="http-routingtable.html" title="HTTP Routing Table" >routing table</a> |</li> - <li><a href="index.html">audience 0.1 documentation</a> »</li> + <li><a href="index.html">audience v0.1 documentation</a> »</li> </ul> </div> @@ -153,7 +153,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 04, 2013 at 09:46 AM. + Last updated on Jan 07, 2013 at 02:56 PM. </div> </body> </html> \ No newline at end of file diff --git a/searchindex.js b/searchindex.js index 9747b36..07cda77 100644 --- a/searchindex.js +++ b/searchindex.js @@ -1 +1 @@ -Search.setIndex({objects:{"":{"/#account_id/members/#member_id/groups/remove":[8,1,1,"put--#account_id-members-#member_id-groups-remove"],"/#account_id/mailings/#mailing_id/winner/#winner_id":[9,2,1,"post--#account_id-mailings-#mailing_id-winner-#winner_id"],"/#account_id/response/#mailing_id/in_progress":[5,0,1,"get--#account_id-response-#mailing_id-in_progress"],"/#account_id/members/groups/remove":[8,1,1,"put--#account_id-members-groups-remove"],"/#account_id/mailings/#mailing_id/searches":[9,0,1,"get--#account_id-mailings-#mailing_id-searches"],"/#account_id/fields":[10,2,1,"post--#account_id-fields"],"/#account_id/members/#group_id/copy":[8,1,1,"put--#account_id-members-#group_id-copy"],"/#account_id/members/status":[8,1,1,"put--#account_id-members-status"],"/#account_id/response/#mailing_id/shares/overview":[5,0,1,"get--#account_id-response-#mailing_id-shares-overview"],"/#account_id/webhooks/events":[4,0,1,"get--#account_id-webhooks-events"],"/#account_id/members/#member_id/optout":[8,0,1,"get--#account_id-members-#member_id-optout"],"/#account_id/webhooks":[4,3,1,"delete--#account_id-webhooks"],"/#account_id/fields/#field_id":[10,3,1,"delete--#account_id-fields-#field_id"],"/#account_id/response/#mailing_id":[5,0,1,"get--#account_id-response-#mailing_id"],"/#account_id/groups/#member_group_id/members/remove":[13,3,1,"delete--#account_id-groups-#member_group_id-members-remove"],"/#account_id/searches":[7,2,1,"post--#account_id-searches"],"/#account_id/members/imports":[8,0,1,"get--#account_id-members-imports"],"/#account_id/forwards/#mailing_id/#member_id":[9,2,1,"post--#account_id-forwards-#mailing_id-#member_id"],"/#account_id/response/#mailing_id/customer_share_clicks":[5,0,1,"get--#account_id-response-#mailing_id-customer_share_clicks"],"/#account_id/mailings/#mailing_id/messages/#member_id":[9,0,1,"get--#account_id-mailings-#mailing_id-messages-#member_id"],"/#account_id/members/#member_id/mailings":[8,0,1,"get--#account_id-members-#member_id-mailings"],"/#account_id/groups/#from_group_id/#to_group_id/members/copy":[13,1,1,"put--#account_id-groups-#from_group_id-#to_group_id-members-copy"],"/#account_id/triggers":[14,2,1,"post--#account_id-triggers"],"/#account_id/triggers/#trigger_id":[14,3,1,"delete--#account_id-triggers-#trigger_id"],"/#account_id/members/delete":[8,1,1,"put--#account_id-members-delete"],"/#account_id/mailings/#mailing_id/groups":[9,0,1,"get--#account_id-mailings-#mailing_id-groups"],"/#account_id/response/#mailing_id/forwards":[5,0,1,"get--#account_id-response-#mailing_id-forwards"],"/#account_id/members/#member_id":[8,3,1,"delete--#account_id-members-#member_id"],"/#account_id/triggers/#trigger_id/mailings":[14,0,1,"get--#account_id-triggers-#trigger_id-mailings"],"/#account_id/searches/#search_id/members":[7,0,1,"get--#account_id-searches-#search_id-members"],"/#account_id/members/status/:status_from/to/:status_to":[8,1,1,"put--#account_id-members-status--status_from-to--status_to"],"/#account_id/response/#mailing_id/sends":[5,0,1,"get--#account_id-response-#mailing_id-sends"],"/#account_id/members":[8,3,1,"delete--#account_id-members"],"/#account_id/members/email/:email":[8,0,1,"get--#account_id-members-email--email"],"/#account_id/response/#mailing_id/links":[5,0,1,"get--#account_id-response-#mailing_id-links"],"/#account_id/searches/#search_id":[7,3,1,"delete--#account_id-searches-#search_id"],"/#account_id/members/imports/#import_id/members":[8,0,1,"get--#account_id-members-imports-#import_id-members"],"/#account_id/fields/#field_id/clear":[10,2,1,"post--#account_id-fields-#field_id-clear"],"/#account_id/groups/#member_group_id/members":[13,3,1,"delete--#account_id-groups-#member_group_id-members"],"/#account_id/members/imports/#import_id":[8,0,1,"get--#account_id-members-imports-#import_id"],"/#account_id/response":[5,0,1,"get--#account_id-response"],"/#account_id/response/#mailing_id/opens":[5,0,1,"get--#account_id-response-#mailing_id-opens"],"/#account_id/members/imports/delete":[8,3,1,"delete--#account_id-members-imports-delete"],"/#account_id/mailings":[9,0,1,"get--#account_id-mailings"],"/#account_id/mailings/cancel/#mailing_id":[9,3,1,"delete--#account_id-mailings-cancel-#mailing_id"],"/#account_id/mailings/validate":[9,2,1,"post--#account_id-mailings-validate"],"/#account_id/response/#mailing_id/deliveries":[5,0,1,"get--#account_id-response-#mailing_id-deliveries"],"/#account_id/mailings/#mailing_id/members":[9,0,1,"get--#account_id-mailings-#mailing_id-members"],"/#account_id/response/#share_id/customer_share":[5,0,1,"get--#account_id-response-#share_id-customer_share"],"/#account_id/webhooks/#webhook_id":[4,3,1,"delete--#account_id-webhooks-#webhook_id"],"/#account_id/members/add":[8,2,1,"post--#account_id-members-add"],"/#account_id/response/#mailing_id/optouts":[5,0,1,"get--#account_id-response-#mailing_id-optouts"],"/#account_id/response/#mailing_id/shares":[5,0,1,"get--#account_id-response-#mailing_id-shares"],"/#account_id/groups/#member_group_id":[13,3,1,"delete--#account_id-groups-#member_group_id"],"/#account_id/mailings/#mailing_id":[9,3,1,"delete--#account_id-mailings-#mailing_id"],"/#account_id/members/#member_id/groups":[8,3,1,"delete--#account_id-members-#member_id-groups"],"/#account_id/groups":[13,2,1,"post--#account_id-groups"],"/#account_id/response/#mailing_id/clicks":[5,0,1,"get--#account_id-response-#mailing_id-clicks"],"/#account_id/mailings/#mailing_id/headsup":[9,0,1,"get--#account_id-mailings-#mailing_id-headsup"],"/#account_id/response/#mailing_id/signups":[5,0,1,"get--#account_id-response-#mailing_id-signups"],"/#account_id/response/#mailing_id/customer_shares":[5,0,1,"get--#account_id-response-#mailing_id-customer_shares"]}},terms:{all:[0,1,4,5,8,9,10,11,12,13,14],code:[0,1,6,3],change_typ:8,queri:[0,2,4],month:[0,5,9,14],four:[0,5],mile:0,least:0,field_creat:[12,4],link_target:[5,9],content:[1,11,6,9,3],privat:1,specif:[8,9,4],friendli:5,send:[1,9,4,3,5],customer_share_click:5,those:[5,12],group_upd:[12,4],sent:[5,8,12,9,14],curl_clos:[1,6,3],brown:[7,8],digit:5,everi:0,string:[0,4,5,7,8,9,10,12,13,14],fals:[1,3,4,5,6,7,8,9,10,13,14],webhook:[1,12,4],mailing_status:9,trigger_id:14,webview_share_click:5,affect:[7,8],member_add:[12,4],create_mail:9,new_boolean:10,foo:0,level:1,group_delet:[12,4],list:[0,1,2,4,5,7,8,9,10,11,12,13,14],upload:8,iter:2,"try":8,item:2,plaintext_onli:[9,14],div:[4,5,7,8,9,10,13,14],survey_id:14,pleas:[1,8,11,9],prevent:2,work:[1,4],ten:0,sync:10,sign:[0,5,4],past:1,second:[0,7,14],follow:[0,1,4,5,7,9,11,13],further:1,durat:9,click:[0,4,5,7,8,12,14],append:2,even:10,what:1,hide:[4,5,7,8,9,10,13,14],appear:1,from_group_id:13,section:1,current:[8,12,9],delet:[1,4,7,8,9,10,12,13,14],"new":[1,4,5,7,8,9,10,11,13,14],net:[1,2,6,3],delivery_t:8,method:[5,8,13,4,9],can:[0,1,2,4,5,7,8,9,11,12,13],widget:[7,10,8,9,13],hash:0,datematch:0,displai:10,variat:9,gener:[0,8,12,14],onli:[5,8],here:[0,1,3,5,6,8],bodi:9,let:[1,4,10],address:[0,1,8,6,9],along:8,sinc:8,valu:[0,5,7,8,10,11],field_upd:[12,4],search:[0,1,9,7],survei:14,sender:[9,14],larger:2,queue:5,prior:9,action:[0,8],chang:[8,4],name_first:[1,3],campaign:5,newbi:5,appli:[7,14],prefer:0,myemma:[4,5,7,8,9,13],filenam:8,customer_shar:5,"boolean":[0,1,5,7,8,9,10,13,14],curlopt_postfield:[1,3],total:5,jone:[7,5,8,13],select:10,newslett:[7,8,13],describ:7,would:[0,1],regist:4,two:[0,5],next:[0,1],create_webhook:4,few:[5,8],call:[1,2,3,4,6,8,12],criteria:7,member_add_to_group:[12,4],type:[1,3,4,5,6,7,10,9,14],until:2,more:[0,4,7,8,9,13],peopl:5,relat:[1,8,11,9],about:[10,8,12,4,9],notic:8,thide:[4,5,7,8,9,10,13,14],flag:[5,7,8,10,9,14],exce:2,indic:8,examin:1,particular:[1,4,5,8,10,12,9],in_progress:5,origin:9,must:[0,7,13,10],none:9,endpoint:[1,4,5,7,8,9,10,13,14],join:[0,7],hour:0,setup:1,member_sinc:[0,5,7,8,9,13],uniqu:5,histori:8,soup:7,remain:[0,9],archiv:[5,9],member_optout:[12,4],drill:5,control:[1,11,9],quickstart:1,give:5,forward_mailing_id:5,email_domain:[0,5],share:[0,5,8,12,4],accept:[0,5,7,8,9,10,11,13,14],total_click:5,tag:[11,9],want:[1,12,13,5],occur:[7,12],some_numeric_field:0,delai:14,alwai:0,webhook_event_id:4,cours:1,end:[2,8],first_nam:[1,3,5,7,8,9,10,11,13,14],started_or_finish:[9,14],anoth:[9,13],get:[1,4,5,6,7,8,9,10,13,14],message_open:[12,4],html_bodi:[9,14],share_statu:5,push_offset:14,del_statu:5,tild:5,num_members_upd:8,simpl:0,chri:9,pizza:[7,8],map:0,autent:1,referenc:7,xxxx:6,sundai:0,membership:13,taco:[7,5,8,9,13],mai:12,multipl:[10,8],data:[1,3,4,5,10,12],welcom:11,add_onli:8,"short":0,json_encod:[1,3],optout:[5,8,12,13],num_dupl:8,favorit:10,correspond:[0,1],greet:11,predic:[0,1],issu:[1,10],"12t11":[7,5,8,9,13],combin:7,allow:[0,7,8],some_zipcode_field:0,signed_up:5,order:[5,10],michel:[8,9],mailing_nam:5,checkbox:10,fields_upd:8,over:2,becaus:12,buyer:[7,8,9,13],comma:[9,13],is_dis:14,vari:8,paramet:[2,4,5,7,8,9,10,13,14],widget_typ:10,style:[0,4,5,7,8,9,10,13,14],group:[0,1,3,4,7,8,9,12,13,14],curl_setopt:[1,6,3],how:[7,1,2,4],import_start:8,better:[13,14],platform:1,pend:[1,9],mailing_list:9,onc:9,mail:[0,1,4,5,8,11,12,9,14],hidden:13,main:1,might:[1,4],link_nam:[5,9],them:[8,9],"return":[0,1,4,5,7,8,9,10,12,13,14],greater:[0,8],thei:[0,9],food:10,timestamp:[0,5,12,9,10],spell:4,dai:0,auth:1,instead:[12,2,8],now:5,down:5,term:[0,1],alex:9,name:[0,4,5,7,8,9,10,11,13,14],edit:[7,1,14,10],curl_getinfo:[1,6,3],authent:[1,6,4,3],successufulli:4,separ:[1,9,13],each:[1,2,5,9,12,11,13],found:[8,9,4,14],updat:[4,7,8,9,10,12,13,14],mean:0,status:[8,9],domain:0,shortcut_nam:10,weight:[4,5,7,8,9,10,13,14],resum:9,individu:[1,8],hard:[0,5],last_nam:[1,3,5,7,8,9,10,11,13,14],"05t15":5,birthdai:[10,14],expect:1,year:[0,5,9,14],our:[1,11,12,4,14],happen:[1,4,5],extract:11,short_display_nam:10,special:[0,7,8,13],out:[0,1,4,5,7,8,10,13],variabl:[1,6,3],message_shar:[12,4],network:[5,12],private_api_kei:[1,6,3],check_multipl:10,categori:1,rel:0,print:6,correct:10,statist:8,benjamin:8,qualifi:11,insid:1,advanc:0,contain:[0,5,7,13,10,9],differ:0,standard:[5,9],status_from:8,base:[5,8],recipient_search:9,dictionari:8,put:[4,7,8,9,10,13,14],"13t23":[7,5,8],visit:11,could:1,omit:5,success:[7,1,9,13,3],filter:[0,1,7],search_id:7,pagin:[1,2],member_id:[5,7,8,9,12,13],summari:[1,5],assign:9,first:[0,1,10,5],oper:[0,1,7,14],rang:5,notifi:12,directli:0,curlopt_ssl_verifyp:[1,6,3],curl_init:[1,6,3],number:[5,2,13,3,10],placehold:[1,11],date:[0,5,8,10,11,14],unlik:9,alreadi:[10,9,13],done:8,plaintext_pref:[7,8,9,13],oppos:8,open:[0,3,4,5,6,7,8,12],payload:4,fanci:5,size:2,given:[0,8,9,4],"long":10,script:1,associ:[1,8,9,4,5],system:[8,12,4,14],messag:[4,5,8,12,11,9,14],attach:11,friend:11,curlinfo_http_cod:[1,6,3],shell:0,option:[0,5,7,8,9,10,13,14],especi:8,signup:[0,1,3,4,5,8,12,14],copi:[8,13],member_upd:[12,4],specifi:[0,2,7,8,10,11,9,14],curl_exec:[1,6,3],curlopt_httphead:[1,6,3],member_signup:[12,4],create_search:7,part:[0,9],enclos:11,than:[0,1,2,3,12,13],with_plaintext:9,"02t10":[5,8],"02t11":[5,8],"02t13":5,nathan:8,whenev:8,provid:[1,5,8,12,9,14],remov:[12,8,13,4],mailing_start:4,rate:2,structur:7,charact:9,greg:8,trackabl:11,were:5,minut:0,danc:1,error_count:[7,8,9,13],pre:[4,5,7,8,9,10,13,14],cleaner:1,sai:0,share_id:5,signup_form_id:[0,8,12,9,14],plaintext:[5,9,14],pass:[1,3],ani:[0,1,2,7,8,9],have:[0,5,8,12,9],tabl:5,seen:5,"null":[7,8,13,10,9,14],kevin:[9,14],signup_mail:0,caus:14,inform:[1,4,6,8,9,10,13],object_id:14,note:[1,8,9,4],also:[0,4,5,7,8,9,11,13],exampl:[0,1,3,5,6,7,11],take:[0,4],which:[0,1,4,8,10,12,9,14],some_number_field:0,singl:[0,1,3,4,5,8,10,12,13],excit:11,sure:1,delete_memb:13,normal:9,parent_mail:14,recipient_count:[5,9,14],previou:9,field_id:[10,12,14],last_run_at:7,most:14,"04t09":[7,14],pair:11,"class":[4,5,7,8,9,10,13,14],member_group_id:[8,9,13],mcconnel:[9,14],url:[1,3,4,5,6,12],mailing_finish:[12,4],clear:10,request:[1,2,3],doe:[0,5,7,8,10,13],member_status_upd:[12,4],declar:9,tech:4,determin:1,dataset:10,dow:0,recipi:9,"6db0cc7e6fdb2da589b65f29d90c96b6":9,show:[4,5,7,8,9,10,11,13,14],text:[10,11,12],radiu:0,syntax:[0,1,11,9],radio:10,font:[4,5,7,8,9,10,13,14],fine:9,find:[1,6,5],status_to:8,toast:[7,5,8,13],access:[1,5],giant:12,just:[0,9],pretti:8,column_ord:10,explain:[0,1],winner:9,activ:[1,5,7,8,13,9],figur:1,should:[1,2,3,7,8,11,9],templat:[11,14],share_count:5,count:[1,2,3,5],variou:[8,13],confirmed_opt_in:[7,8,9,13],familiar:1,express:0,account:[1,4,5,7,8,10,13,14],cannot:[8,9,4],progress:9,report:[10,8],requir:[1,7,8,10,11,9],object:[5,13],favorite_food:[5,7,8,13,10,9],bar:0,organ:1,include_archiv:[5,9],"public":1,"default":[5,11,13,4,9],ref_member_id:5,message_share_click:[12,4],through:[1,8,4],where:[0,1,8,11,7],view:1,set:[0,1,2,3,6,8,9,12,13],link_id:[0,5,12,9,14],see:[7,1,8],result:[0,1,2,5,8,9],respons:[0,1,2,4,5,7,8,9,10,13,14],fail:[5,9,4],themselv:2,member_field:[0,7],xxxxx:6,subject:[8,12,9,14],statu:[1,4,5,7,8,9,12,13],fancyonion:11,kei:[0,1,11,4],is_schedul:9,message_forward:[12,4],databas:8,user:[0,8,9,13],last_modified_at:[7,8,9,13],addresse:5,written:1,between:[0,7,2],"import":[1,8,12,4,10],subscript:[1,3],entiti:1,curlopt_url:[1,6,3],email:[0,1,3,5,6,7,8,9,13],wide:14,extend:1,numer:10,http404:[4,5,7,8,9,10,13,14],job:13,entir:[0,8],share_click:5,to_group_id:13,curlopt_returntransf:[1,6,3],addit:[0,1,8,9,11,13],member_remove_from_group:[12,4],send_start:[0,9,14],protect:1,accident:2,last:[0,5,10],delimit:5,pertain:5,message_click:[12,4],curlopt_post:[1,3],audienc:[1,8,9],mang:0,http500:14,seri:5,com:[4,5,6,7,8,9,11,13],zip_code_field:0,"03t15":[7,5,8,13],point:1,toni:[7,8],overview:[0,1,11,12,5],period:1,winner_id:9,colon:[7,11],optout_count:[7,8,9,13],suppli:9,cancel:9,tuesdai:0,duplic:5,quit:[5,8],user_id:4,recur:14,headsup:9,addition:[1,2],due:5,been:[1,8,10,5],mark:[8,9],whom:9,tshow:[4,5,7,8,9,10,13,14],trigger:[1,4,5,7,8,9,10,12,13,14],unsubscrib:0,treat:8,interest:[10,4],basic:[0,1,4,8,13,14],monthli:[7,8,13],blob:4,mailing_mailing_id:5,mailing_id:[0,5,8,12,9,14],fire:[8,4,14],xxx:[1,3],argument:[0,5],link_ord:[5,9],input:1,present:7,clicked_uniqu:5,"case":[1,8],look:[1,14,10],frozen:9,easier:12,email_error:[7,8,9,13],defin:[0,10,8,9],"while":0,outcom:5,abov:[0,1,8,7],error:[1,3,6,8,10,13],loop:8,opt:[0,4,5,7,8,13],readi:9,deliv:5,recipient_group:9,equal:0,itself:0,new_statu:12,webhook_id:4,recipient_memb:9,perform:8,make:[1,12,6,10],belong:[0,8,4],same:4,check:[8,6,9],member:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14],handl:1,html:9,split:9,document:[1,11,12],complet:[1,3,4,6,8,9],week:0,finish:[5,12,4],http:[1,2,3,4,5,6,11,9],href:[4,5,7,8,9,10,13,14],nest:0,someon:4,rais:[4,5,7,8,9,10,13,14],initi:[10,9],php:[1,6,3],bob:[7,5],recent:1,kept:11,center:0,min:5,well:5,inherit:9,person:9,mailing_typ:[9,14],without:0,command:1,thi:[0,1,4,5,7,8,9,10,12,13,14],undefin:0,http_code:[1,6,3],latest:11,construct:[0,7,9],identifi:8,paus:9,execut:[1,3],less:0,resp:[4,5,7,8,9,10,13,14],"_post":[1,3],against:0,aspect:13,recipient_email:9,source_filenam:8,yet:5,smith:[7,5,8,9,13],"12t09":[7,8],display_nam:10,easi:[10,12],"01t00":8,had:0,littl:1,blog:4,add:[12,1,8,13,3],other:[1,8,9,3,5],curlopt_userpwd:[1,6,3],import_finish:[8,12,4],schedul:9,els:[1,6,3],save:7,match:[0,7],build:1,sanit:1,applic:[1,6,3],account_id:[1,3,4,5,6,7,8,9,10,12,13,14],disposit:1,crud:[8,13,14],print_r:[6,3],mailing_statu:[9,14],know:[5,4],background:13,parent_mailing_id:[9,14],bit:1,insert:11,emma:[1,5,7,8,9,12,13],like:1,onion:11,deprec:4,arbitrari:8,manual:9,integ:[1,8,14,10,5],public_kei:4,api:[1,2,6,12,3],either:[0,5,7],bunch:0,output:9,group_id:[1,8,12,3],soft:[0,5],manag:[0,1,13,4],import_id:[8,12],www:[5,9],old:7,deal:[8,13],captur:1,arrai:[0,1,3,5,6,7,8,9,10,12,13,14],some:[1,11,5],field_delet:[12,4],certain:12,intern:10,sampl:[1,4,5,7,8,9,10,13,14],elaps:[2,9],home:11,deleted_at:[7,8,13,10,9,14],some_string_field:0,librari:11,bounce_count:[7,8,9,13],confirm:8,broad:12,per:5,send_finish:[9,14],larg:[0,2],condit:7,three:9,network_cod:12,localhost:9,refer:[5,7,8,13,10,9],with_html_bodi:9,who:[0,5],bold:[4,5,7,8,9,10,13,14],event_typ:14,inspect:1,usag:[1,8,12],num_members_ad:8,fulli:11,from:[1,4,8,9,12,13,14],post:[1,3,4,7,8,9,10,12,13,14],group_creat:[12,4],gladi:[7,5,8,13],actual:5,zip:0,groups_upd:8,column:10,page:2,includ:[1,5,7,8,9,10,13],webview:9,disabl:[9,14],block:[1,2],yyyi:5,member_data:[1,3],glob:0,bounc:[0,5],within:0,encod:[9,4],delivery_typ:[5,8],compos:0,webview_shar:5,field_typ:10,active_count:[7,8,9,13],public_webview_url:9,pivot:5,your:[1,4,5,7,8,9,10,13],websit:11,span:[4,5,7,8,9,10,13,14],wai:[1,12],area:1,overus:2,group_nam:[8,12,13,9],support:12,unique_click:5,json:[0,1,3,4,6,7],fast:8,custom:[5,8,11,10],avail:[0,11,4],start:[1,2,8,4],interfac:12,send_at:[9,14],exceed:2,"var":3,interv:[0,14],deliveri:5,head:[1,6,9,3],form:[1,3,4,6,8,10,14],enough:2,forc:1,forward:[0,4,5,8,12,9],"31st":0,group_typ:[8,9,13],push_offset_unit:14,link:[0,4,5,11,9,14],line:[1,5],realli:1,"true":[0,1,2,3,4,6,7,8,9,10,13,14],archived_t:[9,14],name_last:[1,3],info:4,pull:2,made:1,possibl:[5,8,12],whether:8,maximum:2,tell:12,http403:9,record:[0,7,8],below:[0,1,8,12],http400:[7,8,9],limit:[5,2,8,9],some_array_field:0,otherwis:[10,8],start_t:14,mta:5,connect:[6,3],notif:9,creat:[4,5,7,9,10,12,13,14],"int":5,retriev:[7,1,2,8,9],email_us:[0,5],repres:5,exist:[0,4,5,7,8,10,13],behavior:11,curl:[1,6],lentil:7,probabl:14,echo:[1,3],successfulli:[5,8,9],mailing_subject:12,grp:13,todo:11,when:[8,12,4,9],detail:[1,4,7,8,9,10,13],invalid:[7,8,9],event:[4,7,8,13,12,9,14],field:[0,1,3,4,5,7,8,9,10,11,12,13,14],valid:[5,8,9,13],futur:1,num_skip:8,test:[5,6,7,13,9,14],ignor:8,you:[0,1,2,4,5,7,8,9,10,11,12,13],member_delet:[12,4],member_status_id:[7,5,8,9,13],public_api_kei:[1,6,3],stat:[5,9],claus:[0,7],event_nam:[12,4],e2ma:[1,2,6,3],error_messag:8,param:[9,4],app_messag:[1,3],ella:8,bulk:[1,8],receiv:[0,2,5,8,12,9],heads_up_email:9,longer:9,descript:[4,14],portion:0,opted_out:5,time:[1,2,8,13,5],reply_to:[9,14],resource_url:12,hello:[11,9,14]},objtypes:{"0":"http:get","1":"http:put","2":"http:post","3":"http:delete"},titles:["Search Syntax","Emma API","Pagination","PHP Signup Example","Webhooks","Response","PHP Get Member By Email Example","Searches","Members","Mailings","Fields","Placeholder Syntax","Webhook Usage","Groups","Triggers"],objnames:{"0":["http","get","HTTP get"],"1":["http","put","HTTP put"],"2":["http","post","HTTP post"],"3":["http","delete","HTTP delete"]},filenames:["member_search","index","pagination","php_signup_example","api/external/webhooks","api/external/response","php_get_member_example","api/external/searches","api/external/members","api/external/mailings","api/external/fields","placeholders","webhooks","api/external/groups","api/external/triggers"]}) \ No newline at end of file +Search.setIndex({objects:{"":{"/#account_id/members/#member_id/groups/remove":[8,1,1],"/#account_id/mailings/#mailing_id/winner/#winner_id":[9,2,1],"/#account_id/response/#mailing_id/in_progress":[5,0,1],"/#account_id/members/groups/remove":[8,1,1],"/#account_id/mailings/#mailing_id/searches":[9,0,1],"/#account_id/fields":[10,2,1],"/#account_id/members/#group_id/copy":[8,1,1],"/#account_id/members/status":[8,1,1],"/#account_id/response/#mailing_id/shares/overview":[5,0,1],"/#account_id/webhooks/events":[4,0,1],"/#account_id/members/#member_id/optout":[8,0,1],"/#account_id/webhooks":[4,3,1],"/#account_id/fields/#field_id":[10,3,1],"/#account_id/response/#mailing_id":[5,0,1],"/#account_id/groups/#member_group_id/members/remove":[13,3,1],"/#account_id/searches":[7,2,1],"/#account_id/members/imports":[8,0,1],"/#account_id/forwards/#mailing_id/#member_id":[9,2,1],"/#account_id/response/#mailing_id/customer_share_clicks":[5,0,1],"/#account_id/mailings/#mailing_id/messages/#member_id":[9,0,1],"/#account_id/members/#member_id/mailings":[8,0,1],"/#account_id/groups/#from_group_id/#to_group_id/members/copy":[13,1,1],"/#account_id/triggers":[14,2,1],"/#account_id/triggers/#trigger_id":[14,3,1],"/#account_id/members/delete":[8,1,1],"/#account_id/mailings/#mailing_id/groups":[9,0,1],"/#account_id/response/#mailing_id/forwards":[5,0,1],"/#account_id/members/#member_id":[8,3,1],"/#account_id/triggers/#trigger_id/mailings":[14,0,1],"/#account_id/searches/#search_id/members":[7,0,1],"/#account_id/members/status/:status_from/to/:status_to":[8,1,1],"/#account_id/response/#mailing_id/sends":[5,0,1],"/#account_id/members":[8,3,1],"/#account_id/members/email/:email":[8,0,1],"/#account_id/response/#mailing_id/links":[5,0,1],"/#account_id/searches/#search_id":[7,3,1],"/#account_id/members/imports/#import_id/members":[8,0,1],"/#account_id/fields/#field_id/clear":[10,2,1],"/#account_id/groups/#member_group_id/members":[13,3,1],"/#account_id/members/imports/#import_id":[8,0,1],"/#account_id/response":[5,0,1],"/#account_id/response/#mailing_id/opens":[5,0,1],"/#account_id/members/imports/delete":[8,3,1],"/#account_id/mailings":[9,0,1],"/#account_id/mailings/cancel/#mailing_id":[9,3,1],"/#account_id/mailings/validate":[9,2,1],"/#account_id/response/#mailing_id/deliveries":[5,0,1],"/#account_id/mailings/#mailing_id/members":[9,0,1],"/#account_id/response/#share_id/customer_share":[5,0,1],"/#account_id/webhooks/#webhook_id":[4,3,1],"/#account_id/members/add":[8,2,1],"/#account_id/members/email/optout/:email":[8,1,1],"/#account_id/response/#mailing_id/optouts":[5,0,1],"/#account_id/response/#mailing_id/shares":[5,0,1],"/#account_id/groups/#member_group_id":[13,3,1],"/#account_id/mailings/#mailing_id":[9,3,1],"/#account_id/members/#member_id/groups":[8,3,1],"/#account_id/groups":[13,2,1],"/#account_id/response/#mailing_id/clicks":[5,0,1],"/#account_id/mailings/#mailing_id/headsup":[9,0,1],"/#account_id/response/#mailing_id/signups":[5,0,1],"/#account_id/response/#mailing_id/customer_shares":[5,0,1]}},terms:{all:[0,1,4,5,8,9,10,11,12,13,14],code:[0,1,6,3],change_typ:8,queri:[0,2,4],month:[0,5,9,14],four:[0,5],mile:0,least:0,field_creat:[12,4],link_target:[5,9],content:[11,6,9,3],privat:1,specif:[8,9,4],friendli:5,send:[1,9,4,3,5],customer_share_click:5,those:[5,12],group_upd:[12,4],sent:[5,8,12,9,14],curl_clos:[6,3],brown:[7,8],digit:5,everi:0,string:[0,4,5,7,8,9,10,12,13,14],fals:[3,4,5,6,7,8,9,10,13,14],webhook:[1,12,4],mailing_status:9,trigger_id:14,curlopt_post:3,webview_share_click:5,affect:[7,8],member_add:[12,4],create_mail:9,new_boolean:10,foo:0,level:1,group_delet:[12,4],list:[0,1,2,4,5,7,8,9,10,11,12,13,14],upload:8,iter:2,"try":8,item:2,plaintext_onli:[9,14],div:[4,5,7,8,9,10,13,14],survey_id:14,pleas:[1,8,11,9],prevent:2,work:[1,4],ten:0,sync:10,sign:[0,5,4],past:1,second:[0,7,14],follow:[0,1,4,5,7,9,11,13],further:1,durat:9,click:[0,4,5,7,8,12,14],append:2,even:10,what:1,hide:[4,5,7,8,9,10,13,14],appear:1,from_group_id:13,section:1,current:[8,12,9],delet:[1,4,7,8,9,10,12,13,14],"new":[1,4,5,7,8,9,10,11,13,14],net:[1,2,6,3],delivery_t:8,method:[5,8,13,4,9],can:[0,1,2,4,5,7,8,9,11,12,13],widget:[7,10,8,9,13],hash:0,datematch:0,displai:10,variat:9,gener:[0,8,12,14],onli:[5,8],here:[0,1,3,5,6,8],bodi:9,let:[1,4,10],address:[0,1,8,6,9],along:8,sinc:8,valu:[0,5,7,8,10,11],field_upd:[12,4],search:[0,1,9,7],survei:14,sender:[9,14],larger:2,queue:5,prior:9,action:[0,8],chang:[8,4],campaign:5,newbi:5,appli:[7,14],prefer:0,myemma:[4,5,7,8,9,13],filenam:8,customer_shar:5,"boolean":[0,1,5,7,8,9,10,13,14],curlopt_postfield:3,total:5,jone:[7,5,8,13],select:10,newslett:[7,8,13],describ:7,would:[0,1],regist:4,two:[0,5],next:[0,1],create_webhook:4,few:[5,8],call:[1,2,3,4,6,8,12],criteria:7,member_add_to_group:[12,4],type:[1,3,4,5,6,7,10,9,14],until:2,more:[0,4,7,8,9,13],peopl:5,relat:[1,8,11,9],about:[10,8,12,4,9],notic:8,thide:[4,5,7,8,9,10,13,14],flag:[5,7,8,10,9,14],exce:2,indic:8,examin:1,particular:[1,4,5,8,10,12,9],in_progress:5,origin:9,must:[0,7,13,10],none:9,endpoint:[1,4,5,7,8,9,10,13,14],join:[0,7],hour:0,member_sinc:[0,5,7,8,9,13],uniqu:5,histori:8,soup:7,remain:[0,9],archiv:[5,9],member_optout:[12,4],drill:5,control:[1,11,9],quickstart:1,give:5,forward_mailing_id:5,email_domain:[0,5],share:[0,5,8,12,4],accept:[0,5,7,8,9,10,11,13,14],total_click:5,tag:[11,9],want:[1,12,13,5],occur:[7,12],some_numeric_field:0,delai:14,alwai:0,webhook_event_id:4,cours:1,end:[2,8],first_nam:[1,3,5,7,8,9,10,11,13,14],started_or_finish:[9,14],anoth:[9,13],get:[1,4,5,6,7,8,9,10,13,14],message_open:[12,4],html_bodi:[9,14],share_statu:5,push_offset:14,del_statu:5,tild:5,num_members_upd:8,simpl:0,chri:9,pizza:[7,8],map:0,autent:1,referenc:7,xxxx:6,sundai:0,membership:13,taco:[7,5,8,9,13],mai:12,multipl:[10,8],data:[1,3,4,5,10,12],welcom:11,add_onli:8,"short":0,json_encod:3,optout:[5,8,12,13],num_dupl:8,favorit:10,correspond:[0,1],greet:11,predic:[0,1],issu:[1,10],"12t11":[7,5,8,9,13],combin:7,allow:[0,7,8],some_zipcode_field:0,signed_up:5,order:[5,10],michel:[8,9],mailing_nam:5,checkbox:10,fields_upd:8,over:2,becaus:12,buyer:[7,8,9,13],comma:[9,13],is_dis:14,vari:8,paramet:[2,4,5,7,8,9,10,13,14],widget_typ:10,style:[0,4,5,7,8,9,10,13,14],group:[0,1,3,4,7,8,9,12,13,14],curl_setopt:[6,3],how:[7,1,2,4],import_start:8,better:[13,14],platform:1,pend:[1,9],mailing_list:9,onc:9,mail:[0,1,4,5,8,11,12,9,14],hidden:13,main:1,might:[1,4],link_nam:[5,9],them:[8,9],"return":[0,1,4,5,7,8,9,10,12,13,14],greater:[0,8],thei:[0,9],food:10,timestamp:[0,5,12,9,10],spell:4,dai:0,auth:1,instead:[12,2,8],now:5,down:5,term:[0,1],alex:9,name:[0,4,5,7,8,9,10,11,13,14],edit:[7,1,14,10],curl_getinfo:[6,3],authent:[1,6,4,3],successufulli:4,separ:[1,9,13],each:[1,2,5,9,12,11,13],found:[8,9,4,14],updat:[4,7,8,9,10,12,13,14],mean:0,status:[8,9],domain:0,shortcut_nam:10,weight:[4,5,7,8,9,10,13,14],resum:9,individu:[1,8],hard:[0,5],last_nam:[1,3,5,7,8,9,10,11,13,14],"05t15":5,birthdai:[10,14],expect:1,year:[0,5,9,14],our:[1,11,12,4,14],happen:[1,4,5],extract:11,short_display_nam:10,special:[0,7,8,13],out:[0,1,4,5,7,8,10,13],variabl:[1,6,3],message_shar:[12,4],network:[5,12],private_api_kei:[1,6,3],check_multipl:10,categori:1,rel:0,print:6,correct:10,statist:8,benjamin:8,qualifi:11,insid:1,advanc:0,contain:[0,5,7,13,10,9],differ:0,standard:[5,9],status_from:8,base:[5,8],recipient_search:9,dictionari:8,put:[4,7,8,9,10,13,14],"13t23":[7,5,8],visit:11,could:1,omit:5,success:[1,3,7,8,9,13],filter:[0,1,7],search_id:7,pagin:[1,2],member_id:[5,7,8,9,12,13],summari:[1,5],assign:9,first:[0,1,10,5],oper:[0,1,7,14],rang:5,notifi:12,directli:0,curlopt_ssl_verifyp:[6,3],curl_init:[6,3],number:[5,2,13,3,10],placehold:[1,11],date:[0,5,8,10,11,14],unlik:9,alreadi:[10,8,9,13],done:8,plaintext_pref:[7,8,9,13],oppos:8,open:[0,3,4,5,6,7,8,12],payload:4,fanci:5,size:2,given:[0,8,9,4],"long":10,script:1,associ:[1,8,9,4,5],system:[8,12,4,14],messag:[4,5,8,12,11,9,14],attach:11,friend:11,curlinfo_http_cod:[6,3],shell:0,option:[0,5,7,8,9,10,13,14],especi:8,signup:[0,1,3,4,5,8,12,14],copi:[8,13],member_upd:[12,4],specifi:[0,2,7,8,10,11,9,14],curl_exec:[6,3],curlopt_httphead:[6,3],member_signup:[12,4],create_search:7,part:[0,9],enclos:11,than:[0,1,2,3,12,13],with_plaintext:9,"02t10":[5,8],"02t11":[5,8],"02t13":5,nathan:8,whenev:8,provid:[1,5,8,12,9,14],remov:[12,8,13,4],mailing_start:4,rate:2,structur:7,charact:9,greg:8,trackabl:11,were:5,minut:0,danc:1,error_count:[7,8,9,13],pre:[4,5,7,8,9,10,13,14],cleaner:1,sai:0,share_id:5,signup_form_id:[0,8,12,9,14],plaintext:[5,9,14],pass:[1,3],ani:[0,1,2,7,8,9],have:[0,5,8,12,9],tabl:5,seen:5,"null":[7,8,13,10,9,14],kevin:[9,14],signup_mail:0,caus:14,"07t14":[7,14],object_id:14,note:[1,8,9,4],also:[0,4,5,7,8,9,11,13],exampl:[0,1,3,5,6,7,11],take:[0,4],which:[0,1,4,8,10,12,9,14],some_number_field:0,singl:[0,1,3,4,5,8,10,12,13],excit:11,sure:1,delete_memb:13,normal:9,parent_mail:14,recipient_count:[5,9,14],previou:9,field_id:[10,12,14],last_run_at:7,most:14,pair:11,"class":[4,5,7,8,9,10,13,14],member_group_id:[8,9,13],mcconnel:[9,14],url:[1,3,4,5,6,12],mailing_finish:[12,4],clear:10,request:[1,2,3],doe:[0,5,7,8,10,13],member_status_upd:[12,4],declar:9,tech:4,determin:1,dataset:10,dow:0,recipi:9,"6db0cc7e6fdb2da589b65f29d90c96b6":9,show:[4,5,7,8,9,10,11,13,14],text:[10,11,12],radiu:0,syntax:[0,1,11,9],radio:10,font:[4,5,7,8,9,10,13,14],fine:9,find:[1,6,5],status_to:8,toast:[7,5,8,13],access:[1,5],giant:12,just:[0,9],pretti:8,column_ord:10,explain:[0,1],winner:9,activ:[1,5,7,8,13,9],figur:1,should:[1,2,3,7,8,11,9],templat:[11,14],share_count:5,count:[5,2,3],variou:[8,13],confirmed_opt_in:[7,8,9,13],familiar:1,express:0,account:[1,4,5,7,8,10,13,14],cannot:[8,9,4],progress:9,report:[10,8],requir:[1,7,8,10,11,9],object:[5,13],favorite_food:[5,7,8,13,10,9],bar:0,organ:1,include_archiv:[5,9],"public":1,"default":[5,11,13,4,9],ref_member_id:5,message_share_click:[12,4],through:[1,8,4],where:[0,1,8,11,7],view:1,set:[0,1,2,3,6,8,9,12,13],link_id:[0,5,12,9,14],see:[7,1,8],result:[0,1,2,5,8,9],respons:[0,1,2,4,5,7,8,9,10,13,14],fail:[5,9,4],themselv:2,member_field:[0,7],xxxxx:6,subject:[8,12,9,14],statu:[1,4,5,7,8,9,12,13],fancyonion:11,kei:[0,1,8,11,4],is_schedul:9,message_forward:[12,4],databas:8,user:[0,8,9,13],last_modified_at:[7,8,9,13],addresse:5,written:1,between:[0,7,2],"import":[1,8,12,4,10],subscript:[1,3],entiti:1,curlopt_url:[6,3],email:[0,1,3,5,6,7,8,9,13],wide:14,extend:1,numer:10,http404:[4,5,7,8,9,10,13,14],job:13,entir:[0,8],share_click:5,to_group_id:13,start_t:14,curlopt_returntransf:[6,3],addit:[0,1,8,9,11,13],member_remove_from_group:[12,4],send_start:[0,9,14],protect:1,accident:2,last:[0,5,10],delimit:5,pertain:5,message_click:[12,4],against:0,audienc:[1,8,9],mang:0,http500:14,seri:5,com:[4,5,6,7,8,9,11,13],zip_code_field:0,"03t15":[7,5,8,13],point:1,toni:[7,8],overview:[0,1,11,12,5],period:1,winner_id:9,colon:[7,11],optout_count:[7,8,9,13],suppli:9,cancel:9,tuesdai:0,duplic:5,quit:[5,8],user_id:4,recur:14,headsup:9,addition:[1,2],due:5,been:[1,8,10,5],mark:[8,9],whom:9,tshow:[4,5,7,8,9,10,13,14],trigger:[1,4,5,7,8,9,10,12,13,14],unsubscrib:0,treat:8,interest:[10,4],basic:[0,1,4,8,13,14],monthli:[7,8,13],blob:4,mailing_mailing_id:5,mailing_id:[0,5,8,12,9,14],fire:[8,4,14],xxx:[1,3],argument:[0,5],link_ord:[5,9],input:1,present:7,clicked_uniqu:5,"case":[1,8],look:[1,14,10],frozen:9,easier:12,email_error:[7,8,9,13],defin:[0,10,8,9],"while":0,outcom:5,abov:[0,1,8,7],error:[1,3,6,8,10,13],loop:8,opt:[0,4,5,7,8,13],readi:9,deliv:5,recipient_group:9,equal:0,itself:0,new_statu:12,webhook_id:4,recipient_memb:9,perform:8,make:[1,12,6,10],belong:[0,8,4],same:4,check:[8,6,9],member:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14],handl:1,html:9,split:9,document:[1,11,12],complet:[1,3,4,6,8,9],week:0,finish:[5,12,4],http:[1,2,3,4,5,6,11,9],href:[4,5,7,8,9,10,13,14],nest:0,someon:4,rais:[4,5,7,8,9,10,13,14],initi:[10,9],php:[1,6,3],bob:[7,5],recent:1,kept:11,center:0,min:5,well:5,inherit:9,person:9,mailing_typ:[9,14],without:0,thi:[0,1,4,5,7,8,9,10,12,13,14],undefin:0,http_code:[1,6,3],latest:11,construct:[0,7,9],identifi:8,paus:9,execut:[1,3],less:0,resp:[4,5,7,8,9,10,13,14],"_post":[1,3],aspect:13,recipient_email:9,source_filenam:8,yet:5,smith:[7,5,8,9,13],"12t09":[7,8],display_nam:10,easi:[10,12],"01t00":8,had:0,littl:1,blog:4,add:[12,1,8,13,3],other:[1,8,9,3,5],curlopt_userpwd:[6,3],import_finish:[8,12,4],schedul:9,els:[1,6,3],save:7,match:[0,7],build:1,sanit:1,applic:[1,6,3],account_id:[1,3,4,5,6,7,8,9,10,12,13,14],disposit:1,crud:[8,13,14],print_r:[6,3],mailing_statu:[9,14],know:[5,4],background:13,parent_mailing_id:[9,14],bit:1,insert:11,emma:[1,5,7,8,9,12,13],like:1,onion:11,deprec:4,arbitrari:8,manual:9,integ:[1,8,14,10,5],public_kei:4,api:[1,2,6,12,3],either:[0,5,7],bunch:0,output:9,group_id:[1,8,12,3],soft:[0,5],manag:[0,1,13,4],import_id:[8,12],www:[5,9],old:7,deal:[8,13],captur:1,arrai:[0,1,3,5,6,7,8,9,10,12,13,14],some:[1,11,5],field_delet:[12,4],certain:12,intern:10,sampl:[1,4,5,7,8,9,10,13,14],elaps:[2,9],home:11,deleted_at:[7,8,13,10,9,14],some_string_field:0,librari:11,bounce_count:[7,8,9,13],confirm:8,broad:12,per:5,send_finish:[9,14],larg:[0,2],condit:7,three:9,network_cod:12,localhost:9,refer:[5,7,8,13,10,9],with_html_bodi:9,who:[0,5],bold:[4,5,7,8,9,10,13,14],event_typ:14,inspect:1,usag:[1,8,12],num_members_ad:8,fulli:11,from:[1,4,8,9,12,13,14],post:[1,3,4,7,8,9,10,12,13,14],group_creat:[12,4],gladi:[7,5,8,13],actual:5,zip:0,groups_upd:8,column:10,page:2,includ:[1,5,7,8,9,10,13],webview:9,disabl:[9,14],block:[1,2],yyyi:5,member_data:[1,3],glob:0,bounc:[0,5],within:0,encod:[9,4],delivery_typ:[5,8],compos:0,webview_shar:5,field_typ:10,active_count:[7,8,9,13],public_webview_url:9,pivot:5,your:[1,4,5,7,8,9,10,13],websit:11,span:[4,5,7,8,9,10,13,14],wai:[1,12],area:1,overus:2,group_nam:[8,12,13,9],support:12,unique_click:5,json:[0,1,3,4,6,7],fast:8,custom:[5,8,11,10],avail:[0,11,4],start:[1,2,8,4],interfac:12,send_at:[9,14],exceed:2,"var":3,interv:[0,14],deliveri:5,head:[6,9,3],form:[1,3,4,6,8,10,14],enough:2,forc:1,forward:[0,4,5,8,12,9],"31st":0,group_typ:[8,9,13],push_offset_unit:14,link:[0,4,5,11,9,14],line:[1,5],realli:1,"true":[0,1,2,3,4,6,7,8,9,10,13,14],archived_t:[9,14],info:4,pull:2,made:1,possibl:[5,8,12],whether:8,maximum:2,tell:12,http403:9,record:[0,7,8],below:[0,1,8,12],http400:[7,8,9],limit:[5,2,8,9],some_array_field:0,otherwis:[10,8],inform:[1,4,6,8,9,10,13],mta:5,connect:[6,3],notif:9,creat:[4,5,7,9,10,12,13,14],"int":5,retriev:[7,1,2,8,9],email_us:[0,5],repres:5,exist:[0,4,5,7,8,10,13],behavior:11,curl:[1,6],lentil:7,probabl:14,echo:[1,3],successfulli:[5,8,9],mailing_subject:12,grp:13,todo:11,when:[8,12,4,9],detail:[1,4,7,8,9,10,13],invalid:[7,8,9],event:[4,7,8,13,12,9,14],field:[0,1,3,4,5,7,8,9,10,11,12,13,14],valid:[5,8,9,13],futur:1,num_skip:8,test:[5,6,7,13,9,14],ignor:8,you:[0,1,2,4,5,7,8,9,10,11,12,13],member_delet:[12,4],member_status_id:[7,5,8,9,13],public_api_kei:[1,6,3],stat:[5,9],claus:[0,7],event_nam:[12,4],e2ma:[1,2,6,3],error_messag:8,param:[9,4],app_messag:[1,3],ella:8,bulk:[1,8],receiv:[0,2,5,8,12,9],heads_up_email:9,longer:9,descript:[4,14],portion:0,opted_out:5,time:[1,2,8,13,5],reply_to:[9,14],resource_url:12,hello:[11,9,14]},objtypes:{"0":"http:get","1":"http:put","2":"http:post","3":"http:delete"},titles:["Search Syntax","Emma API","Pagination","PHP Signup Example","Webhooks","Response","PHP Get Member By Email Example","Searches","Members","Mailings","Fields","Placeholder Syntax","Webhook Usage","Groups","Triggers"],objnames:{"0":"HTTP get","1":"HTTP put","2":"HTTP post","3":"HTTP delete"},filenames:["member_search","index","pagination","php_signup_example","api/external/webhooks","api/external/response","php_get_member_example","api/external/searches","api/external/members","api/external/mailings","api/external/fields","placeholders","webhooks","api/external/groups","api/external/triggers"]}) \ No newline at end of file diff --git a/webhooks.html b/webhooks.html index e009fde..bc73502 100644 --- a/webhooks.html +++ b/webhooks.html @@ -30,7 +30,7 @@ <script type="text/javascript">try{Typekit.load();}catch(e){}</script> <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="top" title="audience v0.1 documentation" href="index.html" /> <link rel="next" title="PHP Signup Example" href="php_signup_example.html" /> <link rel="prev" title="Search Syntax" href="member_search.html" /> <link rel="icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> @@ -93,7 +93,7 @@ <h3>Navigation</h3> <li class="right" > <a href="member_search.html" title="Search Syntax" accesskey="P">previous</a> |</li> - <li><a href="index.html">audience 0.1 documentation</a> »</li> + <li><a href="index.html">audience v0.1 documentation</a> »</li> </ul> </div> @@ -477,7 +477,7 @@ <h3>Related Topics</h3> <div id="searchbox" style="display: none"> <h3>Quick search</h3> <form class="search" action="search.html" method="get"> - <input type="text" name="q" /> + <input type="text" name="q" size="18" /> <input type="submit" value="Go" /> <input type="hidden" name="check_keywords" value="yes" /> <input type="hidden" name="area" value="default" /> @@ -507,7 +507,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 04, 2013 at 09:46 AM. + Last updated on Jan 07, 2013 at 02:56 PM. </div> </body> </html> \ No newline at end of file From 483d5142dcde44e7d32352e98ffa968ee9698f78 Mon Sep 17 00:00:00 2001 From: Hernan Ciudad <hernan@myemma.com> Date: Wed, 9 Jan 2013 16:40:45 -0600 Subject: [PATCH 019/219] Update audience documentation. --- api/external/fields.html | 2 +- api/external/groups.html | 2 +- api/external/mailings.html | 2 +- api/external/members.html | 2 +- api/external/response.html | 2 +- api/external/searches.html | 4 ++-- api/external/triggers.html | 8 ++++---- api/external/webhooks.html | 2 +- genindex.html | 2 +- http-routingtable.html | 2 +- index.html | 2 +- member_search.html | 2 +- pagination.html | 2 +- php_get_member_example.html | 2 +- php_signup_example.html | 2 +- placeholders.html | 2 +- search.html | 2 +- searchindex.js | 2 +- webhooks.html | 2 +- 19 files changed, 23 insertions(+), 23 deletions(-) diff --git a/api/external/fields.html b/api/external/fields.html index c3a22b8..0943789 100644 --- a/api/external/fields.html +++ b/api/external/fields.html @@ -421,7 +421,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 07, 2013 at 02:56 PM. + Last updated on Jan 09, 2013 at 04:40 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/groups.html b/api/external/groups.html index d0346bb..7cc8605 100644 --- a/api/external/groups.html +++ b/api/external/groups.html @@ -713,7 +713,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 07, 2013 at 02:56 PM. + Last updated on Jan 09, 2013 at 04:40 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/mailings.html b/api/external/mailings.html index e0e6109..a8af123 100644 --- a/api/external/mailings.html +++ b/api/external/mailings.html @@ -823,7 +823,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 07, 2013 at 02:56 PM. + Last updated on Jan 09, 2013 at 04:40 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/members.html b/api/external/members.html index 0bfd1fe..9d10afd 100644 --- a/api/external/members.html +++ b/api/external/members.html @@ -1238,7 +1238,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 07, 2013 at 02:56 PM. + Last updated on Jan 09, 2013 at 04:40 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/response.html b/api/external/response.html index f9cfd0d..f688155 100644 --- a/api/external/response.html +++ b/api/external/response.html @@ -1035,7 +1035,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 07, 2013 at 02:56 PM. + Last updated on Jan 09, 2013 at 04:40 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/searches.html b/api/external/searches.html index f17b00c..9ff940e 100644 --- a/api/external/searches.html +++ b/api/external/searches.html @@ -201,7 +201,7 @@ <h1>Searches<a class="headerlink" href="#searches" title="Permalink to this head "name": "Test Search", "criteria": "[\"or\", [\"group\", \"eq\", \"Monthly Newsletter\"],[\"group\", \"eq\", \"Widget Buyers\"]]", "deleted_at": null, - "last_run_at": "@D:2013-01-07T14:56:54", + "last_run_at": "@D:2013-01-09T16:40:37", "active_count": 2, "account_id": 100 } @@ -517,7 +517,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 07, 2013 at 02:56 PM. + Last updated on Jan 09, 2013 at 04:40 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/triggers.html b/api/external/triggers.html index 95eaba0..498abd7 100644 --- a/api/external/triggers.html +++ b/api/external/triggers.html @@ -149,7 +149,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": 203, "push_offset_units": "0:-14:0:0", - "start_ts": "@D:2013-01-07T14:56:51", + "start_ts": "@D:2013-01-09T16:40:34", "trigger_id": 100, "signups": null, "push_offset": "@I:-1209600.0", @@ -190,7 +190,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": null, "push_offset_units": "0:3:0:0", - "start_ts": "@D:2013-01-07T14:56:51", + "start_ts": "@D:2013-01-09T16:40:34", "trigger_id": 101, "signups": [ 1, @@ -329,7 +329,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": 203, "push_offset_units": "0:-14:0:0", - "start_ts": "@D:2013-01-07T14:56:51", + "start_ts": "@D:2013-01-09T16:40:34", "trigger_id": 100, "signups": null, "push_offset": "@I:-1209600.0", @@ -505,7 +505,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 07, 2013 at 02:56 PM. + Last updated on Jan 09, 2013 at 04:40 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/webhooks.html b/api/external/webhooks.html index 24f7140..a350dc5 100644 --- a/api/external/webhooks.html +++ b/api/external/webhooks.html @@ -494,7 +494,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 07, 2013 at 02:56 PM. + Last updated on Jan 09, 2013 at 04:40 PM. </div> </body> </html> \ No newline at end of file diff --git a/genindex.html b/genindex.html index 38e6f45..95cece1 100644 --- a/genindex.html +++ b/genindex.html @@ -144,7 +144,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 07, 2013 at 02:56 PM. + Last updated on Jan 09, 2013 at 04:40 PM. </div> </body> </html> \ No newline at end of file diff --git a/http-routingtable.html b/http-routingtable.html index 238023c..e8cdf5d 100644 --- a/http-routingtable.html +++ b/http-routingtable.html @@ -607,7 +607,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 07, 2013 at 02:56 PM. + Last updated on Jan 09, 2013 at 04:40 PM. </div> </body> </html> \ No newline at end of file diff --git a/index.html b/index.html index e4ad152..d675fdb 100644 --- a/index.html +++ b/index.html @@ -311,7 +311,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 07, 2013 at 02:56 PM. + Last updated on Jan 09, 2013 at 04:40 PM. </div> </body> </html> \ No newline at end of file diff --git a/member_search.html b/member_search.html index 12856bf..23f0654 100644 --- a/member_search.html +++ b/member_search.html @@ -256,7 +256,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 07, 2013 at 02:56 PM. + Last updated on Jan 09, 2013 at 04:40 PM. </div> </body> </html> \ No newline at end of file diff --git a/pagination.html b/pagination.html index 0c3f215..085b809 100644 --- a/pagination.html +++ b/pagination.html @@ -168,7 +168,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 07, 2013 at 02:56 PM. + Last updated on Jan 09, 2013 at 04:40 PM. </div> </body> </html> \ No newline at end of file diff --git a/php_get_member_example.html b/php_get_member_example.html index a08d744..39b09a2 100644 --- a/php_get_member_example.html +++ b/php_get_member_example.html @@ -183,7 +183,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 07, 2013 at 02:56 PM. + Last updated on Jan 09, 2013 at 04:40 PM. </div> </body> </html> \ No newline at end of file diff --git a/php_signup_example.html b/php_signup_example.html index 640370c..a51003d 100644 --- a/php_signup_example.html +++ b/php_signup_example.html @@ -205,7 +205,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 07, 2013 at 02:56 PM. + Last updated on Jan 09, 2013 at 04:40 PM. </div> </body> </html> \ No newline at end of file diff --git a/placeholders.html b/placeholders.html index 628ac92..de71f1b 100644 --- a/placeholders.html +++ b/placeholders.html @@ -183,7 +183,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 07, 2013 at 02:56 PM. + Last updated on Jan 09, 2013 at 04:40 PM. </div> </body> </html> \ No newline at end of file diff --git a/search.html b/search.html index c3cf5f9..01cedca 100644 --- a/search.html +++ b/search.html @@ -153,7 +153,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 07, 2013 at 02:56 PM. + Last updated on Jan 09, 2013 at 04:40 PM. </div> </body> </html> \ No newline at end of file diff --git a/searchindex.js b/searchindex.js index 07cda77..75cc29c 100644 --- a/searchindex.js +++ b/searchindex.js @@ -1 +1 @@ -Search.setIndex({objects:{"":{"/#account_id/members/#member_id/groups/remove":[8,1,1],"/#account_id/mailings/#mailing_id/winner/#winner_id":[9,2,1],"/#account_id/response/#mailing_id/in_progress":[5,0,1],"/#account_id/members/groups/remove":[8,1,1],"/#account_id/mailings/#mailing_id/searches":[9,0,1],"/#account_id/fields":[10,2,1],"/#account_id/members/#group_id/copy":[8,1,1],"/#account_id/members/status":[8,1,1],"/#account_id/response/#mailing_id/shares/overview":[5,0,1],"/#account_id/webhooks/events":[4,0,1],"/#account_id/members/#member_id/optout":[8,0,1],"/#account_id/webhooks":[4,3,1],"/#account_id/fields/#field_id":[10,3,1],"/#account_id/response/#mailing_id":[5,0,1],"/#account_id/groups/#member_group_id/members/remove":[13,3,1],"/#account_id/searches":[7,2,1],"/#account_id/members/imports":[8,0,1],"/#account_id/forwards/#mailing_id/#member_id":[9,2,1],"/#account_id/response/#mailing_id/customer_share_clicks":[5,0,1],"/#account_id/mailings/#mailing_id/messages/#member_id":[9,0,1],"/#account_id/members/#member_id/mailings":[8,0,1],"/#account_id/groups/#from_group_id/#to_group_id/members/copy":[13,1,1],"/#account_id/triggers":[14,2,1],"/#account_id/triggers/#trigger_id":[14,3,1],"/#account_id/members/delete":[8,1,1],"/#account_id/mailings/#mailing_id/groups":[9,0,1],"/#account_id/response/#mailing_id/forwards":[5,0,1],"/#account_id/members/#member_id":[8,3,1],"/#account_id/triggers/#trigger_id/mailings":[14,0,1],"/#account_id/searches/#search_id/members":[7,0,1],"/#account_id/members/status/:status_from/to/:status_to":[8,1,1],"/#account_id/response/#mailing_id/sends":[5,0,1],"/#account_id/members":[8,3,1],"/#account_id/members/email/:email":[8,0,1],"/#account_id/response/#mailing_id/links":[5,0,1],"/#account_id/searches/#search_id":[7,3,1],"/#account_id/members/imports/#import_id/members":[8,0,1],"/#account_id/fields/#field_id/clear":[10,2,1],"/#account_id/groups/#member_group_id/members":[13,3,1],"/#account_id/members/imports/#import_id":[8,0,1],"/#account_id/response":[5,0,1],"/#account_id/response/#mailing_id/opens":[5,0,1],"/#account_id/members/imports/delete":[8,3,1],"/#account_id/mailings":[9,0,1],"/#account_id/mailings/cancel/#mailing_id":[9,3,1],"/#account_id/mailings/validate":[9,2,1],"/#account_id/response/#mailing_id/deliveries":[5,0,1],"/#account_id/mailings/#mailing_id/members":[9,0,1],"/#account_id/response/#share_id/customer_share":[5,0,1],"/#account_id/webhooks/#webhook_id":[4,3,1],"/#account_id/members/add":[8,2,1],"/#account_id/members/email/optout/:email":[8,1,1],"/#account_id/response/#mailing_id/optouts":[5,0,1],"/#account_id/response/#mailing_id/shares":[5,0,1],"/#account_id/groups/#member_group_id":[13,3,1],"/#account_id/mailings/#mailing_id":[9,3,1],"/#account_id/members/#member_id/groups":[8,3,1],"/#account_id/groups":[13,2,1],"/#account_id/response/#mailing_id/clicks":[5,0,1],"/#account_id/mailings/#mailing_id/headsup":[9,0,1],"/#account_id/response/#mailing_id/signups":[5,0,1],"/#account_id/response/#mailing_id/customer_shares":[5,0,1]}},terms:{all:[0,1,4,5,8,9,10,11,12,13,14],code:[0,1,6,3],change_typ:8,queri:[0,2,4],month:[0,5,9,14],four:[0,5],mile:0,least:0,field_creat:[12,4],link_target:[5,9],content:[11,6,9,3],privat:1,specif:[8,9,4],friendli:5,send:[1,9,4,3,5],customer_share_click:5,those:[5,12],group_upd:[12,4],sent:[5,8,12,9,14],curl_clos:[6,3],brown:[7,8],digit:5,everi:0,string:[0,4,5,7,8,9,10,12,13,14],fals:[3,4,5,6,7,8,9,10,13,14],webhook:[1,12,4],mailing_status:9,trigger_id:14,curlopt_post:3,webview_share_click:5,affect:[7,8],member_add:[12,4],create_mail:9,new_boolean:10,foo:0,level:1,group_delet:[12,4],list:[0,1,2,4,5,7,8,9,10,11,12,13,14],upload:8,iter:2,"try":8,item:2,plaintext_onli:[9,14],div:[4,5,7,8,9,10,13,14],survey_id:14,pleas:[1,8,11,9],prevent:2,work:[1,4],ten:0,sync:10,sign:[0,5,4],past:1,second:[0,7,14],follow:[0,1,4,5,7,9,11,13],further:1,durat:9,click:[0,4,5,7,8,12,14],append:2,even:10,what:1,hide:[4,5,7,8,9,10,13,14],appear:1,from_group_id:13,section:1,current:[8,12,9],delet:[1,4,7,8,9,10,12,13,14],"new":[1,4,5,7,8,9,10,11,13,14],net:[1,2,6,3],delivery_t:8,method:[5,8,13,4,9],can:[0,1,2,4,5,7,8,9,11,12,13],widget:[7,10,8,9,13],hash:0,datematch:0,displai:10,variat:9,gener:[0,8,12,14],onli:[5,8],here:[0,1,3,5,6,8],bodi:9,let:[1,4,10],address:[0,1,8,6,9],along:8,sinc:8,valu:[0,5,7,8,10,11],field_upd:[12,4],search:[0,1,9,7],survei:14,sender:[9,14],larger:2,queue:5,prior:9,action:[0,8],chang:[8,4],campaign:5,newbi:5,appli:[7,14],prefer:0,myemma:[4,5,7,8,9,13],filenam:8,customer_shar:5,"boolean":[0,1,5,7,8,9,10,13,14],curlopt_postfield:3,total:5,jone:[7,5,8,13],select:10,newslett:[7,8,13],describ:7,would:[0,1],regist:4,two:[0,5],next:[0,1],create_webhook:4,few:[5,8],call:[1,2,3,4,6,8,12],criteria:7,member_add_to_group:[12,4],type:[1,3,4,5,6,7,10,9,14],until:2,more:[0,4,7,8,9,13],peopl:5,relat:[1,8,11,9],about:[10,8,12,4,9],notic:8,thide:[4,5,7,8,9,10,13,14],flag:[5,7,8,10,9,14],exce:2,indic:8,examin:1,particular:[1,4,5,8,10,12,9],in_progress:5,origin:9,must:[0,7,13,10],none:9,endpoint:[1,4,5,7,8,9,10,13,14],join:[0,7],hour:0,member_sinc:[0,5,7,8,9,13],uniqu:5,histori:8,soup:7,remain:[0,9],archiv:[5,9],member_optout:[12,4],drill:5,control:[1,11,9],quickstart:1,give:5,forward_mailing_id:5,email_domain:[0,5],share:[0,5,8,12,4],accept:[0,5,7,8,9,10,11,13,14],total_click:5,tag:[11,9],want:[1,12,13,5],occur:[7,12],some_numeric_field:0,delai:14,alwai:0,webhook_event_id:4,cours:1,end:[2,8],first_nam:[1,3,5,7,8,9,10,11,13,14],started_or_finish:[9,14],anoth:[9,13],get:[1,4,5,6,7,8,9,10,13,14],message_open:[12,4],html_bodi:[9,14],share_statu:5,push_offset:14,del_statu:5,tild:5,num_members_upd:8,simpl:0,chri:9,pizza:[7,8],map:0,autent:1,referenc:7,xxxx:6,sundai:0,membership:13,taco:[7,5,8,9,13],mai:12,multipl:[10,8],data:[1,3,4,5,10,12],welcom:11,add_onli:8,"short":0,json_encod:3,optout:[5,8,12,13],num_dupl:8,favorit:10,correspond:[0,1],greet:11,predic:[0,1],issu:[1,10],"12t11":[7,5,8,9,13],combin:7,allow:[0,7,8],some_zipcode_field:0,signed_up:5,order:[5,10],michel:[8,9],mailing_nam:5,checkbox:10,fields_upd:8,over:2,becaus:12,buyer:[7,8,9,13],comma:[9,13],is_dis:14,vari:8,paramet:[2,4,5,7,8,9,10,13,14],widget_typ:10,style:[0,4,5,7,8,9,10,13,14],group:[0,1,3,4,7,8,9,12,13,14],curl_setopt:[6,3],how:[7,1,2,4],import_start:8,better:[13,14],platform:1,pend:[1,9],mailing_list:9,onc:9,mail:[0,1,4,5,8,11,12,9,14],hidden:13,main:1,might:[1,4],link_nam:[5,9],them:[8,9],"return":[0,1,4,5,7,8,9,10,12,13,14],greater:[0,8],thei:[0,9],food:10,timestamp:[0,5,12,9,10],spell:4,dai:0,auth:1,instead:[12,2,8],now:5,down:5,term:[0,1],alex:9,name:[0,4,5,7,8,9,10,11,13,14],edit:[7,1,14,10],curl_getinfo:[6,3],authent:[1,6,4,3],successufulli:4,separ:[1,9,13],each:[1,2,5,9,12,11,13],found:[8,9,4,14],updat:[4,7,8,9,10,12,13,14],mean:0,status:[8,9],domain:0,shortcut_nam:10,weight:[4,5,7,8,9,10,13,14],resum:9,individu:[1,8],hard:[0,5],last_nam:[1,3,5,7,8,9,10,11,13,14],"05t15":5,birthdai:[10,14],expect:1,year:[0,5,9,14],our:[1,11,12,4,14],happen:[1,4,5],extract:11,short_display_nam:10,special:[0,7,8,13],out:[0,1,4,5,7,8,10,13],variabl:[1,6,3],message_shar:[12,4],network:[5,12],private_api_kei:[1,6,3],check_multipl:10,categori:1,rel:0,print:6,correct:10,statist:8,benjamin:8,qualifi:11,insid:1,advanc:0,contain:[0,5,7,13,10,9],differ:0,standard:[5,9],status_from:8,base:[5,8],recipient_search:9,dictionari:8,put:[4,7,8,9,10,13,14],"13t23":[7,5,8],visit:11,could:1,omit:5,success:[1,3,7,8,9,13],filter:[0,1,7],search_id:7,pagin:[1,2],member_id:[5,7,8,9,12,13],summari:[1,5],assign:9,first:[0,1,10,5],oper:[0,1,7,14],rang:5,notifi:12,directli:0,curlopt_ssl_verifyp:[6,3],curl_init:[6,3],number:[5,2,13,3,10],placehold:[1,11],date:[0,5,8,10,11,14],unlik:9,alreadi:[10,8,9,13],done:8,plaintext_pref:[7,8,9,13],oppos:8,open:[0,3,4,5,6,7,8,12],payload:4,fanci:5,size:2,given:[0,8,9,4],"long":10,script:1,associ:[1,8,9,4,5],system:[8,12,4,14],messag:[4,5,8,12,11,9,14],attach:11,friend:11,curlinfo_http_cod:[6,3],shell:0,option:[0,5,7,8,9,10,13,14],especi:8,signup:[0,1,3,4,5,8,12,14],copi:[8,13],member_upd:[12,4],specifi:[0,2,7,8,10,11,9,14],curl_exec:[6,3],curlopt_httphead:[6,3],member_signup:[12,4],create_search:7,part:[0,9],enclos:11,than:[0,1,2,3,12,13],with_plaintext:9,"02t10":[5,8],"02t11":[5,8],"02t13":5,nathan:8,whenev:8,provid:[1,5,8,12,9,14],remov:[12,8,13,4],mailing_start:4,rate:2,structur:7,charact:9,greg:8,trackabl:11,were:5,minut:0,danc:1,error_count:[7,8,9,13],pre:[4,5,7,8,9,10,13,14],cleaner:1,sai:0,share_id:5,signup_form_id:[0,8,12,9,14],plaintext:[5,9,14],pass:[1,3],ani:[0,1,2,7,8,9],have:[0,5,8,12,9],tabl:5,seen:5,"null":[7,8,13,10,9,14],kevin:[9,14],signup_mail:0,caus:14,"07t14":[7,14],object_id:14,note:[1,8,9,4],also:[0,4,5,7,8,9,11,13],exampl:[0,1,3,5,6,7,11],take:[0,4],which:[0,1,4,8,10,12,9,14],some_number_field:0,singl:[0,1,3,4,5,8,10,12,13],excit:11,sure:1,delete_memb:13,normal:9,parent_mail:14,recipient_count:[5,9,14],previou:9,field_id:[10,12,14],last_run_at:7,most:14,pair:11,"class":[4,5,7,8,9,10,13,14],member_group_id:[8,9,13],mcconnel:[9,14],url:[1,3,4,5,6,12],mailing_finish:[12,4],clear:10,request:[1,2,3],doe:[0,5,7,8,10,13],member_status_upd:[12,4],declar:9,tech:4,determin:1,dataset:10,dow:0,recipi:9,"6db0cc7e6fdb2da589b65f29d90c96b6":9,show:[4,5,7,8,9,10,11,13,14],text:[10,11,12],radiu:0,syntax:[0,1,11,9],radio:10,font:[4,5,7,8,9,10,13,14],fine:9,find:[1,6,5],status_to:8,toast:[7,5,8,13],access:[1,5],giant:12,just:[0,9],pretti:8,column_ord:10,explain:[0,1],winner:9,activ:[1,5,7,8,13,9],figur:1,should:[1,2,3,7,8,11,9],templat:[11,14],share_count:5,count:[5,2,3],variou:[8,13],confirmed_opt_in:[7,8,9,13],familiar:1,express:0,account:[1,4,5,7,8,10,13,14],cannot:[8,9,4],progress:9,report:[10,8],requir:[1,7,8,10,11,9],object:[5,13],favorite_food:[5,7,8,13,10,9],bar:0,organ:1,include_archiv:[5,9],"public":1,"default":[5,11,13,4,9],ref_member_id:5,message_share_click:[12,4],through:[1,8,4],where:[0,1,8,11,7],view:1,set:[0,1,2,3,6,8,9,12,13],link_id:[0,5,12,9,14],see:[7,1,8],result:[0,1,2,5,8,9],respons:[0,1,2,4,5,7,8,9,10,13,14],fail:[5,9,4],themselv:2,member_field:[0,7],xxxxx:6,subject:[8,12,9,14],statu:[1,4,5,7,8,9,12,13],fancyonion:11,kei:[0,1,8,11,4],is_schedul:9,message_forward:[12,4],databas:8,user:[0,8,9,13],last_modified_at:[7,8,9,13],addresse:5,written:1,between:[0,7,2],"import":[1,8,12,4,10],subscript:[1,3],entiti:1,curlopt_url:[6,3],email:[0,1,3,5,6,7,8,9,13],wide:14,extend:1,numer:10,http404:[4,5,7,8,9,10,13,14],job:13,entir:[0,8],share_click:5,to_group_id:13,start_t:14,curlopt_returntransf:[6,3],addit:[0,1,8,9,11,13],member_remove_from_group:[12,4],send_start:[0,9,14],protect:1,accident:2,last:[0,5,10],delimit:5,pertain:5,message_click:[12,4],against:0,audienc:[1,8,9],mang:0,http500:14,seri:5,com:[4,5,6,7,8,9,11,13],zip_code_field:0,"03t15":[7,5,8,13],point:1,toni:[7,8],overview:[0,1,11,12,5],period:1,winner_id:9,colon:[7,11],optout_count:[7,8,9,13],suppli:9,cancel:9,tuesdai:0,duplic:5,quit:[5,8],user_id:4,recur:14,headsup:9,addition:[1,2],due:5,been:[1,8,10,5],mark:[8,9],whom:9,tshow:[4,5,7,8,9,10,13,14],trigger:[1,4,5,7,8,9,10,12,13,14],unsubscrib:0,treat:8,interest:[10,4],basic:[0,1,4,8,13,14],monthli:[7,8,13],blob:4,mailing_mailing_id:5,mailing_id:[0,5,8,12,9,14],fire:[8,4,14],xxx:[1,3],argument:[0,5],link_ord:[5,9],input:1,present:7,clicked_uniqu:5,"case":[1,8],look:[1,14,10],frozen:9,easier:12,email_error:[7,8,9,13],defin:[0,10,8,9],"while":0,outcom:5,abov:[0,1,8,7],error:[1,3,6,8,10,13],loop:8,opt:[0,4,5,7,8,13],readi:9,deliv:5,recipient_group:9,equal:0,itself:0,new_statu:12,webhook_id:4,recipient_memb:9,perform:8,make:[1,12,6,10],belong:[0,8,4],same:4,check:[8,6,9],member:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14],handl:1,html:9,split:9,document:[1,11,12],complet:[1,3,4,6,8,9],week:0,finish:[5,12,4],http:[1,2,3,4,5,6,11,9],href:[4,5,7,8,9,10,13,14],nest:0,someon:4,rais:[4,5,7,8,9,10,13,14],initi:[10,9],php:[1,6,3],bob:[7,5],recent:1,kept:11,center:0,min:5,well:5,inherit:9,person:9,mailing_typ:[9,14],without:0,thi:[0,1,4,5,7,8,9,10,12,13,14],undefin:0,http_code:[1,6,3],latest:11,construct:[0,7,9],identifi:8,paus:9,execut:[1,3],less:0,resp:[4,5,7,8,9,10,13,14],"_post":[1,3],aspect:13,recipient_email:9,source_filenam:8,yet:5,smith:[7,5,8,9,13],"12t09":[7,8],display_nam:10,easi:[10,12],"01t00":8,had:0,littl:1,blog:4,add:[12,1,8,13,3],other:[1,8,9,3,5],curlopt_userpwd:[6,3],import_finish:[8,12,4],schedul:9,els:[1,6,3],save:7,match:[0,7],build:1,sanit:1,applic:[1,6,3],account_id:[1,3,4,5,6,7,8,9,10,12,13,14],disposit:1,crud:[8,13,14],print_r:[6,3],mailing_statu:[9,14],know:[5,4],background:13,parent_mailing_id:[9,14],bit:1,insert:11,emma:[1,5,7,8,9,12,13],like:1,onion:11,deprec:4,arbitrari:8,manual:9,integ:[1,8,14,10,5],public_kei:4,api:[1,2,6,12,3],either:[0,5,7],bunch:0,output:9,group_id:[1,8,12,3],soft:[0,5],manag:[0,1,13,4],import_id:[8,12],www:[5,9],old:7,deal:[8,13],captur:1,arrai:[0,1,3,5,6,7,8,9,10,12,13,14],some:[1,11,5],field_delet:[12,4],certain:12,intern:10,sampl:[1,4,5,7,8,9,10,13,14],elaps:[2,9],home:11,deleted_at:[7,8,13,10,9,14],some_string_field:0,librari:11,bounce_count:[7,8,9,13],confirm:8,broad:12,per:5,send_finish:[9,14],larg:[0,2],condit:7,three:9,network_cod:12,localhost:9,refer:[5,7,8,13,10,9],with_html_bodi:9,who:[0,5],bold:[4,5,7,8,9,10,13,14],event_typ:14,inspect:1,usag:[1,8,12],num_members_ad:8,fulli:11,from:[1,4,8,9,12,13,14],post:[1,3,4,7,8,9,10,12,13,14],group_creat:[12,4],gladi:[7,5,8,13],actual:5,zip:0,groups_upd:8,column:10,page:2,includ:[1,5,7,8,9,10,13],webview:9,disabl:[9,14],block:[1,2],yyyi:5,member_data:[1,3],glob:0,bounc:[0,5],within:0,encod:[9,4],delivery_typ:[5,8],compos:0,webview_shar:5,field_typ:10,active_count:[7,8,9,13],public_webview_url:9,pivot:5,your:[1,4,5,7,8,9,10,13],websit:11,span:[4,5,7,8,9,10,13,14],wai:[1,12],area:1,overus:2,group_nam:[8,12,13,9],support:12,unique_click:5,json:[0,1,3,4,6,7],fast:8,custom:[5,8,11,10],avail:[0,11,4],start:[1,2,8,4],interfac:12,send_at:[9,14],exceed:2,"var":3,interv:[0,14],deliveri:5,head:[6,9,3],form:[1,3,4,6,8,10,14],enough:2,forc:1,forward:[0,4,5,8,12,9],"31st":0,group_typ:[8,9,13],push_offset_unit:14,link:[0,4,5,11,9,14],line:[1,5],realli:1,"true":[0,1,2,3,4,6,7,8,9,10,13,14],archived_t:[9,14],info:4,pull:2,made:1,possibl:[5,8,12],whether:8,maximum:2,tell:12,http403:9,record:[0,7,8],below:[0,1,8,12],http400:[7,8,9],limit:[5,2,8,9],some_array_field:0,otherwis:[10,8],inform:[1,4,6,8,9,10,13],mta:5,connect:[6,3],notif:9,creat:[4,5,7,9,10,12,13,14],"int":5,retriev:[7,1,2,8,9],email_us:[0,5],repres:5,exist:[0,4,5,7,8,10,13],behavior:11,curl:[1,6],lentil:7,probabl:14,echo:[1,3],successfulli:[5,8,9],mailing_subject:12,grp:13,todo:11,when:[8,12,4,9],detail:[1,4,7,8,9,10,13],invalid:[7,8,9],event:[4,7,8,13,12,9,14],field:[0,1,3,4,5,7,8,9,10,11,12,13,14],valid:[5,8,9,13],futur:1,num_skip:8,test:[5,6,7,13,9,14],ignor:8,you:[0,1,2,4,5,7,8,9,10,11,12,13],member_delet:[12,4],member_status_id:[7,5,8,9,13],public_api_kei:[1,6,3],stat:[5,9],claus:[0,7],event_nam:[12,4],e2ma:[1,2,6,3],error_messag:8,param:[9,4],app_messag:[1,3],ella:8,bulk:[1,8],receiv:[0,2,5,8,12,9],heads_up_email:9,longer:9,descript:[4,14],portion:0,opted_out:5,time:[1,2,8,13,5],reply_to:[9,14],resource_url:12,hello:[11,9,14]},objtypes:{"0":"http:get","1":"http:put","2":"http:post","3":"http:delete"},titles:["Search Syntax","Emma API","Pagination","PHP Signup Example","Webhooks","Response","PHP Get Member By Email Example","Searches","Members","Mailings","Fields","Placeholder Syntax","Webhook Usage","Groups","Triggers"],objnames:{"0":"HTTP get","1":"HTTP put","2":"HTTP post","3":"HTTP delete"},filenames:["member_search","index","pagination","php_signup_example","api/external/webhooks","api/external/response","php_get_member_example","api/external/searches","api/external/members","api/external/mailings","api/external/fields","placeholders","webhooks","api/external/groups","api/external/triggers"]}) \ No newline at end of file +Search.setIndex({objects:{"":{"/#account_id/members/#member_id/groups/remove":[8,1,1],"/#account_id/mailings/#mailing_id/winner/#winner_id":[9,2,1],"/#account_id/response/#mailing_id/in_progress":[5,0,1],"/#account_id/members/groups/remove":[8,1,1],"/#account_id/mailings/#mailing_id/searches":[9,0,1],"/#account_id/fields":[10,2,1],"/#account_id/members/#group_id/copy":[8,1,1],"/#account_id/members/status":[8,1,1],"/#account_id/response/#mailing_id/shares/overview":[5,0,1],"/#account_id/webhooks/events":[4,0,1],"/#account_id/members/#member_id/optout":[8,0,1],"/#account_id/webhooks":[4,3,1],"/#account_id/fields/#field_id":[10,3,1],"/#account_id/response/#mailing_id":[5,0,1],"/#account_id/groups/#member_group_id/members/remove":[13,3,1],"/#account_id/searches":[7,2,1],"/#account_id/members/imports":[8,0,1],"/#account_id/forwards/#mailing_id/#member_id":[9,2,1],"/#account_id/response/#mailing_id/customer_share_clicks":[5,0,1],"/#account_id/mailings/#mailing_id/messages/#member_id":[9,0,1],"/#account_id/members/#member_id/mailings":[8,0,1],"/#account_id/groups/#from_group_id/#to_group_id/members/copy":[13,1,1],"/#account_id/triggers":[14,2,1],"/#account_id/triggers/#trigger_id":[14,3,1],"/#account_id/members/delete":[8,1,1],"/#account_id/mailings/#mailing_id/groups":[9,0,1],"/#account_id/response/#mailing_id/forwards":[5,0,1],"/#account_id/members/#member_id":[8,3,1],"/#account_id/triggers/#trigger_id/mailings":[14,0,1],"/#account_id/searches/#search_id/members":[7,0,1],"/#account_id/members/status/:status_from/to/:status_to":[8,1,1],"/#account_id/response/#mailing_id/sends":[5,0,1],"/#account_id/members":[8,3,1],"/#account_id/members/email/:email":[8,0,1],"/#account_id/response/#mailing_id/links":[5,0,1],"/#account_id/searches/#search_id":[7,3,1],"/#account_id/members/imports/#import_id/members":[8,0,1],"/#account_id/fields/#field_id/clear":[10,2,1],"/#account_id/groups/#member_group_id/members":[13,3,1],"/#account_id/members/imports/#import_id":[8,0,1],"/#account_id/response":[5,0,1],"/#account_id/response/#mailing_id/opens":[5,0,1],"/#account_id/members/imports/delete":[8,3,1],"/#account_id/mailings":[9,0,1],"/#account_id/mailings/cancel/#mailing_id":[9,3,1],"/#account_id/mailings/validate":[9,2,1],"/#account_id/response/#mailing_id/deliveries":[5,0,1],"/#account_id/mailings/#mailing_id/members":[9,0,1],"/#account_id/response/#share_id/customer_share":[5,0,1],"/#account_id/webhooks/#webhook_id":[4,3,1],"/#account_id/members/add":[8,2,1],"/#account_id/members/email/optout/:email":[8,1,1],"/#account_id/response/#mailing_id/optouts":[5,0,1],"/#account_id/response/#mailing_id/shares":[5,0,1],"/#account_id/groups/#member_group_id":[13,3,1],"/#account_id/mailings/#mailing_id":[9,3,1],"/#account_id/members/#member_id/groups":[8,3,1],"/#account_id/groups":[13,2,1],"/#account_id/response/#mailing_id/clicks":[5,0,1],"/#account_id/mailings/#mailing_id/headsup":[9,0,1],"/#account_id/response/#mailing_id/signups":[5,0,1],"/#account_id/response/#mailing_id/customer_shares":[5,0,1]}},terms:{all:[0,1,4,5,8,9,10,11,12,13,14],code:[0,1,6,3],change_typ:8,queri:[0,2,4],month:[0,5,9,14],four:[0,5],mile:0,least:0,field_creat:[12,4],link_target:[5,9],content:[11,6,9,3],privat:1,specif:[8,9,4],friendli:5,send:[1,9,4,3,5],customer_share_click:5,those:[5,12],group_upd:[12,4],sent:[5,8,12,9,14],curl_clos:[6,3],brown:[7,8],digit:5,everi:0,string:[0,4,5,7,8,9,10,12,13,14],fals:[3,4,5,6,7,8,9,10,13,14],webhook:[1,12,4],mailing_status:9,trigger_id:14,curlopt_post:3,webview_share_click:5,affect:[7,8],member_add:[12,4],create_mail:9,new_boolean:10,foo:0,level:1,group_delet:[12,4],list:[0,1,2,4,5,7,8,9,10,11,12,13,14],upload:8,iter:2,"try":8,item:2,plaintext_onli:[9,14],div:[4,5,7,8,9,10,13,14],survey_id:14,pleas:[1,8,11,9],prevent:2,work:[1,4],ten:0,sync:10,sign:[0,5,4],past:1,second:[0,7,14],follow:[0,1,4,5,7,9,11,13],further:1,durat:9,click:[0,4,5,7,8,12,14],append:2,even:10,what:1,hide:[4,5,7,8,9,10,13,14],appear:1,from_group_id:13,section:1,current:[8,12,9],delet:[1,4,7,8,9,10,12,13,14],"new":[1,4,5,7,8,9,10,11,13,14],net:[1,2,6,3],delivery_t:8,method:[5,8,13,4,9],can:[0,1,2,4,5,7,8,9,11,12,13],widget:[7,10,8,9,13],hash:0,datematch:0,displai:10,variat:9,gener:[0,8,12,14],onli:[5,8],here:[0,1,3,5,6,8],bodi:9,let:[1,4,10],address:[0,1,8,6,9],along:8,sinc:8,valu:[0,5,7,8,10,11],field_upd:[12,4],search:[0,1,9,7],survei:14,sender:[9,14],"09t16":[7,14],larger:2,queue:5,prior:9,action:[0,8],chang:[8,4],campaign:5,newbi:5,appli:[7,14],prefer:0,myemma:[4,5,7,8,9,13],filenam:8,customer_shar:5,"boolean":[0,1,5,7,8,9,10,13,14],curlopt_postfield:3,total:5,jone:[7,5,8,13],select:10,newslett:[7,8,13],describ:7,would:[0,1],regist:4,two:[0,5],next:[0,1],create_webhook:4,few:[5,8],call:[1,2,3,4,6,8,12],criteria:7,member_add_to_group:[12,4],type:[1,3,4,5,6,7,10,9,14],until:2,more:[0,4,7,8,9,13],peopl:5,relat:[1,8,11,9],about:[10,8,12,4,9],notic:8,thide:[4,5,7,8,9,10,13,14],flag:[5,7,8,10,9,14],exce:2,indic:8,examin:1,particular:[1,4,5,8,10,12,9],in_progress:5,origin:9,must:[0,7,13,10],none:9,endpoint:[1,4,5,7,8,9,10,13,14],join:[0,7],hour:0,member_sinc:[0,5,7,8,9,13],uniqu:5,histori:8,soup:7,remain:[0,9],archiv:[5,9],member_optout:[12,4],drill:5,control:[1,11,9],quickstart:1,give:5,forward_mailing_id:5,email_domain:[0,5],share:[0,5,8,12,4],accept:[0,5,7,8,9,10,11,13,14],total_click:5,tag:[11,9],want:[1,12,13,5],occur:[7,12],some_numeric_field:0,delai:14,alwai:0,webhook_event_id:4,cours:1,end:[2,8],first_nam:[1,3,5,7,8,9,10,11,13,14],started_or_finish:[9,14],anoth:[9,13],get:[1,4,5,6,7,8,9,10,13,14],message_open:[12,4],html_bodi:[9,14],share_statu:5,push_offset:14,del_statu:5,tild:5,num_members_upd:8,simpl:0,chri:9,pizza:[7,8],map:0,autent:1,referenc:7,xxxx:6,sundai:0,membership:13,taco:[7,5,8,9,13],mai:12,multipl:[10,8],data:[1,3,4,5,10,12],welcom:11,add_onli:8,"short":0,json_encod:3,optout:[5,8,12,13],num_dupl:8,favorit:10,correspond:[0,1],greet:11,predic:[0,1],issu:[1,10],"12t11":[7,5,8,9,13],combin:7,allow:[0,7,8],some_zipcode_field:0,signed_up:5,order:[5,10],michel:[8,9],mailing_nam:5,checkbox:10,fields_upd:8,over:2,becaus:12,buyer:[7,8,9,13],comma:[9,13],is_dis:14,vari:8,paramet:[2,4,5,7,8,9,10,13,14],widget_typ:10,style:[0,4,5,7,8,9,10,13,14],group:[0,1,3,4,7,8,9,12,13,14],curl_setopt:[6,3],how:[7,1,2,4],import_start:8,better:[13,14],platform:1,pend:[1,9],mailing_list:9,onc:9,mail:[0,1,4,5,8,11,12,9,14],hidden:13,main:1,might:[1,4],link_nam:[5,9],them:[8,9],"return":[0,1,4,5,7,8,9,10,12,13,14],greater:[0,8],thei:[0,9],food:10,timestamp:[0,5,12,9,10],spell:4,dai:0,auth:1,instead:[12,2,8],now:5,down:5,term:[0,1],alex:9,name:[0,4,5,7,8,9,10,11,13,14],edit:[7,1,14,10],curl_getinfo:[6,3],authent:[1,6,4,3],successufulli:4,separ:[1,9,13],each:[1,2,5,9,12,11,13],found:[8,9,4,14],updat:[4,7,8,9,10,12,13,14],mean:0,status:[8,9],domain:0,shortcut_nam:10,weight:[4,5,7,8,9,10,13,14],resum:9,individu:[1,8],hard:[0,5],last_nam:[1,3,5,7,8,9,10,11,13,14],"05t15":5,birthdai:[10,14],expect:1,year:[0,5,9,14],our:[1,11,12,4,14],happen:[1,4,5],extract:11,short_display_nam:10,special:[0,7,8,13],out:[0,1,4,5,7,8,10,13],variabl:[1,6,3],message_shar:[12,4],network:[5,12],private_api_kei:[1,6,3],check_multipl:10,categori:1,rel:0,print:6,correct:10,statist:8,benjamin:8,qualifi:11,insid:1,advanc:0,contain:[0,5,7,13,10,9],differ:0,standard:[5,9],status_from:8,base:[5,8],recipient_search:9,dictionari:8,put:[4,7,8,9,10,13,14],"13t23":[7,5,8],visit:11,could:1,omit:5,success:[1,3,7,8,9,13],filter:[0,1,7],search_id:7,pagin:[1,2],member_id:[5,7,8,9,12,13],summari:[1,5],assign:9,first:[0,1,10,5],oper:[0,1,7,14],rang:5,notifi:12,directli:0,curlopt_ssl_verifyp:[6,3],curl_init:[6,3],number:[5,2,13,3,10],placehold:[1,11],date:[0,5,8,10,11,14],unlik:9,alreadi:[10,8,9,13],done:8,plaintext_pref:[7,8,9,13],oppos:8,open:[0,3,4,5,6,7,8,12],payload:4,fanci:5,size:2,given:[0,8,9,4],"long":10,script:1,associ:[1,8,9,4,5],system:[8,12,4,14],messag:[4,5,8,12,11,9,14],attach:11,friend:11,curlinfo_http_cod:[6,3],shell:0,option:[0,5,7,8,9,10,13,14],especi:8,signup:[0,1,3,4,5,8,12,14],copi:[8,13],member_upd:[12,4],specifi:[0,2,7,8,10,11,9,14],curl_exec:[6,3],curlopt_httphead:[6,3],member_signup:[12,4],create_search:7,part:[0,9],enclos:11,than:[0,1,2,3,12,13],with_plaintext:9,"02t10":[5,8],"02t11":[5,8],"02t13":5,nathan:8,whenev:8,provid:[1,5,8,12,9,14],remov:[12,8,13,4],mailing_start:4,rate:2,structur:7,charact:9,greg:8,trackabl:11,were:5,minut:0,danc:1,error_count:[7,8,9,13],pre:[4,5,7,8,9,10,13,14],cleaner:1,sai:0,share_id:5,signup_form_id:[0,8,12,9,14],plaintext:[5,9,14],pass:[1,3],ani:[0,1,2,7,8,9],have:[0,5,8,12,9],tabl:5,seen:5,"null":[7,8,13,10,9,14],kevin:[9,14],signup_mail:0,caus:14,inform:[1,4,6,8,9,10,13],object_id:14,note:[1,8,9,4],also:[0,4,5,7,8,9,11,13],exampl:[0,1,3,5,6,7,11],take:[0,4],which:[0,1,4,8,10,12,9,14],some_number_field:0,singl:[0,1,3,4,5,8,10,12,13],excit:11,sure:1,delete_memb:13,normal:9,parent_mail:14,recipient_count:[5,9,14],previou:9,field_id:[10,12,14],last_run_at:7,most:14,pair:11,"class":[4,5,7,8,9,10,13,14],member_group_id:[8,9,13],mcconnel:[9,14],url:[1,3,4,5,6,12],mailing_finish:[12,4],clear:10,request:[1,2,3],doe:[0,5,7,8,10,13],member_status_upd:[12,4],declar:9,tech:4,determin:1,dataset:10,dow:0,recipi:9,"6db0cc7e6fdb2da589b65f29d90c96b6":9,show:[4,5,7,8,9,10,11,13,14],text:[10,11,12],radiu:0,syntax:[0,1,11,9],radio:10,font:[4,5,7,8,9,10,13,14],fine:9,find:[1,6,5],status_to:8,toast:[7,5,8,13],access:[1,5],giant:12,just:[0,9],pretti:8,column_ord:10,explain:[0,1],winner:9,activ:[1,5,7,8,13,9],figur:1,should:[1,2,3,7,8,11,9],templat:[11,14],share_count:5,count:[5,2,3],variou:[8,13],confirmed_opt_in:[7,8,9,13],familiar:1,express:0,account:[1,4,5,7,8,10,13,14],cannot:[8,9,4],progress:9,report:[10,8],requir:[1,7,8,10,11,9],object:[5,13],favorite_food:[5,7,8,13,10,9],bar:0,organ:1,include_archiv:[5,9],"public":1,"default":[5,11,13,4,9],ref_member_id:5,message_share_click:[12,4],through:[1,8,4],where:[0,1,8,11,7],view:1,set:[0,1,2,3,6,8,9,12,13],link_id:[0,5,12,9,14],see:[7,1,8],result:[0,1,2,5,8,9],respons:[0,1,2,4,5,7,8,9,10,13,14],fail:[5,9,4],themselv:2,member_field:[0,7],xxxxx:6,subject:[8,12,9,14],statu:[1,4,5,7,8,9,12,13],fancyonion:11,kei:[0,1,8,11,4],is_schedul:9,message_forward:[12,4],databas:8,user:[0,8,9,13],last_modified_at:[7,8,9,13],addresse:5,written:1,between:[0,7,2],"import":[1,8,12,4,10],subscript:[1,3],entiti:1,curlopt_url:[6,3],email:[0,1,3,5,6,7,8,9,13],wide:14,extend:1,numer:10,http404:[4,5,7,8,9,10,13,14],job:13,entir:[0,8],share_click:5,to_group_id:13,curlopt_returntransf:[6,3],addit:[0,1,8,9,11,13],member_remove_from_group:[12,4],send_start:[0,9,14],protect:1,accident:2,last:[0,5,10],delimit:5,pertain:5,message_click:[12,4],against:0,audienc:[1,8,9],mang:0,http500:14,seri:5,com:[4,5,6,7,8,9,11,13],zip_code_field:0,"03t15":[7,5,8,13],point:1,toni:[7,8],overview:[0,1,11,12,5],period:1,winner_id:9,colon:[7,11],optout_count:[7,8,9,13],suppli:9,cancel:9,tuesdai:0,duplic:5,quit:[5,8],user_id:4,recur:14,headsup:9,addition:[1,2],due:5,been:[1,8,10,5],mark:[8,9],whom:9,tshow:[4,5,7,8,9,10,13,14],trigger:[1,4,5,7,8,9,10,12,13,14],unsubscrib:0,treat:8,interest:[10,4],basic:[0,1,4,8,13,14],monthli:[7,8,13],blob:4,mailing_mailing_id:5,mailing_id:[0,5,8,12,9,14],fire:[8,4,14],xxx:[1,3],argument:[0,5],link_ord:[5,9],input:1,present:7,clicked_uniqu:5,"case":[1,8],look:[1,14,10],frozen:9,easier:12,email_error:[7,8,9,13],defin:[0,10,8,9],"while":0,outcom:5,abov:[0,1,8,7],error:[1,3,6,8,10,13],loop:8,opt:[0,4,5,7,8,13],readi:9,deliv:5,recipient_group:9,equal:0,itself:0,new_statu:12,webhook_id:4,recipient_memb:9,perform:8,make:[1,12,6,10],belong:[0,8,4],same:4,check:[8,6,9],member:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14],handl:1,html:9,split:9,document:[1,11,12],complet:[1,3,4,6,8,9],week:0,finish:[5,12,4],http:[1,2,3,4,5,6,11,9],href:[4,5,7,8,9,10,13,14],nest:0,someon:4,rais:[4,5,7,8,9,10,13,14],initi:[10,9],php:[1,6,3],bob:[7,5],recent:1,kept:11,center:0,min:5,well:5,inherit:9,person:9,mailing_typ:[9,14],without:0,thi:[0,1,4,5,7,8,9,10,12,13,14],undefin:0,http_code:[1,6,3],latest:11,construct:[0,7,9],identifi:8,paus:9,execut:[1,3],less:0,resp:[4,5,7,8,9,10,13,14],"_post":[1,3],aspect:13,recipient_email:9,source_filenam:8,yet:5,smith:[7,5,8,9,13],"12t09":[7,8],display_nam:10,easi:[10,12],"01t00":8,had:0,littl:1,blog:4,add:[12,1,8,13,3],other:[1,8,9,3,5],curlopt_userpwd:[6,3],import_finish:[8,12,4],schedul:9,els:[1,6,3],save:7,match:[0,7],build:1,sanit:1,applic:[1,6,3],account_id:[1,3,4,5,6,7,8,9,10,12,13,14],disposit:1,crud:[8,13,14],print_r:[6,3],mailing_statu:[9,14],know:[5,4],background:13,parent_mailing_id:[9,14],bit:1,insert:11,emma:[1,5,7,8,9,12,13],like:1,onion:11,deprec:4,arbitrari:8,manual:9,integ:[1,8,14,10,5],public_kei:4,api:[1,2,6,12,3],either:[0,5,7],bunch:0,output:9,group_id:[1,8,12,3],soft:[0,5],manag:[0,1,13,4],import_id:[8,12],www:[5,9],old:7,deal:[8,13],captur:1,arrai:[0,1,3,5,6,7,8,9,10,12,13,14],some:[1,11,5],field_delet:[12,4],certain:12,intern:10,sampl:[1,4,5,7,8,9,10,13,14],elaps:[2,9],home:11,deleted_at:[7,8,13,10,9,14],some_string_field:0,librari:11,bounce_count:[7,8,9,13],confirm:8,broad:12,per:5,send_finish:[9,14],larg:[0,2],condit:7,three:9,network_cod:12,localhost:9,refer:[5,7,8,13,10,9],with_html_bodi:9,who:[0,5],bold:[4,5,7,8,9,10,13,14],event_typ:14,inspect:1,usag:[1,8,12],num_members_ad:8,fulli:11,from:[1,4,8,9,12,13,14],post:[1,3,4,7,8,9,10,12,13,14],group_creat:[12,4],gladi:[7,5,8,13],actual:5,zip:0,groups_upd:8,column:10,page:2,includ:[1,5,7,8,9,10,13],webview:9,disabl:[9,14],block:[1,2],yyyi:5,member_data:[1,3],glob:0,bounc:[0,5],within:0,encod:[9,4],delivery_typ:[5,8],compos:0,webview_shar:5,field_typ:10,active_count:[7,8,9,13],public_webview_url:9,pivot:5,your:[1,4,5,7,8,9,10,13],websit:11,span:[4,5,7,8,9,10,13,14],wai:[1,12],area:1,overus:2,group_nam:[8,12,13,9],support:12,unique_click:5,json:[0,1,3,4,6,7],fast:8,custom:[5,8,11,10],avail:[0,11,4],start:[1,2,8,4],interfac:12,send_at:[9,14],exceed:2,"var":3,interv:[0,14],deliveri:5,head:[6,9,3],form:[1,3,4,6,8,10,14],enough:2,forc:1,forward:[0,4,5,8,12,9],"31st":0,group_typ:[8,9,13],push_offset_unit:14,link:[0,4,5,11,9,14],line:[1,5],realli:1,"true":[0,1,2,3,4,6,7,8,9,10,13,14],archived_t:[9,14],info:4,pull:2,made:1,possibl:[5,8,12],whether:8,maximum:2,tell:12,http403:9,record:[0,7,8],below:[0,1,8,12],http400:[7,8,9],limit:[5,2,8,9],some_array_field:0,otherwis:[10,8],start_t:14,mta:5,connect:[6,3],notif:9,creat:[4,5,7,9,10,12,13,14],"int":5,retriev:[7,1,2,8,9],email_us:[0,5],repres:5,exist:[0,4,5,7,8,10,13],behavior:11,curl:[1,6],lentil:7,probabl:14,echo:[1,3],successfulli:[5,8,9],mailing_subject:12,grp:13,todo:11,when:[8,12,4,9],detail:[1,4,7,8,9,10,13],invalid:[7,8,9],event:[4,7,8,13,12,9,14],field:[0,1,3,4,5,7,8,9,10,11,12,13,14],valid:[5,8,9,13],futur:1,num_skip:8,test:[5,6,7,13,9,14],ignor:8,you:[0,1,2,4,5,7,8,9,10,11,12,13],member_delet:[12,4],member_status_id:[7,5,8,9,13],public_api_kei:[1,6,3],stat:[5,9],claus:[0,7],event_nam:[12,4],e2ma:[1,2,6,3],error_messag:8,param:[9,4],app_messag:[1,3],ella:8,bulk:[1,8],receiv:[0,2,5,8,12,9],heads_up_email:9,longer:9,descript:[4,14],portion:0,opted_out:5,time:[1,2,8,13,5],reply_to:[9,14],resource_url:12,hello:[11,9,14]},objtypes:{"0":"http:get","1":"http:put","2":"http:post","3":"http:delete"},titles:["Search Syntax","Emma API","Pagination","PHP Signup Example","Webhooks","Response","PHP Get Member By Email Example","Searches","Members","Mailings","Fields","Placeholder Syntax","Webhook Usage","Groups","Triggers"],objnames:{"0":"HTTP get","1":"HTTP put","2":"HTTP post","3":"HTTP delete"},filenames:["member_search","index","pagination","php_signup_example","api/external/webhooks","api/external/response","php_get_member_example","api/external/searches","api/external/members","api/external/mailings","api/external/fields","placeholders","webhooks","api/external/groups","api/external/triggers"]}) \ No newline at end of file diff --git a/webhooks.html b/webhooks.html index bc73502..034ee57 100644 --- a/webhooks.html +++ b/webhooks.html @@ -507,7 +507,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 07, 2013 at 02:56 PM. + Last updated on Jan 09, 2013 at 04:40 PM. </div> </body> </html> \ No newline at end of file From 9d560043f3b668332d11cee16bcd789134133d1a Mon Sep 17 00:00:00 2001 From: Hernan Ciudad <hernan@myemma.com> Date: Thu, 10 Jan 2013 12:23:27 -0600 Subject: [PATCH 020/219] Update audience documentation. --- api/external/fields.html | 2 +- api/external/groups.html | 2 +- api/external/mailings.html | 2 +- api/external/members.html | 2 +- api/external/response.html | 2 +- api/external/searches.html | 4 ++-- api/external/triggers.html | 8 ++++---- api/external/webhooks.html | 2 +- genindex.html | 2 +- http-routingtable.html | 2 +- index.html | 2 +- member_search.html | 2 +- pagination.html | 2 +- php_get_member_example.html | 2 +- php_signup_example.html | 2 +- placeholders.html | 2 +- search.html | 2 +- searchindex.js | 2 +- webhooks.html | 2 +- 19 files changed, 23 insertions(+), 23 deletions(-) diff --git a/api/external/fields.html b/api/external/fields.html index 0943789..cdfa5b2 100644 --- a/api/external/fields.html +++ b/api/external/fields.html @@ -421,7 +421,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 09, 2013 at 04:40 PM. + Last updated on Jan 10, 2013 at 12:23 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/groups.html b/api/external/groups.html index 7cc8605..4121809 100644 --- a/api/external/groups.html +++ b/api/external/groups.html @@ -713,7 +713,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 09, 2013 at 04:40 PM. + Last updated on Jan 10, 2013 at 12:23 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/mailings.html b/api/external/mailings.html index a8af123..ad46815 100644 --- a/api/external/mailings.html +++ b/api/external/mailings.html @@ -823,7 +823,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 09, 2013 at 04:40 PM. + Last updated on Jan 10, 2013 at 12:23 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/members.html b/api/external/members.html index 9d10afd..7059a4a 100644 --- a/api/external/members.html +++ b/api/external/members.html @@ -1238,7 +1238,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 09, 2013 at 04:40 PM. + Last updated on Jan 10, 2013 at 12:23 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/response.html b/api/external/response.html index f688155..3256a71 100644 --- a/api/external/response.html +++ b/api/external/response.html @@ -1035,7 +1035,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 09, 2013 at 04:40 PM. + Last updated on Jan 10, 2013 at 12:23 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/searches.html b/api/external/searches.html index 9ff940e..f4e6f56 100644 --- a/api/external/searches.html +++ b/api/external/searches.html @@ -201,7 +201,7 @@ <h1>Searches<a class="headerlink" href="#searches" title="Permalink to this head "name": "Test Search", "criteria": "[\"or\", [\"group\", \"eq\", \"Monthly Newsletter\"],[\"group\", \"eq\", \"Widget Buyers\"]]", "deleted_at": null, - "last_run_at": "@D:2013-01-09T16:40:37", + "last_run_at": "@D:2013-01-10T12:23:20", "active_count": 2, "account_id": 100 } @@ -517,7 +517,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 09, 2013 at 04:40 PM. + Last updated on Jan 10, 2013 at 12:23 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/triggers.html b/api/external/triggers.html index 498abd7..723667c 100644 --- a/api/external/triggers.html +++ b/api/external/triggers.html @@ -149,7 +149,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": 203, "push_offset_units": "0:-14:0:0", - "start_ts": "@D:2013-01-09T16:40:34", + "start_ts": "@D:2013-01-10T12:23:17", "trigger_id": 100, "signups": null, "push_offset": "@I:-1209600.0", @@ -190,7 +190,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": null, "push_offset_units": "0:3:0:0", - "start_ts": "@D:2013-01-09T16:40:34", + "start_ts": "@D:2013-01-10T12:23:17", "trigger_id": 101, "signups": [ 1, @@ -329,7 +329,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": 203, "push_offset_units": "0:-14:0:0", - "start_ts": "@D:2013-01-09T16:40:34", + "start_ts": "@D:2013-01-10T12:23:17", "trigger_id": 100, "signups": null, "push_offset": "@I:-1209600.0", @@ -505,7 +505,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 09, 2013 at 04:40 PM. + Last updated on Jan 10, 2013 at 12:23 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/webhooks.html b/api/external/webhooks.html index a350dc5..bbf9639 100644 --- a/api/external/webhooks.html +++ b/api/external/webhooks.html @@ -494,7 +494,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 09, 2013 at 04:40 PM. + Last updated on Jan 10, 2013 at 12:23 PM. </div> </body> </html> \ No newline at end of file diff --git a/genindex.html b/genindex.html index 95cece1..00b899a 100644 --- a/genindex.html +++ b/genindex.html @@ -144,7 +144,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 09, 2013 at 04:40 PM. + Last updated on Jan 10, 2013 at 12:23 PM. </div> </body> </html> \ No newline at end of file diff --git a/http-routingtable.html b/http-routingtable.html index e8cdf5d..edfab1d 100644 --- a/http-routingtable.html +++ b/http-routingtable.html @@ -607,7 +607,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 09, 2013 at 04:40 PM. + Last updated on Jan 10, 2013 at 12:23 PM. </div> </body> </html> \ No newline at end of file diff --git a/index.html b/index.html index d675fdb..cbadf3d 100644 --- a/index.html +++ b/index.html @@ -311,7 +311,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 09, 2013 at 04:40 PM. + Last updated on Jan 10, 2013 at 12:23 PM. </div> </body> </html> \ No newline at end of file diff --git a/member_search.html b/member_search.html index 23f0654..46d569d 100644 --- a/member_search.html +++ b/member_search.html @@ -256,7 +256,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 09, 2013 at 04:40 PM. + Last updated on Jan 10, 2013 at 12:23 PM. </div> </body> </html> \ No newline at end of file diff --git a/pagination.html b/pagination.html index 085b809..40e91a9 100644 --- a/pagination.html +++ b/pagination.html @@ -168,7 +168,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 09, 2013 at 04:40 PM. + Last updated on Jan 10, 2013 at 12:23 PM. </div> </body> </html> \ No newline at end of file diff --git a/php_get_member_example.html b/php_get_member_example.html index 39b09a2..036c056 100644 --- a/php_get_member_example.html +++ b/php_get_member_example.html @@ -183,7 +183,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 09, 2013 at 04:40 PM. + Last updated on Jan 10, 2013 at 12:23 PM. </div> </body> </html> \ No newline at end of file diff --git a/php_signup_example.html b/php_signup_example.html index a51003d..1876f1a 100644 --- a/php_signup_example.html +++ b/php_signup_example.html @@ -205,7 +205,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 09, 2013 at 04:40 PM. + Last updated on Jan 10, 2013 at 12:23 PM. </div> </body> </html> \ No newline at end of file diff --git a/placeholders.html b/placeholders.html index de71f1b..36e688f 100644 --- a/placeholders.html +++ b/placeholders.html @@ -183,7 +183,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 09, 2013 at 04:40 PM. + Last updated on Jan 10, 2013 at 12:23 PM. </div> </body> </html> \ No newline at end of file diff --git a/search.html b/search.html index 01cedca..db7ec08 100644 --- a/search.html +++ b/search.html @@ -153,7 +153,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 09, 2013 at 04:40 PM. + Last updated on Jan 10, 2013 at 12:23 PM. </div> </body> </html> \ No newline at end of file diff --git a/searchindex.js b/searchindex.js index 75cc29c..b502c3c 100644 --- a/searchindex.js +++ b/searchindex.js @@ -1 +1 @@ -Search.setIndex({objects:{"":{"/#account_id/members/#member_id/groups/remove":[8,1,1],"/#account_id/mailings/#mailing_id/winner/#winner_id":[9,2,1],"/#account_id/response/#mailing_id/in_progress":[5,0,1],"/#account_id/members/groups/remove":[8,1,1],"/#account_id/mailings/#mailing_id/searches":[9,0,1],"/#account_id/fields":[10,2,1],"/#account_id/members/#group_id/copy":[8,1,1],"/#account_id/members/status":[8,1,1],"/#account_id/response/#mailing_id/shares/overview":[5,0,1],"/#account_id/webhooks/events":[4,0,1],"/#account_id/members/#member_id/optout":[8,0,1],"/#account_id/webhooks":[4,3,1],"/#account_id/fields/#field_id":[10,3,1],"/#account_id/response/#mailing_id":[5,0,1],"/#account_id/groups/#member_group_id/members/remove":[13,3,1],"/#account_id/searches":[7,2,1],"/#account_id/members/imports":[8,0,1],"/#account_id/forwards/#mailing_id/#member_id":[9,2,1],"/#account_id/response/#mailing_id/customer_share_clicks":[5,0,1],"/#account_id/mailings/#mailing_id/messages/#member_id":[9,0,1],"/#account_id/members/#member_id/mailings":[8,0,1],"/#account_id/groups/#from_group_id/#to_group_id/members/copy":[13,1,1],"/#account_id/triggers":[14,2,1],"/#account_id/triggers/#trigger_id":[14,3,1],"/#account_id/members/delete":[8,1,1],"/#account_id/mailings/#mailing_id/groups":[9,0,1],"/#account_id/response/#mailing_id/forwards":[5,0,1],"/#account_id/members/#member_id":[8,3,1],"/#account_id/triggers/#trigger_id/mailings":[14,0,1],"/#account_id/searches/#search_id/members":[7,0,1],"/#account_id/members/status/:status_from/to/:status_to":[8,1,1],"/#account_id/response/#mailing_id/sends":[5,0,1],"/#account_id/members":[8,3,1],"/#account_id/members/email/:email":[8,0,1],"/#account_id/response/#mailing_id/links":[5,0,1],"/#account_id/searches/#search_id":[7,3,1],"/#account_id/members/imports/#import_id/members":[8,0,1],"/#account_id/fields/#field_id/clear":[10,2,1],"/#account_id/groups/#member_group_id/members":[13,3,1],"/#account_id/members/imports/#import_id":[8,0,1],"/#account_id/response":[5,0,1],"/#account_id/response/#mailing_id/opens":[5,0,1],"/#account_id/members/imports/delete":[8,3,1],"/#account_id/mailings":[9,0,1],"/#account_id/mailings/cancel/#mailing_id":[9,3,1],"/#account_id/mailings/validate":[9,2,1],"/#account_id/response/#mailing_id/deliveries":[5,0,1],"/#account_id/mailings/#mailing_id/members":[9,0,1],"/#account_id/response/#share_id/customer_share":[5,0,1],"/#account_id/webhooks/#webhook_id":[4,3,1],"/#account_id/members/add":[8,2,1],"/#account_id/members/email/optout/:email":[8,1,1],"/#account_id/response/#mailing_id/optouts":[5,0,1],"/#account_id/response/#mailing_id/shares":[5,0,1],"/#account_id/groups/#member_group_id":[13,3,1],"/#account_id/mailings/#mailing_id":[9,3,1],"/#account_id/members/#member_id/groups":[8,3,1],"/#account_id/groups":[13,2,1],"/#account_id/response/#mailing_id/clicks":[5,0,1],"/#account_id/mailings/#mailing_id/headsup":[9,0,1],"/#account_id/response/#mailing_id/signups":[5,0,1],"/#account_id/response/#mailing_id/customer_shares":[5,0,1]}},terms:{all:[0,1,4,5,8,9,10,11,12,13,14],code:[0,1,6,3],change_typ:8,queri:[0,2,4],month:[0,5,9,14],four:[0,5],mile:0,least:0,field_creat:[12,4],link_target:[5,9],content:[11,6,9,3],privat:1,specif:[8,9,4],friendli:5,send:[1,9,4,3,5],customer_share_click:5,those:[5,12],group_upd:[12,4],sent:[5,8,12,9,14],curl_clos:[6,3],brown:[7,8],digit:5,everi:0,string:[0,4,5,7,8,9,10,12,13,14],fals:[3,4,5,6,7,8,9,10,13,14],webhook:[1,12,4],mailing_status:9,trigger_id:14,curlopt_post:3,webview_share_click:5,affect:[7,8],member_add:[12,4],create_mail:9,new_boolean:10,foo:0,level:1,group_delet:[12,4],list:[0,1,2,4,5,7,8,9,10,11,12,13,14],upload:8,iter:2,"try":8,item:2,plaintext_onli:[9,14],div:[4,5,7,8,9,10,13,14],survey_id:14,pleas:[1,8,11,9],prevent:2,work:[1,4],ten:0,sync:10,sign:[0,5,4],past:1,second:[0,7,14],follow:[0,1,4,5,7,9,11,13],further:1,durat:9,click:[0,4,5,7,8,12,14],append:2,even:10,what:1,hide:[4,5,7,8,9,10,13,14],appear:1,from_group_id:13,section:1,current:[8,12,9],delet:[1,4,7,8,9,10,12,13,14],"new":[1,4,5,7,8,9,10,11,13,14],net:[1,2,6,3],delivery_t:8,method:[5,8,13,4,9],can:[0,1,2,4,5,7,8,9,11,12,13],widget:[7,10,8,9,13],hash:0,datematch:0,displai:10,variat:9,gener:[0,8,12,14],onli:[5,8],here:[0,1,3,5,6,8],bodi:9,let:[1,4,10],address:[0,1,8,6,9],along:8,sinc:8,valu:[0,5,7,8,10,11],field_upd:[12,4],search:[0,1,9,7],survei:14,sender:[9,14],"09t16":[7,14],larger:2,queue:5,prior:9,action:[0,8],chang:[8,4],campaign:5,newbi:5,appli:[7,14],prefer:0,myemma:[4,5,7,8,9,13],filenam:8,customer_shar:5,"boolean":[0,1,5,7,8,9,10,13,14],curlopt_postfield:3,total:5,jone:[7,5,8,13],select:10,newslett:[7,8,13],describ:7,would:[0,1],regist:4,two:[0,5],next:[0,1],create_webhook:4,few:[5,8],call:[1,2,3,4,6,8,12],criteria:7,member_add_to_group:[12,4],type:[1,3,4,5,6,7,10,9,14],until:2,more:[0,4,7,8,9,13],peopl:5,relat:[1,8,11,9],about:[10,8,12,4,9],notic:8,thide:[4,5,7,8,9,10,13,14],flag:[5,7,8,10,9,14],exce:2,indic:8,examin:1,particular:[1,4,5,8,10,12,9],in_progress:5,origin:9,must:[0,7,13,10],none:9,endpoint:[1,4,5,7,8,9,10,13,14],join:[0,7],hour:0,member_sinc:[0,5,7,8,9,13],uniqu:5,histori:8,soup:7,remain:[0,9],archiv:[5,9],member_optout:[12,4],drill:5,control:[1,11,9],quickstart:1,give:5,forward_mailing_id:5,email_domain:[0,5],share:[0,5,8,12,4],accept:[0,5,7,8,9,10,11,13,14],total_click:5,tag:[11,9],want:[1,12,13,5],occur:[7,12],some_numeric_field:0,delai:14,alwai:0,webhook_event_id:4,cours:1,end:[2,8],first_nam:[1,3,5,7,8,9,10,11,13,14],started_or_finish:[9,14],anoth:[9,13],get:[1,4,5,6,7,8,9,10,13,14],message_open:[12,4],html_bodi:[9,14],share_statu:5,push_offset:14,del_statu:5,tild:5,num_members_upd:8,simpl:0,chri:9,pizza:[7,8],map:0,autent:1,referenc:7,xxxx:6,sundai:0,membership:13,taco:[7,5,8,9,13],mai:12,multipl:[10,8],data:[1,3,4,5,10,12],welcom:11,add_onli:8,"short":0,json_encod:3,optout:[5,8,12,13],num_dupl:8,favorit:10,correspond:[0,1],greet:11,predic:[0,1],issu:[1,10],"12t11":[7,5,8,9,13],combin:7,allow:[0,7,8],some_zipcode_field:0,signed_up:5,order:[5,10],michel:[8,9],mailing_nam:5,checkbox:10,fields_upd:8,over:2,becaus:12,buyer:[7,8,9,13],comma:[9,13],is_dis:14,vari:8,paramet:[2,4,5,7,8,9,10,13,14],widget_typ:10,style:[0,4,5,7,8,9,10,13,14],group:[0,1,3,4,7,8,9,12,13,14],curl_setopt:[6,3],how:[7,1,2,4],import_start:8,better:[13,14],platform:1,pend:[1,9],mailing_list:9,onc:9,mail:[0,1,4,5,8,11,12,9,14],hidden:13,main:1,might:[1,4],link_nam:[5,9],them:[8,9],"return":[0,1,4,5,7,8,9,10,12,13,14],greater:[0,8],thei:[0,9],food:10,timestamp:[0,5,12,9,10],spell:4,dai:0,auth:1,instead:[12,2,8],now:5,down:5,term:[0,1],alex:9,name:[0,4,5,7,8,9,10,11,13,14],edit:[7,1,14,10],curl_getinfo:[6,3],authent:[1,6,4,3],successufulli:4,separ:[1,9,13],each:[1,2,5,9,12,11,13],found:[8,9,4,14],updat:[4,7,8,9,10,12,13,14],mean:0,status:[8,9],domain:0,shortcut_nam:10,weight:[4,5,7,8,9,10,13,14],resum:9,individu:[1,8],hard:[0,5],last_nam:[1,3,5,7,8,9,10,11,13,14],"05t15":5,birthdai:[10,14],expect:1,year:[0,5,9,14],our:[1,11,12,4,14],happen:[1,4,5],extract:11,short_display_nam:10,special:[0,7,8,13],out:[0,1,4,5,7,8,10,13],variabl:[1,6,3],message_shar:[12,4],network:[5,12],private_api_kei:[1,6,3],check_multipl:10,categori:1,rel:0,print:6,correct:10,statist:8,benjamin:8,qualifi:11,insid:1,advanc:0,contain:[0,5,7,13,10,9],differ:0,standard:[5,9],status_from:8,base:[5,8],recipient_search:9,dictionari:8,put:[4,7,8,9,10,13,14],"13t23":[7,5,8],visit:11,could:1,omit:5,success:[1,3,7,8,9,13],filter:[0,1,7],search_id:7,pagin:[1,2],member_id:[5,7,8,9,12,13],summari:[1,5],assign:9,first:[0,1,10,5],oper:[0,1,7,14],rang:5,notifi:12,directli:0,curlopt_ssl_verifyp:[6,3],curl_init:[6,3],number:[5,2,13,3,10],placehold:[1,11],date:[0,5,8,10,11,14],unlik:9,alreadi:[10,8,9,13],done:8,plaintext_pref:[7,8,9,13],oppos:8,open:[0,3,4,5,6,7,8,12],payload:4,fanci:5,size:2,given:[0,8,9,4],"long":10,script:1,associ:[1,8,9,4,5],system:[8,12,4,14],messag:[4,5,8,12,11,9,14],attach:11,friend:11,curlinfo_http_cod:[6,3],shell:0,option:[0,5,7,8,9,10,13,14],especi:8,signup:[0,1,3,4,5,8,12,14],copi:[8,13],member_upd:[12,4],specifi:[0,2,7,8,10,11,9,14],curl_exec:[6,3],curlopt_httphead:[6,3],member_signup:[12,4],create_search:7,part:[0,9],enclos:11,than:[0,1,2,3,12,13],with_plaintext:9,"02t10":[5,8],"02t11":[5,8],"02t13":5,nathan:8,whenev:8,provid:[1,5,8,12,9,14],remov:[12,8,13,4],mailing_start:4,rate:2,structur:7,charact:9,greg:8,trackabl:11,were:5,minut:0,danc:1,error_count:[7,8,9,13],pre:[4,5,7,8,9,10,13,14],cleaner:1,sai:0,share_id:5,signup_form_id:[0,8,12,9,14],plaintext:[5,9,14],pass:[1,3],ani:[0,1,2,7,8,9],have:[0,5,8,12,9],tabl:5,seen:5,"null":[7,8,13,10,9,14],kevin:[9,14],signup_mail:0,caus:14,inform:[1,4,6,8,9,10,13],object_id:14,note:[1,8,9,4],also:[0,4,5,7,8,9,11,13],exampl:[0,1,3,5,6,7,11],take:[0,4],which:[0,1,4,8,10,12,9,14],some_number_field:0,singl:[0,1,3,4,5,8,10,12,13],excit:11,sure:1,delete_memb:13,normal:9,parent_mail:14,recipient_count:[5,9,14],previou:9,field_id:[10,12,14],last_run_at:7,most:14,pair:11,"class":[4,5,7,8,9,10,13,14],member_group_id:[8,9,13],mcconnel:[9,14],url:[1,3,4,5,6,12],mailing_finish:[12,4],clear:10,request:[1,2,3],doe:[0,5,7,8,10,13],member_status_upd:[12,4],declar:9,tech:4,determin:1,dataset:10,dow:0,recipi:9,"6db0cc7e6fdb2da589b65f29d90c96b6":9,show:[4,5,7,8,9,10,11,13,14],text:[10,11,12],radiu:0,syntax:[0,1,11,9],radio:10,font:[4,5,7,8,9,10,13,14],fine:9,find:[1,6,5],status_to:8,toast:[7,5,8,13],access:[1,5],giant:12,just:[0,9],pretti:8,column_ord:10,explain:[0,1],winner:9,activ:[1,5,7,8,13,9],figur:1,should:[1,2,3,7,8,11,9],templat:[11,14],share_count:5,count:[5,2,3],variou:[8,13],confirmed_opt_in:[7,8,9,13],familiar:1,express:0,account:[1,4,5,7,8,10,13,14],cannot:[8,9,4],progress:9,report:[10,8],requir:[1,7,8,10,11,9],object:[5,13],favorite_food:[5,7,8,13,10,9],bar:0,organ:1,include_archiv:[5,9],"public":1,"default":[5,11,13,4,9],ref_member_id:5,message_share_click:[12,4],through:[1,8,4],where:[0,1,8,11,7],view:1,set:[0,1,2,3,6,8,9,12,13],link_id:[0,5,12,9,14],see:[7,1,8],result:[0,1,2,5,8,9],respons:[0,1,2,4,5,7,8,9,10,13,14],fail:[5,9,4],themselv:2,member_field:[0,7],xxxxx:6,subject:[8,12,9,14],statu:[1,4,5,7,8,9,12,13],fancyonion:11,kei:[0,1,8,11,4],is_schedul:9,message_forward:[12,4],databas:8,user:[0,8,9,13],last_modified_at:[7,8,9,13],addresse:5,written:1,between:[0,7,2],"import":[1,8,12,4,10],subscript:[1,3],entiti:1,curlopt_url:[6,3],email:[0,1,3,5,6,7,8,9,13],wide:14,extend:1,numer:10,http404:[4,5,7,8,9,10,13,14],job:13,entir:[0,8],share_click:5,to_group_id:13,curlopt_returntransf:[6,3],addit:[0,1,8,9,11,13],member_remove_from_group:[12,4],send_start:[0,9,14],protect:1,accident:2,last:[0,5,10],delimit:5,pertain:5,message_click:[12,4],against:0,audienc:[1,8,9],mang:0,http500:14,seri:5,com:[4,5,6,7,8,9,11,13],zip_code_field:0,"03t15":[7,5,8,13],point:1,toni:[7,8],overview:[0,1,11,12,5],period:1,winner_id:9,colon:[7,11],optout_count:[7,8,9,13],suppli:9,cancel:9,tuesdai:0,duplic:5,quit:[5,8],user_id:4,recur:14,headsup:9,addition:[1,2],due:5,been:[1,8,10,5],mark:[8,9],whom:9,tshow:[4,5,7,8,9,10,13,14],trigger:[1,4,5,7,8,9,10,12,13,14],unsubscrib:0,treat:8,interest:[10,4],basic:[0,1,4,8,13,14],monthli:[7,8,13],blob:4,mailing_mailing_id:5,mailing_id:[0,5,8,12,9,14],fire:[8,4,14],xxx:[1,3],argument:[0,5],link_ord:[5,9],input:1,present:7,clicked_uniqu:5,"case":[1,8],look:[1,14,10],frozen:9,easier:12,email_error:[7,8,9,13],defin:[0,10,8,9],"while":0,outcom:5,abov:[0,1,8,7],error:[1,3,6,8,10,13],loop:8,opt:[0,4,5,7,8,13],readi:9,deliv:5,recipient_group:9,equal:0,itself:0,new_statu:12,webhook_id:4,recipient_memb:9,perform:8,make:[1,12,6,10],belong:[0,8,4],same:4,check:[8,6,9],member:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14],handl:1,html:9,split:9,document:[1,11,12],complet:[1,3,4,6,8,9],week:0,finish:[5,12,4],http:[1,2,3,4,5,6,11,9],href:[4,5,7,8,9,10,13,14],nest:0,someon:4,rais:[4,5,7,8,9,10,13,14],initi:[10,9],php:[1,6,3],bob:[7,5],recent:1,kept:11,center:0,min:5,well:5,inherit:9,person:9,mailing_typ:[9,14],without:0,thi:[0,1,4,5,7,8,9,10,12,13,14],undefin:0,http_code:[1,6,3],latest:11,construct:[0,7,9],identifi:8,paus:9,execut:[1,3],less:0,resp:[4,5,7,8,9,10,13,14],"_post":[1,3],aspect:13,recipient_email:9,source_filenam:8,yet:5,smith:[7,5,8,9,13],"12t09":[7,8],display_nam:10,easi:[10,12],"01t00":8,had:0,littl:1,blog:4,add:[12,1,8,13,3],other:[1,8,9,3,5],curlopt_userpwd:[6,3],import_finish:[8,12,4],schedul:9,els:[1,6,3],save:7,match:[0,7],build:1,sanit:1,applic:[1,6,3],account_id:[1,3,4,5,6,7,8,9,10,12,13,14],disposit:1,crud:[8,13,14],print_r:[6,3],mailing_statu:[9,14],know:[5,4],background:13,parent_mailing_id:[9,14],bit:1,insert:11,emma:[1,5,7,8,9,12,13],like:1,onion:11,deprec:4,arbitrari:8,manual:9,integ:[1,8,14,10,5],public_kei:4,api:[1,2,6,12,3],either:[0,5,7],bunch:0,output:9,group_id:[1,8,12,3],soft:[0,5],manag:[0,1,13,4],import_id:[8,12],www:[5,9],old:7,deal:[8,13],captur:1,arrai:[0,1,3,5,6,7,8,9,10,12,13,14],some:[1,11,5],field_delet:[12,4],certain:12,intern:10,sampl:[1,4,5,7,8,9,10,13,14],elaps:[2,9],home:11,deleted_at:[7,8,13,10,9,14],some_string_field:0,librari:11,bounce_count:[7,8,9,13],confirm:8,broad:12,per:5,send_finish:[9,14],larg:[0,2],condit:7,three:9,network_cod:12,localhost:9,refer:[5,7,8,13,10,9],with_html_bodi:9,who:[0,5],bold:[4,5,7,8,9,10,13,14],event_typ:14,inspect:1,usag:[1,8,12],num_members_ad:8,fulli:11,from:[1,4,8,9,12,13,14],post:[1,3,4,7,8,9,10,12,13,14],group_creat:[12,4],gladi:[7,5,8,13],actual:5,zip:0,groups_upd:8,column:10,page:2,includ:[1,5,7,8,9,10,13],webview:9,disabl:[9,14],block:[1,2],yyyi:5,member_data:[1,3],glob:0,bounc:[0,5],within:0,encod:[9,4],delivery_typ:[5,8],compos:0,webview_shar:5,field_typ:10,active_count:[7,8,9,13],public_webview_url:9,pivot:5,your:[1,4,5,7,8,9,10,13],websit:11,span:[4,5,7,8,9,10,13,14],wai:[1,12],area:1,overus:2,group_nam:[8,12,13,9],support:12,unique_click:5,json:[0,1,3,4,6,7],fast:8,custom:[5,8,11,10],avail:[0,11,4],start:[1,2,8,4],interfac:12,send_at:[9,14],exceed:2,"var":3,interv:[0,14],deliveri:5,head:[6,9,3],form:[1,3,4,6,8,10,14],enough:2,forc:1,forward:[0,4,5,8,12,9],"31st":0,group_typ:[8,9,13],push_offset_unit:14,link:[0,4,5,11,9,14],line:[1,5],realli:1,"true":[0,1,2,3,4,6,7,8,9,10,13,14],archived_t:[9,14],info:4,pull:2,made:1,possibl:[5,8,12],whether:8,maximum:2,tell:12,http403:9,record:[0,7,8],below:[0,1,8,12],http400:[7,8,9],limit:[5,2,8,9],some_array_field:0,otherwis:[10,8],start_t:14,mta:5,connect:[6,3],notif:9,creat:[4,5,7,9,10,12,13,14],"int":5,retriev:[7,1,2,8,9],email_us:[0,5],repres:5,exist:[0,4,5,7,8,10,13],behavior:11,curl:[1,6],lentil:7,probabl:14,echo:[1,3],successfulli:[5,8,9],mailing_subject:12,grp:13,todo:11,when:[8,12,4,9],detail:[1,4,7,8,9,10,13],invalid:[7,8,9],event:[4,7,8,13,12,9,14],field:[0,1,3,4,5,7,8,9,10,11,12,13,14],valid:[5,8,9,13],futur:1,num_skip:8,test:[5,6,7,13,9,14],ignor:8,you:[0,1,2,4,5,7,8,9,10,11,12,13],member_delet:[12,4],member_status_id:[7,5,8,9,13],public_api_kei:[1,6,3],stat:[5,9],claus:[0,7],event_nam:[12,4],e2ma:[1,2,6,3],error_messag:8,param:[9,4],app_messag:[1,3],ella:8,bulk:[1,8],receiv:[0,2,5,8,12,9],heads_up_email:9,longer:9,descript:[4,14],portion:0,opted_out:5,time:[1,2,8,13,5],reply_to:[9,14],resource_url:12,hello:[11,9,14]},objtypes:{"0":"http:get","1":"http:put","2":"http:post","3":"http:delete"},titles:["Search Syntax","Emma API","Pagination","PHP Signup Example","Webhooks","Response","PHP Get Member By Email Example","Searches","Members","Mailings","Fields","Placeholder Syntax","Webhook Usage","Groups","Triggers"],objnames:{"0":"HTTP get","1":"HTTP put","2":"HTTP post","3":"HTTP delete"},filenames:["member_search","index","pagination","php_signup_example","api/external/webhooks","api/external/response","php_get_member_example","api/external/searches","api/external/members","api/external/mailings","api/external/fields","placeholders","webhooks","api/external/groups","api/external/triggers"]}) \ No newline at end of file +Search.setIndex({objects:{"":{"/#account_id/members/#member_id/groups/remove":[8,1,1],"/#account_id/mailings/#mailing_id/winner/#winner_id":[9,2,1],"/#account_id/response/#mailing_id/in_progress":[5,0,1],"/#account_id/members/groups/remove":[8,1,1],"/#account_id/mailings/#mailing_id/searches":[9,0,1],"/#account_id/fields":[10,2,1],"/#account_id/members/#group_id/copy":[8,1,1],"/#account_id/members/status":[8,1,1],"/#account_id/response/#mailing_id/shares/overview":[5,0,1],"/#account_id/webhooks/events":[4,0,1],"/#account_id/members/#member_id/optout":[8,0,1],"/#account_id/webhooks":[4,3,1],"/#account_id/fields/#field_id":[10,3,1],"/#account_id/response/#mailing_id":[5,0,1],"/#account_id/groups/#member_group_id/members/remove":[13,3,1],"/#account_id/searches":[7,2,1],"/#account_id/members/imports":[8,0,1],"/#account_id/forwards/#mailing_id/#member_id":[9,2,1],"/#account_id/response/#mailing_id/customer_share_clicks":[5,0,1],"/#account_id/mailings/#mailing_id/messages/#member_id":[9,0,1],"/#account_id/members/#member_id/mailings":[8,0,1],"/#account_id/groups/#from_group_id/#to_group_id/members/copy":[13,1,1],"/#account_id/triggers":[14,2,1],"/#account_id/triggers/#trigger_id":[14,3,1],"/#account_id/members/delete":[8,1,1],"/#account_id/mailings/#mailing_id/groups":[9,0,1],"/#account_id/response/#mailing_id/forwards":[5,0,1],"/#account_id/members/#member_id":[8,3,1],"/#account_id/triggers/#trigger_id/mailings":[14,0,1],"/#account_id/searches/#search_id/members":[7,0,1],"/#account_id/members/status/:status_from/to/:status_to":[8,1,1],"/#account_id/response/#mailing_id/sends":[5,0,1],"/#account_id/members":[8,3,1],"/#account_id/members/email/:email":[8,0,1],"/#account_id/response/#mailing_id/links":[5,0,1],"/#account_id/searches/#search_id":[7,3,1],"/#account_id/members/imports/#import_id/members":[8,0,1],"/#account_id/fields/#field_id/clear":[10,2,1],"/#account_id/groups/#member_group_id/members":[13,3,1],"/#account_id/members/imports/#import_id":[8,0,1],"/#account_id/response":[5,0,1],"/#account_id/response/#mailing_id/opens":[5,0,1],"/#account_id/members/imports/delete":[8,3,1],"/#account_id/mailings":[9,0,1],"/#account_id/mailings/cancel/#mailing_id":[9,3,1],"/#account_id/mailings/validate":[9,2,1],"/#account_id/response/#mailing_id/deliveries":[5,0,1],"/#account_id/mailings/#mailing_id/members":[9,0,1],"/#account_id/response/#share_id/customer_share":[5,0,1],"/#account_id/webhooks/#webhook_id":[4,3,1],"/#account_id/members/add":[8,2,1],"/#account_id/members/email/optout/:email":[8,1,1],"/#account_id/response/#mailing_id/optouts":[5,0,1],"/#account_id/response/#mailing_id/shares":[5,0,1],"/#account_id/groups/#member_group_id":[13,3,1],"/#account_id/mailings/#mailing_id":[9,3,1],"/#account_id/members/#member_id/groups":[8,3,1],"/#account_id/groups":[13,2,1],"/#account_id/response/#mailing_id/clicks":[5,0,1],"/#account_id/mailings/#mailing_id/headsup":[9,0,1],"/#account_id/response/#mailing_id/signups":[5,0,1],"/#account_id/response/#mailing_id/customer_shares":[5,0,1]}},terms:{all:[0,1,4,5,8,9,10,11,12,13,14],code:[0,1,6,3],change_typ:8,queri:[0,2,4],month:[0,5,9,14],four:[0,5],mile:0,least:0,field_creat:[12,4],link_target:[5,9],content:[11,6,9,3],privat:1,specif:[8,9,4],friendli:5,send:[1,9,4,3,5],customer_share_click:5,those:[5,12],group_upd:[12,4],sent:[5,8,12,9,14],curl_clos:[6,3],brown:[7,8],digit:5,everi:0,string:[0,4,5,7,8,9,10,12,13,14],fals:[3,4,5,6,7,8,9,10,13,14],webhook:[1,12,4],mailing_status:9,trigger_id:14,curlopt_post:3,webview_share_click:5,affect:[7,8],member_add:[12,4],create_mail:9,new_boolean:10,foo:0,level:1,group_delet:[12,4],list:[0,1,2,4,5,7,8,9,10,11,12,13,14],upload:8,iter:2,"try":8,item:2,plaintext_onli:[9,14],div:[4,5,7,8,9,10,13,14],survey_id:14,pleas:[1,8,11,9],prevent:2,work:[1,4],ten:0,sync:10,sign:[0,5,4],past:1,second:[0,7,14],follow:[0,1,4,5,7,9,11,13],further:1,durat:9,click:[0,4,5,7,8,12,14],append:2,bold:[4,5,7,8,9,10,13,14],even:10,what:1,hide:[4,5,7,8,9,10,13,14],appear:1,from_group_id:13,section:1,current:[8,12,9],delet:[1,4,7,8,9,10,12,13,14],"new":[1,4,5,7,8,9,10,11,13,14],net:[1,2,6,3],delivery_t:8,method:[5,8,13,4,9],can:[0,1,2,4,5,7,8,9,11,12,13],widget:[7,10,8,9,13],hash:0,datematch:0,displai:10,variat:9,gener:[0,8,12,14],onli:[5,8],here:[0,1,3,5,6,8],bodi:9,let:[1,4,10],address:[0,1,8,6,9],along:8,sinc:8,valu:[0,5,7,8,10,11],field_upd:[12,4],search:[0,1,9,7],survei:14,sender:[9,14],larger:2,queue:5,prior:9,action:[0,8],chang:[8,4],campaign:5,newbi:5,appli:[7,14],prefer:0,myemma:[4,5,7,8,9,13],filenam:8,customer_shar:5,"boolean":[0,1,5,7,8,9,10,13,14],curlopt_postfield:3,total:5,jone:[7,5,8,13],select:10,newslett:[7,8,13],describ:7,would:[0,1],regist:4,two:[0,5],next:[0,1],create_webhook:4,few:[5,8],call:[1,2,3,4,6,8,12],criteria:7,member_add_to_group:[12,4],type:[1,3,4,5,6,7,10,9,14],until:2,more:[0,4,7,8,9,13],peopl:5,relat:[1,8,11,9],about:[10,8,12,4,9],notic:8,thide:[4,5,7,8,9,10,13,14],flag:[5,7,8,10,9,14],exce:2,indic:8,examin:1,particular:[1,4,5,8,10,12,9],in_progress:5,origin:9,must:[0,7,13,10],none:9,endpoint:[1,4,5,7,8,9,10,13,14],join:[0,7],hour:0,member_sinc:[0,5,7,8,9,13],uniqu:5,histori:8,soup:7,remain:[0,9],archiv:[5,9],member_optout:[12,4],drill:5,control:[1,11,9],quickstart:1,give:5,forward_mailing_id:5,email_domain:[0,5],share:[0,5,8,12,4],accept:[0,5,7,8,9,10,11,13,14],total_click:5,tag:[11,9],want:[1,12,13,5],occur:[7,12],some_numeric_field:0,delai:14,alwai:0,webhook_event_id:4,cours:1,end:[2,8],first_nam:[1,3,5,7,8,9,10,11,13,14],started_or_finish:[9,14],anoth:[9,13],get:[1,4,5,6,7,8,9,10,13,14],message_open:[12,4],html_bodi:[9,14],share_statu:5,push_offset:14,del_statu:5,tild:5,num_members_upd:8,simpl:0,chri:9,pizza:[7,8],map:0,autent:1,referenc:7,xxxx:6,sundai:0,membership:13,taco:[7,5,8,9,13],mai:12,multipl:[10,8],data:[1,3,4,5,10,12],welcom:11,add_onli:8,"short":0,json_encod:3,optout:[5,8,12,13],num_dupl:8,favorit:10,correspond:[0,1],greet:11,predic:[0,1],issu:[1,10],"12t11":[7,5,8,9,13],combin:7,allow:[0,7,8],some_zipcode_field:0,signed_up:5,order:[5,10],michel:[8,9],mailing_nam:5,checkbox:10,fields_upd:8,over:2,becaus:12,buyer:[7,8,9,13],comma:[9,13],is_dis:14,vari:8,paramet:[2,4,5,7,8,9,10,13,14],widget_typ:10,style:[0,4,5,7,8,9,10,13,14],group:[0,1,3,4,7,8,9,12,13,14],curl_setopt:[6,3],how:[7,1,2,4],import_start:8,better:[13,14],platform:1,pend:[1,9],mailing_list:9,onc:9,mail:[0,1,4,5,8,11,12,9,14],hidden:13,main:1,might:[1,4],link_nam:[5,9],them:[8,9],"return":[0,1,4,5,7,8,9,10,12,13,14],greater:[0,8],thei:[0,9],food:10,timestamp:[0,5,12,9,10],spell:4,dai:0,auth:1,instead:[12,2,8],now:5,down:5,term:[0,1],alex:9,name:[0,4,5,7,8,9,10,11,13,14],edit:[7,1,14,10],curl_getinfo:[6,3],authent:[1,6,4,3],successufulli:4,separ:[1,9,13],each:[1,2,5,9,12,11,13],found:[8,9,4,14],updat:[4,7,8,9,10,12,13,14],mean:0,status:[8,9],domain:0,shortcut_nam:10,weight:[4,5,7,8,9,10,13,14],resum:9,individu:[1,8],hard:[0,5],last_nam:[1,3,5,7,8,9,10,11,13,14],"05t15":5,birthdai:[10,14],expect:1,year:[0,5,9,14],our:[1,11,12,4,14],happen:[1,4,5],extract:11,short_display_nam:10,special:[0,7,8,13],out:[0,1,4,5,7,8,10,13],variabl:[1,6,3],message_shar:[12,4],network:[5,12],private_api_kei:[1,6,3],check_multipl:10,categori:1,rel:0,print:6,correct:10,statist:8,benjamin:8,qualifi:11,insid:1,advanc:0,contain:[0,5,7,13,10,9],differ:0,standard:[5,9],status_from:8,base:[5,8],recipient_search:9,dictionari:8,put:[4,7,8,9,10,13,14],"13t23":[7,5,8],visit:11,could:1,omit:5,success:[1,3,7,8,9,13],filter:[0,1,7],search_id:7,pagin:[1,2],member_id:[5,7,8,9,12,13],summari:[1,5],assign:9,first:[0,1,10,5],oper:[0,1,7,14],rang:5,notifi:12,directli:0,curlopt_ssl_verifyp:[6,3],curl_init:[6,3],number:[5,2,13,3,10],placehold:[1,11],date:[0,5,8,10,11,14],unlik:9,alreadi:[10,8,9,13],done:8,plaintext_pref:[7,8,9,13],oppos:8,open:[0,3,4,5,6,7,8,12],payload:4,fanci:5,size:2,given:[0,8,9,4],"long":10,script:1,associ:[1,8,9,4,5],system:[8,12,4,14],messag:[4,5,8,12,11,9,14],attach:11,friend:11,curlinfo_http_cod:[6,3],shell:0,option:[0,5,7,8,9,10,13,14],especi:8,signup:[0,1,3,4,5,8,12,14],copi:[8,13],member_upd:[12,4],specifi:[0,2,7,8,10,11,9,14],curl_exec:[6,3],curlopt_httphead:[6,3],member_signup:[12,4],create_search:7,part:[0,9],enclos:11,than:[0,1,2,3,12,13],with_plaintext:9,"02t10":[5,8],"02t11":[5,8],"02t13":5,nathan:8,whenev:8,provid:[1,5,8,12,9,14],remov:[12,8,13,4],mailing_start:4,rate:2,structur:7,charact:9,greg:8,trackabl:11,were:5,minut:0,danc:1,error_count:[7,8,9,13],pre:[4,5,7,8,9,10,13,14],cleaner:1,sai:0,share_id:5,signup_form_id:[0,8,12,9,14],plaintext:[5,9,14],pass:[1,3],ani:[0,1,2,7,8,9],have:[0,5,8,12,9],tabl:5,seen:5,"null":[7,8,13,10,9,14],kevin:[9,14],signup_mail:0,caus:14,inform:[1,4,6,8,9,10,13],object_id:14,note:[1,8,9,4],also:[0,4,5,7,8,9,11,13],exampl:[0,1,3,5,6,7,11],take:[0,4],which:[0,1,4,8,10,12,9,14],some_number_field:0,singl:[0,1,3,4,5,8,10,12,13],excit:11,sure:1,delete_memb:13,normal:9,parent_mail:14,recipient_count:[5,9,14],previou:9,field_id:[10,12,14],last_run_at:7,most:14,pair:11,"class":[4,5,7,8,9,10,13,14],member_group_id:[8,9,13],mcconnel:[9,14],url:[1,3,4,5,6,12],mailing_finish:[12,4],clear:10,request:[1,2,3],doe:[0,5,7,8,10,13],member_status_upd:[12,4],declar:9,tech:4,determin:1,dataset:10,dow:0,recipi:9,"6db0cc7e6fdb2da589b65f29d90c96b6":9,show:[4,5,7,8,9,10,11,13,14],text:[10,11,12],radiu:0,syntax:[0,1,11,9],radio:10,font:[4,5,7,8,9,10,13,14],fine:9,find:[1,6,5],status_to:8,toast:[7,5,8,13],access:[1,5],giant:12,just:[0,9],pretti:8,column_ord:10,explain:[0,1],winner:9,activ:[1,5,7,8,13,9],figur:1,should:[1,2,3,7,8,11,9],templat:[11,14],share_count:5,count:[5,2,3],variou:[8,13],confirmed_opt_in:[7,8,9,13],familiar:1,express:0,account:[1,4,5,7,8,10,13,14],cannot:[8,9,4],progress:9,report:[10,8],requir:[1,7,8,10,11,9],object:[5,13],favorite_food:[5,7,8,13,10,9],bar:0,organ:1,include_archiv:[5,9],"public":1,"default":[5,11,13,4,9],ref_member_id:5,message_share_click:[12,4],through:[1,8,4],where:[0,1,8,11,7],view:1,set:[0,1,2,3,6,8,9,12,13],link_id:[0,5,12,9,14],see:[7,1,8],result:[0,1,2,5,8,9],respons:[0,1,2,4,5,7,8,9,10,13,14],fail:[5,9,4],themselv:2,member_field:[0,7],xxxxx:6,subject:[8,12,9,14],statu:[1,4,5,7,8,9,12,13],fancyonion:11,kei:[0,1,8,11,4],is_schedul:9,message_forward:[12,4],databas:8,user:[0,8,9,13],last_modified_at:[7,8,9,13],addresse:5,written:1,between:[0,7,2],"import":[1,8,12,4,10],subscript:[1,3],entiti:1,curlopt_url:[6,3],email:[0,1,3,5,6,7,8,9,13],wide:14,extend:1,numer:10,http404:[4,5,7,8,9,10,13,14],job:13,entir:[0,8],share_click:5,to_group_id:13,curlopt_returntransf:[6,3],addit:[0,1,8,9,11,13],member_remove_from_group:[12,4],send_start:[0,9,14],protect:1,accident:2,last:[0,5,10],delimit:5,pertain:5,message_click:[12,4],against:0,audienc:[1,8,9],mang:0,http500:14,seri:5,com:[4,5,6,7,8,9,11,13],zip_code_field:0,"03t15":[7,5,8,13],point:1,toni:[7,8],overview:[0,1,11,12,5],period:1,winner_id:9,colon:[7,11],optout_count:[7,8,9,13],suppli:9,cancel:9,tuesdai:0,duplic:5,quit:[5,8],user_id:4,recur:14,headsup:9,addition:[1,2],due:5,been:[1,8,10,5],mark:[8,9],whom:9,tshow:[4,5,7,8,9,10,13,14],trigger:[1,4,5,7,8,9,10,12,13,14],unsubscrib:0,treat:8,interest:[10,4],basic:[0,1,4,8,13,14],monthli:[7,8,13],blob:4,mailing_mailing_id:5,mailing_id:[0,5,8,12,9,14],fire:[8,4,14],xxx:[1,3],argument:[0,5],link_ord:[5,9],input:1,present:7,clicked_uniqu:5,"case":[1,8],look:[1,14,10],frozen:9,easier:12,email_error:[7,8,9,13],defin:[0,10,8,9],"while":0,outcom:5,abov:[0,1,8,7],error:[1,3,6,8,10,13],loop:8,opt:[0,4,5,7,8,13],readi:9,deliv:5,recipient_group:9,equal:0,itself:0,new_statu:12,webhook_id:4,recipient_memb:9,perform:8,make:[1,12,6,10],belong:[0,8,4],same:4,check:[8,6,9],member:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14],handl:1,html:9,split:9,document:[1,11,12],complet:[1,3,4,6,8,9],week:0,finish:[5,12,4],http:[1,2,3,4,5,6,11,9],href:[4,5,7,8,9,10,13,14],nest:0,someon:4,rais:[4,5,7,8,9,10,13,14],initi:[10,9],php:[1,6,3],bob:[7,5],recent:1,kept:11,center:0,min:5,well:5,inherit:9,person:9,mailing_typ:[9,14],without:0,thi:[0,1,4,5,7,8,9,10,12,13,14],undefin:0,http_code:[1,6,3],latest:11,construct:[0,7,9],identifi:8,paus:9,execut:[1,3],less:0,resp:[4,5,7,8,9,10,13,14],"_post":[1,3],aspect:13,recipient_email:9,source_filenam:8,yet:5,smith:[7,5,8,9,13],"12t09":[7,8],display_nam:10,easi:[10,12],"01t00":8,had:0,littl:1,blog:4,add:[12,1,8,13,3],other:[1,8,9,3,5],curlopt_userpwd:[6,3],import_finish:[8,12,4],schedul:9,els:[1,6,3],save:7,match:[0,7],build:1,sanit:1,applic:[1,6,3],account_id:[1,3,4,5,6,7,8,9,10,12,13,14],disposit:1,crud:[8,13,14],print_r:[6,3],mailing_statu:[9,14],know:[5,4],background:13,parent_mailing_id:[9,14],bit:1,insert:11,emma:[1,5,7,8,9,12,13],like:1,onion:11,deprec:4,arbitrari:8,manual:9,integ:[1,8,14,10,5],public_kei:4,api:[1,2,6,12,3],either:[0,5,7],bunch:0,output:9,group_id:[1,8,12,3],soft:[0,5],manag:[0,1,13,4],import_id:[8,12],www:[5,9],old:7,deal:[8,13],captur:1,arrai:[0,1,3,5,6,7,8,9,10,12,13,14],some:[1,11,5],field_delet:[12,4],certain:12,intern:10,sampl:[1,4,5,7,8,9,10,13,14],elaps:[2,9],home:11,deleted_at:[7,8,13,10,9,14],some_string_field:0,librari:11,bounce_count:[7,8,9,13],confirm:8,broad:12,per:5,send_finish:[9,14],larg:[0,2],condit:7,three:9,network_cod:12,localhost:9,refer:[5,7,8,13,10,9],with_html_bodi:9,who:[0,5],"10t12":[7,14],event_typ:14,inspect:1,usag:[1,8,12],num_members_ad:8,fulli:11,from:[1,4,8,9,12,13,14],post:[1,3,4,7,8,9,10,12,13,14],group_creat:[12,4],gladi:[7,5,8,13],actual:5,zip:0,groups_upd:8,column:10,page:2,includ:[1,5,7,8,9,10,13],webview:9,disabl:[9,14],block:[1,2],yyyi:5,member_data:[1,3],glob:0,bounc:[0,5],within:0,encod:[9,4],delivery_typ:[5,8],compos:0,webview_shar:5,field_typ:10,active_count:[7,8,9,13],public_webview_url:9,pivot:5,your:[1,4,5,7,8,9,10,13],websit:11,span:[4,5,7,8,9,10,13,14],wai:[1,12],area:1,overus:2,group_nam:[8,12,13,9],support:12,unique_click:5,json:[0,1,3,4,6,7],fast:8,custom:[5,8,11,10],avail:[0,11,4],start:[1,2,8,4],interfac:12,send_at:[9,14],exceed:2,"var":3,interv:[0,14],deliveri:5,head:[6,9,3],form:[1,3,4,6,8,10,14],enough:2,forc:1,forward:[0,4,5,8,12,9],"31st":0,group_typ:[8,9,13],push_offset_unit:14,link:[0,4,5,11,9,14],line:[1,5],realli:1,"true":[0,1,2,3,4,6,7,8,9,10,13,14],archived_t:[9,14],info:4,pull:2,made:1,possibl:[5,8,12],whether:8,maximum:2,tell:12,http403:9,record:[0,7,8],below:[0,1,8,12],http400:[7,8,9],limit:[5,2,8,9],some_array_field:0,otherwis:[10,8],start_t:14,mta:5,connect:[6,3],notif:9,creat:[4,5,7,9,10,12,13,14],"int":5,retriev:[7,1,2,8,9],email_us:[0,5],repres:5,exist:[0,4,5,7,8,10,13],behavior:11,curl:[1,6],lentil:7,probabl:14,echo:[1,3],successfulli:[5,8,9],mailing_subject:12,grp:13,todo:11,when:[8,12,4,9],detail:[1,4,7,8,9,10,13],invalid:[7,8,9],event:[4,7,8,13,12,9,14],field:[0,1,3,4,5,7,8,9,10,11,12,13,14],valid:[5,8,9,13],futur:1,num_skip:8,test:[5,6,7,13,9,14],ignor:8,you:[0,1,2,4,5,7,8,9,10,11,12,13],member_delet:[12,4],member_status_id:[7,5,8,9,13],public_api_kei:[1,6,3],stat:[5,9],claus:[0,7],event_nam:[12,4],e2ma:[1,2,6,3],error_messag:8,param:[9,4],app_messag:[1,3],ella:8,bulk:[1,8],receiv:[0,2,5,8,12,9],heads_up_email:9,longer:9,descript:[4,14],portion:0,opted_out:5,time:[1,2,8,13,5],reply_to:[9,14],resource_url:12,hello:[11,9,14]},objtypes:{"0":"http:get","1":"http:put","2":"http:post","3":"http:delete"},titles:["Search Syntax","Emma API","Pagination","PHP Signup Example","Webhooks","Response","PHP Get Member By Email Example","Searches","Members","Mailings","Fields","Placeholder Syntax","Webhook Usage","Groups","Triggers"],objnames:{"0":"HTTP get","1":"HTTP put","2":"HTTP post","3":"HTTP delete"},filenames:["member_search","index","pagination","php_signup_example","api/external/webhooks","api/external/response","php_get_member_example","api/external/searches","api/external/members","api/external/mailings","api/external/fields","placeholders","webhooks","api/external/groups","api/external/triggers"]}) \ No newline at end of file diff --git a/webhooks.html b/webhooks.html index 034ee57..cee1937 100644 --- a/webhooks.html +++ b/webhooks.html @@ -507,7 +507,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 09, 2013 at 04:40 PM. + Last updated on Jan 10, 2013 at 12:23 PM. </div> </body> </html> \ No newline at end of file From f4f961c00cd0a96bf65c1ae16eb5ff8c08ee9492 Mon Sep 17 00:00:00 2001 From: Hernan Ciudad <hernan@myemma.com> Date: Thu, 10 Jan 2013 16:48:55 -0600 Subject: [PATCH 021/219] Update audience documentation. --- api/external/fields.html | 2 +- api/external/groups.html | 2 +- api/external/mailings.html | 2 +- api/external/members.html | 2 +- api/external/response.html | 2 +- api/external/searches.html | 4 ++-- api/external/triggers.html | 8 ++++---- api/external/webhooks.html | 2 +- genindex.html | 2 +- http-routingtable.html | 2 +- index.html | 2 +- member_search.html | 2 +- pagination.html | 2 +- php_get_member_example.html | 2 +- php_signup_example.html | 2 +- placeholders.html | 2 +- search.html | 2 +- searchindex.js | 2 +- webhooks.html | 2 +- 19 files changed, 23 insertions(+), 23 deletions(-) diff --git a/api/external/fields.html b/api/external/fields.html index cdfa5b2..ccbb566 100644 --- a/api/external/fields.html +++ b/api/external/fields.html @@ -421,7 +421,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 10, 2013 at 12:23 PM. + Last updated on Jan 10, 2013 at 04:48 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/groups.html b/api/external/groups.html index 4121809..a2dd1fe 100644 --- a/api/external/groups.html +++ b/api/external/groups.html @@ -713,7 +713,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 10, 2013 at 12:23 PM. + Last updated on Jan 10, 2013 at 04:48 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/mailings.html b/api/external/mailings.html index ad46815..834219d 100644 --- a/api/external/mailings.html +++ b/api/external/mailings.html @@ -823,7 +823,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 10, 2013 at 12:23 PM. + Last updated on Jan 10, 2013 at 04:48 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/members.html b/api/external/members.html index 7059a4a..21ddb98 100644 --- a/api/external/members.html +++ b/api/external/members.html @@ -1238,7 +1238,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 10, 2013 at 12:23 PM. + Last updated on Jan 10, 2013 at 04:48 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/response.html b/api/external/response.html index 3256a71..32bedaa 100644 --- a/api/external/response.html +++ b/api/external/response.html @@ -1035,7 +1035,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 10, 2013 at 12:23 PM. + Last updated on Jan 10, 2013 at 04:48 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/searches.html b/api/external/searches.html index f4e6f56..e11c401 100644 --- a/api/external/searches.html +++ b/api/external/searches.html @@ -201,7 +201,7 @@ <h1>Searches<a class="headerlink" href="#searches" title="Permalink to this head "name": "Test Search", "criteria": "[\"or\", [\"group\", \"eq\", \"Monthly Newsletter\"],[\"group\", \"eq\", \"Widget Buyers\"]]", "deleted_at": null, - "last_run_at": "@D:2013-01-10T12:23:20", + "last_run_at": "@D:2013-01-10T16:48:50", "active_count": 2, "account_id": 100 } @@ -517,7 +517,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 10, 2013 at 12:23 PM. + Last updated on Jan 10, 2013 at 04:48 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/triggers.html b/api/external/triggers.html index 723667c..fe97c29 100644 --- a/api/external/triggers.html +++ b/api/external/triggers.html @@ -149,7 +149,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": 203, "push_offset_units": "0:-14:0:0", - "start_ts": "@D:2013-01-10T12:23:17", + "start_ts": "@D:2013-01-10T16:48:47", "trigger_id": 100, "signups": null, "push_offset": "@I:-1209600.0", @@ -190,7 +190,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": null, "push_offset_units": "0:3:0:0", - "start_ts": "@D:2013-01-10T12:23:17", + "start_ts": "@D:2013-01-10T16:48:47", "trigger_id": 101, "signups": [ 1, @@ -329,7 +329,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": 203, "push_offset_units": "0:-14:0:0", - "start_ts": "@D:2013-01-10T12:23:17", + "start_ts": "@D:2013-01-10T16:48:47", "trigger_id": 100, "signups": null, "push_offset": "@I:-1209600.0", @@ -505,7 +505,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 10, 2013 at 12:23 PM. + Last updated on Jan 10, 2013 at 04:48 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/webhooks.html b/api/external/webhooks.html index bbf9639..5262391 100644 --- a/api/external/webhooks.html +++ b/api/external/webhooks.html @@ -494,7 +494,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 10, 2013 at 12:23 PM. + Last updated on Jan 10, 2013 at 04:48 PM. </div> </body> </html> \ No newline at end of file diff --git a/genindex.html b/genindex.html index 00b899a..c0e5c24 100644 --- a/genindex.html +++ b/genindex.html @@ -144,7 +144,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 10, 2013 at 12:23 PM. + Last updated on Jan 10, 2013 at 04:48 PM. </div> </body> </html> \ No newline at end of file diff --git a/http-routingtable.html b/http-routingtable.html index edfab1d..f4c7e2e 100644 --- a/http-routingtable.html +++ b/http-routingtable.html @@ -607,7 +607,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 10, 2013 at 12:23 PM. + Last updated on Jan 10, 2013 at 04:48 PM. </div> </body> </html> \ No newline at end of file diff --git a/index.html b/index.html index cbadf3d..18de6fa 100644 --- a/index.html +++ b/index.html @@ -311,7 +311,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 10, 2013 at 12:23 PM. + Last updated on Jan 10, 2013 at 04:48 PM. </div> </body> </html> \ No newline at end of file diff --git a/member_search.html b/member_search.html index 46d569d..c5c82e9 100644 --- a/member_search.html +++ b/member_search.html @@ -256,7 +256,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 10, 2013 at 12:23 PM. + Last updated on Jan 10, 2013 at 04:48 PM. </div> </body> </html> \ No newline at end of file diff --git a/pagination.html b/pagination.html index 40e91a9..e6cd0e5 100644 --- a/pagination.html +++ b/pagination.html @@ -168,7 +168,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 10, 2013 at 12:23 PM. + Last updated on Jan 10, 2013 at 04:48 PM. </div> </body> </html> \ No newline at end of file diff --git a/php_get_member_example.html b/php_get_member_example.html index 036c056..7b5c41f 100644 --- a/php_get_member_example.html +++ b/php_get_member_example.html @@ -183,7 +183,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 10, 2013 at 12:23 PM. + Last updated on Jan 10, 2013 at 04:48 PM. </div> </body> </html> \ No newline at end of file diff --git a/php_signup_example.html b/php_signup_example.html index 1876f1a..1357325 100644 --- a/php_signup_example.html +++ b/php_signup_example.html @@ -205,7 +205,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 10, 2013 at 12:23 PM. + Last updated on Jan 10, 2013 at 04:48 PM. </div> </body> </html> \ No newline at end of file diff --git a/placeholders.html b/placeholders.html index 36e688f..8d03fbc 100644 --- a/placeholders.html +++ b/placeholders.html @@ -183,7 +183,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 10, 2013 at 12:23 PM. + Last updated on Jan 10, 2013 at 04:48 PM. </div> </body> </html> \ No newline at end of file diff --git a/search.html b/search.html index db7ec08..2fb2b2e 100644 --- a/search.html +++ b/search.html @@ -153,7 +153,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 10, 2013 at 12:23 PM. + Last updated on Jan 10, 2013 at 04:48 PM. </div> </body> </html> \ No newline at end of file diff --git a/searchindex.js b/searchindex.js index b502c3c..c76bcf0 100644 --- a/searchindex.js +++ b/searchindex.js @@ -1 +1 @@ -Search.setIndex({objects:{"":{"/#account_id/members/#member_id/groups/remove":[8,1,1],"/#account_id/mailings/#mailing_id/winner/#winner_id":[9,2,1],"/#account_id/response/#mailing_id/in_progress":[5,0,1],"/#account_id/members/groups/remove":[8,1,1],"/#account_id/mailings/#mailing_id/searches":[9,0,1],"/#account_id/fields":[10,2,1],"/#account_id/members/#group_id/copy":[8,1,1],"/#account_id/members/status":[8,1,1],"/#account_id/response/#mailing_id/shares/overview":[5,0,1],"/#account_id/webhooks/events":[4,0,1],"/#account_id/members/#member_id/optout":[8,0,1],"/#account_id/webhooks":[4,3,1],"/#account_id/fields/#field_id":[10,3,1],"/#account_id/response/#mailing_id":[5,0,1],"/#account_id/groups/#member_group_id/members/remove":[13,3,1],"/#account_id/searches":[7,2,1],"/#account_id/members/imports":[8,0,1],"/#account_id/forwards/#mailing_id/#member_id":[9,2,1],"/#account_id/response/#mailing_id/customer_share_clicks":[5,0,1],"/#account_id/mailings/#mailing_id/messages/#member_id":[9,0,1],"/#account_id/members/#member_id/mailings":[8,0,1],"/#account_id/groups/#from_group_id/#to_group_id/members/copy":[13,1,1],"/#account_id/triggers":[14,2,1],"/#account_id/triggers/#trigger_id":[14,3,1],"/#account_id/members/delete":[8,1,1],"/#account_id/mailings/#mailing_id/groups":[9,0,1],"/#account_id/response/#mailing_id/forwards":[5,0,1],"/#account_id/members/#member_id":[8,3,1],"/#account_id/triggers/#trigger_id/mailings":[14,0,1],"/#account_id/searches/#search_id/members":[7,0,1],"/#account_id/members/status/:status_from/to/:status_to":[8,1,1],"/#account_id/response/#mailing_id/sends":[5,0,1],"/#account_id/members":[8,3,1],"/#account_id/members/email/:email":[8,0,1],"/#account_id/response/#mailing_id/links":[5,0,1],"/#account_id/searches/#search_id":[7,3,1],"/#account_id/members/imports/#import_id/members":[8,0,1],"/#account_id/fields/#field_id/clear":[10,2,1],"/#account_id/groups/#member_group_id/members":[13,3,1],"/#account_id/members/imports/#import_id":[8,0,1],"/#account_id/response":[5,0,1],"/#account_id/response/#mailing_id/opens":[5,0,1],"/#account_id/members/imports/delete":[8,3,1],"/#account_id/mailings":[9,0,1],"/#account_id/mailings/cancel/#mailing_id":[9,3,1],"/#account_id/mailings/validate":[9,2,1],"/#account_id/response/#mailing_id/deliveries":[5,0,1],"/#account_id/mailings/#mailing_id/members":[9,0,1],"/#account_id/response/#share_id/customer_share":[5,0,1],"/#account_id/webhooks/#webhook_id":[4,3,1],"/#account_id/members/add":[8,2,1],"/#account_id/members/email/optout/:email":[8,1,1],"/#account_id/response/#mailing_id/optouts":[5,0,1],"/#account_id/response/#mailing_id/shares":[5,0,1],"/#account_id/groups/#member_group_id":[13,3,1],"/#account_id/mailings/#mailing_id":[9,3,1],"/#account_id/members/#member_id/groups":[8,3,1],"/#account_id/groups":[13,2,1],"/#account_id/response/#mailing_id/clicks":[5,0,1],"/#account_id/mailings/#mailing_id/headsup":[9,0,1],"/#account_id/response/#mailing_id/signups":[5,0,1],"/#account_id/response/#mailing_id/customer_shares":[5,0,1]}},terms:{all:[0,1,4,5,8,9,10,11,12,13,14],code:[0,1,6,3],change_typ:8,queri:[0,2,4],month:[0,5,9,14],four:[0,5],mile:0,least:0,field_creat:[12,4],link_target:[5,9],content:[11,6,9,3],privat:1,specif:[8,9,4],friendli:5,send:[1,9,4,3,5],customer_share_click:5,those:[5,12],group_upd:[12,4],sent:[5,8,12,9,14],curl_clos:[6,3],brown:[7,8],digit:5,everi:0,string:[0,4,5,7,8,9,10,12,13,14],fals:[3,4,5,6,7,8,9,10,13,14],webhook:[1,12,4],mailing_status:9,trigger_id:14,curlopt_post:3,webview_share_click:5,affect:[7,8],member_add:[12,4],create_mail:9,new_boolean:10,foo:0,level:1,group_delet:[12,4],list:[0,1,2,4,5,7,8,9,10,11,12,13,14],upload:8,iter:2,"try":8,item:2,plaintext_onli:[9,14],div:[4,5,7,8,9,10,13,14],survey_id:14,pleas:[1,8,11,9],prevent:2,work:[1,4],ten:0,sync:10,sign:[0,5,4],past:1,second:[0,7,14],follow:[0,1,4,5,7,9,11,13],further:1,durat:9,click:[0,4,5,7,8,12,14],append:2,bold:[4,5,7,8,9,10,13,14],even:10,what:1,hide:[4,5,7,8,9,10,13,14],appear:1,from_group_id:13,section:1,current:[8,12,9],delet:[1,4,7,8,9,10,12,13,14],"new":[1,4,5,7,8,9,10,11,13,14],net:[1,2,6,3],delivery_t:8,method:[5,8,13,4,9],can:[0,1,2,4,5,7,8,9,11,12,13],widget:[7,10,8,9,13],hash:0,datematch:0,displai:10,variat:9,gener:[0,8,12,14],onli:[5,8],here:[0,1,3,5,6,8],bodi:9,let:[1,4,10],address:[0,1,8,6,9],along:8,sinc:8,valu:[0,5,7,8,10,11],field_upd:[12,4],search:[0,1,9,7],survei:14,sender:[9,14],larger:2,queue:5,prior:9,action:[0,8],chang:[8,4],campaign:5,newbi:5,appli:[7,14],prefer:0,myemma:[4,5,7,8,9,13],filenam:8,customer_shar:5,"boolean":[0,1,5,7,8,9,10,13,14],curlopt_postfield:3,total:5,jone:[7,5,8,13],select:10,newslett:[7,8,13],describ:7,would:[0,1],regist:4,two:[0,5],next:[0,1],create_webhook:4,few:[5,8],call:[1,2,3,4,6,8,12],criteria:7,member_add_to_group:[12,4],type:[1,3,4,5,6,7,10,9,14],until:2,more:[0,4,7,8,9,13],peopl:5,relat:[1,8,11,9],about:[10,8,12,4,9],notic:8,thide:[4,5,7,8,9,10,13,14],flag:[5,7,8,10,9,14],exce:2,indic:8,examin:1,particular:[1,4,5,8,10,12,9],in_progress:5,origin:9,must:[0,7,13,10],none:9,endpoint:[1,4,5,7,8,9,10,13,14],join:[0,7],hour:0,member_sinc:[0,5,7,8,9,13],uniqu:5,histori:8,soup:7,remain:[0,9],archiv:[5,9],member_optout:[12,4],drill:5,control:[1,11,9],quickstart:1,give:5,forward_mailing_id:5,email_domain:[0,5],share:[0,5,8,12,4],accept:[0,5,7,8,9,10,11,13,14],total_click:5,tag:[11,9],want:[1,12,13,5],occur:[7,12],some_numeric_field:0,delai:14,alwai:0,webhook_event_id:4,cours:1,end:[2,8],first_nam:[1,3,5,7,8,9,10,11,13,14],started_or_finish:[9,14],anoth:[9,13],get:[1,4,5,6,7,8,9,10,13,14],message_open:[12,4],html_bodi:[9,14],share_statu:5,push_offset:14,del_statu:5,tild:5,num_members_upd:8,simpl:0,chri:9,pizza:[7,8],map:0,autent:1,referenc:7,xxxx:6,sundai:0,membership:13,taco:[7,5,8,9,13],mai:12,multipl:[10,8],data:[1,3,4,5,10,12],welcom:11,add_onli:8,"short":0,json_encod:3,optout:[5,8,12,13],num_dupl:8,favorit:10,correspond:[0,1],greet:11,predic:[0,1],issu:[1,10],"12t11":[7,5,8,9,13],combin:7,allow:[0,7,8],some_zipcode_field:0,signed_up:5,order:[5,10],michel:[8,9],mailing_nam:5,checkbox:10,fields_upd:8,over:2,becaus:12,buyer:[7,8,9,13],comma:[9,13],is_dis:14,vari:8,paramet:[2,4,5,7,8,9,10,13,14],widget_typ:10,style:[0,4,5,7,8,9,10,13,14],group:[0,1,3,4,7,8,9,12,13,14],curl_setopt:[6,3],how:[7,1,2,4],import_start:8,better:[13,14],platform:1,pend:[1,9],mailing_list:9,onc:9,mail:[0,1,4,5,8,11,12,9,14],hidden:13,main:1,might:[1,4],link_nam:[5,9],them:[8,9],"return":[0,1,4,5,7,8,9,10,12,13,14],greater:[0,8],thei:[0,9],food:10,timestamp:[0,5,12,9,10],spell:4,dai:0,auth:1,instead:[12,2,8],now:5,down:5,term:[0,1],alex:9,name:[0,4,5,7,8,9,10,11,13,14],edit:[7,1,14,10],curl_getinfo:[6,3],authent:[1,6,4,3],successufulli:4,separ:[1,9,13],each:[1,2,5,9,12,11,13],found:[8,9,4,14],updat:[4,7,8,9,10,12,13,14],mean:0,status:[8,9],domain:0,shortcut_nam:10,weight:[4,5,7,8,9,10,13,14],resum:9,individu:[1,8],hard:[0,5],last_nam:[1,3,5,7,8,9,10,11,13,14],"05t15":5,birthdai:[10,14],expect:1,year:[0,5,9,14],our:[1,11,12,4,14],happen:[1,4,5],extract:11,short_display_nam:10,special:[0,7,8,13],out:[0,1,4,5,7,8,10,13],variabl:[1,6,3],message_shar:[12,4],network:[5,12],private_api_kei:[1,6,3],check_multipl:10,categori:1,rel:0,print:6,correct:10,statist:8,benjamin:8,qualifi:11,insid:1,advanc:0,contain:[0,5,7,13,10,9],differ:0,standard:[5,9],status_from:8,base:[5,8],recipient_search:9,dictionari:8,put:[4,7,8,9,10,13,14],"13t23":[7,5,8],visit:11,could:1,omit:5,success:[1,3,7,8,9,13],filter:[0,1,7],search_id:7,pagin:[1,2],member_id:[5,7,8,9,12,13],summari:[1,5],assign:9,first:[0,1,10,5],oper:[0,1,7,14],rang:5,notifi:12,directli:0,curlopt_ssl_verifyp:[6,3],curl_init:[6,3],number:[5,2,13,3,10],placehold:[1,11],date:[0,5,8,10,11,14],unlik:9,alreadi:[10,8,9,13],done:8,plaintext_pref:[7,8,9,13],oppos:8,open:[0,3,4,5,6,7,8,12],payload:4,fanci:5,size:2,given:[0,8,9,4],"long":10,script:1,associ:[1,8,9,4,5],system:[8,12,4,14],messag:[4,5,8,12,11,9,14],attach:11,friend:11,curlinfo_http_cod:[6,3],shell:0,option:[0,5,7,8,9,10,13,14],especi:8,signup:[0,1,3,4,5,8,12,14],copi:[8,13],member_upd:[12,4],specifi:[0,2,7,8,10,11,9,14],curl_exec:[6,3],curlopt_httphead:[6,3],member_signup:[12,4],create_search:7,part:[0,9],enclos:11,than:[0,1,2,3,12,13],with_plaintext:9,"02t10":[5,8],"02t11":[5,8],"02t13":5,nathan:8,whenev:8,provid:[1,5,8,12,9,14],remov:[12,8,13,4],mailing_start:4,rate:2,structur:7,charact:9,greg:8,trackabl:11,were:5,minut:0,danc:1,error_count:[7,8,9,13],pre:[4,5,7,8,9,10,13,14],cleaner:1,sai:0,share_id:5,signup_form_id:[0,8,12,9,14],plaintext:[5,9,14],pass:[1,3],ani:[0,1,2,7,8,9],have:[0,5,8,12,9],tabl:5,seen:5,"null":[7,8,13,10,9,14],kevin:[9,14],signup_mail:0,caus:14,inform:[1,4,6,8,9,10,13],object_id:14,note:[1,8,9,4],also:[0,4,5,7,8,9,11,13],exampl:[0,1,3,5,6,7,11],take:[0,4],which:[0,1,4,8,10,12,9,14],some_number_field:0,singl:[0,1,3,4,5,8,10,12,13],excit:11,sure:1,delete_memb:13,normal:9,parent_mail:14,recipient_count:[5,9,14],previou:9,field_id:[10,12,14],last_run_at:7,most:14,pair:11,"class":[4,5,7,8,9,10,13,14],member_group_id:[8,9,13],mcconnel:[9,14],url:[1,3,4,5,6,12],mailing_finish:[12,4],clear:10,request:[1,2,3],doe:[0,5,7,8,10,13],member_status_upd:[12,4],declar:9,tech:4,determin:1,dataset:10,dow:0,recipi:9,"6db0cc7e6fdb2da589b65f29d90c96b6":9,show:[4,5,7,8,9,10,11,13,14],text:[10,11,12],radiu:0,syntax:[0,1,11,9],radio:10,font:[4,5,7,8,9,10,13,14],fine:9,find:[1,6,5],status_to:8,toast:[7,5,8,13],access:[1,5],giant:12,just:[0,9],pretti:8,column_ord:10,explain:[0,1],winner:9,activ:[1,5,7,8,13,9],figur:1,should:[1,2,3,7,8,11,9],templat:[11,14],share_count:5,count:[5,2,3],variou:[8,13],confirmed_opt_in:[7,8,9,13],familiar:1,express:0,account:[1,4,5,7,8,10,13,14],cannot:[8,9,4],progress:9,report:[10,8],requir:[1,7,8,10,11,9],object:[5,13],favorite_food:[5,7,8,13,10,9],bar:0,organ:1,include_archiv:[5,9],"public":1,"default":[5,11,13,4,9],ref_member_id:5,message_share_click:[12,4],through:[1,8,4],where:[0,1,8,11,7],view:1,set:[0,1,2,3,6,8,9,12,13],link_id:[0,5,12,9,14],see:[7,1,8],result:[0,1,2,5,8,9],respons:[0,1,2,4,5,7,8,9,10,13,14],fail:[5,9,4],themselv:2,member_field:[0,7],xxxxx:6,subject:[8,12,9,14],statu:[1,4,5,7,8,9,12,13],fancyonion:11,kei:[0,1,8,11,4],is_schedul:9,message_forward:[12,4],databas:8,user:[0,8,9,13],last_modified_at:[7,8,9,13],addresse:5,written:1,between:[0,7,2],"import":[1,8,12,4,10],subscript:[1,3],entiti:1,curlopt_url:[6,3],email:[0,1,3,5,6,7,8,9,13],wide:14,extend:1,numer:10,http404:[4,5,7,8,9,10,13,14],job:13,entir:[0,8],share_click:5,to_group_id:13,curlopt_returntransf:[6,3],addit:[0,1,8,9,11,13],member_remove_from_group:[12,4],send_start:[0,9,14],protect:1,accident:2,last:[0,5,10],delimit:5,pertain:5,message_click:[12,4],against:0,audienc:[1,8,9],mang:0,http500:14,seri:5,com:[4,5,6,7,8,9,11,13],zip_code_field:0,"03t15":[7,5,8,13],point:1,toni:[7,8],overview:[0,1,11,12,5],period:1,winner_id:9,colon:[7,11],optout_count:[7,8,9,13],suppli:9,cancel:9,tuesdai:0,duplic:5,quit:[5,8],user_id:4,recur:14,headsup:9,addition:[1,2],due:5,been:[1,8,10,5],mark:[8,9],whom:9,tshow:[4,5,7,8,9,10,13,14],trigger:[1,4,5,7,8,9,10,12,13,14],unsubscrib:0,treat:8,interest:[10,4],basic:[0,1,4,8,13,14],monthli:[7,8,13],blob:4,mailing_mailing_id:5,mailing_id:[0,5,8,12,9,14],fire:[8,4,14],xxx:[1,3],argument:[0,5],link_ord:[5,9],input:1,present:7,clicked_uniqu:5,"case":[1,8],look:[1,14,10],frozen:9,easier:12,email_error:[7,8,9,13],defin:[0,10,8,9],"while":0,outcom:5,abov:[0,1,8,7],error:[1,3,6,8,10,13],loop:8,opt:[0,4,5,7,8,13],readi:9,deliv:5,recipient_group:9,equal:0,itself:0,new_statu:12,webhook_id:4,recipient_memb:9,perform:8,make:[1,12,6,10],belong:[0,8,4],same:4,check:[8,6,9],member:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14],handl:1,html:9,split:9,document:[1,11,12],complet:[1,3,4,6,8,9],week:0,finish:[5,12,4],http:[1,2,3,4,5,6,11,9],href:[4,5,7,8,9,10,13,14],nest:0,someon:4,rais:[4,5,7,8,9,10,13,14],initi:[10,9],php:[1,6,3],bob:[7,5],recent:1,kept:11,center:0,min:5,well:5,inherit:9,person:9,mailing_typ:[9,14],without:0,thi:[0,1,4,5,7,8,9,10,12,13,14],undefin:0,http_code:[1,6,3],latest:11,construct:[0,7,9],identifi:8,paus:9,execut:[1,3],less:0,resp:[4,5,7,8,9,10,13,14],"_post":[1,3],aspect:13,recipient_email:9,source_filenam:8,yet:5,smith:[7,5,8,9,13],"12t09":[7,8],display_nam:10,easi:[10,12],"01t00":8,had:0,littl:1,blog:4,add:[12,1,8,13,3],other:[1,8,9,3,5],curlopt_userpwd:[6,3],import_finish:[8,12,4],schedul:9,els:[1,6,3],save:7,match:[0,7],build:1,sanit:1,applic:[1,6,3],account_id:[1,3,4,5,6,7,8,9,10,12,13,14],disposit:1,crud:[8,13,14],print_r:[6,3],mailing_statu:[9,14],know:[5,4],background:13,parent_mailing_id:[9,14],bit:1,insert:11,emma:[1,5,7,8,9,12,13],like:1,onion:11,deprec:4,arbitrari:8,manual:9,integ:[1,8,14,10,5],public_kei:4,api:[1,2,6,12,3],either:[0,5,7],bunch:0,output:9,group_id:[1,8,12,3],soft:[0,5],manag:[0,1,13,4],import_id:[8,12],www:[5,9],old:7,deal:[8,13],captur:1,arrai:[0,1,3,5,6,7,8,9,10,12,13,14],some:[1,11,5],field_delet:[12,4],certain:12,intern:10,sampl:[1,4,5,7,8,9,10,13,14],elaps:[2,9],home:11,deleted_at:[7,8,13,10,9,14],some_string_field:0,librari:11,bounce_count:[7,8,9,13],confirm:8,broad:12,per:5,send_finish:[9,14],larg:[0,2],condit:7,three:9,network_cod:12,localhost:9,refer:[5,7,8,13,10,9],with_html_bodi:9,who:[0,5],"10t12":[7,14],event_typ:14,inspect:1,usag:[1,8,12],num_members_ad:8,fulli:11,from:[1,4,8,9,12,13,14],post:[1,3,4,7,8,9,10,12,13,14],group_creat:[12,4],gladi:[7,5,8,13],actual:5,zip:0,groups_upd:8,column:10,page:2,includ:[1,5,7,8,9,10,13],webview:9,disabl:[9,14],block:[1,2],yyyi:5,member_data:[1,3],glob:0,bounc:[0,5],within:0,encod:[9,4],delivery_typ:[5,8],compos:0,webview_shar:5,field_typ:10,active_count:[7,8,9,13],public_webview_url:9,pivot:5,your:[1,4,5,7,8,9,10,13],websit:11,span:[4,5,7,8,9,10,13,14],wai:[1,12],area:1,overus:2,group_nam:[8,12,13,9],support:12,unique_click:5,json:[0,1,3,4,6,7],fast:8,custom:[5,8,11,10],avail:[0,11,4],start:[1,2,8,4],interfac:12,send_at:[9,14],exceed:2,"var":3,interv:[0,14],deliveri:5,head:[6,9,3],form:[1,3,4,6,8,10,14],enough:2,forc:1,forward:[0,4,5,8,12,9],"31st":0,group_typ:[8,9,13],push_offset_unit:14,link:[0,4,5,11,9,14],line:[1,5],realli:1,"true":[0,1,2,3,4,6,7,8,9,10,13,14],archived_t:[9,14],info:4,pull:2,made:1,possibl:[5,8,12],whether:8,maximum:2,tell:12,http403:9,record:[0,7,8],below:[0,1,8,12],http400:[7,8,9],limit:[5,2,8,9],some_array_field:0,otherwis:[10,8],start_t:14,mta:5,connect:[6,3],notif:9,creat:[4,5,7,9,10,12,13,14],"int":5,retriev:[7,1,2,8,9],email_us:[0,5],repres:5,exist:[0,4,5,7,8,10,13],behavior:11,curl:[1,6],lentil:7,probabl:14,echo:[1,3],successfulli:[5,8,9],mailing_subject:12,grp:13,todo:11,when:[8,12,4,9],detail:[1,4,7,8,9,10,13],invalid:[7,8,9],event:[4,7,8,13,12,9,14],field:[0,1,3,4,5,7,8,9,10,11,12,13,14],valid:[5,8,9,13],futur:1,num_skip:8,test:[5,6,7,13,9,14],ignor:8,you:[0,1,2,4,5,7,8,9,10,11,12,13],member_delet:[12,4],member_status_id:[7,5,8,9,13],public_api_kei:[1,6,3],stat:[5,9],claus:[0,7],event_nam:[12,4],e2ma:[1,2,6,3],error_messag:8,param:[9,4],app_messag:[1,3],ella:8,bulk:[1,8],receiv:[0,2,5,8,12,9],heads_up_email:9,longer:9,descript:[4,14],portion:0,opted_out:5,time:[1,2,8,13,5],reply_to:[9,14],resource_url:12,hello:[11,9,14]},objtypes:{"0":"http:get","1":"http:put","2":"http:post","3":"http:delete"},titles:["Search Syntax","Emma API","Pagination","PHP Signup Example","Webhooks","Response","PHP Get Member By Email Example","Searches","Members","Mailings","Fields","Placeholder Syntax","Webhook Usage","Groups","Triggers"],objnames:{"0":"HTTP get","1":"HTTP put","2":"HTTP post","3":"HTTP delete"},filenames:["member_search","index","pagination","php_signup_example","api/external/webhooks","api/external/response","php_get_member_example","api/external/searches","api/external/members","api/external/mailings","api/external/fields","placeholders","webhooks","api/external/groups","api/external/triggers"]}) \ No newline at end of file +Search.setIndex({objects:{"":{"/#account_id/members/#member_id/groups/remove":[8,1,1],"/#account_id/mailings/#mailing_id/winner/#winner_id":[9,2,1],"/#account_id/response/#mailing_id/in_progress":[5,0,1],"/#account_id/members/groups/remove":[8,1,1],"/#account_id/mailings/#mailing_id/searches":[9,0,1],"/#account_id/fields":[10,2,1],"/#account_id/members/#group_id/copy":[8,1,1],"/#account_id/members/status":[8,1,1],"/#account_id/response/#mailing_id/shares/overview":[5,0,1],"/#account_id/webhooks/events":[4,0,1],"/#account_id/members/#member_id/optout":[8,0,1],"/#account_id/webhooks":[4,3,1],"/#account_id/fields/#field_id":[10,3,1],"/#account_id/response/#mailing_id":[5,0,1],"/#account_id/groups/#member_group_id/members/remove":[13,3,1],"/#account_id/searches":[7,2,1],"/#account_id/members/imports":[8,0,1],"/#account_id/forwards/#mailing_id/#member_id":[9,2,1],"/#account_id/response/#mailing_id/customer_share_clicks":[5,0,1],"/#account_id/mailings/#mailing_id/messages/#member_id":[9,0,1],"/#account_id/members/#member_id/mailings":[8,0,1],"/#account_id/groups/#from_group_id/#to_group_id/members/copy":[13,1,1],"/#account_id/triggers":[14,2,1],"/#account_id/triggers/#trigger_id":[14,3,1],"/#account_id/members/delete":[8,1,1],"/#account_id/mailings/#mailing_id/groups":[9,0,1],"/#account_id/response/#mailing_id/forwards":[5,0,1],"/#account_id/members/#member_id":[8,3,1],"/#account_id/triggers/#trigger_id/mailings":[14,0,1],"/#account_id/searches/#search_id/members":[7,0,1],"/#account_id/members/status/:status_from/to/:status_to":[8,1,1],"/#account_id/response/#mailing_id/sends":[5,0,1],"/#account_id/members":[8,3,1],"/#account_id/members/email/:email":[8,0,1],"/#account_id/response/#mailing_id/links":[5,0,1],"/#account_id/searches/#search_id":[7,3,1],"/#account_id/members/imports/#import_id/members":[8,0,1],"/#account_id/fields/#field_id/clear":[10,2,1],"/#account_id/groups/#member_group_id/members":[13,3,1],"/#account_id/members/imports/#import_id":[8,0,1],"/#account_id/response":[5,0,1],"/#account_id/response/#mailing_id/opens":[5,0,1],"/#account_id/members/imports/delete":[8,3,1],"/#account_id/mailings":[9,0,1],"/#account_id/mailings/cancel/#mailing_id":[9,3,1],"/#account_id/mailings/validate":[9,2,1],"/#account_id/response/#mailing_id/deliveries":[5,0,1],"/#account_id/mailings/#mailing_id/members":[9,0,1],"/#account_id/response/#share_id/customer_share":[5,0,1],"/#account_id/webhooks/#webhook_id":[4,3,1],"/#account_id/members/add":[8,2,1],"/#account_id/members/email/optout/:email":[8,1,1],"/#account_id/response/#mailing_id/optouts":[5,0,1],"/#account_id/response/#mailing_id/shares":[5,0,1],"/#account_id/groups/#member_group_id":[13,3,1],"/#account_id/mailings/#mailing_id":[9,3,1],"/#account_id/members/#member_id/groups":[8,3,1],"/#account_id/groups":[13,2,1],"/#account_id/response/#mailing_id/clicks":[5,0,1],"/#account_id/mailings/#mailing_id/headsup":[9,0,1],"/#account_id/response/#mailing_id/signups":[5,0,1],"/#account_id/response/#mailing_id/customer_shares":[5,0,1]}},terms:{all:[0,1,4,5,8,9,10,11,12,13,14],code:[0,1,6,3],change_typ:8,queri:[0,2,4],month:[0,5,9,14],four:[0,5],mile:0,least:0,field_creat:[12,4],link_target:[5,9],content:[11,6,9,3],privat:1,specif:[8,9,4],friendli:5,send:[1,9,4,3,5],customer_share_click:5,those:[5,12],group_upd:[12,4],sent:[5,8,12,9,14],curl_clos:[6,3],brown:[7,8],digit:5,everi:0,string:[0,4,5,7,8,9,10,12,13,14],fals:[3,4,5,6,7,8,9,10,13,14],webhook:[1,12,4],mailing_status:9,trigger_id:14,curlopt_post:3,webview_share_click:5,affect:[7,8],member_add:[12,4],create_mail:9,new_boolean:10,foo:0,level:1,group_delet:[12,4],list:[0,1,2,4,5,7,8,9,10,11,12,13,14],upload:8,iter:2,"try":8,item:2,plaintext_onli:[9,14],div:[4,5,7,8,9,10,13,14],survey_id:14,pleas:[1,8,11,9],prevent:2,work:[1,4],ten:0,with_html_bodi:9,sync:10,sign:[0,5,4],past:1,second:[0,7,14],follow:[0,1,4,5,7,9,11,13],further:1,durat:9,click:[0,4,5,7,8,12,14],append:2,even:10,what:1,hide:[4,5,7,8,9,10,13,14],appear:1,from_group_id:13,section:1,current:[8,12,9],delet:[1,4,7,8,9,10,12,13,14],"new":[1,4,5,7,8,9,10,11,13,14],net:[1,2,6,3],delivery_t:8,method:[5,8,13,4,9],can:[0,1,2,4,5,7,8,9,11,12,13],widget:[7,10,8,9,13],hash:0,datematch:0,displai:10,variat:9,gener:[0,8,12,14],onli:[5,8],here:[0,1,3,5,6,8],bodi:9,let:[1,4,10],address:[0,1,8,6,9],along:8,sinc:8,valu:[0,5,7,8,10,11],field_upd:[12,4],search:[0,1,9,7],survei:14,sender:[9,14],larger:2,queue:5,prior:9,action:[0,8],chang:[8,4],campaign:5,newbi:5,appli:[7,14],prefer:0,myemma:[4,5,7,8,9,13],filenam:8,customer_shar:5,"boolean":[0,1,5,7,8,9,10,13,14],curlopt_postfield:3,total:5,jone:[7,5,8,13],select:10,newslett:[7,8,13],describ:7,would:[0,1],regist:4,two:[0,5],next:[0,1],create_webhook:4,few:[5,8],call:[1,2,3,4,6,8,12],criteria:7,member_add_to_group:[12,4],type:[1,3,4,5,6,7,10,9,14],until:2,more:[0,4,7,8,9,13],peopl:5,relat:[1,8,11,9],about:[10,8,12,4,9],notic:8,thide:[4,5,7,8,9,10,13,14],flag:[5,7,8,10,9,14],exce:2,indic:8,examin:1,particular:[1,4,5,8,10,12,9],in_progress:5,origin:9,must:[0,7,13,10],none:9,endpoint:[1,4,5,7,8,9,10,13,14],join:[0,7],hour:0,member_sinc:[0,5,7,8,9,13],uniqu:5,histori:8,soup:7,remain:[0,9],archiv:[5,9],member_optout:[12,4],drill:5,control:[1,11,9],quickstart:1,give:5,forward_mailing_id:5,email_domain:[0,5],share:[0,5,8,12,4],accept:[0,5,7,8,9,10,11,13,14],total_click:5,tag:[11,9],want:[1,12,13,5],occur:[7,12],some_numeric_field:0,delai:14,alwai:0,webhook_event_id:4,cours:1,end:[2,8],first_nam:[1,3,5,7,8,9,10,11,13,14],started_or_finish:[9,14],anoth:[9,13],get:[1,4,5,6,7,8,9,10,13,14],message_open:[12,4],html_bodi:[9,14],share_statu:5,push_offset:14,del_statu:5,tild:5,num_members_upd:8,simpl:0,chri:9,pizza:[7,8],map:0,autent:1,referenc:7,xxxx:6,sundai:0,membership:13,taco:[7,5,8,9,13],mai:12,multipl:[10,8],data:[1,3,4,5,10,12],welcom:11,add_onli:8,"short":0,json_encod:3,optout:[5,8,12,13],num_dupl:8,favorit:10,correspond:[0,1],greet:11,predic:[0,1],issu:[1,10],"12t11":[7,5,8,9,13],combin:7,allow:[0,7,8],some_zipcode_field:0,signed_up:5,order:[5,10],michel:[8,9],mailing_nam:5,checkbox:10,fields_upd:8,over:2,becaus:12,buyer:[7,8,9,13],comma:[9,13],is_dis:14,vari:8,paramet:[2,4,5,7,8,9,10,13,14],widget_typ:10,style:[0,4,5,7,8,9,10,13,14],group:[0,1,3,4,7,8,9,12,13,14],curl_setopt:[6,3],how:[7,1,2,4],import_start:8,better:[13,14],platform:1,pend:[1,9],mailing_list:9,onc:9,mail:[0,1,4,5,8,11,12,9,14],hidden:13,main:1,might:[1,4],link_nam:[5,9],them:[8,9],"return":[0,1,4,5,7,8,9,10,12,13,14],greater:[0,8],thei:[0,9],food:10,timestamp:[0,5,12,9,10],spell:4,dai:0,auth:1,instead:[12,2,8],now:5,down:5,term:[0,1],alex:9,name:[0,4,5,7,8,9,10,11,13,14],edit:[7,1,14,10],curl_getinfo:[6,3],authent:[1,6,4,3],successufulli:4,separ:[1,9,13],each:[1,2,5,9,12,11,13],found:[8,9,4,14],updat:[4,7,8,9,10,12,13,14],mean:0,status:[8,9],domain:0,shortcut_nam:10,weight:[4,5,7,8,9,10,13,14],resum:9,individu:[1,8],hard:[0,5],last_nam:[1,3,5,7,8,9,10,11,13,14],"05t15":5,birthdai:[10,14],expect:1,year:[0,5,9,14],our:[1,11,12,4,14],happen:[1,4,5],extract:11,short_display_nam:10,special:[0,7,8,13],out:[0,1,4,5,7,8,10,13],variabl:[1,6,3],message_shar:[12,4],network:[5,12],private_api_kei:[1,6,3],check_multipl:10,categori:1,rel:0,print:6,correct:10,statist:8,benjamin:8,qualifi:11,insid:1,advanc:0,contain:[0,5,7,13,10,9],differ:0,standard:[5,9],status_from:8,base:[5,8],recipient_search:9,dictionari:8,put:[4,7,8,9,10,13,14],"13t23":[7,5,8],visit:11,could:1,omit:5,success:[1,3,7,8,9,13],filter:[0,1,7],search_id:7,pagin:[1,2],member_id:[5,7,8,9,12,13],summari:[1,5],assign:9,first:[0,1,10,5],oper:[0,1,7,14],rang:5,notifi:12,directli:0,curlopt_ssl_verifyp:[6,3],curl_init:[6,3],number:[5,2,13,3,10],placehold:[1,11],date:[0,5,8,10,11,14],unlik:9,alreadi:[10,8,9,13],done:8,plaintext_pref:[7,8,9,13],oppos:8,open:[0,3,4,5,6,7,8,12],payload:4,fanci:5,size:2,given:[0,8,9,4],"long":10,script:1,associ:[1,8,9,4,5],system:[8,12,4,14],messag:[4,5,8,12,11,9,14],attach:11,friend:11,curlinfo_http_cod:[6,3],shell:0,option:[0,5,7,8,9,10,13,14],especi:8,signup:[0,1,3,4,5,8,12,14],copi:[8,13],member_upd:[12,4],specifi:[0,2,7,8,10,11,9,14],curl_exec:[6,3],curlopt_httphead:[6,3],member_signup:[12,4],create_search:7,part:[0,9],enclos:11,than:[0,1,2,3,12,13],with_plaintext:9,"02t10":[5,8],"02t11":[5,8],"02t13":5,nathan:8,whenev:8,provid:[1,5,8,12,9,14],remov:[12,8,13,4],mailing_start:4,rate:2,structur:7,charact:9,greg:8,trackabl:11,were:5,minut:0,danc:1,error_count:[7,8,9,13],pre:[4,5,7,8,9,10,13,14],cleaner:1,sai:0,share_id:5,signup_form_id:[0,8,12,9,14],plaintext:[5,9,14],pass:[1,3],ani:[0,1,2,7,8,9],have:[0,5,8,12,9],tabl:5,seen:5,"null":[7,8,13,10,9,14],kevin:[9,14],signup_mail:0,caus:14,inform:[1,4,6,8,9,10,13],object_id:14,note:[1,8,9,4],also:[0,4,5,7,8,9,11,13],exampl:[0,1,3,5,6,7,11],take:[0,4],which:[0,1,4,8,10,12,9,14],some_number_field:0,singl:[0,1,3,4,5,8,10,12,13],excit:11,sure:1,delete_memb:13,normal:9,parent_mail:14,recipient_count:[5,9,14],previou:9,field_id:[10,12,14],last_run_at:7,most:14,pair:11,"class":[4,5,7,8,9,10,13,14],member_group_id:[8,9,13],mcconnel:[9,14],url:[1,3,4,5,6,12],mailing_finish:[12,4],clear:10,request:[1,2,3],doe:[0,5,7,8,10,13],member_status_upd:[12,4],declar:9,tech:4,determin:1,dataset:10,dow:0,recipi:9,"6db0cc7e6fdb2da589b65f29d90c96b6":9,show:[4,5,7,8,9,10,11,13,14],text:[10,11,12],radiu:0,syntax:[0,1,11,9],radio:10,font:[4,5,7,8,9,10,13,14],fine:9,find:[1,6,5],status_to:8,toast:[7,5,8,13],access:[1,5],giant:12,just:[0,9],pretti:8,column_ord:10,explain:[0,1],winner:9,activ:[1,5,7,8,13,9],figur:1,should:[1,2,3,7,8,11,9],templat:[11,14],share_count:5,count:[5,2,3],variou:[8,13],confirmed_opt_in:[7,8,9,13],familiar:1,express:0,account:[1,4,5,7,8,10,13,14],cannot:[8,9,4],progress:9,report:[10,8],requir:[1,7,8,10,11,9],object:[5,13],favorite_food:[5,7,8,13,10,9],bar:0,organ:1,include_archiv:[5,9],"public":1,"default":[5,11,13,4,9],ref_member_id:5,message_share_click:[12,4],through:[1,8,4],where:[0,1,8,11,7],view:1,set:[0,1,2,3,6,8,9,12,13],link_id:[0,5,12,9,14],see:[7,1,8],result:[0,1,2,5,8,9],respons:[0,1,2,4,5,7,8,9,10,13,14],fail:[5,9,4],themselv:2,member_field:[0,7],xxxxx:6,subject:[8,12,9,14],statu:[1,4,5,7,8,9,12,13],fancyonion:11,kei:[0,1,8,11,4],is_schedul:9,message_forward:[12,4],databas:8,user:[0,8,9,13],last_modified_at:[7,8,9,13],addresse:5,written:1,between:[0,7,2],"import":[1,8,12,4,10],subscript:[1,3],entiti:1,curlopt_url:[6,3],email:[0,1,3,5,6,7,8,9,13],wide:14,extend:1,numer:10,http404:[4,5,7,8,9,10,13,14],job:13,entir:[0,8],share_click:5,to_group_id:13,curlopt_returntransf:[6,3],addit:[0,1,8,9,11,13],member_remove_from_group:[12,4],send_start:[0,9,14],protect:1,accident:2,last:[0,5,10],delimit:5,pertain:5,message_click:[12,4],against:0,audienc:[1,8,9],mang:0,http500:14,seri:5,com:[4,5,6,7,8,9,11,13],zip_code_field:0,"03t15":[7,5,8,13],point:1,toni:[7,8],overview:[0,1,11,12,5],period:1,winner_id:9,colon:[7,11],optout_count:[7,8,9,13],suppli:9,cancel:9,tuesdai:0,duplic:5,quit:[5,8],user_id:4,recur:14,headsup:9,addition:[1,2],due:5,been:[1,8,10,5],mark:[8,9],whom:9,tshow:[4,5,7,8,9,10,13,14],trigger:[1,4,5,7,8,9,10,12,13,14],unsubscrib:0,treat:8,interest:[10,4],basic:[0,1,4,8,13,14],monthli:[7,8,13],blob:4,mailing_mailing_id:5,mailing_id:[0,5,8,12,9,14],fire:[8,4,14],xxx:[1,3],argument:[0,5],link_ord:[5,9],input:1,present:7,clicked_uniqu:5,"case":[1,8],look:[1,14,10],frozen:9,easier:12,email_error:[7,8,9,13],defin:[0,10,8,9],"while":0,outcom:5,abov:[0,1,8,7],error:[1,3,6,8,10,13],loop:8,opt:[0,4,5,7,8,13],readi:9,deliv:5,recipient_group:9,equal:0,itself:0,new_statu:12,webhook_id:4,recipient_memb:9,perform:8,make:[1,12,6,10],belong:[0,8,4],same:4,check:[8,6,9],member:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14],handl:1,html:9,split:9,document:[1,11,12],complet:[1,3,4,6,8,9],week:0,finish:[5,12,4],http:[1,2,3,4,5,6,11,9],href:[4,5,7,8,9,10,13,14],nest:0,someon:4,rais:[4,5,7,8,9,10,13,14],initi:[10,9],php:[1,6,3],bob:[7,5],recent:1,kept:11,center:0,min:5,well:5,inherit:9,person:9,mailing_typ:[9,14],without:0,thi:[0,1,4,5,7,8,9,10,12,13,14],undefin:0,http_code:[1,6,3],latest:11,construct:[0,7,9],identifi:8,paus:9,execut:[1,3],less:0,resp:[4,5,7,8,9,10,13,14],"_post":[1,3],aspect:13,recipient_email:9,source_filenam:8,yet:5,smith:[7,5,8,9,13],"12t09":[7,8],display_nam:10,easi:[10,12],"01t00":8,had:0,littl:1,blog:4,add:[12,1,8,13,3],other:[1,8,9,3,5],curlopt_userpwd:[6,3],import_finish:[8,12,4],schedul:9,els:[1,6,3],save:7,match:[0,7],build:1,sanit:1,applic:[1,6,3],account_id:[1,3,4,5,6,7,8,9,10,12,13,14],disposit:1,crud:[8,13,14],print_r:[6,3],mailing_statu:[9,14],know:[5,4],background:13,parent_mailing_id:[9,14],bit:1,insert:11,emma:[1,5,7,8,9,12,13],like:1,onion:11,deprec:4,arbitrari:8,manual:9,integ:[1,8,14,10,5],public_kei:4,api:[1,2,6,12,3],either:[0,5,7],bunch:0,output:9,group_id:[1,8,12,3],soft:[0,5],manag:[0,1,13,4],import_id:[8,12],www:[5,9],old:7,deal:[8,13],captur:1,arrai:[0,1,3,5,6,7,8,9,10,12,13,14],some:[1,11,5],field_delet:[12,4],certain:12,intern:10,sampl:[1,4,5,7,8,9,10,13,14],elaps:[2,9],home:11,deleted_at:[7,8,13,10,9,14],some_string_field:0,librari:11,bounce_count:[7,8,9,13],confirm:8,broad:12,per:5,send_finish:[9,14],larg:[0,2],condit:7,three:9,network_cod:12,localhost:9,refer:[5,7,8,13,10,9],"10t16":[7,14],who:[0,5],bold:[4,5,7,8,9,10,13,14],event_typ:14,inspect:1,usag:[1,8,12],num_members_ad:8,fulli:11,from:[1,4,8,9,12,13,14],post:[1,3,4,7,8,9,10,12,13,14],group_creat:[12,4],gladi:[7,5,8,13],actual:5,zip:0,groups_upd:8,column:10,page:2,includ:[1,5,7,8,9,10,13],webview:9,disabl:[9,14],block:[1,2],yyyi:5,member_data:[1,3],glob:0,bounc:[0,5],within:0,encod:[9,4],delivery_typ:[5,8],compos:0,webview_shar:5,field_typ:10,active_count:[7,8,9,13],public_webview_url:9,pivot:5,your:[1,4,5,7,8,9,10,13],websit:11,span:[4,5,7,8,9,10,13,14],wai:[1,12],area:1,overus:2,group_nam:[8,12,13,9],support:12,unique_click:5,json:[0,1,3,4,6,7],fast:8,custom:[5,8,11,10],avail:[0,11,4],start:[1,2,8,4],interfac:12,send_at:[9,14],exceed:2,"var":3,interv:[0,14],deliveri:5,head:[6,9,3],form:[1,3,4,6,8,10,14],enough:2,forc:1,forward:[0,4,5,8,12,9],"31st":0,group_typ:[8,9,13],push_offset_unit:14,link:[0,4,5,11,9,14],line:[1,5],realli:1,"true":[0,1,2,3,4,6,7,8,9,10,13,14],archived_t:[9,14],info:4,pull:2,made:1,possibl:[5,8,12],whether:8,maximum:2,tell:12,http403:9,record:[0,7,8],below:[0,1,8,12],http400:[7,8,9],limit:[5,2,8,9],some_array_field:0,otherwis:[10,8],start_t:14,mta:5,connect:[6,3],notif:9,creat:[4,5,7,9,10,12,13,14],"int":5,retriev:[7,1,2,8,9],email_us:[0,5],repres:5,exist:[0,4,5,7,8,10,13],behavior:11,curl:[1,6],lentil:7,probabl:14,echo:[1,3],successfulli:[5,8,9],mailing_subject:12,grp:13,todo:11,when:[8,12,4,9],detail:[1,4,7,8,9,10,13],invalid:[7,8,9],event:[4,7,8,13,12,9,14],field:[0,1,3,4,5,7,8,9,10,11,12,13,14],valid:[5,8,9,13],futur:1,num_skip:8,test:[5,6,7,13,9,14],ignor:8,you:[0,1,2,4,5,7,8,9,10,11,12,13],member_delet:[12,4],member_status_id:[7,5,8,9,13],public_api_kei:[1,6,3],stat:[5,9],claus:[0,7],event_nam:[12,4],e2ma:[1,2,6,3],error_messag:8,param:[9,4],app_messag:[1,3],ella:8,bulk:[1,8],receiv:[0,2,5,8,12,9],heads_up_email:9,longer:9,descript:[4,14],portion:0,opted_out:5,time:[1,2,8,13,5],reply_to:[9,14],resource_url:12,hello:[11,9,14]},objtypes:{"0":"http:get","1":"http:put","2":"http:post","3":"http:delete"},titles:["Search Syntax","Emma API","Pagination","PHP Signup Example","Webhooks","Response","PHP Get Member By Email Example","Searches","Members","Mailings","Fields","Placeholder Syntax","Webhook Usage","Groups","Triggers"],objnames:{"0":"HTTP get","1":"HTTP put","2":"HTTP post","3":"HTTP delete"},filenames:["member_search","index","pagination","php_signup_example","api/external/webhooks","api/external/response","php_get_member_example","api/external/searches","api/external/members","api/external/mailings","api/external/fields","placeholders","webhooks","api/external/groups","api/external/triggers"]}) \ No newline at end of file diff --git a/webhooks.html b/webhooks.html index cee1937..a1b2883 100644 --- a/webhooks.html +++ b/webhooks.html @@ -507,7 +507,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 10, 2013 at 12:23 PM. + Last updated on Jan 10, 2013 at 04:48 PM. </div> </body> </html> \ No newline at end of file From 0b1f7fe94d10925d61eb5dfc64114b3d5ba44f21 Mon Sep 17 00:00:00 2001 From: Hernan Ciudad <hernan@myemma.com> Date: Fri, 11 Jan 2013 11:24:48 -0600 Subject: [PATCH 022/219] Update audience documentation. --- api/external/fields.html | 2 +- api/external/groups.html | 2 +- api/external/mailings.html | 2 +- api/external/members.html | 2 +- api/external/response.html | 2 +- api/external/searches.html | 4 ++-- api/external/triggers.html | 8 ++++---- api/external/webhooks.html | 2 +- genindex.html | 2 +- http-routingtable.html | 2 +- index.html | 2 +- member_search.html | 2 +- pagination.html | 2 +- php_get_member_example.html | 2 +- php_signup_example.html | 2 +- placeholders.html | 2 +- search.html | 2 +- searchindex.js | 2 +- webhooks.html | 2 +- 19 files changed, 23 insertions(+), 23 deletions(-) diff --git a/api/external/fields.html b/api/external/fields.html index ccbb566..5436566 100644 --- a/api/external/fields.html +++ b/api/external/fields.html @@ -421,7 +421,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 10, 2013 at 04:48 PM. + Last updated on Jan 11, 2013 at 11:24 AM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/groups.html b/api/external/groups.html index a2dd1fe..1b2c58d 100644 --- a/api/external/groups.html +++ b/api/external/groups.html @@ -713,7 +713,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 10, 2013 at 04:48 PM. + Last updated on Jan 11, 2013 at 11:24 AM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/mailings.html b/api/external/mailings.html index 834219d..0dd2f0f 100644 --- a/api/external/mailings.html +++ b/api/external/mailings.html @@ -823,7 +823,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 10, 2013 at 04:48 PM. + Last updated on Jan 11, 2013 at 11:24 AM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/members.html b/api/external/members.html index 21ddb98..a2daecb 100644 --- a/api/external/members.html +++ b/api/external/members.html @@ -1238,7 +1238,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 10, 2013 at 04:48 PM. + Last updated on Jan 11, 2013 at 11:24 AM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/response.html b/api/external/response.html index 32bedaa..369c43e 100644 --- a/api/external/response.html +++ b/api/external/response.html @@ -1035,7 +1035,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 10, 2013 at 04:48 PM. + Last updated on Jan 11, 2013 at 11:24 AM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/searches.html b/api/external/searches.html index e11c401..c2c436f 100644 --- a/api/external/searches.html +++ b/api/external/searches.html @@ -201,7 +201,7 @@ <h1>Searches<a class="headerlink" href="#searches" title="Permalink to this head "name": "Test Search", "criteria": "[\"or\", [\"group\", \"eq\", \"Monthly Newsletter\"],[\"group\", \"eq\", \"Widget Buyers\"]]", "deleted_at": null, - "last_run_at": "@D:2013-01-10T16:48:50", + "last_run_at": "@D:2013-01-11T11:24:44", "active_count": 2, "account_id": 100 } @@ -517,7 +517,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 10, 2013 at 04:48 PM. + Last updated on Jan 11, 2013 at 11:24 AM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/triggers.html b/api/external/triggers.html index fe97c29..564a319 100644 --- a/api/external/triggers.html +++ b/api/external/triggers.html @@ -149,7 +149,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": 203, "push_offset_units": "0:-14:0:0", - "start_ts": "@D:2013-01-10T16:48:47", + "start_ts": "@D:2013-01-11T11:24:42", "trigger_id": 100, "signups": null, "push_offset": "@I:-1209600.0", @@ -190,7 +190,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": null, "push_offset_units": "0:3:0:0", - "start_ts": "@D:2013-01-10T16:48:47", + "start_ts": "@D:2013-01-11T11:24:42", "trigger_id": 101, "signups": [ 1, @@ -329,7 +329,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": 203, "push_offset_units": "0:-14:0:0", - "start_ts": "@D:2013-01-10T16:48:47", + "start_ts": "@D:2013-01-11T11:24:42", "trigger_id": 100, "signups": null, "push_offset": "@I:-1209600.0", @@ -505,7 +505,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 10, 2013 at 04:48 PM. + Last updated on Jan 11, 2013 at 11:24 AM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/webhooks.html b/api/external/webhooks.html index 5262391..05c7724 100644 --- a/api/external/webhooks.html +++ b/api/external/webhooks.html @@ -494,7 +494,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 10, 2013 at 04:48 PM. + Last updated on Jan 11, 2013 at 11:24 AM. </div> </body> </html> \ No newline at end of file diff --git a/genindex.html b/genindex.html index c0e5c24..82a22b4 100644 --- a/genindex.html +++ b/genindex.html @@ -144,7 +144,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 10, 2013 at 04:48 PM. + Last updated on Jan 11, 2013 at 11:24 AM. </div> </body> </html> \ No newline at end of file diff --git a/http-routingtable.html b/http-routingtable.html index f4c7e2e..a53dfd0 100644 --- a/http-routingtable.html +++ b/http-routingtable.html @@ -607,7 +607,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 10, 2013 at 04:48 PM. + Last updated on Jan 11, 2013 at 11:24 AM. </div> </body> </html> \ No newline at end of file diff --git a/index.html b/index.html index 18de6fa..747d145 100644 --- a/index.html +++ b/index.html @@ -311,7 +311,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 10, 2013 at 04:48 PM. + Last updated on Jan 11, 2013 at 11:24 AM. </div> </body> </html> \ No newline at end of file diff --git a/member_search.html b/member_search.html index c5c82e9..df0c6ff 100644 --- a/member_search.html +++ b/member_search.html @@ -256,7 +256,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 10, 2013 at 04:48 PM. + Last updated on Jan 11, 2013 at 11:24 AM. </div> </body> </html> \ No newline at end of file diff --git a/pagination.html b/pagination.html index e6cd0e5..3c2b864 100644 --- a/pagination.html +++ b/pagination.html @@ -168,7 +168,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 10, 2013 at 04:48 PM. + Last updated on Jan 11, 2013 at 11:24 AM. </div> </body> </html> \ No newline at end of file diff --git a/php_get_member_example.html b/php_get_member_example.html index 7b5c41f..fa33e29 100644 --- a/php_get_member_example.html +++ b/php_get_member_example.html @@ -183,7 +183,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 10, 2013 at 04:48 PM. + Last updated on Jan 11, 2013 at 11:24 AM. </div> </body> </html> \ No newline at end of file diff --git a/php_signup_example.html b/php_signup_example.html index 1357325..4aec1bf 100644 --- a/php_signup_example.html +++ b/php_signup_example.html @@ -205,7 +205,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 10, 2013 at 04:48 PM. + Last updated on Jan 11, 2013 at 11:24 AM. </div> </body> </html> \ No newline at end of file diff --git a/placeholders.html b/placeholders.html index 8d03fbc..2db0be6 100644 --- a/placeholders.html +++ b/placeholders.html @@ -183,7 +183,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 10, 2013 at 04:48 PM. + Last updated on Jan 11, 2013 at 11:24 AM. </div> </body> </html> \ No newline at end of file diff --git a/search.html b/search.html index 2fb2b2e..a5a8b71 100644 --- a/search.html +++ b/search.html @@ -153,7 +153,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 10, 2013 at 04:48 PM. + Last updated on Jan 11, 2013 at 11:24 AM. </div> </body> </html> \ No newline at end of file diff --git a/searchindex.js b/searchindex.js index c76bcf0..a937900 100644 --- a/searchindex.js +++ b/searchindex.js @@ -1 +1 @@ -Search.setIndex({objects:{"":{"/#account_id/members/#member_id/groups/remove":[8,1,1],"/#account_id/mailings/#mailing_id/winner/#winner_id":[9,2,1],"/#account_id/response/#mailing_id/in_progress":[5,0,1],"/#account_id/members/groups/remove":[8,1,1],"/#account_id/mailings/#mailing_id/searches":[9,0,1],"/#account_id/fields":[10,2,1],"/#account_id/members/#group_id/copy":[8,1,1],"/#account_id/members/status":[8,1,1],"/#account_id/response/#mailing_id/shares/overview":[5,0,1],"/#account_id/webhooks/events":[4,0,1],"/#account_id/members/#member_id/optout":[8,0,1],"/#account_id/webhooks":[4,3,1],"/#account_id/fields/#field_id":[10,3,1],"/#account_id/response/#mailing_id":[5,0,1],"/#account_id/groups/#member_group_id/members/remove":[13,3,1],"/#account_id/searches":[7,2,1],"/#account_id/members/imports":[8,0,1],"/#account_id/forwards/#mailing_id/#member_id":[9,2,1],"/#account_id/response/#mailing_id/customer_share_clicks":[5,0,1],"/#account_id/mailings/#mailing_id/messages/#member_id":[9,0,1],"/#account_id/members/#member_id/mailings":[8,0,1],"/#account_id/groups/#from_group_id/#to_group_id/members/copy":[13,1,1],"/#account_id/triggers":[14,2,1],"/#account_id/triggers/#trigger_id":[14,3,1],"/#account_id/members/delete":[8,1,1],"/#account_id/mailings/#mailing_id/groups":[9,0,1],"/#account_id/response/#mailing_id/forwards":[5,0,1],"/#account_id/members/#member_id":[8,3,1],"/#account_id/triggers/#trigger_id/mailings":[14,0,1],"/#account_id/searches/#search_id/members":[7,0,1],"/#account_id/members/status/:status_from/to/:status_to":[8,1,1],"/#account_id/response/#mailing_id/sends":[5,0,1],"/#account_id/members":[8,3,1],"/#account_id/members/email/:email":[8,0,1],"/#account_id/response/#mailing_id/links":[5,0,1],"/#account_id/searches/#search_id":[7,3,1],"/#account_id/members/imports/#import_id/members":[8,0,1],"/#account_id/fields/#field_id/clear":[10,2,1],"/#account_id/groups/#member_group_id/members":[13,3,1],"/#account_id/members/imports/#import_id":[8,0,1],"/#account_id/response":[5,0,1],"/#account_id/response/#mailing_id/opens":[5,0,1],"/#account_id/members/imports/delete":[8,3,1],"/#account_id/mailings":[9,0,1],"/#account_id/mailings/cancel/#mailing_id":[9,3,1],"/#account_id/mailings/validate":[9,2,1],"/#account_id/response/#mailing_id/deliveries":[5,0,1],"/#account_id/mailings/#mailing_id/members":[9,0,1],"/#account_id/response/#share_id/customer_share":[5,0,1],"/#account_id/webhooks/#webhook_id":[4,3,1],"/#account_id/members/add":[8,2,1],"/#account_id/members/email/optout/:email":[8,1,1],"/#account_id/response/#mailing_id/optouts":[5,0,1],"/#account_id/response/#mailing_id/shares":[5,0,1],"/#account_id/groups/#member_group_id":[13,3,1],"/#account_id/mailings/#mailing_id":[9,3,1],"/#account_id/members/#member_id/groups":[8,3,1],"/#account_id/groups":[13,2,1],"/#account_id/response/#mailing_id/clicks":[5,0,1],"/#account_id/mailings/#mailing_id/headsup":[9,0,1],"/#account_id/response/#mailing_id/signups":[5,0,1],"/#account_id/response/#mailing_id/customer_shares":[5,0,1]}},terms:{all:[0,1,4,5,8,9,10,11,12,13,14],code:[0,1,6,3],change_typ:8,queri:[0,2,4],month:[0,5,9,14],four:[0,5],mile:0,least:0,field_creat:[12,4],link_target:[5,9],content:[11,6,9,3],privat:1,specif:[8,9,4],friendli:5,send:[1,9,4,3,5],customer_share_click:5,those:[5,12],group_upd:[12,4],sent:[5,8,12,9,14],curl_clos:[6,3],brown:[7,8],digit:5,everi:0,string:[0,4,5,7,8,9,10,12,13,14],fals:[3,4,5,6,7,8,9,10,13,14],webhook:[1,12,4],mailing_status:9,trigger_id:14,curlopt_post:3,webview_share_click:5,affect:[7,8],member_add:[12,4],create_mail:9,new_boolean:10,foo:0,level:1,group_delet:[12,4],list:[0,1,2,4,5,7,8,9,10,11,12,13,14],upload:8,iter:2,"try":8,item:2,plaintext_onli:[9,14],div:[4,5,7,8,9,10,13,14],survey_id:14,pleas:[1,8,11,9],prevent:2,work:[1,4],ten:0,with_html_bodi:9,sync:10,sign:[0,5,4],past:1,second:[0,7,14],follow:[0,1,4,5,7,9,11,13],further:1,durat:9,click:[0,4,5,7,8,12,14],append:2,even:10,what:1,hide:[4,5,7,8,9,10,13,14],appear:1,from_group_id:13,section:1,current:[8,12,9],delet:[1,4,7,8,9,10,12,13,14],"new":[1,4,5,7,8,9,10,11,13,14],net:[1,2,6,3],delivery_t:8,method:[5,8,13,4,9],can:[0,1,2,4,5,7,8,9,11,12,13],widget:[7,10,8,9,13],hash:0,datematch:0,displai:10,variat:9,gener:[0,8,12,14],onli:[5,8],here:[0,1,3,5,6,8],bodi:9,let:[1,4,10],address:[0,1,8,6,9],along:8,sinc:8,valu:[0,5,7,8,10,11],field_upd:[12,4],search:[0,1,9,7],survei:14,sender:[9,14],larger:2,queue:5,prior:9,action:[0,8],chang:[8,4],campaign:5,newbi:5,appli:[7,14],prefer:0,myemma:[4,5,7,8,9,13],filenam:8,customer_shar:5,"boolean":[0,1,5,7,8,9,10,13,14],curlopt_postfield:3,total:5,jone:[7,5,8,13],select:10,newslett:[7,8,13],describ:7,would:[0,1],regist:4,two:[0,5],next:[0,1],create_webhook:4,few:[5,8],call:[1,2,3,4,6,8,12],criteria:7,member_add_to_group:[12,4],type:[1,3,4,5,6,7,10,9,14],until:2,more:[0,4,7,8,9,13],peopl:5,relat:[1,8,11,9],about:[10,8,12,4,9],notic:8,thide:[4,5,7,8,9,10,13,14],flag:[5,7,8,10,9,14],exce:2,indic:8,examin:1,particular:[1,4,5,8,10,12,9],in_progress:5,origin:9,must:[0,7,13,10],none:9,endpoint:[1,4,5,7,8,9,10,13,14],join:[0,7],hour:0,member_sinc:[0,5,7,8,9,13],uniqu:5,histori:8,soup:7,remain:[0,9],archiv:[5,9],member_optout:[12,4],drill:5,control:[1,11,9],quickstart:1,give:5,forward_mailing_id:5,email_domain:[0,5],share:[0,5,8,12,4],accept:[0,5,7,8,9,10,11,13,14],total_click:5,tag:[11,9],want:[1,12,13,5],occur:[7,12],some_numeric_field:0,delai:14,alwai:0,webhook_event_id:4,cours:1,end:[2,8],first_nam:[1,3,5,7,8,9,10,11,13,14],started_or_finish:[9,14],anoth:[9,13],get:[1,4,5,6,7,8,9,10,13,14],message_open:[12,4],html_bodi:[9,14],share_statu:5,push_offset:14,del_statu:5,tild:5,num_members_upd:8,simpl:0,chri:9,pizza:[7,8],map:0,autent:1,referenc:7,xxxx:6,sundai:0,membership:13,taco:[7,5,8,9,13],mai:12,multipl:[10,8],data:[1,3,4,5,10,12],welcom:11,add_onli:8,"short":0,json_encod:3,optout:[5,8,12,13],num_dupl:8,favorit:10,correspond:[0,1],greet:11,predic:[0,1],issu:[1,10],"12t11":[7,5,8,9,13],combin:7,allow:[0,7,8],some_zipcode_field:0,signed_up:5,order:[5,10],michel:[8,9],mailing_nam:5,checkbox:10,fields_upd:8,over:2,becaus:12,buyer:[7,8,9,13],comma:[9,13],is_dis:14,vari:8,paramet:[2,4,5,7,8,9,10,13,14],widget_typ:10,style:[0,4,5,7,8,9,10,13,14],group:[0,1,3,4,7,8,9,12,13,14],curl_setopt:[6,3],how:[7,1,2,4],import_start:8,better:[13,14],platform:1,pend:[1,9],mailing_list:9,onc:9,mail:[0,1,4,5,8,11,12,9,14],hidden:13,main:1,might:[1,4],link_nam:[5,9],them:[8,9],"return":[0,1,4,5,7,8,9,10,12,13,14],greater:[0,8],thei:[0,9],food:10,timestamp:[0,5,12,9,10],spell:4,dai:0,auth:1,instead:[12,2,8],now:5,down:5,term:[0,1],alex:9,name:[0,4,5,7,8,9,10,11,13,14],edit:[7,1,14,10],curl_getinfo:[6,3],authent:[1,6,4,3],successufulli:4,separ:[1,9,13],each:[1,2,5,9,12,11,13],found:[8,9,4,14],updat:[4,7,8,9,10,12,13,14],mean:0,status:[8,9],domain:0,shortcut_nam:10,weight:[4,5,7,8,9,10,13,14],resum:9,individu:[1,8],hard:[0,5],last_nam:[1,3,5,7,8,9,10,11,13,14],"05t15":5,birthdai:[10,14],expect:1,year:[0,5,9,14],our:[1,11,12,4,14],happen:[1,4,5],extract:11,short_display_nam:10,special:[0,7,8,13],out:[0,1,4,5,7,8,10,13],variabl:[1,6,3],message_shar:[12,4],network:[5,12],private_api_kei:[1,6,3],check_multipl:10,categori:1,rel:0,print:6,correct:10,statist:8,benjamin:8,qualifi:11,insid:1,advanc:0,contain:[0,5,7,13,10,9],differ:0,standard:[5,9],status_from:8,base:[5,8],recipient_search:9,dictionari:8,put:[4,7,8,9,10,13,14],"13t23":[7,5,8],visit:11,could:1,omit:5,success:[1,3,7,8,9,13],filter:[0,1,7],search_id:7,pagin:[1,2],member_id:[5,7,8,9,12,13],summari:[1,5],assign:9,first:[0,1,10,5],oper:[0,1,7,14],rang:5,notifi:12,directli:0,curlopt_ssl_verifyp:[6,3],curl_init:[6,3],number:[5,2,13,3,10],placehold:[1,11],date:[0,5,8,10,11,14],unlik:9,alreadi:[10,8,9,13],done:8,plaintext_pref:[7,8,9,13],oppos:8,open:[0,3,4,5,6,7,8,12],payload:4,fanci:5,size:2,given:[0,8,9,4],"long":10,script:1,associ:[1,8,9,4,5],system:[8,12,4,14],messag:[4,5,8,12,11,9,14],attach:11,friend:11,curlinfo_http_cod:[6,3],shell:0,option:[0,5,7,8,9,10,13,14],especi:8,signup:[0,1,3,4,5,8,12,14],copi:[8,13],member_upd:[12,4],specifi:[0,2,7,8,10,11,9,14],curl_exec:[6,3],curlopt_httphead:[6,3],member_signup:[12,4],create_search:7,part:[0,9],enclos:11,than:[0,1,2,3,12,13],with_plaintext:9,"02t10":[5,8],"02t11":[5,8],"02t13":5,nathan:8,whenev:8,provid:[1,5,8,12,9,14],remov:[12,8,13,4],mailing_start:4,rate:2,structur:7,charact:9,greg:8,trackabl:11,were:5,minut:0,danc:1,error_count:[7,8,9,13],pre:[4,5,7,8,9,10,13,14],cleaner:1,sai:0,share_id:5,signup_form_id:[0,8,12,9,14],plaintext:[5,9,14],pass:[1,3],ani:[0,1,2,7,8,9],have:[0,5,8,12,9],tabl:5,seen:5,"null":[7,8,13,10,9,14],kevin:[9,14],signup_mail:0,caus:14,inform:[1,4,6,8,9,10,13],object_id:14,note:[1,8,9,4],also:[0,4,5,7,8,9,11,13],exampl:[0,1,3,5,6,7,11],take:[0,4],which:[0,1,4,8,10,12,9,14],some_number_field:0,singl:[0,1,3,4,5,8,10,12,13],excit:11,sure:1,delete_memb:13,normal:9,parent_mail:14,recipient_count:[5,9,14],previou:9,field_id:[10,12,14],last_run_at:7,most:14,pair:11,"class":[4,5,7,8,9,10,13,14],member_group_id:[8,9,13],mcconnel:[9,14],url:[1,3,4,5,6,12],mailing_finish:[12,4],clear:10,request:[1,2,3],doe:[0,5,7,8,10,13],member_status_upd:[12,4],declar:9,tech:4,determin:1,dataset:10,dow:0,recipi:9,"6db0cc7e6fdb2da589b65f29d90c96b6":9,show:[4,5,7,8,9,10,11,13,14],text:[10,11,12],radiu:0,syntax:[0,1,11,9],radio:10,font:[4,5,7,8,9,10,13,14],fine:9,find:[1,6,5],status_to:8,toast:[7,5,8,13],access:[1,5],giant:12,just:[0,9],pretti:8,column_ord:10,explain:[0,1],winner:9,activ:[1,5,7,8,13,9],figur:1,should:[1,2,3,7,8,11,9],templat:[11,14],share_count:5,count:[5,2,3],variou:[8,13],confirmed_opt_in:[7,8,9,13],familiar:1,express:0,account:[1,4,5,7,8,10,13,14],cannot:[8,9,4],progress:9,report:[10,8],requir:[1,7,8,10,11,9],object:[5,13],favorite_food:[5,7,8,13,10,9],bar:0,organ:1,include_archiv:[5,9],"public":1,"default":[5,11,13,4,9],ref_member_id:5,message_share_click:[12,4],through:[1,8,4],where:[0,1,8,11,7],view:1,set:[0,1,2,3,6,8,9,12,13],link_id:[0,5,12,9,14],see:[7,1,8],result:[0,1,2,5,8,9],respons:[0,1,2,4,5,7,8,9,10,13,14],fail:[5,9,4],themselv:2,member_field:[0,7],xxxxx:6,subject:[8,12,9,14],statu:[1,4,5,7,8,9,12,13],fancyonion:11,kei:[0,1,8,11,4],is_schedul:9,message_forward:[12,4],databas:8,user:[0,8,9,13],last_modified_at:[7,8,9,13],addresse:5,written:1,between:[0,7,2],"import":[1,8,12,4,10],subscript:[1,3],entiti:1,curlopt_url:[6,3],email:[0,1,3,5,6,7,8,9,13],wide:14,extend:1,numer:10,http404:[4,5,7,8,9,10,13,14],job:13,entir:[0,8],share_click:5,to_group_id:13,curlopt_returntransf:[6,3],addit:[0,1,8,9,11,13],member_remove_from_group:[12,4],send_start:[0,9,14],protect:1,accident:2,last:[0,5,10],delimit:5,pertain:5,message_click:[12,4],against:0,audienc:[1,8,9],mang:0,http500:14,seri:5,com:[4,5,6,7,8,9,11,13],zip_code_field:0,"03t15":[7,5,8,13],point:1,toni:[7,8],overview:[0,1,11,12,5],period:1,winner_id:9,colon:[7,11],optout_count:[7,8,9,13],suppli:9,cancel:9,tuesdai:0,duplic:5,quit:[5,8],user_id:4,recur:14,headsup:9,addition:[1,2],due:5,been:[1,8,10,5],mark:[8,9],whom:9,tshow:[4,5,7,8,9,10,13,14],trigger:[1,4,5,7,8,9,10,12,13,14],unsubscrib:0,treat:8,interest:[10,4],basic:[0,1,4,8,13,14],monthli:[7,8,13],blob:4,mailing_mailing_id:5,mailing_id:[0,5,8,12,9,14],fire:[8,4,14],xxx:[1,3],argument:[0,5],link_ord:[5,9],input:1,present:7,clicked_uniqu:5,"case":[1,8],look:[1,14,10],frozen:9,easier:12,email_error:[7,8,9,13],defin:[0,10,8,9],"while":0,outcom:5,abov:[0,1,8,7],error:[1,3,6,8,10,13],loop:8,opt:[0,4,5,7,8,13],readi:9,deliv:5,recipient_group:9,equal:0,itself:0,new_statu:12,webhook_id:4,recipient_memb:9,perform:8,make:[1,12,6,10],belong:[0,8,4],same:4,check:[8,6,9],member:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14],handl:1,html:9,split:9,document:[1,11,12],complet:[1,3,4,6,8,9],week:0,finish:[5,12,4],http:[1,2,3,4,5,6,11,9],href:[4,5,7,8,9,10,13,14],nest:0,someon:4,rais:[4,5,7,8,9,10,13,14],initi:[10,9],php:[1,6,3],bob:[7,5],recent:1,kept:11,center:0,min:5,well:5,inherit:9,person:9,mailing_typ:[9,14],without:0,thi:[0,1,4,5,7,8,9,10,12,13,14],undefin:0,http_code:[1,6,3],latest:11,construct:[0,7,9],identifi:8,paus:9,execut:[1,3],less:0,resp:[4,5,7,8,9,10,13,14],"_post":[1,3],aspect:13,recipient_email:9,source_filenam:8,yet:5,smith:[7,5,8,9,13],"12t09":[7,8],display_nam:10,easi:[10,12],"01t00":8,had:0,littl:1,blog:4,add:[12,1,8,13,3],other:[1,8,9,3,5],curlopt_userpwd:[6,3],import_finish:[8,12,4],schedul:9,els:[1,6,3],save:7,match:[0,7],build:1,sanit:1,applic:[1,6,3],account_id:[1,3,4,5,6,7,8,9,10,12,13,14],disposit:1,crud:[8,13,14],print_r:[6,3],mailing_statu:[9,14],know:[5,4],background:13,parent_mailing_id:[9,14],bit:1,insert:11,emma:[1,5,7,8,9,12,13],like:1,onion:11,deprec:4,arbitrari:8,manual:9,integ:[1,8,14,10,5],public_kei:4,api:[1,2,6,12,3],either:[0,5,7],bunch:0,output:9,group_id:[1,8,12,3],soft:[0,5],manag:[0,1,13,4],import_id:[8,12],www:[5,9],old:7,deal:[8,13],captur:1,arrai:[0,1,3,5,6,7,8,9,10,12,13,14],some:[1,11,5],field_delet:[12,4],certain:12,intern:10,sampl:[1,4,5,7,8,9,10,13,14],elaps:[2,9],home:11,deleted_at:[7,8,13,10,9,14],some_string_field:0,librari:11,bounce_count:[7,8,9,13],confirm:8,broad:12,per:5,send_finish:[9,14],larg:[0,2],condit:7,three:9,network_cod:12,localhost:9,refer:[5,7,8,13,10,9],"10t16":[7,14],who:[0,5],bold:[4,5,7,8,9,10,13,14],event_typ:14,inspect:1,usag:[1,8,12],num_members_ad:8,fulli:11,from:[1,4,8,9,12,13,14],post:[1,3,4,7,8,9,10,12,13,14],group_creat:[12,4],gladi:[7,5,8,13],actual:5,zip:0,groups_upd:8,column:10,page:2,includ:[1,5,7,8,9,10,13],webview:9,disabl:[9,14],block:[1,2],yyyi:5,member_data:[1,3],glob:0,bounc:[0,5],within:0,encod:[9,4],delivery_typ:[5,8],compos:0,webview_shar:5,field_typ:10,active_count:[7,8,9,13],public_webview_url:9,pivot:5,your:[1,4,5,7,8,9,10,13],websit:11,span:[4,5,7,8,9,10,13,14],wai:[1,12],area:1,overus:2,group_nam:[8,12,13,9],support:12,unique_click:5,json:[0,1,3,4,6,7],fast:8,custom:[5,8,11,10],avail:[0,11,4],start:[1,2,8,4],interfac:12,send_at:[9,14],exceed:2,"var":3,interv:[0,14],deliveri:5,head:[6,9,3],form:[1,3,4,6,8,10,14],enough:2,forc:1,forward:[0,4,5,8,12,9],"31st":0,group_typ:[8,9,13],push_offset_unit:14,link:[0,4,5,11,9,14],line:[1,5],realli:1,"true":[0,1,2,3,4,6,7,8,9,10,13,14],archived_t:[9,14],info:4,pull:2,made:1,possibl:[5,8,12],whether:8,maximum:2,tell:12,http403:9,record:[0,7,8],below:[0,1,8,12],http400:[7,8,9],limit:[5,2,8,9],some_array_field:0,otherwis:[10,8],start_t:14,mta:5,connect:[6,3],notif:9,creat:[4,5,7,9,10,12,13,14],"int":5,retriev:[7,1,2,8,9],email_us:[0,5],repres:5,exist:[0,4,5,7,8,10,13],behavior:11,curl:[1,6],lentil:7,probabl:14,echo:[1,3],successfulli:[5,8,9],mailing_subject:12,grp:13,todo:11,when:[8,12,4,9],detail:[1,4,7,8,9,10,13],invalid:[7,8,9],event:[4,7,8,13,12,9,14],field:[0,1,3,4,5,7,8,9,10,11,12,13,14],valid:[5,8,9,13],futur:1,num_skip:8,test:[5,6,7,13,9,14],ignor:8,you:[0,1,2,4,5,7,8,9,10,11,12,13],member_delet:[12,4],member_status_id:[7,5,8,9,13],public_api_kei:[1,6,3],stat:[5,9],claus:[0,7],event_nam:[12,4],e2ma:[1,2,6,3],error_messag:8,param:[9,4],app_messag:[1,3],ella:8,bulk:[1,8],receiv:[0,2,5,8,12,9],heads_up_email:9,longer:9,descript:[4,14],portion:0,opted_out:5,time:[1,2,8,13,5],reply_to:[9,14],resource_url:12,hello:[11,9,14]},objtypes:{"0":"http:get","1":"http:put","2":"http:post","3":"http:delete"},titles:["Search Syntax","Emma API","Pagination","PHP Signup Example","Webhooks","Response","PHP Get Member By Email Example","Searches","Members","Mailings","Fields","Placeholder Syntax","Webhook Usage","Groups","Triggers"],objnames:{"0":"HTTP get","1":"HTTP put","2":"HTTP post","3":"HTTP delete"},filenames:["member_search","index","pagination","php_signup_example","api/external/webhooks","api/external/response","php_get_member_example","api/external/searches","api/external/members","api/external/mailings","api/external/fields","placeholders","webhooks","api/external/groups","api/external/triggers"]}) \ No newline at end of file +Search.setIndex({objects:{"":{"/#account_id/members/#member_id/groups/remove":[8,1,1],"/#account_id/mailings/#mailing_id/winner/#winner_id":[9,2,1],"/#account_id/response/#mailing_id/in_progress":[5,0,1],"/#account_id/members/groups/remove":[8,1,1],"/#account_id/mailings/#mailing_id/searches":[9,0,1],"/#account_id/fields":[10,2,1],"/#account_id/members/#group_id/copy":[8,1,1],"/#account_id/members/status":[8,1,1],"/#account_id/response/#mailing_id/shares/overview":[5,0,1],"/#account_id/webhooks/events":[4,0,1],"/#account_id/members/#member_id/optout":[8,0,1],"/#account_id/webhooks":[4,3,1],"/#account_id/fields/#field_id":[10,3,1],"/#account_id/response/#mailing_id":[5,0,1],"/#account_id/groups/#member_group_id/members/remove":[13,3,1],"/#account_id/searches":[7,2,1],"/#account_id/members/imports":[8,0,1],"/#account_id/forwards/#mailing_id/#member_id":[9,2,1],"/#account_id/response/#mailing_id/customer_share_clicks":[5,0,1],"/#account_id/mailings/#mailing_id/messages/#member_id":[9,0,1],"/#account_id/members/#member_id/mailings":[8,0,1],"/#account_id/groups/#from_group_id/#to_group_id/members/copy":[13,1,1],"/#account_id/triggers":[14,2,1],"/#account_id/triggers/#trigger_id":[14,3,1],"/#account_id/members/delete":[8,1,1],"/#account_id/mailings/#mailing_id/groups":[9,0,1],"/#account_id/response/#mailing_id/forwards":[5,0,1],"/#account_id/members/#member_id":[8,3,1],"/#account_id/triggers/#trigger_id/mailings":[14,0,1],"/#account_id/searches/#search_id/members":[7,0,1],"/#account_id/members/status/:status_from/to/:status_to":[8,1,1],"/#account_id/response/#mailing_id/sends":[5,0,1],"/#account_id/members":[8,3,1],"/#account_id/members/email/:email":[8,0,1],"/#account_id/response/#mailing_id/links":[5,0,1],"/#account_id/searches/#search_id":[7,3,1],"/#account_id/members/imports/#import_id/members":[8,0,1],"/#account_id/fields/#field_id/clear":[10,2,1],"/#account_id/groups/#member_group_id/members":[13,3,1],"/#account_id/members/imports/#import_id":[8,0,1],"/#account_id/response":[5,0,1],"/#account_id/response/#mailing_id/opens":[5,0,1],"/#account_id/members/imports/delete":[8,3,1],"/#account_id/mailings":[9,0,1],"/#account_id/mailings/cancel/#mailing_id":[9,3,1],"/#account_id/mailings/validate":[9,2,1],"/#account_id/response/#mailing_id/deliveries":[5,0,1],"/#account_id/mailings/#mailing_id/members":[9,0,1],"/#account_id/response/#share_id/customer_share":[5,0,1],"/#account_id/webhooks/#webhook_id":[4,3,1],"/#account_id/members/add":[8,2,1],"/#account_id/members/email/optout/:email":[8,1,1],"/#account_id/response/#mailing_id/optouts":[5,0,1],"/#account_id/response/#mailing_id/shares":[5,0,1],"/#account_id/groups/#member_group_id":[13,3,1],"/#account_id/mailings/#mailing_id":[9,3,1],"/#account_id/members/#member_id/groups":[8,3,1],"/#account_id/groups":[13,2,1],"/#account_id/response/#mailing_id/clicks":[5,0,1],"/#account_id/mailings/#mailing_id/headsup":[9,0,1],"/#account_id/response/#mailing_id/signups":[5,0,1],"/#account_id/response/#mailing_id/customer_shares":[5,0,1]}},terms:{all:[0,1,4,5,8,9,10,11,12,13,14],code:[0,1,6,3],change_typ:8,queri:[0,2,4],month:[0,5,9,14],four:[0,5],mile:0,least:0,field_creat:[12,4],link_target:[5,9],content:[11,6,9,3],privat:1,specif:[8,9,4],friendli:5,send:[1,9,4,3,5],customer_share_click:5,those:[5,12],group_upd:[12,4],sent:[5,8,12,9,14],curl_clos:[6,3],brown:[7,8],digit:5,everi:0,string:[0,4,5,7,8,9,10,12,13,14],fals:[3,4,5,6,7,8,9,10,13,14],webhook:[1,12,4],mailing_status:9,trigger_id:14,curlopt_post:3,webview_share_click:5,affect:[7,8],member_add:[12,4],create_mail:9,new_boolean:10,foo:0,level:1,group_delet:[12,4],list:[0,1,2,4,5,7,8,9,10,11,12,13,14],upload:8,iter:2,"try":8,item:2,plaintext_onli:[9,14],div:[4,5,7,8,9,10,13,14],survey_id:14,pleas:[1,8,11,9],prevent:2,work:[1,4],ten:0,sync:10,sign:[0,5,4],past:1,second:[0,7,14],follow:[0,1,4,5,7,9,11,13],further:1,durat:9,click:[0,4,5,7,8,12,14],append:2,even:10,what:1,hide:[4,5,7,8,9,10,13,14],appear:1,from_group_id:13,section:1,current:[8,12,9],delet:[1,4,7,8,9,10,12,13,14],"new":[1,4,5,7,8,9,10,11,13,14],net:[1,2,6,3],delivery_t:8,method:[5,8,13,4,9],can:[0,1,2,4,5,7,8,9,11,12,13],widget:[7,10,8,9,13],hash:0,datematch:0,displai:10,variat:9,gener:[0,8,12,14],onli:[5,8],here:[0,1,3,5,6,8],bodi:9,let:[1,4,10],address:[0,1,8,6,9],along:8,sinc:8,valu:[0,5,7,8,10,11],field_upd:[12,4],search:[0,1,9,7],survei:14,sender:[9,14],larger:2,queue:5,prior:9,action:[0,8],chang:[8,4],campaign:5,newbi:5,appli:[7,14],prefer:0,myemma:[4,5,7,8,9,13],filenam:8,customer_shar:5,"boolean":[0,1,5,7,8,9,10,13,14],curlopt_postfield:3,total:5,jone:[7,5,8,13],select:10,newslett:[7,8,13],describ:7,would:[0,1],regist:4,two:[0,5],next:[0,1],create_webhook:4,few:[5,8],call:[1,2,3,4,6,8,12],criteria:7,member_add_to_group:[12,4],type:[1,3,4,5,6,7,10,9,14],until:2,more:[0,4,7,8,9,13],peopl:5,relat:[1,8,11,9],about:[10,8,12,4,9],notic:8,thide:[4,5,7,8,9,10,13,14],flag:[5,7,8,10,9,14],exce:2,indic:8,examin:1,particular:[1,4,5,8,10,12,9],in_progress:5,origin:9,must:[0,7,13,10],none:9,endpoint:[1,4,5,7,8,9,10,13,14],join:[0,7],hour:0,member_sinc:[0,5,7,8,9,13],uniqu:5,histori:8,soup:7,remain:[0,9],archiv:[5,9],member_optout:[12,4],drill:5,control:[1,11,9],quickstart:1,give:5,forward_mailing_id:5,email_domain:[0,5],share:[0,5,8,12,4],accept:[0,5,7,8,9,10,11,13,14],total_click:5,tag:[11,9],want:[1,12,13,5],occur:[7,12],some_numeric_field:0,delai:14,alwai:0,webhook_event_id:4,cours:1,end:[2,8],first_nam:[1,3,5,7,8,9,10,11,13,14],started_or_finish:[9,14],anoth:[9,13],get:[1,4,5,6,7,8,9,10,13,14],message_open:[12,4],html_bodi:[9,14],share_statu:5,push_offset:14,del_statu:5,tild:5,num_members_upd:8,simpl:0,chri:9,pizza:[7,8],map:0,autent:1,referenc:7,xxxx:6,sundai:0,membership:13,taco:[7,5,8,9,13],mai:12,multipl:[10,8],data:[1,3,4,5,10,12],welcom:11,add_onli:8,"short":0,json_encod:3,optout:[5,8,12,13],num_dupl:8,favorit:10,correspond:[0,1],greet:11,predic:[0,1],issu:[1,10],"12t11":[7,5,8,9,13],combin:7,allow:[0,7,8],some_zipcode_field:0,signed_up:5,order:[5,10],michel:[8,9],mailing_nam:5,checkbox:10,fields_upd:8,over:2,becaus:12,buyer:[7,8,9,13],comma:[9,13],is_dis:14,vari:8,paramet:[2,4,5,7,8,9,10,13,14],widget_typ:10,style:[0,4,5,7,8,9,10,13,14],group:[0,1,3,4,7,8,9,12,13,14],curl_setopt:[6,3],how:[7,1,2,4],import_start:8,better:[13,14],platform:1,pend:[1,9],mailing_list:9,onc:9,mail:[0,1,4,5,8,11,12,9,14],hidden:13,main:1,might:[1,4],link_nam:[5,9],them:[8,9],"return":[0,1,4,5,7,8,9,10,12,13,14],greater:[0,8],thei:[0,9],food:10,timestamp:[0,5,12,9,10],spell:4,dai:0,auth:1,instead:[12,2,8],now:5,down:5,term:[0,1],alex:9,name:[0,4,5,7,8,9,10,11,13,14],edit:[7,1,14,10],curl_getinfo:[6,3],authent:[1,6,4,3],successufulli:4,separ:[1,9,13],each:[1,2,5,9,12,11,13],found:[8,9,4,14],updat:[4,7,8,9,10,12,13,14],mean:0,status:[8,9],domain:0,shortcut_nam:10,weight:[4,5,7,8,9,10,13,14],resum:9,individu:[1,8],hard:[0,5],last_nam:[1,3,5,7,8,9,10,11,13,14],"05t15":5,birthdai:[10,14],expect:1,year:[0,5,9,14],our:[1,11,12,4,14],happen:[1,4,5],extract:11,short_display_nam:10,special:[0,7,8,13],out:[0,1,4,5,7,8,10,13],variabl:[1,6,3],message_shar:[12,4],network:[5,12],private_api_kei:[1,6,3],check_multipl:10,categori:1,rel:0,print:6,correct:10,statist:8,benjamin:8,qualifi:11,insid:1,advanc:0,contain:[0,5,7,13,10,9],differ:0,standard:[5,9],status_from:8,base:[5,8],recipient_search:9,dictionari:8,put:[4,7,8,9,10,13,14],"13t23":[7,5,8],visit:11,could:1,omit:5,success:[1,3,7,8,9,13],filter:[0,1,7],search_id:7,pagin:[1,2],member_id:[5,7,8,9,12,13],summari:[1,5],assign:9,first:[0,1,10,5],oper:[0,1,7,14],rang:5,notifi:12,directli:0,curlopt_ssl_verifyp:[6,3],curl_init:[6,3],number:[5,2,13,3,10],placehold:[1,11],date:[0,5,8,10,11,14],unlik:9,alreadi:[10,8,9,13],done:8,plaintext_pref:[7,8,9,13],oppos:8,open:[0,3,4,5,6,7,8,12],payload:4,fanci:5,size:2,given:[0,8,9,4],"long":10,script:1,associ:[1,8,9,4,5],system:[8,12,4,14],messag:[4,5,8,12,11,9,14],attach:11,friend:11,curlinfo_http_cod:[6,3],shell:0,option:[0,5,7,8,9,10,13,14],especi:8,signup:[0,1,3,4,5,8,12,14],copi:[8,13],member_upd:[12,4],specifi:[0,2,7,8,10,11,9,14],curl_exec:[6,3],curlopt_httphead:[6,3],member_signup:[12,4],create_search:7,part:[0,9],enclos:11,than:[0,1,2,3,12,13],with_plaintext:9,"02t10":[5,8],"02t11":[5,8],"02t13":5,nathan:8,whenev:8,provid:[1,5,8,12,9,14],remov:[12,8,13,4],mailing_start:4,rate:2,structur:7,charact:9,greg:8,trackabl:11,were:5,minut:0,danc:1,error_count:[7,8,9,13],pre:[4,5,7,8,9,10,13,14],cleaner:1,sai:0,share_id:5,signup_form_id:[0,8,12,9,14],plaintext:[5,9,14],pass:[1,3],ani:[0,1,2,7,8,9],have:[0,5,8,12,9],tabl:5,seen:5,"null":[7,8,13,10,9,14],kevin:[9,14],signup_mail:0,caus:14,inform:[1,4,6,8,9,10,13],object_id:14,note:[1,8,9,4],also:[0,4,5,7,8,9,11,13],exampl:[0,1,3,5,6,7,11],take:[0,4],which:[0,1,4,8,10,12,9,14],some_number_field:0,singl:[0,1,3,4,5,8,10,12,13],excit:11,sure:1,delete_memb:13,normal:9,parent_mail:14,recipient_count:[5,9,14],previou:9,field_id:[10,12,14],last_run_at:7,most:14,pair:11,"class":[4,5,7,8,9,10,13,14],member_group_id:[8,9,13],mcconnel:[9,14],url:[1,3,4,5,6,12],mailing_finish:[12,4],clear:10,request:[1,2,3],doe:[0,5,7,8,10,13],member_status_upd:[12,4],declar:9,tech:4,determin:1,dataset:10,dow:0,recipi:9,"6db0cc7e6fdb2da589b65f29d90c96b6":9,show:[4,5,7,8,9,10,11,13,14],text:[10,11,12],radiu:0,syntax:[0,1,11,9],radio:10,font:[4,5,7,8,9,10,13,14],fine:9,find:[1,6,5],status_to:8,toast:[7,5,8,13],access:[1,5],giant:12,just:[0,9],pretti:8,column_ord:10,explain:[0,1],winner:9,activ:[1,5,7,8,13,9],figur:1,should:[1,2,3,7,8,11,9],templat:[11,14],share_count:5,count:[5,2,3],variou:[8,13],confirmed_opt_in:[7,8,9,13],familiar:1,express:0,account:[1,4,5,7,8,10,13,14],cannot:[8,9,4],progress:9,report:[10,8],requir:[1,7,8,10,11,9],object:[5,13],favorite_food:[5,7,8,13,10,9],bar:0,organ:1,include_archiv:[5,9],"public":1,"default":[5,11,13,4,9],ref_member_id:5,message_share_click:[12,4],through:[1,8,4],where:[0,1,8,11,7],view:1,set:[0,1,2,3,6,8,9,12,13],link_id:[0,5,12,9,14],see:[7,1,8],result:[0,1,2,5,8,9],respons:[0,1,2,4,5,7,8,9,10,13,14],fail:[5,9,4],themselv:2,member_field:[0,7],xxxxx:6,subject:[8,12,9,14],statu:[1,4,5,7,8,9,12,13],fancyonion:11,kei:[0,1,8,11,4],is_schedul:9,message_forward:[12,4],databas:8,user:[0,8,9,13],last_modified_at:[7,8,9,13],addresse:5,written:1,between:[0,7,2],"import":[1,8,12,4,10],subscript:[1,3],entiti:1,curlopt_url:[6,3],email:[0,1,3,5,6,7,8,9,13],wide:14,extend:1,numer:10,http404:[4,5,7,8,9,10,13,14],job:13,entir:[0,8],share_click:5,to_group_id:13,curlopt_returntransf:[6,3],addit:[0,1,8,9,11,13],member_remove_from_group:[12,4],send_start:[0,9,14],protect:1,accident:2,last:[0,5,10],delimit:5,pertain:5,message_click:[12,4],against:0,audienc:[1,8,9],mang:0,http500:14,seri:5,com:[4,5,6,7,8,9,11,13],zip_code_field:0,"03t15":[7,5,8,13],point:1,toni:[7,8],overview:[0,1,11,12,5],period:1,winner_id:9,colon:[7,11],optout_count:[7,8,9,13],suppli:9,cancel:9,tuesdai:0,duplic:5,quit:[5,8],user_id:4,recur:14,headsup:9,addition:[1,2],due:5,been:[1,8,10,5],mark:[8,9],whom:9,tshow:[4,5,7,8,9,10,13,14],trigger:[1,4,5,7,8,9,10,12,13,14],unsubscrib:0,treat:8,interest:[10,4],basic:[0,1,4,8,13,14],monthli:[7,8,13],blob:4,mailing_mailing_id:5,mailing_id:[0,5,8,12,9,14],fire:[8,4,14],xxx:[1,3],argument:[0,5],link_ord:[5,9],input:1,present:7,clicked_uniqu:5,"case":[1,8],look:[1,14,10],frozen:9,easier:12,email_error:[7,8,9,13],defin:[0,10,8,9],"while":0,outcom:5,abov:[0,1,8,7],error:[1,3,6,8,10,13],loop:8,opt:[0,4,5,7,8,13],readi:9,deliv:5,recipient_group:9,equal:0,itself:0,new_statu:12,webhook_id:4,recipient_memb:9,perform:8,make:[1,12,6,10],belong:[0,8,4],same:4,check:[8,6,9],member:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14],handl:1,html:9,split:9,document:[1,11,12],complet:[1,3,4,6,8,9],week:0,finish:[5,12,4],http:[1,2,3,4,5,6,11,9],href:[4,5,7,8,9,10,13,14],nest:0,someon:4,rais:[4,5,7,8,9,10,13,14],initi:[10,9],php:[1,6,3],bob:[7,5],recent:1,kept:11,center:0,min:5,well:5,inherit:9,person:9,mailing_typ:[9,14],without:0,thi:[0,1,4,5,7,8,9,10,12,13,14],undefin:0,http_code:[1,6,3],latest:11,construct:[0,7,9],identifi:8,paus:9,execut:[1,3],less:0,resp:[4,5,7,8,9,10,13,14],"_post":[1,3],aspect:13,recipient_email:9,source_filenam:8,yet:5,smith:[7,5,8,9,13],"12t09":[7,8],"11t11":[7,14],display_nam:10,easi:[10,12],"01t00":8,had:0,littl:1,blog:4,add:[12,1,8,13,3],other:[1,8,9,3,5],curlopt_userpwd:[6,3],import_finish:[8,12,4],schedul:9,els:[1,6,3],save:7,match:[0,7],build:1,sanit:1,applic:[1,6,3],account_id:[1,3,4,5,6,7,8,9,10,12,13,14],disposit:1,crud:[8,13,14],print_r:[6,3],mailing_statu:[9,14],know:[5,4],background:13,parent_mailing_id:[9,14],bit:1,insert:11,emma:[1,5,7,8,9,12,13],like:1,onion:11,deprec:4,arbitrari:8,manual:9,integ:[1,8,14,10,5],public_kei:4,api:[1,2,6,12,3],either:[0,5,7],bunch:0,output:9,group_id:[1,8,12,3],soft:[0,5],manag:[0,1,13,4],import_id:[8,12],www:[5,9],old:7,deal:[8,13],captur:1,arrai:[0,1,3,5,6,7,8,9,10,12,13,14],some:[1,11,5],field_delet:[12,4],certain:12,intern:10,sampl:[1,4,5,7,8,9,10,13,14],elaps:[2,9],home:11,deleted_at:[7,8,13,10,9,14],some_string_field:0,librari:11,bounce_count:[7,8,9,13],confirm:8,broad:12,per:5,send_finish:[9,14],larg:[0,2],condit:7,three:9,network_cod:12,localhost:9,refer:[5,7,8,13,10,9],with_html_bodi:9,who:[0,5],bold:[4,5,7,8,9,10,13,14],event_typ:14,inspect:1,usag:[1,8,12],num_members_ad:8,fulli:11,from:[1,4,8,9,12,13,14],post:[1,3,4,7,8,9,10,12,13,14],group_creat:[12,4],gladi:[7,5,8,13],actual:5,zip:0,groups_upd:8,column:10,page:2,includ:[1,5,7,8,9,10,13],webview:9,disabl:[9,14],block:[1,2],yyyi:5,member_data:[1,3],glob:0,bounc:[0,5],within:0,encod:[9,4],delivery_typ:[5,8],compos:0,webview_shar:5,field_typ:10,active_count:[7,8,9,13],public_webview_url:9,pivot:5,your:[1,4,5,7,8,9,10,13],websit:11,span:[4,5,7,8,9,10,13,14],wai:[1,12],area:1,overus:2,group_nam:[8,12,13,9],support:12,unique_click:5,json:[0,1,3,4,6,7],fast:8,custom:[5,8,11,10],avail:[0,11,4],start:[1,2,8,4],interfac:12,send_at:[9,14],exceed:2,"var":3,interv:[0,14],deliveri:5,head:[6,9,3],form:[1,3,4,6,8,10,14],enough:2,forc:1,forward:[0,4,5,8,12,9],"31st":0,group_typ:[8,9,13],push_offset_unit:14,link:[0,4,5,11,9,14],line:[1,5],realli:1,"true":[0,1,2,3,4,6,7,8,9,10,13,14],archived_t:[9,14],info:4,pull:2,made:1,possibl:[5,8,12],whether:8,maximum:2,tell:12,http403:9,record:[0,7,8],below:[0,1,8,12],http400:[7,8,9],limit:[5,2,8,9],some_array_field:0,otherwis:[10,8],start_t:14,mta:5,connect:[6,3],notif:9,creat:[4,5,7,9,10,12,13,14],"int":5,retriev:[7,1,2,8,9],email_us:[0,5],repres:5,exist:[0,4,5,7,8,10,13],behavior:11,curl:[1,6],lentil:7,probabl:14,echo:[1,3],successfulli:[5,8,9],mailing_subject:12,grp:13,todo:11,when:[8,12,4,9],detail:[1,4,7,8,9,10,13],invalid:[7,8,9],event:[4,7,8,13,12,9,14],field:[0,1,3,4,5,7,8,9,10,11,12,13,14],valid:[5,8,9,13],futur:1,num_skip:8,test:[5,6,7,13,9,14],ignor:8,you:[0,1,2,4,5,7,8,9,10,11,12,13],member_delet:[12,4],member_status_id:[7,5,8,9,13],public_api_kei:[1,6,3],stat:[5,9],claus:[0,7],event_nam:[12,4],e2ma:[1,2,6,3],error_messag:8,param:[9,4],app_messag:[1,3],ella:8,bulk:[1,8],receiv:[0,2,5,8,12,9],heads_up_email:9,longer:9,descript:[4,14],portion:0,opted_out:5,time:[1,2,8,13,5],reply_to:[9,14],resource_url:12,hello:[11,9,14]},objtypes:{"0":"http:get","1":"http:put","2":"http:post","3":"http:delete"},titles:["Search Syntax","Emma API","Pagination","PHP Signup Example","Webhooks","Response","PHP Get Member By Email Example","Searches","Members","Mailings","Fields","Placeholder Syntax","Webhook Usage","Groups","Triggers"],objnames:{"0":"HTTP get","1":"HTTP put","2":"HTTP post","3":"HTTP delete"},filenames:["member_search","index","pagination","php_signup_example","api/external/webhooks","api/external/response","php_get_member_example","api/external/searches","api/external/members","api/external/mailings","api/external/fields","placeholders","webhooks","api/external/groups","api/external/triggers"]}) \ No newline at end of file diff --git a/webhooks.html b/webhooks.html index a1b2883..845fba6 100644 --- a/webhooks.html +++ b/webhooks.html @@ -507,7 +507,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 10, 2013 at 04:48 PM. + Last updated on Jan 11, 2013 at 11:24 AM. </div> </body> </html> \ No newline at end of file From 50d5edbabb5d48ed770a85c752d77e0cf7ebe6dd Mon Sep 17 00:00:00 2001 From: Hernan Ciudad <hernan@myemma.com> Date: Fri, 11 Jan 2013 11:38:00 -0600 Subject: [PATCH 023/219] Update audience documentation. --- api/external/fields.html | 2 +- api/external/groups.html | 2 +- api/external/mailings.html | 2 +- api/external/members.html | 2 +- api/external/response.html | 2 +- api/external/searches.html | 4 ++-- api/external/triggers.html | 8 ++++---- api/external/webhooks.html | 2 +- genindex.html | 2 +- http-routingtable.html | 2 +- index.html | 2 +- member_search.html | 2 +- pagination.html | 2 +- php_get_member_example.html | 2 +- php_signup_example.html | 2 +- placeholders.html | 2 +- search.html | 2 +- webhooks.html | 2 +- 18 files changed, 22 insertions(+), 22 deletions(-) diff --git a/api/external/fields.html b/api/external/fields.html index 5436566..1f89c5c 100644 --- a/api/external/fields.html +++ b/api/external/fields.html @@ -421,7 +421,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 11, 2013 at 11:24 AM. + Last updated on Jan 11, 2013 at 11:37 AM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/groups.html b/api/external/groups.html index 1b2c58d..06ced1f 100644 --- a/api/external/groups.html +++ b/api/external/groups.html @@ -713,7 +713,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 11, 2013 at 11:24 AM. + Last updated on Jan 11, 2013 at 11:37 AM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/mailings.html b/api/external/mailings.html index 0dd2f0f..1840215 100644 --- a/api/external/mailings.html +++ b/api/external/mailings.html @@ -823,7 +823,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 11, 2013 at 11:24 AM. + Last updated on Jan 11, 2013 at 11:37 AM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/members.html b/api/external/members.html index a2daecb..92c91c5 100644 --- a/api/external/members.html +++ b/api/external/members.html @@ -1238,7 +1238,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 11, 2013 at 11:24 AM. + Last updated on Jan 11, 2013 at 11:37 AM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/response.html b/api/external/response.html index 369c43e..c711d17 100644 --- a/api/external/response.html +++ b/api/external/response.html @@ -1035,7 +1035,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 11, 2013 at 11:24 AM. + Last updated on Jan 11, 2013 at 11:37 AM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/searches.html b/api/external/searches.html index c2c436f..fb02c5c 100644 --- a/api/external/searches.html +++ b/api/external/searches.html @@ -201,7 +201,7 @@ <h1>Searches<a class="headerlink" href="#searches" title="Permalink to this head "name": "Test Search", "criteria": "[\"or\", [\"group\", \"eq\", \"Monthly Newsletter\"],[\"group\", \"eq\", \"Widget Buyers\"]]", "deleted_at": null, - "last_run_at": "@D:2013-01-11T11:24:44", + "last_run_at": "@D:2013-01-11T11:37:56", "active_count": 2, "account_id": 100 } @@ -517,7 +517,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 11, 2013 at 11:24 AM. + Last updated on Jan 11, 2013 at 11:37 AM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/triggers.html b/api/external/triggers.html index 564a319..931e2c6 100644 --- a/api/external/triggers.html +++ b/api/external/triggers.html @@ -149,7 +149,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": 203, "push_offset_units": "0:-14:0:0", - "start_ts": "@D:2013-01-11T11:24:42", + "start_ts": "@D:2013-01-11T11:37:53", "trigger_id": 100, "signups": null, "push_offset": "@I:-1209600.0", @@ -190,7 +190,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": null, "push_offset_units": "0:3:0:0", - "start_ts": "@D:2013-01-11T11:24:42", + "start_ts": "@D:2013-01-11T11:37:53", "trigger_id": 101, "signups": [ 1, @@ -329,7 +329,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": 203, "push_offset_units": "0:-14:0:0", - "start_ts": "@D:2013-01-11T11:24:42", + "start_ts": "@D:2013-01-11T11:37:53", "trigger_id": 100, "signups": null, "push_offset": "@I:-1209600.0", @@ -505,7 +505,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 11, 2013 at 11:24 AM. + Last updated on Jan 11, 2013 at 11:37 AM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/webhooks.html b/api/external/webhooks.html index 05c7724..2ad35d1 100644 --- a/api/external/webhooks.html +++ b/api/external/webhooks.html @@ -494,7 +494,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 11, 2013 at 11:24 AM. + Last updated on Jan 11, 2013 at 11:37 AM. </div> </body> </html> \ No newline at end of file diff --git a/genindex.html b/genindex.html index 82a22b4..f8fc859 100644 --- a/genindex.html +++ b/genindex.html @@ -144,7 +144,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 11, 2013 at 11:24 AM. + Last updated on Jan 11, 2013 at 11:37 AM. </div> </body> </html> \ No newline at end of file diff --git a/http-routingtable.html b/http-routingtable.html index a53dfd0..a97c702 100644 --- a/http-routingtable.html +++ b/http-routingtable.html @@ -607,7 +607,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 11, 2013 at 11:24 AM. + Last updated on Jan 11, 2013 at 11:37 AM. </div> </body> </html> \ No newline at end of file diff --git a/index.html b/index.html index 747d145..ba323f7 100644 --- a/index.html +++ b/index.html @@ -311,7 +311,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 11, 2013 at 11:24 AM. + Last updated on Jan 11, 2013 at 11:37 AM. </div> </body> </html> \ No newline at end of file diff --git a/member_search.html b/member_search.html index df0c6ff..c58fb09 100644 --- a/member_search.html +++ b/member_search.html @@ -256,7 +256,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 11, 2013 at 11:24 AM. + Last updated on Jan 11, 2013 at 11:37 AM. </div> </body> </html> \ No newline at end of file diff --git a/pagination.html b/pagination.html index 3c2b864..6f85208 100644 --- a/pagination.html +++ b/pagination.html @@ -168,7 +168,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 11, 2013 at 11:24 AM. + Last updated on Jan 11, 2013 at 11:37 AM. </div> </body> </html> \ No newline at end of file diff --git a/php_get_member_example.html b/php_get_member_example.html index fa33e29..ff743bb 100644 --- a/php_get_member_example.html +++ b/php_get_member_example.html @@ -183,7 +183,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 11, 2013 at 11:24 AM. + Last updated on Jan 11, 2013 at 11:37 AM. </div> </body> </html> \ No newline at end of file diff --git a/php_signup_example.html b/php_signup_example.html index 4aec1bf..501416d 100644 --- a/php_signup_example.html +++ b/php_signup_example.html @@ -205,7 +205,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 11, 2013 at 11:24 AM. + Last updated on Jan 11, 2013 at 11:37 AM. </div> </body> </html> \ No newline at end of file diff --git a/placeholders.html b/placeholders.html index 2db0be6..aead74e 100644 --- a/placeholders.html +++ b/placeholders.html @@ -183,7 +183,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 11, 2013 at 11:24 AM. + Last updated on Jan 11, 2013 at 11:37 AM. </div> </body> </html> \ No newline at end of file diff --git a/search.html b/search.html index a5a8b71..5fe6992 100644 --- a/search.html +++ b/search.html @@ -153,7 +153,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 11, 2013 at 11:24 AM. + Last updated on Jan 11, 2013 at 11:37 AM. </div> </body> </html> \ No newline at end of file diff --git a/webhooks.html b/webhooks.html index 845fba6..dd799dc 100644 --- a/webhooks.html +++ b/webhooks.html @@ -507,7 +507,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 11, 2013 at 11:24 AM. + Last updated on Jan 11, 2013 at 11:37 AM. </div> </body> </html> \ No newline at end of file From 2e76834a0c65a0260b1d4b1e56f3ae2eaf79bf5d Mon Sep 17 00:00:00 2001 From: Hernan Ciudad <hernan@myemma.com> Date: Fri, 11 Jan 2013 11:49:25 -0600 Subject: [PATCH 024/219] Update audience documentation. --- api/external/fields.html | 2 +- api/external/groups.html | 2 +- api/external/mailings.html | 2 +- api/external/members.html | 2 +- api/external/response.html | 2 +- api/external/searches.html | 4 ++-- api/external/triggers.html | 8 ++++---- api/external/webhooks.html | 2 +- genindex.html | 2 +- http-routingtable.html | 2 +- index.html | 2 +- member_search.html | 2 +- pagination.html | 2 +- php_get_member_example.html | 2 +- php_signup_example.html | 2 +- placeholders.html | 2 +- search.html | 2 +- webhooks.html | 2 +- 18 files changed, 22 insertions(+), 22 deletions(-) diff --git a/api/external/fields.html b/api/external/fields.html index 1f89c5c..5d5e407 100644 --- a/api/external/fields.html +++ b/api/external/fields.html @@ -421,7 +421,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 11, 2013 at 11:37 AM. + Last updated on Jan 11, 2013 at 11:49 AM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/groups.html b/api/external/groups.html index 06ced1f..1ef94f5 100644 --- a/api/external/groups.html +++ b/api/external/groups.html @@ -713,7 +713,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 11, 2013 at 11:37 AM. + Last updated on Jan 11, 2013 at 11:49 AM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/mailings.html b/api/external/mailings.html index 1840215..c979637 100644 --- a/api/external/mailings.html +++ b/api/external/mailings.html @@ -823,7 +823,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 11, 2013 at 11:37 AM. + Last updated on Jan 11, 2013 at 11:49 AM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/members.html b/api/external/members.html index 92c91c5..c33ee4d 100644 --- a/api/external/members.html +++ b/api/external/members.html @@ -1238,7 +1238,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 11, 2013 at 11:37 AM. + Last updated on Jan 11, 2013 at 11:49 AM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/response.html b/api/external/response.html index c711d17..81c7ef3 100644 --- a/api/external/response.html +++ b/api/external/response.html @@ -1035,7 +1035,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 11, 2013 at 11:37 AM. + Last updated on Jan 11, 2013 at 11:49 AM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/searches.html b/api/external/searches.html index fb02c5c..0b8b11c 100644 --- a/api/external/searches.html +++ b/api/external/searches.html @@ -201,7 +201,7 @@ <h1>Searches<a class="headerlink" href="#searches" title="Permalink to this head "name": "Test Search", "criteria": "[\"or\", [\"group\", \"eq\", \"Monthly Newsletter\"],[\"group\", \"eq\", \"Widget Buyers\"]]", "deleted_at": null, - "last_run_at": "@D:2013-01-11T11:37:56", + "last_run_at": "@D:2013-01-11T11:49:20", "active_count": 2, "account_id": 100 } @@ -517,7 +517,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 11, 2013 at 11:37 AM. + Last updated on Jan 11, 2013 at 11:49 AM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/triggers.html b/api/external/triggers.html index 931e2c6..7a2eb41 100644 --- a/api/external/triggers.html +++ b/api/external/triggers.html @@ -149,7 +149,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": 203, "push_offset_units": "0:-14:0:0", - "start_ts": "@D:2013-01-11T11:37:53", + "start_ts": "@D:2013-01-11T11:49:18", "trigger_id": 100, "signups": null, "push_offset": "@I:-1209600.0", @@ -190,7 +190,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": null, "push_offset_units": "0:3:0:0", - "start_ts": "@D:2013-01-11T11:37:53", + "start_ts": "@D:2013-01-11T11:49:18", "trigger_id": 101, "signups": [ 1, @@ -329,7 +329,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": 203, "push_offset_units": "0:-14:0:0", - "start_ts": "@D:2013-01-11T11:37:53", + "start_ts": "@D:2013-01-11T11:49:18", "trigger_id": 100, "signups": null, "push_offset": "@I:-1209600.0", @@ -505,7 +505,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 11, 2013 at 11:37 AM. + Last updated on Jan 11, 2013 at 11:49 AM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/webhooks.html b/api/external/webhooks.html index 2ad35d1..e94b7d2 100644 --- a/api/external/webhooks.html +++ b/api/external/webhooks.html @@ -494,7 +494,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 11, 2013 at 11:37 AM. + Last updated on Jan 11, 2013 at 11:49 AM. </div> </body> </html> \ No newline at end of file diff --git a/genindex.html b/genindex.html index f8fc859..9728014 100644 --- a/genindex.html +++ b/genindex.html @@ -144,7 +144,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 11, 2013 at 11:37 AM. + Last updated on Jan 11, 2013 at 11:49 AM. </div> </body> </html> \ No newline at end of file diff --git a/http-routingtable.html b/http-routingtable.html index a97c702..b0e6979 100644 --- a/http-routingtable.html +++ b/http-routingtable.html @@ -607,7 +607,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 11, 2013 at 11:37 AM. + Last updated on Jan 11, 2013 at 11:49 AM. </div> </body> </html> \ No newline at end of file diff --git a/index.html b/index.html index ba323f7..f8def3d 100644 --- a/index.html +++ b/index.html @@ -311,7 +311,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 11, 2013 at 11:37 AM. + Last updated on Jan 11, 2013 at 11:49 AM. </div> </body> </html> \ No newline at end of file diff --git a/member_search.html b/member_search.html index c58fb09..b433543 100644 --- a/member_search.html +++ b/member_search.html @@ -256,7 +256,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 11, 2013 at 11:37 AM. + Last updated on Jan 11, 2013 at 11:49 AM. </div> </body> </html> \ No newline at end of file diff --git a/pagination.html b/pagination.html index 6f85208..b3e540e 100644 --- a/pagination.html +++ b/pagination.html @@ -168,7 +168,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 11, 2013 at 11:37 AM. + Last updated on Jan 11, 2013 at 11:49 AM. </div> </body> </html> \ No newline at end of file diff --git a/php_get_member_example.html b/php_get_member_example.html index ff743bb..322c868 100644 --- a/php_get_member_example.html +++ b/php_get_member_example.html @@ -183,7 +183,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 11, 2013 at 11:37 AM. + Last updated on Jan 11, 2013 at 11:49 AM. </div> </body> </html> \ No newline at end of file diff --git a/php_signup_example.html b/php_signup_example.html index 501416d..451b627 100644 --- a/php_signup_example.html +++ b/php_signup_example.html @@ -205,7 +205,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 11, 2013 at 11:37 AM. + Last updated on Jan 11, 2013 at 11:49 AM. </div> </body> </html> \ No newline at end of file diff --git a/placeholders.html b/placeholders.html index aead74e..3bde5d3 100644 --- a/placeholders.html +++ b/placeholders.html @@ -183,7 +183,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 11, 2013 at 11:37 AM. + Last updated on Jan 11, 2013 at 11:49 AM. </div> </body> </html> \ No newline at end of file diff --git a/search.html b/search.html index 5fe6992..0d696eb 100644 --- a/search.html +++ b/search.html @@ -153,7 +153,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 11, 2013 at 11:37 AM. + Last updated on Jan 11, 2013 at 11:49 AM. </div> </body> </html> \ No newline at end of file diff --git a/webhooks.html b/webhooks.html index dd799dc..8cf440b 100644 --- a/webhooks.html +++ b/webhooks.html @@ -507,7 +507,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 11, 2013 at 11:37 AM. + Last updated on Jan 11, 2013 at 11:49 AM. </div> </body> </html> \ No newline at end of file From 0cffd90d69521e8d0689e8e1d6fb6e659164713c Mon Sep 17 00:00:00 2001 From: Hernan Ciudad <hernan@myemma.com> Date: Tue, 22 Jan 2013 16:25:07 -0600 Subject: [PATCH 025/219] Update audience documentation. --- api/external/fields.html | 2 +- api/external/groups.html | 2 +- api/external/mailings.html | 2 +- api/external/members.html | 2 +- api/external/response.html | 2 +- api/external/searches.html | 4 ++-- api/external/triggers.html | 8 ++++---- api/external/webhooks.html | 2 +- genindex.html | 2 +- http-routingtable.html | 2 +- index.html | 2 +- member_search.html | 2 +- pagination.html | 2 +- php_get_member_example.html | 2 +- php_signup_example.html | 2 +- placeholders.html | 2 +- search.html | 2 +- searchindex.js | 2 +- webhooks.html | 2 +- 19 files changed, 23 insertions(+), 23 deletions(-) diff --git a/api/external/fields.html b/api/external/fields.html index 5d5e407..ed9acd2 100644 --- a/api/external/fields.html +++ b/api/external/fields.html @@ -421,7 +421,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 11, 2013 at 11:49 AM. + Last updated on Jan 22, 2013 at 04:25 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/groups.html b/api/external/groups.html index 1ef94f5..d9fcf98 100644 --- a/api/external/groups.html +++ b/api/external/groups.html @@ -713,7 +713,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 11, 2013 at 11:49 AM. + Last updated on Jan 22, 2013 at 04:25 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/mailings.html b/api/external/mailings.html index c979637..3d60924 100644 --- a/api/external/mailings.html +++ b/api/external/mailings.html @@ -823,7 +823,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 11, 2013 at 11:49 AM. + Last updated on Jan 22, 2013 at 04:25 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/members.html b/api/external/members.html index c33ee4d..ef52bdc 100644 --- a/api/external/members.html +++ b/api/external/members.html @@ -1238,7 +1238,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 11, 2013 at 11:49 AM. + Last updated on Jan 22, 2013 at 04:25 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/response.html b/api/external/response.html index 81c7ef3..441dafd 100644 --- a/api/external/response.html +++ b/api/external/response.html @@ -1035,7 +1035,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 11, 2013 at 11:49 AM. + Last updated on Jan 22, 2013 at 04:25 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/searches.html b/api/external/searches.html index 0b8b11c..3ab901c 100644 --- a/api/external/searches.html +++ b/api/external/searches.html @@ -201,7 +201,7 @@ <h1>Searches<a class="headerlink" href="#searches" title="Permalink to this head "name": "Test Search", "criteria": "[\"or\", [\"group\", \"eq\", \"Monthly Newsletter\"],[\"group\", \"eq\", \"Widget Buyers\"]]", "deleted_at": null, - "last_run_at": "@D:2013-01-11T11:49:20", + "last_run_at": "@D:2013-01-22T16:25:01", "active_count": 2, "account_id": 100 } @@ -517,7 +517,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 11, 2013 at 11:49 AM. + Last updated on Jan 22, 2013 at 04:25 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/triggers.html b/api/external/triggers.html index 7a2eb41..970bd25 100644 --- a/api/external/triggers.html +++ b/api/external/triggers.html @@ -149,7 +149,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": 203, "push_offset_units": "0:-14:0:0", - "start_ts": "@D:2013-01-11T11:49:18", + "start_ts": "@D:2013-01-22T16:24:58", "trigger_id": 100, "signups": null, "push_offset": "@I:-1209600.0", @@ -190,7 +190,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": null, "push_offset_units": "0:3:0:0", - "start_ts": "@D:2013-01-11T11:49:18", + "start_ts": "@D:2013-01-22T16:24:58", "trigger_id": 101, "signups": [ 1, @@ -329,7 +329,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": 203, "push_offset_units": "0:-14:0:0", - "start_ts": "@D:2013-01-11T11:49:18", + "start_ts": "@D:2013-01-22T16:24:58", "trigger_id": 100, "signups": null, "push_offset": "@I:-1209600.0", @@ -505,7 +505,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 11, 2013 at 11:49 AM. + Last updated on Jan 22, 2013 at 04:25 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/webhooks.html b/api/external/webhooks.html index e94b7d2..0520f7d 100644 --- a/api/external/webhooks.html +++ b/api/external/webhooks.html @@ -494,7 +494,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 11, 2013 at 11:49 AM. + Last updated on Jan 22, 2013 at 04:25 PM. </div> </body> </html> \ No newline at end of file diff --git a/genindex.html b/genindex.html index 9728014..473aa35 100644 --- a/genindex.html +++ b/genindex.html @@ -144,7 +144,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 11, 2013 at 11:49 AM. + Last updated on Jan 22, 2013 at 04:25 PM. </div> </body> </html> \ No newline at end of file diff --git a/http-routingtable.html b/http-routingtable.html index b0e6979..b9062df 100644 --- a/http-routingtable.html +++ b/http-routingtable.html @@ -607,7 +607,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 11, 2013 at 11:49 AM. + Last updated on Jan 22, 2013 at 04:25 PM. </div> </body> </html> \ No newline at end of file diff --git a/index.html b/index.html index f8def3d..6ba5487 100644 --- a/index.html +++ b/index.html @@ -311,7 +311,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 11, 2013 at 11:49 AM. + Last updated on Jan 22, 2013 at 04:25 PM. </div> </body> </html> \ No newline at end of file diff --git a/member_search.html b/member_search.html index b433543..29c59de 100644 --- a/member_search.html +++ b/member_search.html @@ -256,7 +256,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 11, 2013 at 11:49 AM. + Last updated on Jan 22, 2013 at 04:25 PM. </div> </body> </html> \ No newline at end of file diff --git a/pagination.html b/pagination.html index b3e540e..d9d467a 100644 --- a/pagination.html +++ b/pagination.html @@ -168,7 +168,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 11, 2013 at 11:49 AM. + Last updated on Jan 22, 2013 at 04:25 PM. </div> </body> </html> \ No newline at end of file diff --git a/php_get_member_example.html b/php_get_member_example.html index 322c868..1bd13e3 100644 --- a/php_get_member_example.html +++ b/php_get_member_example.html @@ -183,7 +183,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 11, 2013 at 11:49 AM. + Last updated on Jan 22, 2013 at 04:25 PM. </div> </body> </html> \ No newline at end of file diff --git a/php_signup_example.html b/php_signup_example.html index 451b627..9783732 100644 --- a/php_signup_example.html +++ b/php_signup_example.html @@ -205,7 +205,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 11, 2013 at 11:49 AM. + Last updated on Jan 22, 2013 at 04:25 PM. </div> </body> </html> \ No newline at end of file diff --git a/placeholders.html b/placeholders.html index 3bde5d3..0543077 100644 --- a/placeholders.html +++ b/placeholders.html @@ -183,7 +183,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 11, 2013 at 11:49 AM. + Last updated on Jan 22, 2013 at 04:25 PM. </div> </body> </html> \ No newline at end of file diff --git a/search.html b/search.html index 0d696eb..a7329a9 100644 --- a/search.html +++ b/search.html @@ -153,7 +153,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 11, 2013 at 11:49 AM. + Last updated on Jan 22, 2013 at 04:25 PM. </div> </body> </html> \ No newline at end of file diff --git a/searchindex.js b/searchindex.js index a937900..b29402d 100644 --- a/searchindex.js +++ b/searchindex.js @@ -1 +1 @@ -Search.setIndex({objects:{"":{"/#account_id/members/#member_id/groups/remove":[8,1,1],"/#account_id/mailings/#mailing_id/winner/#winner_id":[9,2,1],"/#account_id/response/#mailing_id/in_progress":[5,0,1],"/#account_id/members/groups/remove":[8,1,1],"/#account_id/mailings/#mailing_id/searches":[9,0,1],"/#account_id/fields":[10,2,1],"/#account_id/members/#group_id/copy":[8,1,1],"/#account_id/members/status":[8,1,1],"/#account_id/response/#mailing_id/shares/overview":[5,0,1],"/#account_id/webhooks/events":[4,0,1],"/#account_id/members/#member_id/optout":[8,0,1],"/#account_id/webhooks":[4,3,1],"/#account_id/fields/#field_id":[10,3,1],"/#account_id/response/#mailing_id":[5,0,1],"/#account_id/groups/#member_group_id/members/remove":[13,3,1],"/#account_id/searches":[7,2,1],"/#account_id/members/imports":[8,0,1],"/#account_id/forwards/#mailing_id/#member_id":[9,2,1],"/#account_id/response/#mailing_id/customer_share_clicks":[5,0,1],"/#account_id/mailings/#mailing_id/messages/#member_id":[9,0,1],"/#account_id/members/#member_id/mailings":[8,0,1],"/#account_id/groups/#from_group_id/#to_group_id/members/copy":[13,1,1],"/#account_id/triggers":[14,2,1],"/#account_id/triggers/#trigger_id":[14,3,1],"/#account_id/members/delete":[8,1,1],"/#account_id/mailings/#mailing_id/groups":[9,0,1],"/#account_id/response/#mailing_id/forwards":[5,0,1],"/#account_id/members/#member_id":[8,3,1],"/#account_id/triggers/#trigger_id/mailings":[14,0,1],"/#account_id/searches/#search_id/members":[7,0,1],"/#account_id/members/status/:status_from/to/:status_to":[8,1,1],"/#account_id/response/#mailing_id/sends":[5,0,1],"/#account_id/members":[8,3,1],"/#account_id/members/email/:email":[8,0,1],"/#account_id/response/#mailing_id/links":[5,0,1],"/#account_id/searches/#search_id":[7,3,1],"/#account_id/members/imports/#import_id/members":[8,0,1],"/#account_id/fields/#field_id/clear":[10,2,1],"/#account_id/groups/#member_group_id/members":[13,3,1],"/#account_id/members/imports/#import_id":[8,0,1],"/#account_id/response":[5,0,1],"/#account_id/response/#mailing_id/opens":[5,0,1],"/#account_id/members/imports/delete":[8,3,1],"/#account_id/mailings":[9,0,1],"/#account_id/mailings/cancel/#mailing_id":[9,3,1],"/#account_id/mailings/validate":[9,2,1],"/#account_id/response/#mailing_id/deliveries":[5,0,1],"/#account_id/mailings/#mailing_id/members":[9,0,1],"/#account_id/response/#share_id/customer_share":[5,0,1],"/#account_id/webhooks/#webhook_id":[4,3,1],"/#account_id/members/add":[8,2,1],"/#account_id/members/email/optout/:email":[8,1,1],"/#account_id/response/#mailing_id/optouts":[5,0,1],"/#account_id/response/#mailing_id/shares":[5,0,1],"/#account_id/groups/#member_group_id":[13,3,1],"/#account_id/mailings/#mailing_id":[9,3,1],"/#account_id/members/#member_id/groups":[8,3,1],"/#account_id/groups":[13,2,1],"/#account_id/response/#mailing_id/clicks":[5,0,1],"/#account_id/mailings/#mailing_id/headsup":[9,0,1],"/#account_id/response/#mailing_id/signups":[5,0,1],"/#account_id/response/#mailing_id/customer_shares":[5,0,1]}},terms:{all:[0,1,4,5,8,9,10,11,12,13,14],code:[0,1,6,3],change_typ:8,queri:[0,2,4],month:[0,5,9,14],four:[0,5],mile:0,least:0,field_creat:[12,4],link_target:[5,9],content:[11,6,9,3],privat:1,specif:[8,9,4],friendli:5,send:[1,9,4,3,5],customer_share_click:5,those:[5,12],group_upd:[12,4],sent:[5,8,12,9,14],curl_clos:[6,3],brown:[7,8],digit:5,everi:0,string:[0,4,5,7,8,9,10,12,13,14],fals:[3,4,5,6,7,8,9,10,13,14],webhook:[1,12,4],mailing_status:9,trigger_id:14,curlopt_post:3,webview_share_click:5,affect:[7,8],member_add:[12,4],create_mail:9,new_boolean:10,foo:0,level:1,group_delet:[12,4],list:[0,1,2,4,5,7,8,9,10,11,12,13,14],upload:8,iter:2,"try":8,item:2,plaintext_onli:[9,14],div:[4,5,7,8,9,10,13,14],survey_id:14,pleas:[1,8,11,9],prevent:2,work:[1,4],ten:0,sync:10,sign:[0,5,4],past:1,second:[0,7,14],follow:[0,1,4,5,7,9,11,13],further:1,durat:9,click:[0,4,5,7,8,12,14],append:2,even:10,what:1,hide:[4,5,7,8,9,10,13,14],appear:1,from_group_id:13,section:1,current:[8,12,9],delet:[1,4,7,8,9,10,12,13,14],"new":[1,4,5,7,8,9,10,11,13,14],net:[1,2,6,3],delivery_t:8,method:[5,8,13,4,9],can:[0,1,2,4,5,7,8,9,11,12,13],widget:[7,10,8,9,13],hash:0,datematch:0,displai:10,variat:9,gener:[0,8,12,14],onli:[5,8],here:[0,1,3,5,6,8],bodi:9,let:[1,4,10],address:[0,1,8,6,9],along:8,sinc:8,valu:[0,5,7,8,10,11],field_upd:[12,4],search:[0,1,9,7],survei:14,sender:[9,14],larger:2,queue:5,prior:9,action:[0,8],chang:[8,4],campaign:5,newbi:5,appli:[7,14],prefer:0,myemma:[4,5,7,8,9,13],filenam:8,customer_shar:5,"boolean":[0,1,5,7,8,9,10,13,14],curlopt_postfield:3,total:5,jone:[7,5,8,13],select:10,newslett:[7,8,13],describ:7,would:[0,1],regist:4,two:[0,5],next:[0,1],create_webhook:4,few:[5,8],call:[1,2,3,4,6,8,12],criteria:7,member_add_to_group:[12,4],type:[1,3,4,5,6,7,10,9,14],until:2,more:[0,4,7,8,9,13],peopl:5,relat:[1,8,11,9],about:[10,8,12,4,9],notic:8,thide:[4,5,7,8,9,10,13,14],flag:[5,7,8,10,9,14],exce:2,indic:8,examin:1,particular:[1,4,5,8,10,12,9],in_progress:5,origin:9,must:[0,7,13,10],none:9,endpoint:[1,4,5,7,8,9,10,13,14],join:[0,7],hour:0,member_sinc:[0,5,7,8,9,13],uniqu:5,histori:8,soup:7,remain:[0,9],archiv:[5,9],member_optout:[12,4],drill:5,control:[1,11,9],quickstart:1,give:5,forward_mailing_id:5,email_domain:[0,5],share:[0,5,8,12,4],accept:[0,5,7,8,9,10,11,13,14],total_click:5,tag:[11,9],want:[1,12,13,5],occur:[7,12],some_numeric_field:0,delai:14,alwai:0,webhook_event_id:4,cours:1,end:[2,8],first_nam:[1,3,5,7,8,9,10,11,13,14],started_or_finish:[9,14],anoth:[9,13],get:[1,4,5,6,7,8,9,10,13,14],message_open:[12,4],html_bodi:[9,14],share_statu:5,push_offset:14,del_statu:5,tild:5,num_members_upd:8,simpl:0,chri:9,pizza:[7,8],map:0,autent:1,referenc:7,xxxx:6,sundai:0,membership:13,taco:[7,5,8,9,13],mai:12,multipl:[10,8],data:[1,3,4,5,10,12],welcom:11,add_onli:8,"short":0,json_encod:3,optout:[5,8,12,13],num_dupl:8,favorit:10,correspond:[0,1],greet:11,predic:[0,1],issu:[1,10],"12t11":[7,5,8,9,13],combin:7,allow:[0,7,8],some_zipcode_field:0,signed_up:5,order:[5,10],michel:[8,9],mailing_nam:5,checkbox:10,fields_upd:8,over:2,becaus:12,buyer:[7,8,9,13],comma:[9,13],is_dis:14,vari:8,paramet:[2,4,5,7,8,9,10,13,14],widget_typ:10,style:[0,4,5,7,8,9,10,13,14],group:[0,1,3,4,7,8,9,12,13,14],curl_setopt:[6,3],how:[7,1,2,4],import_start:8,better:[13,14],platform:1,pend:[1,9],mailing_list:9,onc:9,mail:[0,1,4,5,8,11,12,9,14],hidden:13,main:1,might:[1,4],link_nam:[5,9],them:[8,9],"return":[0,1,4,5,7,8,9,10,12,13,14],greater:[0,8],thei:[0,9],food:10,timestamp:[0,5,12,9,10],spell:4,dai:0,auth:1,instead:[12,2,8],now:5,down:5,term:[0,1],alex:9,name:[0,4,5,7,8,9,10,11,13,14],edit:[7,1,14,10],curl_getinfo:[6,3],authent:[1,6,4,3],successufulli:4,separ:[1,9,13],each:[1,2,5,9,12,11,13],found:[8,9,4,14],updat:[4,7,8,9,10,12,13,14],mean:0,status:[8,9],domain:0,shortcut_nam:10,weight:[4,5,7,8,9,10,13,14],resum:9,individu:[1,8],hard:[0,5],last_nam:[1,3,5,7,8,9,10,11,13,14],"05t15":5,birthdai:[10,14],expect:1,year:[0,5,9,14],our:[1,11,12,4,14],happen:[1,4,5],extract:11,short_display_nam:10,special:[0,7,8,13],out:[0,1,4,5,7,8,10,13],variabl:[1,6,3],message_shar:[12,4],network:[5,12],private_api_kei:[1,6,3],check_multipl:10,categori:1,rel:0,print:6,correct:10,statist:8,benjamin:8,qualifi:11,insid:1,advanc:0,contain:[0,5,7,13,10,9],differ:0,standard:[5,9],status_from:8,base:[5,8],recipient_search:9,dictionari:8,put:[4,7,8,9,10,13,14],"13t23":[7,5,8],visit:11,could:1,omit:5,success:[1,3,7,8,9,13],filter:[0,1,7],search_id:7,pagin:[1,2],member_id:[5,7,8,9,12,13],summari:[1,5],assign:9,first:[0,1,10,5],oper:[0,1,7,14],rang:5,notifi:12,directli:0,curlopt_ssl_verifyp:[6,3],curl_init:[6,3],number:[5,2,13,3,10],placehold:[1,11],date:[0,5,8,10,11,14],unlik:9,alreadi:[10,8,9,13],done:8,plaintext_pref:[7,8,9,13],oppos:8,open:[0,3,4,5,6,7,8,12],payload:4,fanci:5,size:2,given:[0,8,9,4],"long":10,script:1,associ:[1,8,9,4,5],system:[8,12,4,14],messag:[4,5,8,12,11,9,14],attach:11,friend:11,curlinfo_http_cod:[6,3],shell:0,option:[0,5,7,8,9,10,13,14],especi:8,signup:[0,1,3,4,5,8,12,14],copi:[8,13],member_upd:[12,4],specifi:[0,2,7,8,10,11,9,14],curl_exec:[6,3],curlopt_httphead:[6,3],member_signup:[12,4],create_search:7,part:[0,9],enclos:11,than:[0,1,2,3,12,13],with_plaintext:9,"02t10":[5,8],"02t11":[5,8],"02t13":5,nathan:8,whenev:8,provid:[1,5,8,12,9,14],remov:[12,8,13,4],mailing_start:4,rate:2,structur:7,charact:9,greg:8,trackabl:11,were:5,minut:0,danc:1,error_count:[7,8,9,13],pre:[4,5,7,8,9,10,13,14],cleaner:1,sai:0,share_id:5,signup_form_id:[0,8,12,9,14],plaintext:[5,9,14],pass:[1,3],ani:[0,1,2,7,8,9],have:[0,5,8,12,9],tabl:5,seen:5,"null":[7,8,13,10,9,14],kevin:[9,14],signup_mail:0,caus:14,inform:[1,4,6,8,9,10,13],object_id:14,note:[1,8,9,4],also:[0,4,5,7,8,9,11,13],exampl:[0,1,3,5,6,7,11],take:[0,4],which:[0,1,4,8,10,12,9,14],some_number_field:0,singl:[0,1,3,4,5,8,10,12,13],excit:11,sure:1,delete_memb:13,normal:9,parent_mail:14,recipient_count:[5,9,14],previou:9,field_id:[10,12,14],last_run_at:7,most:14,pair:11,"class":[4,5,7,8,9,10,13,14],member_group_id:[8,9,13],mcconnel:[9,14],url:[1,3,4,5,6,12],mailing_finish:[12,4],clear:10,request:[1,2,3],doe:[0,5,7,8,10,13],member_status_upd:[12,4],declar:9,tech:4,determin:1,dataset:10,dow:0,recipi:9,"6db0cc7e6fdb2da589b65f29d90c96b6":9,show:[4,5,7,8,9,10,11,13,14],text:[10,11,12],radiu:0,syntax:[0,1,11,9],radio:10,font:[4,5,7,8,9,10,13,14],fine:9,find:[1,6,5],status_to:8,toast:[7,5,8,13],access:[1,5],giant:12,just:[0,9],pretti:8,column_ord:10,explain:[0,1],winner:9,activ:[1,5,7,8,13,9],figur:1,should:[1,2,3,7,8,11,9],templat:[11,14],share_count:5,count:[5,2,3],variou:[8,13],confirmed_opt_in:[7,8,9,13],familiar:1,express:0,account:[1,4,5,7,8,10,13,14],cannot:[8,9,4],progress:9,report:[10,8],requir:[1,7,8,10,11,9],object:[5,13],favorite_food:[5,7,8,13,10,9],bar:0,organ:1,include_archiv:[5,9],"public":1,"default":[5,11,13,4,9],ref_member_id:5,message_share_click:[12,4],through:[1,8,4],where:[0,1,8,11,7],view:1,set:[0,1,2,3,6,8,9,12,13],link_id:[0,5,12,9,14],see:[7,1,8],result:[0,1,2,5,8,9],respons:[0,1,2,4,5,7,8,9,10,13,14],fail:[5,9,4],themselv:2,member_field:[0,7],xxxxx:6,subject:[8,12,9,14],statu:[1,4,5,7,8,9,12,13],fancyonion:11,kei:[0,1,8,11,4],is_schedul:9,message_forward:[12,4],databas:8,user:[0,8,9,13],last_modified_at:[7,8,9,13],addresse:5,written:1,between:[0,7,2],"import":[1,8,12,4,10],subscript:[1,3],entiti:1,curlopt_url:[6,3],email:[0,1,3,5,6,7,8,9,13],wide:14,extend:1,numer:10,http404:[4,5,7,8,9,10,13,14],job:13,entir:[0,8],share_click:5,to_group_id:13,curlopt_returntransf:[6,3],addit:[0,1,8,9,11,13],member_remove_from_group:[12,4],send_start:[0,9,14],protect:1,accident:2,last:[0,5,10],delimit:5,pertain:5,message_click:[12,4],against:0,audienc:[1,8,9],mang:0,http500:14,seri:5,com:[4,5,6,7,8,9,11,13],zip_code_field:0,"03t15":[7,5,8,13],point:1,toni:[7,8],overview:[0,1,11,12,5],period:1,winner_id:9,colon:[7,11],optout_count:[7,8,9,13],suppli:9,cancel:9,tuesdai:0,duplic:5,quit:[5,8],user_id:4,recur:14,headsup:9,addition:[1,2],due:5,been:[1,8,10,5],mark:[8,9],whom:9,tshow:[4,5,7,8,9,10,13,14],trigger:[1,4,5,7,8,9,10,12,13,14],unsubscrib:0,treat:8,interest:[10,4],basic:[0,1,4,8,13,14],monthli:[7,8,13],blob:4,mailing_mailing_id:5,mailing_id:[0,5,8,12,9,14],fire:[8,4,14],xxx:[1,3],argument:[0,5],link_ord:[5,9],input:1,present:7,clicked_uniqu:5,"case":[1,8],look:[1,14,10],frozen:9,easier:12,email_error:[7,8,9,13],defin:[0,10,8,9],"while":0,outcom:5,abov:[0,1,8,7],error:[1,3,6,8,10,13],loop:8,opt:[0,4,5,7,8,13],readi:9,deliv:5,recipient_group:9,equal:0,itself:0,new_statu:12,webhook_id:4,recipient_memb:9,perform:8,make:[1,12,6,10],belong:[0,8,4],same:4,check:[8,6,9],member:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14],handl:1,html:9,split:9,document:[1,11,12],complet:[1,3,4,6,8,9],week:0,finish:[5,12,4],http:[1,2,3,4,5,6,11,9],href:[4,5,7,8,9,10,13,14],nest:0,someon:4,rais:[4,5,7,8,9,10,13,14],initi:[10,9],php:[1,6,3],bob:[7,5],recent:1,kept:11,center:0,min:5,well:5,inherit:9,person:9,mailing_typ:[9,14],without:0,thi:[0,1,4,5,7,8,9,10,12,13,14],undefin:0,http_code:[1,6,3],latest:11,construct:[0,7,9],identifi:8,paus:9,execut:[1,3],less:0,resp:[4,5,7,8,9,10,13,14],"_post":[1,3],aspect:13,recipient_email:9,source_filenam:8,yet:5,smith:[7,5,8,9,13],"12t09":[7,8],"11t11":[7,14],display_nam:10,easi:[10,12],"01t00":8,had:0,littl:1,blog:4,add:[12,1,8,13,3],other:[1,8,9,3,5],curlopt_userpwd:[6,3],import_finish:[8,12,4],schedul:9,els:[1,6,3],save:7,match:[0,7],build:1,sanit:1,applic:[1,6,3],account_id:[1,3,4,5,6,7,8,9,10,12,13,14],disposit:1,crud:[8,13,14],print_r:[6,3],mailing_statu:[9,14],know:[5,4],background:13,parent_mailing_id:[9,14],bit:1,insert:11,emma:[1,5,7,8,9,12,13],like:1,onion:11,deprec:4,arbitrari:8,manual:9,integ:[1,8,14,10,5],public_kei:4,api:[1,2,6,12,3],either:[0,5,7],bunch:0,output:9,group_id:[1,8,12,3],soft:[0,5],manag:[0,1,13,4],import_id:[8,12],www:[5,9],old:7,deal:[8,13],captur:1,arrai:[0,1,3,5,6,7,8,9,10,12,13,14],some:[1,11,5],field_delet:[12,4],certain:12,intern:10,sampl:[1,4,5,7,8,9,10,13,14],elaps:[2,9],home:11,deleted_at:[7,8,13,10,9,14],some_string_field:0,librari:11,bounce_count:[7,8,9,13],confirm:8,broad:12,per:5,send_finish:[9,14],larg:[0,2],condit:7,three:9,network_cod:12,localhost:9,refer:[5,7,8,13,10,9],with_html_bodi:9,who:[0,5],bold:[4,5,7,8,9,10,13,14],event_typ:14,inspect:1,usag:[1,8,12],num_members_ad:8,fulli:11,from:[1,4,8,9,12,13,14],post:[1,3,4,7,8,9,10,12,13,14],group_creat:[12,4],gladi:[7,5,8,13],actual:5,zip:0,groups_upd:8,column:10,page:2,includ:[1,5,7,8,9,10,13],webview:9,disabl:[9,14],block:[1,2],yyyi:5,member_data:[1,3],glob:0,bounc:[0,5],within:0,encod:[9,4],delivery_typ:[5,8],compos:0,webview_shar:5,field_typ:10,active_count:[7,8,9,13],public_webview_url:9,pivot:5,your:[1,4,5,7,8,9,10,13],websit:11,span:[4,5,7,8,9,10,13,14],wai:[1,12],area:1,overus:2,group_nam:[8,12,13,9],support:12,unique_click:5,json:[0,1,3,4,6,7],fast:8,custom:[5,8,11,10],avail:[0,11,4],start:[1,2,8,4],interfac:12,send_at:[9,14],exceed:2,"var":3,interv:[0,14],deliveri:5,head:[6,9,3],form:[1,3,4,6,8,10,14],enough:2,forc:1,forward:[0,4,5,8,12,9],"31st":0,group_typ:[8,9,13],push_offset_unit:14,link:[0,4,5,11,9,14],line:[1,5],realli:1,"true":[0,1,2,3,4,6,7,8,9,10,13,14],archived_t:[9,14],info:4,pull:2,made:1,possibl:[5,8,12],whether:8,maximum:2,tell:12,http403:9,record:[0,7,8],below:[0,1,8,12],http400:[7,8,9],limit:[5,2,8,9],some_array_field:0,otherwis:[10,8],start_t:14,mta:5,connect:[6,3],notif:9,creat:[4,5,7,9,10,12,13,14],"int":5,retriev:[7,1,2,8,9],email_us:[0,5],repres:5,exist:[0,4,5,7,8,10,13],behavior:11,curl:[1,6],lentil:7,probabl:14,echo:[1,3],successfulli:[5,8,9],mailing_subject:12,grp:13,todo:11,when:[8,12,4,9],detail:[1,4,7,8,9,10,13],invalid:[7,8,9],event:[4,7,8,13,12,9,14],field:[0,1,3,4,5,7,8,9,10,11,12,13,14],valid:[5,8,9,13],futur:1,num_skip:8,test:[5,6,7,13,9,14],ignor:8,you:[0,1,2,4,5,7,8,9,10,11,12,13],member_delet:[12,4],member_status_id:[7,5,8,9,13],public_api_kei:[1,6,3],stat:[5,9],claus:[0,7],event_nam:[12,4],e2ma:[1,2,6,3],error_messag:8,param:[9,4],app_messag:[1,3],ella:8,bulk:[1,8],receiv:[0,2,5,8,12,9],heads_up_email:9,longer:9,descript:[4,14],portion:0,opted_out:5,time:[1,2,8,13,5],reply_to:[9,14],resource_url:12,hello:[11,9,14]},objtypes:{"0":"http:get","1":"http:put","2":"http:post","3":"http:delete"},titles:["Search Syntax","Emma API","Pagination","PHP Signup Example","Webhooks","Response","PHP Get Member By Email Example","Searches","Members","Mailings","Fields","Placeholder Syntax","Webhook Usage","Groups","Triggers"],objnames:{"0":"HTTP get","1":"HTTP put","2":"HTTP post","3":"HTTP delete"},filenames:["member_search","index","pagination","php_signup_example","api/external/webhooks","api/external/response","php_get_member_example","api/external/searches","api/external/members","api/external/mailings","api/external/fields","placeholders","webhooks","api/external/groups","api/external/triggers"]}) \ No newline at end of file +Search.setIndex({objects:{"":{"/#account_id/members/#member_id/groups/remove":[8,1,1],"/#account_id/mailings/#mailing_id/winner/#winner_id":[9,2,1],"/#account_id/response/#mailing_id/in_progress":[5,0,1],"/#account_id/members/groups/remove":[8,1,1],"/#account_id/mailings/#mailing_id/searches":[9,0,1],"/#account_id/fields":[10,2,1],"/#account_id/members/#group_id/copy":[8,1,1],"/#account_id/members/status":[8,1,1],"/#account_id/response/#mailing_id/shares/overview":[5,0,1],"/#account_id/webhooks/events":[4,0,1],"/#account_id/members/#member_id/optout":[8,0,1],"/#account_id/webhooks":[4,3,1],"/#account_id/fields/#field_id":[10,3,1],"/#account_id/response/#mailing_id":[5,0,1],"/#account_id/groups/#member_group_id/members/remove":[13,3,1],"/#account_id/searches":[7,2,1],"/#account_id/members/imports":[8,0,1],"/#account_id/forwards/#mailing_id/#member_id":[9,2,1],"/#account_id/response/#mailing_id/customer_share_clicks":[5,0,1],"/#account_id/mailings/#mailing_id/messages/#member_id":[9,0,1],"/#account_id/members/#member_id/mailings":[8,0,1],"/#account_id/groups/#from_group_id/#to_group_id/members/copy":[13,1,1],"/#account_id/triggers":[14,2,1],"/#account_id/triggers/#trigger_id":[14,3,1],"/#account_id/members/delete":[8,1,1],"/#account_id/mailings/#mailing_id/groups":[9,0,1],"/#account_id/response/#mailing_id/forwards":[5,0,1],"/#account_id/members/#member_id":[8,3,1],"/#account_id/triggers/#trigger_id/mailings":[14,0,1],"/#account_id/searches/#search_id/members":[7,0,1],"/#account_id/members/status/:status_from/to/:status_to":[8,1,1],"/#account_id/response/#mailing_id/sends":[5,0,1],"/#account_id/members":[8,3,1],"/#account_id/members/email/:email":[8,0,1],"/#account_id/response/#mailing_id/links":[5,0,1],"/#account_id/searches/#search_id":[7,3,1],"/#account_id/members/imports/#import_id/members":[8,0,1],"/#account_id/fields/#field_id/clear":[10,2,1],"/#account_id/groups/#member_group_id/members":[13,3,1],"/#account_id/members/imports/#import_id":[8,0,1],"/#account_id/response":[5,0,1],"/#account_id/response/#mailing_id/opens":[5,0,1],"/#account_id/members/imports/delete":[8,3,1],"/#account_id/mailings":[9,0,1],"/#account_id/mailings/cancel/#mailing_id":[9,3,1],"/#account_id/mailings/validate":[9,2,1],"/#account_id/response/#mailing_id/deliveries":[5,0,1],"/#account_id/mailings/#mailing_id/members":[9,0,1],"/#account_id/response/#share_id/customer_share":[5,0,1],"/#account_id/webhooks/#webhook_id":[4,3,1],"/#account_id/members/add":[8,2,1],"/#account_id/members/email/optout/:email":[8,1,1],"/#account_id/response/#mailing_id/optouts":[5,0,1],"/#account_id/response/#mailing_id/shares":[5,0,1],"/#account_id/groups/#member_group_id":[13,3,1],"/#account_id/mailings/#mailing_id":[9,3,1],"/#account_id/members/#member_id/groups":[8,3,1],"/#account_id/groups":[13,2,1],"/#account_id/response/#mailing_id/clicks":[5,0,1],"/#account_id/mailings/#mailing_id/headsup":[9,0,1],"/#account_id/response/#mailing_id/signups":[5,0,1],"/#account_id/response/#mailing_id/customer_shares":[5,0,1]}},terms:{all:[0,1,4,5,8,9,10,11,12,13,14],code:[0,1,6,3],change_typ:8,queri:[0,2,4],month:[0,5,9,14],four:[0,5],mile:0,least:0,field_creat:[12,4],link_target:[5,9],content:[11,6,9,3],privat:1,specif:[8,9,4],friendli:5,send:[1,9,4,3,5],customer_share_click:5,those:[5,12],group_upd:[12,4],sent:[5,8,12,9,14],curl_clos:[6,3],brown:[7,8],digit:5,everi:0,string:[0,4,5,7,8,9,10,12,13,14],fals:[3,4,5,6,7,8,9,10,13,14],webhook:[1,12,4],mailing_status:9,trigger_id:14,curlopt_post:3,webview_share_click:5,affect:[7,8],member_add:[12,4],create_mail:9,new_boolean:10,foo:0,level:1,group_delet:[12,4],list:[0,1,2,4,5,7,8,9,10,11,12,13,14],upload:8,iter:2,"try":8,item:2,plaintext_onli:[9,14],div:[4,5,7,8,9,10,13,14],survey_id:14,pleas:[1,8,11,9],prevent:2,work:[1,4],ten:0,sync:10,sign:[0,5,4],past:1,second:[0,7,14],follow:[0,1,4,5,7,9,11,13],further:1,durat:9,click:[0,4,5,7,8,12,14],append:2,even:10,what:1,hide:[4,5,7,8,9,10,13,14],appear:1,from_group_id:13,section:1,current:[8,12,9],delet:[1,4,7,8,9,10,12,13,14],"new":[1,4,5,7,8,9,10,11,13,14],net:[1,2,6,3],delivery_t:8,method:[5,8,13,4,9],can:[0,1,2,4,5,7,8,9,11,12,13],widget:[7,10,8,9,13],hash:0,datematch:0,displai:10,variat:9,gener:[0,8,12,14],onli:[5,8],here:[0,1,3,5,6,8],bodi:9,let:[1,4,10],address:[0,1,8,6,9],along:8,sinc:8,valu:[0,5,7,8,10,11],field_upd:[12,4],search:[0,1,9,7],survei:14,sender:[9,14],larger:2,queue:5,prior:9,action:[0,8],chang:[8,4],campaign:5,newbi:5,appli:[7,14],prefer:0,myemma:[4,5,7,8,9,13],filenam:8,customer_shar:5,"boolean":[0,1,5,7,8,9,10,13,14],curlopt_postfield:3,total:5,jone:[7,5,8,13],select:10,newslett:[7,8,13],describ:7,would:[0,1],regist:4,two:[0,5],next:[0,1],create_webhook:4,few:[5,8],call:[1,2,3,4,6,8,12],criteria:7,member_add_to_group:[12,4],type:[1,3,4,5,6,7,10,9,14],until:2,more:[0,4,7,8,9,13],peopl:5,relat:[1,8,11,9],about:[10,8,12,4,9],notic:8,thide:[4,5,7,8,9,10,13,14],flag:[5,7,8,10,9,14],exce:2,indic:8,examin:1,particular:[1,4,5,8,10,12,9],in_progress:5,origin:9,must:[0,7,13,10],none:9,endpoint:[1,4,5,7,8,9,10,13,14],join:[0,7],hour:0,member_sinc:[0,5,7,8,9,13],uniqu:5,histori:8,soup:7,remain:[0,9],archiv:[5,9],member_optout:[12,4],drill:5,control:[1,11,9],quickstart:1,give:5,forward_mailing_id:5,email_domain:[0,5],share:[0,5,8,12,4],accept:[0,5,7,8,9,10,11,13,14],total_click:5,tag:[11,9],want:[1,12,13,5],occur:[7,12],some_numeric_field:0,delai:14,alwai:0,webhook_event_id:4,cours:1,end:[2,8],first_nam:[1,3,5,7,8,9,10,11,13,14],started_or_finish:[9,14],anoth:[9,13],get:[1,4,5,6,7,8,9,10,13,14],message_open:[12,4],html_bodi:[9,14],share_statu:5,push_offset:14,del_statu:5,tild:5,num_members_upd:8,simpl:0,chri:9,pizza:[7,8],map:0,autent:1,referenc:7,xxxx:6,sundai:0,membership:13,taco:[7,5,8,9,13],mai:12,multipl:[10,8],data:[1,3,4,5,10,12],welcom:11,add_onli:8,"short":0,json_encod:3,optout:[5,8,12,13],num_dupl:8,favorit:10,correspond:[0,1],greet:11,predic:[0,1],issu:[1,10],"12t11":[7,5,8,9,13],combin:7,allow:[0,7,8],some_zipcode_field:0,signed_up:5,order:[5,10],michel:[8,9],mailing_nam:5,checkbox:10,fields_upd:8,over:2,becaus:12,buyer:[7,8,9,13],comma:[9,13],is_dis:14,vari:8,paramet:[2,4,5,7,8,9,10,13,14],widget_typ:10,style:[0,4,5,7,8,9,10,13,14],group:[0,1,3,4,7,8,9,12,13,14],curl_setopt:[6,3],how:[7,1,2,4],import_start:8,better:[13,14],platform:1,pend:[1,9],mailing_list:9,onc:9,mail:[0,1,4,5,8,11,12,9,14],hidden:13,main:1,might:[1,4],link_nam:[5,9],them:[8,9],"return":[0,1,4,5,7,8,9,10,12,13,14],greater:[0,8],thei:[0,9],food:10,timestamp:[0,5,12,9,10],spell:4,dai:0,auth:1,instead:[12,2,8],now:5,down:5,term:[0,1],alex:9,name:[0,4,5,7,8,9,10,11,13,14],edit:[7,1,14,10],curl_getinfo:[6,3],authent:[1,6,4,3],successufulli:4,separ:[1,9,13],each:[1,2,5,9,12,11,13],found:[8,9,4,14],updat:[4,7,8,9,10,12,13,14],mean:0,status:[8,9],domain:0,shortcut_nam:10,weight:[4,5,7,8,9,10,13,14],resum:9,individu:[1,8],hard:[0,5],last_nam:[1,3,5,7,8,9,10,11,13,14],"05t15":5,birthdai:[10,14],expect:1,year:[0,5,9,14],"22t16":[7,14],our:[1,11,12,4,14],happen:[1,4,5],extract:11,short_display_nam:10,special:[0,7,8,13],out:[0,1,4,5,7,8,10,13],variabl:[1,6,3],message_shar:[12,4],network:[5,12],private_api_kei:[1,6,3],check_multipl:10,categori:1,rel:0,print:6,correct:10,statist:8,benjamin:8,qualifi:11,insid:1,advanc:0,contain:[0,5,7,13,10,9],differ:0,standard:[5,9],status_from:8,base:[5,8],recipient_search:9,dictionari:8,put:[4,7,8,9,10,13,14],"13t23":[7,5,8],visit:11,could:1,omit:5,success:[1,3,7,8,9,13],filter:[0,1,7],search_id:7,pagin:[1,2],member_id:[5,7,8,9,12,13],summari:[1,5],assign:9,first:[0,1,10,5],oper:[0,1,7,14],rang:5,notifi:12,directli:0,curlopt_ssl_verifyp:[6,3],curl_init:[6,3],number:[5,2,13,3,10],placehold:[1,11],date:[0,5,8,10,11,14],unlik:9,alreadi:[10,8,9,13],done:8,plaintext_pref:[7,8,9,13],oppos:8,open:[0,3,4,5,6,7,8,12],payload:4,fanci:5,size:2,given:[0,8,9,4],"long":10,script:1,associ:[1,8,9,4,5],system:[8,12,4,14],messag:[4,5,8,12,11,9,14],attach:11,friend:11,curlinfo_http_cod:[6,3],shell:0,option:[0,5,7,8,9,10,13,14],especi:8,signup:[0,1,3,4,5,8,12,14],copi:[8,13],member_upd:[12,4],specifi:[0,2,7,8,10,11,9,14],curl_exec:[6,3],curlopt_httphead:[6,3],member_signup:[12,4],create_search:7,part:[0,9],enclos:11,than:[0,1,2,3,12,13],with_plaintext:9,"02t10":[5,8],"02t11":[5,8],"02t13":5,nathan:8,whenev:8,provid:[1,5,8,12,9,14],remov:[12,8,13,4],mailing_start:4,rate:2,structur:7,charact:9,greg:8,trackabl:11,were:5,minut:0,danc:1,error_count:[7,8,9,13],pre:[4,5,7,8,9,10,13,14],cleaner:1,sai:0,share_id:5,signup_form_id:[0,8,12,9,14],plaintext:[5,9,14],pass:[1,3],ani:[0,1,2,7,8,9],have:[0,5,8,12,9],tabl:5,seen:5,"null":[7,8,13,10,9,14],kevin:[9,14],signup_mail:0,caus:14,inform:[1,4,6,8,9,10,13],object_id:14,note:[1,8,9,4],also:[0,4,5,7,8,9,11,13],exampl:[0,1,3,5,6,7,11],take:[0,4],which:[0,1,4,8,10,12,9,14],some_number_field:0,singl:[0,1,3,4,5,8,10,12,13],excit:11,sure:1,delete_memb:13,normal:9,parent_mail:14,recipient_count:[5,9,14],previou:9,field_id:[10,12,14],last_run_at:7,most:14,pair:11,"class":[4,5,7,8,9,10,13,14],member_group_id:[8,9,13],mcconnel:[9,14],url:[1,3,4,5,6,12],mailing_finish:[12,4],clear:10,request:[1,2,3],doe:[0,5,7,8,10,13],member_status_upd:[12,4],declar:9,tech:4,determin:1,dataset:10,dow:0,recipi:9,"6db0cc7e6fdb2da589b65f29d90c96b6":9,show:[4,5,7,8,9,10,11,13,14],text:[10,11,12],radiu:0,syntax:[0,1,11,9],radio:10,font:[4,5,7,8,9,10,13,14],fine:9,find:[1,6,5],status_to:8,toast:[7,5,8,13],access:[1,5],giant:12,just:[0,9],pretti:8,column_ord:10,explain:[0,1],winner:9,activ:[1,5,7,8,13,9],figur:1,should:[1,2,3,7,8,11,9],templat:[11,14],share_count:5,count:[5,2,3],variou:[8,13],confirmed_opt_in:[7,8,9,13],familiar:1,express:0,account:[1,4,5,7,8,10,13,14],cannot:[8,9,4],progress:9,report:[10,8],requir:[1,7,8,10,11,9],object:[5,13],favorite_food:[5,7,8,13,10,9],bar:0,organ:1,include_archiv:[5,9],"public":1,"default":[5,11,13,4,9],ref_member_id:5,message_share_click:[12,4],through:[1,8,4],where:[0,1,8,11,7],view:1,set:[0,1,2,3,6,8,9,12,13],link_id:[0,5,12,9,14],see:[7,1,8],result:[0,1,2,5,8,9],respons:[0,1,2,4,5,7,8,9,10,13,14],fail:[5,9,4],themselv:2,member_field:[0,7],xxxxx:6,subject:[8,12,9,14],statu:[1,4,5,7,8,9,12,13],fancyonion:11,kei:[0,1,8,11,4],is_schedul:9,message_forward:[12,4],databas:8,user:[0,8,9,13],last_modified_at:[7,8,9,13],addresse:5,written:1,between:[0,7,2],"import":[1,8,12,4,10],subscript:[1,3],entiti:1,curlopt_url:[6,3],email:[0,1,3,5,6,7,8,9,13],wide:14,extend:1,numer:10,http404:[4,5,7,8,9,10,13,14],job:13,entir:[0,8],share_click:5,to_group_id:13,curlopt_returntransf:[6,3],addit:[0,1,8,9,11,13],member_remove_from_group:[12,4],send_start:[0,9,14],protect:1,accident:2,last:[0,5,10],delimit:5,pertain:5,message_click:[12,4],against:0,audienc:[1,8,9],mang:0,http500:14,seri:5,com:[4,5,6,7,8,9,11,13],zip_code_field:0,"03t15":[7,5,8,13],point:1,toni:[7,8],overview:[0,1,11,12,5],period:1,winner_id:9,colon:[7,11],optout_count:[7,8,9,13],suppli:9,cancel:9,tuesdai:0,duplic:5,quit:[5,8],user_id:4,recur:14,headsup:9,addition:[1,2],due:5,been:[1,8,10,5],mark:[8,9],whom:9,tshow:[4,5,7,8,9,10,13,14],trigger:[1,4,5,7,8,9,10,12,13,14],unsubscrib:0,treat:8,interest:[10,4],basic:[0,1,4,8,13,14],monthli:[7,8,13],blob:4,mailing_mailing_id:5,mailing_id:[0,5,8,12,9,14],fire:[8,4,14],xxx:[1,3],argument:[0,5],link_ord:[5,9],input:1,present:7,clicked_uniqu:5,"case":[1,8],look:[1,14,10],frozen:9,easier:12,email_error:[7,8,9,13],defin:[0,10,8,9],"while":0,outcom:5,abov:[0,1,8,7],error:[1,3,6,8,10,13],loop:8,opt:[0,4,5,7,8,13],readi:9,deliv:5,recipient_group:9,equal:0,itself:0,new_statu:12,webhook_id:4,recipient_memb:9,perform:8,make:[1,12,6,10],belong:[0,8,4],same:4,check:[8,6,9],member:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14],handl:1,html:9,split:9,document:[1,11,12],complet:[1,3,4,6,8,9],week:0,finish:[5,12,4],http:[1,2,3,4,5,6,11,9],href:[4,5,7,8,9,10,13,14],nest:0,someon:4,rais:[4,5,7,8,9,10,13,14],initi:[10,9],php:[1,6,3],bob:[7,5],recent:1,kept:11,center:0,min:5,well:5,inherit:9,person:9,mailing_typ:[9,14],without:0,thi:[0,1,4,5,7,8,9,10,12,13,14],undefin:0,http_code:[1,6,3],latest:11,construct:[0,7,9],identifi:8,paus:9,execut:[1,3],less:0,resp:[4,5,7,8,9,10,13,14],"_post":[1,3],aspect:13,recipient_email:9,source_filenam:8,yet:5,smith:[7,5,8,9,13],"12t09":[7,8],display_nam:10,easi:[10,12],"01t00":8,had:0,littl:1,blog:4,add:[12,1,8,13,3],other:[1,8,9,3,5],curlopt_userpwd:[6,3],import_finish:[8,12,4],schedul:9,els:[1,6,3],save:7,match:[0,7],build:1,sanit:1,applic:[1,6,3],account_id:[1,3,4,5,6,7,8,9,10,12,13,14],disposit:1,crud:[8,13,14],print_r:[6,3],mailing_statu:[9,14],know:[5,4],background:13,parent_mailing_id:[9,14],bit:1,insert:11,emma:[1,5,7,8,9,12,13],like:1,onion:11,deprec:4,arbitrari:8,manual:9,integ:[1,8,14,10,5],public_kei:4,api:[1,2,6,12,3],either:[0,5,7],bunch:0,output:9,group_id:[1,8,12,3],soft:[0,5],manag:[0,1,13,4],import_id:[8,12],www:[5,9],old:7,deal:[8,13],captur:1,arrai:[0,1,3,5,6,7,8,9,10,12,13,14],some:[1,11,5],field_delet:[12,4],certain:12,intern:10,sampl:[1,4,5,7,8,9,10,13,14],elaps:[2,9],home:11,deleted_at:[7,8,13,10,9,14],some_string_field:0,librari:11,bounce_count:[7,8,9,13],confirm:8,broad:12,per:5,send_finish:[9,14],larg:[0,2],condit:7,three:9,network_cod:12,localhost:9,refer:[5,7,8,13,10,9],with_html_bodi:9,who:[0,5],bold:[4,5,7,8,9,10,13,14],event_typ:14,inspect:1,usag:[1,8,12],num_members_ad:8,fulli:11,from:[1,4,8,9,12,13,14],post:[1,3,4,7,8,9,10,12,13,14],group_creat:[12,4],gladi:[7,5,8,13],actual:5,zip:0,groups_upd:8,column:10,page:2,includ:[1,5,7,8,9,10,13],webview:9,disabl:[9,14],block:[1,2],yyyi:5,member_data:[1,3],glob:0,bounc:[0,5],within:0,encod:[9,4],delivery_typ:[5,8],compos:0,webview_shar:5,field_typ:10,active_count:[7,8,9,13],public_webview_url:9,pivot:5,your:[1,4,5,7,8,9,10,13],websit:11,span:[4,5,7,8,9,10,13,14],wai:[1,12],area:1,overus:2,group_nam:[8,12,13,9],support:12,unique_click:5,json:[0,1,3,4,6,7],fast:8,custom:[5,8,11,10],avail:[0,11,4],start:[1,2,8,4],interfac:12,send_at:[9,14],exceed:2,"var":3,interv:[0,14],deliveri:5,head:[6,9,3],form:[1,3,4,6,8,10,14],enough:2,forc:1,forward:[0,4,5,8,12,9],"31st":0,group_typ:[8,9,13],push_offset_unit:14,link:[0,4,5,11,9,14],line:[1,5],realli:1,"true":[0,1,2,3,4,6,7,8,9,10,13,14],archived_t:[9,14],info:4,pull:2,made:1,possibl:[5,8,12],whether:8,maximum:2,tell:12,http403:9,record:[0,7,8],below:[0,1,8,12],http400:[7,8,9],limit:[5,2,8,9],some_array_field:0,otherwis:[10,8],start_t:14,mta:5,connect:[6,3],notif:9,creat:[4,5,7,9,10,12,13,14],"int":5,retriev:[7,1,2,8,9],email_us:[0,5],repres:5,exist:[0,4,5,7,8,10,13],behavior:11,curl:[1,6],lentil:7,probabl:14,echo:[1,3],successfulli:[5,8,9],mailing_subject:12,grp:13,todo:11,when:[8,12,4,9],detail:[1,4,7,8,9,10,13],invalid:[7,8,9],event:[4,7,8,13,12,9,14],field:[0,1,3,4,5,7,8,9,10,11,12,13,14],valid:[5,8,9,13],futur:1,num_skip:8,test:[5,6,7,13,9,14],ignor:8,you:[0,1,2,4,5,7,8,9,10,11,12,13],member_delet:[12,4],member_status_id:[7,5,8,9,13],public_api_kei:[1,6,3],stat:[5,9],claus:[0,7],event_nam:[12,4],e2ma:[1,2,6,3],error_messag:8,param:[9,4],app_messag:[1,3],ella:8,bulk:[1,8],receiv:[0,2,5,8,12,9],heads_up_email:9,longer:9,descript:[4,14],portion:0,opted_out:5,time:[1,2,8,13,5],reply_to:[9,14],resource_url:12,hello:[11,9,14]},objtypes:{"0":"http:get","1":"http:put","2":"http:post","3":"http:delete"},titles:["Search Syntax","Emma API","Pagination","PHP Signup Example","Webhooks","Response","PHP Get Member By Email Example","Searches","Members","Mailings","Fields","Placeholder Syntax","Webhook Usage","Groups","Triggers"],objnames:{"0":"HTTP get","1":"HTTP put","2":"HTTP post","3":"HTTP delete"},filenames:["member_search","index","pagination","php_signup_example","api/external/webhooks","api/external/response","php_get_member_example","api/external/searches","api/external/members","api/external/mailings","api/external/fields","placeholders","webhooks","api/external/groups","api/external/triggers"]}) \ No newline at end of file diff --git a/webhooks.html b/webhooks.html index 8cf440b..751d9fe 100644 --- a/webhooks.html +++ b/webhooks.html @@ -507,7 +507,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 11, 2013 at 11:49 AM. + Last updated on Jan 22, 2013 at 04:25 PM. </div> </body> </html> \ No newline at end of file From 90d1ba67db0be239f962dedcdb717b747c6284e5 Mon Sep 17 00:00:00 2001 From: Hernan Ciudad <hernan@myemma.com> Date: Thu, 24 Jan 2013 16:21:05 -0600 Subject: [PATCH 026/219] Update audience documentation. --- api/external/fields.html | 2 +- api/external/groups.html | 2 +- api/external/mailings.html | 5 +++-- api/external/members.html | 2 +- api/external/response.html | 2 +- api/external/searches.html | 4 ++-- api/external/triggers.html | 8 ++++---- api/external/webhooks.html | 2 +- genindex.html | 2 +- http-routingtable.html | 2 +- index.html | 2 +- member_search.html | 2 +- pagination.html | 2 +- php_get_member_example.html | 2 +- php_signup_example.html | 2 +- placeholders.html | 2 +- search.html | 2 +- searchindex.js | 2 +- webhooks.html | 2 +- 19 files changed, 25 insertions(+), 24 deletions(-) diff --git a/api/external/fields.html b/api/external/fields.html index ed9acd2..76fce02 100644 --- a/api/external/fields.html +++ b/api/external/fields.html @@ -421,7 +421,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 22, 2013 at 04:25 PM. + Last updated on Jan 24, 2013 at 04:21 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/groups.html b/api/external/groups.html index d9fcf98..9391b8e 100644 --- a/api/external/groups.html +++ b/api/external/groups.html @@ -713,7 +713,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 22, 2013 at 04:25 PM. + Last updated on Jan 24, 2013 at 04:21 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/mailings.html b/api/external/mailings.html index 3d60924..f744f2d 100644 --- a/api/external/mailings.html +++ b/api/external/mailings.html @@ -330,7 +330,8 @@ <h1>Mailings<a class="headerlink" href="#mailings" title="Permalink to this head <dt id="get--#account_id-mailings-#mailing_id-members"> <tt class="descname">GET </tt><tt class="descname">/#account_id/mailings/#mailing_id/members</tt><a class="headerlink" href="#get--#account_id-mailings-#mailing_id-members" title="Permalink to this definition">¶</a></dt> <dd><p><tt class="docutils literal"><span class="pre">GET</span> <span class="pre">/#account_id/mailings/#mailing_id/members</span></tt></p> -<p>Get the list of members to whom the given mailing was sent.</p> +<p>Get the list of members to whom the given mailing was sent. This +does not include groups or searches.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> @@ -823,7 +824,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 22, 2013 at 04:25 PM. + Last updated on Jan 24, 2013 at 04:21 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/members.html b/api/external/members.html index ef52bdc..1a20b42 100644 --- a/api/external/members.html +++ b/api/external/members.html @@ -1238,7 +1238,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 22, 2013 at 04:25 PM. + Last updated on Jan 24, 2013 at 04:21 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/response.html b/api/external/response.html index 441dafd..8456d9c 100644 --- a/api/external/response.html +++ b/api/external/response.html @@ -1035,7 +1035,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 22, 2013 at 04:25 PM. + Last updated on Jan 24, 2013 at 04:21 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/searches.html b/api/external/searches.html index 3ab901c..aa5a44a 100644 --- a/api/external/searches.html +++ b/api/external/searches.html @@ -201,7 +201,7 @@ <h1>Searches<a class="headerlink" href="#searches" title="Permalink to this head "name": "Test Search", "criteria": "[\"or\", [\"group\", \"eq\", \"Monthly Newsletter\"],[\"group\", \"eq\", \"Widget Buyers\"]]", "deleted_at": null, - "last_run_at": "@D:2013-01-22T16:25:01", + "last_run_at": "@D:2013-01-24T16:20:59", "active_count": 2, "account_id": 100 } @@ -517,7 +517,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 22, 2013 at 04:25 PM. + Last updated on Jan 24, 2013 at 04:21 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/triggers.html b/api/external/triggers.html index 970bd25..b1d42fa 100644 --- a/api/external/triggers.html +++ b/api/external/triggers.html @@ -149,7 +149,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": 203, "push_offset_units": "0:-14:0:0", - "start_ts": "@D:2013-01-22T16:24:58", + "start_ts": "@D:2013-01-24T16:20:56", "trigger_id": 100, "signups": null, "push_offset": "@I:-1209600.0", @@ -190,7 +190,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": null, "push_offset_units": "0:3:0:0", - "start_ts": "@D:2013-01-22T16:24:58", + "start_ts": "@D:2013-01-24T16:20:56", "trigger_id": 101, "signups": [ 1, @@ -329,7 +329,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": 203, "push_offset_units": "0:-14:0:0", - "start_ts": "@D:2013-01-22T16:24:58", + "start_ts": "@D:2013-01-24T16:20:56", "trigger_id": 100, "signups": null, "push_offset": "@I:-1209600.0", @@ -505,7 +505,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 22, 2013 at 04:25 PM. + Last updated on Jan 24, 2013 at 04:21 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/webhooks.html b/api/external/webhooks.html index 0520f7d..59172cc 100644 --- a/api/external/webhooks.html +++ b/api/external/webhooks.html @@ -494,7 +494,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 22, 2013 at 04:25 PM. + Last updated on Jan 24, 2013 at 04:21 PM. </div> </body> </html> \ No newline at end of file diff --git a/genindex.html b/genindex.html index 473aa35..c2a0d54 100644 --- a/genindex.html +++ b/genindex.html @@ -144,7 +144,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 22, 2013 at 04:25 PM. + Last updated on Jan 24, 2013 at 04:21 PM. </div> </body> </html> \ No newline at end of file diff --git a/http-routingtable.html b/http-routingtable.html index b9062df..786b4f0 100644 --- a/http-routingtable.html +++ b/http-routingtable.html @@ -607,7 +607,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 22, 2013 at 04:25 PM. + Last updated on Jan 24, 2013 at 04:21 PM. </div> </body> </html> \ No newline at end of file diff --git a/index.html b/index.html index 6ba5487..00d04a8 100644 --- a/index.html +++ b/index.html @@ -311,7 +311,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 22, 2013 at 04:25 PM. + Last updated on Jan 24, 2013 at 04:21 PM. </div> </body> </html> \ No newline at end of file diff --git a/member_search.html b/member_search.html index 29c59de..d8055f6 100644 --- a/member_search.html +++ b/member_search.html @@ -256,7 +256,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 22, 2013 at 04:25 PM. + Last updated on Jan 24, 2013 at 04:21 PM. </div> </body> </html> \ No newline at end of file diff --git a/pagination.html b/pagination.html index d9d467a..20d50c2 100644 --- a/pagination.html +++ b/pagination.html @@ -168,7 +168,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 22, 2013 at 04:25 PM. + Last updated on Jan 24, 2013 at 04:21 PM. </div> </body> </html> \ No newline at end of file diff --git a/php_get_member_example.html b/php_get_member_example.html index 1bd13e3..48e7c81 100644 --- a/php_get_member_example.html +++ b/php_get_member_example.html @@ -183,7 +183,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 22, 2013 at 04:25 PM. + Last updated on Jan 24, 2013 at 04:21 PM. </div> </body> </html> \ No newline at end of file diff --git a/php_signup_example.html b/php_signup_example.html index 9783732..588ba1f 100644 --- a/php_signup_example.html +++ b/php_signup_example.html @@ -205,7 +205,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 22, 2013 at 04:25 PM. + Last updated on Jan 24, 2013 at 04:21 PM. </div> </body> </html> \ No newline at end of file diff --git a/placeholders.html b/placeholders.html index 0543077..1ac7be0 100644 --- a/placeholders.html +++ b/placeholders.html @@ -183,7 +183,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 22, 2013 at 04:25 PM. + Last updated on Jan 24, 2013 at 04:21 PM. </div> </body> </html> \ No newline at end of file diff --git a/search.html b/search.html index a7329a9..025b6de 100644 --- a/search.html +++ b/search.html @@ -153,7 +153,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 22, 2013 at 04:25 PM. + Last updated on Jan 24, 2013 at 04:21 PM. </div> </body> </html> \ No newline at end of file diff --git a/searchindex.js b/searchindex.js index b29402d..02bcdcf 100644 --- a/searchindex.js +++ b/searchindex.js @@ -1 +1 @@ -Search.setIndex({objects:{"":{"/#account_id/members/#member_id/groups/remove":[8,1,1],"/#account_id/mailings/#mailing_id/winner/#winner_id":[9,2,1],"/#account_id/response/#mailing_id/in_progress":[5,0,1],"/#account_id/members/groups/remove":[8,1,1],"/#account_id/mailings/#mailing_id/searches":[9,0,1],"/#account_id/fields":[10,2,1],"/#account_id/members/#group_id/copy":[8,1,1],"/#account_id/members/status":[8,1,1],"/#account_id/response/#mailing_id/shares/overview":[5,0,1],"/#account_id/webhooks/events":[4,0,1],"/#account_id/members/#member_id/optout":[8,0,1],"/#account_id/webhooks":[4,3,1],"/#account_id/fields/#field_id":[10,3,1],"/#account_id/response/#mailing_id":[5,0,1],"/#account_id/groups/#member_group_id/members/remove":[13,3,1],"/#account_id/searches":[7,2,1],"/#account_id/members/imports":[8,0,1],"/#account_id/forwards/#mailing_id/#member_id":[9,2,1],"/#account_id/response/#mailing_id/customer_share_clicks":[5,0,1],"/#account_id/mailings/#mailing_id/messages/#member_id":[9,0,1],"/#account_id/members/#member_id/mailings":[8,0,1],"/#account_id/groups/#from_group_id/#to_group_id/members/copy":[13,1,1],"/#account_id/triggers":[14,2,1],"/#account_id/triggers/#trigger_id":[14,3,1],"/#account_id/members/delete":[8,1,1],"/#account_id/mailings/#mailing_id/groups":[9,0,1],"/#account_id/response/#mailing_id/forwards":[5,0,1],"/#account_id/members/#member_id":[8,3,1],"/#account_id/triggers/#trigger_id/mailings":[14,0,1],"/#account_id/searches/#search_id/members":[7,0,1],"/#account_id/members/status/:status_from/to/:status_to":[8,1,1],"/#account_id/response/#mailing_id/sends":[5,0,1],"/#account_id/members":[8,3,1],"/#account_id/members/email/:email":[8,0,1],"/#account_id/response/#mailing_id/links":[5,0,1],"/#account_id/searches/#search_id":[7,3,1],"/#account_id/members/imports/#import_id/members":[8,0,1],"/#account_id/fields/#field_id/clear":[10,2,1],"/#account_id/groups/#member_group_id/members":[13,3,1],"/#account_id/members/imports/#import_id":[8,0,1],"/#account_id/response":[5,0,1],"/#account_id/response/#mailing_id/opens":[5,0,1],"/#account_id/members/imports/delete":[8,3,1],"/#account_id/mailings":[9,0,1],"/#account_id/mailings/cancel/#mailing_id":[9,3,1],"/#account_id/mailings/validate":[9,2,1],"/#account_id/response/#mailing_id/deliveries":[5,0,1],"/#account_id/mailings/#mailing_id/members":[9,0,1],"/#account_id/response/#share_id/customer_share":[5,0,1],"/#account_id/webhooks/#webhook_id":[4,3,1],"/#account_id/members/add":[8,2,1],"/#account_id/members/email/optout/:email":[8,1,1],"/#account_id/response/#mailing_id/optouts":[5,0,1],"/#account_id/response/#mailing_id/shares":[5,0,1],"/#account_id/groups/#member_group_id":[13,3,1],"/#account_id/mailings/#mailing_id":[9,3,1],"/#account_id/members/#member_id/groups":[8,3,1],"/#account_id/groups":[13,2,1],"/#account_id/response/#mailing_id/clicks":[5,0,1],"/#account_id/mailings/#mailing_id/headsup":[9,0,1],"/#account_id/response/#mailing_id/signups":[5,0,1],"/#account_id/response/#mailing_id/customer_shares":[5,0,1]}},terms:{all:[0,1,4,5,8,9,10,11,12,13,14],code:[0,1,6,3],change_typ:8,queri:[0,2,4],month:[0,5,9,14],four:[0,5],mile:0,least:0,field_creat:[12,4],link_target:[5,9],content:[11,6,9,3],privat:1,specif:[8,9,4],friendli:5,send:[1,9,4,3,5],customer_share_click:5,those:[5,12],group_upd:[12,4],sent:[5,8,12,9,14],curl_clos:[6,3],brown:[7,8],digit:5,everi:0,string:[0,4,5,7,8,9,10,12,13,14],fals:[3,4,5,6,7,8,9,10,13,14],webhook:[1,12,4],mailing_status:9,trigger_id:14,curlopt_post:3,webview_share_click:5,affect:[7,8],member_add:[12,4],create_mail:9,new_boolean:10,foo:0,level:1,group_delet:[12,4],list:[0,1,2,4,5,7,8,9,10,11,12,13,14],upload:8,iter:2,"try":8,item:2,plaintext_onli:[9,14],div:[4,5,7,8,9,10,13,14],survey_id:14,pleas:[1,8,11,9],prevent:2,work:[1,4],ten:0,sync:10,sign:[0,5,4],past:1,second:[0,7,14],follow:[0,1,4,5,7,9,11,13],further:1,durat:9,click:[0,4,5,7,8,12,14],append:2,even:10,what:1,hide:[4,5,7,8,9,10,13,14],appear:1,from_group_id:13,section:1,current:[8,12,9],delet:[1,4,7,8,9,10,12,13,14],"new":[1,4,5,7,8,9,10,11,13,14],net:[1,2,6,3],delivery_t:8,method:[5,8,13,4,9],can:[0,1,2,4,5,7,8,9,11,12,13],widget:[7,10,8,9,13],hash:0,datematch:0,displai:10,variat:9,gener:[0,8,12,14],onli:[5,8],here:[0,1,3,5,6,8],bodi:9,let:[1,4,10],address:[0,1,8,6,9],along:8,sinc:8,valu:[0,5,7,8,10,11],field_upd:[12,4],search:[0,1,9,7],survei:14,sender:[9,14],larger:2,queue:5,prior:9,action:[0,8],chang:[8,4],campaign:5,newbi:5,appli:[7,14],prefer:0,myemma:[4,5,7,8,9,13],filenam:8,customer_shar:5,"boolean":[0,1,5,7,8,9,10,13,14],curlopt_postfield:3,total:5,jone:[7,5,8,13],select:10,newslett:[7,8,13],describ:7,would:[0,1],regist:4,two:[0,5],next:[0,1],create_webhook:4,few:[5,8],call:[1,2,3,4,6,8,12],criteria:7,member_add_to_group:[12,4],type:[1,3,4,5,6,7,10,9,14],until:2,more:[0,4,7,8,9,13],peopl:5,relat:[1,8,11,9],about:[10,8,12,4,9],notic:8,thide:[4,5,7,8,9,10,13,14],flag:[5,7,8,10,9,14],exce:2,indic:8,examin:1,particular:[1,4,5,8,10,12,9],in_progress:5,origin:9,must:[0,7,13,10],none:9,endpoint:[1,4,5,7,8,9,10,13,14],join:[0,7],hour:0,member_sinc:[0,5,7,8,9,13],uniqu:5,histori:8,soup:7,remain:[0,9],archiv:[5,9],member_optout:[12,4],drill:5,control:[1,11,9],quickstart:1,give:5,forward_mailing_id:5,email_domain:[0,5],share:[0,5,8,12,4],accept:[0,5,7,8,9,10,11,13,14],total_click:5,tag:[11,9],want:[1,12,13,5],occur:[7,12],some_numeric_field:0,delai:14,alwai:0,webhook_event_id:4,cours:1,end:[2,8],first_nam:[1,3,5,7,8,9,10,11,13,14],started_or_finish:[9,14],anoth:[9,13],get:[1,4,5,6,7,8,9,10,13,14],message_open:[12,4],html_bodi:[9,14],share_statu:5,push_offset:14,del_statu:5,tild:5,num_members_upd:8,simpl:0,chri:9,pizza:[7,8],map:0,autent:1,referenc:7,xxxx:6,sundai:0,membership:13,taco:[7,5,8,9,13],mai:12,multipl:[10,8],data:[1,3,4,5,10,12],welcom:11,add_onli:8,"short":0,json_encod:3,optout:[5,8,12,13],num_dupl:8,favorit:10,correspond:[0,1],greet:11,predic:[0,1],issu:[1,10],"12t11":[7,5,8,9,13],combin:7,allow:[0,7,8],some_zipcode_field:0,signed_up:5,order:[5,10],michel:[8,9],mailing_nam:5,checkbox:10,fields_upd:8,over:2,becaus:12,buyer:[7,8,9,13],comma:[9,13],is_dis:14,vari:8,paramet:[2,4,5,7,8,9,10,13,14],widget_typ:10,style:[0,4,5,7,8,9,10,13,14],group:[0,1,3,4,7,8,9,12,13,14],curl_setopt:[6,3],how:[7,1,2,4],import_start:8,better:[13,14],platform:1,pend:[1,9],mailing_list:9,onc:9,mail:[0,1,4,5,8,11,12,9,14],hidden:13,main:1,might:[1,4],link_nam:[5,9],them:[8,9],"return":[0,1,4,5,7,8,9,10,12,13,14],greater:[0,8],thei:[0,9],food:10,timestamp:[0,5,12,9,10],spell:4,dai:0,auth:1,instead:[12,2,8],now:5,down:5,term:[0,1],alex:9,name:[0,4,5,7,8,9,10,11,13,14],edit:[7,1,14,10],curl_getinfo:[6,3],authent:[1,6,4,3],successufulli:4,separ:[1,9,13],each:[1,2,5,9,12,11,13],found:[8,9,4,14],updat:[4,7,8,9,10,12,13,14],mean:0,status:[8,9],domain:0,shortcut_nam:10,weight:[4,5,7,8,9,10,13,14],resum:9,individu:[1,8],hard:[0,5],last_nam:[1,3,5,7,8,9,10,11,13,14],"05t15":5,birthdai:[10,14],expect:1,year:[0,5,9,14],"22t16":[7,14],our:[1,11,12,4,14],happen:[1,4,5],extract:11,short_display_nam:10,special:[0,7,8,13],out:[0,1,4,5,7,8,10,13],variabl:[1,6,3],message_shar:[12,4],network:[5,12],private_api_kei:[1,6,3],check_multipl:10,categori:1,rel:0,print:6,correct:10,statist:8,benjamin:8,qualifi:11,insid:1,advanc:0,contain:[0,5,7,13,10,9],differ:0,standard:[5,9],status_from:8,base:[5,8],recipient_search:9,dictionari:8,put:[4,7,8,9,10,13,14],"13t23":[7,5,8],visit:11,could:1,omit:5,success:[1,3,7,8,9,13],filter:[0,1,7],search_id:7,pagin:[1,2],member_id:[5,7,8,9,12,13],summari:[1,5],assign:9,first:[0,1,10,5],oper:[0,1,7,14],rang:5,notifi:12,directli:0,curlopt_ssl_verifyp:[6,3],curl_init:[6,3],number:[5,2,13,3,10],placehold:[1,11],date:[0,5,8,10,11,14],unlik:9,alreadi:[10,8,9,13],done:8,plaintext_pref:[7,8,9,13],oppos:8,open:[0,3,4,5,6,7,8,12],payload:4,fanci:5,size:2,given:[0,8,9,4],"long":10,script:1,associ:[1,8,9,4,5],system:[8,12,4,14],messag:[4,5,8,12,11,9,14],attach:11,friend:11,curlinfo_http_cod:[6,3],shell:0,option:[0,5,7,8,9,10,13,14],especi:8,signup:[0,1,3,4,5,8,12,14],copi:[8,13],member_upd:[12,4],specifi:[0,2,7,8,10,11,9,14],curl_exec:[6,3],curlopt_httphead:[6,3],member_signup:[12,4],create_search:7,part:[0,9],enclos:11,than:[0,1,2,3,12,13],with_plaintext:9,"02t10":[5,8],"02t11":[5,8],"02t13":5,nathan:8,whenev:8,provid:[1,5,8,12,9,14],remov:[12,8,13,4],mailing_start:4,rate:2,structur:7,charact:9,greg:8,trackabl:11,were:5,minut:0,danc:1,error_count:[7,8,9,13],pre:[4,5,7,8,9,10,13,14],cleaner:1,sai:0,share_id:5,signup_form_id:[0,8,12,9,14],plaintext:[5,9,14],pass:[1,3],ani:[0,1,2,7,8,9],have:[0,5,8,12,9],tabl:5,seen:5,"null":[7,8,13,10,9,14],kevin:[9,14],signup_mail:0,caus:14,inform:[1,4,6,8,9,10,13],object_id:14,note:[1,8,9,4],also:[0,4,5,7,8,9,11,13],exampl:[0,1,3,5,6,7,11],take:[0,4],which:[0,1,4,8,10,12,9,14],some_number_field:0,singl:[0,1,3,4,5,8,10,12,13],excit:11,sure:1,delete_memb:13,normal:9,parent_mail:14,recipient_count:[5,9,14],previou:9,field_id:[10,12,14],last_run_at:7,most:14,pair:11,"class":[4,5,7,8,9,10,13,14],member_group_id:[8,9,13],mcconnel:[9,14],url:[1,3,4,5,6,12],mailing_finish:[12,4],clear:10,request:[1,2,3],doe:[0,5,7,8,10,13],member_status_upd:[12,4],declar:9,tech:4,determin:1,dataset:10,dow:0,recipi:9,"6db0cc7e6fdb2da589b65f29d90c96b6":9,show:[4,5,7,8,9,10,11,13,14],text:[10,11,12],radiu:0,syntax:[0,1,11,9],radio:10,font:[4,5,7,8,9,10,13,14],fine:9,find:[1,6,5],status_to:8,toast:[7,5,8,13],access:[1,5],giant:12,just:[0,9],pretti:8,column_ord:10,explain:[0,1],winner:9,activ:[1,5,7,8,13,9],figur:1,should:[1,2,3,7,8,11,9],templat:[11,14],share_count:5,count:[5,2,3],variou:[8,13],confirmed_opt_in:[7,8,9,13],familiar:1,express:0,account:[1,4,5,7,8,10,13,14],cannot:[8,9,4],progress:9,report:[10,8],requir:[1,7,8,10,11,9],object:[5,13],favorite_food:[5,7,8,13,10,9],bar:0,organ:1,include_archiv:[5,9],"public":1,"default":[5,11,13,4,9],ref_member_id:5,message_share_click:[12,4],through:[1,8,4],where:[0,1,8,11,7],view:1,set:[0,1,2,3,6,8,9,12,13],link_id:[0,5,12,9,14],see:[7,1,8],result:[0,1,2,5,8,9],respons:[0,1,2,4,5,7,8,9,10,13,14],fail:[5,9,4],themselv:2,member_field:[0,7],xxxxx:6,subject:[8,12,9,14],statu:[1,4,5,7,8,9,12,13],fancyonion:11,kei:[0,1,8,11,4],is_schedul:9,message_forward:[12,4],databas:8,user:[0,8,9,13],last_modified_at:[7,8,9,13],addresse:5,written:1,between:[0,7,2],"import":[1,8,12,4,10],subscript:[1,3],entiti:1,curlopt_url:[6,3],email:[0,1,3,5,6,7,8,9,13],wide:14,extend:1,numer:10,http404:[4,5,7,8,9,10,13,14],job:13,entir:[0,8],share_click:5,to_group_id:13,curlopt_returntransf:[6,3],addit:[0,1,8,9,11,13],member_remove_from_group:[12,4],send_start:[0,9,14],protect:1,accident:2,last:[0,5,10],delimit:5,pertain:5,message_click:[12,4],against:0,audienc:[1,8,9],mang:0,http500:14,seri:5,com:[4,5,6,7,8,9,11,13],zip_code_field:0,"03t15":[7,5,8,13],point:1,toni:[7,8],overview:[0,1,11,12,5],period:1,winner_id:9,colon:[7,11],optout_count:[7,8,9,13],suppli:9,cancel:9,tuesdai:0,duplic:5,quit:[5,8],user_id:4,recur:14,headsup:9,addition:[1,2],due:5,been:[1,8,10,5],mark:[8,9],whom:9,tshow:[4,5,7,8,9,10,13,14],trigger:[1,4,5,7,8,9,10,12,13,14],unsubscrib:0,treat:8,interest:[10,4],basic:[0,1,4,8,13,14],monthli:[7,8,13],blob:4,mailing_mailing_id:5,mailing_id:[0,5,8,12,9,14],fire:[8,4,14],xxx:[1,3],argument:[0,5],link_ord:[5,9],input:1,present:7,clicked_uniqu:5,"case":[1,8],look:[1,14,10],frozen:9,easier:12,email_error:[7,8,9,13],defin:[0,10,8,9],"while":0,outcom:5,abov:[0,1,8,7],error:[1,3,6,8,10,13],loop:8,opt:[0,4,5,7,8,13],readi:9,deliv:5,recipient_group:9,equal:0,itself:0,new_statu:12,webhook_id:4,recipient_memb:9,perform:8,make:[1,12,6,10],belong:[0,8,4],same:4,check:[8,6,9],member:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14],handl:1,html:9,split:9,document:[1,11,12],complet:[1,3,4,6,8,9],week:0,finish:[5,12,4],http:[1,2,3,4,5,6,11,9],href:[4,5,7,8,9,10,13,14],nest:0,someon:4,rais:[4,5,7,8,9,10,13,14],initi:[10,9],php:[1,6,3],bob:[7,5],recent:1,kept:11,center:0,min:5,well:5,inherit:9,person:9,mailing_typ:[9,14],without:0,thi:[0,1,4,5,7,8,9,10,12,13,14],undefin:0,http_code:[1,6,3],latest:11,construct:[0,7,9],identifi:8,paus:9,execut:[1,3],less:0,resp:[4,5,7,8,9,10,13,14],"_post":[1,3],aspect:13,recipient_email:9,source_filenam:8,yet:5,smith:[7,5,8,9,13],"12t09":[7,8],display_nam:10,easi:[10,12],"01t00":8,had:0,littl:1,blog:4,add:[12,1,8,13,3],other:[1,8,9,3,5],curlopt_userpwd:[6,3],import_finish:[8,12,4],schedul:9,els:[1,6,3],save:7,match:[0,7],build:1,sanit:1,applic:[1,6,3],account_id:[1,3,4,5,6,7,8,9,10,12,13,14],disposit:1,crud:[8,13,14],print_r:[6,3],mailing_statu:[9,14],know:[5,4],background:13,parent_mailing_id:[9,14],bit:1,insert:11,emma:[1,5,7,8,9,12,13],like:1,onion:11,deprec:4,arbitrari:8,manual:9,integ:[1,8,14,10,5],public_kei:4,api:[1,2,6,12,3],either:[0,5,7],bunch:0,output:9,group_id:[1,8,12,3],soft:[0,5],manag:[0,1,13,4],import_id:[8,12],www:[5,9],old:7,deal:[8,13],captur:1,arrai:[0,1,3,5,6,7,8,9,10,12,13,14],some:[1,11,5],field_delet:[12,4],certain:12,intern:10,sampl:[1,4,5,7,8,9,10,13,14],elaps:[2,9],home:11,deleted_at:[7,8,13,10,9,14],some_string_field:0,librari:11,bounce_count:[7,8,9,13],confirm:8,broad:12,per:5,send_finish:[9,14],larg:[0,2],condit:7,three:9,network_cod:12,localhost:9,refer:[5,7,8,13,10,9],with_html_bodi:9,who:[0,5],bold:[4,5,7,8,9,10,13,14],event_typ:14,inspect:1,usag:[1,8,12],num_members_ad:8,fulli:11,from:[1,4,8,9,12,13,14],post:[1,3,4,7,8,9,10,12,13,14],group_creat:[12,4],gladi:[7,5,8,13],actual:5,zip:0,groups_upd:8,column:10,page:2,includ:[1,5,7,8,9,10,13],webview:9,disabl:[9,14],block:[1,2],yyyi:5,member_data:[1,3],glob:0,bounc:[0,5],within:0,encod:[9,4],delivery_typ:[5,8],compos:0,webview_shar:5,field_typ:10,active_count:[7,8,9,13],public_webview_url:9,pivot:5,your:[1,4,5,7,8,9,10,13],websit:11,span:[4,5,7,8,9,10,13,14],wai:[1,12],area:1,overus:2,group_nam:[8,12,13,9],support:12,unique_click:5,json:[0,1,3,4,6,7],fast:8,custom:[5,8,11,10],avail:[0,11,4],start:[1,2,8,4],interfac:12,send_at:[9,14],exceed:2,"var":3,interv:[0,14],deliveri:5,head:[6,9,3],form:[1,3,4,6,8,10,14],enough:2,forc:1,forward:[0,4,5,8,12,9],"31st":0,group_typ:[8,9,13],push_offset_unit:14,link:[0,4,5,11,9,14],line:[1,5],realli:1,"true":[0,1,2,3,4,6,7,8,9,10,13,14],archived_t:[9,14],info:4,pull:2,made:1,possibl:[5,8,12],whether:8,maximum:2,tell:12,http403:9,record:[0,7,8],below:[0,1,8,12],http400:[7,8,9],limit:[5,2,8,9],some_array_field:0,otherwis:[10,8],start_t:14,mta:5,connect:[6,3],notif:9,creat:[4,5,7,9,10,12,13,14],"int":5,retriev:[7,1,2,8,9],email_us:[0,5],repres:5,exist:[0,4,5,7,8,10,13],behavior:11,curl:[1,6],lentil:7,probabl:14,echo:[1,3],successfulli:[5,8,9],mailing_subject:12,grp:13,todo:11,when:[8,12,4,9],detail:[1,4,7,8,9,10,13],invalid:[7,8,9],event:[4,7,8,13,12,9,14],field:[0,1,3,4,5,7,8,9,10,11,12,13,14],valid:[5,8,9,13],futur:1,num_skip:8,test:[5,6,7,13,9,14],ignor:8,you:[0,1,2,4,5,7,8,9,10,11,12,13],member_delet:[12,4],member_status_id:[7,5,8,9,13],public_api_kei:[1,6,3],stat:[5,9],claus:[0,7],event_nam:[12,4],e2ma:[1,2,6,3],error_messag:8,param:[9,4],app_messag:[1,3],ella:8,bulk:[1,8],receiv:[0,2,5,8,12,9],heads_up_email:9,longer:9,descript:[4,14],portion:0,opted_out:5,time:[1,2,8,13,5],reply_to:[9,14],resource_url:12,hello:[11,9,14]},objtypes:{"0":"http:get","1":"http:put","2":"http:post","3":"http:delete"},titles:["Search Syntax","Emma API","Pagination","PHP Signup Example","Webhooks","Response","PHP Get Member By Email Example","Searches","Members","Mailings","Fields","Placeholder Syntax","Webhook Usage","Groups","Triggers"],objnames:{"0":"HTTP get","1":"HTTP put","2":"HTTP post","3":"HTTP delete"},filenames:["member_search","index","pagination","php_signup_example","api/external/webhooks","api/external/response","php_get_member_example","api/external/searches","api/external/members","api/external/mailings","api/external/fields","placeholders","webhooks","api/external/groups","api/external/triggers"]}) \ No newline at end of file +Search.setIndex({objects:{"":{"/#account_id/members/#member_id/groups/remove":[8,1,1],"/#account_id/mailings/#mailing_id/winner/#winner_id":[9,2,1],"/#account_id/response/#mailing_id/in_progress":[5,0,1],"/#account_id/members/groups/remove":[8,1,1],"/#account_id/mailings/#mailing_id/searches":[9,0,1],"/#account_id/fields":[10,2,1],"/#account_id/members/#group_id/copy":[8,1,1],"/#account_id/members/status":[8,1,1],"/#account_id/response/#mailing_id/shares/overview":[5,0,1],"/#account_id/webhooks/events":[4,0,1],"/#account_id/members/#member_id/optout":[8,0,1],"/#account_id/webhooks":[4,3,1],"/#account_id/fields/#field_id":[10,3,1],"/#account_id/response/#mailing_id":[5,0,1],"/#account_id/groups/#member_group_id/members/remove":[13,3,1],"/#account_id/searches":[7,2,1],"/#account_id/members/imports":[8,0,1],"/#account_id/forwards/#mailing_id/#member_id":[9,2,1],"/#account_id/response/#mailing_id/customer_share_clicks":[5,0,1],"/#account_id/mailings/#mailing_id/messages/#member_id":[9,0,1],"/#account_id/members/#member_id/mailings":[8,0,1],"/#account_id/groups/#from_group_id/#to_group_id/members/copy":[13,1,1],"/#account_id/triggers":[14,2,1],"/#account_id/triggers/#trigger_id":[14,3,1],"/#account_id/members/delete":[8,1,1],"/#account_id/mailings/#mailing_id/groups":[9,0,1],"/#account_id/response/#mailing_id/forwards":[5,0,1],"/#account_id/members/#member_id":[8,3,1],"/#account_id/triggers/#trigger_id/mailings":[14,0,1],"/#account_id/searches/#search_id/members":[7,0,1],"/#account_id/members/status/:status_from/to/:status_to":[8,1,1],"/#account_id/response/#mailing_id/sends":[5,0,1],"/#account_id/members":[8,3,1],"/#account_id/members/email/:email":[8,0,1],"/#account_id/response/#mailing_id/links":[5,0,1],"/#account_id/searches/#search_id":[7,3,1],"/#account_id/members/imports/#import_id/members":[8,0,1],"/#account_id/fields/#field_id/clear":[10,2,1],"/#account_id/groups/#member_group_id/members":[13,3,1],"/#account_id/members/imports/#import_id":[8,0,1],"/#account_id/response":[5,0,1],"/#account_id/response/#mailing_id/opens":[5,0,1],"/#account_id/members/imports/delete":[8,3,1],"/#account_id/mailings":[9,0,1],"/#account_id/mailings/cancel/#mailing_id":[9,3,1],"/#account_id/mailings/validate":[9,2,1],"/#account_id/response/#mailing_id/deliveries":[5,0,1],"/#account_id/mailings/#mailing_id/members":[9,0,1],"/#account_id/response/#share_id/customer_share":[5,0,1],"/#account_id/webhooks/#webhook_id":[4,3,1],"/#account_id/members/add":[8,2,1],"/#account_id/members/email/optout/:email":[8,1,1],"/#account_id/response/#mailing_id/optouts":[5,0,1],"/#account_id/response/#mailing_id/shares":[5,0,1],"/#account_id/groups/#member_group_id":[13,3,1],"/#account_id/mailings/#mailing_id":[9,3,1],"/#account_id/members/#member_id/groups":[8,3,1],"/#account_id/groups":[13,2,1],"/#account_id/response/#mailing_id/clicks":[5,0,1],"/#account_id/mailings/#mailing_id/headsup":[9,0,1],"/#account_id/response/#mailing_id/signups":[5,0,1],"/#account_id/response/#mailing_id/customer_shares":[5,0,1]}},terms:{all:[0,1,4,5,8,9,10,11,12,13,14],code:[0,1,6,3],change_typ:8,queri:[0,2,4],month:[0,5,9,14],four:[0,5],mile:0,least:0,field_creat:[12,4],link_target:[5,9],content:[11,6,9,3],privat:1,specif:[8,9,4],friendli:5,send:[1,9,4,3,5],customer_share_click:5,those:[5,12],group_upd:[12,4],sent:[5,8,12,9,14],curl_clos:[6,3],brown:[7,8],digit:5,everi:0,string:[0,4,5,7,8,9,10,12,13,14],fals:[3,4,5,6,7,8,9,10,13,14],webhook:[1,12,4],mailing_status:9,trigger_id:14,curlopt_post:3,webview_share_click:5,affect:[7,8],member_add:[12,4],create_mail:9,new_boolean:10,foo:0,level:1,group_delet:[12,4],list:[0,1,2,4,5,7,8,9,10,11,12,13,14],upload:8,iter:2,"try":8,item:2,plaintext_onli:[9,14],div:[4,5,7,8,9,10,13,14],survey_id:14,pleas:[1,8,11,9],prevent:2,work:[1,4],ten:0,sync:10,sign:[0,5,4],past:1,second:[0,7,14],follow:[0,1,4,5,7,9,11,13],further:1,durat:9,click:[0,4,5,7,8,12,14],append:2,even:10,what:1,hide:[4,5,7,8,9,10,13,14],appear:1,from_group_id:13,section:1,current:[8,12,9],delet:[1,4,7,8,9,10,12,13,14],"new":[1,4,5,7,8,9,10,11,13,14],net:[1,2,6,3],delivery_t:8,method:[5,8,13,4,9],can:[0,1,2,4,5,7,8,9,11,12,13],widget:[7,10,8,9,13],hash:0,datematch:0,displai:10,variat:9,gener:[0,8,12,14],onli:[5,8],here:[0,1,3,5,6,8],bodi:9,let:[1,4,10],address:[0,1,8,6,9],along:8,sinc:8,valu:[0,5,7,8,10,11],field_upd:[12,4],search:[0,1,9,7],survei:14,sender:[9,14],larger:2,queue:5,prior:9,action:[0,8],chang:[8,4],campaign:5,newbi:5,appli:[7,14],prefer:0,myemma:[4,5,7,8,9,13],filenam:8,customer_shar:5,"boolean":[0,1,5,7,8,9,10,13,14],curlopt_postfield:3,total:5,jone:[7,5,8,13],select:10,newslett:[7,8,13],describ:7,would:[0,1],regist:4,two:[0,5],next:[0,1],create_webhook:4,few:[5,8],call:[1,2,3,4,6,8,12],criteria:7,member_add_to_group:[12,4],type:[1,3,4,5,6,7,10,9,14],until:2,more:[0,4,7,8,9,13],peopl:5,relat:[1,8,11,9],about:[10,8,12,4,9],notic:8,thide:[4,5,7,8,9,10,13,14],flag:[5,7,8,10,9,14],exce:2,indic:8,examin:1,particular:[1,4,5,8,10,12,9],in_progress:5,origin:9,must:[0,7,13,10],none:9,endpoint:[1,4,5,7,8,9,10,13,14],join:[0,7],hour:0,member_sinc:[0,5,7,8,9,13],uniqu:5,histori:8,soup:7,remain:[0,9],archiv:[5,9],member_optout:[12,4],drill:5,control:[1,11,9],quickstart:1,give:5,forward_mailing_id:5,email_domain:[0,5],share:[0,5,8,12,4],accept:[0,5,7,8,9,10,11,13,14],total_click:5,tag:[11,9],want:[1,12,13,5],occur:[7,12],some_numeric_field:0,delai:14,alwai:0,webhook_event_id:4,cours:1,end:[2,8],first_nam:[1,3,5,7,8,9,10,11,13,14],started_or_finish:[9,14],anoth:[9,13],get:[1,4,5,6,7,8,9,10,13,14],message_open:[12,4],html_bodi:[9,14],share_statu:5,push_offset:14,del_statu:5,tild:5,num_members_upd:8,simpl:0,chri:9,pizza:[7,8],map:0,autent:1,referenc:7,xxxx:6,sundai:0,membership:13,taco:[7,5,8,9,13],mai:12,multipl:[10,8],data:[1,3,4,5,10,12],welcom:11,add_onli:8,"short":0,json_encod:3,optout:[5,8,12,13],num_dupl:8,favorit:10,correspond:[0,1],greet:11,predic:[0,1],issu:[1,10],"12t11":[7,5,8,9,13],combin:7,allow:[0,7,8],some_zipcode_field:0,signed_up:5,order:[5,10],michel:[8,9],mailing_nam:5,checkbox:10,fields_upd:8,over:2,becaus:12,buyer:[7,8,9,13],comma:[9,13],is_dis:14,vari:8,paramet:[2,4,5,7,8,9,10,13,14],widget_typ:10,style:[0,4,5,7,8,9,10,13,14],group:[0,1,3,4,7,8,9,12,13,14],curl_setopt:[6,3],how:[7,1,2,4],import_start:8,better:[13,14],platform:1,pend:[1,9],mailing_list:9,onc:9,mail:[0,1,4,5,8,11,12,9,14],hidden:13,main:1,might:[1,4],link_nam:[5,9],them:[8,9],"return":[0,1,4,5,7,8,9,10,12,13,14],greater:[0,8],thei:[0,9],food:10,timestamp:[0,5,12,9,10],spell:4,dai:0,auth:1,instead:[12,2,8],now:5,down:5,term:[0,1],alex:9,name:[0,4,5,7,8,9,10,11,13,14],edit:[7,1,14,10],curl_getinfo:[6,3],authent:[1,6,4,3],successufulli:4,separ:[1,9,13],each:[1,2,5,9,12,11,13],found:[8,9,4,14],updat:[4,7,8,9,10,12,13,14],mean:0,status:[8,9],domain:0,shortcut_nam:10,weight:[4,5,7,8,9,10,13,14],resum:9,individu:[1,8],hard:[0,5],last_nam:[1,3,5,7,8,9,10,11,13,14],"05t15":5,birthdai:[10,14],expect:1,year:[0,5,9,14],our:[1,11,12,4,14],happen:[1,4,5],extract:11,short_display_nam:10,special:[0,7,8,13],out:[0,1,4,5,7,8,10,13],variabl:[1,6,3],message_shar:[12,4],network:[5,12],private_api_kei:[1,6,3],check_multipl:10,categori:1,rel:0,print:6,correct:10,statist:8,benjamin:8,qualifi:11,insid:1,advanc:0,contain:[0,5,7,13,10,9],differ:0,standard:[5,9],status_from:8,base:[5,8],recipient_search:9,dictionari:8,put:[4,7,8,9,10,13,14],"13t23":[7,5,8],visit:11,could:1,omit:5,success:[1,3,7,8,9,13],filter:[0,1,7],search_id:7,pagin:[1,2],member_id:[5,7,8,9,12,13],summari:[1,5],assign:9,first:[0,1,10,5],oper:[0,1,7,14],rang:5,notifi:12,directli:0,curlopt_ssl_verifyp:[6,3],curl_init:[6,3],number:[5,2,13,3,10],placehold:[1,11],date:[0,5,8,10,11,14],unlik:9,alreadi:[10,8,9,13],done:8,plaintext_pref:[7,8,9,13],oppos:8,open:[0,3,4,5,6,7,8,12],payload:4,fanci:5,size:2,given:[0,8,9,4],"long":10,script:1,associ:[1,8,9,4,5],system:[8,12,4,14],messag:[4,5,8,12,11,9,14],attach:11,friend:11,curlinfo_http_cod:[6,3],shell:0,option:[0,5,7,8,9,10,13,14],especi:8,signup:[0,1,3,4,5,8,12,14],copi:[8,13],member_upd:[12,4],specifi:[0,2,7,8,10,11,9,14],curl_exec:[6,3],curlopt_httphead:[6,3],member_signup:[12,4],create_search:7,part:[0,9],enclos:11,than:[0,1,2,3,12,13],with_plaintext:9,"02t10":[5,8],"02t11":[5,8],"02t13":5,nathan:8,whenev:8,provid:[1,5,8,12,9,14],remov:[12,8,13,4],mailing_start:4,rate:2,structur:7,charact:9,greg:8,trackabl:11,were:5,minut:0,danc:1,error_count:[7,8,9,13],pre:[4,5,7,8,9,10,13,14],cleaner:1,sai:0,share_id:5,signup_form_id:[0,8,12,9,14],plaintext:[5,9,14],pass:[1,3],ani:[0,1,2,7,8,9],have:[0,5,8,12,9],tabl:5,seen:5,"null":[7,8,13,10,9,14],kevin:[9,14],signup_mail:0,caus:14,inform:[1,4,6,8,9,10,13],object_id:14,note:[1,8,9,4],also:[0,4,5,7,8,9,11,13],exampl:[0,1,3,5,6,7,11],take:[0,4],which:[0,1,4,8,10,12,9,14],some_number_field:0,singl:[0,1,3,4,5,8,10,12,13],excit:11,sure:1,delete_memb:13,normal:9,parent_mail:14,recipient_count:[5,9,14],previou:9,field_id:[10,12,14],last_run_at:7,most:14,pair:11,"class":[4,5,7,8,9,10,13,14],member_group_id:[8,9,13],mcconnel:[9,14],url:[1,3,4,5,6,12],mailing_finish:[12,4],clear:10,request:[1,2,3],doe:[0,5,7,8,9,10,13],member_status_upd:[12,4],declar:9,tech:4,determin:1,dataset:10,dow:0,recipi:9,"6db0cc7e6fdb2da589b65f29d90c96b6":9,show:[4,5,7,8,9,10,11,13,14],text:[10,11,12],radiu:0,syntax:[0,1,11,9],radio:10,font:[4,5,7,8,9,10,13,14],fine:9,find:[1,6,5],status_to:8,toast:[7,5,8,13],access:[1,5],giant:12,just:[0,9],pretti:8,column_ord:10,explain:[0,1],winner:9,activ:[1,5,7,8,13,9],figur:1,should:[1,2,3,7,8,11,9],templat:[11,14],share_count:5,count:[5,2,3],variou:[8,13],confirmed_opt_in:[7,8,9,13],familiar:1,express:0,account:[1,4,5,7,8,10,13,14],cannot:[8,9,4],progress:9,report:[10,8],requir:[1,7,8,10,11,9],object:[5,13],favorite_food:[5,7,8,13,10,9],bar:0,organ:1,include_archiv:[5,9],"public":1,"default":[5,11,13,4,9],ref_member_id:5,message_share_click:[12,4],through:[1,8,4],where:[0,1,8,11,7],view:1,set:[0,1,2,3,6,8,9,12,13],link_id:[0,5,12,9,14],see:[7,1,8],result:[0,1,2,5,8,9],respons:[0,1,2,4,5,7,8,9,10,13,14],fail:[5,9,4],themselv:2,member_field:[0,7],xxxxx:6,subject:[8,12,9,14],statu:[1,4,5,7,8,9,12,13],fancyonion:11,kei:[0,1,8,11,4],is_schedul:9,message_forward:[12,4],databas:8,user:[0,8,9,13],last_modified_at:[7,8,9,13],addresse:5,written:1,between:[0,7,2],"import":[1,8,12,4,10],subscript:[1,3],entiti:1,curlopt_url:[6,3],email:[0,1,3,5,6,7,8,9,13],wide:14,extend:1,numer:10,http404:[4,5,7,8,9,10,13,14],job:13,entir:[0,8],share_click:5,to_group_id:13,curlopt_returntransf:[6,3],addit:[0,1,8,9,11,13],member_remove_from_group:[12,4],send_start:[0,9,14],protect:1,accident:2,last:[0,5,10],delimit:5,pertain:5,message_click:[12,4],against:0,audienc:[1,8,9],mang:0,http500:14,seri:5,com:[4,5,6,7,8,9,11,13],zip_code_field:0,"03t15":[7,5,8,13],point:1,toni:[7,8],overview:[0,1,11,12,5],period:1,winner_id:9,colon:[7,11],optout_count:[7,8,9,13],suppli:9,cancel:9,tuesdai:0,duplic:5,quit:[5,8],user_id:4,recur:14,headsup:9,addition:[1,2],due:5,been:[1,8,10,5],mark:[8,9],whom:9,tshow:[4,5,7,8,9,10,13,14],trigger:[1,4,5,7,8,9,10,12,13,14],unsubscrib:0,treat:8,interest:[10,4],basic:[0,1,4,8,13,14],monthli:[7,8,13],blob:4,mailing_mailing_id:5,mailing_id:[0,5,8,12,9,14],fire:[8,4,14],xxx:[1,3],argument:[0,5],link_ord:[5,9],input:1,present:7,clicked_uniqu:5,"case":[1,8],look:[1,14,10],frozen:9,easier:12,email_error:[7,8,9,13],defin:[0,10,8,9],"while":0,outcom:5,abov:[0,1,8,7],error:[1,3,6,8,10,13],loop:8,opt:[0,4,5,7,8,13],readi:9,deliv:5,recipient_group:9,equal:0,itself:0,new_statu:12,webhook_id:4,recipient_memb:9,perform:8,make:[1,12,6,10],belong:[0,8,4],same:4,check:[8,6,9],member:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14],handl:1,html:9,split:9,document:[1,11,12],complet:[1,3,4,6,8,9],week:0,finish:[5,12,4],http:[1,2,3,4,5,6,11,9],href:[4,5,7,8,9,10,13,14],nest:0,someon:4,rais:[4,5,7,8,9,10,13,14],initi:[10,9],php:[1,6,3],bob:[7,5],recent:1,kept:11,center:0,min:5,well:5,inherit:9,person:9,mailing_typ:[9,14],without:0,thi:[0,1,4,5,7,8,9,10,12,13,14],undefin:0,http_code:[1,6,3],latest:11,construct:[0,7,9],identifi:8,paus:9,execut:[1,3],less:0,resp:[4,5,7,8,9,10,13,14],"_post":[1,3],aspect:13,recipient_email:9,source_filenam:8,yet:5,smith:[7,5,8,9,13],"12t09":[7,8],display_nam:10,easi:[10,12],"01t00":8,had:0,littl:1,blog:4,add:[12,1,8,13,3],other:[1,8,9,3,5],curlopt_userpwd:[6,3],import_finish:[8,12,4],schedul:9,els:[1,6,3],save:7,match:[0,7],build:1,sanit:1,applic:[1,6,3],account_id:[1,3,4,5,6,7,8,9,10,12,13,14],disposit:1,crud:[8,13,14],print_r:[6,3],mailing_statu:[9,14],know:[5,4],background:13,parent_mailing_id:[9,14],bit:1,insert:11,emma:[1,5,7,8,9,12,13],like:1,onion:11,deprec:4,arbitrari:8,manual:9,integ:[1,8,14,10,5],public_kei:4,api:[1,2,6,12,3],either:[0,5,7],bunch:0,output:9,group_id:[1,8,12,3],soft:[0,5],manag:[0,1,13,4],import_id:[8,12],www:[5,9],old:7,deal:[8,13],captur:1,arrai:[0,1,3,5,6,7,8,9,10,12,13,14],some:[1,11,5],field_delet:[12,4],certain:12,intern:10,sampl:[1,4,5,7,8,9,10,13,14],elaps:[2,9],home:11,deleted_at:[7,8,13,10,9,14],some_string_field:0,librari:11,bounce_count:[7,8,9,13],confirm:8,broad:12,per:5,send_finish:[9,14],larg:[0,2],condit:7,three:9,network_cod:12,localhost:9,refer:[5,7,8,13,10,9],with_html_bodi:9,who:[0,5],bold:[4,5,7,8,9,10,13,14],event_typ:14,inspect:1,usag:[1,8,12],num_members_ad:8,fulli:11,from:[1,4,8,9,12,13,14],post:[1,3,4,7,8,9,10,12,13,14],group_creat:[12,4],gladi:[7,5,8,13],actual:5,zip:0,groups_upd:8,column:10,page:2,includ:[1,5,7,8,9,10,13],webview:9,disabl:[9,14],block:[1,2],yyyi:5,member_data:[1,3],glob:0,bounc:[0,5],within:0,encod:[9,4],delivery_typ:[5,8],compos:0,webview_shar:5,field_typ:10,active_count:[7,8,9,13],public_webview_url:9,pivot:5,your:[1,4,5,7,8,9,10,13],websit:11,span:[4,5,7,8,9,10,13,14],wai:[1,12],area:1,overus:2,group_nam:[8,12,13,9],support:12,unique_click:5,json:[0,1,3,4,6,7],fast:8,custom:[5,8,11,10],avail:[0,11,4],start:[1,2,8,4],interfac:12,send_at:[9,14],exceed:2,"var":3,interv:[0,14],deliveri:5,head:[6,9,3],form:[1,3,4,6,8,10,14],enough:2,forc:1,forward:[0,4,5,8,12,9],"31st":0,group_typ:[8,9,13],push_offset_unit:14,link:[0,4,5,11,9,14],line:[1,5],realli:1,"true":[0,1,2,3,4,6,7,8,9,10,13,14],archived_t:[9,14],info:4,pull:2,made:1,possibl:[5,8,12],whether:8,maximum:2,tell:12,http403:9,record:[0,7,8],below:[0,1,8,12],http400:[7,8,9],limit:[5,2,8,9],some_array_field:0,otherwis:[10,8],start_t:14,mta:5,connect:[6,3],notif:9,creat:[4,5,7,9,10,12,13,14],"int":5,retriev:[7,1,2,8,9],email_us:[0,5],repres:5,exist:[0,4,5,7,8,10,13],behavior:11,curl:[1,6],lentil:7,probabl:14,echo:[1,3],successfulli:[5,8,9],mailing_subject:12,grp:13,todo:11,when:[8,12,4,9],detail:[1,4,7,8,9,10,13],invalid:[7,8,9],event:[4,7,8,13,12,9,14],field:[0,1,3,4,5,7,8,9,10,11,12,13,14],valid:[5,8,9,13],futur:1,num_skip:8,test:[5,6,7,13,9,14],ignor:8,you:[0,1,2,4,5,7,8,9,10,11,12,13],member_delet:[12,4],member_status_id:[7,5,8,9,13],public_api_kei:[1,6,3],stat:[5,9],claus:[0,7],event_nam:[12,4],e2ma:[1,2,6,3],error_messag:8,param:[9,4],app_messag:[1,3],ella:8,bulk:[1,8],receiv:[0,2,5,8,12,9],heads_up_email:9,longer:9,"24t16":[7,14],descript:[4,14],portion:0,opted_out:5,time:[1,2,8,13,5],reply_to:[9,14],resource_url:12,hello:[11,9,14]},objtypes:{"0":"http:get","1":"http:put","2":"http:post","3":"http:delete"},titles:["Search Syntax","Emma API","Pagination","PHP Signup Example","Webhooks","Response","PHP Get Member By Email Example","Searches","Members","Mailings","Fields","Placeholder Syntax","Webhook Usage","Groups","Triggers"],objnames:{"0":"HTTP get","1":"HTTP put","2":"HTTP post","3":"HTTP delete"},filenames:["member_search","index","pagination","php_signup_example","api/external/webhooks","api/external/response","php_get_member_example","api/external/searches","api/external/members","api/external/mailings","api/external/fields","placeholders","webhooks","api/external/groups","api/external/triggers"]}) \ No newline at end of file diff --git a/webhooks.html b/webhooks.html index 751d9fe..96447ca 100644 --- a/webhooks.html +++ b/webhooks.html @@ -507,7 +507,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 22, 2013 at 04:25 PM. + Last updated on Jan 24, 2013 at 04:21 PM. </div> </body> </html> \ No newline at end of file From 43f7142740cde5936b88335e4181d57485173eda Mon Sep 17 00:00:00 2001 From: Hernan Ciudad <hernan@myemma.com> Date: Tue, 29 Jan 2013 16:16:09 -0600 Subject: [PATCH 027/219] Update audience documentation. --- api/external/fields.html | 2 +- api/external/groups.html | 2 +- api/external/mailings.html | 2 +- api/external/members.html | 2 +- api/external/response.html | 2 +- api/external/searches.html | 4 ++-- api/external/triggers.html | 8 ++++---- api/external/webhooks.html | 2 +- genindex.html | 2 +- http-routingtable.html | 2 +- index.html | 2 +- member_search.html | 2 +- pagination.html | 2 +- php_get_member_example.html | 2 +- php_signup_example.html | 2 +- placeholders.html | 2 +- search.html | 2 +- searchindex.js | 2 +- webhooks.html | 2 +- 19 files changed, 23 insertions(+), 23 deletions(-) diff --git a/api/external/fields.html b/api/external/fields.html index 76fce02..b2c3538 100644 --- a/api/external/fields.html +++ b/api/external/fields.html @@ -421,7 +421,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 24, 2013 at 04:21 PM. + Last updated on Jan 29, 2013 at 04:16 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/groups.html b/api/external/groups.html index 9391b8e..3b9185d 100644 --- a/api/external/groups.html +++ b/api/external/groups.html @@ -713,7 +713,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 24, 2013 at 04:21 PM. + Last updated on Jan 29, 2013 at 04:16 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/mailings.html b/api/external/mailings.html index f744f2d..9b10200 100644 --- a/api/external/mailings.html +++ b/api/external/mailings.html @@ -824,7 +824,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 24, 2013 at 04:21 PM. + Last updated on Jan 29, 2013 at 04:16 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/members.html b/api/external/members.html index 1a20b42..3314dc8 100644 --- a/api/external/members.html +++ b/api/external/members.html @@ -1238,7 +1238,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 24, 2013 at 04:21 PM. + Last updated on Jan 29, 2013 at 04:16 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/response.html b/api/external/response.html index 8456d9c..2eba102 100644 --- a/api/external/response.html +++ b/api/external/response.html @@ -1035,7 +1035,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 24, 2013 at 04:21 PM. + Last updated on Jan 29, 2013 at 04:16 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/searches.html b/api/external/searches.html index aa5a44a..d1a2e45 100644 --- a/api/external/searches.html +++ b/api/external/searches.html @@ -201,7 +201,7 @@ <h1>Searches<a class="headerlink" href="#searches" title="Permalink to this head "name": "Test Search", "criteria": "[\"or\", [\"group\", \"eq\", \"Monthly Newsletter\"],[\"group\", \"eq\", \"Widget Buyers\"]]", "deleted_at": null, - "last_run_at": "@D:2013-01-24T16:20:59", + "last_run_at": "@D:2013-01-29T16:16:02", "active_count": 2, "account_id": 100 } @@ -517,7 +517,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 24, 2013 at 04:21 PM. + Last updated on Jan 29, 2013 at 04:16 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/triggers.html b/api/external/triggers.html index b1d42fa..10e8e91 100644 --- a/api/external/triggers.html +++ b/api/external/triggers.html @@ -149,7 +149,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": 203, "push_offset_units": "0:-14:0:0", - "start_ts": "@D:2013-01-24T16:20:56", + "start_ts": "@D:2013-01-29T16:16:00", "trigger_id": 100, "signups": null, "push_offset": "@I:-1209600.0", @@ -190,7 +190,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": null, "push_offset_units": "0:3:0:0", - "start_ts": "@D:2013-01-24T16:20:56", + "start_ts": "@D:2013-01-29T16:16:00", "trigger_id": 101, "signups": [ 1, @@ -329,7 +329,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": 203, "push_offset_units": "0:-14:0:0", - "start_ts": "@D:2013-01-24T16:20:56", + "start_ts": "@D:2013-01-29T16:16:00", "trigger_id": 100, "signups": null, "push_offset": "@I:-1209600.0", @@ -505,7 +505,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 24, 2013 at 04:21 PM. + Last updated on Jan 29, 2013 at 04:16 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/webhooks.html b/api/external/webhooks.html index 59172cc..fa1df4b 100644 --- a/api/external/webhooks.html +++ b/api/external/webhooks.html @@ -494,7 +494,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 24, 2013 at 04:21 PM. + Last updated on Jan 29, 2013 at 04:16 PM. </div> </body> </html> \ No newline at end of file diff --git a/genindex.html b/genindex.html index c2a0d54..281b03c 100644 --- a/genindex.html +++ b/genindex.html @@ -144,7 +144,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 24, 2013 at 04:21 PM. + Last updated on Jan 29, 2013 at 04:16 PM. </div> </body> </html> \ No newline at end of file diff --git a/http-routingtable.html b/http-routingtable.html index 786b4f0..0e3c443 100644 --- a/http-routingtable.html +++ b/http-routingtable.html @@ -607,7 +607,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 24, 2013 at 04:21 PM. + Last updated on Jan 29, 2013 at 04:16 PM. </div> </body> </html> \ No newline at end of file diff --git a/index.html b/index.html index 00d04a8..8135f14 100644 --- a/index.html +++ b/index.html @@ -311,7 +311,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 24, 2013 at 04:21 PM. + Last updated on Jan 29, 2013 at 04:16 PM. </div> </body> </html> \ No newline at end of file diff --git a/member_search.html b/member_search.html index d8055f6..6e40e41 100644 --- a/member_search.html +++ b/member_search.html @@ -256,7 +256,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 24, 2013 at 04:21 PM. + Last updated on Jan 29, 2013 at 04:16 PM. </div> </body> </html> \ No newline at end of file diff --git a/pagination.html b/pagination.html index 20d50c2..17c1554 100644 --- a/pagination.html +++ b/pagination.html @@ -168,7 +168,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 24, 2013 at 04:21 PM. + Last updated on Jan 29, 2013 at 04:16 PM. </div> </body> </html> \ No newline at end of file diff --git a/php_get_member_example.html b/php_get_member_example.html index 48e7c81..e97448a 100644 --- a/php_get_member_example.html +++ b/php_get_member_example.html @@ -183,7 +183,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 24, 2013 at 04:21 PM. + Last updated on Jan 29, 2013 at 04:16 PM. </div> </body> </html> \ No newline at end of file diff --git a/php_signup_example.html b/php_signup_example.html index 588ba1f..8043c51 100644 --- a/php_signup_example.html +++ b/php_signup_example.html @@ -205,7 +205,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 24, 2013 at 04:21 PM. + Last updated on Jan 29, 2013 at 04:16 PM. </div> </body> </html> \ No newline at end of file diff --git a/placeholders.html b/placeholders.html index 1ac7be0..f3fea65 100644 --- a/placeholders.html +++ b/placeholders.html @@ -183,7 +183,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 24, 2013 at 04:21 PM. + Last updated on Jan 29, 2013 at 04:16 PM. </div> </body> </html> \ No newline at end of file diff --git a/search.html b/search.html index 025b6de..c2744d7 100644 --- a/search.html +++ b/search.html @@ -153,7 +153,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 24, 2013 at 04:21 PM. + Last updated on Jan 29, 2013 at 04:16 PM. </div> </body> </html> \ No newline at end of file diff --git a/searchindex.js b/searchindex.js index 02bcdcf..00222fa 100644 --- a/searchindex.js +++ b/searchindex.js @@ -1 +1 @@ -Search.setIndex({objects:{"":{"/#account_id/members/#member_id/groups/remove":[8,1,1],"/#account_id/mailings/#mailing_id/winner/#winner_id":[9,2,1],"/#account_id/response/#mailing_id/in_progress":[5,0,1],"/#account_id/members/groups/remove":[8,1,1],"/#account_id/mailings/#mailing_id/searches":[9,0,1],"/#account_id/fields":[10,2,1],"/#account_id/members/#group_id/copy":[8,1,1],"/#account_id/members/status":[8,1,1],"/#account_id/response/#mailing_id/shares/overview":[5,0,1],"/#account_id/webhooks/events":[4,0,1],"/#account_id/members/#member_id/optout":[8,0,1],"/#account_id/webhooks":[4,3,1],"/#account_id/fields/#field_id":[10,3,1],"/#account_id/response/#mailing_id":[5,0,1],"/#account_id/groups/#member_group_id/members/remove":[13,3,1],"/#account_id/searches":[7,2,1],"/#account_id/members/imports":[8,0,1],"/#account_id/forwards/#mailing_id/#member_id":[9,2,1],"/#account_id/response/#mailing_id/customer_share_clicks":[5,0,1],"/#account_id/mailings/#mailing_id/messages/#member_id":[9,0,1],"/#account_id/members/#member_id/mailings":[8,0,1],"/#account_id/groups/#from_group_id/#to_group_id/members/copy":[13,1,1],"/#account_id/triggers":[14,2,1],"/#account_id/triggers/#trigger_id":[14,3,1],"/#account_id/members/delete":[8,1,1],"/#account_id/mailings/#mailing_id/groups":[9,0,1],"/#account_id/response/#mailing_id/forwards":[5,0,1],"/#account_id/members/#member_id":[8,3,1],"/#account_id/triggers/#trigger_id/mailings":[14,0,1],"/#account_id/searches/#search_id/members":[7,0,1],"/#account_id/members/status/:status_from/to/:status_to":[8,1,1],"/#account_id/response/#mailing_id/sends":[5,0,1],"/#account_id/members":[8,3,1],"/#account_id/members/email/:email":[8,0,1],"/#account_id/response/#mailing_id/links":[5,0,1],"/#account_id/searches/#search_id":[7,3,1],"/#account_id/members/imports/#import_id/members":[8,0,1],"/#account_id/fields/#field_id/clear":[10,2,1],"/#account_id/groups/#member_group_id/members":[13,3,1],"/#account_id/members/imports/#import_id":[8,0,1],"/#account_id/response":[5,0,1],"/#account_id/response/#mailing_id/opens":[5,0,1],"/#account_id/members/imports/delete":[8,3,1],"/#account_id/mailings":[9,0,1],"/#account_id/mailings/cancel/#mailing_id":[9,3,1],"/#account_id/mailings/validate":[9,2,1],"/#account_id/response/#mailing_id/deliveries":[5,0,1],"/#account_id/mailings/#mailing_id/members":[9,0,1],"/#account_id/response/#share_id/customer_share":[5,0,1],"/#account_id/webhooks/#webhook_id":[4,3,1],"/#account_id/members/add":[8,2,1],"/#account_id/members/email/optout/:email":[8,1,1],"/#account_id/response/#mailing_id/optouts":[5,0,1],"/#account_id/response/#mailing_id/shares":[5,0,1],"/#account_id/groups/#member_group_id":[13,3,1],"/#account_id/mailings/#mailing_id":[9,3,1],"/#account_id/members/#member_id/groups":[8,3,1],"/#account_id/groups":[13,2,1],"/#account_id/response/#mailing_id/clicks":[5,0,1],"/#account_id/mailings/#mailing_id/headsup":[9,0,1],"/#account_id/response/#mailing_id/signups":[5,0,1],"/#account_id/response/#mailing_id/customer_shares":[5,0,1]}},terms:{all:[0,1,4,5,8,9,10,11,12,13,14],code:[0,1,6,3],change_typ:8,queri:[0,2,4],month:[0,5,9,14],four:[0,5],mile:0,least:0,field_creat:[12,4],link_target:[5,9],content:[11,6,9,3],privat:1,specif:[8,9,4],friendli:5,send:[1,9,4,3,5],customer_share_click:5,those:[5,12],group_upd:[12,4],sent:[5,8,12,9,14],curl_clos:[6,3],brown:[7,8],digit:5,everi:0,string:[0,4,5,7,8,9,10,12,13,14],fals:[3,4,5,6,7,8,9,10,13,14],webhook:[1,12,4],mailing_status:9,trigger_id:14,curlopt_post:3,webview_share_click:5,affect:[7,8],member_add:[12,4],create_mail:9,new_boolean:10,foo:0,level:1,group_delet:[12,4],list:[0,1,2,4,5,7,8,9,10,11,12,13,14],upload:8,iter:2,"try":8,item:2,plaintext_onli:[9,14],div:[4,5,7,8,9,10,13,14],survey_id:14,pleas:[1,8,11,9],prevent:2,work:[1,4],ten:0,sync:10,sign:[0,5,4],past:1,second:[0,7,14],follow:[0,1,4,5,7,9,11,13],further:1,durat:9,click:[0,4,5,7,8,12,14],append:2,even:10,what:1,hide:[4,5,7,8,9,10,13,14],appear:1,from_group_id:13,section:1,current:[8,12,9],delet:[1,4,7,8,9,10,12,13,14],"new":[1,4,5,7,8,9,10,11,13,14],net:[1,2,6,3],delivery_t:8,method:[5,8,13,4,9],can:[0,1,2,4,5,7,8,9,11,12,13],widget:[7,10,8,9,13],hash:0,datematch:0,displai:10,variat:9,gener:[0,8,12,14],onli:[5,8],here:[0,1,3,5,6,8],bodi:9,let:[1,4,10],address:[0,1,8,6,9],along:8,sinc:8,valu:[0,5,7,8,10,11],field_upd:[12,4],search:[0,1,9,7],survei:14,sender:[9,14],larger:2,queue:5,prior:9,action:[0,8],chang:[8,4],campaign:5,newbi:5,appli:[7,14],prefer:0,myemma:[4,5,7,8,9,13],filenam:8,customer_shar:5,"boolean":[0,1,5,7,8,9,10,13,14],curlopt_postfield:3,total:5,jone:[7,5,8,13],select:10,newslett:[7,8,13],describ:7,would:[0,1],regist:4,two:[0,5],next:[0,1],create_webhook:4,few:[5,8],call:[1,2,3,4,6,8,12],criteria:7,member_add_to_group:[12,4],type:[1,3,4,5,6,7,10,9,14],until:2,more:[0,4,7,8,9,13],peopl:5,relat:[1,8,11,9],about:[10,8,12,4,9],notic:8,thide:[4,5,7,8,9,10,13,14],flag:[5,7,8,10,9,14],exce:2,indic:8,examin:1,particular:[1,4,5,8,10,12,9],in_progress:5,origin:9,must:[0,7,13,10],none:9,endpoint:[1,4,5,7,8,9,10,13,14],join:[0,7],hour:0,member_sinc:[0,5,7,8,9,13],uniqu:5,histori:8,soup:7,remain:[0,9],archiv:[5,9],member_optout:[12,4],drill:5,control:[1,11,9],quickstart:1,give:5,forward_mailing_id:5,email_domain:[0,5],share:[0,5,8,12,4],accept:[0,5,7,8,9,10,11,13,14],total_click:5,tag:[11,9],want:[1,12,13,5],occur:[7,12],some_numeric_field:0,delai:14,alwai:0,webhook_event_id:4,cours:1,end:[2,8],first_nam:[1,3,5,7,8,9,10,11,13,14],started_or_finish:[9,14],anoth:[9,13],get:[1,4,5,6,7,8,9,10,13,14],message_open:[12,4],html_bodi:[9,14],share_statu:5,push_offset:14,del_statu:5,tild:5,num_members_upd:8,simpl:0,chri:9,pizza:[7,8],map:0,autent:1,referenc:7,xxxx:6,sundai:0,membership:13,taco:[7,5,8,9,13],mai:12,multipl:[10,8],data:[1,3,4,5,10,12],welcom:11,add_onli:8,"short":0,json_encod:3,optout:[5,8,12,13],num_dupl:8,favorit:10,correspond:[0,1],greet:11,predic:[0,1],issu:[1,10],"12t11":[7,5,8,9,13],combin:7,allow:[0,7,8],some_zipcode_field:0,signed_up:5,order:[5,10],michel:[8,9],mailing_nam:5,checkbox:10,fields_upd:8,over:2,becaus:12,buyer:[7,8,9,13],comma:[9,13],is_dis:14,vari:8,paramet:[2,4,5,7,8,9,10,13,14],widget_typ:10,style:[0,4,5,7,8,9,10,13,14],group:[0,1,3,4,7,8,9,12,13,14],curl_setopt:[6,3],how:[7,1,2,4],import_start:8,better:[13,14],platform:1,pend:[1,9],mailing_list:9,onc:9,mail:[0,1,4,5,8,11,12,9,14],hidden:13,main:1,might:[1,4],link_nam:[5,9],them:[8,9],"return":[0,1,4,5,7,8,9,10,12,13,14],greater:[0,8],thei:[0,9],food:10,timestamp:[0,5,12,9,10],spell:4,dai:0,auth:1,instead:[12,2,8],now:5,down:5,term:[0,1],alex:9,name:[0,4,5,7,8,9,10,11,13,14],edit:[7,1,14,10],curl_getinfo:[6,3],authent:[1,6,4,3],successufulli:4,separ:[1,9,13],each:[1,2,5,9,12,11,13],found:[8,9,4,14],updat:[4,7,8,9,10,12,13,14],mean:0,status:[8,9],domain:0,shortcut_nam:10,weight:[4,5,7,8,9,10,13,14],resum:9,individu:[1,8],hard:[0,5],last_nam:[1,3,5,7,8,9,10,11,13,14],"05t15":5,birthdai:[10,14],expect:1,year:[0,5,9,14],our:[1,11,12,4,14],happen:[1,4,5],extract:11,short_display_nam:10,special:[0,7,8,13],out:[0,1,4,5,7,8,10,13],variabl:[1,6,3],message_shar:[12,4],network:[5,12],private_api_kei:[1,6,3],check_multipl:10,categori:1,rel:0,print:6,correct:10,statist:8,benjamin:8,qualifi:11,insid:1,advanc:0,contain:[0,5,7,13,10,9],differ:0,standard:[5,9],status_from:8,base:[5,8],recipient_search:9,dictionari:8,put:[4,7,8,9,10,13,14],"13t23":[7,5,8],visit:11,could:1,omit:5,success:[1,3,7,8,9,13],filter:[0,1,7],search_id:7,pagin:[1,2],member_id:[5,7,8,9,12,13],summari:[1,5],assign:9,first:[0,1,10,5],oper:[0,1,7,14],rang:5,notifi:12,directli:0,curlopt_ssl_verifyp:[6,3],curl_init:[6,3],number:[5,2,13,3,10],placehold:[1,11],date:[0,5,8,10,11,14],unlik:9,alreadi:[10,8,9,13],done:8,plaintext_pref:[7,8,9,13],oppos:8,open:[0,3,4,5,6,7,8,12],payload:4,fanci:5,size:2,given:[0,8,9,4],"long":10,script:1,associ:[1,8,9,4,5],system:[8,12,4,14],messag:[4,5,8,12,11,9,14],attach:11,friend:11,curlinfo_http_cod:[6,3],shell:0,option:[0,5,7,8,9,10,13,14],especi:8,signup:[0,1,3,4,5,8,12,14],copi:[8,13],member_upd:[12,4],specifi:[0,2,7,8,10,11,9,14],curl_exec:[6,3],curlopt_httphead:[6,3],member_signup:[12,4],create_search:7,part:[0,9],enclos:11,than:[0,1,2,3,12,13],with_plaintext:9,"02t10":[5,8],"02t11":[5,8],"02t13":5,nathan:8,whenev:8,provid:[1,5,8,12,9,14],remov:[12,8,13,4],mailing_start:4,rate:2,structur:7,charact:9,greg:8,trackabl:11,were:5,minut:0,danc:1,error_count:[7,8,9,13],pre:[4,5,7,8,9,10,13,14],cleaner:1,sai:0,share_id:5,signup_form_id:[0,8,12,9,14],plaintext:[5,9,14],pass:[1,3],ani:[0,1,2,7,8,9],have:[0,5,8,12,9],tabl:5,seen:5,"null":[7,8,13,10,9,14],kevin:[9,14],signup_mail:0,caus:14,inform:[1,4,6,8,9,10,13],object_id:14,note:[1,8,9,4],also:[0,4,5,7,8,9,11,13],exampl:[0,1,3,5,6,7,11],take:[0,4],which:[0,1,4,8,10,12,9,14],some_number_field:0,singl:[0,1,3,4,5,8,10,12,13],excit:11,sure:1,delete_memb:13,normal:9,parent_mail:14,recipient_count:[5,9,14],previou:9,field_id:[10,12,14],last_run_at:7,most:14,pair:11,"class":[4,5,7,8,9,10,13,14],member_group_id:[8,9,13],mcconnel:[9,14],url:[1,3,4,5,6,12],mailing_finish:[12,4],clear:10,request:[1,2,3],doe:[0,5,7,8,9,10,13],member_status_upd:[12,4],declar:9,tech:4,determin:1,dataset:10,dow:0,recipi:9,"6db0cc7e6fdb2da589b65f29d90c96b6":9,show:[4,5,7,8,9,10,11,13,14],text:[10,11,12],radiu:0,syntax:[0,1,11,9],radio:10,font:[4,5,7,8,9,10,13,14],fine:9,find:[1,6,5],status_to:8,toast:[7,5,8,13],access:[1,5],giant:12,just:[0,9],pretti:8,column_ord:10,explain:[0,1],winner:9,activ:[1,5,7,8,13,9],figur:1,should:[1,2,3,7,8,11,9],templat:[11,14],share_count:5,count:[5,2,3],variou:[8,13],confirmed_opt_in:[7,8,9,13],familiar:1,express:0,account:[1,4,5,7,8,10,13,14],cannot:[8,9,4],progress:9,report:[10,8],requir:[1,7,8,10,11,9],object:[5,13],favorite_food:[5,7,8,13,10,9],bar:0,organ:1,include_archiv:[5,9],"public":1,"default":[5,11,13,4,9],ref_member_id:5,message_share_click:[12,4],through:[1,8,4],where:[0,1,8,11,7],view:1,set:[0,1,2,3,6,8,9,12,13],link_id:[0,5,12,9,14],see:[7,1,8],result:[0,1,2,5,8,9],respons:[0,1,2,4,5,7,8,9,10,13,14],fail:[5,9,4],themselv:2,member_field:[0,7],xxxxx:6,subject:[8,12,9,14],statu:[1,4,5,7,8,9,12,13],fancyonion:11,kei:[0,1,8,11,4],is_schedul:9,message_forward:[12,4],databas:8,user:[0,8,9,13],last_modified_at:[7,8,9,13],addresse:5,written:1,between:[0,7,2],"import":[1,8,12,4,10],subscript:[1,3],entiti:1,curlopt_url:[6,3],email:[0,1,3,5,6,7,8,9,13],wide:14,extend:1,numer:10,http404:[4,5,7,8,9,10,13,14],job:13,entir:[0,8],share_click:5,to_group_id:13,curlopt_returntransf:[6,3],addit:[0,1,8,9,11,13],member_remove_from_group:[12,4],send_start:[0,9,14],protect:1,accident:2,last:[0,5,10],delimit:5,pertain:5,message_click:[12,4],against:0,audienc:[1,8,9],mang:0,http500:14,seri:5,com:[4,5,6,7,8,9,11,13],zip_code_field:0,"03t15":[7,5,8,13],point:1,toni:[7,8],overview:[0,1,11,12,5],period:1,winner_id:9,colon:[7,11],optout_count:[7,8,9,13],suppli:9,cancel:9,tuesdai:0,duplic:5,quit:[5,8],user_id:4,recur:14,headsup:9,addition:[1,2],due:5,been:[1,8,10,5],mark:[8,9],whom:9,tshow:[4,5,7,8,9,10,13,14],trigger:[1,4,5,7,8,9,10,12,13,14],unsubscrib:0,treat:8,interest:[10,4],basic:[0,1,4,8,13,14],monthli:[7,8,13],blob:4,mailing_mailing_id:5,mailing_id:[0,5,8,12,9,14],fire:[8,4,14],xxx:[1,3],argument:[0,5],link_ord:[5,9],input:1,present:7,clicked_uniqu:5,"case":[1,8],look:[1,14,10],frozen:9,easier:12,email_error:[7,8,9,13],defin:[0,10,8,9],"while":0,outcom:5,abov:[0,1,8,7],error:[1,3,6,8,10,13],loop:8,opt:[0,4,5,7,8,13],readi:9,deliv:5,recipient_group:9,equal:0,itself:0,new_statu:12,webhook_id:4,recipient_memb:9,perform:8,make:[1,12,6,10],belong:[0,8,4],same:4,check:[8,6,9],member:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14],handl:1,html:9,split:9,document:[1,11,12],complet:[1,3,4,6,8,9],week:0,finish:[5,12,4],http:[1,2,3,4,5,6,11,9],href:[4,5,7,8,9,10,13,14],nest:0,someon:4,rais:[4,5,7,8,9,10,13,14],initi:[10,9],php:[1,6,3],bob:[7,5],recent:1,kept:11,center:0,min:5,well:5,inherit:9,person:9,mailing_typ:[9,14],without:0,thi:[0,1,4,5,7,8,9,10,12,13,14],undefin:0,http_code:[1,6,3],latest:11,construct:[0,7,9],identifi:8,paus:9,execut:[1,3],less:0,resp:[4,5,7,8,9,10,13,14],"_post":[1,3],aspect:13,recipient_email:9,source_filenam:8,yet:5,smith:[7,5,8,9,13],"12t09":[7,8],display_nam:10,easi:[10,12],"01t00":8,had:0,littl:1,blog:4,add:[12,1,8,13,3],other:[1,8,9,3,5],curlopt_userpwd:[6,3],import_finish:[8,12,4],schedul:9,els:[1,6,3],save:7,match:[0,7],build:1,sanit:1,applic:[1,6,3],account_id:[1,3,4,5,6,7,8,9,10,12,13,14],disposit:1,crud:[8,13,14],print_r:[6,3],mailing_statu:[9,14],know:[5,4],background:13,parent_mailing_id:[9,14],bit:1,insert:11,emma:[1,5,7,8,9,12,13],like:1,onion:11,deprec:4,arbitrari:8,manual:9,integ:[1,8,14,10,5],public_kei:4,api:[1,2,6,12,3],either:[0,5,7],bunch:0,output:9,group_id:[1,8,12,3],soft:[0,5],manag:[0,1,13,4],import_id:[8,12],www:[5,9],old:7,deal:[8,13],captur:1,arrai:[0,1,3,5,6,7,8,9,10,12,13,14],some:[1,11,5],field_delet:[12,4],certain:12,intern:10,sampl:[1,4,5,7,8,9,10,13,14],elaps:[2,9],home:11,deleted_at:[7,8,13,10,9,14],some_string_field:0,librari:11,bounce_count:[7,8,9,13],confirm:8,broad:12,per:5,send_finish:[9,14],larg:[0,2],condit:7,three:9,network_cod:12,localhost:9,refer:[5,7,8,13,10,9],with_html_bodi:9,who:[0,5],bold:[4,5,7,8,9,10,13,14],event_typ:14,inspect:1,usag:[1,8,12],num_members_ad:8,fulli:11,from:[1,4,8,9,12,13,14],post:[1,3,4,7,8,9,10,12,13,14],group_creat:[12,4],gladi:[7,5,8,13],actual:5,zip:0,groups_upd:8,column:10,page:2,includ:[1,5,7,8,9,10,13],webview:9,disabl:[9,14],block:[1,2],yyyi:5,member_data:[1,3],glob:0,bounc:[0,5],within:0,encod:[9,4],delivery_typ:[5,8],compos:0,webview_shar:5,field_typ:10,active_count:[7,8,9,13],public_webview_url:9,pivot:5,your:[1,4,5,7,8,9,10,13],websit:11,span:[4,5,7,8,9,10,13,14],wai:[1,12],area:1,overus:2,group_nam:[8,12,13,9],support:12,unique_click:5,json:[0,1,3,4,6,7],fast:8,custom:[5,8,11,10],avail:[0,11,4],start:[1,2,8,4],interfac:12,send_at:[9,14],exceed:2,"var":3,interv:[0,14],deliveri:5,head:[6,9,3],form:[1,3,4,6,8,10,14],enough:2,forc:1,forward:[0,4,5,8,12,9],"31st":0,group_typ:[8,9,13],push_offset_unit:14,link:[0,4,5,11,9,14],line:[1,5],realli:1,"true":[0,1,2,3,4,6,7,8,9,10,13,14],archived_t:[9,14],info:4,pull:2,made:1,possibl:[5,8,12],whether:8,maximum:2,tell:12,http403:9,record:[0,7,8],below:[0,1,8,12],http400:[7,8,9],limit:[5,2,8,9],some_array_field:0,otherwis:[10,8],start_t:14,mta:5,connect:[6,3],notif:9,creat:[4,5,7,9,10,12,13,14],"int":5,retriev:[7,1,2,8,9],email_us:[0,5],repres:5,exist:[0,4,5,7,8,10,13],behavior:11,curl:[1,6],lentil:7,probabl:14,echo:[1,3],successfulli:[5,8,9],mailing_subject:12,grp:13,todo:11,when:[8,12,4,9],detail:[1,4,7,8,9,10,13],invalid:[7,8,9],event:[4,7,8,13,12,9,14],field:[0,1,3,4,5,7,8,9,10,11,12,13,14],valid:[5,8,9,13],futur:1,num_skip:8,test:[5,6,7,13,9,14],ignor:8,you:[0,1,2,4,5,7,8,9,10,11,12,13],member_delet:[12,4],member_status_id:[7,5,8,9,13],public_api_kei:[1,6,3],stat:[5,9],claus:[0,7],event_nam:[12,4],e2ma:[1,2,6,3],error_messag:8,param:[9,4],app_messag:[1,3],ella:8,bulk:[1,8],receiv:[0,2,5,8,12,9],heads_up_email:9,longer:9,"24t16":[7,14],descript:[4,14],portion:0,opted_out:5,time:[1,2,8,13,5],reply_to:[9,14],resource_url:12,hello:[11,9,14]},objtypes:{"0":"http:get","1":"http:put","2":"http:post","3":"http:delete"},titles:["Search Syntax","Emma API","Pagination","PHP Signup Example","Webhooks","Response","PHP Get Member By Email Example","Searches","Members","Mailings","Fields","Placeholder Syntax","Webhook Usage","Groups","Triggers"],objnames:{"0":"HTTP get","1":"HTTP put","2":"HTTP post","3":"HTTP delete"},filenames:["member_search","index","pagination","php_signup_example","api/external/webhooks","api/external/response","php_get_member_example","api/external/searches","api/external/members","api/external/mailings","api/external/fields","placeholders","webhooks","api/external/groups","api/external/triggers"]}) \ No newline at end of file +Search.setIndex({objects:{"":{"/#account_id/members/#member_id/groups/remove":[8,1,1],"/#account_id/mailings/#mailing_id/winner/#winner_id":[9,2,1],"/#account_id/response/#mailing_id/in_progress":[5,0,1],"/#account_id/members/groups/remove":[8,1,1],"/#account_id/mailings/#mailing_id/searches":[9,0,1],"/#account_id/fields":[10,2,1],"/#account_id/members/#group_id/copy":[8,1,1],"/#account_id/members/status":[8,1,1],"/#account_id/response/#mailing_id/shares/overview":[5,0,1],"/#account_id/webhooks/events":[4,0,1],"/#account_id/members/#member_id/optout":[8,0,1],"/#account_id/webhooks":[4,3,1],"/#account_id/fields/#field_id":[10,3,1],"/#account_id/response/#mailing_id":[5,0,1],"/#account_id/groups/#member_group_id/members/remove":[13,3,1],"/#account_id/searches":[7,2,1],"/#account_id/members/imports":[8,0,1],"/#account_id/forwards/#mailing_id/#member_id":[9,2,1],"/#account_id/response/#mailing_id/customer_share_clicks":[5,0,1],"/#account_id/mailings/#mailing_id/messages/#member_id":[9,0,1],"/#account_id/members/#member_id/mailings":[8,0,1],"/#account_id/groups/#from_group_id/#to_group_id/members/copy":[13,1,1],"/#account_id/triggers":[14,2,1],"/#account_id/triggers/#trigger_id":[14,3,1],"/#account_id/members/delete":[8,1,1],"/#account_id/mailings/#mailing_id/groups":[9,0,1],"/#account_id/response/#mailing_id/forwards":[5,0,1],"/#account_id/members/#member_id":[8,3,1],"/#account_id/triggers/#trigger_id/mailings":[14,0,1],"/#account_id/searches/#search_id/members":[7,0,1],"/#account_id/members/status/:status_from/to/:status_to":[8,1,1],"/#account_id/response/#mailing_id/sends":[5,0,1],"/#account_id/members":[8,3,1],"/#account_id/members/email/:email":[8,0,1],"/#account_id/response/#mailing_id/links":[5,0,1],"/#account_id/searches/#search_id":[7,3,1],"/#account_id/members/imports/#import_id/members":[8,0,1],"/#account_id/fields/#field_id/clear":[10,2,1],"/#account_id/groups/#member_group_id/members":[13,3,1],"/#account_id/members/imports/#import_id":[8,0,1],"/#account_id/response":[5,0,1],"/#account_id/response/#mailing_id/opens":[5,0,1],"/#account_id/members/imports/delete":[8,3,1],"/#account_id/mailings":[9,0,1],"/#account_id/mailings/cancel/#mailing_id":[9,3,1],"/#account_id/mailings/validate":[9,2,1],"/#account_id/response/#mailing_id/deliveries":[5,0,1],"/#account_id/mailings/#mailing_id/members":[9,0,1],"/#account_id/response/#share_id/customer_share":[5,0,1],"/#account_id/webhooks/#webhook_id":[4,3,1],"/#account_id/members/add":[8,2,1],"/#account_id/members/email/optout/:email":[8,1,1],"/#account_id/response/#mailing_id/optouts":[5,0,1],"/#account_id/response/#mailing_id/shares":[5,0,1],"/#account_id/groups/#member_group_id":[13,3,1],"/#account_id/mailings/#mailing_id":[9,3,1],"/#account_id/members/#member_id/groups":[8,3,1],"/#account_id/groups":[13,2,1],"/#account_id/response/#mailing_id/clicks":[5,0,1],"/#account_id/mailings/#mailing_id/headsup":[9,0,1],"/#account_id/response/#mailing_id/signups":[5,0,1],"/#account_id/response/#mailing_id/customer_shares":[5,0,1]}},terms:{all:[0,1,4,5,8,9,10,11,12,13,14],code:[0,1,6,3],change_typ:8,queri:[0,2,4],month:[0,5,9,14],four:[0,5],mile:0,least:0,field_creat:[12,4],link_target:[5,9],content:[11,6,9,3],privat:1,specif:[8,9,4],friendli:5,send:[1,9,4,3,5],customer_share_click:5,those:[5,12],group_upd:[12,4],sent:[5,8,12,9,14],curl_clos:[6,3],brown:[7,8],digit:5,everi:0,string:[0,4,5,7,8,9,10,12,13,14],fals:[3,4,5,6,7,8,9,10,13,14],webhook:[1,12,4],mailing_status:9,trigger_id:14,curlopt_post:3,webview_share_click:5,affect:[7,8],member_add:[12,4],create_mail:9,new_boolean:10,foo:0,level:1,group_delet:[12,4],list:[0,1,2,4,5,7,8,9,10,11,12,13,14],upload:8,iter:2,"try":8,item:2,plaintext_onli:[9,14],div:[4,5,7,8,9,10,13,14],survey_id:14,pleas:[1,8,11,9],prevent:2,work:[1,4],ten:0,sync:10,sign:[0,5,4],past:1,second:[0,7,14],follow:[0,1,4,5,7,9,11,13],further:1,durat:9,click:[0,4,5,7,8,12,14],append:2,even:10,what:1,hide:[4,5,7,8,9,10,13,14],appear:1,from_group_id:13,section:1,current:[8,12,9],delet:[1,4,7,8,9,10,12,13,14],"new":[1,4,5,7,8,9,10,11,13,14],net:[1,2,6,3],delivery_t:8,method:[5,8,13,4,9],can:[0,1,2,4,5,7,8,9,11,12,13],widget:[7,10,8,9,13],hash:0,datematch:0,displai:10,variat:9,gener:[0,8,12,14],onli:[5,8],here:[0,1,3,5,6,8],bodi:9,let:[1,4,10],address:[0,1,8,6,9],along:8,sinc:8,valu:[0,5,7,8,10,11],field_upd:[12,4],search:[0,1,9,7],survei:14,sender:[9,14],larger:2,queue:5,prior:9,action:[0,8],chang:[8,4],campaign:5,newbi:5,appli:[7,14],prefer:0,myemma:[4,5,7,8,9,13],filenam:8,customer_shar:5,"boolean":[0,1,5,7,8,9,10,13,14],curlopt_postfield:3,total:5,jone:[7,5,8,13],select:10,newslett:[7,8,13],describ:7,would:[0,1],regist:4,two:[0,5],next:[0,1],create_webhook:4,few:[5,8],call:[1,2,3,4,6,8,12],criteria:7,member_add_to_group:[12,4],type:[1,3,4,5,6,7,10,9,14],until:2,more:[0,4,7,8,9,13],peopl:5,relat:[1,8,11,9],about:[10,8,12,4,9],notic:8,thide:[4,5,7,8,9,10,13,14],flag:[5,7,8,10,9,14],exce:2,indic:8,examin:1,particular:[1,4,5,8,10,12,9],in_progress:5,origin:9,must:[0,7,13,10],none:9,endpoint:[1,4,5,7,8,9,10,13,14],join:[0,7],hour:0,member_sinc:[0,5,7,8,9,13],uniqu:5,histori:8,soup:7,remain:[0,9],archiv:[5,9],member_optout:[12,4],drill:5,control:[1,11,9],quickstart:1,give:5,forward_mailing_id:5,email_domain:[0,5],share:[0,5,8,12,4],accept:[0,5,7,8,9,10,11,13,14],total_click:5,tag:[11,9],want:[1,12,13,5],occur:[7,12],some_numeric_field:0,delai:14,alwai:0,webhook_event_id:4,cours:1,end:[2,8],first_nam:[1,3,5,7,8,9,10,11,13,14],started_or_finish:[9,14],anoth:[9,13],get:[1,4,5,6,7,8,9,10,13,14],message_open:[12,4],html_bodi:[9,14],share_statu:5,push_offset:14,del_statu:5,tild:5,num_members_upd:8,simpl:0,chri:9,pizza:[7,8],map:0,autent:1,referenc:7,xxxx:6,sundai:0,membership:13,taco:[7,5,8,9,13],mai:12,multipl:[10,8],data:[1,3,4,5,10,12],welcom:11,add_onli:8,"short":0,json_encod:3,optout:[5,8,12,13],num_dupl:8,favorit:10,correspond:[0,1],greet:11,predic:[0,1],issu:[1,10],"12t11":[7,5,8,9,13],combin:7,allow:[0,7,8],some_zipcode_field:0,signed_up:5,order:[5,10],michel:[8,9],mailing_nam:5,checkbox:10,fields_upd:8,over:2,becaus:12,buyer:[7,8,9,13],comma:[9,13],is_dis:14,vari:8,paramet:[2,4,5,7,8,9,10,13,14],widget_typ:10,style:[0,4,5,7,8,9,10,13,14],group:[0,1,3,4,7,8,9,12,13,14],curl_setopt:[6,3],how:[7,1,2,4],import_start:8,better:[13,14],platform:1,pend:[1,9],mailing_list:9,onc:9,mail:[0,1,4,5,8,11,12,9,14],hidden:13,main:1,might:[1,4],link_nam:[5,9],them:[8,9],"return":[0,1,4,5,7,8,9,10,12,13,14],greater:[0,8],thei:[0,9],food:10,timestamp:[0,5,12,9,10],spell:4,dai:0,auth:1,instead:[12,2,8],now:5,down:5,term:[0,1],alex:9,name:[0,4,5,7,8,9,10,11,13,14],edit:[7,1,14,10],curl_getinfo:[6,3],authent:[1,6,4,3],successufulli:4,separ:[1,9,13],each:[1,2,5,9,12,11,13],found:[8,9,4,14],updat:[4,7,8,9,10,12,13,14],mean:0,status:[8,9],domain:0,shortcut_nam:10,weight:[4,5,7,8,9,10,13,14],resum:9,individu:[1,8],hard:[0,5],last_nam:[1,3,5,7,8,9,10,11,13,14],"05t15":5,birthdai:[10,14],expect:1,year:[0,5,9,14],our:[1,11,12,4,14],happen:[1,4,5],extract:11,short_display_nam:10,special:[0,7,8,13],out:[0,1,4,5,7,8,10,13],variabl:[1,6,3],message_shar:[12,4],network:[5,12],private_api_kei:[1,6,3],check_multipl:10,categori:1,rel:0,print:6,correct:10,statist:8,benjamin:8,qualifi:11,insid:1,advanc:0,contain:[0,5,7,13,10,9],differ:0,standard:[5,9],status_from:8,base:[5,8],recipient_search:9,dictionari:8,put:[4,7,8,9,10,13,14],"13t23":[7,5,8],visit:11,could:1,omit:5,success:[1,3,7,8,9,13],filter:[0,1,7],search_id:7,pagin:[1,2],member_id:[5,7,8,9,12,13],summari:[1,5],assign:9,first:[0,1,10,5],oper:[0,1,7,14],rang:5,notifi:12,directli:0,curlopt_ssl_verifyp:[6,3],curl_init:[6,3],number:[5,2,13,3,10],placehold:[1,11],date:[0,5,8,10,11,14],unlik:9,alreadi:[10,8,9,13],done:8,plaintext_pref:[7,8,9,13],oppos:8,open:[0,3,4,5,6,7,8,12],payload:4,fanci:5,size:2,given:[0,8,9,4],"long":10,script:1,associ:[1,8,9,4,5],system:[8,12,4,14],messag:[4,5,8,12,11,9,14],attach:11,friend:11,curlinfo_http_cod:[6,3],shell:0,option:[0,5,7,8,9,10,13,14],especi:8,signup:[0,1,3,4,5,8,12,14],copi:[8,13],member_upd:[12,4],specifi:[0,2,7,8,10,11,9,14],curl_exec:[6,3],curlopt_httphead:[6,3],member_signup:[12,4],create_search:7,part:[0,9],enclos:11,than:[0,1,2,3,12,13],with_plaintext:9,"02t10":[5,8],"02t11":[5,8],"02t13":5,nathan:8,whenev:8,provid:[1,5,8,12,9,14],remov:[12,8,13,4],mailing_start:4,rate:2,structur:7,charact:9,greg:8,trackabl:11,were:5,minut:0,danc:1,error_count:[7,8,9,13],pre:[4,5,7,8,9,10,13,14],cleaner:1,sai:0,share_id:5,signup_form_id:[0,8,12,9,14],plaintext:[5,9,14],pass:[1,3],ani:[0,1,2,7,8,9],have:[0,5,8,12,9],tabl:5,seen:5,"null":[7,8,13,10,9,14],kevin:[9,14],signup_mail:0,caus:14,inform:[1,4,6,8,9,10,13],object_id:14,note:[1,8,9,4],also:[0,4,5,7,8,9,11,13],exampl:[0,1,3,5,6,7,11],take:[0,4],which:[0,1,4,8,10,12,9,14],some_number_field:0,singl:[0,1,3,4,5,8,10,12,13],excit:11,sure:1,delete_memb:13,normal:9,parent_mail:14,recipient_count:[5,9,14],previou:9,field_id:[10,12,14],last_run_at:7,most:14,pair:11,"class":[4,5,7,8,9,10,13,14],member_group_id:[8,9,13],mcconnel:[9,14],url:[1,3,4,5,6,12],mailing_finish:[12,4],clear:10,request:[1,2,3],doe:[0,5,7,8,9,10,13],member_status_upd:[12,4],declar:9,tech:4,determin:1,dataset:10,dow:0,recipi:9,"6db0cc7e6fdb2da589b65f29d90c96b6":9,show:[4,5,7,8,9,10,11,13,14],text:[10,11,12],radiu:0,syntax:[0,1,11,9],radio:10,font:[4,5,7,8,9,10,13,14],fine:9,find:[1,6,5],status_to:8,toast:[7,5,8,13],access:[1,5],giant:12,just:[0,9],pretti:8,column_ord:10,explain:[0,1],winner:9,activ:[1,5,7,8,13,9],figur:1,should:[1,2,3,7,8,11,9],templat:[11,14],share_count:5,count:[5,2,3],variou:[8,13],confirmed_opt_in:[7,8,9,13],familiar:1,express:0,account:[1,4,5,7,8,10,13,14],cannot:[8,9,4],progress:9,report:[10,8],requir:[1,7,8,10,11,9],object:[5,13],favorite_food:[5,7,8,13,10,9],bar:0,organ:1,include_archiv:[5,9],"public":1,"default":[5,11,13,4,9],ref_member_id:5,message_share_click:[12,4],through:[1,8,4],where:[0,1,8,11,7],view:1,set:[0,1,2,3,6,8,9,12,13],link_id:[0,5,12,9,14],see:[7,1,8],result:[0,1,2,5,8,9],respons:[0,1,2,4,5,7,8,9,10,13,14],fail:[5,9,4],themselv:2,member_field:[0,7],xxxxx:6,subject:[8,12,9,14],statu:[1,4,5,7,8,9,12,13],fancyonion:11,kei:[0,1,8,11,4],is_schedul:9,message_forward:[12,4],databas:8,user:[0,8,9,13],last_modified_at:[7,8,9,13],addresse:5,written:1,between:[0,7,2],"import":[1,8,12,4,10],subscript:[1,3],entiti:1,curlopt_url:[6,3],email:[0,1,3,5,6,7,8,9,13],wide:14,extend:1,numer:10,http404:[4,5,7,8,9,10,13,14],job:13,entir:[0,8],share_click:5,to_group_id:13,curlopt_returntransf:[6,3],addit:[0,1,8,9,11,13],member_remove_from_group:[12,4],send_start:[0,9,14],protect:1,accident:2,last:[0,5,10],delimit:5,pertain:5,message_click:[12,4],against:0,audienc:[1,8,9],mang:0,http500:14,seri:5,com:[4,5,6,7,8,9,11,13],zip_code_field:0,"03t15":[7,5,8,13],point:1,toni:[7,8],overview:[0,1,11,12,5],period:1,winner_id:9,colon:[7,11],optout_count:[7,8,9,13],suppli:9,cancel:9,tuesdai:0,duplic:5,quit:[5,8],user_id:4,recur:14,headsup:9,addition:[1,2],due:5,been:[1,8,10,5],mark:[8,9],whom:9,tshow:[4,5,7,8,9,10,13,14],trigger:[1,4,5,7,8,9,10,12,13,14],unsubscrib:0,treat:8,interest:[10,4],basic:[0,1,4,8,13,14],monthli:[7,8,13],"29t16":[7,14],blob:4,mailing_mailing_id:5,mailing_id:[0,5,8,12,9,14],fire:[8,4,14],xxx:[1,3],argument:[0,5],link_ord:[5,9],input:1,present:7,clicked_uniqu:5,"case":[1,8],look:[1,14,10],frozen:9,easier:12,email_error:[7,8,9,13],defin:[0,10,8,9],"while":0,outcom:5,abov:[0,1,8,7],error:[1,3,6,8,10,13],loop:8,opt:[0,4,5,7,8,13],readi:9,deliv:5,recipient_group:9,equal:0,itself:0,new_statu:12,webhook_id:4,recipient_memb:9,perform:8,make:[1,12,6,10],belong:[0,8,4],same:4,check:[8,6,9],member:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14],handl:1,html:9,split:9,document:[1,11,12],complet:[1,3,4,6,8,9],week:0,finish:[5,12,4],http:[1,2,3,4,5,6,11,9],href:[4,5,7,8,9,10,13,14],nest:0,someon:4,rais:[4,5,7,8,9,10,13,14],initi:[10,9],php:[1,6,3],bob:[7,5],recent:1,kept:11,center:0,min:5,well:5,inherit:9,person:9,mailing_typ:[9,14],without:0,thi:[0,1,4,5,7,8,9,10,12,13,14],undefin:0,http_code:[1,6,3],latest:11,construct:[0,7,9],identifi:8,paus:9,execut:[1,3],less:0,resp:[4,5,7,8,9,10,13,14],"_post":[1,3],aspect:13,recipient_email:9,source_filenam:8,yet:5,smith:[7,5,8,9,13],"12t09":[7,8],display_nam:10,easi:[10,12],"01t00":8,had:0,littl:1,blog:4,add:[12,1,8,13,3],other:[1,8,9,3,5],curlopt_userpwd:[6,3],import_finish:[8,12,4],schedul:9,els:[1,6,3],save:7,match:[0,7],build:1,sanit:1,applic:[1,6,3],account_id:[1,3,4,5,6,7,8,9,10,12,13,14],disposit:1,crud:[8,13,14],print_r:[6,3],mailing_statu:[9,14],know:[5,4],background:13,parent_mailing_id:[9,14],bit:1,insert:11,emma:[1,5,7,8,9,12,13],like:1,onion:11,deprec:4,arbitrari:8,manual:9,integ:[1,8,14,10,5],public_kei:4,api:[1,2,6,12,3],either:[0,5,7],bunch:0,output:9,group_id:[1,8,12,3],soft:[0,5],manag:[0,1,13,4],import_id:[8,12],www:[5,9],old:7,deal:[8,13],captur:1,arrai:[0,1,3,5,6,7,8,9,10,12,13,14],some:[1,11,5],field_delet:[12,4],certain:12,intern:10,sampl:[1,4,5,7,8,9,10,13,14],elaps:[2,9],home:11,deleted_at:[7,8,13,10,9,14],some_string_field:0,librari:11,bounce_count:[7,8,9,13],confirm:8,broad:12,per:5,send_finish:[9,14],larg:[0,2],condit:7,three:9,network_cod:12,localhost:9,refer:[5,7,8,13,10,9],with_html_bodi:9,who:[0,5],bold:[4,5,7,8,9,10,13,14],event_typ:14,inspect:1,usag:[1,8,12],num_members_ad:8,fulli:11,from:[1,4,8,9,12,13,14],post:[1,3,4,7,8,9,10,12,13,14],group_creat:[12,4],gladi:[7,5,8,13],actual:5,zip:0,groups_upd:8,column:10,page:2,includ:[1,5,7,8,9,10,13],webview:9,disabl:[9,14],block:[1,2],yyyi:5,member_data:[1,3],glob:0,bounc:[0,5],within:0,encod:[9,4],delivery_typ:[5,8],compos:0,webview_shar:5,field_typ:10,active_count:[7,8,9,13],public_webview_url:9,pivot:5,your:[1,4,5,7,8,9,10,13],websit:11,span:[4,5,7,8,9,10,13,14],wai:[1,12],area:1,overus:2,group_nam:[8,12,13,9],support:12,unique_click:5,json:[0,1,3,4,6,7],fast:8,custom:[5,8,11,10],avail:[0,11,4],start:[1,2,8,4],interfac:12,send_at:[9,14],exceed:2,"var":3,interv:[0,14],deliveri:5,head:[6,9,3],form:[1,3,4,6,8,10,14],enough:2,forc:1,forward:[0,4,5,8,12,9],"31st":0,group_typ:[8,9,13],push_offset_unit:14,link:[0,4,5,11,9,14],line:[1,5],realli:1,"true":[0,1,2,3,4,6,7,8,9,10,13,14],archived_t:[9,14],info:4,pull:2,made:1,possibl:[5,8,12],whether:8,maximum:2,tell:12,http403:9,record:[0,7,8],below:[0,1,8,12],http400:[7,8,9],limit:[5,2,8,9],some_array_field:0,otherwis:[10,8],start_t:14,mta:5,connect:[6,3],notif:9,creat:[4,5,7,9,10,12,13,14],"int":5,retriev:[7,1,2,8,9],email_us:[0,5],repres:5,exist:[0,4,5,7,8,10,13],behavior:11,curl:[1,6],lentil:7,probabl:14,echo:[1,3],successfulli:[5,8,9],mailing_subject:12,grp:13,todo:11,when:[8,12,4,9],detail:[1,4,7,8,9,10,13],invalid:[7,8,9],event:[4,7,8,13,12,9,14],field:[0,1,3,4,5,7,8,9,10,11,12,13,14],valid:[5,8,9,13],futur:1,num_skip:8,test:[5,6,7,13,9,14],ignor:8,you:[0,1,2,4,5,7,8,9,10,11,12,13],member_delet:[12,4],member_status_id:[7,5,8,9,13],public_api_kei:[1,6,3],stat:[5,9],claus:[0,7],event_nam:[12,4],e2ma:[1,2,6,3],error_messag:8,param:[9,4],app_messag:[1,3],ella:8,bulk:[1,8],receiv:[0,2,5,8,12,9],heads_up_email:9,longer:9,descript:[4,14],portion:0,opted_out:5,time:[1,2,8,13,5],reply_to:[9,14],resource_url:12,hello:[11,9,14]},objtypes:{"0":"http:get","1":"http:put","2":"http:post","3":"http:delete"},titles:["Search Syntax","Emma API","Pagination","PHP Signup Example","Webhooks","Response","PHP Get Member By Email Example","Searches","Members","Mailings","Fields","Placeholder Syntax","Webhook Usage","Groups","Triggers"],objnames:{"0":"HTTP get","1":"HTTP put","2":"HTTP post","3":"HTTP delete"},filenames:["member_search","index","pagination","php_signup_example","api/external/webhooks","api/external/response","php_get_member_example","api/external/searches","api/external/members","api/external/mailings","api/external/fields","placeholders","webhooks","api/external/groups","api/external/triggers"]}) \ No newline at end of file diff --git a/webhooks.html b/webhooks.html index 96447ca..9694e2e 100644 --- a/webhooks.html +++ b/webhooks.html @@ -507,7 +507,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 24, 2013 at 04:21 PM. + Last updated on Jan 29, 2013 at 04:16 PM. </div> </body> </html> \ No newline at end of file From ad2180fb6dc38a6512cc355c290cc8feb7527c0d Mon Sep 17 00:00:00 2001 From: Hernan Ciudad <hernan@myemma.com> Date: Tue, 5 Feb 2013 15:36:40 -0600 Subject: [PATCH 028/219] Update audience documentation. --- _static/basic.css | 16 ++- _static/doctools.js | 10 +- _static/searchtools.js | 140 +++++++++++++++++---------- _static/underscore.js | 7 ++ api/external/fields.html | 46 ++++----- api/external/groups.html | 99 +++++++++---------- api/external/mailings.html | 108 +++++++++------------ api/external/members.html | 188 ++++++++++++++++-------------------- api/external/response.html | 124 +++++++++++------------- api/external/searches.html | 60 ++++++------ api/external/triggers.html | 56 +++++------ api/external/webhooks.html | 49 ++++------ genindex.html | 18 ++-- http-routingtable.html | 8 +- index.html | 22 ++++- member_search.html | 8 +- pagination.html | 8 +- php_get_member_example.html | 8 +- php_signup_example.html | 8 +- placeholders.html | 8 +- search.html | 6 +- searchindex.js | 2 +- webhooks.html | 8 +- 23 files changed, 497 insertions(+), 510 deletions(-) diff --git a/_static/basic.css b/_static/basic.css index 32630d5..43e8baf 100644 --- a/_static/basic.css +++ b/_static/basic.css @@ -79,6 +79,14 @@ div.sphinxsidebar input { font-size: 1em; } +div.sphinxsidebar #searchbox input[type="text"] { + width: 170px; +} + +div.sphinxsidebar #searchbox input[type="submit"] { + width: 30px; +} + img { border: 0; } @@ -236,7 +244,6 @@ img.align-center, .figure.align-center, object.align-center { } .align-center { - clear: both; text-align: center; } @@ -440,6 +447,11 @@ dl.glossary dt { font-style: oblique; } +abbr, acronym { + border-bottom: dotted 1px; + cursor: help; +} + /* -- code displays --------------------------------------------------------- */ pre { @@ -525,4 +537,4 @@ span.eqno { #top-link { display: none; } -} +} \ No newline at end of file diff --git a/_static/doctools.js b/_static/doctools.js index 8b9bd2c..d4619fd 100644 --- a/_static/doctools.js +++ b/_static/doctools.js @@ -2,7 +2,7 @@ * doctools.js * ~~~~~~~~~~~ * - * Sphinx JavaScript utilties for all documentation. + * Sphinx JavaScript utilities for all documentation. * * :copyright: Copyright 2007-2011 by the Sphinx team, see AUTHORS. * :license: BSD, see LICENSE for details. @@ -185,9 +185,9 @@ var Documentation = { body.highlightText(this.toLowerCase(), 'highlighted'); }); }, 10); - $('<li class="highlight-link"><a href="javascript:Documentation.' + - 'hideSearchWords()">' + _('Hide Search Matches') + '</a></li>') - .appendTo($('.sidebar .this-page-menu')); + $('<p class="highlight-link"><a href="javascript:Documentation.' + + 'hideSearchWords()">' + _('Hide Search Matches') + '</a></p>') + .appendTo($('#searchbox')); } }, @@ -213,7 +213,7 @@ var Documentation = { * helper function to hide the search marks again */ hideSearchWords : function() { - $('.sidebar .this-page-menu li.highlight-link').fadeOut(300); + $('#searchbox .highlight-link').fadeOut(300); $('span.highlighted').removeClass('highlighted'); }, diff --git a/_static/searchtools.js b/_static/searchtools.js index dae92b5..663be4c 100644 --- a/_static/searchtools.js +++ b/_static/searchtools.js @@ -1,6 +1,6 @@ /* - * searchtools.js - * ~~~~~~~~~~~~~~ + * searchtools.js_t + * ~~~~~~~~~~~~~~~~ * * Sphinx JavaScript utilties for the full-text search. * @@ -36,10 +36,11 @@ jQuery.makeSearchSummary = function(text, keywords, hlwords) { return rv; } + /** * Porter Stemmer */ -var PorterStemmer = function() { +var Stemmer = function() { var step2list = { ational: 'ate', @@ -300,20 +301,20 @@ var Search = { }, query : function(query) { - var stopwords = ['and', 'then', 'into', 'it', 'as', 'are', 'in', - 'if', 'for', 'no', 'there', 'their', 'was', 'is', - 'be', 'to', 'that', 'but', 'they', 'not', 'such', - 'with', 'by', 'a', 'on', 'these', 'of', 'will', - 'this', 'near', 'the', 'or', 'at']; - - // stem the searchterms and add them to the correct list - var stemmer = new PorterStemmer(); + var stopwords = ["and","then","into","it","as","are","in","if","for","no","there","their","was","is","be","to","that","but","they","not","such","with","by","a","on","these","of","will","this","near","the","or","at"]; + + // Stem the searchterms and add them to the correct list + var stemmer = new Stemmer(); var searchterms = []; var excluded = []; var hlterms = []; var tmp = query.split(/\s+/); - var object = (tmp.length == 1) ? tmp[0].toLowerCase() : null; + var objectterms = []; for (var i = 0; i < tmp.length; i++) { + if (tmp[i] != "") { + objectterms.push(tmp[i].toLowerCase()); + } + if ($u.indexOf(stopwords, tmp[i]) != -1 || tmp[i].match(/^\d+$/) || tmp[i] == "") { // skip this "word" @@ -344,9 +345,6 @@ var Search = { var filenames = this._index.filenames; var titles = this._index.titles; var terms = this._index.terms; - var objects = this._index.objects; - var objtypes = this._index.objtypes; - var objnames = this._index.objnames; var fileMap = {}; var files = null; // different result priorities @@ -357,40 +355,19 @@ var Search = { $('#search-progress').empty(); // lookup as object - if (object != null) { - for (var prefix in objects) { - for (var name in objects[prefix]) { - var fullname = (prefix ? prefix + '.' : '') + name; - if (fullname.toLowerCase().indexOf(object) > -1) { - match = objects[prefix][name]; - descr = objnames[match[1]] + _(', in ') + titles[match[0]]; - // XXX the generated anchors are not generally correct - // XXX there may be custom prefixes - result = [filenames[match[0]], fullname, '#'+fullname, descr]; - switch (match[2]) { - case 1: objectResults.push(result); break; - case 0: importantResults.push(result); break; - case 2: unimportantResults.push(result); break; - } - } - } - } + for (var i = 0; i < objectterms.length; i++) { + var others = [].concat(objectterms.slice(0,i), + objectterms.slice(i+1, objectterms.length)) + var results = this.performObjectSearch(objectterms[i], others); + // Assume first word is most likely to be the object, + // other words more likely to be in description. + // Therefore put matches for earlier words first. + // (Results are eventually used in reverse order). + objectResults = results[0].concat(objectResults); + importantResults = results[1].concat(importantResults); + unimportantResults = results[2].concat(unimportantResults); } - // sort results descending - objectResults.sort(function(a, b) { - return (a[1] > b[1]) ? -1 : ((a[1] < b[1]) ? 1 : 0); - }); - - importantResults.sort(function(a, b) { - return (a[1] > b[1]) ? -1 : ((a[1] < b[1]) ? 1 : 0); - }); - - unimportantResults.sort(function(a, b) { - return (a[1] > b[1]) ? -1 : ((a[1] < b[1]) ? 1 : 0); - }); - - // perform the search on the required terms for (var i = 0; i < searchterms.length; i++) { var word = searchterms[i]; @@ -489,7 +466,7 @@ var Search = { listItem.slideDown(5, function() { displayNextItem(); }); - }); + }, "text"); } else { // no source available, just display title Search.output.append(listItem); @@ -510,9 +487,74 @@ var Search = { } } displayNextItem(); + }, + + performObjectSearch : function(object, otherterms) { + var filenames = this._index.filenames; + var objects = this._index.objects; + var objnames = this._index.objnames; + var titles = this._index.titles; + + var importantResults = []; + var objectResults = []; + var unimportantResults = []; + + for (var prefix in objects) { + for (var name in objects[prefix]) { + var fullname = (prefix ? prefix + '.' : '') + name; + if (fullname.toLowerCase().indexOf(object) > -1) { + var match = objects[prefix][name]; + var objname = objnames[match[1]][2]; + var title = titles[match[0]]; + // If more than one term searched for, we require other words to be + // found in the name/title/description + if (otherterms.length > 0) { + var haystack = (prefix + ' ' + name + ' ' + + objname + ' ' + title).toLowerCase(); + var allfound = true; + for (var i = 0; i < otherterms.length; i++) { + if (haystack.indexOf(otherterms[i]) == -1) { + allfound = false; + break; + } + } + if (!allfound) { + continue; + } + } + var descr = objname + _(', in ') + title; + anchor = match[3]; + if (anchor == '') + anchor = fullname; + else if (anchor == '-') + anchor = objnames[match[1]][1] + '-' + fullname; + result = [filenames[match[0]], fullname, '#'+anchor, descr]; + switch (match[2]) { + case 1: objectResults.push(result); break; + case 0: importantResults.push(result); break; + case 2: unimportantResults.push(result); break; + } + } + } + } + + // sort results descending + objectResults.sort(function(a, b) { + return (a[1] > b[1]) ? -1 : ((a[1] < b[1]) ? 1 : 0); + }); + + importantResults.sort(function(a, b) { + return (a[1] > b[1]) ? -1 : ((a[1] < b[1]) ? 1 : 0); + }); + + unimportantResults.sort(function(a, b) { + return (a[1] > b[1]) ? -1 : ((a[1] < b[1]) ? 1 : 0); + }); + + return [importantResults, objectResults, unimportantResults] } } $(document).ready(function() { Search.init(); -}); +}); \ No newline at end of file diff --git a/_static/underscore.js b/_static/underscore.js index 9146e08..5d89914 100644 --- a/_static/underscore.js +++ b/_static/underscore.js @@ -1,3 +1,10 @@ +// Underscore.js 0.5.5 +// (c) 2009 Jeremy Ashkenas, DocumentCloud Inc. +// Underscore is freely distributable under the terms of the MIT license. +// Portions of Underscore are inspired by or borrowed from Prototype.js, +// Oliver Steele's Functional, and John Resig's Micro-Templating. +// For all details and documentation: +// http://documentcloud.github.com/underscore/ (function(){var j=this,n=j._,i=function(a){this._wrapped=a},m=typeof StopIteration!=="undefined"?StopIteration:"__break__",b=j._=function(a){return new i(a)};if(typeof exports!=="undefined")exports._=b;var k=Array.prototype.slice,o=Array.prototype.unshift,p=Object.prototype.toString,q=Object.prototype.hasOwnProperty,r=Object.prototype.propertyIsEnumerable;b.VERSION="0.5.5";b.each=function(a,c,d){try{if(a.forEach)a.forEach(c,d);else if(b.isArray(a)||b.isArguments(a))for(var e=0,f=a.length;e<f;e++)c.call(d, a[e],e,a);else{var g=b.keys(a);f=g.length;for(e=0;e<f;e++)c.call(d,a[g[e]],g[e],a)}}catch(h){if(h!=m)throw h;}return a};b.map=function(a,c,d){if(a&&b.isFunction(a.map))return a.map(c,d);var e=[];b.each(a,function(f,g,h){e.push(c.call(d,f,g,h))});return e};b.reduce=function(a,c,d,e){if(a&&b.isFunction(a.reduce))return a.reduce(b.bind(d,e),c);b.each(a,function(f,g,h){c=d.call(e,c,f,g,h)});return c};b.reduceRight=function(a,c,d,e){if(a&&b.isFunction(a.reduceRight))return a.reduceRight(b.bind(d,e),c); var f=b.clone(b.toArray(a)).reverse();b.each(f,function(g,h){c=d.call(e,c,g,h,a)});return c};b.detect=function(a,c,d){var e;b.each(a,function(f,g,h){if(c.call(d,f,g,h)){e=f;b.breakLoop()}});return e};b.select=function(a,c,d){if(a&&b.isFunction(a.filter))return a.filter(c,d);var e=[];b.each(a,function(f,g,h){c.call(d,f,g,h)&&e.push(f)});return e};b.reject=function(a,c,d){var e=[];b.each(a,function(f,g,h){!c.call(d,f,g,h)&&e.push(f)});return e};b.all=function(a,c,d){c=c||b.identity;if(a&&b.isFunction(a.every))return a.every(c, diff --git a/api/external/fields.html b/api/external/fields.html index b2c3538..63ec29e 100644 --- a/api/external/fields.html +++ b/api/external/fields.html @@ -30,7 +30,7 @@ <script type="text/javascript">try{Typekit.load();}catch(e){}</script> <script type="text/javascript" src="../../_static/underscore.js"></script> <script type="text/javascript" src="../../_static/doctools.js"></script> - <link rel="top" title="audience v0.1 documentation" href="../../index.html" /> + <link rel="top" title="audience 0.1 documentation" href="../../index.html" /> <link rel="next" title="Groups" href="groups.html" /> <link rel="prev" title="Emma API" href="../../index.html" /> <link rel="icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> @@ -93,7 +93,7 @@ <h3>Navigation</h3> <li class="right" > <a href="../../index.html" title="Emma API" accesskey="P">previous</a> |</li> - <li><a href="../../index.html">audience v0.1 documentation</a> »</li> + <li><a href="../../index.html">audience 0.1 documentation</a> »</li> </ul> </div> @@ -113,19 +113,18 @@ <h1>Fields<a class="headerlink" href="#fields" title="Permalink to this headline <dl class="get"> <dt id="get--#account_id-fields"> <tt class="descname">GET </tt><tt class="descname">/#account_id/fields</tt><a class="headerlink" href="#get--#account_id-fields" title="Permalink to this definition">¶</a></dt> -<dd><p><tt class="docutils literal"><span class="pre">GET</span> <span class="pre">/#account_id/fields</span></tt></p> -<p>Gets a list of this account’s defined fields.</p> +<dd><p>Gets a list of this account’s defined fields.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> +<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> <li><strong>deleted</strong> (<em>boolean</em>) – Accepts True or 1. Optional flag to include deleted fields.</li> </ul> </td> </tr> -<tr class="field"><th class="field-name">Returns :</th><td class="field-body"><p class="first last">An array of fields.</p> +<tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first last">An array of fields.</p> </td> </tr> </tbody> @@ -200,22 +199,21 @@ <h1>Fields<a class="headerlink" href="#fields" title="Permalink to this headline <dl class="get"> <dt id="get--#account_id-fields-#field_id"> <tt class="descname">GET </tt><tt class="descname">/#account_id/fields/#field_id</tt><a class="headerlink" href="#get--#account_id-fields-#field_id" title="Permalink to this definition">¶</a></dt> -<dd><p><tt class="docutils literal"><span class="pre">GET</span> <span class="pre">/#account_id/fields/#field_id</span></tt></p> -<p>Gets the detailed information about a particular field.</p> +<dd><p>Gets the detailed information about a particular field.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> +<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> <li><strong>deleted</strong> (<em>boolean</em>) – Accepts True or 1. Optionally show a field even if it has been deleted.</li> </ul> </td> </tr> -<tr class="field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">A field.</p> +<tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">A field.</p> </td> </tr> -<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the field does not exist.</p> +<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the field does not exist.</p> </td> </tr> </tbody> @@ -248,14 +246,13 @@ <h1>Fields<a class="headerlink" href="#fields" title="Permalink to this headline <dl class="post"> <dt id="post--#account_id-fields"> <tt class="descname">POST </tt><tt class="descname">/#account_id/fields</tt><a class="headerlink" href="#post--#account_id-fields" title="Permalink to this definition">¶</a></dt> -<dd><p><tt class="docutils literal"><span class="pre">POST</span> <span class="pre">/#account_id/fields</span></tt></p> -<p>Create a new field field.</p> +<dd><p>Create a new field field.</p> <p>There must not already be a field with this name.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> +<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> <li><strong>shortcut_name</strong> (<em>string</em>) – The internal name for this field.</li> <li><strong>display_name</strong> (<em>string</em>) – Display name, used for forms and reports.</li> <li><strong>field_type</strong> (<em>string</em>) – The type of value this field will contain. @@ -268,7 +265,7 @@ <h1>Fields<a class="headerlink" href="#fields" title="Permalink to this headline </ul> </td> </tr> -<tr class="field"><th class="field-name">Returns :</th><td class="field-body"><p class="first last">A reference to the new field.</p> +<tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first last">A reference to the new field.</p> </td> </tr> </tbody> @@ -295,13 +292,12 @@ <h1>Fields<a class="headerlink" href="#fields" title="Permalink to this headline <dl class="delete"> <dt id="delete--#account_id-fields-#field_id"> <tt class="descname">DELETE </tt><tt class="descname">/#account_id/fields/#field_id</tt><a class="headerlink" href="#delete--#account_id-fields-#field_id" title="Permalink to this definition">¶</a></dt> -<dd><p><tt class="docutils literal"><span class="pre">DELETE</span> <span class="pre">/#account_id/fields/#field_id</span></tt></p> -<p>Deletes a field.</p> +<dd><p>Deletes a field.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field"><th class="field-name">Returns :</th><td class="field-body">True if the field is deleted, False otherwise.</td> +<tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">True if the field is deleted, False otherwise.</td> </tr> </tbody> </table> @@ -321,13 +317,12 @@ <h1>Fields<a class="headerlink" href="#fields" title="Permalink to this headline <dl class="post"> <dt id="post--#account_id-fields-#field_id-clear"> <tt class="descname">POST </tt><tt class="descname">/#account_id/fields/#field_id/clear</tt><a class="headerlink" href="#post--#account_id-fields-#field_id-clear" title="Permalink to this definition">¶</a></dt> -<dd><p><tt class="docutils literal"><span class="pre">POST</span> <span class="pre">/#account_id/fields/#field_id/clear</span></tt></p> -<p>Clear the member data for the specified field.</p> +<dd><p>Clear the member data for the specified field.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field"><th class="field-name">Returns :</th><td class="field-body">True if all of the member field data is deleted</td> +<tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">True if all of the member field data is deleted</td> </tr> </tbody> </table> @@ -348,13 +343,12 @@ <h1>Fields<a class="headerlink" href="#fields" title="Permalink to this headline <dl class="put"> <dt id="put--#account_id-fields-#field_id"> <tt class="descname">PUT </tt><tt class="descname">/#account_id/fields/#field_id</tt><a class="headerlink" href="#put--#account_id-fields-#field_id" title="Permalink to this definition">¶</a></dt> -<dd><p><tt class="docutils literal"><span class="pre">PUT</span> <span class="pre">/#account_id/fields/#field_id</span></tt></p> -<p>Updates an existing field.</p> +<dd><p>Updates an existing field.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field"><th class="field-name">Returns :</th><td class="field-body">A reference to the updated field.</td> +<tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">A reference to the updated field.</td> </tr> </tbody> </table> @@ -391,7 +385,7 @@ <h1>Fields<a class="headerlink" href="#fields" title="Permalink to this headline <div id="searchbox" style="display: none"> <h3>Quick search</h3> <form class="search" action="../../search.html" method="get"> - <input type="text" name="q" size="18" /> + <input type="text" name="q" /> <input type="submit" value="Go" /> <input type="hidden" name="check_keywords" value="yes" /> <input type="hidden" name="area" value="default" /> @@ -421,7 +415,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 29, 2013 at 04:16 PM. + Last updated on Feb 05, 2013 at 03:36 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/groups.html b/api/external/groups.html index 3b9185d..29813cd 100644 --- a/api/external/groups.html +++ b/api/external/groups.html @@ -30,7 +30,7 @@ <script type="text/javascript">try{Typekit.load();}catch(e){}</script> <script type="text/javascript" src="../../_static/underscore.js"></script> <script type="text/javascript" src="../../_static/doctools.js"></script> - <link rel="top" title="audience v0.1 documentation" href="../../index.html" /> + <link rel="top" title="audience 0.1 documentation" href="../../index.html" /> <link rel="next" title="Mailings" href="mailings.html" /> <link rel="prev" title="Fields" href="fields.html" /> <link rel="icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> @@ -93,7 +93,7 @@ <h3>Navigation</h3> <li class="right" > <a href="fields.html" title="Fields" accesskey="P">previous</a> |</li> - <li><a href="../../index.html">audience v0.1 documentation</a> »</li> + <li><a href="../../index.html">audience 0.1 documentation</a> »</li> </ul> </div> @@ -113,16 +113,15 @@ <h1>Groups<a class="headerlink" href="#groups" title="Permalink to this headline <dl class="get"> <dt id="get--#account_id-groups"> <tt class="descname">GET </tt><tt class="descname">/#account_id/groups</tt><a class="headerlink" href="#get--#account_id-groups" title="Permalink to this definition">¶</a></dt> -<dd><p><tt class="docutils literal"><span class="pre">GET</span> <span class="pre">/#account_id/groups</span></tt></p> -<p>Get a basic listing of all active member groups for a single account.</p> +<dd><p>Get a basic listing of all active member groups for a single account.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">An array of groups.</p> +<tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">An array of groups.</p> </td> </tr> -<tr class="field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first last simple"> +<tr class="field-even field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first last simple"> <li><strong>group_types</strong> (<em>string</em>) – Accepts a comma-separated string with one or more of the following group_types: ‘g’ (group), ‘t’ (test), ‘h’ (hidden), ‘all’ (all). Defaults to ‘g’.</li> @@ -222,16 +221,15 @@ <h1>Groups<a class="headerlink" href="#groups" title="Permalink to this headline <dl class="post"> <dt id="post--#account_id-groups"> <tt class="descname">POST </tt><tt class="descname">/#account_id/groups</tt><a class="headerlink" href="#post--#account_id-groups" title="Permalink to this definition">¶</a></dt> -<dd><p><tt class="docutils literal"><span class="pre">POST</span> <span class="pre">/#account_id/groups</span></tt></p> -<p>Create one or more new member groups.</p> +<dd><p>Create one or more new member groups.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">An array of the new group ids and group names.</p> +<tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">An array of the new group ids and group names.</p> </td> </tr> -<tr class="field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first last simple"> +<tr class="field-even field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first last simple"> <li><strong>groups</strong> (<em>array</em>) – An array of group objects. Each object must contain a <cite>group_name</cite> parameter.</li> </ul> @@ -267,15 +265,14 @@ <h1>Groups<a class="headerlink" href="#groups" title="Permalink to this headline <dl class="get"> <dt id="get--#account_id-groups-#member_group_id"> <tt class="descname">GET </tt><tt class="descname">/#account_id/groups/#member_group_id</tt><a class="headerlink" href="#get--#account_id-groups-#member_group_id" title="Permalink to this definition">¶</a></dt> -<dd><p><tt class="docutils literal"><span class="pre">GET</span> <span class="pre">/#account_id/groups/#member_group_id</span></tt></p> -<p>Get the detailed information for a single member group.</p> +<dd><p>Get the detailed information for a single member group.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field"><th class="field-name">Returns :</th><td class="field-body">A group.</td> +<tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">A group.</td> </tr> -<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the group does not exist.</td> +<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the group does not exist.</td> </tr> </tbody> </table> @@ -304,21 +301,20 @@ <h1>Groups<a class="headerlink" href="#groups" title="Permalink to this headline <dl class="put"> <dt id="put--#account_id-groups-#member_group_id"> <tt class="descname">PUT </tt><tt class="descname">/#account_id/groups/#member_group_id</tt><a class="headerlink" href="#put--#account_id-groups-#member_group_id" title="Permalink to this definition">¶</a></dt> -<dd><p><tt class="docutils literal"><span class="pre">PUT</span> <span class="pre">/#account_id/groups/#member_group_id</span></tt></p> -<p>Update information for a single member group.</p> +<dd><p>Update information for a single member group.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> +<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> <li><strong>group_name</strong> (<em>string</em>) – Updated group name.</li> </ul> </td> </tr> -<tr class="field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">True if the update was successful</p> +<tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">True if the update was successful</p> </td> </tr> -<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the group does not exist.</p> +<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the group does not exist.</p> </td> </tr> </tbody> @@ -342,15 +338,14 @@ <h1>Groups<a class="headerlink" href="#groups" title="Permalink to this headline <dl class="delete"> <dt id="delete--#account_id-groups-#member_group_id"> <tt class="descname">DELETE </tt><tt class="descname">/#account_id/groups/#member_group_id</tt><a class="headerlink" href="#delete--#account_id-groups-#member_group_id" title="Permalink to this definition">¶</a></dt> -<dd><p><tt class="docutils literal"><span class="pre">DELETE</span> <span class="pre">/#account_id/groups/#member_group_id</span></tt></p> -<p>Delete a single member group.</p> +<dd><p>Delete a single member group.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field"><th class="field-name">Returns :</th><td class="field-body">True if the group is deleted.</td> +<tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">True if the group is deleted.</td> </tr> -<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the group does not exist.</td> +<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the group does not exist.</td> </tr> </tbody> </table> @@ -370,21 +365,20 @@ <h1>Groups<a class="headerlink" href="#groups" title="Permalink to this headline <dl class="get"> <dt id="get--#account_id-groups-#member_group_id-members"> <tt class="descname">GET </tt><tt class="descname">/#account_id/groups/#member_group_id/members</tt><a class="headerlink" href="#get--#account_id-groups-#member_group_id-members" title="Permalink to this definition">¶</a></dt> -<dd><p><tt class="docutils literal"><span class="pre">GET</span> <span class="pre">/#account_id/groups/#member_group_id/members</span></tt></p> -<p>Get the members in a single active member group.</p> +<dd><p>Get the members in a single active member group.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">An array of members.</p> +<tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">An array of members.</p> </td> </tr> -<tr class="field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> +<tr class="field-even field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> <li><strong>deleted</strong> (<em>boolean</em>) – include deleted members. Optional, defaults to false.</li> </ul> </td> </tr> -<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the group does not exist.</p> +<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the group does not exist.</p> </td> </tr> </tbody> @@ -445,23 +439,22 @@ <h1>Groups<a class="headerlink" href="#groups" title="Permalink to this headline <dl class="put"> <dt id="put--#account_id-groups-#member_group_id-members"> <tt class="descname">PUT </tt><tt class="descname">/#account_id/groups/#member_group_id/members</tt><a class="headerlink" href="#put--#account_id-groups-#member_group_id-members" title="Permalink to this definition">¶</a></dt> -<dd><p><tt class="docutils literal"><span class="pre">PUT</span> <span class="pre">/#account_id/groups/#member_group_id/members</span></tt></p> -<p>Add a list of members to a single active member group.</p> +<dd><p>Add a list of members to a single active member group.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> +<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> <li><strong>member_ids</strong> (<em>array</em>) – An array of member ids.</li> </ul> </td> </tr> -<tr class="field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">An array of references to the members added to the group. If +<tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">An array of references to the members added to the group. If a member already exists in the group or is not a valid member, that reference will not be returned.</p> </td> </tr> -<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the group does not exist.</p> +<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the group does not exist.</p> </td> </tr> </tbody> @@ -489,21 +482,20 @@ <h1>Groups<a class="headerlink" href="#groups" title="Permalink to this headline <dl class="put"> <dt id="put--#account_id-groups-#member_group_id-members-remove"> <tt class="descname">PUT </tt><tt class="descname">/#account_id/groups/#member_group_id/members/remove</tt><a class="headerlink" href="#put--#account_id-groups-#member_group_id-members-remove" title="Permalink to this definition">¶</a></dt> -<dd><p><tt class="docutils literal"><span class="pre">PUT</span> <span class="pre">/#account_id/groups/#member_group_id/members/remove</span></tt></p> -<p>Remove members from a single active member group.</p> +<dd><p>Remove members from a single active member group.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> +<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> <li><strong>member_ids</strong> (<em>array</em>) – An array of member ids.</li> </ul> </td> </tr> -<tr class="field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">An array of references to the removed members.</p> +<tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">An array of references to the removed members.</p> </td> </tr> -<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the group does not exist.</p> +<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the group does not exist.</p> </td> </tr> </tbody> @@ -533,22 +525,21 @@ <h1>Groups<a class="headerlink" href="#groups" title="Permalink to this headline <dl class="delete"> <dt id="delete--#account_id-groups-#member_group_id-members"> <tt class="descname">DELETE </tt><tt class="descname">/#account_id/groups/#member_group_id/members</tt><a class="headerlink" href="#delete--#account_id-groups-#member_group_id-members" title="Permalink to this definition">¶</a></dt> -<dd><p><tt class="docutils literal"><span class="pre">DELETE</span> <span class="pre">/#account_id/groups/#member_group_id/members</span></tt></p> -<p>Remove all members from a single active member group.</p> +<dd><p>Remove all members from a single active member group.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> +<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> <li><strong>member_status_id</strong> (<em>string</em>) – Optional. This is ‘a’ (active), ‘o’ (optout), or ‘e’ (error).</li> </ul> </td> </tr> -<tr class="field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">Returns the number of members removed from the group.</p> +<tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">Returns the number of members removed from the group.</p> </td> </tr> -<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the group does not exist.</p> +<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the group does not exist.</p> </td> </tr> </tbody> @@ -580,23 +571,22 @@ <h1>Groups<a class="headerlink" href="#groups" title="Permalink to this headline <dl class="delete"> <dt id="delete--#account_id-groups-#member_group_id-members-remove"> <tt class="descname">DELETE </tt><tt class="descname">/#account_id/groups/#member_group_id/members/remove</tt><a class="headerlink" href="#delete--#account_id-groups-#member_group_id-members-remove" title="Permalink to this definition">¶</a></dt> -<dd><p><tt class="docutils literal"><span class="pre">DELETE</span> <span class="pre">/#account_id/groups/#member_group_id/members/remove</span></tt></p> -<p>Remove all members from all active member groups as a background job. +<dd><p>Remove all members from all active member groups as a background job. The member_status_id parameter must be set.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> +<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> <li><strong>member_status_id</strong> (<em>string</em>) – This is ‘a’ (active), ‘o’ (optout), or ‘e’ (error).</li> </ul> </td> </tr> -<tr class="field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">Returns true.</p> +<tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">Returns true.</p> </td> </tr> -<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the group does not exist.</p> +<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the group does not exist.</p> </td> </tr> </tbody> @@ -628,22 +618,21 @@ <h1>Groups<a class="headerlink" href="#groups" title="Permalink to this headline <dl class="put"> <dt id="put--#account_id-groups-#from_group_id-#to_group_id-members-copy"> <tt class="descname">PUT </tt><tt class="descname">/#account_id/groups/#from_group_id/#to_group_id/members/copy</tt><a class="headerlink" href="#put--#account_id-groups-#from_group_id-#to_group_id-members-copy" title="Permalink to this definition">¶</a></dt> -<dd><p><tt class="docutils literal"><span class="pre">PUT</span> <span class="pre">/#account_id/groups/#from_group_id/#to_group_id/members/copy</span></tt></p> -<p>Copy all the users of one group into another group.</p> +<dd><p>Copy all the users of one group into another group.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> +<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> <li><strong>member_status_id</strong> (<em>array</em>) – This is ‘a’ (active), ‘o’ (optout), or ‘e’ (error).</li> </ul> </td> </tr> -<tr class="field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">True</p> +<tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">True</p> </td> </tr> -<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the group does not exist.</p> +<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the group does not exist.</p> </td> </tr> </tbody> @@ -683,7 +672,7 @@ <h1>Groups<a class="headerlink" href="#groups" title="Permalink to this headline <div id="searchbox" style="display: none"> <h3>Quick search</h3> <form class="search" action="../../search.html" method="get"> - <input type="text" name="q" size="18" /> + <input type="text" name="q" /> <input type="submit" value="Go" /> <input type="hidden" name="check_keywords" value="yes" /> <input type="hidden" name="area" value="default" /> @@ -713,7 +702,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 29, 2013 at 04:16 PM. + Last updated on Feb 05, 2013 at 03:36 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/mailings.html b/api/external/mailings.html index 9b10200..25409d1 100644 --- a/api/external/mailings.html +++ b/api/external/mailings.html @@ -30,7 +30,7 @@ <script type="text/javascript">try{Typekit.load();}catch(e){}</script> <script type="text/javascript" src="../../_static/underscore.js"></script> <script type="text/javascript" src="../../_static/doctools.js"></script> - <link rel="top" title="audience v0.1 documentation" href="../../index.html" /> + <link rel="top" title="audience 0.1 documentation" href="../../index.html" /> <link rel="next" title="Members" href="members.html" /> <link rel="prev" title="Groups" href="groups.html" /> <link rel="icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> @@ -93,7 +93,7 @@ <h3>Navigation</h3> <li class="right" > <a href="groups.html" title="Groups" accesskey="P">previous</a> |</li> - <li><a href="../../index.html">audience v0.1 documentation</a> »</li> + <li><a href="../../index.html">audience 0.1 documentation</a> »</li> </ul> </div> @@ -110,13 +110,12 @@ <h1>Mailings<a class="headerlink" href="#mailings" title="Permalink to this head <dl class="get"> <dt id="get--#account_id-mailings"> <tt class="descname">GET </tt><tt class="descname">/#account_id/mailings</tt><a class="headerlink" href="#get--#account_id-mailings" title="Permalink to this definition">¶</a></dt> -<dd><p><tt class="docutils literal"><span class="pre">GET</span> <span class="pre">/#account_id/mailings</span></tt></p> -<p>Get information about current mailings.</p> +<dd><p>Get information about current mailings.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> +<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> <li><strong>include_archived</strong> (<em>boolean</em>) – Optional flag to include archived mailings in the list.</li> <li><strong>mailing_types</strong> (<em>string</em>) – Accepts a comma-separated string with one or more of the following mailing types: ‘m’ (standard), ‘t’ (test), @@ -132,10 +131,10 @@ <h1>Mailings<a class="headerlink" href="#mailings" title="Permalink to this head </ul> </td> </tr> -<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><p class="first"><tt class="docutils literal"><span class="pre">Http400</span></tt> if invalid mailing types or statuses are specified.</p> +<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><p class="first"><tt class="docutils literal"><span class="pre">Http400</span></tt> if invalid mailing types or statuses are specified.</p> </td> </tr> -<tr class="field"><th class="field-name">Returns :</th><td class="field-body"><p class="first last">An array of mailings.</p> +<tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body"><p class="first last">An array of mailings.</p> </td> </tr> </tbody> @@ -259,15 +258,14 @@ <h1>Mailings<a class="headerlink" href="#mailings" title="Permalink to this head <dl class="get"> <dt id="get--#account_id-mailings-#mailing_id"> <tt class="descname">GET </tt><tt class="descname">/#account_id/mailings/#mailing_id</tt><a class="headerlink" href="#get--#account_id-mailings-#mailing_id" title="Permalink to this definition">¶</a></dt> -<dd><p><tt class="docutils literal"><span class="pre">GET</span> <span class="pre">/#account_id/mailings/#mailing_id</span></tt></p> -<p>Get detailed information for one mailing.</p> +<dd><p>Get detailed information for one mailing.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field"><th class="field-name">Returns :</th><td class="field-body">A mailing.</td> +<tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">A mailing.</td> </tr> -<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no mailing is found.</td> +<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no mailing is found.</td> </tr> </tbody> </table> @@ -329,16 +327,15 @@ <h1>Mailings<a class="headerlink" href="#mailings" title="Permalink to this head <dl class="get"> <dt id="get--#account_id-mailings-#mailing_id-members"> <tt class="descname">GET </tt><tt class="descname">/#account_id/mailings/#mailing_id/members</tt><a class="headerlink" href="#get--#account_id-mailings-#mailing_id-members" title="Permalink to this definition">¶</a></dt> -<dd><p><tt class="docutils literal"><span class="pre">GET</span> <span class="pre">/#account_id/mailings/#mailing_id/members</span></tt></p> -<p>Get the list of members to whom the given mailing was sent. This +<dd><p>Get the list of members to whom the given mailing was sent. This does not include groups or searches.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field"><th class="field-name">Returns :</th><td class="field-body">An array of members including status and member fields.</td> +<tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">An array of members including status and member fields.</td> </tr> -<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no mailing is found.</td> +<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no mailing is found.</td> </tr> </tbody> </table> @@ -379,25 +376,24 @@ <h1>Mailings<a class="headerlink" href="#mailings" title="Permalink to this head <dl class="get"> <dt id="get--#account_id-mailings-#mailing_id-messages-#member_id"> <tt class="descname">GET </tt><tt class="descname">/#account_id/mailings/#mailing_id/messages/#member_id</tt><a class="headerlink" href="#get--#account_id-mailings-#mailing_id-messages-#member_id" title="Permalink to this definition">¶</a></dt> -<dd><p><tt class="docutils literal"><span class="pre">GET</span> <span class="pre">/#account_id/mailings/#mailing_id/messages/#member_id</span></tt></p> -<p>Gets the personalized message content as sent to a specific member +<dd><p>Gets the personalized message content as sent to a specific member as part of the specified mailing.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> +<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> <li><strong>type</strong> (<em>string</em>) – Accepts: ‘all’, ‘html’, ‘plaintext’, ‘subject’. Defaults to ‘all’, if not provided.</li> </ul> </td> </tr> -<tr class="field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">Message content from a mailing, personalized for a member. +<tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">Message content from a mailing, personalized for a member. The response will contain all parts of the mailing content by default, or just the type of content specified by <cite>type</cite>.</p> </td> </tr> -<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no message is found.</p> +<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no message is found.</p> </td> </tr> </tbody> @@ -435,15 +431,14 @@ <h1>Mailings<a class="headerlink" href="#mailings" title="Permalink to this head <dl class="get"> <dt id="get--#account_id-mailings-#mailing_id-groups"> <tt class="descname">GET </tt><tt class="descname">/#account_id/mailings/#mailing_id/groups</tt><a class="headerlink" href="#get--#account_id-mailings-#mailing_id-groups" title="Permalink to this definition">¶</a></dt> -<dd><p><tt class="docutils literal"><span class="pre">GET</span> <span class="pre">/#account_id/mailings/#mailing_id/groups</span></tt></p> -<p>Get the groups to which a particular mailing was sent.</p> +<dd><p>Get the groups to which a particular mailing was sent.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field"><th class="field-name">Returns :</th><td class="field-body">An array of groups.</td> +<tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">An array of groups.</td> </tr> -<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no mailing is found.</td> +<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no mailing is found.</td> </tr> </tbody> </table> @@ -475,15 +470,14 @@ <h1>Mailings<a class="headerlink" href="#mailings" title="Permalink to this head <dl class="get"> <dt id="get--#account_id-mailings-#mailing_id-searches"> <tt class="descname">GET </tt><tt class="descname">/#account_id/mailings/#mailing_id/searches</tt><a class="headerlink" href="#get--#account_id-mailings-#mailing_id-searches" title="Permalink to this definition">¶</a></dt> -<dd><p><tt class="docutils literal"><span class="pre">GET</span> <span class="pre">/#account_id/mailings/#mailing_id/searches</span></tt></p> -<p>Get all searches associated with a sent mailing.</p> +<dd><p>Get all searches associated with a sent mailing.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field"><th class="field-name">Returns :</th><td class="field-body">An array of searches.</td> +<tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">An array of searches.</td> </tr> -<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no mailing is found.</td> +<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no mailing is found.</td> </tr> </tbody> </table> @@ -506,8 +500,7 @@ <h1>Mailings<a class="headerlink" href="#mailings" title="Permalink to this head <dl class="put"> <dt id="put--#account_id-mailings-#mailing_id"> <tt class="descname">PUT </tt><tt class="descname">/#account_id/mailings/#mailing_id</tt><a class="headerlink" href="#put--#account_id-mailings-#mailing_id" title="Permalink to this definition">¶</a></dt> -<dd><p><tt class="docutils literal"><span class="pre">PUT</span> <span class="pre">/#account_id/mailings/#mailing_id</span></tt></p> -<p>Update status of a current mailing</p> +<dd><p>Update status of a current mailing</p> <p>The status can be one of <tt class="docutils literal"><span class="pre">canceled</span></tt>, <tt class="docutils literal"><span class="pre">paused</span></tt> or <tt class="docutils literal"><span class="pre">ready</span></tt>. This method can be used to control the progress of a mailing by pausing, canceling or resuming it. Once a mailing is canceled it can’t be @@ -518,14 +511,13 @@ <h1>Mailings<a class="headerlink" href="#mailings" title="Permalink to this head <dl class="delete"> <dt id="delete--#account_id-mailings-#mailing_id"> <tt class="descname">DELETE </tt><tt class="descname">/#account_id/mailings/#mailing_id</tt><a class="headerlink" href="#delete--#account_id-mailings-#mailing_id" title="Permalink to this definition">¶</a></dt> -<dd><p><tt class="docutils literal"><span class="pre">DELETE</span> <span class="pre">/#account_id/mailings/#mailing_id</span></tt></p> -<p>Sets archived timestamp for a mailing so it is no longer included in +<dd><p>Sets archived timestamp for a mailing so it is no longer included in mailing_list.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field"><th class="field-name">Returns :</th><td class="field-body">True if the mailing is successfully archived.</td> +<tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">True if the mailing is successfully archived.</td> </tr> </tbody> </table> @@ -545,14 +537,13 @@ <h1>Mailings<a class="headerlink" href="#mailings" title="Permalink to this head <dl class="delete"> <dt id="delete--#account_id-mailings-cancel-#mailing_id"> <tt class="descname">DELETE </tt><tt class="descname">/#account_id/mailings/cancel/#mailing_id</tt><a class="headerlink" href="#delete--#account_id-mailings-cancel-#mailing_id" title="Permalink to this definition">¶</a></dt> -<dd><p><tt class="docutils literal"><span class="pre">DELETE</span> <span class="pre">/#account_id/mailings/cancel/#mailing_id</span></tt></p> -<p>Cancels a mailing that has a current status of pending or +<dd><p>Cancels a mailing that has a current status of pending or paused. All other statuses will result in a 404.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field"><th class="field-name">Returns :</th><td class="field-body">True if mailing marked as cancelled.</td> +<tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">True if mailing marked as cancelled.</td> </tr> </tbody> </table> @@ -572,15 +563,14 @@ <h1>Mailings<a class="headerlink" href="#mailings" title="Permalink to this head <dl class="post"> <dt id="post--#account_id-forwards-#mailing_id-#member_id"> <tt class="descname">POST </tt><tt class="descname">/#account_id/forwards/#mailing_id/#member_id</tt><a class="headerlink" href="#post--#account_id-forwards-#mailing_id-#member_id" title="Permalink to this definition">¶</a></dt> -<dd><p><tt class="docutils literal"><span class="pre">POST</span> <span class="pre">/#account_id/forwards/#mailing_id/#member_id</span></tt></p> -<p>Forward a previous message to additional recipients. If these +<dd><p>Forward a previous message to additional recipients. If these recipients are not already in the audience, they will be added with a status of FORWARDED.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> +<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> <li><strong>recipient_emails</strong> (<em>array</em>) – An array of email addresses to which to forward the specified message.</li> <li><strong>note</strong> (<em>string</em>) – A note to include in the forward. This note will be HTML @@ -588,10 +578,10 @@ <h1>Mailings<a class="headerlink" href="#mailings" title="Permalink to this head </ul> </td> </tr> -<tr class="field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">A reference to the new mailing.</p> +<tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">A reference to the new mailing.</p> </td> </tr> -<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no message is found.</p> +<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no message is found.</p> </td> </tr> </tbody> @@ -620,14 +610,13 @@ <h1>Mailings<a class="headerlink" href="#mailings" title="Permalink to this head <dl class="post"> <dt id="post--#account_id-mailings-#mailing_id"> <tt class="descname">POST </tt><tt class="descname">/#account_id/mailings/#mailing_id</tt><a class="headerlink" href="#post--#account_id-mailings-#mailing_id" title="Permalink to this definition">¶</a></dt> -<dd><p><tt class="docutils literal"><span class="pre">POST</span> <span class="pre">/#account_id/mailings/#mailing_id</span></tt></p> -<p>Send a prior mailing to additional recipients. A new mailing will be +<dd><p>Send a prior mailing to additional recipients. A new mailing will be created that inherits its content from the original.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> +<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> <li><strong>sender</strong> (<em>string</em>) – The message sender. If this is not supplied, the sender of the original mailing will be used.</li> <li><strong>heads_up_emails</strong> (<em>array</em>) – A list of email addresses that heads up @@ -641,10 +630,10 @@ <h1>Mailings<a class="headerlink" href="#mailings" title="Permalink to this head </ul> </td> </tr> -<tr class="field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">A reference to the new mailing.</p> +<tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">A reference to the new mailing.</p> </td> </tr> -<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no mailing is found.</p> +<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no mailing is found.</p> </td> </tr> </tbody> @@ -672,15 +661,14 @@ <h1>Mailings<a class="headerlink" href="#mailings" title="Permalink to this head <dl class="get"> <dt id="get--#account_id-mailings-#mailing_id-headsup"> <tt class="descname">GET </tt><tt class="descname">/#account_id/mailings/#mailing_id/headsup</tt><a class="headerlink" href="#get--#account_id-mailings-#mailing_id-headsup" title="Permalink to this definition">¶</a></dt> -<dd><p><tt class="docutils literal"><span class="pre">GET</span> <span class="pre">/#account_id/mailings/#mailing_id/headsup</span></tt></p> -<p>Get heads up email address(es) related to a mailing.</p> +<dd><p>Get heads up email address(es) related to a mailing.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field"><th class="field-name">Returns :</th><td class="field-body">An array of heads up email addresses.</td> +<tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">An array of heads up email addresses.</td> </tr> -<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no mailing is found.</td> +<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no mailing is found.</td> </tr> </tbody> </table> @@ -703,14 +691,13 @@ <h1>Mailings<a class="headerlink" href="#mailings" title="Permalink to this head <dl class="post"> <dt id="post--#account_id-mailings-validate"> <tt class="descname">POST </tt><tt class="descname">/#account_id/mailings/validate</tt><a class="headerlink" href="#post--#account_id-mailings-validate" title="Permalink to this definition">¶</a></dt> -<dd><p><tt class="docutils literal"><span class="pre">POST</span> <span class="pre">/#account_id/mailings/validate</span></tt></p> -<p>Validate that a mailing has valid personalization-tag syntax. Checks +<dd><p>Validate that a mailing has valid personalization-tag syntax. Checks tag syntax in three params:</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> +<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> <li><strong>html_body</strong> (<em>string</em>) – The html contents of the mailing</li> <li><strong>plaintext</strong> (<em>string</em>) – The plaintext contents of the mailing. Unlike in <tt class="docutils literal"><span class="pre">create_mailing</span></tt>, this param is not required.</li> @@ -718,10 +705,10 @@ <h1>Mailings<a class="headerlink" href="#mailings" title="Permalink to this head </ul> </td> </tr> -<tr class="field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">true</p> +<tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">true</p> </td> </tr> -<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http400</span></tt> if any tags are invalid. The response body will +<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http400</span></tt> if any tags are invalid. The response body will have information about the invalid tags.</p> </td> </tr> @@ -746,8 +733,7 @@ <h1>Mailings<a class="headerlink" href="#mailings" title="Permalink to this head <dl class="post"> <dt id="post--#account_id-mailings-#mailing_id-winner-#winner_id"> <tt class="descname">POST </tt><tt class="descname">/#account_id/mailings/#mailing_id/winner/#winner_id</tt><a class="headerlink" href="#post--#account_id-mailings-#mailing_id-winner-#winner_id" title="Permalink to this definition">¶</a></dt> -<dd><p><tt class="docutils literal"><span class="pre">POST</span> <span class="pre">/#account_id/mailings/#mailing_id/winner/#winner_id</span></tt></p> -<p>Declare the winner of a split test manually. In the event that the test +<dd><p>Declare the winner of a split test manually. In the event that the test duration has not elapsed, the current stats for each test will be frozen and the content defined in the user declared winner will sent to the remaining members for the mailing. Please note, any messages that are @@ -757,9 +743,9 @@ <h1>Mailings<a class="headerlink" href="#mailings" title="Permalink to this head <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field"><th class="field-name">Returns :</th><td class="field-body">True on success.</td> +<tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">True on success.</td> </tr> -<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http403</span></tt> if the winner cannot be manually declared.</td> +<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http403</span></tt> if the winner cannot be manually declared.</td> </tr> </tbody> </table> @@ -794,7 +780,7 @@ <h1>Mailings<a class="headerlink" href="#mailings" title="Permalink to this head <div id="searchbox" style="display: none"> <h3>Quick search</h3> <form class="search" action="../../search.html" method="get"> - <input type="text" name="q" size="18" /> + <input type="text" name="q" /> <input type="submit" value="Go" /> <input type="hidden" name="check_keywords" value="yes" /> <input type="hidden" name="area" value="default" /> @@ -824,7 +810,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 29, 2013 at 04:16 PM. + Last updated on Feb 05, 2013 at 03:36 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/members.html b/api/external/members.html index 3314dc8..c7cbb03 100644 --- a/api/external/members.html +++ b/api/external/members.html @@ -30,7 +30,7 @@ <script type="text/javascript">try{Typekit.load();}catch(e){}</script> <script type="text/javascript" src="../../_static/underscore.js"></script> <script type="text/javascript" src="../../_static/doctools.js"></script> - <link rel="top" title="audience v0.1 documentation" href="../../index.html" /> + <link rel="top" title="audience 0.1 documentation" href="../../index.html" /> <link rel="next" title="Response" href="response.html" /> <link rel="prev" title="Mailings" href="mailings.html" /> <link rel="icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> @@ -93,7 +93,7 @@ <h3>Navigation</h3> <li class="right" > <a href="mailings.html" title="Mailings" accesskey="P">previous</a> |</li> - <li><a href="../../index.html">audience v0.1 documentation</a> »</li> + <li><a href="../../index.html">audience 0.1 documentation</a> »</li> </ul> </div> @@ -118,19 +118,18 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli <dl class="get"> <dt id="get--#account_id-members"> <tt class="descname">GET </tt><tt class="descname">/#account_id/members</tt><a class="headerlink" href="#get--#account_id-members" title="Permalink to this definition">¶</a></dt> -<dd><p><tt class="docutils literal"><span class="pre">GET</span> <span class="pre">/#account_id/members</span></tt></p> -<p>Get a basic listing of all members in an account.</p> +<dd><p>Get a basic listing of all members in an account.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> +<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> <li><strong>deleted</strong> (<em>boolean</em>) – Accepts True or 1. Optional flag to include deleted members.</li> </ul> </td> </tr> -<tr class="field"><th class="field-name">Returns :</th><td class="field-body"><p class="first last">A list of members in the given account.</p> +<tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first last">A list of members in the given account.</p> </td> </tr> </tbody> @@ -240,23 +239,22 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli <dl class="get"> <dt id="get--#account_id-members-#member_id"> <tt class="descname">GET </tt><tt class="descname">/#account_id/members/#member_id</tt><a class="headerlink" href="#get--#account_id-members-#member_id" title="Permalink to this definition">¶</a></dt> -<dd><p><tt class="docutils literal"><span class="pre">GET</span> <span class="pre">/#account_id/members/#member_id</span></tt></p> -<p>Get detailed information on a particular member, including all custom +<dd><p>Get detailed information on a particular member, including all custom fields.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> +<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> <li><strong>deleted</strong> (<em>boolean</em>) – Accepts True or 1. Optional flag to include deleted members.</li> </ul> </td> </tr> -<tr class="field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">A single member if one exists.</p> +<tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">A single member if one exists.</p> </td> </tr> -<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no member is found.</p> +<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no member is found.</p> </td> </tr> </tbody> @@ -295,23 +293,22 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli <dl class="get"> <dt id="get--#account_id-members-email--email"> <tt class="descname">GET </tt><tt class="descname">/#account_id/members/email/:email</tt><a class="headerlink" href="#get--#account_id-members-email--email" title="Permalink to this definition">¶</a></dt> -<dd><p><tt class="docutils literal"><span class="pre">GET</span> <span class="pre">/#account_id/members/email/:email</span></tt></p> -<p>Get detailed information on a particular member, including all custom +<dd><p>Get detailed information on a particular member, including all custom fields, by email address instead of ID.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> +<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> <li><strong>deleted</strong> (<em>boolean</em>) – Accepts True or 1. Optional flag to include deleted members.</li> </ul> </td> </tr> -<tr class="field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">A single member if one exists.</p> +<tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">A single member if one exists.</p> </td> </tr> -<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no member is found.</p> +<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no member is found.</p> </td> </tr> </tbody> @@ -350,16 +347,15 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli <dl class="get"> <dt id="get--#account_id-members-#member_id-optout"> <tt class="descname">GET </tt><tt class="descname">/#account_id/members/#member_id/optout</tt><a class="headerlink" href="#get--#account_id-members-#member_id-optout" title="Permalink to this definition">¶</a></dt> -<dd><p><tt class="docutils literal"><span class="pre">GET</span> <span class="pre">/#account_id/members/#member_id/optout</span></tt></p> -<p>If a member has been opted out, returns the details +<dd><p>If a member has been opted out, returns the details of their optout, specifically date and mailing_id.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field"><th class="field-name">Returns :</th><td class="field-body">Member opt out date and mailing if member is opted out.</td> +<tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">Member opt out date and mailing if member is opted out.</td> </tr> -<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no member is found.</td> +<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no member is found.</td> </tr> </tbody> </table> @@ -382,17 +378,16 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli <dl class="put"> <dt id="put--#account_id-members-email-optout--email"> <tt class="descname">PUT </tt><tt class="descname">/#account_id/members/email/optout/:email</tt><a class="headerlink" href="#put--#account_id-members-email-optout--email" title="Permalink to this definition">¶</a></dt> -<dd><p><tt class="docutils literal"><span class="pre">PUT</span> <span class="pre">/#account_id/members/email/optout/:email</span></tt></p> -<p>Update a member’s status to optout keyed on email address +<dd><p>Update a member’s status to optout keyed on email address instead of an ID.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field"><th class="field-name">Returns :</th><td class="field-body">True if member status change was successful or +<tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">True if member status change was successful or member was already opted out.</td> </tr> -<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no member is found.</td> +<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no member is found.</td> </tr> </tbody> </table> @@ -413,14 +408,13 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli <dl class="post"> <dt id="post--#account_id-members"> <tt class="descname">POST </tt><tt class="descname">/#account_id/members</tt><a class="headerlink" href="#post--#account_id-members" title="Permalink to this definition">¶</a></dt> -<dd><p><tt class="docutils literal"><span class="pre">POST</span> <span class="pre">/#account_id/members</span></tt></p> -<p>Add new members or update existing members in bulk. If you are doing +<dd><p>Add new members or update existing members in bulk. If you are doing actions for a single member please see the <cite>/members/add</cite> call below.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first last simple"> +<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first last simple"> <li><strong>members</strong> (<em>array</em>) – An array of members to update</li> </ul> </td> @@ -434,7 +428,7 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first last simple"> +<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first last simple"> <li><strong>source_filename</strong> (<em>string</em>) – An arbitrary string to associate with this import.</li> </ul> </td> @@ -446,13 +440,13 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> +<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> <li><strong>add_only</strong> (<em>boolean</em>) – Optional. Only add new members, ignore existing members.</li> <li><strong>group_ids</strong> (<em>array of integers</em>) – Optional. Add imported members to this list of groups.</li> </ul> </td> </tr> -<tr class="field"><th class="field-name">Returns :</th><td class="field-body"><p class="first last">An import id</p> +<tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first last">An import id</p> </td> </tr> </tbody> @@ -485,14 +479,13 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli <dl class="post"> <dt id="post--#account_id-members-add"> <tt class="descname">POST </tt><tt class="descname">/#account_id/members/add</tt><a class="headerlink" href="#post--#account_id-members-add" title="Permalink to this definition">¶</a></dt> -<dd><p><tt class="docutils literal"><span class="pre">POST</span> <span class="pre">/#account_id/members/add</span></tt></p> -<p>Adds or updates a single audience member. If you are performing actions +<dd><p>Adds or updates a single audience member. If you are performing actions on bulk members please use the <cite>/members</cite> call above.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> +<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> <li><strong>email</strong> (<em>string</em>) – Email address of member to add or update</li> <li><strong>fields</strong> (<em>dictionary</em>) – Names and values of user-defined fields to update</li> <li><strong>group_ids</strong> (<em>integer</em>) – Optional. Add imported members to this list of groups.</li> @@ -502,7 +495,7 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli </ul> </td> </tr> -<tr class="field"><th class="field-name">Returns :</th><td class="field-body"><p class="first last">The member_id of the new or updated member, whether the +<tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first last">The member_id of the new or updated member, whether the member was added or an existing member was updated, and the status of the member. The status will be reported as ‘a’ (active), ‘e’ (error), or ‘o’ (optout).</p> </td> @@ -535,19 +528,18 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli <dl class="put"> <dt id="put--#account_id-members-delete"> <tt class="descname">PUT </tt><tt class="descname">/#account_id/members/delete</tt><a class="headerlink" href="#put--#account_id-members-delete" title="Permalink to this definition">¶</a></dt> -<dd><p><tt class="docutils literal"><span class="pre">PUT</span> <span class="pre">/#account_id/members/delete</span></tt></p> -<p>Delete an array of members.</p> +<dd><p>Delete an array of members.</p> <p>The members will be marked as deleted and cannot be retrieved.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> +<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> <li><strong>member_ids</strong> (<em>array</em>) – An array of member ids to delete.</li> </ul> </td> </tr> -<tr class="field"><th class="field-name">Returns :</th><td class="field-body"><p class="first last">True if all members are successfully deleted, otherwise False.</p> +<tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first last">True if all members are successfully deleted, otherwise False.</p> </td> </tr> </tbody> @@ -574,21 +566,20 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli <dl class="put"> <dt id="put--#account_id-members-status"> <tt class="descname">PUT </tt><tt class="descname">/#account_id/members/status</tt><a class="headerlink" href="#put--#account_id-members-status" title="Permalink to this definition">¶</a></dt> -<dd><p><tt class="docutils literal"><span class="pre">PUT</span> <span class="pre">/#account_id/members/status</span></tt></p> -<p>Change the status for an array of members.</p> +<dd><p>Change the status for an array of members.</p> <p>The members will have their member_status_id updated.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> +<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> <li><strong>member_ids</strong> (<em>array</em>) – The array of member ids to change.</li> <li><strong>status_to</strong> (<em>string</em>) – The new status for the given members. Accepts one of ‘a’ (active), ‘e’ (error), ‘o’ (optout).</li> </ul> </td> </tr> -<tr class="field"><th class="field-name">Returns :</th><td class="field-body"><p class="first last">True if the members are successfully updated, otherwise +<tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first last">True if the members are successfully updated, otherwise False.</p> </td> </tr> @@ -617,8 +608,7 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli <dl class="put"> <dt id="put--#account_id-members-#member_id"> <tt class="descname">PUT </tt><tt class="descname">/#account_id/members/#member_id</tt><a class="headerlink" href="#put--#account_id-members-#member_id" title="Permalink to this definition">¶</a></dt> -<dd><p><tt class="docutils literal"><span class="pre">PUT</span> <span class="pre">/#account_id/members/#member_id</span></tt></p> -<p>Update a single member’s information.</p> +<dd><p>Update a single member’s information.</p> <p>Update the information for an existing member. Note that this method allows the email address to be updated (which cannot be done with a POST, since in that case the email address is used to identify the @@ -627,7 +617,7 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> +<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> <li><strong>email</strong> (<em>string</em>) – A new email address for the member.</li> <li><strong>status_to</strong> (<em>string</em>) – A new status for the member. Accepts one of ‘a’ (active), ‘e’ (error), ‘o’ (opt-out).</li> @@ -636,10 +626,10 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli </ul> </td> </tr> -<tr class="field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">True if the member was updated successfully</p> +<tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">True if the member was updated successfully</p> </td> </tr> -<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no member is found.</p> +<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no member is found.</p> </td> </tr> </tbody> @@ -668,17 +658,16 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli <dl class="delete"> <dt id="delete--#account_id-members-#member_id"> <tt class="descname">DELETE </tt><tt class="descname">/#account_id/members/#member_id</tt><a class="headerlink" href="#delete--#account_id-members-#member_id" title="Permalink to this definition">¶</a></dt> -<dd><p><tt class="docutils literal"><span class="pre">DELETE</span> <span class="pre">/#account_id/members/#member_id</span></tt></p> -<p>Delete the specified member.</p> +<dd><p>Delete the specified member.</p> <p>The member, along with any associated response and history information, will be completely removed from the database.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field"><th class="field-name">Returns :</th><td class="field-body">True if the member is deleted.</td> +<tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">True if the member is deleted.</td> </tr> -<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no member is found.</td> +<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no member is found.</td> </tr> </tbody> </table> @@ -698,15 +687,14 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli <dl class="get"> <dt id="get--#account_id-members-#member_id-groups"> <tt class="descname">GET </tt><tt class="descname">/#account_id/members/#member_id/groups</tt><a class="headerlink" href="#get--#account_id-members-#member_id-groups" title="Permalink to this definition">¶</a></dt> -<dd><p><tt class="docutils literal"><span class="pre">GET</span> <span class="pre">/#account_id/members/#member_id/groups</span></tt></p> -<p>Get the groups to which a member belongs.</p> +<dd><p>Get the groups to which a member belongs.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field"><th class="field-name">Returns :</th><td class="field-body">An array of groups.</td> +<tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">An array of groups.</td> </tr> -<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no member is found.</td> +<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no member is found.</td> </tr> </tbody> </table> @@ -758,21 +746,20 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli <dl class="put"> <dt id="put--#account_id-members-#member_id-groups"> <tt class="descname">PUT </tt><tt class="descname">/#account_id/members/#member_id/groups</tt><a class="headerlink" href="#put--#account_id-members-#member_id-groups" title="Permalink to this definition">¶</a></dt> -<dd><p><tt class="docutils literal"><span class="pre">PUT</span> <span class="pre">/#account_id/members/#member_id/groups</span></tt></p> -<p>Add a single member to one or more groups.</p> +<dd><p>Add a single member to one or more groups.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> +<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> <li><strong>group_ids</strong> (<em>array</em>) – Group ids to which to add this member.</li> </ul> </td> </tr> -<tr class="field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">An array of ids of the affected groups.</p> +<tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">An array of ids of the affected groups.</p> </td> </tr> -<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no member is found.</p> +<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no member is found.</p> </td> </tr> </tbody> @@ -802,21 +789,20 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli <dl class="put"> <dt id="put--#account_id-members-#member_id-groups-remove"> <tt class="descname">PUT </tt><tt class="descname">/#account_id/members/#member_id/groups/remove</tt><a class="headerlink" href="#put--#account_id-members-#member_id-groups-remove" title="Permalink to this definition">¶</a></dt> -<dd><p><tt class="docutils literal"><span class="pre">PUT</span> <span class="pre">/#account_id/members/#member_id/groups/remove</span></tt></p> -<p>Remove a single member from one or more groups.</p> +<dd><p>Remove a single member from one or more groups.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> +<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> <li><strong>group_ids</strong> (<em>array</em>) – Group ids from which to remove this member.</li> </ul> </td> </tr> -<tr class="field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">An array of references to the affected groups.</p> +<tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">An array of references to the affected groups.</p> </td> </tr> -<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no member is found.</p> +<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no member is found.</p> </td> </tr> </tbody> @@ -844,18 +830,17 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli <dl class="delete"> <dt id="delete--#account_id-members"> <tt class="descname">DELETE </tt><tt class="descname">/#account_id/members</tt><a class="headerlink" href="#delete--#account_id-members" title="Permalink to this definition">¶</a></dt> -<dd><p><tt class="docutils literal"><span class="pre">DELETE</span> <span class="pre">/#account_id/members</span></tt></p> -<p>Delete all members.</p> +<dd><p>Delete all members.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> +<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> <li><strong>member_status_id</strong> (<em>string</em>) – This is ‘a’ (active), ‘o’ (optout), or ‘e’ (error).</li> </ul> </td> </tr> -<tr class="field"><th class="field-name">Returns :</th><td class="field-body"><p class="first last">Returns true.</p> +<tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first last">Returns true.</p> </td> </tr> </tbody> @@ -876,15 +861,14 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli <dl class="delete"> <dt id="delete--#account_id-members-#member_id-groups"> <tt class="descname">DELETE </tt><tt class="descname">/#account_id/members/#member_id/groups</tt><a class="headerlink" href="#delete--#account_id-members-#member_id-groups" title="Permalink to this definition">¶</a></dt> -<dd><p><tt class="docutils literal"><span class="pre">DELETE</span> <span class="pre">/#account_id/members/#member_id/groups</span></tt></p> -<p>Remove the specified member from all groups.</p> +<dd><p>Remove the specified member from all groups.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field"><th class="field-name">Returns :</th><td class="field-body">True if the member is removed from all groups.</td> +<tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">True if the member is removed from all groups.</td> </tr> -<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no member is found.</td> +<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no member is found.</td> </tr> </tbody> </table> @@ -904,22 +888,21 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli <dl class="put"> <dt id="put--#account_id-members-groups-remove"> <tt class="descname">PUT </tt><tt class="descname">/#account_id/members/groups/remove</tt><a class="headerlink" href="#put--#account_id-members-groups-remove" title="Permalink to this definition">¶</a></dt> -<dd><p><tt class="docutils literal"><span class="pre">PUT</span> <span class="pre">/#account_id/members/groups/remove</span></tt></p> -<p>Remove multiple members from groups.</p> +<dd><p>Remove multiple members from groups.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> +<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> <li><strong>member_ids</strong> (<em>array</em>) – Member ids to remove from the given groups.</li> <li><strong>group_ids</strong> (<em>array</em>) – Group ids from which to remove the given members.</li> </ul> </td> </tr> -<tr class="field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">True if the members are deleted, otherwise False.</p> +<tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">True if the members are deleted, otherwise False.</p> </td> </tr> -<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http404</span></tt> if any of the members or groups do not exist</p> +<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http404</span></tt> if any of the members or groups do not exist</p> </td> </tr> </tbody> @@ -948,13 +931,12 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli <dl class="get"> <dt id="get--#account_id-members-#member_id-mailings"> <tt class="descname">GET </tt><tt class="descname">/#account_id/members/#member_id/mailings</tt><a class="headerlink" href="#get--#account_id-members-#member_id-mailings" title="Permalink to this definition">¶</a></dt> -<dd><p><tt class="docutils literal"><span class="pre">GET</span> <span class="pre">/#account_id/members/#member_id/mailings</span></tt></p> -<p>Get the entire mailing history for a member.</p> +<dd><p>Get the entire mailing history for a member.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field"><th class="field-name">Returns :</th><td class="field-body">Message history details for the specified member.</td> +<tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">Message history details for the specified member.</td> </tr> </tbody> </table> @@ -989,13 +971,12 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli <dl class="get"> <dt id="get--#account_id-members-imports-#import_id-members"> <tt class="descname">GET </tt><tt class="descname">/#account_id/members/imports/#import_id/members</tt><a class="headerlink" href="#get--#account_id-members-imports-#import_id-members" title="Permalink to this definition">¶</a></dt> -<dd><p><tt class="docutils literal"><span class="pre">GET</span> <span class="pre">/#account_id/members/imports/#import_id/members</span></tt></p> -<p>Get a list of members affected by this import.</p> +<dd><p>Get a list of members affected by this import.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field"><th class="field-name">Returns :</th><td class="field-body">A list of members in the given account and import.</td> +<tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">A list of members in the given account and import.</td> </tr> </tbody> </table> @@ -1023,13 +1004,12 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli <dl class="get"> <dt id="get--#account_id-members-imports-#import_id"> <tt class="descname">GET </tt><tt class="descname">/#account_id/members/imports/#import_id</tt><a class="headerlink" href="#get--#account_id-members-imports-#import_id" title="Permalink to this definition">¶</a></dt> -<dd><p><tt class="docutils literal"><span class="pre">GET</span> <span class="pre">/#account_id/members/imports/#import_id</span></tt></p> -<p>Get information and statistics about this import.</p> +<dd><p>Get information and statistics about this import.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field"><th class="field-name">Returns :</th><td class="field-body">Import details for the given import_id.</td> +<tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">Import details for the given import_id.</td> </tr> </tbody> </table> @@ -1064,13 +1044,12 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli <dl class="get"> <dt id="get--#account_id-members-imports"> <tt class="descname">GET </tt><tt class="descname">/#account_id/members/imports</tt><a class="headerlink" href="#get--#account_id-members-imports" title="Permalink to this definition">¶</a></dt> -<dd><p><tt class="docutils literal"><span class="pre">GET</span> <span class="pre">/#account_id/members/imports</span></tt></p> -<p>Get information about all imports for this account.</p> +<dd><p>Get information about all imports for this account.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field"><th class="field-name">Returns :</th><td class="field-body">An array of import details.</td> +<tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">An array of import details.</td> </tr> </tbody> </table> @@ -1093,15 +1072,14 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli <dl class="delete"> <dt id="delete--#account_id-members-imports-delete"> <tt class="descname">DELETE </tt><tt class="descname">/#account_id/members/imports/delete</tt><a class="headerlink" href="#delete--#account_id-members-imports-delete" title="Permalink to this definition">¶</a></dt> -<dd><p><tt class="docutils literal"><span class="pre">DELETE</span> <span class="pre">/#account_id/members/imports/delete</span></tt></p> -<p>Update an import record to be marked as ‘deleted’.</p> +<dd><p>Update an import record to be marked as ‘deleted’.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field"><th class="field-name">Returns :</th><td class="field-body">True if the import is marked as deleted.</td> +<tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">True if the import is marked as deleted.</td> </tr> -<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the import record does not exist</td> +<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the import record does not exist</td> </tr> </tbody> </table> @@ -1110,21 +1088,20 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli <dl class="put"> <dt id="put--#account_id-members-#group_id-copy"> <tt class="descname">PUT </tt><tt class="descname">/#account_id/members/#group_id/copy</tt><a class="headerlink" href="#put--#account_id-members-#group_id-copy" title="Permalink to this definition">¶</a></dt> -<dd><p><tt class="docutils literal"><span class="pre">PUT</span> <span class="pre">/#account_id/members/#group_id/copy</span></tt></p> -<p>Copy all account members of one or more statuses into a group.</p> +<dd><p>Copy all account members of one or more statuses into a group.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> +<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> <li><strong>member_status_id</strong> (<em>array of strings</em>) – ‘a’ (active), ‘o’ (optout), and/or ‘e’ (error).</li> </ul> </td> </tr> -<tr class="field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">True</p> +<tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">True</p> </td> </tr> -<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the group does not exist.</p> +<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the group does not exist.</p> </td> </tr> </tbody> @@ -1151,8 +1128,7 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli <dl class="put"> <dt id="put--#account_id-members-status--status_from-to--status_to"> <tt class="descname">PUT </tt><tt class="descname">/#account_id/members/status/:status_from/to/:status_to</tt><a class="headerlink" href="#put--#account_id-members-status--status_from-to--status_to" title="Permalink to this definition">¶</a></dt> -<dd><p><tt class="docutils literal"><span class="pre">PUT</span> <span class="pre">/#account_id/members/status/:status_from/to/:status_to</span></tt></p> -<dl class="docutils"> +<dd><dl class="docutils"> <dt>Update the status for a group of members, based on their current</dt> <dd>status. Valid statuses id are (‘a’,’e’, ‘f’, ‘o’) active, error, forwarded, optout.</dd> @@ -1161,16 +1137,16 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> +<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> <li><strong>group_id</strong> – Optional. Limit the update to members of the specified group</li> </ul> </td> </tr> -<tr class="field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">True</p> +<tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">True</p> </td> </tr> -<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http400</span></tt> if the specified status is invalid</p> +<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http400</span></tt> if the specified status is invalid</p> </td> </tr> </tbody> @@ -1208,7 +1184,7 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli <div id="searchbox" style="display: none"> <h3>Quick search</h3> <form class="search" action="../../search.html" method="get"> - <input type="text" name="q" size="18" /> + <input type="text" name="q" /> <input type="submit" value="Go" /> <input type="hidden" name="check_keywords" value="yes" /> <input type="hidden" name="area" value="default" /> @@ -1238,7 +1214,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 29, 2013 at 04:16 PM. + Last updated on Feb 05, 2013 at 03:36 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/response.html b/api/external/response.html index 2eba102..76141d3 100644 --- a/api/external/response.html +++ b/api/external/response.html @@ -30,7 +30,7 @@ <script type="text/javascript">try{Typekit.load();}catch(e){}</script> <script type="text/javascript" src="../../_static/underscore.js"></script> <script type="text/javascript" src="../../_static/doctools.js"></script> - <link rel="top" title="audience v0.1 documentation" href="../../index.html" /> + <link rel="top" title="audience 0.1 documentation" href="../../index.html" /> <link rel="next" title="Searches" href="searches.html" /> <link rel="prev" title="Members" href="members.html" /> <link rel="icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> @@ -93,7 +93,7 @@ <h3>Navigation</h3> <li class="right" > <a href="members.html" title="Members" accesskey="P">previous</a> |</li> - <li><a href="../../index.html">audience v0.1 documentation</a> »</li> + <li><a href="../../index.html">audience 0.1 documentation</a> »</li> </ul> </div> @@ -112,8 +112,7 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head <dl class="get"> <dt id="get--#account_id-response"> <tt class="descname">GET </tt><tt class="descname">/#account_id/response</tt><a class="headerlink" href="#get--#account_id-response" title="Permalink to this definition">¶</a></dt> -<dd><p><tt class="docutils literal"><span class="pre">GET</span> <span class="pre">/#account_id/response</span></tt></p> -<p>Get the response summary for an account.</p> +<dd><p>Get the response summary for an account.</p> <p>This method will return a month-based time series of data including sends, opens, clicks, mailings, forwards, and opt-outs. Test mailings and forwards are not included in the data returned.</p> @@ -146,7 +145,7 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first last simple"> +<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first last simple"> <li><strong>include_archived</strong> (<em>boolean</em>) – Accepts 1. All other values are False. Optional flag to include archived mailings in the list.</li> <li><strong>range</strong> (<em>string</em>) – Accepts 2 dates (YYYY-MM-DD) delimited by a tilde (~). @@ -207,8 +206,7 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head <dl class="get"> <dt id="get--#account_id-response-#mailing_id"> <tt class="descname">GET </tt><tt class="descname">/#account_id/response/#mailing_id</tt><a class="headerlink" href="#get--#account_id-response-#mailing_id" title="Permalink to this definition">¶</a></dt> -<dd><p><tt class="docutils literal"><span class="pre">GET</span> <span class="pre">/#account_id/response/#mailing_id</span></tt></p> -<p>Get the response summary for a particular mailing.</p> +<dd><p>Get the response summary for a particular mailing.</p> <p>This method will return the counts of each type of response activity for a particular mailing.</p> <dl class="docutils"> @@ -233,9 +231,9 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing does not exist.</td> +<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing does not exist.</td> </tr> -<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing is not valid +<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing is not valid mailing type - ‘m’ for standard mailings, ‘t’ for test mailings and ‘r’ for trigger mailings.</td> </tr> @@ -274,8 +272,7 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head <dl class="get"> <dt id="get--#account_id-response-#mailing_id-sends"> <tt class="descname">GET </tt><tt class="descname">/#account_id/response/#mailing_id/sends</tt><a class="headerlink" href="#get--#account_id-response-#mailing_id-sends" title="Permalink to this definition">¶</a></dt> -<dd><p><tt class="docutils literal"><span class="pre">GET</span> <span class="pre">/#account_id/response/#mailing_id/sends</span></tt></p> -<p>Get the list of messages that have been sent to an MTA for delivery.</p> +<dd><p>Get the list of messages that have been sent to an MTA for delivery.</p> <dl class="docutils"> <dt><strong>Returns:</strong></dt> <dd><p class="first">An array of objects with the following fields:</p> @@ -290,9 +287,9 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing does not exist.</td> +<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing does not exist.</td> </tr> -<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing is not valid +<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing is not valid mailing type - ‘m’ for standard mailings, ‘t’ for test mailings and ‘r’ for trigger mailings.</td> </tr> @@ -356,8 +353,7 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head <dl class="get"> <dt id="get--#account_id-response-#mailing_id-in_progress"> <tt class="descname">GET </tt><tt class="descname">/#account_id/response/#mailing_id/in_progress</tt><a class="headerlink" href="#get--#account_id-response-#mailing_id-in_progress" title="Permalink to this definition">¶</a></dt> -<dd><p><tt class="docutils literal"><span class="pre">GET</span> <span class="pre">/#account_id/response/#mailing_id/in_progress</span></tt></p> -<p>Get the list of messages that are in the queue, +<dd><p>Get the list of messages that are in the queue, possibly sent, but not yet delivered.</p> <dl class="docutils"> <dt><strong>Returns:</strong></dt> @@ -372,9 +368,9 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing does not exist.</td> +<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing does not exist.</td> </tr> -<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing is not valid +<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing is not valid mailing type - ‘m’ for standard mailings, ‘t’ for test mailings and ‘r’ for trigger mailings.</td> </tr> @@ -422,8 +418,7 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head <dl class="get"> <dt id="get--#account_id-response-#mailing_id-deliveries"> <tt class="descname">GET </tt><tt class="descname">/#account_id/response/#mailing_id/deliveries</tt><a class="headerlink" href="#get--#account_id-response-#mailing_id-deliveries" title="Permalink to this definition">¶</a></dt> -<dd><p><tt class="docutils literal"><span class="pre">GET</span> <span class="pre">/#account_id/response/#mailing_id/deliveries</span></tt></p> -<p>Get the list of messages that have finished delivery.</p> +<dd><p>Get the list of messages that have finished delivery.</p> <p>This will include those that were successfully delivered, as well as those that failed due to hard or soft bounces.</p> <p>This list can be limited by <tt class="docutils literal"><span class="pre">delivery_type</span></tt>.</p> @@ -431,7 +426,7 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first last simple"> +<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first last simple"> <li><strong>del_status</strong> (<em>string</em>) – Accepted options: ‘all’, ‘delivered’, ‘bounced’, ‘hard’, ‘soft’. Defaults to ‘all’, if not provided.</li> </ul> @@ -454,9 +449,9 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing does not exist.</td> +<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing does not exist.</td> </tr> -<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing is not valid +<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing is not valid mailing type - ‘m’ for standard mailings, ‘t’ for test mailings and ‘r’ for trigger mailings.</td> </tr> @@ -497,8 +492,7 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head <dl class="get"> <dt id="get--#account_id-response-#mailing_id-opens"> <tt class="descname">GET </tt><tt class="descname">/#account_id/response/#mailing_id/opens</tt><a class="headerlink" href="#get--#account_id-response-#mailing_id-opens" title="Permalink to this definition">¶</a></dt> -<dd><p><tt class="docutils literal"><span class="pre">GET</span> <span class="pre">/#account_id/response/#mailing_id/opens</span></tt></p> -<p>Get the list of opened messages for this campaign.</p> +<dd><p>Get the list of opened messages for this campaign.</p> <dl class="docutils"> <dt><strong>Returns:</strong></dt> <dd><p class="first">An array of objects with the following fields:</p> @@ -513,9 +507,9 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing does not exist.</td> +<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing does not exist.</td> </tr> -<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing is not valid +<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing is not valid mailing type - ‘m’ for standard mailings, ‘t’ for test mailings and ‘r’ for trigger mailings.</td> </tr> @@ -565,13 +559,12 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head <dl class="get"> <dt id="get--#account_id-response-#mailing_id-links"> <tt class="descname">GET </tt><tt class="descname">/#account_id/response/#mailing_id/links</tt><a class="headerlink" href="#get--#account_id-response-#mailing_id-links" title="Permalink to this definition">¶</a></dt> -<dd><p><tt class="docutils literal"><span class="pre">GET</span> <span class="pre">/#account_id/response/#mailing_id/links</span></tt></p> -<p>Get the list of links for this mailing.</p> +<dd><p>Get the list of links for this mailing.</p> <dl class="docutils"> <dt><strong>Returns:</strong></dt> <dd><p class="first">An array of objects with the following fields:</p> <ul class="last simple"> -<li><strong>link_id</strong> – id of the link</li> +<li><strong>link_id</strong> – If the mailing is not a trigger, the individual id of the link will be included</li> <li><strong>link_order</strong> – order of the link in the mailing</li> <li><strong>link_name</strong> – friendly name for the link</li> <li><strong>link_target</strong> – link URL</li> @@ -584,9 +577,9 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing does not exist.</td> +<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing does not exist.</td> </tr> -<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing is not valid +<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing is not valid mailing type - ‘m’ for standard mailings, ‘t’ for test mailings and ‘r’ for trigger mailings.</td> </tr> @@ -619,14 +612,13 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head <dl class="get"> <dt id="get--#account_id-response-#mailing_id-clicks"> <tt class="descname">GET </tt><tt class="descname">/#account_id/response/#mailing_id/clicks</tt><a class="headerlink" href="#get--#account_id-response-#mailing_id-clicks" title="Permalink to this definition">¶</a></dt> -<dd><p><tt class="docutils literal"><span class="pre">GET</span> <span class="pre">/#account_id/response/#mailing_id/clicks</span></tt></p> -<p>Get the list of clicks for this mailing.</p> +<dd><p>Get the list of clicks for this mailing.</p> <p>This list can also be limited by <tt class="docutils literal"><span class="pre">member_id</span></tt> or <tt class="docutils literal"><span class="pre">link_id</span></tt>.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first last simple"> +<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first last simple"> <li><strong>member_id</strong> (<em>int</em>) – Limits results to a single member.</li> <li><strong>link_id</strong> (<em>int</em>) – Limits results to a single link.</li> </ul> @@ -649,9 +641,9 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing does not exist.</td> +<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing does not exist.</td> </tr> -<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing is not valid +<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing is not valid mailing type - ‘m’ for standard mailings, ‘t’ for test mailings and ‘r’ for trigger mailings.</td> </tr> @@ -690,8 +682,7 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head <dl class="get"> <dt id="get--#account_id-response-#mailing_id-forwards"> <tt class="descname">GET </tt><tt class="descname">/#account_id/response/#mailing_id/forwards</tt><a class="headerlink" href="#get--#account_id-response-#mailing_id-forwards" title="Permalink to this definition">¶</a></dt> -<dd><p><tt class="docutils literal"><span class="pre">GET</span> <span class="pre">/#account_id/response/#mailing_id/forwards</span></tt></p> -<p>Get the list of forwards for this mailing.</p> +<dd><p>Get the list of forwards for this mailing.</p> <dl class="docutils"> <dt><strong>Returns:</strong></dt> <dd><p class="first">An array of objects with the following fields:</p> @@ -707,9 +698,9 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing does not exist.</td> +<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing does not exist.</td> </tr> -<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing is not valid +<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing is not valid mailing type - ‘m’ for standard mailings, ‘t’ for test mailings and ‘r’ for trigger mailings.</td> </tr> @@ -734,8 +725,7 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head <dl class="get"> <dt id="get--#account_id-response-#mailing_id-optouts"> <tt class="descname">GET </tt><tt class="descname">/#account_id/response/#mailing_id/optouts</tt><a class="headerlink" href="#get--#account_id-response-#mailing_id-optouts" title="Permalink to this definition">¶</a></dt> -<dd><p><tt class="docutils literal"><span class="pre">GET</span> <span class="pre">/#account_id/response/#mailing_id/optouts</span></tt></p> -<p>Get the list of optouts for this mailing.</p> +<dd><p>Get the list of optouts for this mailing.</p> <dl class="docutils"> <dt><strong>Returns:</strong></dt> <dd><p class="first">An array of objects with the following fields:</p> @@ -752,9 +742,9 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing does not exist.</td> +<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing does not exist.</td> </tr> -<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing is not valid +<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing is not valid mailing type - ‘m’ for standard mailings, ‘t’ for test mailings and ‘r’ for trigger mailings.</td> </tr> @@ -790,8 +780,7 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head <dl class="get"> <dt id="get--#account_id-response-#mailing_id-signups"> <tt class="descname">GET </tt><tt class="descname">/#account_id/response/#mailing_id/signups</tt><a class="headerlink" href="#get--#account_id-response-#mailing_id-signups" title="Permalink to this definition">¶</a></dt> -<dd><p><tt class="docutils literal"><span class="pre">GET</span> <span class="pre">/#account_id/response/#mailing_id/signups</span></tt></p> -<p>Get the list of signups for this mailing.</p> +<dd><p>Get the list of signups for this mailing.</p> <dl class="docutils"> <dt><strong>Returns:</strong></dt> <dd><p class="first">An array of objects with the following fields:</p> @@ -809,9 +798,9 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing does not exist.</td> +<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing does not exist.</td> </tr> -<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing is not valid +<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing is not valid mailing type - ‘m’ for standard mailings, ‘t’ for test mailings and ‘r’ for trigger mailings.</td> </tr> @@ -849,8 +838,7 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head <dl class="get"> <dt id="get--#account_id-response-#mailing_id-shares"> <tt class="descname">GET </tt><tt class="descname">/#account_id/response/#mailing_id/shares</tt><a class="headerlink" href="#get--#account_id-response-#mailing_id-shares" title="Permalink to this definition">¶</a></dt> -<dd><p><tt class="docutils literal"><span class="pre">GET</span> <span class="pre">/#account_id/response/#mailing_id/shares</span></tt></p> -<p>Get the list of shares for this mailing</p> +<dd><p>Get the list of shares for this mailing</p> <dl class="docutils"> <dt><strong>Returns:</strong></dt> <dd><p class="first">An array of objects with the following fields:</p> @@ -865,9 +853,9 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing does not exist.</td> +<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing does not exist.</td> </tr> -<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing is not valid +<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing is not valid mailing type - ‘m’ for standard mailings, ‘t’ for test mailings and ‘r’ for trigger mailings.</td> </tr> @@ -878,8 +866,7 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head <dl class="get"> <dt id="get--#account_id-response-#mailing_id-customer_shares"> <tt class="descname">GET </tt><tt class="descname">/#account_id/response/#mailing_id/customer_shares</tt><a class="headerlink" href="#get--#account_id-response-#mailing_id-customer_shares" title="Permalink to this definition">¶</a></dt> -<dd><p><tt class="docutils literal"><span class="pre">GET</span> <span class="pre">/#account_id/response/#mailing_id/customer_shares</span></tt></p> -<p>Get the list of customer shares for this mailing</p> +<dd><p>Get the list of customer shares for this mailing</p> <dl class="docutils"> <dt><strong>Returns:</strong></dt> <dd><p class="first">An array of objects with the following fields:</p> @@ -893,9 +880,9 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing does not exist.</td> +<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing does not exist.</td> </tr> -<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing is not valid +<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing is not valid mailing type - ‘m’ for standard mailings, ‘t’ for test mailings and ‘r’ for trigger mailings.</td> </tr> @@ -906,8 +893,7 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head <dl class="get"> <dt id="get--#account_id-response-#mailing_id-customer_share_clicks"> <tt class="descname">GET </tt><tt class="descname">/#account_id/response/#mailing_id/customer_share_clicks</tt><a class="headerlink" href="#get--#account_id-response-#mailing_id-customer_share_clicks" title="Permalink to this definition">¶</a></dt> -<dd><p><tt class="docutils literal"><span class="pre">GET</span> <span class="pre">/#account_id/response/#mailing_id/customer_share_clicks</span></tt></p> -<p>Get the list of customer share clicks for this mailing</p> +<dd><p>Get the list of customer share clicks for this mailing</p> <dl class="docutils"> <dt><strong>Returns:</strong></dt> <dd><p class="first">An array of objects with the following fields:</p> @@ -922,9 +908,9 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing does not exist.</td> +<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing does not exist.</td> </tr> -<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing is not valid +<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing is not valid mailing type - ‘m’ for standard mailings, ‘t’ for test mailings and ‘r’ for trigger mailings.</td> </tr> @@ -935,8 +921,7 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head <dl class="get"> <dt id="get--#account_id-response-#share_id-customer_share"> <tt class="descname">GET </tt><tt class="descname">/#account_id/response/#share_id/customer_share</tt><a class="headerlink" href="#get--#account_id-response-#share_id-customer_share" title="Permalink to this definition">¶</a></dt> -<dd><p><tt class="docutils literal"><span class="pre">GET</span> <span class="pre">/#account_id/response/#share_id/customer_share</span></tt></p> -<p>Get the customer share associated with the share id.</p> +<dd><p>Get the customer share associated with the share id.</p> <dl class="docutils"> <dt><strong>Returns:</strong></dt> <dd><p class="first">An object with the following fields:</p> @@ -951,9 +936,9 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing does not exist.</td> +<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing does not exist.</td> </tr> -<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing is not valid +<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing is not valid mailing type - ‘m’ for standard mailings, ‘t’ for test mailings and ‘r’ for trigger mailings.</td> </tr> @@ -964,8 +949,7 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head <dl class="get"> <dt id="get--#account_id-response-#mailing_id-shares-overview"> <tt class="descname">GET </tt><tt class="descname">/#account_id/response/#mailing_id/shares/overview</tt><a class="headerlink" href="#get--#account_id-response-#mailing_id-shares-overview" title="Permalink to this definition">¶</a></dt> -<dd><p><tt class="docutils literal"><span class="pre">GET</span> <span class="pre">/#account_id/response/#mailing_id/shares/overview</span></tt></p> -<p>Get overview of shares pertaining to this mailing_id.</p> +<dd><p>Get overview of shares pertaining to this mailing_id.</p> <dl class="docutils"> <dt><strong>Returns:</strong></dt> <dd><p class="first">An array of objects with the following fields:</p> @@ -980,9 +964,9 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing does not exist.</td> +<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing does not exist.</td> </tr> -<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing is not valid</td> +<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing is not valid</td> </tr> </tbody> </table> @@ -1005,7 +989,7 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head <div id="searchbox" style="display: none"> <h3>Quick search</h3> <form class="search" action="../../search.html" method="get"> - <input type="text" name="q" size="18" /> + <input type="text" name="q" /> <input type="submit" value="Go" /> <input type="hidden" name="check_keywords" value="yes" /> <input type="hidden" name="area" value="default" /> @@ -1035,7 +1019,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 29, 2013 at 04:16 PM. + Last updated on Feb 05, 2013 at 03:36 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/searches.html b/api/external/searches.html index d1a2e45..dc96a32 100644 --- a/api/external/searches.html +++ b/api/external/searches.html @@ -30,7 +30,7 @@ <script type="text/javascript">try{Typekit.load();}catch(e){}</script> <script type="text/javascript" src="../../_static/underscore.js"></script> <script type="text/javascript" src="../../_static/doctools.js"></script> - <link rel="top" title="audience v0.1 documentation" href="../../index.html" /> + <link rel="top" title="audience 0.1 documentation" href="../../index.html" /> <link rel="next" title="Triggers" href="triggers.html" /> <link rel="prev" title="Response" href="response.html" /> <link rel="icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> @@ -93,7 +93,7 @@ <h3>Navigation</h3> <li class="right" > <a href="response.html" title="Response" accesskey="P">previous</a> |</li> - <li><a href="../../index.html">audience v0.1 documentation</a> »</li> + <li><a href="../../index.html">audience 0.1 documentation</a> »</li> </ul> </div> @@ -110,19 +110,18 @@ <h1>Searches<a class="headerlink" href="#searches" title="Permalink to this head <dl class="get"> <dt id="get--#account_id-searches"> <tt class="descname">GET </tt><tt class="descname">/#account_id/searches</tt><a class="headerlink" href="#get--#account_id-searches" title="Permalink to this definition">¶</a></dt> -<dd><p><tt class="docutils literal"><span class="pre">GET</span> <span class="pre">/#account_id/searches</span></tt></p> -<p>Retrieve a list of saved searches.</p> +<dd><p>Retrieve a list of saved searches.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> +<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> <li><strong>deleted</strong> (<em>boolean</em>) – Accepts True or 1. Optional flag to include deleted searches.</li> </ul> </td> </tr> -<tr class="field"><th class="field-name">Returns :</th><td class="field-body"><p class="first last">An array of searches.</p> +<tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first last">An array of searches.</p> </td> </tr> </tbody> @@ -167,22 +166,21 @@ <h1>Searches<a class="headerlink" href="#searches" title="Permalink to this head <dl class="get"> <dt id="get--#account_id-searches-#search_id"> <tt class="descname">GET </tt><tt class="descname">/#account_id/searches/#search_id</tt><a class="headerlink" href="#get--#account_id-searches-#search_id" title="Permalink to this definition">¶</a></dt> -<dd><p><tt class="docutils literal"><span class="pre">GET</span> <span class="pre">/#account_id/searches/#search_id</span></tt></p> -<p>Get the details for a saved search.</p> +<dd><p>Get the details for a saved search.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">A search.</p> +<tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">A search.</p> </td> </tr> -<tr class="field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> +<tr class="field-even field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> <li><strong>deleted</strong> (<em>boolean</em>) – Accepts True or 1. Optional flag to include deleted searches.</li> </ul> </td> </tr> -<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the search does not exist.</p> +<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the search does not exist.</p> </td> </tr> </tbody> @@ -201,7 +199,7 @@ <h1>Searches<a class="headerlink" href="#searches" title="Permalink to this head "name": "Test Search", "criteria": "[\"or\", [\"group\", \"eq\", \"Monthly Newsletter\"],[\"group\", \"eq\", \"Widget Buyers\"]]", "deleted_at": null, - "last_run_at": "@D:2013-01-29T16:16:02", + "last_run_at": "@D:2013-02-05T15:36:33", "active_count": 2, "account_id": 100 } @@ -213,8 +211,7 @@ <h1>Searches<a class="headerlink" href="#searches" title="Permalink to this head <dl class="post"> <dt id="post--#account_id-searches"> <tt class="descname">POST </tt><tt class="descname">/#account_id/searches</tt><a class="headerlink" href="#post--#account_id-searches" title="Permalink to this definition">¶</a></dt> -<dd><p><tt class="docutils literal"><span class="pre">POST</span> <span class="pre">/#account_id/searches</span></tt></p> -<p>Create a saved search.</p> +<dd><p>Create a saved search.</p> <p>The detail of a search is specified in a JSON structure that describes the clauses to be applied using groups of <em>filter</em> <em>type</em>, <em>operator</em> and <em>value</em>. Where the <em>filter</em> <em>type</em> is <tt class="docutils literal"><span class="pre">member_field</span></tt>, the @@ -236,17 +233,17 @@ <h1>Searches<a class="headerlink" href="#searches" title="Permalink to this head <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> +<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> <li><strong>criteria</strong> (<em>array</em>) – A combination of search conditions, as described above.</li> <li><strong>name</strong> (<em>string</em>) – A name used to describe this search.</li> </ul> </td> </tr> -<tr class="field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">The ID of the new search</p> +<tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">The ID of the new search</p> </td> </tr> -<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http400</span></tt> if the search is invalid</p> +<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http400</span></tt> if the search is invalid</p> </td> </tr> </tbody> @@ -283,28 +280,27 @@ <h1>Searches<a class="headerlink" href="#searches" title="Permalink to this head <dl class="put"> <dt id="put--#account_id-searches-#search_id"> <tt class="descname">PUT </tt><tt class="descname">/#account_id/searches/#search_id</tt><a class="headerlink" href="#put--#account_id-searches-#search_id" title="Permalink to this definition">¶</a></dt> -<dd><p><tt class="docutils literal"><span class="pre">PUT</span> <span class="pre">/#account_id/searches/#search_id</span></tt></p> -<p>Update a saved search.</p> +<dd><p>Update a saved search.</p> <p>No parameters are required, but either the <tt class="docutils literal"><span class="pre">name</span></tt> or <tt class="docutils literal"><span class="pre">criteria</span></tt> parameter must be present for an update to occur.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> +<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> <li><strong>criteria</strong> (<em>array</em>) – A combination of search conditions, as described above (see <cite>create_search</cite>).</li> <li><strong>name</strong> (<em>string</em>) – A name used to describe this search.</li> </ul> </td> </tr> -<tr class="field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">True if the update was successful</p> +<tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">True if the update was successful</p> </td> </tr> -<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><p class="first"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the search does not exist.</p> +<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><p class="first"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the search does not exist.</p> </td> </tr> -<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http400</span></tt> if the search criteria is invalid</p> +<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http400</span></tt> if the search criteria is invalid</p> </td> </tr> </tbody> @@ -340,16 +336,15 @@ <h1>Searches<a class="headerlink" href="#searches" title="Permalink to this head <dl class="delete"> <dt id="delete--#account_id-searches-#search_id"> <tt class="descname">DELETE </tt><tt class="descname">/#account_id/searches/#search_id</tt><a class="headerlink" href="#delete--#account_id-searches-#search_id" title="Permalink to this definition">¶</a></dt> -<dd><p><tt class="docutils literal"><span class="pre">DELETE</span> <span class="pre">/#account_id/searches/#search_id</span></tt></p> -<p>Delete a saved search. The member records referred to by the search +<dd><p>Delete a saved search. The member records referred to by the search are not affected.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field"><th class="field-name">Returns :</th><td class="field-body">True if the search is deleted.</td> +<tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">True if the search is deleted.</td> </tr> -<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the search does not exist.</td> +<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the search does not exist.</td> </tr> </tbody> </table> @@ -369,15 +364,14 @@ <h1>Searches<a class="headerlink" href="#searches" title="Permalink to this head <dl class="get"> <dt id="get--#account_id-searches-#search_id-members"> <tt class="descname">GET </tt><tt class="descname">/#account_id/searches/#search_id/members</tt><a class="headerlink" href="#get--#account_id-searches-#search_id-members" title="Permalink to this definition">¶</a></dt> -<dd><p><tt class="docutils literal"><span class="pre">GET</span> <span class="pre">/#account_id/searches/#search_id/members</span></tt></p> -<p>Get the members matching the search.</p> +<dd><p>Get the members matching the search.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field"><th class="field-name">Returns :</th><td class="field-body">An array of members.</td> +<tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">An array of members.</td> </tr> -<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the search does not exist.</td> +<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the search does not exist.</td> </tr> </tbody> </table> @@ -487,7 +481,7 @@ <h1>Searches<a class="headerlink" href="#searches" title="Permalink to this head <div id="searchbox" style="display: none"> <h3>Quick search</h3> <form class="search" action="../../search.html" method="get"> - <input type="text" name="q" size="18" /> + <input type="text" name="q" /> <input type="submit" value="Go" /> <input type="hidden" name="check_keywords" value="yes" /> <input type="hidden" name="area" value="default" /> @@ -517,7 +511,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 29, 2013 at 04:16 PM. + Last updated on Feb 05, 2013 at 03:36 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/triggers.html b/api/external/triggers.html index 10e8e91..06b0bac 100644 --- a/api/external/triggers.html +++ b/api/external/triggers.html @@ -30,7 +30,7 @@ <script type="text/javascript">try{Typekit.load();}catch(e){}</script> <script type="text/javascript" src="../../_static/underscore.js"></script> <script type="text/javascript" src="../../_static/doctools.js"></script> - <link rel="top" title="audience v0.1 documentation" href="../../index.html" /> + <link rel="top" title="audience 0.1 documentation" href="../../index.html" /> <link rel="next" title="Webhooks" href="webhooks.html" /> <link rel="prev" title="Searches" href="searches.html" /> <link rel="icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> @@ -93,7 +93,7 @@ <h3>Navigation</h3> <li class="right" > <a href="searches.html" title="Searches" accesskey="P">previous</a> |</li> - <li><a href="../../index.html">audience v0.1 documentation</a> »</li> + <li><a href="../../index.html">audience 0.1 documentation</a> »</li> </ul> </div> @@ -109,8 +109,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head <dl class="get"> <dt id="get--#account_id-triggers"> <tt class="descname">GET </tt><tt class="descname">/#account_id/triggers</tt><a class="headerlink" href="#get--#account_id-triggers" title="Permalink to this definition">¶</a></dt> -<dd><p><tt class="docutils literal"><span class="pre">GET</span> <span class="pre">/#account_id/triggers</span></tt></p> -<p>Get a basic listing of all triggers in an account.</p> +<dd><p>Get a basic listing of all triggers in an account.</p> <p> <div class="sample-response hide-response"> <span style="font-weight:bold;">Sample Response</span> @@ -149,7 +148,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": 203, "push_offset_units": "0:-14:0:0", - "start_ts": "@D:2013-01-29T16:16:00", + "start_ts": "@D:2013-02-05T15:36:31", "trigger_id": 100, "signups": null, "push_offset": "@I:-1209600.0", @@ -190,7 +189,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": null, "push_offset_units": "0:3:0:0", - "start_ts": "@D:2013-01-29T16:16:00", + "start_ts": "@D:2013-02-05T15:36:31", "trigger_id": 101, "signups": [ 1, @@ -215,13 +214,12 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head <dl class="post"> <dt id="post--#account_id-triggers"> <tt class="descname">POST </tt><tt class="descname">/#account_id/triggers</tt><a class="headerlink" href="#post--#account_id-triggers" title="Permalink to this definition">¶</a></dt> -<dd><p><tt class="docutils literal"><span class="pre">POST</span> <span class="pre">/#account_id/triggers</span></tt></p> -<p>Create a new trigger.</p> +<dd><p>Create a new trigger.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> +<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> <li><strong>name</strong> (<em>string</em>) – A descriptive name for the trigger.</li> <li><strong>event_type</strong> (<em>string</em>) – The type of event that causes this trigger to fire. Accepts one of ‘s’ (signup), ‘c’ (click), ‘u’ (survey), ‘d’ (date), @@ -241,14 +239,14 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head </ul> </td> </tr> -<tr class="field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">The new trigger’s id.</p> +<tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">The new trigger’s id.</p> </td> </tr> -<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><p class="first"><tt class="docutils literal"><span class="pre">Http500</span></tt> if object_ids is null and event_type is one of: +<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><p class="first"><tt class="docutils literal"><span class="pre">Http500</span></tt> if object_ids is null and event_type is one of: ‘s’ (signup), ‘c’ (click), ‘u’ (survey).</p> </td> </tr> -<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http500</span></tt> if field_id is null and event_type is one of: +<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http500</span></tt> if field_id is null and event_type is one of: ‘d’ (date), ‘r’ (recurring date).</p> </td> </tr> @@ -280,15 +278,14 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head <dl class="get"> <dt id="get--#account_id-triggers-#trigger_id"> <tt class="descname">GET </tt><tt class="descname">/#account_id/triggers/#trigger_id</tt><a class="headerlink" href="#get--#account_id-triggers-#trigger_id" title="Permalink to this definition">¶</a></dt> -<dd><p><tt class="docutils literal"><span class="pre">GET</span> <span class="pre">/#account_id/triggers/#trigger_id</span></tt></p> -<p>Look up a trigger by trigger id.</p> +<dd><p>Look up a trigger by trigger id.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field"><th class="field-name">Returns :</th><td class="field-body">A trigger.</td> +<tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">A trigger.</td> </tr> -<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no trigger is found.</td> +<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no trigger is found.</td> </tr> </tbody> </table> @@ -329,7 +326,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": 203, "push_offset_units": "0:-14:0:0", - "start_ts": "@D:2013-01-29T16:16:00", + "start_ts": "@D:2013-02-05T15:36:31", "trigger_id": 100, "signups": null, "push_offset": "@I:-1209600.0", @@ -348,15 +345,14 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head <dl class="put"> <dt id="put--#account_id-triggers-#trigger_id"> <tt class="descname">PUT </tt><tt class="descname">/#account_id/triggers/#trigger_id</tt><a class="headerlink" href="#put--#account_id-triggers-#trigger_id" title="Permalink to this definition">¶</a></dt> -<dd><p><tt class="docutils literal"><span class="pre">PUT</span> <span class="pre">/#account_id/triggers/#trigger_id</span></tt></p> -<p>Update or edit a trigger.</p> +<dd><p>Update or edit a trigger.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field"><th class="field-name">Returns :</th><td class="field-body">The id of the updated trigger.</td> +<tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">The id of the updated trigger.</td> </tr> -<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no trigger is found.</td> +<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no trigger is found.</td> </tr> </tbody> </table> @@ -379,15 +375,14 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head <dl class="delete"> <dt id="delete--#account_id-triggers-#trigger_id"> <tt class="descname">DELETE </tt><tt class="descname">/#account_id/triggers/#trigger_id</tt><a class="headerlink" href="#delete--#account_id-triggers-#trigger_id" title="Permalink to this definition">¶</a></dt> -<dd><p><tt class="docutils literal"><span class="pre">DELETE</span> <span class="pre">/#account_id/triggers/#trigger_id</span></tt></p> -<p>Delete a trigger.</p> +<dd><p>Delete a trigger.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field"><th class="field-name">Returns :</th><td class="field-body">True if the trigger is deleted.</td> +<tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">True if the trigger is deleted.</td> </tr> -<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no trigger is found.</td> +<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no trigger is found.</td> </tr> </tbody> </table> @@ -407,15 +402,14 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head <dl class="get"> <dt id="get--#account_id-triggers-#trigger_id-mailings"> <tt class="descname">GET </tt><tt class="descname">/#account_id/triggers/#trigger_id/mailings</tt><a class="headerlink" href="#get--#account_id-triggers-#trigger_id-mailings" title="Permalink to this definition">¶</a></dt> -<dd><p><tt class="docutils literal"><span class="pre">GET</span> <span class="pre">/#account_id/triggers/#trigger_id/mailings</span></tt></p> -<p>Get mailings sent by a trigger.</p> +<dd><p>Get mailings sent by a trigger.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field"><th class="field-name">Returns :</th><td class="field-body">An array of mailings.</td> +<tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">An array of mailings.</td> </tr> -<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no trigger is found.</td> +<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no trigger is found.</td> </tr> </tbody> </table> @@ -475,7 +469,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head <div id="searchbox" style="display: none"> <h3>Quick search</h3> <form class="search" action="../../search.html" method="get"> - <input type="text" name="q" size="18" /> + <input type="text" name="q" /> <input type="submit" value="Go" /> <input type="hidden" name="check_keywords" value="yes" /> <input type="hidden" name="area" value="default" /> @@ -505,7 +499,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 29, 2013 at 04:16 PM. + Last updated on Feb 05, 2013 at 03:36 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/webhooks.html b/api/external/webhooks.html index fa1df4b..7d42524 100644 --- a/api/external/webhooks.html +++ b/api/external/webhooks.html @@ -30,7 +30,7 @@ <script type="text/javascript">try{Typekit.load();}catch(e){}</script> <script type="text/javascript" src="../../_static/underscore.js"></script> <script type="text/javascript" src="../../_static/doctools.js"></script> - <link rel="top" title="audience v0.1 documentation" href="../../index.html" /> + <link rel="top" title="audience 0.1 documentation" href="../../index.html" /> <link rel="next" title="Pagination" href="../../pagination.html" /> <link rel="prev" title="Triggers" href="triggers.html" /> <link rel="icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> @@ -93,7 +93,7 @@ <h3>Navigation</h3> <li class="right" > <a href="triggers.html" title="Triggers" accesskey="P">previous</a> |</li> - <li><a href="../../index.html">audience v0.1 documentation</a> »</li> + <li><a href="../../index.html">audience 0.1 documentation</a> »</li> </ul> </div> @@ -111,13 +111,12 @@ <h1>Webhooks<a class="headerlink" href="#webhooks" title="Permalink to this head <dl class="get"> <dt id="get--#account_id-webhooks"> <tt class="descname">GET </tt><tt class="descname">/#account_id/webhooks</tt><a class="headerlink" href="#get--#account_id-webhooks" title="Permalink to this definition">¶</a></dt> -<dd><p><tt class="docutils literal"><span class="pre">GET</span> <span class="pre">/#account_id/webhooks</span></tt></p> -<p>Get a basic listing of all webhooks associated with an account.</p> +<dd><p>Get a basic listing of all webhooks associated with an account.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field"><th class="field-name">Returns :</th><td class="field-body">A list of webhooks that belong to the given account.</td> +<tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">A list of webhooks that belong to the given account.</td> </tr> </tbody> </table> @@ -153,15 +152,14 @@ <h1>Webhooks<a class="headerlink" href="#webhooks" title="Permalink to this head <dl class="get"> <dt id="get--#account_id-webhooks-#webhook_id"> <tt class="descname">GET </tt><tt class="descname">/#account_id/webhooks/#webhook_id</tt><a class="headerlink" href="#get--#account_id-webhooks-#webhook_id" title="Permalink to this definition">¶</a></dt> -<dd><p><tt class="docutils literal"><span class="pre">GET</span> <span class="pre">/#account_id/webhooks/#webhook_id</span></tt></p> -<p>Get information for a specific webhook belonging to a specific account.</p> +<dd><p>Get information for a specific webhook belonging to a specific account.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field"><th class="field-name">Returns :</th><td class="field-body">Details for a single webhook</td> +<tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">Details for a single webhook</td> </tr> -<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no webhook found</td> +<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no webhook found</td> </tr> </tbody> </table> @@ -187,14 +185,13 @@ <h1>Webhooks<a class="headerlink" href="#webhooks" title="Permalink to this head <dl class="get"> <dt id="get--#account_id-webhooks-events"> <tt class="descname">GET </tt><tt class="descname">/#account_id/webhooks/events</tt><a class="headerlink" href="#get--#account_id-webhooks-events" title="Permalink to this definition">¶</a></dt> -<dd><p><tt class="docutils literal"><span class="pre">GET</span> <span class="pre">/#account_id/webhooks/events</span></tt></p> -<p>Get a listing of all event types that are available for +<dd><p>Get a listing of all event types that are available for webhooks.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field"><th class="field-name">Returns :</th><td class="field-body">A list of event types and descriptions</td> +<tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">A list of event types and descriptions</td> </tr> </tbody> </table> @@ -326,8 +323,7 @@ <h1>Webhooks<a class="headerlink" href="#webhooks" title="Permalink to this head <dl class="post"> <dt id="post--#account_id-webhooks"> <tt class="descname">POST </tt><tt class="descname">/#account_id/webhooks</tt><a class="headerlink" href="#post--#account_id-webhooks" title="Permalink to this definition">¶</a></dt> -<dd><p><tt class="docutils literal"><span class="pre">POST</span> <span class="pre">/#account_id/webhooks</span></tt></p> -<p>Create an new webhook.</p> +<dd><p>Create an new webhook.</p> <p>If method is ‘POST’, the data will be posted to the given URL as a blob of JSON. If the method is ‘GET’ the data will be added to the query string of your URL as a url encoded blob of JSON in a key called ‘payload’.</p> @@ -335,7 +331,7 @@ <h1>Webhooks<a class="headerlink" href="#webhooks" title="Permalink to this head <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first last simple"> +<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first last simple"> <li><strong>event</strong> (<em>string</em>) – The name of an event to register this webhook for</li> <li><strong>url</strong> (<em>string</em>) – The URL to call when the event happens</li> <li><strong>method</strong> (<em>string</em>) – The method to use when calling the webhook. Can be GET or POST. Defaults to POST.</li> @@ -365,15 +361,14 @@ <h1>Webhooks<a class="headerlink" href="#webhooks" title="Permalink to this head <dl class="put"> <dt id="put--#account_id-webhooks-#webhook_id"> <tt class="descname">PUT </tt><tt class="descname">/#account_id/webhooks/#webhook_id</tt><a class="headerlink" href="#put--#account_id-webhooks-#webhook_id" title="Permalink to this definition">¶</a></dt> -<dd><p><tt class="docutils literal"><span class="pre">PUT</span> <span class="pre">/#account_id/webhooks/#webhook_id</span></tt></p> -<p>Update an existing webhook. Takes the same params as create_webhook.</p> +<dd><p>Update an existing webhook. Takes the same params as create_webhook.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field"><th class="field-name">Returns :</th><td class="field-body">The id of the updated webhook, or False if the update failed.</td> +<tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">The id of the updated webhook, or False if the update failed.</td> </tr> -<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the webhook cannot be found.</td> +<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the webhook cannot be found.</td> </tr> </tbody> </table> @@ -396,15 +391,14 @@ <h1>Webhooks<a class="headerlink" href="#webhooks" title="Permalink to this head <dl class="delete"> <dt id="delete--#account_id-webhooks-#webhook_id"> <tt class="descname">DELETE </tt><tt class="descname">/#account_id/webhooks/#webhook_id</tt><a class="headerlink" href="#delete--#account_id-webhooks-#webhook_id" title="Permalink to this definition">¶</a></dt> -<dd><p><tt class="docutils literal"><span class="pre">DELETE</span> <span class="pre">/#account_id/webhooks/#webhook_id</span></tt></p> -<p>Deletes an existing webhook.</p> +<dd><p>Deletes an existing webhook.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field"><th class="field-name">Returns :</th><td class="field-body">True if the webhook deleted successufully.</td> +<tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">True if the webhook deleted successufully.</td> </tr> -<tr class="field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no webhook found</td> +<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no webhook found</td> </tr> </tbody> </table> @@ -424,13 +418,12 @@ <h1>Webhooks<a class="headerlink" href="#webhooks" title="Permalink to this head <dl class="delete"> <dt id="delete--#account_id-webhooks"> <tt class="descname">DELETE </tt><tt class="descname">/#account_id/webhooks</tt><a class="headerlink" href="#delete--#account_id-webhooks" title="Permalink to this definition">¶</a></dt> -<dd><p><tt class="docutils literal"><span class="pre">DELETE</span> <span class="pre">/#account_id/webhooks</span></tt></p> -<p>Delete all webhooks registered for an account.</p> +<dd><p>Delete all webhooks registered for an account.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field"><th class="field-name">Returns :</th><td class="field-body">True if the webhooks deleted successufully.</td> +<tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">True if the webhooks deleted successufully.</td> </tr> </tbody> </table> @@ -464,7 +457,7 @@ <h1>Webhooks<a class="headerlink" href="#webhooks" title="Permalink to this head <div id="searchbox" style="display: none"> <h3>Quick search</h3> <form class="search" action="../../search.html" method="get"> - <input type="text" name="q" size="18" /> + <input type="text" name="q" /> <input type="submit" value="Go" /> <input type="hidden" name="check_keywords" value="yes" /> <input type="hidden" name="area" value="default" /> @@ -494,7 +487,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 29, 2013 at 04:16 PM. + Last updated on Feb 05, 2013 at 03:36 PM. </div> </body> </html> \ No newline at end of file diff --git a/genindex.html b/genindex.html index 281b03c..40e5ecd 100644 --- a/genindex.html +++ b/genindex.html @@ -1,5 +1,7 @@ + + <!doctype html> @@ -30,7 +32,7 @@ <script type="text/javascript">try{Typekit.load();}catch(e){}</script> <script type="text/javascript" src="_static/underscore.js"></script> <script type="text/javascript" src="_static/doctools.js"></script> - <link rel="top" title="audience v0.1 documentation" href="index.html" /> + <link rel="top" title="audience 0.1 documentation" href="index.html" /> <link rel="icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> <link rel="shortcut icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> <link rel="apple-touch-icon-precomposed" href="http://myemma.com/static/global/favicons/apple-iphone.png" /> @@ -85,7 +87,7 @@ <h3>Navigation</h3> <li class="right" > <a href="http-routingtable.html" title="HTTP Routing Table" >routing table</a> |</li> - <li><a href="index.html">audience v0.1 documentation</a> »</li> + <li><a href="index.html">audience 0.1 documentation</a> »</li> </ul> </div> @@ -95,11 +97,11 @@ <h3>Navigation</h3> <div class="body"> - <h1 id="index">Index</h1> +<h1 id="index">Index</h1> - <div class="genindex-jumpbox"> - - </div> +<div class="genindex-jumpbox"> + +</div> </div> @@ -114,7 +116,7 @@ <h1 id="index">Index</h1> <div id="searchbox" style="display: none"> <h3>Quick search</h3> <form class="search" action="search.html" method="get"> - <input type="text" name="q" size="18" /> + <input type="text" name="q" /> <input type="submit" value="Go" /> <input type="hidden" name="check_keywords" value="yes" /> <input type="hidden" name="area" value="default" /> @@ -144,7 +146,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 29, 2013 at 04:16 PM. + Last updated on Feb 05, 2013 at 03:36 PM. </div> </body> </html> \ No newline at end of file diff --git a/http-routingtable.html b/http-routingtable.html index 0e3c443..3491bd9 100644 --- a/http-routingtable.html +++ b/http-routingtable.html @@ -30,7 +30,7 @@ <script type="text/javascript">try{Typekit.load();}catch(e){}</script> <script type="text/javascript" src="_static/underscore.js"></script> <script type="text/javascript" src="_static/doctools.js"></script> - <link rel="top" title="audience v0.1 documentation" href="index.html" /> + <link rel="top" title="audience 0.1 documentation" href="index.html" /> <link rel="icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> <link rel="shortcut icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> @@ -92,7 +92,7 @@ <h3>Navigation</h3> <li class="right" > <a href="#" title="HTTP Routing Table" >routing table</a> |</li> - <li><a href="index.html">audience v0.1 documentation</a> »</li> + <li><a href="index.html">audience 0.1 documentation</a> »</li> </ul> </div> @@ -577,7 +577,7 @@ <h1>HTTP Routing Table</h1> <div id="searchbox" style="display: none"> <h3>Quick search</h3> <form class="search" action="search.html" method="get"> - <input type="text" name="q" size="18" /> + <input type="text" name="q" /> <input type="submit" value="Go" /> <input type="hidden" name="check_keywords" value="yes" /> <input type="hidden" name="area" value="default" /> @@ -607,7 +607,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 29, 2013 at 04:16 PM. + Last updated on Feb 05, 2013 at 03:36 PM. </div> </body> </html> \ No newline at end of file diff --git a/index.html b/index.html index 8135f14..f5637b4 100644 --- a/index.html +++ b/index.html @@ -30,7 +30,7 @@ <script type="text/javascript">try{Typekit.load();}catch(e){}</script> <script type="text/javascript" src="_static/underscore.js"></script> <script type="text/javascript" src="_static/doctools.js"></script> - <link rel="top" title="audience v0.1 documentation" href="#" /> + <link rel="top" title="audience 0.1 documentation" href="#" /> <link rel="next" title="Fields" href="api/external/fields.html" /> <link rel="icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> <link rel="shortcut icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> @@ -89,7 +89,7 @@ <h3>Navigation</h3> <li class="right" > <a href="api/external/fields.html" title="Fields" accesskey="N">next</a> |</li> - <li><a href="#">audience v0.1 documentation</a> »</li> + <li><a href="#">audience 0.1 documentation</a> »</li> </ul> </div> @@ -182,6 +182,20 @@ <h2>Quickstart<a class="headerlink" href="#quickstart" title="Permalink to this </div> <p>Next, we’ll do a little dance with cURL that I’m sure is familiar. I’ll explain some particulars below the code block.</p> +<div class="highlight-php"><div class="highlight"><pre><span class="c1">// setup and execute the cURL command</span> +<span class="nv">$ch</span> <span class="o">=</span> <span class="nb">curl_init</span><span class="p">();</span> +<span class="hll"><span class="nb">curl_setopt</span><span class="p">(</span><span class="nv">$ch</span><span class="p">,</span> <span class="nx">CURLOPT_USERPWD</span><span class="p">,</span> <span class="nv">$public_api_key</span> <span class="o">.</span> <span class="s2">":"</span> <span class="o">.</span> <span class="nv">$private_api_key</span><span class="p">);</span> +</span><span class="nb">curl_setopt</span><span class="p">(</span><span class="nv">$ch</span><span class="p">,</span> <span class="nx">CURLOPT_URL</span><span class="p">,</span> <span class="nv">$url</span><span class="p">);</span> +<span class="nb">curl_setopt</span><span class="p">(</span><span class="nv">$ch</span><span class="p">,</span> <span class="nx">CURLOPT_POST</span><span class="p">,</span> <span class="nb">count</span><span class="p">(</span><span class="nv">$member_data</span><span class="p">));</span> +<span class="hll"><span class="nb">curl_setopt</span><span class="p">(</span><span class="nv">$ch</span><span class="p">,</span> <span class="nx">CURLOPT_POSTFIELDS</span><span class="p">,</span> <span class="nx">json_encode</span><span class="p">(</span><span class="nv">$member_data</span><span class="p">));</span> +</span><span class="hll"><span class="nb">curl_setopt</span><span class="p">(</span><span class="nv">$ch</span><span class="p">,</span> <span class="nx">CURLOPT_HTTPHEADER</span><span class="p">,</span> <span class="k">array</span><span class="p">(</span><span class="s1">'Content-type: application/json'</span><span class="p">));</span> +</span><span class="nb">curl_setopt</span><span class="p">(</span><span class="nv">$ch</span><span class="p">,</span> <span class="nx">CURLOPT_RETURNTRANSFER</span><span class="p">,</span> <span class="k">true</span><span class="p">);</span> +<span class="nb">curl_setopt</span><span class="p">(</span><span class="nv">$ch</span><span class="p">,</span> <span class="nx">CURLOPT_SSL_VERIFYPEER</span><span class="p">,</span> <span class="k">false</span><span class="p">);</span> +<span class="nv">$head</span> <span class="o">=</span> <span class="nb">curl_exec</span><span class="p">(</span><span class="nv">$ch</span><span class="p">);</span> +<span class="nv">$http_code</span> <span class="o">=</span> <span class="nb">curl_getinfo</span><span class="p">(</span><span class="nv">$ch</span><span class="p">,</span> <span class="nx">CURLINFO_HTTP_CODE</span><span class="p">);</span> +<span class="nb">curl_close</span><span class="p">(</span><span class="nv">$ch</span><span class="p">);</span> +</pre></div> +</div> <p>On line 3 is where we use the public/private keys to authenticate our call. On lines 6-7, we force the API call to make its request in JSON and expect JSON in return.</p> @@ -281,7 +295,7 @@ <h3>Related Topics</h3> <div id="searchbox" style="display: none"> <h3>Quick search</h3> <form class="search" action="search.html" method="get"> - <input type="text" name="q" size="18" /> + <input type="text" name="q" /> <input type="submit" value="Go" /> <input type="hidden" name="check_keywords" value="yes" /> <input type="hidden" name="area" value="default" /> @@ -311,7 +325,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 29, 2013 at 04:16 PM. + Last updated on Feb 05, 2013 at 03:36 PM. </div> </body> </html> \ No newline at end of file diff --git a/member_search.html b/member_search.html index 6e40e41..1cf8ab7 100644 --- a/member_search.html +++ b/member_search.html @@ -30,7 +30,7 @@ <script type="text/javascript">try{Typekit.load();}catch(e){}</script> <script type="text/javascript" src="_static/underscore.js"></script> <script type="text/javascript" src="_static/doctools.js"></script> - <link rel="top" title="audience v0.1 documentation" href="index.html" /> + <link rel="top" title="audience 0.1 documentation" href="index.html" /> <link rel="next" title="Webhook Usage" href="webhooks.html" /> <link rel="prev" title="Placeholder Syntax" href="placeholders.html" /> <link rel="icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> @@ -93,7 +93,7 @@ <h3>Navigation</h3> <li class="right" > <a href="placeholders.html" title="Placeholder Syntax" accesskey="P">previous</a> |</li> - <li><a href="index.html">audience v0.1 documentation</a> »</li> + <li><a href="index.html">audience 0.1 documentation</a> »</li> </ul> </div> @@ -226,7 +226,7 @@ <h3>Related Topics</h3> <div id="searchbox" style="display: none"> <h3>Quick search</h3> <form class="search" action="search.html" method="get"> - <input type="text" name="q" size="18" /> + <input type="text" name="q" /> <input type="submit" value="Go" /> <input type="hidden" name="check_keywords" value="yes" /> <input type="hidden" name="area" value="default" /> @@ -256,7 +256,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 29, 2013 at 04:16 PM. + Last updated on Feb 05, 2013 at 03:36 PM. </div> </body> </html> \ No newline at end of file diff --git a/pagination.html b/pagination.html index 17c1554..ce08da8 100644 --- a/pagination.html +++ b/pagination.html @@ -30,7 +30,7 @@ <script type="text/javascript">try{Typekit.load();}catch(e){}</script> <script type="text/javascript" src="_static/underscore.js"></script> <script type="text/javascript" src="_static/doctools.js"></script> - <link rel="top" title="audience v0.1 documentation" href="index.html" /> + <link rel="top" title="audience 0.1 documentation" href="index.html" /> <link rel="next" title="Placeholder Syntax" href="placeholders.html" /> <link rel="prev" title="Webhooks" href="api/external/webhooks.html" /> <link rel="icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> @@ -93,7 +93,7 @@ <h3>Navigation</h3> <li class="right" > <a href="api/external/webhooks.html" title="Webhooks" accesskey="P">previous</a> |</li> - <li><a href="index.html">audience v0.1 documentation</a> »</li> + <li><a href="index.html">audience 0.1 documentation</a> »</li> </ul> </div> @@ -138,7 +138,7 @@ <h3>Navigation</h3> <div id="searchbox" style="display: none"> <h3>Quick search</h3> <form class="search" action="search.html" method="get"> - <input type="text" name="q" size="18" /> + <input type="text" name="q" /> <input type="submit" value="Go" /> <input type="hidden" name="check_keywords" value="yes" /> <input type="hidden" name="area" value="default" /> @@ -168,7 +168,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 29, 2013 at 04:16 PM. + Last updated on Feb 05, 2013 at 03:36 PM. </div> </body> </html> \ No newline at end of file diff --git a/php_get_member_example.html b/php_get_member_example.html index e97448a..230f4b5 100644 --- a/php_get_member_example.html +++ b/php_get_member_example.html @@ -30,7 +30,7 @@ <script type="text/javascript">try{Typekit.load();}catch(e){}</script> <script type="text/javascript" src="_static/underscore.js"></script> <script type="text/javascript" src="_static/doctools.js"></script> - <link rel="top" title="audience v0.1 documentation" href="index.html" /> + <link rel="top" title="audience 0.1 documentation" href="index.html" /> <link rel="prev" title="PHP Signup Example" href="php_signup_example.html" /> <link rel="icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> <link rel="shortcut icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> @@ -89,7 +89,7 @@ <h3>Navigation</h3> <li class="right" > <a href="php_signup_example.html" title="PHP Signup Example" accesskey="P">previous</a> |</li> - <li><a href="index.html">audience v0.1 documentation</a> »</li> + <li><a href="index.html">audience 0.1 documentation</a> »</li> </ul> </div> @@ -153,7 +153,7 @@ <h1>PHP Get Member By Email Example<a class="headerlink" href="#php-get-member-b <div id="searchbox" style="display: none"> <h3>Quick search</h3> <form class="search" action="search.html" method="get"> - <input type="text" name="q" size="18" /> + <input type="text" name="q" /> <input type="submit" value="Go" /> <input type="hidden" name="check_keywords" value="yes" /> <input type="hidden" name="area" value="default" /> @@ -183,7 +183,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 29, 2013 at 04:16 PM. + Last updated on Feb 05, 2013 at 03:36 PM. </div> </body> </html> \ No newline at end of file diff --git a/php_signup_example.html b/php_signup_example.html index 8043c51..295ac9b 100644 --- a/php_signup_example.html +++ b/php_signup_example.html @@ -30,7 +30,7 @@ <script type="text/javascript">try{Typekit.load();}catch(e){}</script> <script type="text/javascript" src="_static/underscore.js"></script> <script type="text/javascript" src="_static/doctools.js"></script> - <link rel="top" title="audience v0.1 documentation" href="index.html" /> + <link rel="top" title="audience 0.1 documentation" href="index.html" /> <link rel="next" title="PHP Get Member By Email Example" href="php_get_member_example.html" /> <link rel="prev" title="Webhook Usage" href="webhooks.html" /> <link rel="icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> @@ -93,7 +93,7 @@ <h3>Navigation</h3> <li class="right" > <a href="webhooks.html" title="Webhook Usage" accesskey="P">previous</a> |</li> - <li><a href="index.html">audience v0.1 documentation</a> »</li> + <li><a href="index.html">audience 0.1 documentation</a> »</li> </ul> </div> @@ -175,7 +175,7 @@ <h1>PHP Signup Example<a class="headerlink" href="#php-signup-example" title="Pe <div id="searchbox" style="display: none"> <h3>Quick search</h3> <form class="search" action="search.html" method="get"> - <input type="text" name="q" size="18" /> + <input type="text" name="q" /> <input type="submit" value="Go" /> <input type="hidden" name="check_keywords" value="yes" /> <input type="hidden" name="area" value="default" /> @@ -205,7 +205,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 29, 2013 at 04:16 PM. + Last updated on Feb 05, 2013 at 03:36 PM. </div> </body> </html> \ No newline at end of file diff --git a/placeholders.html b/placeholders.html index f3fea65..0cb9930 100644 --- a/placeholders.html +++ b/placeholders.html @@ -30,7 +30,7 @@ <script type="text/javascript">try{Typekit.load();}catch(e){}</script> <script type="text/javascript" src="_static/underscore.js"></script> <script type="text/javascript" src="_static/doctools.js"></script> - <link rel="top" title="audience v0.1 documentation" href="index.html" /> + <link rel="top" title="audience 0.1 documentation" href="index.html" /> <link rel="next" title="Search Syntax" href="member_search.html" /> <link rel="prev" title="Pagination" href="pagination.html" /> <link rel="icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> @@ -93,7 +93,7 @@ <h3>Navigation</h3> <li class="right" > <a href="pagination.html" title="Pagination" accesskey="P">previous</a> |</li> - <li><a href="index.html">audience v0.1 documentation</a> »</li> + <li><a href="index.html">audience 0.1 documentation</a> »</li> </ul> </div> @@ -153,7 +153,7 @@ <h3>Related Topics</h3> <div id="searchbox" style="display: none"> <h3>Quick search</h3> <form class="search" action="search.html" method="get"> - <input type="text" name="q" size="18" /> + <input type="text" name="q" /> <input type="submit" value="Go" /> <input type="hidden" name="check_keywords" value="yes" /> <input type="hidden" name="area" value="default" /> @@ -183,7 +183,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 29, 2013 at 04:16 PM. + Last updated on Feb 05, 2013 at 03:36 PM. </div> </body> </html> \ No newline at end of file diff --git a/search.html b/search.html index c2744d7..f4343f8 100644 --- a/search.html +++ b/search.html @@ -31,7 +31,7 @@ <script type="text/javascript" src="_static/underscore.js"></script> <script type="text/javascript" src="_static/doctools.js"></script> <script type="text/javascript" src="_static/searchtools.js"></script> - <link rel="top" title="audience v0.1 documentation" href="index.html" /> + <link rel="top" title="audience 0.1 documentation" href="index.html" /> <script type="text/javascript"> jQuery(function() { Search.loadIndex("searchindex.js"); }); </script> @@ -91,7 +91,7 @@ <h3>Navigation</h3> <li class="right" > <a href="http-routingtable.html" title="HTTP Routing Table" >routing table</a> |</li> - <li><a href="index.html">audience v0.1 documentation</a> »</li> + <li><a href="index.html">audience 0.1 documentation</a> »</li> </ul> </div> @@ -153,7 +153,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 29, 2013 at 04:16 PM. + Last updated on Feb 05, 2013 at 03:36 PM. </div> </body> </html> \ No newline at end of file diff --git a/searchindex.js b/searchindex.js index 00222fa..5792e76 100644 --- a/searchindex.js +++ b/searchindex.js @@ -1 +1 @@ -Search.setIndex({objects:{"":{"/#account_id/members/#member_id/groups/remove":[8,1,1],"/#account_id/mailings/#mailing_id/winner/#winner_id":[9,2,1],"/#account_id/response/#mailing_id/in_progress":[5,0,1],"/#account_id/members/groups/remove":[8,1,1],"/#account_id/mailings/#mailing_id/searches":[9,0,1],"/#account_id/fields":[10,2,1],"/#account_id/members/#group_id/copy":[8,1,1],"/#account_id/members/status":[8,1,1],"/#account_id/response/#mailing_id/shares/overview":[5,0,1],"/#account_id/webhooks/events":[4,0,1],"/#account_id/members/#member_id/optout":[8,0,1],"/#account_id/webhooks":[4,3,1],"/#account_id/fields/#field_id":[10,3,1],"/#account_id/response/#mailing_id":[5,0,1],"/#account_id/groups/#member_group_id/members/remove":[13,3,1],"/#account_id/searches":[7,2,1],"/#account_id/members/imports":[8,0,1],"/#account_id/forwards/#mailing_id/#member_id":[9,2,1],"/#account_id/response/#mailing_id/customer_share_clicks":[5,0,1],"/#account_id/mailings/#mailing_id/messages/#member_id":[9,0,1],"/#account_id/members/#member_id/mailings":[8,0,1],"/#account_id/groups/#from_group_id/#to_group_id/members/copy":[13,1,1],"/#account_id/triggers":[14,2,1],"/#account_id/triggers/#trigger_id":[14,3,1],"/#account_id/members/delete":[8,1,1],"/#account_id/mailings/#mailing_id/groups":[9,0,1],"/#account_id/response/#mailing_id/forwards":[5,0,1],"/#account_id/members/#member_id":[8,3,1],"/#account_id/triggers/#trigger_id/mailings":[14,0,1],"/#account_id/searches/#search_id/members":[7,0,1],"/#account_id/members/status/:status_from/to/:status_to":[8,1,1],"/#account_id/response/#mailing_id/sends":[5,0,1],"/#account_id/members":[8,3,1],"/#account_id/members/email/:email":[8,0,1],"/#account_id/response/#mailing_id/links":[5,0,1],"/#account_id/searches/#search_id":[7,3,1],"/#account_id/members/imports/#import_id/members":[8,0,1],"/#account_id/fields/#field_id/clear":[10,2,1],"/#account_id/groups/#member_group_id/members":[13,3,1],"/#account_id/members/imports/#import_id":[8,0,1],"/#account_id/response":[5,0,1],"/#account_id/response/#mailing_id/opens":[5,0,1],"/#account_id/members/imports/delete":[8,3,1],"/#account_id/mailings":[9,0,1],"/#account_id/mailings/cancel/#mailing_id":[9,3,1],"/#account_id/mailings/validate":[9,2,1],"/#account_id/response/#mailing_id/deliveries":[5,0,1],"/#account_id/mailings/#mailing_id/members":[9,0,1],"/#account_id/response/#share_id/customer_share":[5,0,1],"/#account_id/webhooks/#webhook_id":[4,3,1],"/#account_id/members/add":[8,2,1],"/#account_id/members/email/optout/:email":[8,1,1],"/#account_id/response/#mailing_id/optouts":[5,0,1],"/#account_id/response/#mailing_id/shares":[5,0,1],"/#account_id/groups/#member_group_id":[13,3,1],"/#account_id/mailings/#mailing_id":[9,3,1],"/#account_id/members/#member_id/groups":[8,3,1],"/#account_id/groups":[13,2,1],"/#account_id/response/#mailing_id/clicks":[5,0,1],"/#account_id/mailings/#mailing_id/headsup":[9,0,1],"/#account_id/response/#mailing_id/signups":[5,0,1],"/#account_id/response/#mailing_id/customer_shares":[5,0,1]}},terms:{all:[0,1,4,5,8,9,10,11,12,13,14],code:[0,1,6,3],change_typ:8,queri:[0,2,4],month:[0,5,9,14],four:[0,5],mile:0,least:0,field_creat:[12,4],link_target:[5,9],content:[11,6,9,3],privat:1,specif:[8,9,4],friendli:5,send:[1,9,4,3,5],customer_share_click:5,those:[5,12],group_upd:[12,4],sent:[5,8,12,9,14],curl_clos:[6,3],brown:[7,8],digit:5,everi:0,string:[0,4,5,7,8,9,10,12,13,14],fals:[3,4,5,6,7,8,9,10,13,14],webhook:[1,12,4],mailing_status:9,trigger_id:14,curlopt_post:3,webview_share_click:5,affect:[7,8],member_add:[12,4],create_mail:9,new_boolean:10,foo:0,level:1,group_delet:[12,4],list:[0,1,2,4,5,7,8,9,10,11,12,13,14],upload:8,iter:2,"try":8,item:2,plaintext_onli:[9,14],div:[4,5,7,8,9,10,13,14],survey_id:14,pleas:[1,8,11,9],prevent:2,work:[1,4],ten:0,sync:10,sign:[0,5,4],past:1,second:[0,7,14],follow:[0,1,4,5,7,9,11,13],further:1,durat:9,click:[0,4,5,7,8,12,14],append:2,even:10,what:1,hide:[4,5,7,8,9,10,13,14],appear:1,from_group_id:13,section:1,current:[8,12,9],delet:[1,4,7,8,9,10,12,13,14],"new":[1,4,5,7,8,9,10,11,13,14],net:[1,2,6,3],delivery_t:8,method:[5,8,13,4,9],can:[0,1,2,4,5,7,8,9,11,12,13],widget:[7,10,8,9,13],hash:0,datematch:0,displai:10,variat:9,gener:[0,8,12,14],onli:[5,8],here:[0,1,3,5,6,8],bodi:9,let:[1,4,10],address:[0,1,8,6,9],along:8,sinc:8,valu:[0,5,7,8,10,11],field_upd:[12,4],search:[0,1,9,7],survei:14,sender:[9,14],larger:2,queue:5,prior:9,action:[0,8],chang:[8,4],campaign:5,newbi:5,appli:[7,14],prefer:0,myemma:[4,5,7,8,9,13],filenam:8,customer_shar:5,"boolean":[0,1,5,7,8,9,10,13,14],curlopt_postfield:3,total:5,jone:[7,5,8,13],select:10,newslett:[7,8,13],describ:7,would:[0,1],regist:4,two:[0,5],next:[0,1],create_webhook:4,few:[5,8],call:[1,2,3,4,6,8,12],criteria:7,member_add_to_group:[12,4],type:[1,3,4,5,6,7,10,9,14],until:2,more:[0,4,7,8,9,13],peopl:5,relat:[1,8,11,9],about:[10,8,12,4,9],notic:8,thide:[4,5,7,8,9,10,13,14],flag:[5,7,8,10,9,14],exce:2,indic:8,examin:1,particular:[1,4,5,8,10,12,9],in_progress:5,origin:9,must:[0,7,13,10],none:9,endpoint:[1,4,5,7,8,9,10,13,14],join:[0,7],hour:0,member_sinc:[0,5,7,8,9,13],uniqu:5,histori:8,soup:7,remain:[0,9],archiv:[5,9],member_optout:[12,4],drill:5,control:[1,11,9],quickstart:1,give:5,forward_mailing_id:5,email_domain:[0,5],share:[0,5,8,12,4],accept:[0,5,7,8,9,10,11,13,14],total_click:5,tag:[11,9],want:[1,12,13,5],occur:[7,12],some_numeric_field:0,delai:14,alwai:0,webhook_event_id:4,cours:1,end:[2,8],first_nam:[1,3,5,7,8,9,10,11,13,14],started_or_finish:[9,14],anoth:[9,13],get:[1,4,5,6,7,8,9,10,13,14],message_open:[12,4],html_bodi:[9,14],share_statu:5,push_offset:14,del_statu:5,tild:5,num_members_upd:8,simpl:0,chri:9,pizza:[7,8],map:0,autent:1,referenc:7,xxxx:6,sundai:0,membership:13,taco:[7,5,8,9,13],mai:12,multipl:[10,8],data:[1,3,4,5,10,12],welcom:11,add_onli:8,"short":0,json_encod:3,optout:[5,8,12,13],num_dupl:8,favorit:10,correspond:[0,1],greet:11,predic:[0,1],issu:[1,10],"12t11":[7,5,8,9,13],combin:7,allow:[0,7,8],some_zipcode_field:0,signed_up:5,order:[5,10],michel:[8,9],mailing_nam:5,checkbox:10,fields_upd:8,over:2,becaus:12,buyer:[7,8,9,13],comma:[9,13],is_dis:14,vari:8,paramet:[2,4,5,7,8,9,10,13,14],widget_typ:10,style:[0,4,5,7,8,9,10,13,14],group:[0,1,3,4,7,8,9,12,13,14],curl_setopt:[6,3],how:[7,1,2,4],import_start:8,better:[13,14],platform:1,pend:[1,9],mailing_list:9,onc:9,mail:[0,1,4,5,8,11,12,9,14],hidden:13,main:1,might:[1,4],link_nam:[5,9],them:[8,9],"return":[0,1,4,5,7,8,9,10,12,13,14],greater:[0,8],thei:[0,9],food:10,timestamp:[0,5,12,9,10],spell:4,dai:0,auth:1,instead:[12,2,8],now:5,down:5,term:[0,1],alex:9,name:[0,4,5,7,8,9,10,11,13,14],edit:[7,1,14,10],curl_getinfo:[6,3],authent:[1,6,4,3],successufulli:4,separ:[1,9,13],each:[1,2,5,9,12,11,13],found:[8,9,4,14],updat:[4,7,8,9,10,12,13,14],mean:0,status:[8,9],domain:0,shortcut_nam:10,weight:[4,5,7,8,9,10,13,14],resum:9,individu:[1,8],hard:[0,5],last_nam:[1,3,5,7,8,9,10,11,13,14],"05t15":5,birthdai:[10,14],expect:1,year:[0,5,9,14],our:[1,11,12,4,14],happen:[1,4,5],extract:11,short_display_nam:10,special:[0,7,8,13],out:[0,1,4,5,7,8,10,13],variabl:[1,6,3],message_shar:[12,4],network:[5,12],private_api_kei:[1,6,3],check_multipl:10,categori:1,rel:0,print:6,correct:10,statist:8,benjamin:8,qualifi:11,insid:1,advanc:0,contain:[0,5,7,13,10,9],differ:0,standard:[5,9],status_from:8,base:[5,8],recipient_search:9,dictionari:8,put:[4,7,8,9,10,13,14],"13t23":[7,5,8],visit:11,could:1,omit:5,success:[1,3,7,8,9,13],filter:[0,1,7],search_id:7,pagin:[1,2],member_id:[5,7,8,9,12,13],summari:[1,5],assign:9,first:[0,1,10,5],oper:[0,1,7,14],rang:5,notifi:12,directli:0,curlopt_ssl_verifyp:[6,3],curl_init:[6,3],number:[5,2,13,3,10],placehold:[1,11],date:[0,5,8,10,11,14],unlik:9,alreadi:[10,8,9,13],done:8,plaintext_pref:[7,8,9,13],oppos:8,open:[0,3,4,5,6,7,8,12],payload:4,fanci:5,size:2,given:[0,8,9,4],"long":10,script:1,associ:[1,8,9,4,5],system:[8,12,4,14],messag:[4,5,8,12,11,9,14],attach:11,friend:11,curlinfo_http_cod:[6,3],shell:0,option:[0,5,7,8,9,10,13,14],especi:8,signup:[0,1,3,4,5,8,12,14],copi:[8,13],member_upd:[12,4],specifi:[0,2,7,8,10,11,9,14],curl_exec:[6,3],curlopt_httphead:[6,3],member_signup:[12,4],create_search:7,part:[0,9],enclos:11,than:[0,1,2,3,12,13],with_plaintext:9,"02t10":[5,8],"02t11":[5,8],"02t13":5,nathan:8,whenev:8,provid:[1,5,8,12,9,14],remov:[12,8,13,4],mailing_start:4,rate:2,structur:7,charact:9,greg:8,trackabl:11,were:5,minut:0,danc:1,error_count:[7,8,9,13],pre:[4,5,7,8,9,10,13,14],cleaner:1,sai:0,share_id:5,signup_form_id:[0,8,12,9,14],plaintext:[5,9,14],pass:[1,3],ani:[0,1,2,7,8,9],have:[0,5,8,12,9],tabl:5,seen:5,"null":[7,8,13,10,9,14],kevin:[9,14],signup_mail:0,caus:14,inform:[1,4,6,8,9,10,13],object_id:14,note:[1,8,9,4],also:[0,4,5,7,8,9,11,13],exampl:[0,1,3,5,6,7,11],take:[0,4],which:[0,1,4,8,10,12,9,14],some_number_field:0,singl:[0,1,3,4,5,8,10,12,13],excit:11,sure:1,delete_memb:13,normal:9,parent_mail:14,recipient_count:[5,9,14],previou:9,field_id:[10,12,14],last_run_at:7,most:14,pair:11,"class":[4,5,7,8,9,10,13,14],member_group_id:[8,9,13],mcconnel:[9,14],url:[1,3,4,5,6,12],mailing_finish:[12,4],clear:10,request:[1,2,3],doe:[0,5,7,8,9,10,13],member_status_upd:[12,4],declar:9,tech:4,determin:1,dataset:10,dow:0,recipi:9,"6db0cc7e6fdb2da589b65f29d90c96b6":9,show:[4,5,7,8,9,10,11,13,14],text:[10,11,12],radiu:0,syntax:[0,1,11,9],radio:10,font:[4,5,7,8,9,10,13,14],fine:9,find:[1,6,5],status_to:8,toast:[7,5,8,13],access:[1,5],giant:12,just:[0,9],pretti:8,column_ord:10,explain:[0,1],winner:9,activ:[1,5,7,8,13,9],figur:1,should:[1,2,3,7,8,11,9],templat:[11,14],share_count:5,count:[5,2,3],variou:[8,13],confirmed_opt_in:[7,8,9,13],familiar:1,express:0,account:[1,4,5,7,8,10,13,14],cannot:[8,9,4],progress:9,report:[10,8],requir:[1,7,8,10,11,9],object:[5,13],favorite_food:[5,7,8,13,10,9],bar:0,organ:1,include_archiv:[5,9],"public":1,"default":[5,11,13,4,9],ref_member_id:5,message_share_click:[12,4],through:[1,8,4],where:[0,1,8,11,7],view:1,set:[0,1,2,3,6,8,9,12,13],link_id:[0,5,12,9,14],see:[7,1,8],result:[0,1,2,5,8,9],respons:[0,1,2,4,5,7,8,9,10,13,14],fail:[5,9,4],themselv:2,member_field:[0,7],xxxxx:6,subject:[8,12,9,14],statu:[1,4,5,7,8,9,12,13],fancyonion:11,kei:[0,1,8,11,4],is_schedul:9,message_forward:[12,4],databas:8,user:[0,8,9,13],last_modified_at:[7,8,9,13],addresse:5,written:1,between:[0,7,2],"import":[1,8,12,4,10],subscript:[1,3],entiti:1,curlopt_url:[6,3],email:[0,1,3,5,6,7,8,9,13],wide:14,extend:1,numer:10,http404:[4,5,7,8,9,10,13,14],job:13,entir:[0,8],share_click:5,to_group_id:13,curlopt_returntransf:[6,3],addit:[0,1,8,9,11,13],member_remove_from_group:[12,4],send_start:[0,9,14],protect:1,accident:2,last:[0,5,10],delimit:5,pertain:5,message_click:[12,4],against:0,audienc:[1,8,9],mang:0,http500:14,seri:5,com:[4,5,6,7,8,9,11,13],zip_code_field:0,"03t15":[7,5,8,13],point:1,toni:[7,8],overview:[0,1,11,12,5],period:1,winner_id:9,colon:[7,11],optout_count:[7,8,9,13],suppli:9,cancel:9,tuesdai:0,duplic:5,quit:[5,8],user_id:4,recur:14,headsup:9,addition:[1,2],due:5,been:[1,8,10,5],mark:[8,9],whom:9,tshow:[4,5,7,8,9,10,13,14],trigger:[1,4,5,7,8,9,10,12,13,14],unsubscrib:0,treat:8,interest:[10,4],basic:[0,1,4,8,13,14],monthli:[7,8,13],"29t16":[7,14],blob:4,mailing_mailing_id:5,mailing_id:[0,5,8,12,9,14],fire:[8,4,14],xxx:[1,3],argument:[0,5],link_ord:[5,9],input:1,present:7,clicked_uniqu:5,"case":[1,8],look:[1,14,10],frozen:9,easier:12,email_error:[7,8,9,13],defin:[0,10,8,9],"while":0,outcom:5,abov:[0,1,8,7],error:[1,3,6,8,10,13],loop:8,opt:[0,4,5,7,8,13],readi:9,deliv:5,recipient_group:9,equal:0,itself:0,new_statu:12,webhook_id:4,recipient_memb:9,perform:8,make:[1,12,6,10],belong:[0,8,4],same:4,check:[8,6,9],member:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14],handl:1,html:9,split:9,document:[1,11,12],complet:[1,3,4,6,8,9],week:0,finish:[5,12,4],http:[1,2,3,4,5,6,11,9],href:[4,5,7,8,9,10,13,14],nest:0,someon:4,rais:[4,5,7,8,9,10,13,14],initi:[10,9],php:[1,6,3],bob:[7,5],recent:1,kept:11,center:0,min:5,well:5,inherit:9,person:9,mailing_typ:[9,14],without:0,thi:[0,1,4,5,7,8,9,10,12,13,14],undefin:0,http_code:[1,6,3],latest:11,construct:[0,7,9],identifi:8,paus:9,execut:[1,3],less:0,resp:[4,5,7,8,9,10,13,14],"_post":[1,3],aspect:13,recipient_email:9,source_filenam:8,yet:5,smith:[7,5,8,9,13],"12t09":[7,8],display_nam:10,easi:[10,12],"01t00":8,had:0,littl:1,blog:4,add:[12,1,8,13,3],other:[1,8,9,3,5],curlopt_userpwd:[6,3],import_finish:[8,12,4],schedul:9,els:[1,6,3],save:7,match:[0,7],build:1,sanit:1,applic:[1,6,3],account_id:[1,3,4,5,6,7,8,9,10,12,13,14],disposit:1,crud:[8,13,14],print_r:[6,3],mailing_statu:[9,14],know:[5,4],background:13,parent_mailing_id:[9,14],bit:1,insert:11,emma:[1,5,7,8,9,12,13],like:1,onion:11,deprec:4,arbitrari:8,manual:9,integ:[1,8,14,10,5],public_kei:4,api:[1,2,6,12,3],either:[0,5,7],bunch:0,output:9,group_id:[1,8,12,3],soft:[0,5],manag:[0,1,13,4],import_id:[8,12],www:[5,9],old:7,deal:[8,13],captur:1,arrai:[0,1,3,5,6,7,8,9,10,12,13,14],some:[1,11,5],field_delet:[12,4],certain:12,intern:10,sampl:[1,4,5,7,8,9,10,13,14],elaps:[2,9],home:11,deleted_at:[7,8,13,10,9,14],some_string_field:0,librari:11,bounce_count:[7,8,9,13],confirm:8,broad:12,per:5,send_finish:[9,14],larg:[0,2],condit:7,three:9,network_cod:12,localhost:9,refer:[5,7,8,13,10,9],with_html_bodi:9,who:[0,5],bold:[4,5,7,8,9,10,13,14],event_typ:14,inspect:1,usag:[1,8,12],num_members_ad:8,fulli:11,from:[1,4,8,9,12,13,14],post:[1,3,4,7,8,9,10,12,13,14],group_creat:[12,4],gladi:[7,5,8,13],actual:5,zip:0,groups_upd:8,column:10,page:2,includ:[1,5,7,8,9,10,13],webview:9,disabl:[9,14],block:[1,2],yyyi:5,member_data:[1,3],glob:0,bounc:[0,5],within:0,encod:[9,4],delivery_typ:[5,8],compos:0,webview_shar:5,field_typ:10,active_count:[7,8,9,13],public_webview_url:9,pivot:5,your:[1,4,5,7,8,9,10,13],websit:11,span:[4,5,7,8,9,10,13,14],wai:[1,12],area:1,overus:2,group_nam:[8,12,13,9],support:12,unique_click:5,json:[0,1,3,4,6,7],fast:8,custom:[5,8,11,10],avail:[0,11,4],start:[1,2,8,4],interfac:12,send_at:[9,14],exceed:2,"var":3,interv:[0,14],deliveri:5,head:[6,9,3],form:[1,3,4,6,8,10,14],enough:2,forc:1,forward:[0,4,5,8,12,9],"31st":0,group_typ:[8,9,13],push_offset_unit:14,link:[0,4,5,11,9,14],line:[1,5],realli:1,"true":[0,1,2,3,4,6,7,8,9,10,13,14],archived_t:[9,14],info:4,pull:2,made:1,possibl:[5,8,12],whether:8,maximum:2,tell:12,http403:9,record:[0,7,8],below:[0,1,8,12],http400:[7,8,9],limit:[5,2,8,9],some_array_field:0,otherwis:[10,8],start_t:14,mta:5,connect:[6,3],notif:9,creat:[4,5,7,9,10,12,13,14],"int":5,retriev:[7,1,2,8,9],email_us:[0,5],repres:5,exist:[0,4,5,7,8,10,13],behavior:11,curl:[1,6],lentil:7,probabl:14,echo:[1,3],successfulli:[5,8,9],mailing_subject:12,grp:13,todo:11,when:[8,12,4,9],detail:[1,4,7,8,9,10,13],invalid:[7,8,9],event:[4,7,8,13,12,9,14],field:[0,1,3,4,5,7,8,9,10,11,12,13,14],valid:[5,8,9,13],futur:1,num_skip:8,test:[5,6,7,13,9,14],ignor:8,you:[0,1,2,4,5,7,8,9,10,11,12,13],member_delet:[12,4],member_status_id:[7,5,8,9,13],public_api_kei:[1,6,3],stat:[5,9],claus:[0,7],event_nam:[12,4],e2ma:[1,2,6,3],error_messag:8,param:[9,4],app_messag:[1,3],ella:8,bulk:[1,8],receiv:[0,2,5,8,12,9],heads_up_email:9,longer:9,descript:[4,14],portion:0,opted_out:5,time:[1,2,8,13,5],reply_to:[9,14],resource_url:12,hello:[11,9,14]},objtypes:{"0":"http:get","1":"http:put","2":"http:post","3":"http:delete"},titles:["Search Syntax","Emma API","Pagination","PHP Signup Example","Webhooks","Response","PHP Get Member By Email Example","Searches","Members","Mailings","Fields","Placeholder Syntax","Webhook Usage","Groups","Triggers"],objnames:{"0":"HTTP get","1":"HTTP put","2":"HTTP post","3":"HTTP delete"},filenames:["member_search","index","pagination","php_signup_example","api/external/webhooks","api/external/response","php_get_member_example","api/external/searches","api/external/members","api/external/mailings","api/external/fields","placeholders","webhooks","api/external/groups","api/external/triggers"]}) \ No newline at end of file +Search.setIndex({objects:{"":{"/#account_id/members/#member_id/groups/remove":[8,1,1,"put--#account_id-members-#member_id-groups-remove"],"/#account_id/mailings/#mailing_id/winner/#winner_id":[9,2,1,"post--#account_id-mailings-#mailing_id-winner-#winner_id"],"/#account_id/response/#mailing_id/in_progress":[5,0,1,"get--#account_id-response-#mailing_id-in_progress"],"/#account_id/members/groups/remove":[8,1,1,"put--#account_id-members-groups-remove"],"/#account_id/mailings/#mailing_id/searches":[9,0,1,"get--#account_id-mailings-#mailing_id-searches"],"/#account_id/fields":[10,2,1,"post--#account_id-fields"],"/#account_id/members/#group_id/copy":[8,1,1,"put--#account_id-members-#group_id-copy"],"/#account_id/members/status":[8,1,1,"put--#account_id-members-status"],"/#account_id/response/#mailing_id/shares/overview":[5,0,1,"get--#account_id-response-#mailing_id-shares-overview"],"/#account_id/webhooks/events":[4,0,1,"get--#account_id-webhooks-events"],"/#account_id/members/#member_id/optout":[8,0,1,"get--#account_id-members-#member_id-optout"],"/#account_id/webhooks":[4,3,1,"delete--#account_id-webhooks"],"/#account_id/fields/#field_id":[10,3,1,"delete--#account_id-fields-#field_id"],"/#account_id/response/#mailing_id":[5,0,1,"get--#account_id-response-#mailing_id"],"/#account_id/groups/#member_group_id/members/remove":[13,3,1,"delete--#account_id-groups-#member_group_id-members-remove"],"/#account_id/searches":[7,2,1,"post--#account_id-searches"],"/#account_id/members/imports":[8,0,1,"get--#account_id-members-imports"],"/#account_id/forwards/#mailing_id/#member_id":[9,2,1,"post--#account_id-forwards-#mailing_id-#member_id"],"/#account_id/response/#mailing_id/customer_share_clicks":[5,0,1,"get--#account_id-response-#mailing_id-customer_share_clicks"],"/#account_id/mailings/#mailing_id/messages/#member_id":[9,0,1,"get--#account_id-mailings-#mailing_id-messages-#member_id"],"/#account_id/members/#member_id/mailings":[8,0,1,"get--#account_id-members-#member_id-mailings"],"/#account_id/groups/#from_group_id/#to_group_id/members/copy":[13,1,1,"put--#account_id-groups-#from_group_id-#to_group_id-members-copy"],"/#account_id/triggers":[14,2,1,"post--#account_id-triggers"],"/#account_id/triggers/#trigger_id":[14,3,1,"delete--#account_id-triggers-#trigger_id"],"/#account_id/members/delete":[8,1,1,"put--#account_id-members-delete"],"/#account_id/mailings/#mailing_id/groups":[9,0,1,"get--#account_id-mailings-#mailing_id-groups"],"/#account_id/response/#mailing_id/forwards":[5,0,1,"get--#account_id-response-#mailing_id-forwards"],"/#account_id/members/#member_id":[8,3,1,"delete--#account_id-members-#member_id"],"/#account_id/triggers/#trigger_id/mailings":[14,0,1,"get--#account_id-triggers-#trigger_id-mailings"],"/#account_id/searches/#search_id/members":[7,0,1,"get--#account_id-searches-#search_id-members"],"/#account_id/members/status/:status_from/to/:status_to":[8,1,1,"put--#account_id-members-status--status_from-to--status_to"],"/#account_id/response/#mailing_id/sends":[5,0,1,"get--#account_id-response-#mailing_id-sends"],"/#account_id/members":[8,3,1,"delete--#account_id-members"],"/#account_id/members/email/:email":[8,0,1,"get--#account_id-members-email--email"],"/#account_id/response/#mailing_id/links":[5,0,1,"get--#account_id-response-#mailing_id-links"],"/#account_id/searches/#search_id":[7,3,1,"delete--#account_id-searches-#search_id"],"/#account_id/members/imports/#import_id/members":[8,0,1,"get--#account_id-members-imports-#import_id-members"],"/#account_id/fields/#field_id/clear":[10,2,1,"post--#account_id-fields-#field_id-clear"],"/#account_id/groups/#member_group_id/members":[13,3,1,"delete--#account_id-groups-#member_group_id-members"],"/#account_id/members/imports/#import_id":[8,0,1,"get--#account_id-members-imports-#import_id"],"/#account_id/response":[5,0,1,"get--#account_id-response"],"/#account_id/response/#mailing_id/opens":[5,0,1,"get--#account_id-response-#mailing_id-opens"],"/#account_id/members/imports/delete":[8,3,1,"delete--#account_id-members-imports-delete"],"/#account_id/mailings":[9,0,1,"get--#account_id-mailings"],"/#account_id/mailings/cancel/#mailing_id":[9,3,1,"delete--#account_id-mailings-cancel-#mailing_id"],"/#account_id/mailings/validate":[9,2,1,"post--#account_id-mailings-validate"],"/#account_id/response/#mailing_id/deliveries":[5,0,1,"get--#account_id-response-#mailing_id-deliveries"],"/#account_id/mailings/#mailing_id/members":[9,0,1,"get--#account_id-mailings-#mailing_id-members"],"/#account_id/response/#share_id/customer_share":[5,0,1,"get--#account_id-response-#share_id-customer_share"],"/#account_id/webhooks/#webhook_id":[4,3,1,"delete--#account_id-webhooks-#webhook_id"],"/#account_id/members/add":[8,2,1,"post--#account_id-members-add"],"/#account_id/members/email/optout/:email":[8,1,1,"put--#account_id-members-email-optout--email"],"/#account_id/response/#mailing_id/optouts":[5,0,1,"get--#account_id-response-#mailing_id-optouts"],"/#account_id/response/#mailing_id/shares":[5,0,1,"get--#account_id-response-#mailing_id-shares"],"/#account_id/groups/#member_group_id":[13,3,1,"delete--#account_id-groups-#member_group_id"],"/#account_id/mailings/#mailing_id":[9,3,1,"delete--#account_id-mailings-#mailing_id"],"/#account_id/members/#member_id/groups":[8,3,1,"delete--#account_id-members-#member_id-groups"],"/#account_id/groups":[13,2,1,"post--#account_id-groups"],"/#account_id/response/#mailing_id/clicks":[5,0,1,"get--#account_id-response-#mailing_id-clicks"],"/#account_id/mailings/#mailing_id/headsup":[9,0,1,"get--#account_id-mailings-#mailing_id-headsup"],"/#account_id/response/#mailing_id/signups":[5,0,1,"get--#account_id-response-#mailing_id-signups"],"/#account_id/response/#mailing_id/customer_shares":[5,0,1,"get--#account_id-response-#mailing_id-customer_shares"]}},terms:{all:[0,1,4,5,8,9,10,11,12,13,14],code:[0,1,6,3],change_typ:8,queri:[0,2,4],month:[0,5,9,14],four:[0,5],mile:0,least:0,field_creat:[12,4],link_target:[5,9],content:[1,11,6,9,3],privat:1,specif:[8,9,4],friendli:5,send:[1,9,4,3,5],customer_share_click:5,those:[5,12],group_upd:[12,4],sent:[5,8,12,9,14],curl_clos:[1,6,3],brown:[7,8],digit:5,everi:0,string:[0,4,5,7,8,9,10,12,13,14],fals:[1,3,4,5,6,7,8,9,10,13,14],webhook:[1,12,4],mailing_status:9,trigger_id:14,webview_share_click:5,affect:[7,8],member_add:[12,4],create_mail:9,new_boolean:10,foo:0,level:1,group_delet:[12,4],list:[0,1,2,4,5,7,8,9,10,11,12,13,14],upload:8,iter:2,"try":8,item:2,plaintext_onli:[9,14],div:[4,5,7,8,9,10,13,14],survey_id:14,pleas:[1,8,11,9],prevent:2,work:[1,4],ten:0,sync:10,sign:[0,5,4],past:1,second:[0,7,14],follow:[0,1,4,5,7,9,11,13],further:1,durat:9,click:[0,4,5,7,8,12,14],append:2,even:10,what:1,hide:[4,5,7,8,9,10,13,14],appear:1,from_group_id:13,section:1,current:[8,12,9],delet:[1,4,7,8,9,10,12,13,14],"new":[1,4,5,7,8,9,10,11,13,14],net:[1,2,6,3],delivery_t:8,method:[5,8,13,4,9],can:[0,1,2,4,5,7,8,9,11,12,13],widget:[7,10,8,9,13],hash:0,datematch:0,displai:10,variat:9,gener:[0,8,12,14],onli:[5,8],here:[0,1,3,5,6,8],bodi:9,let:[1,4,10],address:[0,1,8,6,9],along:8,sinc:8,valu:[0,5,7,8,10,11],field_upd:[12,4],search:[0,1,9,7],survei:14,sender:[9,14],larger:2,queue:5,prior:9,action:[0,8],chang:[8,4],campaign:5,newbi:5,appli:[7,14],prefer:0,myemma:[4,5,7,8,9,13],filenam:8,customer_shar:5,"boolean":[0,1,5,7,8,9,10,13,14],curlopt_postfield:[1,3],total:5,jone:[7,5,8,13],select:10,newslett:[7,8,13],describ:7,would:[0,1],regist:4,two:[0,5],next:[0,1],create_webhook:4,few:[5,8],call:[1,2,3,4,6,8,12],criteria:7,member_add_to_group:[12,4],type:[1,3,4,5,6,7,10,9,14],until:2,more:[0,4,7,8,9,13],peopl:5,relat:[1,8,11,9],about:[10,8,12,4,9],notic:8,thide:[4,5,7,8,9,10,13,14],flag:[5,7,8,10,9,14],exce:2,indic:8,examin:1,particular:[1,4,5,8,10,12,9],in_progress:5,origin:9,must:[0,7,13,10],none:9,endpoint:[1,4,5,7,8,9,10,13,14],join:[0,7],hour:0,setup:1,member_sinc:[0,5,7,8,9,13],uniqu:5,histori:8,soup:7,remain:[0,9],archiv:[5,9],member_optout:[12,4],drill:5,control:[1,11,9],quickstart:1,give:5,forward_mailing_id:5,email_domain:[0,5],share:[0,5,8,12,4],accept:[0,5,7,8,9,10,11,13,14],total_click:5,tag:[11,9],want:[1,12,13,5],occur:[7,12],some_numeric_field:0,delai:14,alwai:0,webhook_event_id:4,cours:1,end:[2,8],first_nam:[1,3,5,7,8,9,10,11,13,14],started_or_finish:[9,14],anoth:[9,13],get:[1,4,5,6,7,8,9,10,13,14],message_open:[12,4],html_bodi:[9,14],share_statu:5,push_offset:14,del_statu:5,tild:5,num_members_upd:8,simpl:0,chri:9,pizza:[7,8],map:0,autent:1,referenc:7,xxxx:6,sundai:0,membership:13,taco:[7,5,8,9,13],mai:12,multipl:[10,8],data:[1,3,4,5,10,12],welcom:11,add_onli:8,"short":0,json_encod:[1,3],optout:[5,8,12,13],num_dupl:8,favorit:10,correspond:[0,1],greet:11,predic:[0,1],issu:[1,10],"12t11":[7,5,8,9,13],combin:7,allow:[0,7,8],some_zipcode_field:0,signed_up:5,order:[5,10],michel:[8,9],mailing_nam:5,checkbox:10,fields_upd:8,over:2,becaus:12,buyer:[7,8,9,13],comma:[9,13],is_dis:14,vari:8,paramet:[2,4,5,7,8,9,10,13,14],widget_typ:10,style:[0,4,5,7,8,9,10,13,14],group:[0,1,3,4,7,8,9,12,13,14],curl_setopt:[1,6,3],how:[7,1,2,4],import_start:8,better:[13,14],platform:1,pend:[1,9],mailing_list:9,onc:9,mail:[0,1,4,5,8,11,12,9,14],hidden:13,main:1,might:[1,4],link_nam:[5,9],them:[8,9],"return":[0,1,4,5,7,8,9,10,12,13,14],greater:[0,8],thei:[0,9],food:10,timestamp:[0,5,12,9,10],spell:4,dai:0,auth:1,instead:[12,2,8],now:5,down:5,term:[0,1],alex:9,name:[0,4,5,7,8,9,10,11,13,14],edit:[7,1,14,10],curl_getinfo:[1,6,3],authent:[1,6,4,3],successufulli:4,separ:[1,9,13],each:[1,2,5,9,12,11,13],found:[8,9,4,14],updat:[4,7,8,9,10,12,13,14],mean:0,status:[8,9],domain:0,shortcut_nam:10,weight:[4,5,7,8,9,10,13,14],resum:9,individu:[1,8,5],hard:[0,5],last_nam:[1,3,5,7,8,9,10,11,13,14],"05t15":[7,5,14],birthdai:[10,14],expect:1,year:[0,5,9,14],our:[1,11,12,4,14],happen:[1,4,5],extract:11,short_display_nam:10,special:[0,7,8,13],out:[0,1,4,5,7,8,10,13],variabl:[1,6,3],message_shar:[12,4],network:[5,12],private_api_kei:[1,6,3],check_multipl:10,categori:1,rel:0,print:6,correct:10,statist:8,benjamin:8,qualifi:11,insid:1,advanc:0,contain:[0,5,7,13,10,9],differ:0,standard:[5,9],status_from:8,base:[5,8],recipient_search:9,dictionari:8,put:[4,7,8,9,10,13,14],"13t23":[7,5,8],visit:11,could:1,omit:5,success:[1,3,7,8,9,13],filter:[0,1,7],search_id:7,pagin:[1,2],member_id:[5,7,8,9,12,13],summari:[1,5],assign:9,first:[0,1,10,5],oper:[0,1,7,14],rang:5,notifi:12,directli:0,curlopt_ssl_verifyp:[1,6,3],curl_init:[1,6,3],number:[5,2,13,3,10],placehold:[1,11],date:[0,5,8,10,11,14],unlik:9,alreadi:[10,8,9,13],done:8,plaintext_pref:[7,8,9,13],oppos:8,open:[0,3,4,5,6,7,8,12],payload:4,fanci:5,size:2,given:[0,8,9,4],"long":10,script:1,associ:[1,8,9,4,5],system:[8,12,4,14],messag:[4,5,8,12,11,9,14],attach:11,friend:11,curlinfo_http_cod:[1,6,3],shell:0,option:[0,5,7,8,9,10,13,14],especi:8,signup:[0,1,3,4,5,8,12,14],copi:[8,13],member_upd:[12,4],specifi:[0,2,7,8,10,11,9,14],curl_exec:[1,6,3],curlopt_httphead:[1,6,3],member_signup:[12,4],create_search:7,part:[0,9],enclos:11,than:[0,1,2,3,12,13],with_plaintext:9,"02t10":[5,8],"02t11":[5,8],"02t13":5,nathan:8,whenev:8,provid:[1,5,8,12,9,14],remov:[12,8,13,4],mailing_start:4,rate:2,structur:7,charact:9,greg:8,trackabl:11,were:5,minut:0,danc:1,error_count:[7,8,9,13],pre:[4,5,7,8,9,10,13,14],cleaner:1,sai:0,share_id:5,signup_form_id:[0,8,12,9,14],plaintext:[5,9,14],pass:[1,3],ani:[0,1,2,7,8,9],have:[0,5,8,12,9],tabl:5,seen:5,"null":[7,8,13,10,9,14],kevin:[9,14],signup_mail:0,caus:14,inform:[1,4,6,8,9,10,13],object_id:14,note:[1,8,9,4],also:[0,4,5,7,8,9,11,13],exampl:[0,1,3,5,6,7,11],take:[0,4],which:[0,1,4,8,10,12,9,14],some_number_field:0,singl:[0,1,3,4,5,8,10,12,13],excit:11,sure:1,delete_memb:13,normal:9,parent_mail:14,recipient_count:[5,9,14],previou:9,field_id:[10,12,14],last_run_at:7,most:14,pair:11,"class":[4,5,7,8,9,10,13,14],member_group_id:[8,9,13],mcconnel:[9,14],url:[1,3,4,5,6,12],mailing_finish:[12,4],clear:10,request:[1,2,3],doe:[0,5,7,8,9,10,13],member_status_upd:[12,4],declar:9,tech:4,determin:1,dataset:10,dow:0,recipi:9,"6db0cc7e6fdb2da589b65f29d90c96b6":9,show:[4,5,7,8,9,10,11,13,14],text:[10,11,12],radiu:0,syntax:[0,1,11,9],radio:10,font:[4,5,7,8,9,10,13,14],fine:9,find:[1,6,5],status_to:8,toast:[7,5,8,13],access:[1,5],giant:12,just:[0,9],pretti:8,column_ord:10,explain:[0,1],winner:9,activ:[1,5,7,8,13,9],figur:1,should:[1,2,3,7,8,11,9],templat:[11,14],share_count:5,count:[1,2,3,5],variou:[8,13],confirmed_opt_in:[7,8,9,13],familiar:1,express:0,account:[1,4,5,7,8,10,13,14],cannot:[8,9,4],progress:9,report:[10,8],requir:[1,7,8,10,11,9],object:[5,13],favorite_food:[5,7,8,13,10,9],bar:0,organ:1,include_archiv:[5,9],"public":1,"default":[5,11,13,4,9],ref_member_id:5,message_share_click:[12,4],through:[1,8,4],where:[0,1,8,11,7],view:1,set:[0,1,2,3,6,8,9,12,13],link_id:[0,5,12,9,14],see:[7,1,8],result:[0,1,2,5,8,9],respons:[0,1,2,4,5,7,8,9,10,13,14],fail:[5,9,4],themselv:2,member_field:[0,7],xxxxx:6,subject:[8,12,9,14],statu:[1,4,5,7,8,9,12,13],fancyonion:11,kei:[0,1,8,11,4],is_schedul:9,message_forward:[12,4],databas:8,user:[0,8,9,13],last_modified_at:[7,8,9,13],addresse:5,written:1,between:[0,7,2],"import":[1,8,12,4,10],subscript:[1,3],entiti:1,curlopt_url:[1,6,3],email:[0,1,3,5,6,7,8,9,13],wide:14,extend:1,numer:10,http404:[4,5,7,8,9,10,13,14],job:13,entir:[0,8],share_click:5,to_group_id:13,curlopt_returntransf:[1,6,3],addit:[0,1,8,9,11,13],member_remove_from_group:[12,4],send_start:[0,9,14],protect:1,accident:2,last:[0,5,10],delimit:5,pertain:5,message_click:[12,4],curlopt_post:[1,3],audienc:[1,8,9],mang:0,http500:14,seri:5,com:[4,5,6,7,8,9,11,13],zip_code_field:0,"03t15":[7,5,8,13],point:1,toni:[7,8],overview:[0,1,11,12,5],period:1,winner_id:9,colon:[7,11],optout_count:[7,8,9,13],suppli:9,cancel:9,tuesdai:0,duplic:5,quit:[5,8],user_id:4,recur:14,headsup:9,addition:[1,2],due:5,been:[1,8,10,5],mark:[8,9],whom:9,tshow:[4,5,7,8,9,10,13,14],trigger:[1,4,5,7,8,9,10,12,13,14],unsubscrib:0,treat:8,interest:[10,4],basic:[0,1,4,8,13,14],monthli:[7,8,13],blob:4,mailing_mailing_id:5,mailing_id:[0,5,8,12,9,14],fire:[8,4,14],xxx:[1,3],argument:[0,5],link_ord:[5,9],input:1,present:7,clicked_uniqu:5,"case":[1,8],look:[1,14,10],frozen:9,easier:12,email_error:[7,8,9,13],defin:[0,10,8,9],"while":0,outcom:5,abov:[0,1,8,7],error:[1,3,6,8,10,13],loop:8,opt:[0,4,5,7,8,13],readi:9,deliv:5,recipient_group:9,equal:0,itself:0,new_statu:12,webhook_id:4,recipient_memb:9,perform:8,make:[1,12,6,10],belong:[0,8,4],same:4,check:[8,6,9],member:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14],handl:1,html:9,split:9,document:[1,11,12],complet:[1,3,4,6,8,9],week:0,finish:[5,12,4],http:[1,2,3,4,5,6,11,9],href:[4,5,7,8,9,10,13,14],nest:0,someon:4,rais:[4,5,7,8,9,10,13,14],initi:[10,9],php:[1,6,3],bob:[7,5],recent:1,kept:11,center:0,min:5,well:5,inherit:9,person:9,mailing_typ:[9,14],without:0,command:1,thi:[0,1,4,5,7,8,9,10,12,13,14],undefin:0,http_code:[1,6,3],latest:11,construct:[0,7,9],identifi:8,paus:9,execut:[1,3],less:0,resp:[4,5,7,8,9,10,13,14],"_post":[1,3],against:0,aspect:13,recipient_email:9,source_filenam:8,yet:5,smith:[7,5,8,9,13],"12t09":[7,8],display_nam:10,easi:[10,12],"01t00":8,had:0,littl:1,blog:4,add:[12,1,8,13,3],other:[1,8,9,3,5],curlopt_userpwd:[1,6,3],import_finish:[8,12,4],schedul:9,els:[1,6,3],save:7,match:[0,7],build:1,sanit:1,applic:[1,6,3],account_id:[1,3,4,5,6,7,8,9,10,12,13,14],disposit:1,crud:[8,13,14],print_r:[6,3],mailing_statu:[9,14],know:[5,4],background:13,parent_mailing_id:[9,14],bit:1,insert:11,emma:[1,5,7,8,9,12,13],like:1,onion:11,deprec:4,arbitrari:8,manual:9,integ:[1,8,14,10,5],public_kei:4,api:[1,2,6,12,3],either:[0,5,7],bunch:0,output:9,group_id:[1,8,12,3],soft:[0,5],manag:[0,1,13,4],import_id:[8,12],www:[5,9],old:7,deal:[8,13],captur:1,arrai:[0,1,3,5,6,7,8,9,10,12,13,14],some:[1,11,5],field_delet:[12,4],certain:12,intern:10,sampl:[1,4,5,7,8,9,10,13,14],elaps:[2,9],home:11,deleted_at:[7,8,13,10,9,14],some_string_field:0,librari:11,bounce_count:[7,8,9,13],confirm:8,broad:12,per:5,send_finish:[9,14],larg:[0,2],condit:7,three:9,network_cod:12,localhost:9,refer:[5,7,8,13,10,9],with_html_bodi:9,who:[0,5],bold:[4,5,7,8,9,10,13,14],event_typ:14,inspect:1,usag:[1,8,12],num_members_ad:8,fulli:11,from:[1,4,8,9,12,13,14],post:[1,3,4,7,8,9,10,12,13,14],group_creat:[12,4],gladi:[7,5,8,13],actual:5,zip:0,groups_upd:8,column:10,page:2,includ:[1,5,7,8,9,10,13],webview:9,disabl:[9,14],block:[1,2],yyyi:5,member_data:[1,3],glob:0,bounc:[0,5],within:0,encod:[9,4],delivery_typ:[5,8],compos:0,webview_shar:5,field_typ:10,active_count:[7,8,9,13],public_webview_url:9,pivot:5,your:[1,4,5,7,8,9,10,13],websit:11,span:[4,5,7,8,9,10,13,14],wai:[1,12],area:1,overus:2,group_nam:[8,12,13,9],support:12,unique_click:5,json:[0,1,3,4,6,7],fast:8,custom:[5,8,11,10],avail:[0,11,4],start:[1,2,8,4],interfac:12,send_at:[9,14],exceed:2,"var":3,interv:[0,14],deliveri:5,head:[1,6,9,3],form:[1,3,4,6,8,10,14],enough:2,forc:1,forward:[0,4,5,8,12,9],"31st":0,group_typ:[8,9,13],push_offset_unit:14,link:[0,4,5,11,9,14],line:[1,5],realli:1,"true":[0,1,2,3,4,6,7,8,9,10,13,14],archived_t:[9,14],info:4,pull:2,made:1,possibl:[5,8,12],whether:8,maximum:2,tell:12,http403:9,record:[0,7,8],below:[0,1,8,12],http400:[7,8,9],limit:[5,2,8,9],some_array_field:0,otherwis:[10,8],start_t:14,mta:5,connect:[6,3],notif:9,creat:[4,5,7,9,10,12,13,14],"int":5,retriev:[7,1,2,8,9],email_us:[0,5],repres:5,exist:[0,4,5,7,8,10,13],behavior:11,curl:[1,6],lentil:7,probabl:14,echo:[1,3],successfulli:[5,8,9],mailing_subject:12,grp:13,todo:11,when:[8,12,4,9],detail:[1,4,7,8,9,10,13],invalid:[7,8,9],event:[4,7,8,13,12,9,14],field:[0,1,3,4,5,7,8,9,10,11,12,13,14],valid:[5,8,9,13],futur:1,num_skip:8,test:[5,6,7,13,9,14],ignor:8,you:[0,1,2,4,5,7,8,9,10,11,12,13],member_delet:[12,4],member_status_id:[7,5,8,9,13],public_api_kei:[1,6,3],stat:[5,9],claus:[0,7],event_nam:[12,4],e2ma:[1,2,6,3],error_messag:8,param:[9,4],app_messag:[1,3],ella:8,bulk:[1,8],receiv:[0,2,5,8,12,9],heads_up_email:9,longer:9,descript:[4,14],portion:0,opted_out:5,time:[1,2,8,13,5],reply_to:[9,14],resource_url:12,hello:[11,9,14]},objtypes:{"0":"http:get","1":"http:put","2":"http:post","3":"http:delete"},titles:["Search Syntax","Emma API","Pagination","PHP Signup Example","Webhooks","Response","PHP Get Member By Email Example","Searches","Members","Mailings","Fields","Placeholder Syntax","Webhook Usage","Groups","Triggers"],objnames:{"0":["http","get","HTTP get"],"1":["http","put","HTTP put"],"2":["http","post","HTTP post"],"3":["http","delete","HTTP delete"]},filenames:["member_search","index","pagination","php_signup_example","api/external/webhooks","api/external/response","php_get_member_example","api/external/searches","api/external/members","api/external/mailings","api/external/fields","placeholders","webhooks","api/external/groups","api/external/triggers"]}) \ No newline at end of file diff --git a/webhooks.html b/webhooks.html index 9694e2e..a818d6f 100644 --- a/webhooks.html +++ b/webhooks.html @@ -30,7 +30,7 @@ <script type="text/javascript">try{Typekit.load();}catch(e){}</script> <script type="text/javascript" src="_static/underscore.js"></script> <script type="text/javascript" src="_static/doctools.js"></script> - <link rel="top" title="audience v0.1 documentation" href="index.html" /> + <link rel="top" title="audience 0.1 documentation" href="index.html" /> <link rel="next" title="PHP Signup Example" href="php_signup_example.html" /> <link rel="prev" title="Search Syntax" href="member_search.html" /> <link rel="icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> @@ -93,7 +93,7 @@ <h3>Navigation</h3> <li class="right" > <a href="member_search.html" title="Search Syntax" accesskey="P">previous</a> |</li> - <li><a href="index.html">audience v0.1 documentation</a> »</li> + <li><a href="index.html">audience 0.1 documentation</a> »</li> </ul> </div> @@ -477,7 +477,7 @@ <h3>Related Topics</h3> <div id="searchbox" style="display: none"> <h3>Quick search</h3> <form class="search" action="search.html" method="get"> - <input type="text" name="q" size="18" /> + <input type="text" name="q" /> <input type="submit" value="Go" /> <input type="hidden" name="check_keywords" value="yes" /> <input type="hidden" name="area" value="default" /> @@ -507,7 +507,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jan 29, 2013 at 04:16 PM. + Last updated on Feb 05, 2013 at 03:36 PM. </div> </body> </html> \ No newline at end of file From 71dfff6217ae5f0f6ed5a338abe3299f418fa234 Mon Sep 17 00:00:00 2001 From: Hernan Ciudad <hernan@myemma.com> Date: Tue, 5 Feb 2013 16:12:04 -0600 Subject: [PATCH 029/219] Update audience documentation. --- api/external/fields.html | 2 +- api/external/groups.html | 2 +- api/external/mailings.html | 2 +- api/external/members.html | 2 +- api/external/response.html | 2 +- api/external/searches.html | 4 ++-- api/external/triggers.html | 8 ++++---- api/external/webhooks.html | 2 +- genindex.html | 2 +- http-routingtable.html | 2 +- index.html | 2 +- member_search.html | 2 +- pagination.html | 2 +- php_get_member_example.html | 2 +- php_signup_example.html | 2 +- placeholders.html | 2 +- search.html | 2 +- searchindex.js | 2 +- webhooks.html | 2 +- 19 files changed, 23 insertions(+), 23 deletions(-) diff --git a/api/external/fields.html b/api/external/fields.html index 63ec29e..de9adac 100644 --- a/api/external/fields.html +++ b/api/external/fields.html @@ -415,7 +415,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Feb 05, 2013 at 03:36 PM. + Last updated on Feb 05, 2013 at 04:12 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/groups.html b/api/external/groups.html index 29813cd..4fc2e19 100644 --- a/api/external/groups.html +++ b/api/external/groups.html @@ -702,7 +702,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Feb 05, 2013 at 03:36 PM. + Last updated on Feb 05, 2013 at 04:12 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/mailings.html b/api/external/mailings.html index 25409d1..20fb792 100644 --- a/api/external/mailings.html +++ b/api/external/mailings.html @@ -810,7 +810,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Feb 05, 2013 at 03:36 PM. + Last updated on Feb 05, 2013 at 04:12 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/members.html b/api/external/members.html index c7cbb03..56ed569 100644 --- a/api/external/members.html +++ b/api/external/members.html @@ -1214,7 +1214,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Feb 05, 2013 at 03:36 PM. + Last updated on Feb 05, 2013 at 04:12 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/response.html b/api/external/response.html index 76141d3..27de248 100644 --- a/api/external/response.html +++ b/api/external/response.html @@ -1019,7 +1019,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Feb 05, 2013 at 03:36 PM. + Last updated on Feb 05, 2013 at 04:12 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/searches.html b/api/external/searches.html index dc96a32..09bf572 100644 --- a/api/external/searches.html +++ b/api/external/searches.html @@ -199,7 +199,7 @@ <h1>Searches<a class="headerlink" href="#searches" title="Permalink to this head "name": "Test Search", "criteria": "[\"or\", [\"group\", \"eq\", \"Monthly Newsletter\"],[\"group\", \"eq\", \"Widget Buyers\"]]", "deleted_at": null, - "last_run_at": "@D:2013-02-05T15:36:33", + "last_run_at": "@D:2013-02-05T16:11:59", "active_count": 2, "account_id": 100 } @@ -511,7 +511,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Feb 05, 2013 at 03:36 PM. + Last updated on Feb 05, 2013 at 04:12 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/triggers.html b/api/external/triggers.html index 06b0bac..4116f32 100644 --- a/api/external/triggers.html +++ b/api/external/triggers.html @@ -148,7 +148,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": 203, "push_offset_units": "0:-14:0:0", - "start_ts": "@D:2013-02-05T15:36:31", + "start_ts": "@D:2013-02-05T16:11:57", "trigger_id": 100, "signups": null, "push_offset": "@I:-1209600.0", @@ -189,7 +189,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": null, "push_offset_units": "0:3:0:0", - "start_ts": "@D:2013-02-05T15:36:31", + "start_ts": "@D:2013-02-05T16:11:57", "trigger_id": 101, "signups": [ 1, @@ -326,7 +326,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": 203, "push_offset_units": "0:-14:0:0", - "start_ts": "@D:2013-02-05T15:36:31", + "start_ts": "@D:2013-02-05T16:11:57", "trigger_id": 100, "signups": null, "push_offset": "@I:-1209600.0", @@ -499,7 +499,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Feb 05, 2013 at 03:36 PM. + Last updated on Feb 05, 2013 at 04:12 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/webhooks.html b/api/external/webhooks.html index 7d42524..d530001 100644 --- a/api/external/webhooks.html +++ b/api/external/webhooks.html @@ -487,7 +487,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Feb 05, 2013 at 03:36 PM. + Last updated on Feb 05, 2013 at 04:12 PM. </div> </body> </html> \ No newline at end of file diff --git a/genindex.html b/genindex.html index 40e5ecd..e8f713f 100644 --- a/genindex.html +++ b/genindex.html @@ -146,7 +146,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Feb 05, 2013 at 03:36 PM. + Last updated on Feb 05, 2013 at 04:12 PM. </div> </body> </html> \ No newline at end of file diff --git a/http-routingtable.html b/http-routingtable.html index 3491bd9..c6151c6 100644 --- a/http-routingtable.html +++ b/http-routingtable.html @@ -607,7 +607,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Feb 05, 2013 at 03:36 PM. + Last updated on Feb 05, 2013 at 04:12 PM. </div> </body> </html> \ No newline at end of file diff --git a/index.html b/index.html index f5637b4..ff9fc1c 100644 --- a/index.html +++ b/index.html @@ -325,7 +325,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Feb 05, 2013 at 03:36 PM. + Last updated on Feb 05, 2013 at 04:12 PM. </div> </body> </html> \ No newline at end of file diff --git a/member_search.html b/member_search.html index 1cf8ab7..ce8dbe6 100644 --- a/member_search.html +++ b/member_search.html @@ -256,7 +256,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Feb 05, 2013 at 03:36 PM. + Last updated on Feb 05, 2013 at 04:12 PM. </div> </body> </html> \ No newline at end of file diff --git a/pagination.html b/pagination.html index ce08da8..0a4b29e 100644 --- a/pagination.html +++ b/pagination.html @@ -168,7 +168,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Feb 05, 2013 at 03:36 PM. + Last updated on Feb 05, 2013 at 04:12 PM. </div> </body> </html> \ No newline at end of file diff --git a/php_get_member_example.html b/php_get_member_example.html index 230f4b5..1f0bd82 100644 --- a/php_get_member_example.html +++ b/php_get_member_example.html @@ -183,7 +183,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Feb 05, 2013 at 03:36 PM. + Last updated on Feb 05, 2013 at 04:12 PM. </div> </body> </html> \ No newline at end of file diff --git a/php_signup_example.html b/php_signup_example.html index 295ac9b..141924c 100644 --- a/php_signup_example.html +++ b/php_signup_example.html @@ -205,7 +205,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Feb 05, 2013 at 03:36 PM. + Last updated on Feb 05, 2013 at 04:12 PM. </div> </body> </html> \ No newline at end of file diff --git a/placeholders.html b/placeholders.html index 0cb9930..49793e7 100644 --- a/placeholders.html +++ b/placeholders.html @@ -183,7 +183,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Feb 05, 2013 at 03:36 PM. + Last updated on Feb 05, 2013 at 04:12 PM. </div> </body> </html> \ No newline at end of file diff --git a/search.html b/search.html index f4343f8..fbaf849 100644 --- a/search.html +++ b/search.html @@ -153,7 +153,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Feb 05, 2013 at 03:36 PM. + Last updated on Feb 05, 2013 at 04:12 PM. </div> </body> </html> \ No newline at end of file diff --git a/searchindex.js b/searchindex.js index 5792e76..db6a0ee 100644 --- a/searchindex.js +++ b/searchindex.js @@ -1 +1 @@ -Search.setIndex({objects:{"":{"/#account_id/members/#member_id/groups/remove":[8,1,1,"put--#account_id-members-#member_id-groups-remove"],"/#account_id/mailings/#mailing_id/winner/#winner_id":[9,2,1,"post--#account_id-mailings-#mailing_id-winner-#winner_id"],"/#account_id/response/#mailing_id/in_progress":[5,0,1,"get--#account_id-response-#mailing_id-in_progress"],"/#account_id/members/groups/remove":[8,1,1,"put--#account_id-members-groups-remove"],"/#account_id/mailings/#mailing_id/searches":[9,0,1,"get--#account_id-mailings-#mailing_id-searches"],"/#account_id/fields":[10,2,1,"post--#account_id-fields"],"/#account_id/members/#group_id/copy":[8,1,1,"put--#account_id-members-#group_id-copy"],"/#account_id/members/status":[8,1,1,"put--#account_id-members-status"],"/#account_id/response/#mailing_id/shares/overview":[5,0,1,"get--#account_id-response-#mailing_id-shares-overview"],"/#account_id/webhooks/events":[4,0,1,"get--#account_id-webhooks-events"],"/#account_id/members/#member_id/optout":[8,0,1,"get--#account_id-members-#member_id-optout"],"/#account_id/webhooks":[4,3,1,"delete--#account_id-webhooks"],"/#account_id/fields/#field_id":[10,3,1,"delete--#account_id-fields-#field_id"],"/#account_id/response/#mailing_id":[5,0,1,"get--#account_id-response-#mailing_id"],"/#account_id/groups/#member_group_id/members/remove":[13,3,1,"delete--#account_id-groups-#member_group_id-members-remove"],"/#account_id/searches":[7,2,1,"post--#account_id-searches"],"/#account_id/members/imports":[8,0,1,"get--#account_id-members-imports"],"/#account_id/forwards/#mailing_id/#member_id":[9,2,1,"post--#account_id-forwards-#mailing_id-#member_id"],"/#account_id/response/#mailing_id/customer_share_clicks":[5,0,1,"get--#account_id-response-#mailing_id-customer_share_clicks"],"/#account_id/mailings/#mailing_id/messages/#member_id":[9,0,1,"get--#account_id-mailings-#mailing_id-messages-#member_id"],"/#account_id/members/#member_id/mailings":[8,0,1,"get--#account_id-members-#member_id-mailings"],"/#account_id/groups/#from_group_id/#to_group_id/members/copy":[13,1,1,"put--#account_id-groups-#from_group_id-#to_group_id-members-copy"],"/#account_id/triggers":[14,2,1,"post--#account_id-triggers"],"/#account_id/triggers/#trigger_id":[14,3,1,"delete--#account_id-triggers-#trigger_id"],"/#account_id/members/delete":[8,1,1,"put--#account_id-members-delete"],"/#account_id/mailings/#mailing_id/groups":[9,0,1,"get--#account_id-mailings-#mailing_id-groups"],"/#account_id/response/#mailing_id/forwards":[5,0,1,"get--#account_id-response-#mailing_id-forwards"],"/#account_id/members/#member_id":[8,3,1,"delete--#account_id-members-#member_id"],"/#account_id/triggers/#trigger_id/mailings":[14,0,1,"get--#account_id-triggers-#trigger_id-mailings"],"/#account_id/searches/#search_id/members":[7,0,1,"get--#account_id-searches-#search_id-members"],"/#account_id/members/status/:status_from/to/:status_to":[8,1,1,"put--#account_id-members-status--status_from-to--status_to"],"/#account_id/response/#mailing_id/sends":[5,0,1,"get--#account_id-response-#mailing_id-sends"],"/#account_id/members":[8,3,1,"delete--#account_id-members"],"/#account_id/members/email/:email":[8,0,1,"get--#account_id-members-email--email"],"/#account_id/response/#mailing_id/links":[5,0,1,"get--#account_id-response-#mailing_id-links"],"/#account_id/searches/#search_id":[7,3,1,"delete--#account_id-searches-#search_id"],"/#account_id/members/imports/#import_id/members":[8,0,1,"get--#account_id-members-imports-#import_id-members"],"/#account_id/fields/#field_id/clear":[10,2,1,"post--#account_id-fields-#field_id-clear"],"/#account_id/groups/#member_group_id/members":[13,3,1,"delete--#account_id-groups-#member_group_id-members"],"/#account_id/members/imports/#import_id":[8,0,1,"get--#account_id-members-imports-#import_id"],"/#account_id/response":[5,0,1,"get--#account_id-response"],"/#account_id/response/#mailing_id/opens":[5,0,1,"get--#account_id-response-#mailing_id-opens"],"/#account_id/members/imports/delete":[8,3,1,"delete--#account_id-members-imports-delete"],"/#account_id/mailings":[9,0,1,"get--#account_id-mailings"],"/#account_id/mailings/cancel/#mailing_id":[9,3,1,"delete--#account_id-mailings-cancel-#mailing_id"],"/#account_id/mailings/validate":[9,2,1,"post--#account_id-mailings-validate"],"/#account_id/response/#mailing_id/deliveries":[5,0,1,"get--#account_id-response-#mailing_id-deliveries"],"/#account_id/mailings/#mailing_id/members":[9,0,1,"get--#account_id-mailings-#mailing_id-members"],"/#account_id/response/#share_id/customer_share":[5,0,1,"get--#account_id-response-#share_id-customer_share"],"/#account_id/webhooks/#webhook_id":[4,3,1,"delete--#account_id-webhooks-#webhook_id"],"/#account_id/members/add":[8,2,1,"post--#account_id-members-add"],"/#account_id/members/email/optout/:email":[8,1,1,"put--#account_id-members-email-optout--email"],"/#account_id/response/#mailing_id/optouts":[5,0,1,"get--#account_id-response-#mailing_id-optouts"],"/#account_id/response/#mailing_id/shares":[5,0,1,"get--#account_id-response-#mailing_id-shares"],"/#account_id/groups/#member_group_id":[13,3,1,"delete--#account_id-groups-#member_group_id"],"/#account_id/mailings/#mailing_id":[9,3,1,"delete--#account_id-mailings-#mailing_id"],"/#account_id/members/#member_id/groups":[8,3,1,"delete--#account_id-members-#member_id-groups"],"/#account_id/groups":[13,2,1,"post--#account_id-groups"],"/#account_id/response/#mailing_id/clicks":[5,0,1,"get--#account_id-response-#mailing_id-clicks"],"/#account_id/mailings/#mailing_id/headsup":[9,0,1,"get--#account_id-mailings-#mailing_id-headsup"],"/#account_id/response/#mailing_id/signups":[5,0,1,"get--#account_id-response-#mailing_id-signups"],"/#account_id/response/#mailing_id/customer_shares":[5,0,1,"get--#account_id-response-#mailing_id-customer_shares"]}},terms:{all:[0,1,4,5,8,9,10,11,12,13,14],code:[0,1,6,3],change_typ:8,queri:[0,2,4],month:[0,5,9,14],four:[0,5],mile:0,least:0,field_creat:[12,4],link_target:[5,9],content:[1,11,6,9,3],privat:1,specif:[8,9,4],friendli:5,send:[1,9,4,3,5],customer_share_click:5,those:[5,12],group_upd:[12,4],sent:[5,8,12,9,14],curl_clos:[1,6,3],brown:[7,8],digit:5,everi:0,string:[0,4,5,7,8,9,10,12,13,14],fals:[1,3,4,5,6,7,8,9,10,13,14],webhook:[1,12,4],mailing_status:9,trigger_id:14,webview_share_click:5,affect:[7,8],member_add:[12,4],create_mail:9,new_boolean:10,foo:0,level:1,group_delet:[12,4],list:[0,1,2,4,5,7,8,9,10,11,12,13,14],upload:8,iter:2,"try":8,item:2,plaintext_onli:[9,14],div:[4,5,7,8,9,10,13,14],survey_id:14,pleas:[1,8,11,9],prevent:2,work:[1,4],ten:0,sync:10,sign:[0,5,4],past:1,second:[0,7,14],follow:[0,1,4,5,7,9,11,13],further:1,durat:9,click:[0,4,5,7,8,12,14],append:2,even:10,what:1,hide:[4,5,7,8,9,10,13,14],appear:1,from_group_id:13,section:1,current:[8,12,9],delet:[1,4,7,8,9,10,12,13,14],"new":[1,4,5,7,8,9,10,11,13,14],net:[1,2,6,3],delivery_t:8,method:[5,8,13,4,9],can:[0,1,2,4,5,7,8,9,11,12,13],widget:[7,10,8,9,13],hash:0,datematch:0,displai:10,variat:9,gener:[0,8,12,14],onli:[5,8],here:[0,1,3,5,6,8],bodi:9,let:[1,4,10],address:[0,1,8,6,9],along:8,sinc:8,valu:[0,5,7,8,10,11],field_upd:[12,4],search:[0,1,9,7],survei:14,sender:[9,14],larger:2,queue:5,prior:9,action:[0,8],chang:[8,4],campaign:5,newbi:5,appli:[7,14],prefer:0,myemma:[4,5,7,8,9,13],filenam:8,customer_shar:5,"boolean":[0,1,5,7,8,9,10,13,14],curlopt_postfield:[1,3],total:5,jone:[7,5,8,13],select:10,newslett:[7,8,13],describ:7,would:[0,1],regist:4,two:[0,5],next:[0,1],create_webhook:4,few:[5,8],call:[1,2,3,4,6,8,12],criteria:7,member_add_to_group:[12,4],type:[1,3,4,5,6,7,10,9,14],until:2,more:[0,4,7,8,9,13],peopl:5,relat:[1,8,11,9],about:[10,8,12,4,9],notic:8,thide:[4,5,7,8,9,10,13,14],flag:[5,7,8,10,9,14],exce:2,indic:8,examin:1,particular:[1,4,5,8,10,12,9],in_progress:5,origin:9,must:[0,7,13,10],none:9,endpoint:[1,4,5,7,8,9,10,13,14],join:[0,7],hour:0,setup:1,member_sinc:[0,5,7,8,9,13],uniqu:5,histori:8,soup:7,remain:[0,9],archiv:[5,9],member_optout:[12,4],drill:5,control:[1,11,9],quickstart:1,give:5,forward_mailing_id:5,email_domain:[0,5],share:[0,5,8,12,4],accept:[0,5,7,8,9,10,11,13,14],total_click:5,tag:[11,9],want:[1,12,13,5],occur:[7,12],some_numeric_field:0,delai:14,alwai:0,webhook_event_id:4,cours:1,end:[2,8],first_nam:[1,3,5,7,8,9,10,11,13,14],started_or_finish:[9,14],anoth:[9,13],get:[1,4,5,6,7,8,9,10,13,14],message_open:[12,4],html_bodi:[9,14],share_statu:5,push_offset:14,del_statu:5,tild:5,num_members_upd:8,simpl:0,chri:9,pizza:[7,8],map:0,autent:1,referenc:7,xxxx:6,sundai:0,membership:13,taco:[7,5,8,9,13],mai:12,multipl:[10,8],data:[1,3,4,5,10,12],welcom:11,add_onli:8,"short":0,json_encod:[1,3],optout:[5,8,12,13],num_dupl:8,favorit:10,correspond:[0,1],greet:11,predic:[0,1],issu:[1,10],"12t11":[7,5,8,9,13],combin:7,allow:[0,7,8],some_zipcode_field:0,signed_up:5,order:[5,10],michel:[8,9],mailing_nam:5,checkbox:10,fields_upd:8,over:2,becaus:12,buyer:[7,8,9,13],comma:[9,13],is_dis:14,vari:8,paramet:[2,4,5,7,8,9,10,13,14],widget_typ:10,style:[0,4,5,7,8,9,10,13,14],group:[0,1,3,4,7,8,9,12,13,14],curl_setopt:[1,6,3],how:[7,1,2,4],import_start:8,better:[13,14],platform:1,pend:[1,9],mailing_list:9,onc:9,mail:[0,1,4,5,8,11,12,9,14],hidden:13,main:1,might:[1,4],link_nam:[5,9],them:[8,9],"return":[0,1,4,5,7,8,9,10,12,13,14],greater:[0,8],thei:[0,9],food:10,timestamp:[0,5,12,9,10],spell:4,dai:0,auth:1,instead:[12,2,8],now:5,down:5,term:[0,1],alex:9,name:[0,4,5,7,8,9,10,11,13,14],edit:[7,1,14,10],curl_getinfo:[1,6,3],authent:[1,6,4,3],successufulli:4,separ:[1,9,13],each:[1,2,5,9,12,11,13],found:[8,9,4,14],updat:[4,7,8,9,10,12,13,14],mean:0,status:[8,9],domain:0,shortcut_nam:10,weight:[4,5,7,8,9,10,13,14],resum:9,individu:[1,8,5],hard:[0,5],last_nam:[1,3,5,7,8,9,10,11,13,14],"05t15":[7,5,14],birthdai:[10,14],expect:1,year:[0,5,9,14],our:[1,11,12,4,14],happen:[1,4,5],extract:11,short_display_nam:10,special:[0,7,8,13],out:[0,1,4,5,7,8,10,13],variabl:[1,6,3],message_shar:[12,4],network:[5,12],private_api_kei:[1,6,3],check_multipl:10,categori:1,rel:0,print:6,correct:10,statist:8,benjamin:8,qualifi:11,insid:1,advanc:0,contain:[0,5,7,13,10,9],differ:0,standard:[5,9],status_from:8,base:[5,8],recipient_search:9,dictionari:8,put:[4,7,8,9,10,13,14],"13t23":[7,5,8],visit:11,could:1,omit:5,success:[1,3,7,8,9,13],filter:[0,1,7],search_id:7,pagin:[1,2],member_id:[5,7,8,9,12,13],summari:[1,5],assign:9,first:[0,1,10,5],oper:[0,1,7,14],rang:5,notifi:12,directli:0,curlopt_ssl_verifyp:[1,6,3],curl_init:[1,6,3],number:[5,2,13,3,10],placehold:[1,11],date:[0,5,8,10,11,14],unlik:9,alreadi:[10,8,9,13],done:8,plaintext_pref:[7,8,9,13],oppos:8,open:[0,3,4,5,6,7,8,12],payload:4,fanci:5,size:2,given:[0,8,9,4],"long":10,script:1,associ:[1,8,9,4,5],system:[8,12,4,14],messag:[4,5,8,12,11,9,14],attach:11,friend:11,curlinfo_http_cod:[1,6,3],shell:0,option:[0,5,7,8,9,10,13,14],especi:8,signup:[0,1,3,4,5,8,12,14],copi:[8,13],member_upd:[12,4],specifi:[0,2,7,8,10,11,9,14],curl_exec:[1,6,3],curlopt_httphead:[1,6,3],member_signup:[12,4],create_search:7,part:[0,9],enclos:11,than:[0,1,2,3,12,13],with_plaintext:9,"02t10":[5,8],"02t11":[5,8],"02t13":5,nathan:8,whenev:8,provid:[1,5,8,12,9,14],remov:[12,8,13,4],mailing_start:4,rate:2,structur:7,charact:9,greg:8,trackabl:11,were:5,minut:0,danc:1,error_count:[7,8,9,13],pre:[4,5,7,8,9,10,13,14],cleaner:1,sai:0,share_id:5,signup_form_id:[0,8,12,9,14],plaintext:[5,9,14],pass:[1,3],ani:[0,1,2,7,8,9],have:[0,5,8,12,9],tabl:5,seen:5,"null":[7,8,13,10,9,14],kevin:[9,14],signup_mail:0,caus:14,inform:[1,4,6,8,9,10,13],object_id:14,note:[1,8,9,4],also:[0,4,5,7,8,9,11,13],exampl:[0,1,3,5,6,7,11],take:[0,4],which:[0,1,4,8,10,12,9,14],some_number_field:0,singl:[0,1,3,4,5,8,10,12,13],excit:11,sure:1,delete_memb:13,normal:9,parent_mail:14,recipient_count:[5,9,14],previou:9,field_id:[10,12,14],last_run_at:7,most:14,pair:11,"class":[4,5,7,8,9,10,13,14],member_group_id:[8,9,13],mcconnel:[9,14],url:[1,3,4,5,6,12],mailing_finish:[12,4],clear:10,request:[1,2,3],doe:[0,5,7,8,9,10,13],member_status_upd:[12,4],declar:9,tech:4,determin:1,dataset:10,dow:0,recipi:9,"6db0cc7e6fdb2da589b65f29d90c96b6":9,show:[4,5,7,8,9,10,11,13,14],text:[10,11,12],radiu:0,syntax:[0,1,11,9],radio:10,font:[4,5,7,8,9,10,13,14],fine:9,find:[1,6,5],status_to:8,toast:[7,5,8,13],access:[1,5],giant:12,just:[0,9],pretti:8,column_ord:10,explain:[0,1],winner:9,activ:[1,5,7,8,13,9],figur:1,should:[1,2,3,7,8,11,9],templat:[11,14],share_count:5,count:[1,2,3,5],variou:[8,13],confirmed_opt_in:[7,8,9,13],familiar:1,express:0,account:[1,4,5,7,8,10,13,14],cannot:[8,9,4],progress:9,report:[10,8],requir:[1,7,8,10,11,9],object:[5,13],favorite_food:[5,7,8,13,10,9],bar:0,organ:1,include_archiv:[5,9],"public":1,"default":[5,11,13,4,9],ref_member_id:5,message_share_click:[12,4],through:[1,8,4],where:[0,1,8,11,7],view:1,set:[0,1,2,3,6,8,9,12,13],link_id:[0,5,12,9,14],see:[7,1,8],result:[0,1,2,5,8,9],respons:[0,1,2,4,5,7,8,9,10,13,14],fail:[5,9,4],themselv:2,member_field:[0,7],xxxxx:6,subject:[8,12,9,14],statu:[1,4,5,7,8,9,12,13],fancyonion:11,kei:[0,1,8,11,4],is_schedul:9,message_forward:[12,4],databas:8,user:[0,8,9,13],last_modified_at:[7,8,9,13],addresse:5,written:1,between:[0,7,2],"import":[1,8,12,4,10],subscript:[1,3],entiti:1,curlopt_url:[1,6,3],email:[0,1,3,5,6,7,8,9,13],wide:14,extend:1,numer:10,http404:[4,5,7,8,9,10,13,14],job:13,entir:[0,8],share_click:5,to_group_id:13,curlopt_returntransf:[1,6,3],addit:[0,1,8,9,11,13],member_remove_from_group:[12,4],send_start:[0,9,14],protect:1,accident:2,last:[0,5,10],delimit:5,pertain:5,message_click:[12,4],curlopt_post:[1,3],audienc:[1,8,9],mang:0,http500:14,seri:5,com:[4,5,6,7,8,9,11,13],zip_code_field:0,"03t15":[7,5,8,13],point:1,toni:[7,8],overview:[0,1,11,12,5],period:1,winner_id:9,colon:[7,11],optout_count:[7,8,9,13],suppli:9,cancel:9,tuesdai:0,duplic:5,quit:[5,8],user_id:4,recur:14,headsup:9,addition:[1,2],due:5,been:[1,8,10,5],mark:[8,9],whom:9,tshow:[4,5,7,8,9,10,13,14],trigger:[1,4,5,7,8,9,10,12,13,14],unsubscrib:0,treat:8,interest:[10,4],basic:[0,1,4,8,13,14],monthli:[7,8,13],blob:4,mailing_mailing_id:5,mailing_id:[0,5,8,12,9,14],fire:[8,4,14],xxx:[1,3],argument:[0,5],link_ord:[5,9],input:1,present:7,clicked_uniqu:5,"case":[1,8],look:[1,14,10],frozen:9,easier:12,email_error:[7,8,9,13],defin:[0,10,8,9],"while":0,outcom:5,abov:[0,1,8,7],error:[1,3,6,8,10,13],loop:8,opt:[0,4,5,7,8,13],readi:9,deliv:5,recipient_group:9,equal:0,itself:0,new_statu:12,webhook_id:4,recipient_memb:9,perform:8,make:[1,12,6,10],belong:[0,8,4],same:4,check:[8,6,9],member:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14],handl:1,html:9,split:9,document:[1,11,12],complet:[1,3,4,6,8,9],week:0,finish:[5,12,4],http:[1,2,3,4,5,6,11,9],href:[4,5,7,8,9,10,13,14],nest:0,someon:4,rais:[4,5,7,8,9,10,13,14],initi:[10,9],php:[1,6,3],bob:[7,5],recent:1,kept:11,center:0,min:5,well:5,inherit:9,person:9,mailing_typ:[9,14],without:0,command:1,thi:[0,1,4,5,7,8,9,10,12,13,14],undefin:0,http_code:[1,6,3],latest:11,construct:[0,7,9],identifi:8,paus:9,execut:[1,3],less:0,resp:[4,5,7,8,9,10,13,14],"_post":[1,3],against:0,aspect:13,recipient_email:9,source_filenam:8,yet:5,smith:[7,5,8,9,13],"12t09":[7,8],display_nam:10,easi:[10,12],"01t00":8,had:0,littl:1,blog:4,add:[12,1,8,13,3],other:[1,8,9,3,5],curlopt_userpwd:[1,6,3],import_finish:[8,12,4],schedul:9,els:[1,6,3],save:7,match:[0,7],build:1,sanit:1,applic:[1,6,3],account_id:[1,3,4,5,6,7,8,9,10,12,13,14],disposit:1,crud:[8,13,14],print_r:[6,3],mailing_statu:[9,14],know:[5,4],background:13,parent_mailing_id:[9,14],bit:1,insert:11,emma:[1,5,7,8,9,12,13],like:1,onion:11,deprec:4,arbitrari:8,manual:9,integ:[1,8,14,10,5],public_kei:4,api:[1,2,6,12,3],either:[0,5,7],bunch:0,output:9,group_id:[1,8,12,3],soft:[0,5],manag:[0,1,13,4],import_id:[8,12],www:[5,9],old:7,deal:[8,13],captur:1,arrai:[0,1,3,5,6,7,8,9,10,12,13,14],some:[1,11,5],field_delet:[12,4],certain:12,intern:10,sampl:[1,4,5,7,8,9,10,13,14],elaps:[2,9],home:11,deleted_at:[7,8,13,10,9,14],some_string_field:0,librari:11,bounce_count:[7,8,9,13],confirm:8,broad:12,per:5,send_finish:[9,14],larg:[0,2],condit:7,three:9,network_cod:12,localhost:9,refer:[5,7,8,13,10,9],with_html_bodi:9,who:[0,5],bold:[4,5,7,8,9,10,13,14],event_typ:14,inspect:1,usag:[1,8,12],num_members_ad:8,fulli:11,from:[1,4,8,9,12,13,14],post:[1,3,4,7,8,9,10,12,13,14],group_creat:[12,4],gladi:[7,5,8,13],actual:5,zip:0,groups_upd:8,column:10,page:2,includ:[1,5,7,8,9,10,13],webview:9,disabl:[9,14],block:[1,2],yyyi:5,member_data:[1,3],glob:0,bounc:[0,5],within:0,encod:[9,4],delivery_typ:[5,8],compos:0,webview_shar:5,field_typ:10,active_count:[7,8,9,13],public_webview_url:9,pivot:5,your:[1,4,5,7,8,9,10,13],websit:11,span:[4,5,7,8,9,10,13,14],wai:[1,12],area:1,overus:2,group_nam:[8,12,13,9],support:12,unique_click:5,json:[0,1,3,4,6,7],fast:8,custom:[5,8,11,10],avail:[0,11,4],start:[1,2,8,4],interfac:12,send_at:[9,14],exceed:2,"var":3,interv:[0,14],deliveri:5,head:[1,6,9,3],form:[1,3,4,6,8,10,14],enough:2,forc:1,forward:[0,4,5,8,12,9],"31st":0,group_typ:[8,9,13],push_offset_unit:14,link:[0,4,5,11,9,14],line:[1,5],realli:1,"true":[0,1,2,3,4,6,7,8,9,10,13,14],archived_t:[9,14],info:4,pull:2,made:1,possibl:[5,8,12],whether:8,maximum:2,tell:12,http403:9,record:[0,7,8],below:[0,1,8,12],http400:[7,8,9],limit:[5,2,8,9],some_array_field:0,otherwis:[10,8],start_t:14,mta:5,connect:[6,3],notif:9,creat:[4,5,7,9,10,12,13,14],"int":5,retriev:[7,1,2,8,9],email_us:[0,5],repres:5,exist:[0,4,5,7,8,10,13],behavior:11,curl:[1,6],lentil:7,probabl:14,echo:[1,3],successfulli:[5,8,9],mailing_subject:12,grp:13,todo:11,when:[8,12,4,9],detail:[1,4,7,8,9,10,13],invalid:[7,8,9],event:[4,7,8,13,12,9,14],field:[0,1,3,4,5,7,8,9,10,11,12,13,14],valid:[5,8,9,13],futur:1,num_skip:8,test:[5,6,7,13,9,14],ignor:8,you:[0,1,2,4,5,7,8,9,10,11,12,13],member_delet:[12,4],member_status_id:[7,5,8,9,13],public_api_kei:[1,6,3],stat:[5,9],claus:[0,7],event_nam:[12,4],e2ma:[1,2,6,3],error_messag:8,param:[9,4],app_messag:[1,3],ella:8,bulk:[1,8],receiv:[0,2,5,8,12,9],heads_up_email:9,longer:9,descript:[4,14],portion:0,opted_out:5,time:[1,2,8,13,5],reply_to:[9,14],resource_url:12,hello:[11,9,14]},objtypes:{"0":"http:get","1":"http:put","2":"http:post","3":"http:delete"},titles:["Search Syntax","Emma API","Pagination","PHP Signup Example","Webhooks","Response","PHP Get Member By Email Example","Searches","Members","Mailings","Fields","Placeholder Syntax","Webhook Usage","Groups","Triggers"],objnames:{"0":["http","get","HTTP get"],"1":["http","put","HTTP put"],"2":["http","post","HTTP post"],"3":["http","delete","HTTP delete"]},filenames:["member_search","index","pagination","php_signup_example","api/external/webhooks","api/external/response","php_get_member_example","api/external/searches","api/external/members","api/external/mailings","api/external/fields","placeholders","webhooks","api/external/groups","api/external/triggers"]}) \ No newline at end of file +Search.setIndex({objects:{"":{"/#account_id/members/#member_id/groups/remove":[8,1,1,"put--#account_id-members-#member_id-groups-remove"],"/#account_id/mailings/#mailing_id/winner/#winner_id":[9,2,1,"post--#account_id-mailings-#mailing_id-winner-#winner_id"],"/#account_id/response/#mailing_id/in_progress":[5,0,1,"get--#account_id-response-#mailing_id-in_progress"],"/#account_id/members/groups/remove":[8,1,1,"put--#account_id-members-groups-remove"],"/#account_id/mailings/#mailing_id/searches":[9,0,1,"get--#account_id-mailings-#mailing_id-searches"],"/#account_id/fields":[10,2,1,"post--#account_id-fields"],"/#account_id/members/#group_id/copy":[8,1,1,"put--#account_id-members-#group_id-copy"],"/#account_id/members/status":[8,1,1,"put--#account_id-members-status"],"/#account_id/response/#mailing_id/shares/overview":[5,0,1,"get--#account_id-response-#mailing_id-shares-overview"],"/#account_id/webhooks/events":[4,0,1,"get--#account_id-webhooks-events"],"/#account_id/members/#member_id/optout":[8,0,1,"get--#account_id-members-#member_id-optout"],"/#account_id/webhooks":[4,3,1,"delete--#account_id-webhooks"],"/#account_id/fields/#field_id":[10,3,1,"delete--#account_id-fields-#field_id"],"/#account_id/response/#mailing_id":[5,0,1,"get--#account_id-response-#mailing_id"],"/#account_id/groups/#member_group_id/members/remove":[13,3,1,"delete--#account_id-groups-#member_group_id-members-remove"],"/#account_id/searches":[7,2,1,"post--#account_id-searches"],"/#account_id/members/imports":[8,0,1,"get--#account_id-members-imports"],"/#account_id/forwards/#mailing_id/#member_id":[9,2,1,"post--#account_id-forwards-#mailing_id-#member_id"],"/#account_id/response/#mailing_id/customer_share_clicks":[5,0,1,"get--#account_id-response-#mailing_id-customer_share_clicks"],"/#account_id/mailings/#mailing_id/messages/#member_id":[9,0,1,"get--#account_id-mailings-#mailing_id-messages-#member_id"],"/#account_id/members/#member_id/mailings":[8,0,1,"get--#account_id-members-#member_id-mailings"],"/#account_id/groups/#from_group_id/#to_group_id/members/copy":[13,1,1,"put--#account_id-groups-#from_group_id-#to_group_id-members-copy"],"/#account_id/triggers":[14,2,1,"post--#account_id-triggers"],"/#account_id/triggers/#trigger_id":[14,3,1,"delete--#account_id-triggers-#trigger_id"],"/#account_id/members/delete":[8,1,1,"put--#account_id-members-delete"],"/#account_id/mailings/#mailing_id/groups":[9,0,1,"get--#account_id-mailings-#mailing_id-groups"],"/#account_id/response/#mailing_id/forwards":[5,0,1,"get--#account_id-response-#mailing_id-forwards"],"/#account_id/members/#member_id":[8,3,1,"delete--#account_id-members-#member_id"],"/#account_id/triggers/#trigger_id/mailings":[14,0,1,"get--#account_id-triggers-#trigger_id-mailings"],"/#account_id/searches/#search_id/members":[7,0,1,"get--#account_id-searches-#search_id-members"],"/#account_id/members/status/:status_from/to/:status_to":[8,1,1,"put--#account_id-members-status--status_from-to--status_to"],"/#account_id/response/#mailing_id/sends":[5,0,1,"get--#account_id-response-#mailing_id-sends"],"/#account_id/members":[8,3,1,"delete--#account_id-members"],"/#account_id/members/email/:email":[8,0,1,"get--#account_id-members-email--email"],"/#account_id/response/#mailing_id/links":[5,0,1,"get--#account_id-response-#mailing_id-links"],"/#account_id/searches/#search_id":[7,3,1,"delete--#account_id-searches-#search_id"],"/#account_id/members/imports/#import_id/members":[8,0,1,"get--#account_id-members-imports-#import_id-members"],"/#account_id/fields/#field_id/clear":[10,2,1,"post--#account_id-fields-#field_id-clear"],"/#account_id/groups/#member_group_id/members":[13,3,1,"delete--#account_id-groups-#member_group_id-members"],"/#account_id/members/imports/#import_id":[8,0,1,"get--#account_id-members-imports-#import_id"],"/#account_id/response":[5,0,1,"get--#account_id-response"],"/#account_id/response/#mailing_id/opens":[5,0,1,"get--#account_id-response-#mailing_id-opens"],"/#account_id/members/imports/delete":[8,3,1,"delete--#account_id-members-imports-delete"],"/#account_id/mailings":[9,0,1,"get--#account_id-mailings"],"/#account_id/mailings/cancel/#mailing_id":[9,3,1,"delete--#account_id-mailings-cancel-#mailing_id"],"/#account_id/mailings/validate":[9,2,1,"post--#account_id-mailings-validate"],"/#account_id/response/#mailing_id/deliveries":[5,0,1,"get--#account_id-response-#mailing_id-deliveries"],"/#account_id/mailings/#mailing_id/members":[9,0,1,"get--#account_id-mailings-#mailing_id-members"],"/#account_id/response/#share_id/customer_share":[5,0,1,"get--#account_id-response-#share_id-customer_share"],"/#account_id/webhooks/#webhook_id":[4,3,1,"delete--#account_id-webhooks-#webhook_id"],"/#account_id/members/add":[8,2,1,"post--#account_id-members-add"],"/#account_id/members/email/optout/:email":[8,1,1,"put--#account_id-members-email-optout--email"],"/#account_id/response/#mailing_id/optouts":[5,0,1,"get--#account_id-response-#mailing_id-optouts"],"/#account_id/response/#mailing_id/shares":[5,0,1,"get--#account_id-response-#mailing_id-shares"],"/#account_id/groups/#member_group_id":[13,3,1,"delete--#account_id-groups-#member_group_id"],"/#account_id/mailings/#mailing_id":[9,3,1,"delete--#account_id-mailings-#mailing_id"],"/#account_id/members/#member_id/groups":[8,3,1,"delete--#account_id-members-#member_id-groups"],"/#account_id/groups":[13,2,1,"post--#account_id-groups"],"/#account_id/response/#mailing_id/clicks":[5,0,1,"get--#account_id-response-#mailing_id-clicks"],"/#account_id/mailings/#mailing_id/headsup":[9,0,1,"get--#account_id-mailings-#mailing_id-headsup"],"/#account_id/response/#mailing_id/signups":[5,0,1,"get--#account_id-response-#mailing_id-signups"],"/#account_id/response/#mailing_id/customer_shares":[5,0,1,"get--#account_id-response-#mailing_id-customer_shares"]}},terms:{all:[0,1,4,5,8,9,10,11,12,13,14],code:[0,1,6,3],change_typ:8,queri:[0,2,4],month:[0,5,9,14],four:[0,5],mile:0,least:0,field_creat:[12,4],link_target:[5,9],content:[1,11,6,9,3],privat:1,specif:[8,9,4],friendli:5,send:[1,9,4,3,5],customer_share_click:5,those:[5,12],group_upd:[12,4],sent:[5,8,12,9,14],curl_clos:[1,6,3],brown:[7,8],digit:5,everi:0,string:[0,4,5,7,8,9,10,12,13,14],fals:[1,3,4,5,6,7,8,9,10,13,14],webhook:[1,12,4],mailing_status:9,trigger_id:14,webview_share_click:5,affect:[7,8],member_add:[12,4],create_mail:9,new_boolean:10,foo:0,level:1,group_delet:[12,4],list:[0,1,2,4,5,7,8,9,10,11,12,13,14],upload:8,iter:2,"try":8,item:2,plaintext_onli:[9,14],div:[4,5,7,8,9,10,13,14],survey_id:14,pleas:[1,8,11,9],prevent:2,work:[1,4],ten:0,sync:10,sign:[0,5,4],past:1,second:[0,7,14],follow:[0,1,4,5,7,9,11,13],further:1,durat:9,click:[0,4,5,7,8,12,14],append:2,even:10,what:1,hide:[4,5,7,8,9,10,13,14],appear:1,from_group_id:13,section:1,current:[8,12,9],delet:[1,4,7,8,9,10,12,13,14],"new":[1,4,5,7,8,9,10,11,13,14],net:[1,2,6,3],delivery_t:8,method:[5,8,13,4,9],can:[0,1,2,4,5,7,8,9,11,12,13],widget:[7,10,8,9,13],hash:0,datematch:0,displai:10,variat:9,gener:[0,8,12,14],onli:[5,8],here:[0,1,3,5,6,8],bodi:9,let:[1,4,10],address:[0,1,8,6,9],along:8,sinc:8,valu:[0,5,7,8,10,11],field_upd:[12,4],search:[0,1,9,7],survei:14,sender:[9,14],larger:2,queue:5,prior:9,action:[0,8],chang:[8,4],campaign:5,newbi:5,appli:[7,14],prefer:0,myemma:[4,5,7,8,9,13],filenam:8,customer_shar:5,"boolean":[0,1,5,7,8,9,10,13,14],curlopt_postfield:[1,3],total:5,jone:[7,5,8,13],select:10,newslett:[7,8,13],describ:7,would:[0,1],regist:4,two:[0,5],next:[0,1],create_webhook:4,few:[5,8],call:[1,2,3,4,6,8,12],criteria:7,member_add_to_group:[12,4],type:[1,3,4,5,6,7,10,9,14],until:2,more:[0,4,7,8,9,13],peopl:5,relat:[1,8,11,9],about:[10,8,12,4,9],notic:8,thide:[4,5,7,8,9,10,13,14],flag:[5,7,8,10,9,14],exce:2,indic:8,examin:1,particular:[1,4,5,8,10,12,9],in_progress:5,origin:9,must:[0,7,13,10],none:9,endpoint:[1,4,5,7,8,9,10,13,14],join:[0,7],hour:0,setup:1,member_sinc:[0,5,7,8,9,13],uniqu:5,histori:8,soup:7,remain:[0,9],archiv:[5,9],member_optout:[12,4],drill:5,control:[1,11,9],quickstart:1,give:5,forward_mailing_id:5,email_domain:[0,5],share:[0,5,8,12,4],accept:[0,5,7,8,9,10,11,13,14],total_click:5,tag:[11,9],want:[1,12,13,5],occur:[7,12],some_numeric_field:0,delai:14,alwai:0,webhook_event_id:4,cours:1,end:[2,8],first_nam:[1,3,5,7,8,9,10,11,13,14],started_or_finish:[9,14],anoth:[9,13],get:[1,4,5,6,7,8,9,10,13,14],message_open:[12,4],html_bodi:[9,14],share_statu:5,push_offset:14,del_statu:5,tild:5,num_members_upd:8,simpl:0,chri:9,pizza:[7,8],map:0,autent:1,referenc:7,xxxx:6,sundai:0,membership:13,taco:[7,5,8,9,13],mai:12,multipl:[10,8],data:[1,3,4,5,10,12],welcom:11,add_onli:8,"short":0,json_encod:[1,3],optout:[5,8,12,13],num_dupl:8,favorit:10,correspond:[0,1],greet:11,predic:[0,1],issu:[1,10],"12t11":[7,5,8,9,13],combin:7,allow:[0,7,8],some_zipcode_field:0,signed_up:5,order:[5,10],michel:[8,9],mailing_nam:5,checkbox:10,fields_upd:8,over:2,becaus:12,buyer:[7,8,9,13],comma:[9,13],is_dis:14,vari:8,paramet:[2,4,5,7,8,9,10,13,14],widget_typ:10,style:[0,4,5,7,8,9,10,13,14],group:[0,1,3,4,7,8,9,12,13,14],curl_setopt:[1,6,3],how:[7,1,2,4],import_start:8,better:[13,14],platform:1,pend:[1,9],mailing_list:9,curlopt_ssl_verifyp:[1,6,3],mail:[0,1,4,5,8,11,12,9,14],hidden:13,main:1,might:[1,4],link_nam:[5,9],them:[8,9],"return":[0,1,4,5,7,8,9,10,12,13,14],greater:[0,8],thei:[0,9],food:10,timestamp:[0,5,12,9,10],spell:4,dai:0,auth:1,instead:[12,2,8],now:5,down:5,term:[0,1],alex:9,name:[0,4,5,7,8,9,10,11,13,14],edit:[7,1,14,10],curl_getinfo:[1,6,3],authent:[1,6,4,3],successufulli:4,separ:[1,9,13],each:[1,2,5,9,12,11,13],found:[8,9,4,14],updat:[4,7,8,9,10,12,13,14],mean:0,status:[8,9],domain:0,shortcut_nam:10,weight:[4,5,7,8,9,10,13,14],resum:9,individu:[1,8,5],hard:[0,5],last_nam:[1,3,5,7,8,9,10,11,13,14],"05t15":5,"05t16":[7,14],expect:1,year:[0,5,9,14],our:[1,11,12,4,14],happen:[1,4,5],extract:11,short_display_nam:10,special:[0,7,8,13],out:[0,1,4,5,7,8,10,13],variabl:[1,6,3],message_shar:[12,4],network:[5,12],private_api_kei:[1,6,3],check_multipl:10,categori:1,rel:0,print:6,correct:10,statist:8,benjamin:8,qualifi:11,insid:1,advanc:0,contain:[0,5,7,13,10,9],differ:0,standard:[5,9],status_from:8,base:[5,8],recipient_search:9,dictionari:8,put:[4,7,8,9,10,13,14],"13t23":[7,5,8],visit:11,could:1,omit:5,success:[1,3,7,8,9,13],filter:[0,1,7],search_id:7,pagin:[1,2],member_id:[5,7,8,9,12,13],summari:[1,5],assign:9,first:[0,1,10,5],oper:[0,1,7,14],rang:5,notifi:12,directli:0,onc:9,curl_init:[1,6,3],number:[5,2,13,3,10],placehold:[1,11],date:[0,5,8,10,11,14],unlik:9,alreadi:[10,8,9,13],done:8,plaintext_pref:[7,8,9,13],oppos:8,open:[0,3,4,5,6,7,8,12],payload:4,fanci:5,size:2,given:[0,8,9,4],"long":10,script:1,associ:[1,8,9,4,5],system:[8,12,4,14],messag:[4,5,8,12,11,9,14],attach:11,friend:11,curlinfo_http_cod:[1,6,3],shell:0,option:[0,5,7,8,9,10,13,14],especi:8,signup:[0,1,3,4,5,8,12,14],copi:[8,13],member_upd:[12,4],specifi:[0,2,7,8,10,11,9,14],curl_exec:[1,6,3],curlopt_httphead:[1,6,3],member_signup:[12,4],create_search:7,part:[0,9],enclos:11,than:[0,1,2,3,12,13],with_plaintext:9,"02t10":[5,8],"02t11":[5,8],"02t13":5,nathan:8,whenev:8,provid:[1,5,8,12,9,14],remov:[12,8,13,4],mailing_start:4,rate:2,structur:7,charact:9,greg:8,trackabl:11,were:5,minut:0,danc:1,error_count:[7,8,9,13],pre:[4,5,7,8,9,10,13,14],cleaner:1,sai:0,share_id:5,signup_form_id:[0,8,12,9,14],plaintext:[5,9,14],pass:[1,3],ani:[0,1,2,7,8,9],have:[0,5,8,12,9],tabl:5,seen:5,"null":[7,8,13,10,9,14],kevin:[9,14],signup_mail:0,caus:14,inform:[1,4,6,8,9,10,13],object_id:14,note:[1,8,9,4],also:[0,4,5,7,8,9,11,13],exampl:[0,1,3,5,6,7,11],take:[0,4],which:[0,1,4,8,10,12,9,14],some_number_field:0,singl:[0,1,3,4,5,8,10,12,13],excit:11,sure:1,delete_memb:13,normal:9,parent_mail:14,recipient_count:[5,9,14],previou:9,field_id:[10,12,14],last_run_at:7,most:14,pair:11,"class":[4,5,7,8,9,10,13,14],member_group_id:[8,9,13],mcconnel:[9,14],url:[1,3,4,5,6,12],mailing_finish:[12,4],clear:10,request:[1,2,3],doe:[0,5,7,8,9,10,13],member_status_upd:[12,4],declar:9,tech:4,determin:1,dataset:10,dow:0,recipi:9,"6db0cc7e6fdb2da589b65f29d90c96b6":9,show:[4,5,7,8,9,10,11,13,14],text:[10,11,12],radiu:0,syntax:[0,1,11,9],radio:10,font:[4,5,7,8,9,10,13,14],fine:9,find:[1,6,5],status_to:8,toast:[7,5,8,13],access:[1,5],giant:12,just:[0,9],pretti:8,column_ord:10,explain:[0,1],winner:9,activ:[1,5,7,8,13,9],figur:1,birthdai:[10,14],should:[1,2,3,7,8,11,9],templat:[11,14],share_count:5,count:[1,2,3,5],variou:[8,13],confirmed_opt_in:[7,8,9,13],familiar:1,express:0,account:[1,4,5,7,8,10,13,14],cannot:[8,9,4],progress:9,report:[10,8],requir:[1,7,8,10,11,9],object:[5,13],favorite_food:[5,7,8,13,10,9],bar:0,organ:1,include_archiv:[5,9],"public":1,"default":[5,11,13,4,9],ref_member_id:5,message_share_click:[12,4],through:[1,8,4],where:[0,1,8,11,7],view:1,set:[0,1,2,3,6,8,9,12,13],link_id:[0,5,12,9,14],see:[7,1,8],result:[0,1,2,5,8,9],respons:[0,1,2,4,5,7,8,9,10,13,14],fail:[5,9,4],themselv:2,member_field:[0,7],xxxxx:6,subject:[8,12,9,14],statu:[1,4,5,7,8,9,12,13],fancyonion:11,kei:[0,1,8,11,4],is_schedul:9,message_forward:[12,4],databas:8,user:[0,8,9,13],last_modified_at:[7,8,9,13],addresse:5,written:1,between:[0,7,2],"import":[1,8,12,4,10],subscript:[1,3],entiti:1,curlopt_url:[1,6,3],email:[0,1,3,5,6,7,8,9,13],wide:14,extend:1,numer:10,http404:[4,5,7,8,9,10,13,14],job:13,entir:[0,8],share_click:5,to_group_id:13,curlopt_returntransf:[1,6,3],addit:[0,1,8,9,11,13],member_remove_from_group:[12,4],send_start:[0,9,14],protect:1,accident:2,last:[0,5,10],delimit:5,pertain:5,message_click:[12,4],curlopt_post:[1,3],audienc:[1,8,9],mang:0,http500:14,seri:5,com:[4,5,6,7,8,9,11,13],zip_code_field:0,"03t15":[7,5,8,13],point:1,toni:[7,8],overview:[0,1,11,12,5],period:1,winner_id:9,colon:[7,11],optout_count:[7,8,9,13],suppli:9,cancel:9,tuesdai:0,duplic:5,quit:[5,8],user_id:4,recur:14,headsup:9,addition:[1,2],due:5,been:[1,8,10,5],mark:[8,9],whom:9,tshow:[4,5,7,8,9,10,13,14],trigger:[1,4,5,7,8,9,10,12,13,14],unsubscrib:0,treat:8,interest:[10,4],basic:[0,1,4,8,13,14],monthli:[7,8,13],blob:4,mailing_mailing_id:5,mailing_id:[0,5,8,12,9,14],fire:[8,4,14],xxx:[1,3],argument:[0,5],link_ord:[5,9],input:1,present:7,clicked_uniqu:5,"case":[1,8],look:[1,14,10],frozen:9,easier:12,email_error:[7,8,9,13],defin:[0,10,8,9],"while":0,outcom:5,abov:[0,1,8,7],error:[1,3,6,8,10,13],loop:8,opt:[0,4,5,7,8,13],readi:9,deliv:5,recipient_group:9,equal:0,itself:0,new_statu:12,webhook_id:4,recipient_memb:9,perform:8,make:[1,12,6,10],belong:[0,8,4],same:4,check:[8,6,9],member:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14],handl:1,html:9,split:9,document:[1,11,12],complet:[1,3,4,6,8,9],week:0,finish:[5,12,4],http:[1,2,3,4,5,6,11,9],href:[4,5,7,8,9,10,13,14],nest:0,someon:4,rais:[4,5,7,8,9,10,13,14],initi:[10,9],php:[1,6,3],bob:[7,5],recent:1,kept:11,center:0,min:5,well:5,inherit:9,person:9,mailing_typ:[9,14],without:0,command:1,thi:[0,1,4,5,7,8,9,10,12,13,14],undefin:0,http_code:[1,6,3],latest:11,construct:[0,7,9],identifi:8,paus:9,execut:[1,3],less:0,resp:[4,5,7,8,9,10,13,14],"_post":[1,3],against:0,aspect:13,recipient_email:9,source_filenam:8,yet:5,smith:[7,5,8,9,13],"12t09":[7,8],display_nam:10,easi:[10,12],"01t00":8,had:0,littl:1,blog:4,add:[12,1,8,13,3],other:[1,8,9,3,5],curlopt_userpwd:[1,6,3],import_finish:[8,12,4],schedul:9,els:[1,6,3],save:7,match:[0,7],build:1,sanit:1,applic:[1,6,3],account_id:[1,3,4,5,6,7,8,9,10,12,13,14],disposit:1,crud:[8,13,14],print_r:[6,3],mailing_statu:[9,14],know:[5,4],background:13,parent_mailing_id:[9,14],bit:1,insert:11,emma:[1,5,7,8,9,12,13],like:1,onion:11,deprec:4,arbitrari:8,manual:9,integ:[1,8,14,10,5],public_kei:4,api:[1,2,6,12,3],either:[0,5,7],bunch:0,output:9,group_id:[1,8,12,3],soft:[0,5],manag:[0,1,13,4],import_id:[8,12],www:[5,9],old:7,deal:[8,13],captur:1,arrai:[0,1,3,5,6,7,8,9,10,12,13,14],some:[1,11,5],field_delet:[12,4],certain:12,intern:10,sampl:[1,4,5,7,8,9,10,13,14],elaps:[2,9],home:11,deleted_at:[7,8,13,10,9,14],some_string_field:0,librari:11,bounce_count:[7,8,9,13],confirm:8,broad:12,per:5,send_finish:[9,14],larg:[0,2],condit:7,three:9,network_cod:12,localhost:9,refer:[5,7,8,13,10,9],with_html_bodi:9,who:[0,5],bold:[4,5,7,8,9,10,13,14],event_typ:14,inspect:1,usag:[1,8,12],num_members_ad:8,fulli:11,from:[1,4,8,9,12,13,14],post:[1,3,4,7,8,9,10,12,13,14],group_creat:[12,4],gladi:[7,5,8,13],actual:5,zip:0,groups_upd:8,column:10,page:2,includ:[1,5,7,8,9,10,13],webview:9,disabl:[9,14],block:[1,2],yyyi:5,member_data:[1,3],glob:0,bounc:[0,5],within:0,encod:[9,4],delivery_typ:[5,8],compos:0,webview_shar:5,field_typ:10,active_count:[7,8,9,13],public_webview_url:9,pivot:5,your:[1,4,5,7,8,9,10,13],websit:11,span:[4,5,7,8,9,10,13,14],wai:[1,12],area:1,overus:2,group_nam:[8,12,13,9],support:12,unique_click:5,json:[0,1,3,4,6,7],fast:8,custom:[5,8,11,10],avail:[0,11,4],start:[1,2,8,4],interfac:12,send_at:[9,14],exceed:2,"var":3,interv:[0,14],deliveri:5,head:[1,6,9,3],form:[1,3,4,6,8,10,14],enough:2,forc:1,forward:[0,4,5,8,12,9],"31st":0,group_typ:[8,9,13],push_offset_unit:14,link:[0,4,5,11,9,14],line:[1,5],realli:1,"true":[0,1,2,3,4,6,7,8,9,10,13,14],archived_t:[9,14],info:4,pull:2,made:1,possibl:[5,8,12],whether:8,maximum:2,tell:12,http403:9,record:[0,7,8],below:[0,1,8,12],http400:[7,8,9],limit:[5,2,8,9],some_array_field:0,otherwis:[10,8],start_t:14,mta:5,connect:[6,3],notif:9,creat:[4,5,7,9,10,12,13,14],"int":5,retriev:[7,1,2,8,9],email_us:[0,5],repres:5,exist:[0,4,5,7,8,10,13],behavior:11,curl:[1,6],lentil:7,probabl:14,echo:[1,3],successfulli:[5,8,9],mailing_subject:12,grp:13,todo:11,when:[8,12,4,9],detail:[1,4,7,8,9,10,13],invalid:[7,8,9],event:[4,7,8,13,12,9,14],field:[0,1,3,4,5,7,8,9,10,11,12,13,14],valid:[5,8,9,13],futur:1,num_skip:8,test:[5,6,7,13,9,14],ignor:8,you:[0,1,2,4,5,7,8,9,10,11,12,13],member_delet:[12,4],member_status_id:[7,5,8,9,13],public_api_kei:[1,6,3],stat:[5,9],claus:[0,7],event_nam:[12,4],e2ma:[1,2,6,3],error_messag:8,param:[9,4],app_messag:[1,3],ella:8,bulk:[1,8],receiv:[0,2,5,8,12,9],heads_up_email:9,longer:9,descript:[4,14],portion:0,opted_out:5,time:[1,2,8,13,5],reply_to:[9,14],resource_url:12,hello:[11,9,14]},objtypes:{"0":"http:get","1":"http:put","2":"http:post","3":"http:delete"},titles:["Search Syntax","Emma API","Pagination","PHP Signup Example","Webhooks","Response","PHP Get Member By Email Example","Searches","Members","Mailings","Fields","Placeholder Syntax","Webhook Usage","Groups","Triggers"],objnames:{"0":["http","get","HTTP get"],"1":["http","put","HTTP put"],"2":["http","post","HTTP post"],"3":["http","delete","HTTP delete"]},filenames:["member_search","index","pagination","php_signup_example","api/external/webhooks","api/external/response","php_get_member_example","api/external/searches","api/external/members","api/external/mailings","api/external/fields","placeholders","webhooks","api/external/groups","api/external/triggers"]}) \ No newline at end of file diff --git a/webhooks.html b/webhooks.html index a818d6f..d65df74 100644 --- a/webhooks.html +++ b/webhooks.html @@ -507,7 +507,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Feb 05, 2013 at 03:36 PM. + Last updated on Feb 05, 2013 at 04:12 PM. </div> </body> </html> \ No newline at end of file From f6d5a06f43c7b9b8e1a74da28b6f64b393019b38 Mon Sep 17 00:00:00 2001 From: Hernan Ciudad <hernan@myemma.com> Date: Tue, 19 Feb 2013 11:41:52 -0600 Subject: [PATCH 030/219] Update audience documentation. --- _sources/index.txt | 37 ++++++++++++++++++------------------- api/external/fields.html | 2 +- api/external/groups.html | 2 +- api/external/mailings.html | 2 +- api/external/members.html | 11 +++++++---- api/external/response.html | 2 +- api/external/searches.html | 4 ++-- api/external/triggers.html | 8 ++++---- api/external/webhooks.html | 2 +- genindex.html | 2 +- http-routingtable.html | 2 +- index.html | 5 ++--- member_search.html | 2 +- pagination.html | 2 +- php_get_member_example.html | 2 +- php_signup_example.html | 2 +- placeholders.html | 2 +- search.html | 2 +- searchindex.js | 2 +- webhooks.html | 2 +- 20 files changed, 48 insertions(+), 47 deletions(-) diff --git a/_sources/index.txt b/_sources/index.txt index 6f54024..00f12df 100644 --- a/_sources/index.txt +++ b/_sources/index.txt @@ -11,8 +11,7 @@ to the following areas: * importing, editing, deleting * organizing members into groups * searching for members -* Sending mailings - * sending to individuals, groups and searches +* Mailings * viewing past mailings * controlling the status of pending mailings * Retrieving response @@ -22,11 +21,11 @@ to the following areas: Quickstart ---------- -Let's start by building some PHP code that will add a member to our audience. +Let's start by building some PHP code that will add a member to our audience. -First, you'll want to figure out how to authenticate. All calls require HTTP -Basic Auth autentication. Inside your Emma account, in the "Account Settings" -section, you'll find your API keys. There's a public key and a private key and +First, you'll want to figure out how to authenticate. All calls require HTTP +Basic Auth autentication. Inside your Emma account, in the "Account Settings" +section, you'll find your API keys. There's a public key and a private key and an account ID. It should look like this. .. image:: images/api_keys.jpg @@ -49,7 +48,7 @@ Then, we'll want to capture the POSTed form variables from the request. $first_name = $_POST['first_name']; $last_name = $_POST['last_name']; $groups = array(123456, 654321); - + // Member data other than email should be passed in an array called "fields" $member_data = array( "email" => $email, @@ -61,12 +60,12 @@ Then, we'll want to capture the POSTed form variables from the request. ); Please note that the ``group_ids`` to which the member will be added are passed -as an array of integers. Of course, you'll want to make sure you sanitize any of +as an array of integers. Of course, you'll want to make sure you sanitize any of these form inputs to protect your application. -Let's set the URL for the API call. The endpoint for all of our API calls is -https://api.e2ma.net/. In this case, we're using the endpoint that -corresponds to adding a single member. There's a separate call for adding bulk +Let's set the URL for the API call. The endpoint for all of our API calls is +https://api.e2ma.net/. In this case, we're using the endpoint that +corresponds to adding a single member. There's a separate call for adding bulk members. .. code-block:: php @@ -74,7 +73,7 @@ members. // Set URL $url = "https://api.e2ma.net/".$account_id."/members/add"; -Next, we'll do a little dance with cURL that I'm sure is familiar. I'll +Next, we'll do a little dance with cURL that I'm sure is familiar. I'll explain some particulars below the code block. .. code-block:: php @@ -93,8 +92,8 @@ explain some particulars below the code block. $http_code = curl_getinfo($ch, CURLINFO_HTTP_CODE); curl_close($ch); -On line 3 is where we use the public/private keys to authenticate our call. -On lines 6-7, we force the API call to make its request in JSON and expect +On line 3 is where we use the public/private keys to authenticate our call. +On lines 6-7, we force the API call to make its request in JSON and expect JSON in return. At this point, the API call has been made.We might want to inspect the @@ -112,14 +111,14 @@ you can examine to determine a request's disposition. echo $app_message; -You can :doc:`see the complete PHP script here <php_signup_example>`. +You can :doc:`see the complete PHP script here <php_signup_example>`. Additionally, there's a PHP example to :doc:`get members using their email address <php_get_member_example>`. -To extend this example further, one could make the API call associate the -new member with a particular signup form. As written above, the member would -be added to the audience but would not appear in the "recent activity" type -searches or really any searches related to signups. We are working on a +To extend this example further, one could make the API call associate the +new member with a particular signup form. As written above, the member would +be added to the audience but would not appear in the "recent activity" type +searches or really any searches related to signups. We are working on a cleaner way to handle this signup form issue in the future. diff --git a/api/external/fields.html b/api/external/fields.html index de9adac..c834909 100644 --- a/api/external/fields.html +++ b/api/external/fields.html @@ -415,7 +415,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Feb 05, 2013 at 04:12 PM. + Last updated on Feb 19, 2013 at 11:41 AM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/groups.html b/api/external/groups.html index 4fc2e19..338625d 100644 --- a/api/external/groups.html +++ b/api/external/groups.html @@ -702,7 +702,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Feb 05, 2013 at 04:12 PM. + Last updated on Feb 19, 2013 at 11:41 AM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/mailings.html b/api/external/mailings.html index 20fb792..1490960 100644 --- a/api/external/mailings.html +++ b/api/external/mailings.html @@ -810,7 +810,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Feb 05, 2013 at 04:12 PM. + Last updated on Feb 19, 2013 at 11:41 AM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/members.html b/api/external/members.html index 56ed569..7ecb655 100644 --- a/api/external/members.html +++ b/api/external/members.html @@ -488,10 +488,13 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli <tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> <li><strong>email</strong> (<em>string</em>) – Email address of member to add or update</li> <li><strong>fields</strong> (<em>dictionary</em>) – Names and values of user-defined fields to update</li> -<li><strong>group_ids</strong> (<em>integer</em>) – Optional. Add imported members to this list of groups.</li> -<li><strong>signup_form_id</strong> – Optional. Indicate that this member used a particular signup form. +<li><strong>group_ids</strong> (<em>array of integers</em>) – Optional. Add imported members to this list of groups.</li> +<li><strong>signup_form_id</strong> (<em>integer</em>) – <p>Optional. Indicate that this member used a particular signup form. This is important if you have custom confirmation messages for a particular signup form and -so that signup-based triggers will be fired.</li> +so that signup-based triggers will be fired.</p> +<p><em>Note: Members who are added to your audience using this API call will not appear +in “recent activity” searches within your account.</em></p> +</li> </ul> </td> </tr> @@ -1214,7 +1217,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Feb 05, 2013 at 04:12 PM. + Last updated on Feb 19, 2013 at 11:41 AM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/response.html b/api/external/response.html index 27de248..695d4e3 100644 --- a/api/external/response.html +++ b/api/external/response.html @@ -1019,7 +1019,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Feb 05, 2013 at 04:12 PM. + Last updated on Feb 19, 2013 at 11:41 AM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/searches.html b/api/external/searches.html index 09bf572..722b792 100644 --- a/api/external/searches.html +++ b/api/external/searches.html @@ -199,7 +199,7 @@ <h1>Searches<a class="headerlink" href="#searches" title="Permalink to this head "name": "Test Search", "criteria": "[\"or\", [\"group\", \"eq\", \"Monthly Newsletter\"],[\"group\", \"eq\", \"Widget Buyers\"]]", "deleted_at": null, - "last_run_at": "@D:2013-02-05T16:11:59", + "last_run_at": "@D:2013-02-19T11:41:47", "active_count": 2, "account_id": 100 } @@ -511,7 +511,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Feb 05, 2013 at 04:12 PM. + Last updated on Feb 19, 2013 at 11:41 AM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/triggers.html b/api/external/triggers.html index 4116f32..2c26ec4 100644 --- a/api/external/triggers.html +++ b/api/external/triggers.html @@ -148,7 +148,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": 203, "push_offset_units": "0:-14:0:0", - "start_ts": "@D:2013-02-05T16:11:57", + "start_ts": "@D:2013-02-19T11:41:45", "trigger_id": 100, "signups": null, "push_offset": "@I:-1209600.0", @@ -189,7 +189,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": null, "push_offset_units": "0:3:0:0", - "start_ts": "@D:2013-02-05T16:11:57", + "start_ts": "@D:2013-02-19T11:41:45", "trigger_id": 101, "signups": [ 1, @@ -326,7 +326,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": 203, "push_offset_units": "0:-14:0:0", - "start_ts": "@D:2013-02-05T16:11:57", + "start_ts": "@D:2013-02-19T11:41:45", "trigger_id": 100, "signups": null, "push_offset": "@I:-1209600.0", @@ -499,7 +499,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Feb 05, 2013 at 04:12 PM. + Last updated on Feb 19, 2013 at 11:41 AM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/webhooks.html b/api/external/webhooks.html index d530001..6fe4b9a 100644 --- a/api/external/webhooks.html +++ b/api/external/webhooks.html @@ -487,7 +487,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Feb 05, 2013 at 04:12 PM. + Last updated on Feb 19, 2013 at 11:41 AM. </div> </body> </html> \ No newline at end of file diff --git a/genindex.html b/genindex.html index e8f713f..7ca145c 100644 --- a/genindex.html +++ b/genindex.html @@ -146,7 +146,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Feb 05, 2013 at 04:12 PM. + Last updated on Feb 19, 2013 at 11:41 AM. </div> </body> </html> \ No newline at end of file diff --git a/http-routingtable.html b/http-routingtable.html index c6151c6..86bfde9 100644 --- a/http-routingtable.html +++ b/http-routingtable.html @@ -607,7 +607,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Feb 05, 2013 at 04:12 PM. + Last updated on Feb 19, 2013 at 11:41 AM. </div> </body> </html> \ No newline at end of file diff --git a/index.html b/index.html index ff9fc1c..8c67d99 100644 --- a/index.html +++ b/index.html @@ -116,9 +116,8 @@ <h2>Overview<a class="headerlink" href="#overview" title="Permalink to this head </dl> </li> <li><dl class="first docutils"> -<dt>Sending mailings</dt> +<dt>Mailings</dt> <dd><ul class="first last simple"> -<li>sending to individuals, groups and searches</li> <li>viewing past mailings</li> <li>controlling the status of pending mailings</li> </ul> @@ -325,7 +324,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Feb 05, 2013 at 04:12 PM. + Last updated on Feb 19, 2013 at 11:41 AM. </div> </body> </html> \ No newline at end of file diff --git a/member_search.html b/member_search.html index ce8dbe6..699cd25 100644 --- a/member_search.html +++ b/member_search.html @@ -256,7 +256,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Feb 05, 2013 at 04:12 PM. + Last updated on Feb 19, 2013 at 11:41 AM. </div> </body> </html> \ No newline at end of file diff --git a/pagination.html b/pagination.html index 0a4b29e..73c825a 100644 --- a/pagination.html +++ b/pagination.html @@ -168,7 +168,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Feb 05, 2013 at 04:12 PM. + Last updated on Feb 19, 2013 at 11:41 AM. </div> </body> </html> \ No newline at end of file diff --git a/php_get_member_example.html b/php_get_member_example.html index 1f0bd82..b574f55 100644 --- a/php_get_member_example.html +++ b/php_get_member_example.html @@ -183,7 +183,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Feb 05, 2013 at 04:12 PM. + Last updated on Feb 19, 2013 at 11:41 AM. </div> </body> </html> \ No newline at end of file diff --git a/php_signup_example.html b/php_signup_example.html index 141924c..866e778 100644 --- a/php_signup_example.html +++ b/php_signup_example.html @@ -205,7 +205,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Feb 05, 2013 at 04:12 PM. + Last updated on Feb 19, 2013 at 11:41 AM. </div> </body> </html> \ No newline at end of file diff --git a/placeholders.html b/placeholders.html index 49793e7..a2f68be 100644 --- a/placeholders.html +++ b/placeholders.html @@ -183,7 +183,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Feb 05, 2013 at 04:12 PM. + Last updated on Feb 19, 2013 at 11:41 AM. </div> </body> </html> \ No newline at end of file diff --git a/search.html b/search.html index fbaf849..492cd1d 100644 --- a/search.html +++ b/search.html @@ -153,7 +153,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Feb 05, 2013 at 04:12 PM. + Last updated on Feb 19, 2013 at 11:41 AM. </div> </body> </html> \ No newline at end of file diff --git a/searchindex.js b/searchindex.js index db6a0ee..ccb63d1 100644 --- a/searchindex.js +++ b/searchindex.js @@ -1 +1 @@ -Search.setIndex({objects:{"":{"/#account_id/members/#member_id/groups/remove":[8,1,1,"put--#account_id-members-#member_id-groups-remove"],"/#account_id/mailings/#mailing_id/winner/#winner_id":[9,2,1,"post--#account_id-mailings-#mailing_id-winner-#winner_id"],"/#account_id/response/#mailing_id/in_progress":[5,0,1,"get--#account_id-response-#mailing_id-in_progress"],"/#account_id/members/groups/remove":[8,1,1,"put--#account_id-members-groups-remove"],"/#account_id/mailings/#mailing_id/searches":[9,0,1,"get--#account_id-mailings-#mailing_id-searches"],"/#account_id/fields":[10,2,1,"post--#account_id-fields"],"/#account_id/members/#group_id/copy":[8,1,1,"put--#account_id-members-#group_id-copy"],"/#account_id/members/status":[8,1,1,"put--#account_id-members-status"],"/#account_id/response/#mailing_id/shares/overview":[5,0,1,"get--#account_id-response-#mailing_id-shares-overview"],"/#account_id/webhooks/events":[4,0,1,"get--#account_id-webhooks-events"],"/#account_id/members/#member_id/optout":[8,0,1,"get--#account_id-members-#member_id-optout"],"/#account_id/webhooks":[4,3,1,"delete--#account_id-webhooks"],"/#account_id/fields/#field_id":[10,3,1,"delete--#account_id-fields-#field_id"],"/#account_id/response/#mailing_id":[5,0,1,"get--#account_id-response-#mailing_id"],"/#account_id/groups/#member_group_id/members/remove":[13,3,1,"delete--#account_id-groups-#member_group_id-members-remove"],"/#account_id/searches":[7,2,1,"post--#account_id-searches"],"/#account_id/members/imports":[8,0,1,"get--#account_id-members-imports"],"/#account_id/forwards/#mailing_id/#member_id":[9,2,1,"post--#account_id-forwards-#mailing_id-#member_id"],"/#account_id/response/#mailing_id/customer_share_clicks":[5,0,1,"get--#account_id-response-#mailing_id-customer_share_clicks"],"/#account_id/mailings/#mailing_id/messages/#member_id":[9,0,1,"get--#account_id-mailings-#mailing_id-messages-#member_id"],"/#account_id/members/#member_id/mailings":[8,0,1,"get--#account_id-members-#member_id-mailings"],"/#account_id/groups/#from_group_id/#to_group_id/members/copy":[13,1,1,"put--#account_id-groups-#from_group_id-#to_group_id-members-copy"],"/#account_id/triggers":[14,2,1,"post--#account_id-triggers"],"/#account_id/triggers/#trigger_id":[14,3,1,"delete--#account_id-triggers-#trigger_id"],"/#account_id/members/delete":[8,1,1,"put--#account_id-members-delete"],"/#account_id/mailings/#mailing_id/groups":[9,0,1,"get--#account_id-mailings-#mailing_id-groups"],"/#account_id/response/#mailing_id/forwards":[5,0,1,"get--#account_id-response-#mailing_id-forwards"],"/#account_id/members/#member_id":[8,3,1,"delete--#account_id-members-#member_id"],"/#account_id/triggers/#trigger_id/mailings":[14,0,1,"get--#account_id-triggers-#trigger_id-mailings"],"/#account_id/searches/#search_id/members":[7,0,1,"get--#account_id-searches-#search_id-members"],"/#account_id/members/status/:status_from/to/:status_to":[8,1,1,"put--#account_id-members-status--status_from-to--status_to"],"/#account_id/response/#mailing_id/sends":[5,0,1,"get--#account_id-response-#mailing_id-sends"],"/#account_id/members":[8,3,1,"delete--#account_id-members"],"/#account_id/members/email/:email":[8,0,1,"get--#account_id-members-email--email"],"/#account_id/response/#mailing_id/links":[5,0,1,"get--#account_id-response-#mailing_id-links"],"/#account_id/searches/#search_id":[7,3,1,"delete--#account_id-searches-#search_id"],"/#account_id/members/imports/#import_id/members":[8,0,1,"get--#account_id-members-imports-#import_id-members"],"/#account_id/fields/#field_id/clear":[10,2,1,"post--#account_id-fields-#field_id-clear"],"/#account_id/groups/#member_group_id/members":[13,3,1,"delete--#account_id-groups-#member_group_id-members"],"/#account_id/members/imports/#import_id":[8,0,1,"get--#account_id-members-imports-#import_id"],"/#account_id/response":[5,0,1,"get--#account_id-response"],"/#account_id/response/#mailing_id/opens":[5,0,1,"get--#account_id-response-#mailing_id-opens"],"/#account_id/members/imports/delete":[8,3,1,"delete--#account_id-members-imports-delete"],"/#account_id/mailings":[9,0,1,"get--#account_id-mailings"],"/#account_id/mailings/cancel/#mailing_id":[9,3,1,"delete--#account_id-mailings-cancel-#mailing_id"],"/#account_id/mailings/validate":[9,2,1,"post--#account_id-mailings-validate"],"/#account_id/response/#mailing_id/deliveries":[5,0,1,"get--#account_id-response-#mailing_id-deliveries"],"/#account_id/mailings/#mailing_id/members":[9,0,1,"get--#account_id-mailings-#mailing_id-members"],"/#account_id/response/#share_id/customer_share":[5,0,1,"get--#account_id-response-#share_id-customer_share"],"/#account_id/webhooks/#webhook_id":[4,3,1,"delete--#account_id-webhooks-#webhook_id"],"/#account_id/members/add":[8,2,1,"post--#account_id-members-add"],"/#account_id/members/email/optout/:email":[8,1,1,"put--#account_id-members-email-optout--email"],"/#account_id/response/#mailing_id/optouts":[5,0,1,"get--#account_id-response-#mailing_id-optouts"],"/#account_id/response/#mailing_id/shares":[5,0,1,"get--#account_id-response-#mailing_id-shares"],"/#account_id/groups/#member_group_id":[13,3,1,"delete--#account_id-groups-#member_group_id"],"/#account_id/mailings/#mailing_id":[9,3,1,"delete--#account_id-mailings-#mailing_id"],"/#account_id/members/#member_id/groups":[8,3,1,"delete--#account_id-members-#member_id-groups"],"/#account_id/groups":[13,2,1,"post--#account_id-groups"],"/#account_id/response/#mailing_id/clicks":[5,0,1,"get--#account_id-response-#mailing_id-clicks"],"/#account_id/mailings/#mailing_id/headsup":[9,0,1,"get--#account_id-mailings-#mailing_id-headsup"],"/#account_id/response/#mailing_id/signups":[5,0,1,"get--#account_id-response-#mailing_id-signups"],"/#account_id/response/#mailing_id/customer_shares":[5,0,1,"get--#account_id-response-#mailing_id-customer_shares"]}},terms:{all:[0,1,4,5,8,9,10,11,12,13,14],code:[0,1,6,3],change_typ:8,queri:[0,2,4],month:[0,5,9,14],four:[0,5],mile:0,least:0,field_creat:[12,4],link_target:[5,9],content:[1,11,6,9,3],privat:1,specif:[8,9,4],friendli:5,send:[1,9,4,3,5],customer_share_click:5,those:[5,12],group_upd:[12,4],sent:[5,8,12,9,14],curl_clos:[1,6,3],brown:[7,8],digit:5,everi:0,string:[0,4,5,7,8,9,10,12,13,14],fals:[1,3,4,5,6,7,8,9,10,13,14],webhook:[1,12,4],mailing_status:9,trigger_id:14,webview_share_click:5,affect:[7,8],member_add:[12,4],create_mail:9,new_boolean:10,foo:0,level:1,group_delet:[12,4],list:[0,1,2,4,5,7,8,9,10,11,12,13,14],upload:8,iter:2,"try":8,item:2,plaintext_onli:[9,14],div:[4,5,7,8,9,10,13,14],survey_id:14,pleas:[1,8,11,9],prevent:2,work:[1,4],ten:0,sync:10,sign:[0,5,4],past:1,second:[0,7,14],follow:[0,1,4,5,7,9,11,13],further:1,durat:9,click:[0,4,5,7,8,12,14],append:2,even:10,what:1,hide:[4,5,7,8,9,10,13,14],appear:1,from_group_id:13,section:1,current:[8,12,9],delet:[1,4,7,8,9,10,12,13,14],"new":[1,4,5,7,8,9,10,11,13,14],net:[1,2,6,3],delivery_t:8,method:[5,8,13,4,9],can:[0,1,2,4,5,7,8,9,11,12,13],widget:[7,10,8,9,13],hash:0,datematch:0,displai:10,variat:9,gener:[0,8,12,14],onli:[5,8],here:[0,1,3,5,6,8],bodi:9,let:[1,4,10],address:[0,1,8,6,9],along:8,sinc:8,valu:[0,5,7,8,10,11],field_upd:[12,4],search:[0,1,9,7],survei:14,sender:[9,14],larger:2,queue:5,prior:9,action:[0,8],chang:[8,4],campaign:5,newbi:5,appli:[7,14],prefer:0,myemma:[4,5,7,8,9,13],filenam:8,customer_shar:5,"boolean":[0,1,5,7,8,9,10,13,14],curlopt_postfield:[1,3],total:5,jone:[7,5,8,13],select:10,newslett:[7,8,13],describ:7,would:[0,1],regist:4,two:[0,5],next:[0,1],create_webhook:4,few:[5,8],call:[1,2,3,4,6,8,12],criteria:7,member_add_to_group:[12,4],type:[1,3,4,5,6,7,10,9,14],until:2,more:[0,4,7,8,9,13],peopl:5,relat:[1,8,11,9],about:[10,8,12,4,9],notic:8,thide:[4,5,7,8,9,10,13,14],flag:[5,7,8,10,9,14],exce:2,indic:8,examin:1,particular:[1,4,5,8,10,12,9],in_progress:5,origin:9,must:[0,7,13,10],none:9,endpoint:[1,4,5,7,8,9,10,13,14],join:[0,7],hour:0,setup:1,member_sinc:[0,5,7,8,9,13],uniqu:5,histori:8,soup:7,remain:[0,9],archiv:[5,9],member_optout:[12,4],drill:5,control:[1,11,9],quickstart:1,give:5,forward_mailing_id:5,email_domain:[0,5],share:[0,5,8,12,4],accept:[0,5,7,8,9,10,11,13,14],total_click:5,tag:[11,9],want:[1,12,13,5],occur:[7,12],some_numeric_field:0,delai:14,alwai:0,webhook_event_id:4,cours:1,end:[2,8],first_nam:[1,3,5,7,8,9,10,11,13,14],started_or_finish:[9,14],anoth:[9,13],get:[1,4,5,6,7,8,9,10,13,14],message_open:[12,4],html_bodi:[9,14],share_statu:5,push_offset:14,del_statu:5,tild:5,num_members_upd:8,simpl:0,chri:9,pizza:[7,8],map:0,autent:1,referenc:7,xxxx:6,sundai:0,membership:13,taco:[7,5,8,9,13],mai:12,multipl:[10,8],data:[1,3,4,5,10,12],welcom:11,add_onli:8,"short":0,json_encod:[1,3],optout:[5,8,12,13],num_dupl:8,favorit:10,correspond:[0,1],greet:11,predic:[0,1],issu:[1,10],"12t11":[7,5,8,9,13],combin:7,allow:[0,7,8],some_zipcode_field:0,signed_up:5,order:[5,10],michel:[8,9],mailing_nam:5,checkbox:10,fields_upd:8,over:2,becaus:12,buyer:[7,8,9,13],comma:[9,13],is_dis:14,vari:8,paramet:[2,4,5,7,8,9,10,13,14],widget_typ:10,style:[0,4,5,7,8,9,10,13,14],group:[0,1,3,4,7,8,9,12,13,14],curl_setopt:[1,6,3],how:[7,1,2,4],import_start:8,better:[13,14],platform:1,pend:[1,9],mailing_list:9,curlopt_ssl_verifyp:[1,6,3],mail:[0,1,4,5,8,11,12,9,14],hidden:13,main:1,might:[1,4],link_nam:[5,9],them:[8,9],"return":[0,1,4,5,7,8,9,10,12,13,14],greater:[0,8],thei:[0,9],food:10,timestamp:[0,5,12,9,10],spell:4,dai:0,auth:1,instead:[12,2,8],now:5,down:5,term:[0,1],alex:9,name:[0,4,5,7,8,9,10,11,13,14],edit:[7,1,14,10],curl_getinfo:[1,6,3],authent:[1,6,4,3],successufulli:4,separ:[1,9,13],each:[1,2,5,9,12,11,13],found:[8,9,4,14],updat:[4,7,8,9,10,12,13,14],mean:0,status:[8,9],domain:0,shortcut_nam:10,weight:[4,5,7,8,9,10,13,14],resum:9,individu:[1,8,5],hard:[0,5],last_nam:[1,3,5,7,8,9,10,11,13,14],"05t15":5,"05t16":[7,14],expect:1,year:[0,5,9,14],our:[1,11,12,4,14],happen:[1,4,5],extract:11,short_display_nam:10,special:[0,7,8,13],out:[0,1,4,5,7,8,10,13],variabl:[1,6,3],message_shar:[12,4],network:[5,12],private_api_kei:[1,6,3],check_multipl:10,categori:1,rel:0,print:6,correct:10,statist:8,benjamin:8,qualifi:11,insid:1,advanc:0,contain:[0,5,7,13,10,9],differ:0,standard:[5,9],status_from:8,base:[5,8],recipient_search:9,dictionari:8,put:[4,7,8,9,10,13,14],"13t23":[7,5,8],visit:11,could:1,omit:5,success:[1,3,7,8,9,13],filter:[0,1,7],search_id:7,pagin:[1,2],member_id:[5,7,8,9,12,13],summari:[1,5],assign:9,first:[0,1,10,5],oper:[0,1,7,14],rang:5,notifi:12,directli:0,onc:9,curl_init:[1,6,3],number:[5,2,13,3,10],placehold:[1,11],date:[0,5,8,10,11,14],unlik:9,alreadi:[10,8,9,13],done:8,plaintext_pref:[7,8,9,13],oppos:8,open:[0,3,4,5,6,7,8,12],payload:4,fanci:5,size:2,given:[0,8,9,4],"long":10,script:1,associ:[1,8,9,4,5],system:[8,12,4,14],messag:[4,5,8,12,11,9,14],attach:11,friend:11,curlinfo_http_cod:[1,6,3],shell:0,option:[0,5,7,8,9,10,13,14],especi:8,signup:[0,1,3,4,5,8,12,14],copi:[8,13],member_upd:[12,4],specifi:[0,2,7,8,10,11,9,14],curl_exec:[1,6,3],curlopt_httphead:[1,6,3],member_signup:[12,4],create_search:7,part:[0,9],enclos:11,than:[0,1,2,3,12,13],with_plaintext:9,"02t10":[5,8],"02t11":[5,8],"02t13":5,nathan:8,whenev:8,provid:[1,5,8,12,9,14],remov:[12,8,13,4],mailing_start:4,rate:2,structur:7,charact:9,greg:8,trackabl:11,were:5,minut:0,danc:1,error_count:[7,8,9,13],pre:[4,5,7,8,9,10,13,14],cleaner:1,sai:0,share_id:5,signup_form_id:[0,8,12,9,14],plaintext:[5,9,14],pass:[1,3],ani:[0,1,2,7,8,9],have:[0,5,8,12,9],tabl:5,seen:5,"null":[7,8,13,10,9,14],kevin:[9,14],signup_mail:0,caus:14,inform:[1,4,6,8,9,10,13],object_id:14,note:[1,8,9,4],also:[0,4,5,7,8,9,11,13],exampl:[0,1,3,5,6,7,11],take:[0,4],which:[0,1,4,8,10,12,9,14],some_number_field:0,singl:[0,1,3,4,5,8,10,12,13],excit:11,sure:1,delete_memb:13,normal:9,parent_mail:14,recipient_count:[5,9,14],previou:9,field_id:[10,12,14],last_run_at:7,most:14,pair:11,"class":[4,5,7,8,9,10,13,14],member_group_id:[8,9,13],mcconnel:[9,14],url:[1,3,4,5,6,12],mailing_finish:[12,4],clear:10,request:[1,2,3],doe:[0,5,7,8,9,10,13],member_status_upd:[12,4],declar:9,tech:4,determin:1,dataset:10,dow:0,recipi:9,"6db0cc7e6fdb2da589b65f29d90c96b6":9,show:[4,5,7,8,9,10,11,13,14],text:[10,11,12],radiu:0,syntax:[0,1,11,9],radio:10,font:[4,5,7,8,9,10,13,14],fine:9,find:[1,6,5],status_to:8,toast:[7,5,8,13],access:[1,5],giant:12,just:[0,9],pretti:8,column_ord:10,explain:[0,1],winner:9,activ:[1,5,7,8,13,9],figur:1,birthdai:[10,14],should:[1,2,3,7,8,11,9],templat:[11,14],share_count:5,count:[1,2,3,5],variou:[8,13],confirmed_opt_in:[7,8,9,13],familiar:1,express:0,account:[1,4,5,7,8,10,13,14],cannot:[8,9,4],progress:9,report:[10,8],requir:[1,7,8,10,11,9],object:[5,13],favorite_food:[5,7,8,13,10,9],bar:0,organ:1,include_archiv:[5,9],"public":1,"default":[5,11,13,4,9],ref_member_id:5,message_share_click:[12,4],through:[1,8,4],where:[0,1,8,11,7],view:1,set:[0,1,2,3,6,8,9,12,13],link_id:[0,5,12,9,14],see:[7,1,8],result:[0,1,2,5,8,9],respons:[0,1,2,4,5,7,8,9,10,13,14],fail:[5,9,4],themselv:2,member_field:[0,7],xxxxx:6,subject:[8,12,9,14],statu:[1,4,5,7,8,9,12,13],fancyonion:11,kei:[0,1,8,11,4],is_schedul:9,message_forward:[12,4],databas:8,user:[0,8,9,13],last_modified_at:[7,8,9,13],addresse:5,written:1,between:[0,7,2],"import":[1,8,12,4,10],subscript:[1,3],entiti:1,curlopt_url:[1,6,3],email:[0,1,3,5,6,7,8,9,13],wide:14,extend:1,numer:10,http404:[4,5,7,8,9,10,13,14],job:13,entir:[0,8],share_click:5,to_group_id:13,curlopt_returntransf:[1,6,3],addit:[0,1,8,9,11,13],member_remove_from_group:[12,4],send_start:[0,9,14],protect:1,accident:2,last:[0,5,10],delimit:5,pertain:5,message_click:[12,4],curlopt_post:[1,3],audienc:[1,8,9],mang:0,http500:14,seri:5,com:[4,5,6,7,8,9,11,13],zip_code_field:0,"03t15":[7,5,8,13],point:1,toni:[7,8],overview:[0,1,11,12,5],period:1,winner_id:9,colon:[7,11],optout_count:[7,8,9,13],suppli:9,cancel:9,tuesdai:0,duplic:5,quit:[5,8],user_id:4,recur:14,headsup:9,addition:[1,2],due:5,been:[1,8,10,5],mark:[8,9],whom:9,tshow:[4,5,7,8,9,10,13,14],trigger:[1,4,5,7,8,9,10,12,13,14],unsubscrib:0,treat:8,interest:[10,4],basic:[0,1,4,8,13,14],monthli:[7,8,13],blob:4,mailing_mailing_id:5,mailing_id:[0,5,8,12,9,14],fire:[8,4,14],xxx:[1,3],argument:[0,5],link_ord:[5,9],input:1,present:7,clicked_uniqu:5,"case":[1,8],look:[1,14,10],frozen:9,easier:12,email_error:[7,8,9,13],defin:[0,10,8,9],"while":0,outcom:5,abov:[0,1,8,7],error:[1,3,6,8,10,13],loop:8,opt:[0,4,5,7,8,13],readi:9,deliv:5,recipient_group:9,equal:0,itself:0,new_statu:12,webhook_id:4,recipient_memb:9,perform:8,make:[1,12,6,10],belong:[0,8,4],same:4,check:[8,6,9],member:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14],handl:1,html:9,split:9,document:[1,11,12],complet:[1,3,4,6,8,9],week:0,finish:[5,12,4],http:[1,2,3,4,5,6,11,9],href:[4,5,7,8,9,10,13,14],nest:0,someon:4,rais:[4,5,7,8,9,10,13,14],initi:[10,9],php:[1,6,3],bob:[7,5],recent:1,kept:11,center:0,min:5,well:5,inherit:9,person:9,mailing_typ:[9,14],without:0,command:1,thi:[0,1,4,5,7,8,9,10,12,13,14],undefin:0,http_code:[1,6,3],latest:11,construct:[0,7,9],identifi:8,paus:9,execut:[1,3],less:0,resp:[4,5,7,8,9,10,13,14],"_post":[1,3],against:0,aspect:13,recipient_email:9,source_filenam:8,yet:5,smith:[7,5,8,9,13],"12t09":[7,8],display_nam:10,easi:[10,12],"01t00":8,had:0,littl:1,blog:4,add:[12,1,8,13,3],other:[1,8,9,3,5],curlopt_userpwd:[1,6,3],import_finish:[8,12,4],schedul:9,els:[1,6,3],save:7,match:[0,7],build:1,sanit:1,applic:[1,6,3],account_id:[1,3,4,5,6,7,8,9,10,12,13,14],disposit:1,crud:[8,13,14],print_r:[6,3],mailing_statu:[9,14],know:[5,4],background:13,parent_mailing_id:[9,14],bit:1,insert:11,emma:[1,5,7,8,9,12,13],like:1,onion:11,deprec:4,arbitrari:8,manual:9,integ:[1,8,14,10,5],public_kei:4,api:[1,2,6,12,3],either:[0,5,7],bunch:0,output:9,group_id:[1,8,12,3],soft:[0,5],manag:[0,1,13,4],import_id:[8,12],www:[5,9],old:7,deal:[8,13],captur:1,arrai:[0,1,3,5,6,7,8,9,10,12,13,14],some:[1,11,5],field_delet:[12,4],certain:12,intern:10,sampl:[1,4,5,7,8,9,10,13,14],elaps:[2,9],home:11,deleted_at:[7,8,13,10,9,14],some_string_field:0,librari:11,bounce_count:[7,8,9,13],confirm:8,broad:12,per:5,send_finish:[9,14],larg:[0,2],condit:7,three:9,network_cod:12,localhost:9,refer:[5,7,8,13,10,9],with_html_bodi:9,who:[0,5],bold:[4,5,7,8,9,10,13,14],event_typ:14,inspect:1,usag:[1,8,12],num_members_ad:8,fulli:11,from:[1,4,8,9,12,13,14],post:[1,3,4,7,8,9,10,12,13,14],group_creat:[12,4],gladi:[7,5,8,13],actual:5,zip:0,groups_upd:8,column:10,page:2,includ:[1,5,7,8,9,10,13],webview:9,disabl:[9,14],block:[1,2],yyyi:5,member_data:[1,3],glob:0,bounc:[0,5],within:0,encod:[9,4],delivery_typ:[5,8],compos:0,webview_shar:5,field_typ:10,active_count:[7,8,9,13],public_webview_url:9,pivot:5,your:[1,4,5,7,8,9,10,13],websit:11,span:[4,5,7,8,9,10,13,14],wai:[1,12],area:1,overus:2,group_nam:[8,12,13,9],support:12,unique_click:5,json:[0,1,3,4,6,7],fast:8,custom:[5,8,11,10],avail:[0,11,4],start:[1,2,8,4],interfac:12,send_at:[9,14],exceed:2,"var":3,interv:[0,14],deliveri:5,head:[1,6,9,3],form:[1,3,4,6,8,10,14],enough:2,forc:1,forward:[0,4,5,8,12,9],"31st":0,group_typ:[8,9,13],push_offset_unit:14,link:[0,4,5,11,9,14],line:[1,5],realli:1,"true":[0,1,2,3,4,6,7,8,9,10,13,14],archived_t:[9,14],info:4,pull:2,made:1,possibl:[5,8,12],whether:8,maximum:2,tell:12,http403:9,record:[0,7,8],below:[0,1,8,12],http400:[7,8,9],limit:[5,2,8,9],some_array_field:0,otherwis:[10,8],start_t:14,mta:5,connect:[6,3],notif:9,creat:[4,5,7,9,10,12,13,14],"int":5,retriev:[7,1,2,8,9],email_us:[0,5],repres:5,exist:[0,4,5,7,8,10,13],behavior:11,curl:[1,6],lentil:7,probabl:14,echo:[1,3],successfulli:[5,8,9],mailing_subject:12,grp:13,todo:11,when:[8,12,4,9],detail:[1,4,7,8,9,10,13],invalid:[7,8,9],event:[4,7,8,13,12,9,14],field:[0,1,3,4,5,7,8,9,10,11,12,13,14],valid:[5,8,9,13],futur:1,num_skip:8,test:[5,6,7,13,9,14],ignor:8,you:[0,1,2,4,5,7,8,9,10,11,12,13],member_delet:[12,4],member_status_id:[7,5,8,9,13],public_api_kei:[1,6,3],stat:[5,9],claus:[0,7],event_nam:[12,4],e2ma:[1,2,6,3],error_messag:8,param:[9,4],app_messag:[1,3],ella:8,bulk:[1,8],receiv:[0,2,5,8,12,9],heads_up_email:9,longer:9,descript:[4,14],portion:0,opted_out:5,time:[1,2,8,13,5],reply_to:[9,14],resource_url:12,hello:[11,9,14]},objtypes:{"0":"http:get","1":"http:put","2":"http:post","3":"http:delete"},titles:["Search Syntax","Emma API","Pagination","PHP Signup Example","Webhooks","Response","PHP Get Member By Email Example","Searches","Members","Mailings","Fields","Placeholder Syntax","Webhook Usage","Groups","Triggers"],objnames:{"0":["http","get","HTTP get"],"1":["http","put","HTTP put"],"2":["http","post","HTTP post"],"3":["http","delete","HTTP delete"]},filenames:["member_search","index","pagination","php_signup_example","api/external/webhooks","api/external/response","php_get_member_example","api/external/searches","api/external/members","api/external/mailings","api/external/fields","placeholders","webhooks","api/external/groups","api/external/triggers"]}) \ No newline at end of file +Search.setIndex({objects:{"":{"/#account_id/members/#member_id/groups/remove":[8,1,1,"put--#account_id-members-#member_id-groups-remove"],"/#account_id/mailings/#mailing_id/winner/#winner_id":[9,2,1,"post--#account_id-mailings-#mailing_id-winner-#winner_id"],"/#account_id/response/#mailing_id/in_progress":[5,0,1,"get--#account_id-response-#mailing_id-in_progress"],"/#account_id/members/groups/remove":[8,1,1,"put--#account_id-members-groups-remove"],"/#account_id/mailings/#mailing_id/searches":[9,0,1,"get--#account_id-mailings-#mailing_id-searches"],"/#account_id/fields":[10,2,1,"post--#account_id-fields"],"/#account_id/members/#group_id/copy":[8,1,1,"put--#account_id-members-#group_id-copy"],"/#account_id/members/status":[8,1,1,"put--#account_id-members-status"],"/#account_id/response/#mailing_id/shares/overview":[5,0,1,"get--#account_id-response-#mailing_id-shares-overview"],"/#account_id/webhooks/events":[4,0,1,"get--#account_id-webhooks-events"],"/#account_id/members/#member_id/optout":[8,0,1,"get--#account_id-members-#member_id-optout"],"/#account_id/webhooks":[4,3,1,"delete--#account_id-webhooks"],"/#account_id/fields/#field_id":[10,3,1,"delete--#account_id-fields-#field_id"],"/#account_id/response/#mailing_id":[5,0,1,"get--#account_id-response-#mailing_id"],"/#account_id/groups/#member_group_id/members/remove":[13,3,1,"delete--#account_id-groups-#member_group_id-members-remove"],"/#account_id/searches":[7,2,1,"post--#account_id-searches"],"/#account_id/members/imports":[8,0,1,"get--#account_id-members-imports"],"/#account_id/forwards/#mailing_id/#member_id":[9,2,1,"post--#account_id-forwards-#mailing_id-#member_id"],"/#account_id/response/#mailing_id/customer_share_clicks":[5,0,1,"get--#account_id-response-#mailing_id-customer_share_clicks"],"/#account_id/mailings/#mailing_id/messages/#member_id":[9,0,1,"get--#account_id-mailings-#mailing_id-messages-#member_id"],"/#account_id/members/#member_id/mailings":[8,0,1,"get--#account_id-members-#member_id-mailings"],"/#account_id/groups/#from_group_id/#to_group_id/members/copy":[13,1,1,"put--#account_id-groups-#from_group_id-#to_group_id-members-copy"],"/#account_id/triggers":[14,2,1,"post--#account_id-triggers"],"/#account_id/triggers/#trigger_id":[14,3,1,"delete--#account_id-triggers-#trigger_id"],"/#account_id/members/delete":[8,1,1,"put--#account_id-members-delete"],"/#account_id/mailings/#mailing_id/groups":[9,0,1,"get--#account_id-mailings-#mailing_id-groups"],"/#account_id/response/#mailing_id/forwards":[5,0,1,"get--#account_id-response-#mailing_id-forwards"],"/#account_id/members/#member_id":[8,3,1,"delete--#account_id-members-#member_id"],"/#account_id/triggers/#trigger_id/mailings":[14,0,1,"get--#account_id-triggers-#trigger_id-mailings"],"/#account_id/searches/#search_id/members":[7,0,1,"get--#account_id-searches-#search_id-members"],"/#account_id/members/status/:status_from/to/:status_to":[8,1,1,"put--#account_id-members-status--status_from-to--status_to"],"/#account_id/response/#mailing_id/sends":[5,0,1,"get--#account_id-response-#mailing_id-sends"],"/#account_id/members":[8,3,1,"delete--#account_id-members"],"/#account_id/members/email/:email":[8,0,1,"get--#account_id-members-email--email"],"/#account_id/response/#mailing_id/links":[5,0,1,"get--#account_id-response-#mailing_id-links"],"/#account_id/searches/#search_id":[7,3,1,"delete--#account_id-searches-#search_id"],"/#account_id/members/imports/#import_id/members":[8,0,1,"get--#account_id-members-imports-#import_id-members"],"/#account_id/fields/#field_id/clear":[10,2,1,"post--#account_id-fields-#field_id-clear"],"/#account_id/groups/#member_group_id/members":[13,3,1,"delete--#account_id-groups-#member_group_id-members"],"/#account_id/members/imports/#import_id":[8,0,1,"get--#account_id-members-imports-#import_id"],"/#account_id/response":[5,0,1,"get--#account_id-response"],"/#account_id/response/#mailing_id/opens":[5,0,1,"get--#account_id-response-#mailing_id-opens"],"/#account_id/members/imports/delete":[8,3,1,"delete--#account_id-members-imports-delete"],"/#account_id/mailings":[9,0,1,"get--#account_id-mailings"],"/#account_id/mailings/cancel/#mailing_id":[9,3,1,"delete--#account_id-mailings-cancel-#mailing_id"],"/#account_id/mailings/validate":[9,2,1,"post--#account_id-mailings-validate"],"/#account_id/response/#mailing_id/deliveries":[5,0,1,"get--#account_id-response-#mailing_id-deliveries"],"/#account_id/mailings/#mailing_id/members":[9,0,1,"get--#account_id-mailings-#mailing_id-members"],"/#account_id/response/#share_id/customer_share":[5,0,1,"get--#account_id-response-#share_id-customer_share"],"/#account_id/webhooks/#webhook_id":[4,3,1,"delete--#account_id-webhooks-#webhook_id"],"/#account_id/members/add":[8,2,1,"post--#account_id-members-add"],"/#account_id/members/email/optout/:email":[8,1,1,"put--#account_id-members-email-optout--email"],"/#account_id/response/#mailing_id/optouts":[5,0,1,"get--#account_id-response-#mailing_id-optouts"],"/#account_id/response/#mailing_id/shares":[5,0,1,"get--#account_id-response-#mailing_id-shares"],"/#account_id/groups/#member_group_id":[13,3,1,"delete--#account_id-groups-#member_group_id"],"/#account_id/mailings/#mailing_id":[9,3,1,"delete--#account_id-mailings-#mailing_id"],"/#account_id/members/#member_id/groups":[8,3,1,"delete--#account_id-members-#member_id-groups"],"/#account_id/groups":[13,2,1,"post--#account_id-groups"],"/#account_id/response/#mailing_id/clicks":[5,0,1,"get--#account_id-response-#mailing_id-clicks"],"/#account_id/mailings/#mailing_id/headsup":[9,0,1,"get--#account_id-mailings-#mailing_id-headsup"],"/#account_id/response/#mailing_id/signups":[5,0,1,"get--#account_id-response-#mailing_id-signups"],"/#account_id/response/#mailing_id/customer_shares":[5,0,1,"get--#account_id-response-#mailing_id-customer_shares"]}},terms:{all:[0,1,4,5,8,9,10,11,12,13,14],code:[0,1,6,3],change_typ:8,queri:[0,2,4],month:[0,5,9,14],four:[0,5],mile:0,least:0,field_creat:[12,4],link_target:[5,9],content:[1,11,6,9,3],privat:1,specif:[8,9,4],friendli:5,send:[1,9,4,3,5],customer_share_click:5,those:[5,12],group_upd:[12,4],sent:[5,8,12,9,14],curl_clos:[1,6,3],brown:[7,8],digit:5,everi:0,string:[0,4,5,7,8,9,10,12,13,14],fals:[1,3,4,5,6,7,8,9,10,13,14],webhook:[1,12,4],mailing_status:9,trigger_id:14,webview_share_click:5,affect:[7,8],member_add:[12,4],create_mail:9,new_boolean:10,foo:0,level:1,group_delet:[12,4],list:[0,1,2,4,5,7,8,9,10,11,12,13,14],upload:8,iter:2,"try":8,item:2,plaintext_onli:[9,14],div:[4,5,7,8,9,10,13,14],survey_id:14,pleas:[1,8,11,9],prevent:2,work:[1,4],ten:0,sync:10,sign:[0,5,4],past:1,second:[0,7,14],follow:[0,1,4,5,7,9,11,13],further:1,durat:9,click:[0,4,5,7,8,12,14],append:2,even:10,what:1,hide:[4,5,7,8,9,10,13,14],appear:[1,8],from_group_id:13,section:1,current:[8,12,9],delet:[1,4,7,8,9,10,12,13,14],"new":[1,4,5,7,8,9,10,11,13,14],net:[1,2,6,3],delivery_t:8,method:[5,8,13,4,9],can:[0,1,2,4,5,7,8,9,11,12,13],widget:[7,10,8,9,13],hash:0,datematch:0,displai:10,variat:9,gener:[0,8,12,14],onli:[5,8],here:[0,1,3,5,6,8],bodi:9,let:[1,4,10],address:[0,1,8,6,9],along:8,sinc:8,valu:[0,5,7,8,10,11],field_upd:[12,4],search:[0,1,8,9,7],survei:14,sender:[9,14],larger:2,queue:5,prior:9,action:[0,8],chang:[8,4],campaign:5,newbi:5,appli:[7,14],prefer:0,myemma:[4,5,7,8,9,13],filenam:8,customer_shar:5,"boolean":[0,1,5,7,8,9,10,13,14],curlopt_postfield:[1,3],total:5,jone:[7,5,8,13],select:10,newslett:[7,8,13],describ:7,would:[0,1],regist:4,two:[0,5],next:[0,1],create_webhook:4,few:[5,8],call:[1,2,3,4,6,8,12],criteria:7,member_add_to_group:[12,4],type:[1,3,4,5,6,7,10,9,14],until:2,more:[0,4,7,8,9,13],peopl:5,relat:[1,8,11,9],about:[10,8,12,4,9],notic:8,thide:[4,5,7,8,9,10,13,14],flag:[5,7,8,10,9,14],exce:2,indic:8,examin:1,particular:[1,4,5,8,10,12,9],in_progress:5,origin:9,must:[0,7,13,10],none:9,endpoint:[1,4,5,7,8,9,10,13,14],join:[0,7],hour:0,setup:1,member_sinc:[0,5,7,8,9,13],uniqu:5,histori:8,soup:7,remain:[0,9],archiv:[5,9],member_optout:[12,4],drill:5,control:[1,11,9],quickstart:1,give:5,forward_mailing_id:5,email_domain:[0,5],share:[0,5,8,12,4],accept:[0,5,7,8,9,10,11,13,14],total_click:5,tag:[11,9],want:[1,12,13,5],occur:[7,12],some_numeric_field:0,delai:14,alwai:0,webhook_event_id:4,cours:1,end:[2,8],first_nam:[1,3,5,7,8,9,10,11,13,14],started_or_finish:[9,14],anoth:[9,13],get:[1,4,5,6,7,8,9,10,13,14],message_open:[12,4],html_bodi:[9,14],share_statu:5,push_offset:14,del_statu:5,tild:5,num_members_upd:8,simpl:0,chri:9,pizza:[7,8],map:0,autent:1,referenc:7,xxxx:6,sundai:0,membership:13,taco:[7,5,8,9,13],mai:12,multipl:[10,8],data:[1,3,4,5,10,12],welcom:11,add_onli:8,"short":0,json_encod:[1,3],optout:[5,8,12,13],num_dupl:8,favorit:10,correspond:[0,1],greet:11,predic:[0,1],issu:[1,10],"12t11":[7,5,8,9,13],combin:7,allow:[0,7,8],some_zipcode_field:0,signed_up:5,order:[5,10],michel:[8,9],mailing_nam:5,checkbox:10,fields_upd:8,over:2,becaus:12,buyer:[7,8,9,13],comma:[9,13],is_dis:14,vari:8,paramet:[2,4,5,7,8,9,10,13,14],widget_typ:10,style:[0,4,5,7,8,9,10,13,14],group:[0,1,3,4,7,8,9,12,13,14],curl_setopt:[1,6,3],how:[7,1,2,4],import_start:8,better:[13,14],platform:1,pend:[1,9],mailing_list:9,onc:9,mail:[0,1,4,5,8,11,12,9,14],hidden:13,main:1,might:[1,4],link_nam:[5,9],them:[8,9],"return":[0,1,4,5,7,8,9,10,12,13,14],greater:[0,8],thei:[0,9],food:10,timestamp:[0,5,12,9,10],spell:4,dai:0,auth:1,instead:[12,2,8],now:5,down:5,term:[0,1],alex:9,name:[0,4,5,7,8,9,10,11,13,14],edit:[7,1,14,10],curl_getinfo:[1,6,3],authent:[1,6,4,3],successufulli:4,separ:[1,9,13],each:[1,2,5,9,12,11,13],found:[8,9,4,14],updat:[4,7,8,9,10,12,13,14],mean:0,status:[8,9],domain:0,shortcut_nam:10,weight:[4,5,7,8,9,10,13,14],resum:9,individu:[5,8],hard:[0,5],last_nam:[1,3,5,7,8,9,10,11,13,14],"05t15":5,birthdai:[10,14],expect:1,year:[0,5,9,14],our:[1,11,12,4,14],happen:[1,4,5],extract:11,short_display_nam:10,special:[0,7,8,13],out:[0,1,4,5,7,8,10,13],variabl:[1,6,3],message_shar:[12,4],network:[5,12],private_api_kei:[1,6,3],check_multipl:10,categori:1,rel:0,print:6,correct:10,statist:8,benjamin:8,qualifi:11,insid:1,advanc:0,contain:[0,5,7,13,10,9],differ:0,standard:[5,9],status_from:8,base:[5,8],recipient_search:9,dictionari:8,put:[4,7,8,9,10,13,14],"13t23":[7,5,8],visit:11,could:1,omit:5,success:[1,3,7,8,9,13],filter:[0,1,7],search_id:7,pagin:[1,2],member_id:[5,7,8,9,12,13],summari:[1,5],assign:9,first:[0,1,10,5],oper:[0,1,7,14],rang:5,notifi:12,directli:0,curlopt_ssl_verifyp:[1,6,3],curl_init:[1,6,3],number:[5,2,13,3,10],placehold:[1,11],date:[0,5,8,10,11,14],unlik:9,alreadi:[10,8,9,13],done:8,plaintext_pref:[7,8,9,13],oppos:8,open:[0,3,4,5,6,7,8,12],payload:4,fanci:5,size:2,given:[0,8,9,4],"long":10,script:1,associ:[1,8,9,4,5],system:[8,12,4,14],messag:[4,5,8,12,11,9,14],attach:11,friend:11,curlinfo_http_cod:[1,6,3],shell:0,option:[0,5,7,8,9,10,13,14],especi:8,signup:[0,1,3,4,5,8,12,14],copi:[8,13],member_upd:[12,4],specifi:[0,2,7,8,10,11,9,14],curl_exec:[1,6,3],curlopt_httphead:[1,6,3],member_signup:[12,4],create_search:7,part:[0,9],enclos:11,than:[0,1,2,3,12,13],with_plaintext:9,"02t10":[5,8],"02t11":[5,8],"02t13":5,nathan:8,whenev:8,provid:[1,5,8,12,9,14],remov:[12,8,13,4],mailing_start:4,rate:2,structur:7,charact:9,greg:8,trackabl:11,were:5,minut:0,danc:1,error_count:[7,8,9,13],pre:[4,5,7,8,9,10,13,14],cleaner:1,sai:0,share_id:5,signup_form_id:[0,8,12,9,14],plaintext:[5,9,14],pass:[1,3],ani:[0,1,2,7,8,9],have:[0,5,8,12,9],tabl:5,seen:5,"null":[7,8,13,10,9,14],kevin:[9,14],signup_mail:0,caus:14,inform:[1,4,6,8,9,10,13],object_id:14,note:[1,8,9,4],also:[0,4,5,7,8,9,11,13],exampl:[0,1,3,5,6,7,11],take:[0,4],which:[0,1,4,8,10,12,9,14],some_number_field:0,singl:[0,1,3,4,5,8,10,12,13],excit:11,sure:1,delete_memb:13,normal:9,parent_mail:14,recipient_count:[5,9,14],previou:9,field_id:[10,12,14],last_run_at:7,most:14,pair:11,"class":[4,5,7,8,9,10,13,14],member_group_id:[8,9,13],mcconnel:[9,14],url:[1,3,4,5,6,12],mailing_finish:[12,4],clear:10,request:[1,2,3],doe:[0,5,7,8,9,10,13],member_status_upd:[12,4],declar:9,tech:4,determin:1,dataset:10,dow:0,recipi:9,"6db0cc7e6fdb2da589b65f29d90c96b6":9,show:[4,5,7,8,9,10,11,13,14],text:[10,11,12],radiu:0,syntax:[0,1,11,9],radio:10,font:[4,5,7,8,9,10,13,14],fine:9,find:[1,6,5],status_to:8,toast:[7,5,8,13],access:[1,5],giant:12,just:[0,9],pretti:8,column_ord:10,explain:[0,1],winner:9,activ:[1,5,7,8,13,9],figur:1,should:[1,2,3,7,8,11,9],templat:[11,14],share_count:5,count:[1,2,3,5],variou:[8,13],confirmed_opt_in:[7,8,9,13],familiar:1,express:0,account:[1,4,5,7,8,10,13,14],cannot:[8,9,4],progress:9,report:[10,8],requir:[1,7,8,10,11,9],object:[5,13],favorite_food:[5,7,8,13,10,9],bar:0,organ:1,include_archiv:[5,9],"public":1,"default":[5,11,13,4,9],ref_member_id:5,message_share_click:[12,4],through:[1,8,4],where:[0,1,8,11,7],view:1,set:[0,1,2,3,6,8,9,12,13],link_id:[0,5,12,9,14],see:[7,1,8],result:[0,1,2,5,8,9],respons:[0,1,2,4,5,7,8,9,10,13,14],fail:[5,9,4],themselv:2,member_field:[0,7],xxxxx:6,subject:[8,12,9,14],statu:[1,4,5,7,8,9,12,13],fancyonion:11,kei:[0,1,8,11,4],is_schedul:9,message_forward:[12,4],databas:8,user:[0,8,9,13],last_modified_at:[7,8,9,13],addresse:5,written:1,between:[0,7,2],"import":[1,8,12,4,10],subscript:[1,3],entiti:1,curlopt_url:[1,6,3],email:[0,1,3,5,6,7,8,9,13],wide:14,extend:1,numer:10,http404:[4,5,7,8,9,10,13,14],job:13,entir:[0,8],share_click:5,to_group_id:13,curlopt_returntransf:[1,6,3],addit:[0,1,8,9,11,13],member_remove_from_group:[12,4],send_start:[0,9,14],protect:1,accident:2,last:[0,5,10],delimit:5,pertain:5,message_click:[12,4],curlopt_post:[1,3],audienc:[1,8,9],mang:0,http500:14,seri:5,com:[4,5,6,7,8,9,11,13],zip_code_field:0,"03t15":[7,5,8,13],point:1,toni:[7,8],overview:[0,1,11,12,5],period:1,winner_id:9,colon:[7,11],optout_count:[7,8,9,13],suppli:9,cancel:9,tuesdai:0,duplic:5,quit:[5,8],user_id:4,recur:14,headsup:9,addition:[1,2],due:5,been:[1,8,10,5],mark:[8,9],whom:9,tshow:[4,5,7,8,9,10,13,14],trigger:[1,4,5,7,8,9,10,12,13,14],unsubscrib:0,treat:8,interest:[10,4],basic:[0,1,4,8,13,14],monthli:[7,8,13],blob:4,mailing_mailing_id:5,mailing_id:[0,5,8,12,9,14],fire:[8,4,14],xxx:[1,3],argument:[0,5],link_ord:[5,9],input:1,present:7,clicked_uniqu:5,"case":[1,8],look:[1,14,10],frozen:9,easier:12,email_error:[7,8,9,13],defin:[0,10,8,9],"while":0,outcom:5,abov:[0,1,8,7],error:[1,3,6,8,10,13],loop:8,opt:[0,4,5,7,8,13],readi:9,deliv:5,recipient_group:9,equal:0,itself:0,new_statu:12,webhook_id:4,recipient_memb:9,perform:8,make:[1,12,6,10],belong:[0,8,4],same:4,check:[8,6,9],member:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14],handl:1,html:9,split:9,document:[1,11,12],complet:[1,3,4,6,8,9],week:0,finish:[5,12,4],http:[1,2,3,4,5,6,11,9],href:[4,5,7,8,9,10,13,14],nest:0,someon:4,rais:[4,5,7,8,9,10,13,14],initi:[10,9],php:[1,6,3],bob:[7,5],recent:[1,8],kept:11,center:0,min:5,well:5,inherit:9,person:9,mailing_typ:[9,14],without:0,command:1,thi:[0,1,4,5,7,8,9,10,12,13,14],undefin:0,http_code:[1,6,3],latest:11,construct:[0,7,9],identifi:8,paus:9,execut:[1,3],less:0,resp:[4,5,7,8,9,10,13,14],"_post":[1,3],against:0,aspect:13,recipient_email:9,source_filenam:8,yet:5,smith:[7,5,8,9,13],"12t09":[7,8],display_nam:10,easi:[10,12],"01t00":8,had:0,littl:1,blog:4,add:[12,1,8,13,3],other:[1,8,9,3,5],curlopt_userpwd:[1,6,3],import_finish:[8,12,4],schedul:9,els:[1,6,3],save:7,match:[0,7],build:1,sanit:1,applic:[1,6,3],account_id:[1,3,4,5,6,7,8,9,10,12,13,14],disposit:1,crud:[8,13,14],print_r:[6,3],mailing_statu:[9,14],know:[5,4],background:13,parent_mailing_id:[9,14],bit:1,insert:11,emma:[1,5,7,8,9,12,13],like:1,onion:11,deprec:4,arbitrari:8,manual:9,integ:[1,8,14,10,5],public_kei:4,api:[1,2,3,6,8,12],either:[0,5,7],bunch:0,output:9,group_id:[1,8,12,3],soft:[0,5],manag:[0,1,13,4],import_id:[8,12],www:[5,9],old:7,deal:[8,13],captur:1,arrai:[0,1,3,5,6,7,8,9,10,12,13,14],some:[1,11,5],field_delet:[12,4],certain:12,intern:10,sampl:[1,4,5,7,8,9,10,13,14],elaps:[2,9],home:11,deleted_at:[7,8,13,10,9,14],some_string_field:0,librari:11,bounce_count:[7,8,9,13],confirm:8,broad:12,per:5,send_finish:[9,14],larg:[0,2],condit:7,three:9,network_cod:12,localhost:9,refer:[5,7,8,13,10,9],with_html_bodi:9,who:[0,5,8],bold:[4,5,7,8,9,10,13,14],event_typ:14,inspect:1,usag:[1,8,12],num_members_ad:8,fulli:11,from:[1,4,8,9,12,13,14],post:[1,3,4,7,8,9,10,12,13,14],group_creat:[12,4],gladi:[7,5,8,13],actual:5,zip:0,groups_upd:8,column:10,page:2,includ:[1,5,7,8,9,10,13],webview:9,disabl:[9,14],block:[1,2],yyyi:5,member_data:[1,3],glob:0,bounc:[0,5],within:[0,8],encod:[9,4],delivery_typ:[5,8],compos:0,webview_shar:5,field_typ:10,active_count:[7,8,9,13],public_webview_url:9,pivot:5,your:[1,4,5,7,8,9,10,13],websit:11,span:[4,5,7,8,9,10,13,14],wai:[1,12],area:1,overus:2,group_nam:[8,12,13,9],support:12,unique_click:5,json:[0,1,3,4,6,7],fast:8,custom:[5,8,11,10],avail:[0,11,4],start:[1,2,8,4],interfac:12,send_at:[9,14],exceed:2,"var":3,interv:[0,14],deliveri:5,head:[1,6,9,3],form:[1,3,4,6,8,10,14],enough:2,forc:1,forward:[0,4,5,8,12,9],"31st":0,group_typ:[8,9,13],push_offset_unit:14,link:[0,4,5,11,9,14],line:[1,5],realli:1,"true":[0,1,2,3,4,6,7,8,9,10,13,14],archived_t:[9,14],info:4,pull:2,made:1,possibl:[5,8,12],whether:8,maximum:2,tell:12,http403:9,record:[0,7,8],below:[0,1,8,12],http400:[7,8,9],limit:[5,2,8,9],some_array_field:0,otherwis:[10,8],start_t:14,mta:5,connect:[6,3],notif:9,creat:[4,5,7,9,10,12,13,14],"int":5,retriev:[7,1,2,8,9],email_us:[0,5],repres:5,exist:[0,4,5,7,8,10,13],behavior:11,curl:[1,6],lentil:7,probabl:14,echo:[1,3],successfulli:[5,8,9],mailing_subject:12,grp:13,todo:11,when:[8,12,4,9],detail:[1,4,7,8,9,10,13],invalid:[7,8,9],event:[4,7,8,13,12,9,14],field:[0,1,3,4,5,7,8,9,10,11,12,13,14],valid:[5,8,9,13],futur:1,num_skip:8,test:[5,6,7,13,9,14],ignor:8,you:[0,1,2,4,5,7,8,9,10,11,12,13],member_delet:[12,4],member_status_id:[7,5,8,9,13],public_api_kei:[1,6,3],stat:[5,9],claus:[0,7],event_nam:[12,4],e2ma:[1,2,6,3],error_messag:8,"19t11":[7,14],param:[9,4],app_messag:[1,3],ella:8,bulk:[1,8],receiv:[0,2,5,8,12,9],heads_up_email:9,longer:9,descript:[4,14],portion:0,opted_out:5,time:[1,2,8,13,5],reply_to:[9,14],resource_url:12,hello:[11,9,14]},objtypes:{"0":"http:get","1":"http:put","2":"http:post","3":"http:delete"},titles:["Search Syntax","Emma API","Pagination","PHP Signup Example","Webhooks","Response","PHP Get Member By Email Example","Searches","Members","Mailings","Fields","Placeholder Syntax","Webhook Usage","Groups","Triggers"],objnames:{"0":["http","get","HTTP get"],"1":["http","put","HTTP put"],"2":["http","post","HTTP post"],"3":["http","delete","HTTP delete"]},filenames:["member_search","index","pagination","php_signup_example","api/external/webhooks","api/external/response","php_get_member_example","api/external/searches","api/external/members","api/external/mailings","api/external/fields","placeholders","webhooks","api/external/groups","api/external/triggers"]}) \ No newline at end of file diff --git a/webhooks.html b/webhooks.html index d65df74..c166def 100644 --- a/webhooks.html +++ b/webhooks.html @@ -507,7 +507,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Feb 05, 2013 at 04:12 PM. + Last updated on Feb 19, 2013 at 11:41 AM. </div> </body> </html> \ No newline at end of file From 41b72765986ad34a677f8535817a2ec6abd558cc Mon Sep 17 00:00:00 2001 From: Jason Bynum <jason.bynum@myemma.com> Date: Tue, 19 Feb 2013 13:56:19 -0600 Subject: [PATCH 031/219] Update audience documentation. --- api/external/fields.html | 8 ++++---- api/external/groups.html | 8 ++++---- api/external/mailings.html | 8 ++++---- api/external/members.html | 8 ++++---- api/external/response.html | 8 ++++---- api/external/searches.html | 10 +++++----- api/external/triggers.html | 14 +++++++------- api/external/webhooks.html | 8 ++++---- genindex.html | 8 ++++---- http-routingtable.html | 8 ++++---- index.html | 8 ++++---- member_search.html | 8 ++++---- pagination.html | 8 ++++---- php_get_member_example.html | 8 ++++---- php_signup_example.html | 8 ++++---- placeholders.html | 8 ++++---- search.html | 8 ++++---- searchindex.js | 2 +- webhooks.html | 8 ++++---- 19 files changed, 77 insertions(+), 77 deletions(-) diff --git a/api/external/fields.html b/api/external/fields.html index c834909..bf68e3c 100644 --- a/api/external/fields.html +++ b/api/external/fields.html @@ -33,7 +33,7 @@ <link rel="top" title="audience 0.1 documentation" href="../../index.html" /> <link rel="next" title="Groups" href="groups.html" /> <link rel="prev" title="Emma API" href="../../index.html" /> - <link rel="icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> + <link rel="icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> <link rel="shortcut icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> <link rel="apple-touch-icon-precomposed" href="http://myemma.com/static/global/favicons/apple-iphone.png" /> <link rel="apple-touch-icon-precomposed" sizes="72x72" href="http://myemma.com/static/global/favicons/apple-ipad.png" /> @@ -56,7 +56,7 @@ }); }); </script> - + <script type="text/javascript"> var _gaq = _gaq || []; @@ -74,7 +74,7 @@ </head> <body> <header role="banner"> - <a href="index.html"> + <a href="/index.html"> <h1>Emma API Documentation</h1> </a> </header> @@ -415,7 +415,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Feb 19, 2013 at 11:41 AM. + Last updated on Feb 19, 2013 at 01:56 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/groups.html b/api/external/groups.html index 338625d..c3162b8 100644 --- a/api/external/groups.html +++ b/api/external/groups.html @@ -33,7 +33,7 @@ <link rel="top" title="audience 0.1 documentation" href="../../index.html" /> <link rel="next" title="Mailings" href="mailings.html" /> <link rel="prev" title="Fields" href="fields.html" /> - <link rel="icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> + <link rel="icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> <link rel="shortcut icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> <link rel="apple-touch-icon-precomposed" href="http://myemma.com/static/global/favicons/apple-iphone.png" /> <link rel="apple-touch-icon-precomposed" sizes="72x72" href="http://myemma.com/static/global/favicons/apple-ipad.png" /> @@ -56,7 +56,7 @@ }); }); </script> - + <script type="text/javascript"> var _gaq = _gaq || []; @@ -74,7 +74,7 @@ </head> <body> <header role="banner"> - <a href="index.html"> + <a href="/index.html"> <h1>Emma API Documentation</h1> </a> </header> @@ -702,7 +702,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Feb 19, 2013 at 11:41 AM. + Last updated on Feb 19, 2013 at 01:56 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/mailings.html b/api/external/mailings.html index 1490960..c3bb8d5 100644 --- a/api/external/mailings.html +++ b/api/external/mailings.html @@ -33,7 +33,7 @@ <link rel="top" title="audience 0.1 documentation" href="../../index.html" /> <link rel="next" title="Members" href="members.html" /> <link rel="prev" title="Groups" href="groups.html" /> - <link rel="icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> + <link rel="icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> <link rel="shortcut icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> <link rel="apple-touch-icon-precomposed" href="http://myemma.com/static/global/favicons/apple-iphone.png" /> <link rel="apple-touch-icon-precomposed" sizes="72x72" href="http://myemma.com/static/global/favicons/apple-ipad.png" /> @@ -56,7 +56,7 @@ }); }); </script> - + <script type="text/javascript"> var _gaq = _gaq || []; @@ -74,7 +74,7 @@ </head> <body> <header role="banner"> - <a href="index.html"> + <a href="/index.html"> <h1>Emma API Documentation</h1> </a> </header> @@ -810,7 +810,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Feb 19, 2013 at 11:41 AM. + Last updated on Feb 19, 2013 at 01:56 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/members.html b/api/external/members.html index 7ecb655..894fc3d 100644 --- a/api/external/members.html +++ b/api/external/members.html @@ -33,7 +33,7 @@ <link rel="top" title="audience 0.1 documentation" href="../../index.html" /> <link rel="next" title="Response" href="response.html" /> <link rel="prev" title="Mailings" href="mailings.html" /> - <link rel="icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> + <link rel="icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> <link rel="shortcut icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> <link rel="apple-touch-icon-precomposed" href="http://myemma.com/static/global/favicons/apple-iphone.png" /> <link rel="apple-touch-icon-precomposed" sizes="72x72" href="http://myemma.com/static/global/favicons/apple-ipad.png" /> @@ -56,7 +56,7 @@ }); }); </script> - + <script type="text/javascript"> var _gaq = _gaq || []; @@ -74,7 +74,7 @@ </head> <body> <header role="banner"> - <a href="index.html"> + <a href="/index.html"> <h1>Emma API Documentation</h1> </a> </header> @@ -1217,7 +1217,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Feb 19, 2013 at 11:41 AM. + Last updated on Feb 19, 2013 at 01:56 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/response.html b/api/external/response.html index 695d4e3..10942ea 100644 --- a/api/external/response.html +++ b/api/external/response.html @@ -33,7 +33,7 @@ <link rel="top" title="audience 0.1 documentation" href="../../index.html" /> <link rel="next" title="Searches" href="searches.html" /> <link rel="prev" title="Members" href="members.html" /> - <link rel="icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> + <link rel="icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> <link rel="shortcut icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> <link rel="apple-touch-icon-precomposed" href="http://myemma.com/static/global/favicons/apple-iphone.png" /> <link rel="apple-touch-icon-precomposed" sizes="72x72" href="http://myemma.com/static/global/favicons/apple-ipad.png" /> @@ -56,7 +56,7 @@ }); }); </script> - + <script type="text/javascript"> var _gaq = _gaq || []; @@ -74,7 +74,7 @@ </head> <body> <header role="banner"> - <a href="index.html"> + <a href="/index.html"> <h1>Emma API Documentation</h1> </a> </header> @@ -1019,7 +1019,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Feb 19, 2013 at 11:41 AM. + Last updated on Feb 19, 2013 at 01:56 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/searches.html b/api/external/searches.html index 722b792..fbc5af1 100644 --- a/api/external/searches.html +++ b/api/external/searches.html @@ -33,7 +33,7 @@ <link rel="top" title="audience 0.1 documentation" href="../../index.html" /> <link rel="next" title="Triggers" href="triggers.html" /> <link rel="prev" title="Response" href="response.html" /> - <link rel="icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> + <link rel="icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> <link rel="shortcut icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> <link rel="apple-touch-icon-precomposed" href="http://myemma.com/static/global/favicons/apple-iphone.png" /> <link rel="apple-touch-icon-precomposed" sizes="72x72" href="http://myemma.com/static/global/favicons/apple-ipad.png" /> @@ -56,7 +56,7 @@ }); }); </script> - + <script type="text/javascript"> var _gaq = _gaq || []; @@ -74,7 +74,7 @@ </head> <body> <header role="banner"> - <a href="index.html"> + <a href="/index.html"> <h1>Emma API Documentation</h1> </a> </header> @@ -199,7 +199,7 @@ <h1>Searches<a class="headerlink" href="#searches" title="Permalink to this head "name": "Test Search", "criteria": "[\"or\", [\"group\", \"eq\", \"Monthly Newsletter\"],[\"group\", \"eq\", \"Widget Buyers\"]]", "deleted_at": null, - "last_run_at": "@D:2013-02-19T11:41:47", + "last_run_at": "@D:2013-02-19T13:56:14", "active_count": 2, "account_id": 100 } @@ -511,7 +511,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Feb 19, 2013 at 11:41 AM. + Last updated on Feb 19, 2013 at 01:56 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/triggers.html b/api/external/triggers.html index 2c26ec4..4ffbe39 100644 --- a/api/external/triggers.html +++ b/api/external/triggers.html @@ -33,7 +33,7 @@ <link rel="top" title="audience 0.1 documentation" href="../../index.html" /> <link rel="next" title="Webhooks" href="webhooks.html" /> <link rel="prev" title="Searches" href="searches.html" /> - <link rel="icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> + <link rel="icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> <link rel="shortcut icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> <link rel="apple-touch-icon-precomposed" href="http://myemma.com/static/global/favicons/apple-iphone.png" /> <link rel="apple-touch-icon-precomposed" sizes="72x72" href="http://myemma.com/static/global/favicons/apple-ipad.png" /> @@ -56,7 +56,7 @@ }); }); </script> - + <script type="text/javascript"> var _gaq = _gaq || []; @@ -74,7 +74,7 @@ </head> <body> <header role="banner"> - <a href="index.html"> + <a href="/index.html"> <h1>Emma API Documentation</h1> </a> </header> @@ -148,7 +148,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": 203, "push_offset_units": "0:-14:0:0", - "start_ts": "@D:2013-02-19T11:41:45", + "start_ts": "@D:2013-02-19T13:56:12", "trigger_id": 100, "signups": null, "push_offset": "@I:-1209600.0", @@ -189,7 +189,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": null, "push_offset_units": "0:3:0:0", - "start_ts": "@D:2013-02-19T11:41:45", + "start_ts": "@D:2013-02-19T13:56:12", "trigger_id": 101, "signups": [ 1, @@ -326,7 +326,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": 203, "push_offset_units": "0:-14:0:0", - "start_ts": "@D:2013-02-19T11:41:45", + "start_ts": "@D:2013-02-19T13:56:12", "trigger_id": 100, "signups": null, "push_offset": "@I:-1209600.0", @@ -499,7 +499,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Feb 19, 2013 at 11:41 AM. + Last updated on Feb 19, 2013 at 01:56 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/webhooks.html b/api/external/webhooks.html index 6fe4b9a..705b173 100644 --- a/api/external/webhooks.html +++ b/api/external/webhooks.html @@ -33,7 +33,7 @@ <link rel="top" title="audience 0.1 documentation" href="../../index.html" /> <link rel="next" title="Pagination" href="../../pagination.html" /> <link rel="prev" title="Triggers" href="triggers.html" /> - <link rel="icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> + <link rel="icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> <link rel="shortcut icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> <link rel="apple-touch-icon-precomposed" href="http://myemma.com/static/global/favicons/apple-iphone.png" /> <link rel="apple-touch-icon-precomposed" sizes="72x72" href="http://myemma.com/static/global/favicons/apple-ipad.png" /> @@ -56,7 +56,7 @@ }); }); </script> - + <script type="text/javascript"> var _gaq = _gaq || []; @@ -74,7 +74,7 @@ </head> <body> <header role="banner"> - <a href="index.html"> + <a href="/index.html"> <h1>Emma API Documentation</h1> </a> </header> @@ -487,7 +487,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Feb 19, 2013 at 11:41 AM. + Last updated on Feb 19, 2013 at 01:56 PM. </div> </body> </html> \ No newline at end of file diff --git a/genindex.html b/genindex.html index 7ca145c..a1ea9db 100644 --- a/genindex.html +++ b/genindex.html @@ -33,7 +33,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="icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> + <link rel="icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> <link rel="shortcut icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> <link rel="apple-touch-icon-precomposed" href="http://myemma.com/static/global/favicons/apple-iphone.png" /> <link rel="apple-touch-icon-precomposed" sizes="72x72" href="http://myemma.com/static/global/favicons/apple-ipad.png" /> @@ -56,7 +56,7 @@ }); }); </script> - + <script type="text/javascript"> var _gaq = _gaq || []; @@ -74,7 +74,7 @@ </head> <body> <header role="banner"> - <a href="index.html"> + <a href="/index.html"> <h1>Emma API Documentation</h1> </a> </header> @@ -146,7 +146,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Feb 19, 2013 at 11:41 AM. + Last updated on Feb 19, 2013 at 01:56 PM. </div> </body> </html> \ No newline at end of file diff --git a/http-routingtable.html b/http-routingtable.html index 86bfde9..9886089 100644 --- a/http-routingtable.html +++ b/http-routingtable.html @@ -32,7 +32,7 @@ <script type="text/javascript" src="_static/doctools.js"></script> <link rel="top" title="audience 0.1 documentation" href="index.html" /> - <link rel="icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> + <link rel="icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> <link rel="shortcut icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> <link rel="apple-touch-icon-precomposed" href="http://myemma.com/static/global/favicons/apple-iphone.png" /> <link rel="apple-touch-icon-precomposed" sizes="72x72" href="http://myemma.com/static/global/favicons/apple-ipad.png" /> @@ -55,7 +55,7 @@ }); }); </script> - + <script type="text/javascript"> var _gaq = _gaq || []; @@ -79,7 +79,7 @@ </head> <body> <header role="banner"> - <a href="index.html"> + <a href="/index.html"> <h1>Emma API Documentation</h1> </a> </header> @@ -607,7 +607,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Feb 19, 2013 at 11:41 AM. + Last updated on Feb 19, 2013 at 01:56 PM. </div> </body> </html> \ No newline at end of file diff --git a/index.html b/index.html index 8c67d99..d174150 100644 --- a/index.html +++ b/index.html @@ -32,7 +32,7 @@ <script type="text/javascript" src="_static/doctools.js"></script> <link rel="top" title="audience 0.1 documentation" href="#" /> <link rel="next" title="Fields" href="api/external/fields.html" /> - <link rel="icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> + <link rel="icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> <link rel="shortcut icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> <link rel="apple-touch-icon-precomposed" href="http://myemma.com/static/global/favicons/apple-iphone.png" /> <link rel="apple-touch-icon-precomposed" sizes="72x72" href="http://myemma.com/static/global/favicons/apple-ipad.png" /> @@ -55,7 +55,7 @@ }); }); </script> - + <script type="text/javascript"> var _gaq = _gaq || []; @@ -73,7 +73,7 @@ </head> <body> <header role="banner"> - <a href="index.html"> + <a href="/index.html"> <h1>Emma API Documentation</h1> </a> </header> @@ -324,7 +324,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Feb 19, 2013 at 11:41 AM. + Last updated on Feb 19, 2013 at 01:56 PM. </div> </body> </html> \ No newline at end of file diff --git a/member_search.html b/member_search.html index 699cd25..1ca4d94 100644 --- a/member_search.html +++ b/member_search.html @@ -33,7 +33,7 @@ <link rel="top" title="audience 0.1 documentation" href="index.html" /> <link rel="next" title="Webhook Usage" href="webhooks.html" /> <link rel="prev" title="Placeholder Syntax" href="placeholders.html" /> - <link rel="icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> + <link rel="icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> <link rel="shortcut icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> <link rel="apple-touch-icon-precomposed" href="http://myemma.com/static/global/favicons/apple-iphone.png" /> <link rel="apple-touch-icon-precomposed" sizes="72x72" href="http://myemma.com/static/global/favicons/apple-ipad.png" /> @@ -56,7 +56,7 @@ }); }); </script> - + <script type="text/javascript"> var _gaq = _gaq || []; @@ -74,7 +74,7 @@ </head> <body> <header role="banner"> - <a href="index.html"> + <a href="/index.html"> <h1>Emma API Documentation</h1> </a> </header> @@ -256,7 +256,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Feb 19, 2013 at 11:41 AM. + Last updated on Feb 19, 2013 at 01:56 PM. </div> </body> </html> \ No newline at end of file diff --git a/pagination.html b/pagination.html index 73c825a..0267087 100644 --- a/pagination.html +++ b/pagination.html @@ -33,7 +33,7 @@ <link rel="top" title="audience 0.1 documentation" href="index.html" /> <link rel="next" title="Placeholder Syntax" href="placeholders.html" /> <link rel="prev" title="Webhooks" href="api/external/webhooks.html" /> - <link rel="icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> + <link rel="icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> <link rel="shortcut icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> <link rel="apple-touch-icon-precomposed" href="http://myemma.com/static/global/favicons/apple-iphone.png" /> <link rel="apple-touch-icon-precomposed" sizes="72x72" href="http://myemma.com/static/global/favicons/apple-ipad.png" /> @@ -56,7 +56,7 @@ }); }); </script> - + <script type="text/javascript"> var _gaq = _gaq || []; @@ -74,7 +74,7 @@ </head> <body> <header role="banner"> - <a href="index.html"> + <a href="/index.html"> <h1>Emma API Documentation</h1> </a> </header> @@ -168,7 +168,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Feb 19, 2013 at 11:41 AM. + Last updated on Feb 19, 2013 at 01:56 PM. </div> </body> </html> \ No newline at end of file diff --git a/php_get_member_example.html b/php_get_member_example.html index b574f55..6306843 100644 --- a/php_get_member_example.html +++ b/php_get_member_example.html @@ -32,7 +32,7 @@ <script type="text/javascript" src="_static/doctools.js"></script> <link rel="top" title="audience 0.1 documentation" href="index.html" /> <link rel="prev" title="PHP Signup Example" href="php_signup_example.html" /> - <link rel="icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> + <link rel="icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> <link rel="shortcut icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> <link rel="apple-touch-icon-precomposed" href="http://myemma.com/static/global/favicons/apple-iphone.png" /> <link rel="apple-touch-icon-precomposed" sizes="72x72" href="http://myemma.com/static/global/favicons/apple-ipad.png" /> @@ -55,7 +55,7 @@ }); }); </script> - + <script type="text/javascript"> var _gaq = _gaq || []; @@ -73,7 +73,7 @@ </head> <body> <header role="banner"> - <a href="index.html"> + <a href="/index.html"> <h1>Emma API Documentation</h1> </a> </header> @@ -183,7 +183,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Feb 19, 2013 at 11:41 AM. + Last updated on Feb 19, 2013 at 01:56 PM. </div> </body> </html> \ No newline at end of file diff --git a/php_signup_example.html b/php_signup_example.html index 866e778..2519ac9 100644 --- a/php_signup_example.html +++ b/php_signup_example.html @@ -33,7 +33,7 @@ <link rel="top" title="audience 0.1 documentation" href="index.html" /> <link rel="next" title="PHP Get Member By Email Example" href="php_get_member_example.html" /> <link rel="prev" title="Webhook Usage" href="webhooks.html" /> - <link rel="icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> + <link rel="icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> <link rel="shortcut icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> <link rel="apple-touch-icon-precomposed" href="http://myemma.com/static/global/favicons/apple-iphone.png" /> <link rel="apple-touch-icon-precomposed" sizes="72x72" href="http://myemma.com/static/global/favicons/apple-ipad.png" /> @@ -56,7 +56,7 @@ }); }); </script> - + <script type="text/javascript"> var _gaq = _gaq || []; @@ -74,7 +74,7 @@ </head> <body> <header role="banner"> - <a href="index.html"> + <a href="/index.html"> <h1>Emma API Documentation</h1> </a> </header> @@ -205,7 +205,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Feb 19, 2013 at 11:41 AM. + Last updated on Feb 19, 2013 at 01:56 PM. </div> </body> </html> \ No newline at end of file diff --git a/placeholders.html b/placeholders.html index a2f68be..be15545 100644 --- a/placeholders.html +++ b/placeholders.html @@ -33,7 +33,7 @@ <link rel="top" title="audience 0.1 documentation" href="index.html" /> <link rel="next" title="Search Syntax" href="member_search.html" /> <link rel="prev" title="Pagination" href="pagination.html" /> - <link rel="icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> + <link rel="icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> <link rel="shortcut icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> <link rel="apple-touch-icon-precomposed" href="http://myemma.com/static/global/favicons/apple-iphone.png" /> <link rel="apple-touch-icon-precomposed" sizes="72x72" href="http://myemma.com/static/global/favicons/apple-ipad.png" /> @@ -56,7 +56,7 @@ }); }); </script> - + <script type="text/javascript"> var _gaq = _gaq || []; @@ -74,7 +74,7 @@ </head> <body> <header role="banner"> - <a href="index.html"> + <a href="/index.html"> <h1>Emma API Documentation</h1> </a> </header> @@ -183,7 +183,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Feb 19, 2013 at 11:41 AM. + Last updated on Feb 19, 2013 at 01:56 PM. </div> </body> </html> \ No newline at end of file diff --git a/search.html b/search.html index 492cd1d..ad1ec23 100644 --- a/search.html +++ b/search.html @@ -36,7 +36,7 @@ jQuery(function() { Search.loadIndex("searchindex.js"); }); </script> - <link rel="icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> + <link rel="icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> <link rel="shortcut icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> <link rel="apple-touch-icon-precomposed" href="http://myemma.com/static/global/favicons/apple-iphone.png" /> <link rel="apple-touch-icon-precomposed" sizes="72x72" href="http://myemma.com/static/global/favicons/apple-ipad.png" /> @@ -59,7 +59,7 @@ }); }); </script> - + <script type="text/javascript"> var _gaq = _gaq || []; @@ -78,7 +78,7 @@ </head> <body> <header role="banner"> - <a href="index.html"> + <a href="/index.html"> <h1>Emma API Documentation</h1> </a> </header> @@ -153,7 +153,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Feb 19, 2013 at 11:41 AM. + Last updated on Feb 19, 2013 at 01:56 PM. </div> </body> </html> \ No newline at end of file diff --git a/searchindex.js b/searchindex.js index ccb63d1..189269c 100644 --- a/searchindex.js +++ b/searchindex.js @@ -1 +1 @@ -Search.setIndex({objects:{"":{"/#account_id/members/#member_id/groups/remove":[8,1,1,"put--#account_id-members-#member_id-groups-remove"],"/#account_id/mailings/#mailing_id/winner/#winner_id":[9,2,1,"post--#account_id-mailings-#mailing_id-winner-#winner_id"],"/#account_id/response/#mailing_id/in_progress":[5,0,1,"get--#account_id-response-#mailing_id-in_progress"],"/#account_id/members/groups/remove":[8,1,1,"put--#account_id-members-groups-remove"],"/#account_id/mailings/#mailing_id/searches":[9,0,1,"get--#account_id-mailings-#mailing_id-searches"],"/#account_id/fields":[10,2,1,"post--#account_id-fields"],"/#account_id/members/#group_id/copy":[8,1,1,"put--#account_id-members-#group_id-copy"],"/#account_id/members/status":[8,1,1,"put--#account_id-members-status"],"/#account_id/response/#mailing_id/shares/overview":[5,0,1,"get--#account_id-response-#mailing_id-shares-overview"],"/#account_id/webhooks/events":[4,0,1,"get--#account_id-webhooks-events"],"/#account_id/members/#member_id/optout":[8,0,1,"get--#account_id-members-#member_id-optout"],"/#account_id/webhooks":[4,3,1,"delete--#account_id-webhooks"],"/#account_id/fields/#field_id":[10,3,1,"delete--#account_id-fields-#field_id"],"/#account_id/response/#mailing_id":[5,0,1,"get--#account_id-response-#mailing_id"],"/#account_id/groups/#member_group_id/members/remove":[13,3,1,"delete--#account_id-groups-#member_group_id-members-remove"],"/#account_id/searches":[7,2,1,"post--#account_id-searches"],"/#account_id/members/imports":[8,0,1,"get--#account_id-members-imports"],"/#account_id/forwards/#mailing_id/#member_id":[9,2,1,"post--#account_id-forwards-#mailing_id-#member_id"],"/#account_id/response/#mailing_id/customer_share_clicks":[5,0,1,"get--#account_id-response-#mailing_id-customer_share_clicks"],"/#account_id/mailings/#mailing_id/messages/#member_id":[9,0,1,"get--#account_id-mailings-#mailing_id-messages-#member_id"],"/#account_id/members/#member_id/mailings":[8,0,1,"get--#account_id-members-#member_id-mailings"],"/#account_id/groups/#from_group_id/#to_group_id/members/copy":[13,1,1,"put--#account_id-groups-#from_group_id-#to_group_id-members-copy"],"/#account_id/triggers":[14,2,1,"post--#account_id-triggers"],"/#account_id/triggers/#trigger_id":[14,3,1,"delete--#account_id-triggers-#trigger_id"],"/#account_id/members/delete":[8,1,1,"put--#account_id-members-delete"],"/#account_id/mailings/#mailing_id/groups":[9,0,1,"get--#account_id-mailings-#mailing_id-groups"],"/#account_id/response/#mailing_id/forwards":[5,0,1,"get--#account_id-response-#mailing_id-forwards"],"/#account_id/members/#member_id":[8,3,1,"delete--#account_id-members-#member_id"],"/#account_id/triggers/#trigger_id/mailings":[14,0,1,"get--#account_id-triggers-#trigger_id-mailings"],"/#account_id/searches/#search_id/members":[7,0,1,"get--#account_id-searches-#search_id-members"],"/#account_id/members/status/:status_from/to/:status_to":[8,1,1,"put--#account_id-members-status--status_from-to--status_to"],"/#account_id/response/#mailing_id/sends":[5,0,1,"get--#account_id-response-#mailing_id-sends"],"/#account_id/members":[8,3,1,"delete--#account_id-members"],"/#account_id/members/email/:email":[8,0,1,"get--#account_id-members-email--email"],"/#account_id/response/#mailing_id/links":[5,0,1,"get--#account_id-response-#mailing_id-links"],"/#account_id/searches/#search_id":[7,3,1,"delete--#account_id-searches-#search_id"],"/#account_id/members/imports/#import_id/members":[8,0,1,"get--#account_id-members-imports-#import_id-members"],"/#account_id/fields/#field_id/clear":[10,2,1,"post--#account_id-fields-#field_id-clear"],"/#account_id/groups/#member_group_id/members":[13,3,1,"delete--#account_id-groups-#member_group_id-members"],"/#account_id/members/imports/#import_id":[8,0,1,"get--#account_id-members-imports-#import_id"],"/#account_id/response":[5,0,1,"get--#account_id-response"],"/#account_id/response/#mailing_id/opens":[5,0,1,"get--#account_id-response-#mailing_id-opens"],"/#account_id/members/imports/delete":[8,3,1,"delete--#account_id-members-imports-delete"],"/#account_id/mailings":[9,0,1,"get--#account_id-mailings"],"/#account_id/mailings/cancel/#mailing_id":[9,3,1,"delete--#account_id-mailings-cancel-#mailing_id"],"/#account_id/mailings/validate":[9,2,1,"post--#account_id-mailings-validate"],"/#account_id/response/#mailing_id/deliveries":[5,0,1,"get--#account_id-response-#mailing_id-deliveries"],"/#account_id/mailings/#mailing_id/members":[9,0,1,"get--#account_id-mailings-#mailing_id-members"],"/#account_id/response/#share_id/customer_share":[5,0,1,"get--#account_id-response-#share_id-customer_share"],"/#account_id/webhooks/#webhook_id":[4,3,1,"delete--#account_id-webhooks-#webhook_id"],"/#account_id/members/add":[8,2,1,"post--#account_id-members-add"],"/#account_id/members/email/optout/:email":[8,1,1,"put--#account_id-members-email-optout--email"],"/#account_id/response/#mailing_id/optouts":[5,0,1,"get--#account_id-response-#mailing_id-optouts"],"/#account_id/response/#mailing_id/shares":[5,0,1,"get--#account_id-response-#mailing_id-shares"],"/#account_id/groups/#member_group_id":[13,3,1,"delete--#account_id-groups-#member_group_id"],"/#account_id/mailings/#mailing_id":[9,3,1,"delete--#account_id-mailings-#mailing_id"],"/#account_id/members/#member_id/groups":[8,3,1,"delete--#account_id-members-#member_id-groups"],"/#account_id/groups":[13,2,1,"post--#account_id-groups"],"/#account_id/response/#mailing_id/clicks":[5,0,1,"get--#account_id-response-#mailing_id-clicks"],"/#account_id/mailings/#mailing_id/headsup":[9,0,1,"get--#account_id-mailings-#mailing_id-headsup"],"/#account_id/response/#mailing_id/signups":[5,0,1,"get--#account_id-response-#mailing_id-signups"],"/#account_id/response/#mailing_id/customer_shares":[5,0,1,"get--#account_id-response-#mailing_id-customer_shares"]}},terms:{all:[0,1,4,5,8,9,10,11,12,13,14],code:[0,1,6,3],change_typ:8,queri:[0,2,4],month:[0,5,9,14],four:[0,5],mile:0,least:0,field_creat:[12,4],link_target:[5,9],content:[1,11,6,9,3],privat:1,specif:[8,9,4],friendli:5,send:[1,9,4,3,5],customer_share_click:5,those:[5,12],group_upd:[12,4],sent:[5,8,12,9,14],curl_clos:[1,6,3],brown:[7,8],digit:5,everi:0,string:[0,4,5,7,8,9,10,12,13,14],fals:[1,3,4,5,6,7,8,9,10,13,14],webhook:[1,12,4],mailing_status:9,trigger_id:14,webview_share_click:5,affect:[7,8],member_add:[12,4],create_mail:9,new_boolean:10,foo:0,level:1,group_delet:[12,4],list:[0,1,2,4,5,7,8,9,10,11,12,13,14],upload:8,iter:2,"try":8,item:2,plaintext_onli:[9,14],div:[4,5,7,8,9,10,13,14],survey_id:14,pleas:[1,8,11,9],prevent:2,work:[1,4],ten:0,sync:10,sign:[0,5,4],past:1,second:[0,7,14],follow:[0,1,4,5,7,9,11,13],further:1,durat:9,click:[0,4,5,7,8,12,14],append:2,even:10,what:1,hide:[4,5,7,8,9,10,13,14],appear:[1,8],from_group_id:13,section:1,current:[8,12,9],delet:[1,4,7,8,9,10,12,13,14],"new":[1,4,5,7,8,9,10,11,13,14],net:[1,2,6,3],delivery_t:8,method:[5,8,13,4,9],can:[0,1,2,4,5,7,8,9,11,12,13],widget:[7,10,8,9,13],hash:0,datematch:0,displai:10,variat:9,gener:[0,8,12,14],onli:[5,8],here:[0,1,3,5,6,8],bodi:9,let:[1,4,10],address:[0,1,8,6,9],along:8,sinc:8,valu:[0,5,7,8,10,11],field_upd:[12,4],search:[0,1,8,9,7],survei:14,sender:[9,14],larger:2,queue:5,prior:9,action:[0,8],chang:[8,4],campaign:5,newbi:5,appli:[7,14],prefer:0,myemma:[4,5,7,8,9,13],filenam:8,customer_shar:5,"boolean":[0,1,5,7,8,9,10,13,14],curlopt_postfield:[1,3],total:5,jone:[7,5,8,13],select:10,newslett:[7,8,13],describ:7,would:[0,1],regist:4,two:[0,5],next:[0,1],create_webhook:4,few:[5,8],call:[1,2,3,4,6,8,12],criteria:7,member_add_to_group:[12,4],type:[1,3,4,5,6,7,10,9,14],until:2,more:[0,4,7,8,9,13],peopl:5,relat:[1,8,11,9],about:[10,8,12,4,9],notic:8,thide:[4,5,7,8,9,10,13,14],flag:[5,7,8,10,9,14],exce:2,indic:8,examin:1,particular:[1,4,5,8,10,12,9],in_progress:5,origin:9,must:[0,7,13,10],none:9,endpoint:[1,4,5,7,8,9,10,13,14],join:[0,7],hour:0,setup:1,member_sinc:[0,5,7,8,9,13],uniqu:5,histori:8,soup:7,remain:[0,9],archiv:[5,9],member_optout:[12,4],drill:5,control:[1,11,9],quickstart:1,give:5,forward_mailing_id:5,email_domain:[0,5],share:[0,5,8,12,4],accept:[0,5,7,8,9,10,11,13,14],total_click:5,tag:[11,9],want:[1,12,13,5],occur:[7,12],some_numeric_field:0,delai:14,alwai:0,webhook_event_id:4,cours:1,end:[2,8],first_nam:[1,3,5,7,8,9,10,11,13,14],started_or_finish:[9,14],anoth:[9,13],get:[1,4,5,6,7,8,9,10,13,14],message_open:[12,4],html_bodi:[9,14],share_statu:5,push_offset:14,del_statu:5,tild:5,num_members_upd:8,simpl:0,chri:9,pizza:[7,8],map:0,autent:1,referenc:7,xxxx:6,sundai:0,membership:13,taco:[7,5,8,9,13],mai:12,multipl:[10,8],data:[1,3,4,5,10,12],welcom:11,add_onli:8,"short":0,json_encod:[1,3],optout:[5,8,12,13],num_dupl:8,favorit:10,correspond:[0,1],greet:11,predic:[0,1],issu:[1,10],"12t11":[7,5,8,9,13],combin:7,allow:[0,7,8],some_zipcode_field:0,signed_up:5,order:[5,10],michel:[8,9],mailing_nam:5,checkbox:10,fields_upd:8,over:2,becaus:12,buyer:[7,8,9,13],comma:[9,13],is_dis:14,vari:8,paramet:[2,4,5,7,8,9,10,13,14],widget_typ:10,style:[0,4,5,7,8,9,10,13,14],group:[0,1,3,4,7,8,9,12,13,14],curl_setopt:[1,6,3],how:[7,1,2,4],import_start:8,better:[13,14],platform:1,pend:[1,9],mailing_list:9,onc:9,mail:[0,1,4,5,8,11,12,9,14],hidden:13,main:1,might:[1,4],link_nam:[5,9],them:[8,9],"return":[0,1,4,5,7,8,9,10,12,13,14],greater:[0,8],thei:[0,9],food:10,timestamp:[0,5,12,9,10],spell:4,dai:0,auth:1,instead:[12,2,8],now:5,down:5,term:[0,1],alex:9,name:[0,4,5,7,8,9,10,11,13,14],edit:[7,1,14,10],curl_getinfo:[1,6,3],authent:[1,6,4,3],successufulli:4,separ:[1,9,13],each:[1,2,5,9,12,11,13],found:[8,9,4,14],updat:[4,7,8,9,10,12,13,14],mean:0,status:[8,9],domain:0,shortcut_nam:10,weight:[4,5,7,8,9,10,13,14],resum:9,individu:[5,8],hard:[0,5],last_nam:[1,3,5,7,8,9,10,11,13,14],"05t15":5,birthdai:[10,14],expect:1,year:[0,5,9,14],our:[1,11,12,4,14],happen:[1,4,5],extract:11,short_display_nam:10,special:[0,7,8,13],out:[0,1,4,5,7,8,10,13],variabl:[1,6,3],message_shar:[12,4],network:[5,12],private_api_kei:[1,6,3],check_multipl:10,categori:1,rel:0,print:6,correct:10,statist:8,benjamin:8,qualifi:11,insid:1,advanc:0,contain:[0,5,7,13,10,9],differ:0,standard:[5,9],status_from:8,base:[5,8],recipient_search:9,dictionari:8,put:[4,7,8,9,10,13,14],"13t23":[7,5,8],visit:11,could:1,omit:5,success:[1,3,7,8,9,13],filter:[0,1,7],search_id:7,pagin:[1,2],member_id:[5,7,8,9,12,13],summari:[1,5],assign:9,first:[0,1,10,5],oper:[0,1,7,14],rang:5,notifi:12,directli:0,curlopt_ssl_verifyp:[1,6,3],curl_init:[1,6,3],number:[5,2,13,3,10],placehold:[1,11],date:[0,5,8,10,11,14],unlik:9,alreadi:[10,8,9,13],done:8,plaintext_pref:[7,8,9,13],oppos:8,open:[0,3,4,5,6,7,8,12],payload:4,fanci:5,size:2,given:[0,8,9,4],"long":10,script:1,associ:[1,8,9,4,5],system:[8,12,4,14],messag:[4,5,8,12,11,9,14],attach:11,friend:11,curlinfo_http_cod:[1,6,3],shell:0,option:[0,5,7,8,9,10,13,14],especi:8,signup:[0,1,3,4,5,8,12,14],copi:[8,13],member_upd:[12,4],specifi:[0,2,7,8,10,11,9,14],curl_exec:[1,6,3],curlopt_httphead:[1,6,3],member_signup:[12,4],create_search:7,part:[0,9],enclos:11,than:[0,1,2,3,12,13],with_plaintext:9,"02t10":[5,8],"02t11":[5,8],"02t13":5,nathan:8,whenev:8,provid:[1,5,8,12,9,14],remov:[12,8,13,4],mailing_start:4,rate:2,structur:7,charact:9,greg:8,trackabl:11,were:5,minut:0,danc:1,error_count:[7,8,9,13],pre:[4,5,7,8,9,10,13,14],cleaner:1,sai:0,share_id:5,signup_form_id:[0,8,12,9,14],plaintext:[5,9,14],pass:[1,3],ani:[0,1,2,7,8,9],have:[0,5,8,12,9],tabl:5,seen:5,"null":[7,8,13,10,9,14],kevin:[9,14],signup_mail:0,caus:14,inform:[1,4,6,8,9,10,13],object_id:14,note:[1,8,9,4],also:[0,4,5,7,8,9,11,13],exampl:[0,1,3,5,6,7,11],take:[0,4],which:[0,1,4,8,10,12,9,14],some_number_field:0,singl:[0,1,3,4,5,8,10,12,13],excit:11,sure:1,delete_memb:13,normal:9,parent_mail:14,recipient_count:[5,9,14],previou:9,field_id:[10,12,14],last_run_at:7,most:14,pair:11,"class":[4,5,7,8,9,10,13,14],member_group_id:[8,9,13],mcconnel:[9,14],url:[1,3,4,5,6,12],mailing_finish:[12,4],clear:10,request:[1,2,3],doe:[0,5,7,8,9,10,13],member_status_upd:[12,4],declar:9,tech:4,determin:1,dataset:10,dow:0,recipi:9,"6db0cc7e6fdb2da589b65f29d90c96b6":9,show:[4,5,7,8,9,10,11,13,14],text:[10,11,12],radiu:0,syntax:[0,1,11,9],radio:10,font:[4,5,7,8,9,10,13,14],fine:9,find:[1,6,5],status_to:8,toast:[7,5,8,13],access:[1,5],giant:12,just:[0,9],pretti:8,column_ord:10,explain:[0,1],winner:9,activ:[1,5,7,8,13,9],figur:1,should:[1,2,3,7,8,11,9],templat:[11,14],share_count:5,count:[1,2,3,5],variou:[8,13],confirmed_opt_in:[7,8,9,13],familiar:1,express:0,account:[1,4,5,7,8,10,13,14],cannot:[8,9,4],progress:9,report:[10,8],requir:[1,7,8,10,11,9],object:[5,13],favorite_food:[5,7,8,13,10,9],bar:0,organ:1,include_archiv:[5,9],"public":1,"default":[5,11,13,4,9],ref_member_id:5,message_share_click:[12,4],through:[1,8,4],where:[0,1,8,11,7],view:1,set:[0,1,2,3,6,8,9,12,13],link_id:[0,5,12,9,14],see:[7,1,8],result:[0,1,2,5,8,9],respons:[0,1,2,4,5,7,8,9,10,13,14],fail:[5,9,4],themselv:2,member_field:[0,7],xxxxx:6,subject:[8,12,9,14],statu:[1,4,5,7,8,9,12,13],fancyonion:11,kei:[0,1,8,11,4],is_schedul:9,message_forward:[12,4],databas:8,user:[0,8,9,13],last_modified_at:[7,8,9,13],addresse:5,written:1,between:[0,7,2],"import":[1,8,12,4,10],subscript:[1,3],entiti:1,curlopt_url:[1,6,3],email:[0,1,3,5,6,7,8,9,13],wide:14,extend:1,numer:10,http404:[4,5,7,8,9,10,13,14],job:13,entir:[0,8],share_click:5,to_group_id:13,curlopt_returntransf:[1,6,3],addit:[0,1,8,9,11,13],member_remove_from_group:[12,4],send_start:[0,9,14],protect:1,accident:2,last:[0,5,10],delimit:5,pertain:5,message_click:[12,4],curlopt_post:[1,3],audienc:[1,8,9],mang:0,http500:14,seri:5,com:[4,5,6,7,8,9,11,13],zip_code_field:0,"03t15":[7,5,8,13],point:1,toni:[7,8],overview:[0,1,11,12,5],period:1,winner_id:9,colon:[7,11],optout_count:[7,8,9,13],suppli:9,cancel:9,tuesdai:0,duplic:5,quit:[5,8],user_id:4,recur:14,headsup:9,addition:[1,2],due:5,been:[1,8,10,5],mark:[8,9],whom:9,tshow:[4,5,7,8,9,10,13,14],trigger:[1,4,5,7,8,9,10,12,13,14],unsubscrib:0,treat:8,interest:[10,4],basic:[0,1,4,8,13,14],monthli:[7,8,13],blob:4,mailing_mailing_id:5,mailing_id:[0,5,8,12,9,14],fire:[8,4,14],xxx:[1,3],argument:[0,5],link_ord:[5,9],input:1,present:7,clicked_uniqu:5,"case":[1,8],look:[1,14,10],frozen:9,easier:12,email_error:[7,8,9,13],defin:[0,10,8,9],"while":0,outcom:5,abov:[0,1,8,7],error:[1,3,6,8,10,13],loop:8,opt:[0,4,5,7,8,13],readi:9,deliv:5,recipient_group:9,equal:0,itself:0,new_statu:12,webhook_id:4,recipient_memb:9,perform:8,make:[1,12,6,10],belong:[0,8,4],same:4,check:[8,6,9],member:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14],handl:1,html:9,split:9,document:[1,11,12],complet:[1,3,4,6,8,9],week:0,finish:[5,12,4],http:[1,2,3,4,5,6,11,9],href:[4,5,7,8,9,10,13,14],nest:0,someon:4,rais:[4,5,7,8,9,10,13,14],initi:[10,9],php:[1,6,3],bob:[7,5],recent:[1,8],kept:11,center:0,min:5,well:5,inherit:9,person:9,mailing_typ:[9,14],without:0,command:1,thi:[0,1,4,5,7,8,9,10,12,13,14],undefin:0,http_code:[1,6,3],latest:11,construct:[0,7,9],identifi:8,paus:9,execut:[1,3],less:0,resp:[4,5,7,8,9,10,13,14],"_post":[1,3],against:0,aspect:13,recipient_email:9,source_filenam:8,yet:5,smith:[7,5,8,9,13],"12t09":[7,8],display_nam:10,easi:[10,12],"01t00":8,had:0,littl:1,blog:4,add:[12,1,8,13,3],other:[1,8,9,3,5],curlopt_userpwd:[1,6,3],import_finish:[8,12,4],schedul:9,els:[1,6,3],save:7,match:[0,7],build:1,sanit:1,applic:[1,6,3],account_id:[1,3,4,5,6,7,8,9,10,12,13,14],disposit:1,crud:[8,13,14],print_r:[6,3],mailing_statu:[9,14],know:[5,4],background:13,parent_mailing_id:[9,14],bit:1,insert:11,emma:[1,5,7,8,9,12,13],like:1,onion:11,deprec:4,arbitrari:8,manual:9,integ:[1,8,14,10,5],public_kei:4,api:[1,2,3,6,8,12],either:[0,5,7],bunch:0,output:9,group_id:[1,8,12,3],soft:[0,5],manag:[0,1,13,4],import_id:[8,12],www:[5,9],old:7,deal:[8,13],captur:1,arrai:[0,1,3,5,6,7,8,9,10,12,13,14],some:[1,11,5],field_delet:[12,4],certain:12,intern:10,sampl:[1,4,5,7,8,9,10,13,14],elaps:[2,9],home:11,deleted_at:[7,8,13,10,9,14],some_string_field:0,librari:11,bounce_count:[7,8,9,13],confirm:8,broad:12,per:5,send_finish:[9,14],larg:[0,2],condit:7,three:9,network_cod:12,localhost:9,refer:[5,7,8,13,10,9],with_html_bodi:9,who:[0,5,8],bold:[4,5,7,8,9,10,13,14],event_typ:14,inspect:1,usag:[1,8,12],num_members_ad:8,fulli:11,from:[1,4,8,9,12,13,14],post:[1,3,4,7,8,9,10,12,13,14],group_creat:[12,4],gladi:[7,5,8,13],actual:5,zip:0,groups_upd:8,column:10,page:2,includ:[1,5,7,8,9,10,13],webview:9,disabl:[9,14],block:[1,2],yyyi:5,member_data:[1,3],glob:0,bounc:[0,5],within:[0,8],encod:[9,4],delivery_typ:[5,8],compos:0,webview_shar:5,field_typ:10,active_count:[7,8,9,13],public_webview_url:9,pivot:5,your:[1,4,5,7,8,9,10,13],websit:11,span:[4,5,7,8,9,10,13,14],wai:[1,12],area:1,overus:2,group_nam:[8,12,13,9],support:12,unique_click:5,json:[0,1,3,4,6,7],fast:8,custom:[5,8,11,10],avail:[0,11,4],start:[1,2,8,4],interfac:12,send_at:[9,14],exceed:2,"var":3,interv:[0,14],deliveri:5,head:[1,6,9,3],form:[1,3,4,6,8,10,14],enough:2,forc:1,forward:[0,4,5,8,12,9],"31st":0,group_typ:[8,9,13],push_offset_unit:14,link:[0,4,5,11,9,14],line:[1,5],realli:1,"true":[0,1,2,3,4,6,7,8,9,10,13,14],archived_t:[9,14],info:4,pull:2,made:1,possibl:[5,8,12],whether:8,maximum:2,tell:12,http403:9,record:[0,7,8],below:[0,1,8,12],http400:[7,8,9],limit:[5,2,8,9],some_array_field:0,otherwis:[10,8],start_t:14,mta:5,connect:[6,3],notif:9,creat:[4,5,7,9,10,12,13,14],"int":5,retriev:[7,1,2,8,9],email_us:[0,5],repres:5,exist:[0,4,5,7,8,10,13],behavior:11,curl:[1,6],lentil:7,probabl:14,echo:[1,3],successfulli:[5,8,9],mailing_subject:12,grp:13,todo:11,when:[8,12,4,9],detail:[1,4,7,8,9,10,13],invalid:[7,8,9],event:[4,7,8,13,12,9,14],field:[0,1,3,4,5,7,8,9,10,11,12,13,14],valid:[5,8,9,13],futur:1,num_skip:8,test:[5,6,7,13,9,14],ignor:8,you:[0,1,2,4,5,7,8,9,10,11,12,13],member_delet:[12,4],member_status_id:[7,5,8,9,13],public_api_kei:[1,6,3],stat:[5,9],claus:[0,7],event_nam:[12,4],e2ma:[1,2,6,3],error_messag:8,"19t11":[7,14],param:[9,4],app_messag:[1,3],ella:8,bulk:[1,8],receiv:[0,2,5,8,12,9],heads_up_email:9,longer:9,descript:[4,14],portion:0,opted_out:5,time:[1,2,8,13,5],reply_to:[9,14],resource_url:12,hello:[11,9,14]},objtypes:{"0":"http:get","1":"http:put","2":"http:post","3":"http:delete"},titles:["Search Syntax","Emma API","Pagination","PHP Signup Example","Webhooks","Response","PHP Get Member By Email Example","Searches","Members","Mailings","Fields","Placeholder Syntax","Webhook Usage","Groups","Triggers"],objnames:{"0":["http","get","HTTP get"],"1":["http","put","HTTP put"],"2":["http","post","HTTP post"],"3":["http","delete","HTTP delete"]},filenames:["member_search","index","pagination","php_signup_example","api/external/webhooks","api/external/response","php_get_member_example","api/external/searches","api/external/members","api/external/mailings","api/external/fields","placeholders","webhooks","api/external/groups","api/external/triggers"]}) \ No newline at end of file +Search.setIndex({objects:{"":{"/#account_id/members/#member_id/groups/remove":[8,1,1,"put--#account_id-members-#member_id-groups-remove"],"/#account_id/mailings/#mailing_id/winner/#winner_id":[9,2,1,"post--#account_id-mailings-#mailing_id-winner-#winner_id"],"/#account_id/response/#mailing_id/in_progress":[5,0,1,"get--#account_id-response-#mailing_id-in_progress"],"/#account_id/members/groups/remove":[8,1,1,"put--#account_id-members-groups-remove"],"/#account_id/mailings/#mailing_id/searches":[9,0,1,"get--#account_id-mailings-#mailing_id-searches"],"/#account_id/fields":[10,2,1,"post--#account_id-fields"],"/#account_id/members/#group_id/copy":[8,1,1,"put--#account_id-members-#group_id-copy"],"/#account_id/members/status":[8,1,1,"put--#account_id-members-status"],"/#account_id/response/#mailing_id/shares/overview":[5,0,1,"get--#account_id-response-#mailing_id-shares-overview"],"/#account_id/webhooks/events":[4,0,1,"get--#account_id-webhooks-events"],"/#account_id/members/#member_id/optout":[8,0,1,"get--#account_id-members-#member_id-optout"],"/#account_id/webhooks":[4,3,1,"delete--#account_id-webhooks"],"/#account_id/fields/#field_id":[10,3,1,"delete--#account_id-fields-#field_id"],"/#account_id/response/#mailing_id":[5,0,1,"get--#account_id-response-#mailing_id"],"/#account_id/groups/#member_group_id/members/remove":[13,3,1,"delete--#account_id-groups-#member_group_id-members-remove"],"/#account_id/searches":[7,2,1,"post--#account_id-searches"],"/#account_id/members/imports":[8,0,1,"get--#account_id-members-imports"],"/#account_id/forwards/#mailing_id/#member_id":[9,2,1,"post--#account_id-forwards-#mailing_id-#member_id"],"/#account_id/response/#mailing_id/customer_share_clicks":[5,0,1,"get--#account_id-response-#mailing_id-customer_share_clicks"],"/#account_id/mailings/#mailing_id/messages/#member_id":[9,0,1,"get--#account_id-mailings-#mailing_id-messages-#member_id"],"/#account_id/members/#member_id/mailings":[8,0,1,"get--#account_id-members-#member_id-mailings"],"/#account_id/groups/#from_group_id/#to_group_id/members/copy":[13,1,1,"put--#account_id-groups-#from_group_id-#to_group_id-members-copy"],"/#account_id/triggers":[14,2,1,"post--#account_id-triggers"],"/#account_id/triggers/#trigger_id":[14,3,1,"delete--#account_id-triggers-#trigger_id"],"/#account_id/members/delete":[8,1,1,"put--#account_id-members-delete"],"/#account_id/mailings/#mailing_id/groups":[9,0,1,"get--#account_id-mailings-#mailing_id-groups"],"/#account_id/response/#mailing_id/forwards":[5,0,1,"get--#account_id-response-#mailing_id-forwards"],"/#account_id/members/#member_id":[8,3,1,"delete--#account_id-members-#member_id"],"/#account_id/triggers/#trigger_id/mailings":[14,0,1,"get--#account_id-triggers-#trigger_id-mailings"],"/#account_id/searches/#search_id/members":[7,0,1,"get--#account_id-searches-#search_id-members"],"/#account_id/members/status/:status_from/to/:status_to":[8,1,1,"put--#account_id-members-status--status_from-to--status_to"],"/#account_id/response/#mailing_id/sends":[5,0,1,"get--#account_id-response-#mailing_id-sends"],"/#account_id/members":[8,3,1,"delete--#account_id-members"],"/#account_id/members/email/:email":[8,0,1,"get--#account_id-members-email--email"],"/#account_id/response/#mailing_id/links":[5,0,1,"get--#account_id-response-#mailing_id-links"],"/#account_id/searches/#search_id":[7,3,1,"delete--#account_id-searches-#search_id"],"/#account_id/members/imports/#import_id/members":[8,0,1,"get--#account_id-members-imports-#import_id-members"],"/#account_id/fields/#field_id/clear":[10,2,1,"post--#account_id-fields-#field_id-clear"],"/#account_id/groups/#member_group_id/members":[13,3,1,"delete--#account_id-groups-#member_group_id-members"],"/#account_id/members/imports/#import_id":[8,0,1,"get--#account_id-members-imports-#import_id"],"/#account_id/response":[5,0,1,"get--#account_id-response"],"/#account_id/response/#mailing_id/opens":[5,0,1,"get--#account_id-response-#mailing_id-opens"],"/#account_id/members/imports/delete":[8,3,1,"delete--#account_id-members-imports-delete"],"/#account_id/mailings":[9,0,1,"get--#account_id-mailings"],"/#account_id/mailings/cancel/#mailing_id":[9,3,1,"delete--#account_id-mailings-cancel-#mailing_id"],"/#account_id/mailings/validate":[9,2,1,"post--#account_id-mailings-validate"],"/#account_id/response/#mailing_id/deliveries":[5,0,1,"get--#account_id-response-#mailing_id-deliveries"],"/#account_id/mailings/#mailing_id/members":[9,0,1,"get--#account_id-mailings-#mailing_id-members"],"/#account_id/response/#share_id/customer_share":[5,0,1,"get--#account_id-response-#share_id-customer_share"],"/#account_id/webhooks/#webhook_id":[4,3,1,"delete--#account_id-webhooks-#webhook_id"],"/#account_id/members/add":[8,2,1,"post--#account_id-members-add"],"/#account_id/members/email/optout/:email":[8,1,1,"put--#account_id-members-email-optout--email"],"/#account_id/response/#mailing_id/optouts":[5,0,1,"get--#account_id-response-#mailing_id-optouts"],"/#account_id/response/#mailing_id/shares":[5,0,1,"get--#account_id-response-#mailing_id-shares"],"/#account_id/groups/#member_group_id":[13,3,1,"delete--#account_id-groups-#member_group_id"],"/#account_id/mailings/#mailing_id":[9,3,1,"delete--#account_id-mailings-#mailing_id"],"/#account_id/members/#member_id/groups":[8,3,1,"delete--#account_id-members-#member_id-groups"],"/#account_id/groups":[13,2,1,"post--#account_id-groups"],"/#account_id/response/#mailing_id/clicks":[5,0,1,"get--#account_id-response-#mailing_id-clicks"],"/#account_id/mailings/#mailing_id/headsup":[9,0,1,"get--#account_id-mailings-#mailing_id-headsup"],"/#account_id/response/#mailing_id/signups":[5,0,1,"get--#account_id-response-#mailing_id-signups"],"/#account_id/response/#mailing_id/customer_shares":[5,0,1,"get--#account_id-response-#mailing_id-customer_shares"]}},terms:{all:[0,1,4,5,8,9,10,11,12,13,14],code:[0,1,6,3],change_typ:8,queri:[0,2,4],month:[0,5,9,14],four:[0,5],mile:0,least:0,field_creat:[12,4],link_target:[5,9],content:[1,11,6,9,3],privat:1,specif:[8,9,4],friendli:5,send:[1,9,4,3,5],customer_share_click:5,those:[5,12],group_upd:[12,4],sent:[5,8,12,9,14],curl_clos:[1,6,3],brown:[7,8],digit:5,everi:0,string:[0,4,5,7,8,9,10,12,13,14],fals:[1,3,4,5,6,7,8,9,10,13,14],webhook:[1,12,4],mailing_status:9,trigger_id:14,webview_share_click:5,affect:[7,8],member_add:[12,4],create_mail:9,new_boolean:10,foo:0,level:1,group_delet:[12,4],list:[0,1,2,4,5,7,8,9,10,11,12,13,14],upload:8,iter:2,"try":8,item:2,plaintext_onli:[9,14],div:[4,5,7,8,9,10,13,14],survey_id:14,pleas:[1,8,11,9],prevent:2,work:[1,4],ten:0,sync:10,sign:[0,5,4],past:1,second:[0,7,14],follow:[0,1,4,5,7,9,11,13],further:1,durat:9,click:[0,4,5,7,8,12,14],append:2,even:10,what:1,hide:[4,5,7,8,9,10,13,14],appear:[1,8],from_group_id:13,section:1,current:[8,12,9],delet:[1,4,7,8,9,10,12,13,14],"new":[1,4,5,7,8,9,10,11,13,14],net:[1,2,6,3],delivery_t:8,method:[5,8,13,4,9],can:[0,1,2,4,5,7,8,9,11,12,13],widget:[7,10,8,9,13],hash:0,datematch:0,displai:10,variat:9,gener:[0,8,12,14],onli:[5,8],here:[0,1,3,5,6,8],bodi:9,let:[1,4,10],address:[0,1,8,6,9],along:8,sinc:8,valu:[0,5,7,8,10,11],field_upd:[12,4],search:[0,1,8,9,7],survei:14,sender:[9,14],larger:2,queue:5,prior:9,action:[0,8],chang:[8,4],campaign:5,newbi:5,appli:[7,14],prefer:0,myemma:[4,5,7,8,9,13],filenam:8,customer_shar:5,"boolean":[0,1,5,7,8,9,10,13,14],curlopt_postfield:[1,3],total:5,jone:[7,5,8,13],select:10,newslett:[7,8,13],describ:7,would:[0,1],regist:4,two:[0,5],next:[0,1],create_webhook:4,few:[5,8],call:[1,2,3,4,6,8,12],criteria:7,member_add_to_group:[12,4],type:[1,3,4,5,6,7,10,9,14],until:2,more:[0,4,7,8,9,13],peopl:5,relat:[1,8,11,9],about:[10,8,12,4,9],notic:8,thide:[4,5,7,8,9,10,13,14],flag:[5,7,8,10,9,14],exce:2,indic:8,examin:1,particular:[1,4,5,8,10,12,9],in_progress:5,origin:9,must:[0,7,13,10],none:9,endpoint:[1,4,5,7,8,9,10,13,14],join:[0,7],hour:0,setup:1,member_sinc:[0,5,7,8,9,13],uniqu:5,histori:8,soup:7,remain:[0,9],archiv:[5,9],member_optout:[12,4],drill:5,control:[1,11,9],quickstart:1,give:5,forward_mailing_id:5,email_domain:[0,5],share:[0,5,8,12,4],accept:[0,5,7,8,9,10,11,13,14],total_click:5,tag:[11,9],want:[1,12,13,5],occur:[7,12],some_numeric_field:0,delai:14,alwai:0,webhook_event_id:4,cours:1,end:[2,8],first_nam:[1,3,5,7,8,9,10,11,13,14],started_or_finish:[9,14],anoth:[9,13],get:[1,4,5,6,7,8,9,10,13,14],message_open:[12,4],html_bodi:[9,14],share_statu:5,push_offset:14,del_statu:5,tild:5,num_members_upd:8,simpl:0,chri:9,pizza:[7,8],map:0,autent:1,referenc:7,xxxx:6,sundai:0,membership:13,taco:[7,5,8,9,13],mai:12,multipl:[10,8],data:[1,3,4,5,10,12],welcom:11,add_onli:8,"short":0,json_encod:[1,3],optout:[5,8,12,13],num_dupl:8,favorit:10,correspond:[0,1],greet:11,predic:[0,1],issu:[1,10],"12t11":[7,5,8,9,13],combin:7,allow:[0,7,8],some_zipcode_field:0,signed_up:5,order:[5,10],michel:[8,9],mailing_nam:5,checkbox:10,fields_upd:8,over:2,becaus:12,buyer:[7,8,9,13],comma:[9,13],is_dis:14,vari:8,entiti:1,widget_typ:10,style:[0,4,5,7,8,9,10,13,14],group:[0,1,3,4,7,8,9,12,13,14],curl_setopt:[1,6,3],how:[7,1,2,4],import_start:8,better:[13,14],platform:1,pend:[1,9],mailing_list:9,onc:9,mail:[0,1,4,5,8,11,12,9,14],hidden:13,main:1,might:[1,4],link_nam:[5,9],them:[8,9],"return":[0,1,4,5,7,8,9,10,12,13,14],greater:[0,8],thei:[0,9],food:10,timestamp:[0,5,12,9,10],spell:4,dai:0,auth:1,instead:[12,2,8],now:5,down:5,term:[0,1],alex:9,name:[0,4,5,7,8,9,10,11,13,14],edit:[7,1,14,10],curl_getinfo:[1,6,3],authent:[1,6,4,3],successufulli:4,separ:[1,9,13],each:[1,2,5,9,12,11,13],found:[8,9,4,14],updat:[4,7,8,9,10,12,13,14],mean:0,status:[8,9],domain:0,shortcut_nam:10,weight:[4,5,7,8,9,10,13,14],resum:9,individu:[5,8],hard:[0,5],last_nam:[1,3,5,7,8,9,10,11,13,14],"05t15":5,birthdai:[10,14],expect:1,year:[0,5,9,14],our:[1,11,12,4,14],happen:[1,4,5],extract:11,short_display_nam:10,special:[0,7,8,13],out:[0,1,4,5,7,8,10,13],variabl:[1,6,3],message_shar:[12,4],network:[5,12],private_api_kei:[1,6,3],check_multipl:10,categori:1,rel:0,print:6,correct:10,statist:8,benjamin:8,qualifi:11,insid:1,advanc:0,contain:[0,5,7,13,10,9],differ:0,standard:[5,9],status_from:8,base:[5,8],recipient_search:9,dictionari:8,put:[4,7,8,9,10,13,14],"13t23":[7,5,8],visit:11,could:1,omit:5,success:[1,3,7,8,9,13],filter:[0,1,7],search_id:7,pagin:[1,2],member_id:[5,7,8,9,12,13],summari:[1,5],assign:9,first:[0,1,10,5],oper:[0,1,7,14],rang:5,notifi:12,directli:0,curlopt_ssl_verifyp:[1,6,3],curl_init:[1,6,3],number:[5,2,13,3,10],placehold:[1,11],date:[0,5,8,10,11,14],unlik:9,alreadi:[10,8,9,13],done:8,plaintext_pref:[7,8,9,13],oppos:8,open:[0,3,4,5,6,7,8,12],payload:4,fanci:5,size:2,given:[0,8,9,4],"long":10,script:1,associ:[1,8,9,4,5],system:[8,12,4,14],messag:[4,5,8,12,11,9,14],attach:11,friend:11,curlinfo_http_cod:[1,6,3],shell:0,option:[0,5,7,8,9,10,13,14],especi:8,signup:[0,1,3,4,5,8,12,14],copi:[8,13],member_upd:[12,4],specifi:[0,2,7,8,10,11,9,14],curl_exec:[1,6,3],curlopt_httphead:[1,6,3],member_signup:[12,4],create_search:7,part:[0,9],enclos:11,than:[0,1,2,3,12,13],with_plaintext:9,"02t10":[5,8],"02t11":[5,8],"02t13":5,nathan:8,whenev:8,provid:[1,5,8,12,9,14],remov:[12,8,13,4],mailing_start:4,rate:2,structur:7,charact:9,greg:8,trackabl:11,were:5,minut:0,danc:1,error_count:[7,8,9,13],pre:[4,5,7,8,9,10,13,14],cleaner:1,sai:0,share_id:5,signup_form_id:[0,8,12,9,14],plaintext:[5,9,14],pass:[1,3],ani:[0,1,2,7,8,9],have:[0,5,8,12,9],tabl:5,seen:5,"null":[7,8,13,10,9,14],kevin:[9,14],signup_mail:0,caus:14,inform:[1,4,6,8,9,10,13],object_id:14,note:[1,8,9,4],also:[0,4,5,7,8,9,11,13],exampl:[0,1,3,5,6,7,11],take:[0,4],which:[0,1,4,8,10,12,9,14],some_number_field:0,singl:[0,1,3,4,5,8,10,12,13],excit:11,sure:1,delete_memb:13,normal:9,parent_mail:14,recipient_count:[5,9,14],previou:9,field_id:[10,12,14],last_run_at:7,most:14,pair:11,"class":[4,5,7,8,9,10,13,14],member_group_id:[8,9,13],mcconnel:[9,14],url:[1,3,4,5,6,12],mailing_finish:[12,4],clear:10,request:[1,2,3],doe:[0,5,7,8,9,10,13],member_status_upd:[12,4],declar:9,tech:4,determin:1,dataset:10,dow:0,recipi:9,"6db0cc7e6fdb2da589b65f29d90c96b6":9,show:[4,5,7,8,9,10,11,13,14],text:[10,11,12],radiu:0,syntax:[0,1,11,9],radio:10,font:[4,5,7,8,9,10,13,14],fine:9,find:[1,6,5],status_to:8,toast:[7,5,8,13],access:[1,5],giant:12,just:[0,9],pretti:8,column_ord:10,explain:[0,1],winner:9,activ:[1,5,7,8,13,9],figur:1,should:[1,2,3,7,8,11,9],templat:[11,14],share_count:5,count:[1,2,3,5],variou:[8,13],confirmed_opt_in:[7,8,9,13],familiar:1,express:0,account:[1,4,5,7,8,10,13,14],cannot:[8,9,4],progress:9,report:[10,8],requir:[1,7,8,10,11,9],object:[5,13],favorite_food:[5,7,8,13,10,9],"19t13":[7,14],bar:0,organ:1,include_archiv:[5,9],"public":1,"default":[5,11,13,4,9],ref_member_id:5,message_share_click:[12,4],through:[1,8,4],where:[0,1,8,11,7],view:1,set:[0,1,2,3,6,8,9,12,13],link_id:[0,5,12,9,14],see:[7,1,8],result:[0,1,2,5,8,9],respons:[0,1,2,4,5,7,8,9,10,13,14],fail:[5,9,4],themselv:2,member_field:[0,7],xxxxx:6,subject:[8,12,9,14],statu:[1,4,5,7,8,9,12,13],fancyonion:11,kei:[0,1,8,11,4],is_schedul:9,message_forward:[12,4],databas:8,user:[0,8,9,13],last_modified_at:[7,8,9,13],addresse:5,written:1,between:[0,7,2],"import":[1,8,12,4,10],subscript:[1,3],paramet:[2,4,5,7,8,9,10,13,14],curlopt_url:[1,6,3],email:[0,1,3,5,6,7,8,9,13],wide:14,extend:1,numer:10,http404:[4,5,7,8,9,10,13,14],job:13,entir:[0,8],share_click:5,to_group_id:13,curlopt_returntransf:[1,6,3],addit:[0,1,8,9,11,13],member_remove_from_group:[12,4],send_start:[0,9,14],protect:1,accident:2,last:[0,5,10],delimit:5,pertain:5,message_click:[12,4],curlopt_post:[1,3],audienc:[1,8,9],mang:0,http500:14,seri:5,com:[4,5,6,7,8,9,11,13],zip_code_field:0,"03t15":[7,5,8,13],point:1,toni:[7,8],overview:[0,1,11,12,5],period:1,winner_id:9,colon:[7,11],optout_count:[7,8,9,13],suppli:9,cancel:9,tuesdai:0,duplic:5,quit:[5,8],user_id:4,recur:14,headsup:9,addition:[1,2],due:5,been:[1,8,10,5],mark:[8,9],whom:9,tshow:[4,5,7,8,9,10,13,14],trigger:[1,4,5,7,8,9,10,12,13,14],unsubscrib:0,treat:8,interest:[10,4],basic:[0,1,4,8,13,14],monthli:[7,8,13],blob:4,mailing_mailing_id:5,mailing_id:[0,5,8,12,9,14],fire:[8,4,14],xxx:[1,3],argument:[0,5],link_ord:[5,9],input:1,present:7,clicked_uniqu:5,"case":[1,8],look:[1,14,10],frozen:9,easier:12,email_error:[7,8,9,13],defin:[0,10,8,9],"while":0,outcom:5,abov:[0,1,8,7],error:[1,3,6,8,10,13],loop:8,opt:[0,4,5,7,8,13],readi:9,deliv:5,recipient_group:9,equal:0,itself:0,new_statu:12,webhook_id:4,recipient_memb:9,perform:8,make:[1,12,6,10],belong:[0,8,4],same:4,check:[8,6,9],member:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14],handl:1,html:9,split:9,document:[1,11,12],complet:[1,3,4,6,8,9],week:0,finish:[5,12,4],http:[1,2,3,4,5,6,11,9],href:[4,5,7,8,9,10,13,14],nest:0,someon:4,rais:[4,5,7,8,9,10,13,14],initi:[10,9],php:[1,6,3],bob:[7,5],recent:[1,8],kept:11,center:0,min:5,well:5,inherit:9,person:9,mailing_typ:[9,14],without:0,command:1,thi:[0,1,4,5,7,8,9,10,12,13,14],undefin:0,http_code:[1,6,3],latest:11,construct:[0,7,9],identifi:8,paus:9,execut:[1,3],less:0,resp:[4,5,7,8,9,10,13,14],"_post":[1,3],against:0,aspect:13,recipient_email:9,source_filenam:8,yet:5,smith:[7,5,8,9,13],"12t09":[7,8],display_nam:10,easi:[10,12],"01t00":8,had:0,littl:1,blog:4,add:[12,1,8,13,3],other:[1,8,9,3,5],curlopt_userpwd:[1,6,3],import_finish:[8,12,4],schedul:9,els:[1,6,3],save:7,match:[0,7],build:1,sanit:1,applic:[1,6,3],account_id:[1,3,4,5,6,7,8,9,10,12,13,14],disposit:1,crud:[8,13,14],print_r:[6,3],mailing_statu:[9,14],know:[5,4],background:13,parent_mailing_id:[9,14],bit:1,insert:11,emma:[1,5,7,8,9,12,13],like:1,onion:11,deprec:4,arbitrari:8,manual:9,integ:[1,8,14,10,5],public_kei:4,api:[1,2,3,6,8,12],either:[0,5,7],bunch:0,output:9,group_id:[1,8,12,3],soft:[0,5],manag:[0,1,13,4],import_id:[8,12],www:[5,9],old:7,deal:[8,13],captur:1,arrai:[0,1,3,5,6,7,8,9,10,12,13,14],some:[1,11,5],field_delet:[12,4],certain:12,intern:10,sampl:[1,4,5,7,8,9,10,13,14],elaps:[2,9],home:11,deleted_at:[7,8,13,10,9,14],some_string_field:0,librari:11,bounce_count:[7,8,9,13],confirm:8,broad:12,per:5,send_finish:[9,14],larg:[0,2],condit:7,three:9,network_cod:12,localhost:9,refer:[5,7,8,13,10,9],with_html_bodi:9,who:[0,5,8],bold:[4,5,7,8,9,10,13,14],event_typ:14,inspect:1,usag:[1,8,12],num_members_ad:8,fulli:11,from:[1,4,8,9,12,13,14],post:[1,3,4,7,8,9,10,12,13,14],group_creat:[12,4],gladi:[7,5,8,13],actual:5,zip:0,groups_upd:8,column:10,page:2,includ:[1,5,7,8,9,10,13],webview:9,disabl:[9,14],block:[1,2],yyyi:5,member_data:[1,3],glob:0,bounc:[0,5],within:[0,8],encod:[9,4],delivery_typ:[5,8],compos:0,webview_shar:5,field_typ:10,active_count:[7,8,9,13],public_webview_url:9,pivot:5,your:[1,4,5,7,8,9,10,13],websit:11,span:[4,5,7,8,9,10,13,14],wai:[1,12],area:1,overus:2,group_nam:[8,12,13,9],support:12,unique_click:5,json:[0,1,3,4,6,7],fast:8,custom:[5,8,11,10],avail:[0,11,4],start:[1,2,8,4],interfac:12,send_at:[9,14],exceed:2,"var":3,interv:[0,14],deliveri:5,head:[1,6,9,3],form:[1,3,4,6,8,10,14],enough:2,forc:1,forward:[0,4,5,8,12,9],"31st":0,group_typ:[8,9,13],push_offset_unit:14,link:[0,4,5,11,9,14],line:[1,5],realli:1,"true":[0,1,2,3,4,6,7,8,9,10,13,14],archived_t:[9,14],info:4,pull:2,made:1,possibl:[5,8,12],whether:8,maximum:2,tell:12,http403:9,record:[0,7,8],below:[0,1,8,12],http400:[7,8,9],limit:[5,2,8,9],some_array_field:0,otherwis:[10,8],start_t:14,mta:5,connect:[6,3],notif:9,creat:[4,5,7,9,10,12,13,14],"int":5,retriev:[7,1,2,8,9],email_us:[0,5],repres:5,exist:[0,4,5,7,8,10,13],behavior:11,curl:[1,6],lentil:7,probabl:14,echo:[1,3],successfulli:[5,8,9],mailing_subject:12,grp:13,todo:11,when:[8,12,4,9],detail:[1,4,7,8,9,10,13],invalid:[7,8,9],event:[4,7,8,13,12,9,14],field:[0,1,3,4,5,7,8,9,10,11,12,13,14],valid:[5,8,9,13],futur:1,num_skip:8,test:[5,6,7,13,9,14],ignor:8,you:[0,1,2,4,5,7,8,9,10,11,12,13],member_delet:[12,4],member_status_id:[7,5,8,9,13],public_api_kei:[1,6,3],stat:[5,9],claus:[0,7],event_nam:[12,4],e2ma:[1,2,6,3],error_messag:8,param:[9,4],app_messag:[1,3],ella:8,bulk:[1,8],receiv:[0,2,5,8,12,9],heads_up_email:9,longer:9,descript:[4,14],portion:0,opted_out:5,time:[1,2,8,13,5],reply_to:[9,14],resource_url:12,hello:[11,9,14]},objtypes:{"0":"http:get","1":"http:put","2":"http:post","3":"http:delete"},titles:["Search Syntax","Emma API","Pagination","PHP Signup Example","Webhooks","Response","PHP Get Member By Email Example","Searches","Members","Mailings","Fields","Placeholder Syntax","Webhook Usage","Groups","Triggers"],objnames:{"0":["http","get","HTTP get"],"1":["http","put","HTTP put"],"2":["http","post","HTTP post"],"3":["http","delete","HTTP delete"]},filenames:["member_search","index","pagination","php_signup_example","api/external/webhooks","api/external/response","php_get_member_example","api/external/searches","api/external/members","api/external/mailings","api/external/fields","placeholders","webhooks","api/external/groups","api/external/triggers"]}) \ No newline at end of file diff --git a/webhooks.html b/webhooks.html index c166def..d64ea5b 100644 --- a/webhooks.html +++ b/webhooks.html @@ -33,7 +33,7 @@ <link rel="top" title="audience 0.1 documentation" href="index.html" /> <link rel="next" title="PHP Signup Example" href="php_signup_example.html" /> <link rel="prev" title="Search Syntax" href="member_search.html" /> - <link rel="icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> + <link rel="icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> <link rel="shortcut icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> <link rel="apple-touch-icon-precomposed" href="http://myemma.com/static/global/favicons/apple-iphone.png" /> <link rel="apple-touch-icon-precomposed" sizes="72x72" href="http://myemma.com/static/global/favicons/apple-ipad.png" /> @@ -56,7 +56,7 @@ }); }); </script> - + <script type="text/javascript"> var _gaq = _gaq || []; @@ -74,7 +74,7 @@ </head> <body> <header role="banner"> - <a href="index.html"> + <a href="/index.html"> <h1>Emma API Documentation</h1> </a> </header> @@ -507,7 +507,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Feb 19, 2013 at 11:41 AM. + Last updated on Feb 19, 2013 at 01:56 PM. </div> </body> </html> \ No newline at end of file From 0ce42911944f59e1ab71bce7ee63f6e03f672d12 Mon Sep 17 00:00:00 2001 From: Hernan Ciudad <hernan@myemma.com> Date: Tue, 26 Feb 2013 16:25:24 -0600 Subject: [PATCH 032/219] Update audience documentation. --- api/external/fields.html | 2 +- api/external/groups.html | 2 +- api/external/mailings.html | 2 +- api/external/members.html | 2 +- api/external/response.html | 2 +- api/external/searches.html | 4 ++-- api/external/triggers.html | 8 ++++---- api/external/webhooks.html | 2 +- genindex.html | 2 +- http-routingtable.html | 2 +- index.html | 2 +- member_search.html | 2 +- pagination.html | 2 +- php_get_member_example.html | 2 +- php_signup_example.html | 2 +- placeholders.html | 2 +- search.html | 2 +- searchindex.js | 2 +- webhooks.html | 2 +- 19 files changed, 23 insertions(+), 23 deletions(-) diff --git a/api/external/fields.html b/api/external/fields.html index bf68e3c..f209521 100644 --- a/api/external/fields.html +++ b/api/external/fields.html @@ -415,7 +415,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Feb 19, 2013 at 01:56 PM. + Last updated on Feb 26, 2013 at 04:25 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/groups.html b/api/external/groups.html index c3162b8..71560c0 100644 --- a/api/external/groups.html +++ b/api/external/groups.html @@ -702,7 +702,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Feb 19, 2013 at 01:56 PM. + Last updated on Feb 26, 2013 at 04:25 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/mailings.html b/api/external/mailings.html index c3bb8d5..affdfc4 100644 --- a/api/external/mailings.html +++ b/api/external/mailings.html @@ -810,7 +810,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Feb 19, 2013 at 01:56 PM. + Last updated on Feb 26, 2013 at 04:25 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/members.html b/api/external/members.html index 894fc3d..77b32c2 100644 --- a/api/external/members.html +++ b/api/external/members.html @@ -1217,7 +1217,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Feb 19, 2013 at 01:56 PM. + Last updated on Feb 26, 2013 at 04:25 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/response.html b/api/external/response.html index 10942ea..f453272 100644 --- a/api/external/response.html +++ b/api/external/response.html @@ -1019,7 +1019,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Feb 19, 2013 at 01:56 PM. + Last updated on Feb 26, 2013 at 04:25 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/searches.html b/api/external/searches.html index fbc5af1..cee4124 100644 --- a/api/external/searches.html +++ b/api/external/searches.html @@ -199,7 +199,7 @@ <h1>Searches<a class="headerlink" href="#searches" title="Permalink to this head "name": "Test Search", "criteria": "[\"or\", [\"group\", \"eq\", \"Monthly Newsletter\"],[\"group\", \"eq\", \"Widget Buyers\"]]", "deleted_at": null, - "last_run_at": "@D:2013-02-19T13:56:14", + "last_run_at": "@D:2013-02-26T16:25:18", "active_count": 2, "account_id": 100 } @@ -511,7 +511,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Feb 19, 2013 at 01:56 PM. + Last updated on Feb 26, 2013 at 04:25 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/triggers.html b/api/external/triggers.html index 4ffbe39..53fae05 100644 --- a/api/external/triggers.html +++ b/api/external/triggers.html @@ -148,7 +148,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": 203, "push_offset_units": "0:-14:0:0", - "start_ts": "@D:2013-02-19T13:56:12", + "start_ts": "@D:2013-02-26T16:25:14", "trigger_id": 100, "signups": null, "push_offset": "@I:-1209600.0", @@ -189,7 +189,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": null, "push_offset_units": "0:3:0:0", - "start_ts": "@D:2013-02-19T13:56:12", + "start_ts": "@D:2013-02-26T16:25:14", "trigger_id": 101, "signups": [ 1, @@ -326,7 +326,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": 203, "push_offset_units": "0:-14:0:0", - "start_ts": "@D:2013-02-19T13:56:12", + "start_ts": "@D:2013-02-26T16:25:14", "trigger_id": 100, "signups": null, "push_offset": "@I:-1209600.0", @@ -499,7 +499,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Feb 19, 2013 at 01:56 PM. + Last updated on Feb 26, 2013 at 04:25 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/webhooks.html b/api/external/webhooks.html index 705b173..1bc9e02 100644 --- a/api/external/webhooks.html +++ b/api/external/webhooks.html @@ -487,7 +487,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Feb 19, 2013 at 01:56 PM. + Last updated on Feb 26, 2013 at 04:25 PM. </div> </body> </html> \ No newline at end of file diff --git a/genindex.html b/genindex.html index a1ea9db..42c86fa 100644 --- a/genindex.html +++ b/genindex.html @@ -146,7 +146,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Feb 19, 2013 at 01:56 PM. + Last updated on Feb 26, 2013 at 04:25 PM. </div> </body> </html> \ No newline at end of file diff --git a/http-routingtable.html b/http-routingtable.html index 9886089..4debe21 100644 --- a/http-routingtable.html +++ b/http-routingtable.html @@ -607,7 +607,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Feb 19, 2013 at 01:56 PM. + Last updated on Feb 26, 2013 at 04:25 PM. </div> </body> </html> \ No newline at end of file diff --git a/index.html b/index.html index d174150..85d2a80 100644 --- a/index.html +++ b/index.html @@ -324,7 +324,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Feb 19, 2013 at 01:56 PM. + Last updated on Feb 26, 2013 at 04:25 PM. </div> </body> </html> \ No newline at end of file diff --git a/member_search.html b/member_search.html index 1ca4d94..1d04d4d 100644 --- a/member_search.html +++ b/member_search.html @@ -256,7 +256,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Feb 19, 2013 at 01:56 PM. + Last updated on Feb 26, 2013 at 04:25 PM. </div> </body> </html> \ No newline at end of file diff --git a/pagination.html b/pagination.html index 0267087..8215b52 100644 --- a/pagination.html +++ b/pagination.html @@ -168,7 +168,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Feb 19, 2013 at 01:56 PM. + Last updated on Feb 26, 2013 at 04:25 PM. </div> </body> </html> \ No newline at end of file diff --git a/php_get_member_example.html b/php_get_member_example.html index 6306843..32e93e7 100644 --- a/php_get_member_example.html +++ b/php_get_member_example.html @@ -183,7 +183,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Feb 19, 2013 at 01:56 PM. + Last updated on Feb 26, 2013 at 04:25 PM. </div> </body> </html> \ No newline at end of file diff --git a/php_signup_example.html b/php_signup_example.html index 2519ac9..bda20b2 100644 --- a/php_signup_example.html +++ b/php_signup_example.html @@ -205,7 +205,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Feb 19, 2013 at 01:56 PM. + Last updated on Feb 26, 2013 at 04:25 PM. </div> </body> </html> \ No newline at end of file diff --git a/placeholders.html b/placeholders.html index be15545..728ed27 100644 --- a/placeholders.html +++ b/placeholders.html @@ -183,7 +183,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Feb 19, 2013 at 01:56 PM. + Last updated on Feb 26, 2013 at 04:25 PM. </div> </body> </html> \ No newline at end of file diff --git a/search.html b/search.html index ad1ec23..f17c47e 100644 --- a/search.html +++ b/search.html @@ -153,7 +153,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Feb 19, 2013 at 01:56 PM. + Last updated on Feb 26, 2013 at 04:25 PM. </div> </body> </html> \ No newline at end of file diff --git a/searchindex.js b/searchindex.js index 189269c..d1df374 100644 --- a/searchindex.js +++ b/searchindex.js @@ -1 +1 @@ -Search.setIndex({objects:{"":{"/#account_id/members/#member_id/groups/remove":[8,1,1,"put--#account_id-members-#member_id-groups-remove"],"/#account_id/mailings/#mailing_id/winner/#winner_id":[9,2,1,"post--#account_id-mailings-#mailing_id-winner-#winner_id"],"/#account_id/response/#mailing_id/in_progress":[5,0,1,"get--#account_id-response-#mailing_id-in_progress"],"/#account_id/members/groups/remove":[8,1,1,"put--#account_id-members-groups-remove"],"/#account_id/mailings/#mailing_id/searches":[9,0,1,"get--#account_id-mailings-#mailing_id-searches"],"/#account_id/fields":[10,2,1,"post--#account_id-fields"],"/#account_id/members/#group_id/copy":[8,1,1,"put--#account_id-members-#group_id-copy"],"/#account_id/members/status":[8,1,1,"put--#account_id-members-status"],"/#account_id/response/#mailing_id/shares/overview":[5,0,1,"get--#account_id-response-#mailing_id-shares-overview"],"/#account_id/webhooks/events":[4,0,1,"get--#account_id-webhooks-events"],"/#account_id/members/#member_id/optout":[8,0,1,"get--#account_id-members-#member_id-optout"],"/#account_id/webhooks":[4,3,1,"delete--#account_id-webhooks"],"/#account_id/fields/#field_id":[10,3,1,"delete--#account_id-fields-#field_id"],"/#account_id/response/#mailing_id":[5,0,1,"get--#account_id-response-#mailing_id"],"/#account_id/groups/#member_group_id/members/remove":[13,3,1,"delete--#account_id-groups-#member_group_id-members-remove"],"/#account_id/searches":[7,2,1,"post--#account_id-searches"],"/#account_id/members/imports":[8,0,1,"get--#account_id-members-imports"],"/#account_id/forwards/#mailing_id/#member_id":[9,2,1,"post--#account_id-forwards-#mailing_id-#member_id"],"/#account_id/response/#mailing_id/customer_share_clicks":[5,0,1,"get--#account_id-response-#mailing_id-customer_share_clicks"],"/#account_id/mailings/#mailing_id/messages/#member_id":[9,0,1,"get--#account_id-mailings-#mailing_id-messages-#member_id"],"/#account_id/members/#member_id/mailings":[8,0,1,"get--#account_id-members-#member_id-mailings"],"/#account_id/groups/#from_group_id/#to_group_id/members/copy":[13,1,1,"put--#account_id-groups-#from_group_id-#to_group_id-members-copy"],"/#account_id/triggers":[14,2,1,"post--#account_id-triggers"],"/#account_id/triggers/#trigger_id":[14,3,1,"delete--#account_id-triggers-#trigger_id"],"/#account_id/members/delete":[8,1,1,"put--#account_id-members-delete"],"/#account_id/mailings/#mailing_id/groups":[9,0,1,"get--#account_id-mailings-#mailing_id-groups"],"/#account_id/response/#mailing_id/forwards":[5,0,1,"get--#account_id-response-#mailing_id-forwards"],"/#account_id/members/#member_id":[8,3,1,"delete--#account_id-members-#member_id"],"/#account_id/triggers/#trigger_id/mailings":[14,0,1,"get--#account_id-triggers-#trigger_id-mailings"],"/#account_id/searches/#search_id/members":[7,0,1,"get--#account_id-searches-#search_id-members"],"/#account_id/members/status/:status_from/to/:status_to":[8,1,1,"put--#account_id-members-status--status_from-to--status_to"],"/#account_id/response/#mailing_id/sends":[5,0,1,"get--#account_id-response-#mailing_id-sends"],"/#account_id/members":[8,3,1,"delete--#account_id-members"],"/#account_id/members/email/:email":[8,0,1,"get--#account_id-members-email--email"],"/#account_id/response/#mailing_id/links":[5,0,1,"get--#account_id-response-#mailing_id-links"],"/#account_id/searches/#search_id":[7,3,1,"delete--#account_id-searches-#search_id"],"/#account_id/members/imports/#import_id/members":[8,0,1,"get--#account_id-members-imports-#import_id-members"],"/#account_id/fields/#field_id/clear":[10,2,1,"post--#account_id-fields-#field_id-clear"],"/#account_id/groups/#member_group_id/members":[13,3,1,"delete--#account_id-groups-#member_group_id-members"],"/#account_id/members/imports/#import_id":[8,0,1,"get--#account_id-members-imports-#import_id"],"/#account_id/response":[5,0,1,"get--#account_id-response"],"/#account_id/response/#mailing_id/opens":[5,0,1,"get--#account_id-response-#mailing_id-opens"],"/#account_id/members/imports/delete":[8,3,1,"delete--#account_id-members-imports-delete"],"/#account_id/mailings":[9,0,1,"get--#account_id-mailings"],"/#account_id/mailings/cancel/#mailing_id":[9,3,1,"delete--#account_id-mailings-cancel-#mailing_id"],"/#account_id/mailings/validate":[9,2,1,"post--#account_id-mailings-validate"],"/#account_id/response/#mailing_id/deliveries":[5,0,1,"get--#account_id-response-#mailing_id-deliveries"],"/#account_id/mailings/#mailing_id/members":[9,0,1,"get--#account_id-mailings-#mailing_id-members"],"/#account_id/response/#share_id/customer_share":[5,0,1,"get--#account_id-response-#share_id-customer_share"],"/#account_id/webhooks/#webhook_id":[4,3,1,"delete--#account_id-webhooks-#webhook_id"],"/#account_id/members/add":[8,2,1,"post--#account_id-members-add"],"/#account_id/members/email/optout/:email":[8,1,1,"put--#account_id-members-email-optout--email"],"/#account_id/response/#mailing_id/optouts":[5,0,1,"get--#account_id-response-#mailing_id-optouts"],"/#account_id/response/#mailing_id/shares":[5,0,1,"get--#account_id-response-#mailing_id-shares"],"/#account_id/groups/#member_group_id":[13,3,1,"delete--#account_id-groups-#member_group_id"],"/#account_id/mailings/#mailing_id":[9,3,1,"delete--#account_id-mailings-#mailing_id"],"/#account_id/members/#member_id/groups":[8,3,1,"delete--#account_id-members-#member_id-groups"],"/#account_id/groups":[13,2,1,"post--#account_id-groups"],"/#account_id/response/#mailing_id/clicks":[5,0,1,"get--#account_id-response-#mailing_id-clicks"],"/#account_id/mailings/#mailing_id/headsup":[9,0,1,"get--#account_id-mailings-#mailing_id-headsup"],"/#account_id/response/#mailing_id/signups":[5,0,1,"get--#account_id-response-#mailing_id-signups"],"/#account_id/response/#mailing_id/customer_shares":[5,0,1,"get--#account_id-response-#mailing_id-customer_shares"]}},terms:{all:[0,1,4,5,8,9,10,11,12,13,14],code:[0,1,6,3],change_typ:8,queri:[0,2,4],month:[0,5,9,14],four:[0,5],mile:0,least:0,field_creat:[12,4],link_target:[5,9],content:[1,11,6,9,3],privat:1,specif:[8,9,4],friendli:5,send:[1,9,4,3,5],customer_share_click:5,those:[5,12],group_upd:[12,4],sent:[5,8,12,9,14],curl_clos:[1,6,3],brown:[7,8],digit:5,everi:0,string:[0,4,5,7,8,9,10,12,13,14],fals:[1,3,4,5,6,7,8,9,10,13,14],webhook:[1,12,4],mailing_status:9,trigger_id:14,webview_share_click:5,affect:[7,8],member_add:[12,4],create_mail:9,new_boolean:10,foo:0,level:1,group_delet:[12,4],list:[0,1,2,4,5,7,8,9,10,11,12,13,14],upload:8,iter:2,"try":8,item:2,plaintext_onli:[9,14],div:[4,5,7,8,9,10,13,14],survey_id:14,pleas:[1,8,11,9],prevent:2,work:[1,4],ten:0,sync:10,sign:[0,5,4],past:1,second:[0,7,14],follow:[0,1,4,5,7,9,11,13],further:1,durat:9,click:[0,4,5,7,8,12,14],append:2,even:10,what:1,hide:[4,5,7,8,9,10,13,14],appear:[1,8],from_group_id:13,section:1,current:[8,12,9],delet:[1,4,7,8,9,10,12,13,14],"new":[1,4,5,7,8,9,10,11,13,14],net:[1,2,6,3],delivery_t:8,method:[5,8,13,4,9],can:[0,1,2,4,5,7,8,9,11,12,13],widget:[7,10,8,9,13],hash:0,datematch:0,displai:10,variat:9,gener:[0,8,12,14],onli:[5,8],here:[0,1,3,5,6,8],bodi:9,let:[1,4,10],address:[0,1,8,6,9],along:8,sinc:8,valu:[0,5,7,8,10,11],field_upd:[12,4],search:[0,1,8,9,7],survei:14,sender:[9,14],larger:2,queue:5,prior:9,action:[0,8],chang:[8,4],campaign:5,newbi:5,appli:[7,14],prefer:0,myemma:[4,5,7,8,9,13],filenam:8,customer_shar:5,"boolean":[0,1,5,7,8,9,10,13,14],curlopt_postfield:[1,3],total:5,jone:[7,5,8,13],select:10,newslett:[7,8,13],describ:7,would:[0,1],regist:4,two:[0,5],next:[0,1],create_webhook:4,few:[5,8],call:[1,2,3,4,6,8,12],criteria:7,member_add_to_group:[12,4],type:[1,3,4,5,6,7,10,9,14],until:2,more:[0,4,7,8,9,13],peopl:5,relat:[1,8,11,9],about:[10,8,12,4,9],notic:8,thide:[4,5,7,8,9,10,13,14],flag:[5,7,8,10,9,14],exce:2,indic:8,examin:1,particular:[1,4,5,8,10,12,9],in_progress:5,origin:9,must:[0,7,13,10],none:9,endpoint:[1,4,5,7,8,9,10,13,14],join:[0,7],hour:0,setup:1,member_sinc:[0,5,7,8,9,13],uniqu:5,histori:8,soup:7,remain:[0,9],archiv:[5,9],member_optout:[12,4],drill:5,control:[1,11,9],quickstart:1,give:5,forward_mailing_id:5,email_domain:[0,5],share:[0,5,8,12,4],accept:[0,5,7,8,9,10,11,13,14],total_click:5,tag:[11,9],want:[1,12,13,5],occur:[7,12],some_numeric_field:0,delai:14,alwai:0,webhook_event_id:4,cours:1,end:[2,8],first_nam:[1,3,5,7,8,9,10,11,13,14],started_or_finish:[9,14],anoth:[9,13],get:[1,4,5,6,7,8,9,10,13,14],message_open:[12,4],html_bodi:[9,14],share_statu:5,push_offset:14,del_statu:5,tild:5,num_members_upd:8,simpl:0,chri:9,pizza:[7,8],map:0,autent:1,referenc:7,xxxx:6,sundai:0,membership:13,taco:[7,5,8,9,13],mai:12,multipl:[10,8],data:[1,3,4,5,10,12],welcom:11,add_onli:8,"short":0,json_encod:[1,3],optout:[5,8,12,13],num_dupl:8,favorit:10,correspond:[0,1],greet:11,predic:[0,1],issu:[1,10],"12t11":[7,5,8,9,13],combin:7,allow:[0,7,8],some_zipcode_field:0,signed_up:5,order:[5,10],michel:[8,9],mailing_nam:5,checkbox:10,fields_upd:8,over:2,becaus:12,buyer:[7,8,9,13],comma:[9,13],is_dis:14,vari:8,entiti:1,widget_typ:10,style:[0,4,5,7,8,9,10,13,14],group:[0,1,3,4,7,8,9,12,13,14],curl_setopt:[1,6,3],how:[7,1,2,4],import_start:8,better:[13,14],platform:1,pend:[1,9],mailing_list:9,onc:9,mail:[0,1,4,5,8,11,12,9,14],hidden:13,main:1,might:[1,4],link_nam:[5,9],them:[8,9],"return":[0,1,4,5,7,8,9,10,12,13,14],greater:[0,8],thei:[0,9],food:10,timestamp:[0,5,12,9,10],spell:4,dai:0,auth:1,instead:[12,2,8],now:5,down:5,term:[0,1],alex:9,name:[0,4,5,7,8,9,10,11,13,14],edit:[7,1,14,10],curl_getinfo:[1,6,3],authent:[1,6,4,3],successufulli:4,separ:[1,9,13],each:[1,2,5,9,12,11,13],found:[8,9,4,14],updat:[4,7,8,9,10,12,13,14],mean:0,status:[8,9],domain:0,shortcut_nam:10,weight:[4,5,7,8,9,10,13,14],resum:9,individu:[5,8],hard:[0,5],last_nam:[1,3,5,7,8,9,10,11,13,14],"05t15":5,birthdai:[10,14],expect:1,year:[0,5,9,14],our:[1,11,12,4,14],happen:[1,4,5],extract:11,short_display_nam:10,special:[0,7,8,13],out:[0,1,4,5,7,8,10,13],variabl:[1,6,3],message_shar:[12,4],network:[5,12],private_api_kei:[1,6,3],check_multipl:10,categori:1,rel:0,print:6,correct:10,statist:8,benjamin:8,qualifi:11,insid:1,advanc:0,contain:[0,5,7,13,10,9],differ:0,standard:[5,9],status_from:8,base:[5,8],recipient_search:9,dictionari:8,put:[4,7,8,9,10,13,14],"13t23":[7,5,8],visit:11,could:1,omit:5,success:[1,3,7,8,9,13],filter:[0,1,7],search_id:7,pagin:[1,2],member_id:[5,7,8,9,12,13],summari:[1,5],assign:9,first:[0,1,10,5],oper:[0,1,7,14],rang:5,notifi:12,directli:0,curlopt_ssl_verifyp:[1,6,3],curl_init:[1,6,3],number:[5,2,13,3,10],placehold:[1,11],date:[0,5,8,10,11,14],unlik:9,alreadi:[10,8,9,13],done:8,plaintext_pref:[7,8,9,13],oppos:8,open:[0,3,4,5,6,7,8,12],payload:4,fanci:5,size:2,given:[0,8,9,4],"long":10,script:1,associ:[1,8,9,4,5],system:[8,12,4,14],messag:[4,5,8,12,11,9,14],attach:11,friend:11,curlinfo_http_cod:[1,6,3],shell:0,option:[0,5,7,8,9,10,13,14],especi:8,signup:[0,1,3,4,5,8,12,14],copi:[8,13],member_upd:[12,4],specifi:[0,2,7,8,10,11,9,14],curl_exec:[1,6,3],curlopt_httphead:[1,6,3],member_signup:[12,4],create_search:7,part:[0,9],enclos:11,than:[0,1,2,3,12,13],with_plaintext:9,"02t10":[5,8],"02t11":[5,8],"02t13":5,nathan:8,whenev:8,provid:[1,5,8,12,9,14],remov:[12,8,13,4],mailing_start:4,rate:2,structur:7,charact:9,greg:8,trackabl:11,were:5,minut:0,danc:1,error_count:[7,8,9,13],pre:[4,5,7,8,9,10,13,14],cleaner:1,sai:0,share_id:5,signup_form_id:[0,8,12,9,14],plaintext:[5,9,14],pass:[1,3],ani:[0,1,2,7,8,9],have:[0,5,8,12,9],tabl:5,seen:5,"null":[7,8,13,10,9,14],kevin:[9,14],signup_mail:0,caus:14,inform:[1,4,6,8,9,10,13],object_id:14,note:[1,8,9,4],also:[0,4,5,7,8,9,11,13],exampl:[0,1,3,5,6,7,11],take:[0,4],which:[0,1,4,8,10,12,9,14],some_number_field:0,singl:[0,1,3,4,5,8,10,12,13],excit:11,sure:1,delete_memb:13,normal:9,parent_mail:14,recipient_count:[5,9,14],previou:9,field_id:[10,12,14],last_run_at:7,most:14,pair:11,"class":[4,5,7,8,9,10,13,14],member_group_id:[8,9,13],mcconnel:[9,14],url:[1,3,4,5,6,12],mailing_finish:[12,4],clear:10,request:[1,2,3],doe:[0,5,7,8,9,10,13],member_status_upd:[12,4],declar:9,tech:4,determin:1,dataset:10,dow:0,recipi:9,"6db0cc7e6fdb2da589b65f29d90c96b6":9,show:[4,5,7,8,9,10,11,13,14],text:[10,11,12],radiu:0,syntax:[0,1,11,9],radio:10,font:[4,5,7,8,9,10,13,14],fine:9,find:[1,6,5],status_to:8,toast:[7,5,8,13],access:[1,5],giant:12,just:[0,9],pretti:8,column_ord:10,explain:[0,1],winner:9,activ:[1,5,7,8,13,9],figur:1,should:[1,2,3,7,8,11,9],templat:[11,14],share_count:5,count:[1,2,3,5],variou:[8,13],confirmed_opt_in:[7,8,9,13],familiar:1,express:0,account:[1,4,5,7,8,10,13,14],cannot:[8,9,4],progress:9,report:[10,8],requir:[1,7,8,10,11,9],object:[5,13],favorite_food:[5,7,8,13,10,9],"19t13":[7,14],bar:0,organ:1,include_archiv:[5,9],"public":1,"default":[5,11,13,4,9],ref_member_id:5,message_share_click:[12,4],through:[1,8,4],where:[0,1,8,11,7],view:1,set:[0,1,2,3,6,8,9,12,13],link_id:[0,5,12,9,14],see:[7,1,8],result:[0,1,2,5,8,9],respons:[0,1,2,4,5,7,8,9,10,13,14],fail:[5,9,4],themselv:2,member_field:[0,7],xxxxx:6,subject:[8,12,9,14],statu:[1,4,5,7,8,9,12,13],fancyonion:11,kei:[0,1,8,11,4],is_schedul:9,message_forward:[12,4],databas:8,user:[0,8,9,13],last_modified_at:[7,8,9,13],addresse:5,written:1,between:[0,7,2],"import":[1,8,12,4,10],subscript:[1,3],paramet:[2,4,5,7,8,9,10,13,14],curlopt_url:[1,6,3],email:[0,1,3,5,6,7,8,9,13],wide:14,extend:1,numer:10,http404:[4,5,7,8,9,10,13,14],job:13,entir:[0,8],share_click:5,to_group_id:13,curlopt_returntransf:[1,6,3],addit:[0,1,8,9,11,13],member_remove_from_group:[12,4],send_start:[0,9,14],protect:1,accident:2,last:[0,5,10],delimit:5,pertain:5,message_click:[12,4],curlopt_post:[1,3],audienc:[1,8,9],mang:0,http500:14,seri:5,com:[4,5,6,7,8,9,11,13],zip_code_field:0,"03t15":[7,5,8,13],point:1,toni:[7,8],overview:[0,1,11,12,5],period:1,winner_id:9,colon:[7,11],optout_count:[7,8,9,13],suppli:9,cancel:9,tuesdai:0,duplic:5,quit:[5,8],user_id:4,recur:14,headsup:9,addition:[1,2],due:5,been:[1,8,10,5],mark:[8,9],whom:9,tshow:[4,5,7,8,9,10,13,14],trigger:[1,4,5,7,8,9,10,12,13,14],unsubscrib:0,treat:8,interest:[10,4],basic:[0,1,4,8,13,14],monthli:[7,8,13],blob:4,mailing_mailing_id:5,mailing_id:[0,5,8,12,9,14],fire:[8,4,14],xxx:[1,3],argument:[0,5],link_ord:[5,9],input:1,present:7,clicked_uniqu:5,"case":[1,8],look:[1,14,10],frozen:9,easier:12,email_error:[7,8,9,13],defin:[0,10,8,9],"while":0,outcom:5,abov:[0,1,8,7],error:[1,3,6,8,10,13],loop:8,opt:[0,4,5,7,8,13],readi:9,deliv:5,recipient_group:9,equal:0,itself:0,new_statu:12,webhook_id:4,recipient_memb:9,perform:8,make:[1,12,6,10],belong:[0,8,4],same:4,check:[8,6,9],member:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14],handl:1,html:9,split:9,document:[1,11,12],complet:[1,3,4,6,8,9],week:0,finish:[5,12,4],http:[1,2,3,4,5,6,11,9],href:[4,5,7,8,9,10,13,14],nest:0,someon:4,rais:[4,5,7,8,9,10,13,14],initi:[10,9],php:[1,6,3],bob:[7,5],recent:[1,8],kept:11,center:0,min:5,well:5,inherit:9,person:9,mailing_typ:[9,14],without:0,command:1,thi:[0,1,4,5,7,8,9,10,12,13,14],undefin:0,http_code:[1,6,3],latest:11,construct:[0,7,9],identifi:8,paus:9,execut:[1,3],less:0,resp:[4,5,7,8,9,10,13,14],"_post":[1,3],against:0,aspect:13,recipient_email:9,source_filenam:8,yet:5,smith:[7,5,8,9,13],"12t09":[7,8],display_nam:10,easi:[10,12],"01t00":8,had:0,littl:1,blog:4,add:[12,1,8,13,3],other:[1,8,9,3,5],curlopt_userpwd:[1,6,3],import_finish:[8,12,4],schedul:9,els:[1,6,3],save:7,match:[0,7],build:1,sanit:1,applic:[1,6,3],account_id:[1,3,4,5,6,7,8,9,10,12,13,14],disposit:1,crud:[8,13,14],print_r:[6,3],mailing_statu:[9,14],know:[5,4],background:13,parent_mailing_id:[9,14],bit:1,insert:11,emma:[1,5,7,8,9,12,13],like:1,onion:11,deprec:4,arbitrari:8,manual:9,integ:[1,8,14,10,5],public_kei:4,api:[1,2,3,6,8,12],either:[0,5,7],bunch:0,output:9,group_id:[1,8,12,3],soft:[0,5],manag:[0,1,13,4],import_id:[8,12],www:[5,9],old:7,deal:[8,13],captur:1,arrai:[0,1,3,5,6,7,8,9,10,12,13,14],some:[1,11,5],field_delet:[12,4],certain:12,intern:10,sampl:[1,4,5,7,8,9,10,13,14],elaps:[2,9],home:11,deleted_at:[7,8,13,10,9,14],some_string_field:0,librari:11,bounce_count:[7,8,9,13],confirm:8,broad:12,per:5,send_finish:[9,14],larg:[0,2],condit:7,three:9,network_cod:12,localhost:9,refer:[5,7,8,13,10,9],with_html_bodi:9,who:[0,5,8],bold:[4,5,7,8,9,10,13,14],event_typ:14,inspect:1,usag:[1,8,12],num_members_ad:8,fulli:11,from:[1,4,8,9,12,13,14],post:[1,3,4,7,8,9,10,12,13,14],group_creat:[12,4],gladi:[7,5,8,13],actual:5,zip:0,groups_upd:8,column:10,page:2,includ:[1,5,7,8,9,10,13],webview:9,disabl:[9,14],block:[1,2],yyyi:5,member_data:[1,3],glob:0,bounc:[0,5],within:[0,8],encod:[9,4],delivery_typ:[5,8],compos:0,webview_shar:5,field_typ:10,active_count:[7,8,9,13],public_webview_url:9,pivot:5,your:[1,4,5,7,8,9,10,13],websit:11,span:[4,5,7,8,9,10,13,14],wai:[1,12],area:1,overus:2,group_nam:[8,12,13,9],support:12,unique_click:5,json:[0,1,3,4,6,7],fast:8,custom:[5,8,11,10],avail:[0,11,4],start:[1,2,8,4],interfac:12,send_at:[9,14],exceed:2,"var":3,interv:[0,14],deliveri:5,head:[1,6,9,3],form:[1,3,4,6,8,10,14],enough:2,forc:1,forward:[0,4,5,8,12,9],"31st":0,group_typ:[8,9,13],push_offset_unit:14,link:[0,4,5,11,9,14],line:[1,5],realli:1,"true":[0,1,2,3,4,6,7,8,9,10,13,14],archived_t:[9,14],info:4,pull:2,made:1,possibl:[5,8,12],whether:8,maximum:2,tell:12,http403:9,record:[0,7,8],below:[0,1,8,12],http400:[7,8,9],limit:[5,2,8,9],some_array_field:0,otherwis:[10,8],start_t:14,mta:5,connect:[6,3],notif:9,creat:[4,5,7,9,10,12,13,14],"int":5,retriev:[7,1,2,8,9],email_us:[0,5],repres:5,exist:[0,4,5,7,8,10,13],behavior:11,curl:[1,6],lentil:7,probabl:14,echo:[1,3],successfulli:[5,8,9],mailing_subject:12,grp:13,todo:11,when:[8,12,4,9],detail:[1,4,7,8,9,10,13],invalid:[7,8,9],event:[4,7,8,13,12,9,14],field:[0,1,3,4,5,7,8,9,10,11,12,13,14],valid:[5,8,9,13],futur:1,num_skip:8,test:[5,6,7,13,9,14],ignor:8,you:[0,1,2,4,5,7,8,9,10,11,12,13],member_delet:[12,4],member_status_id:[7,5,8,9,13],public_api_kei:[1,6,3],stat:[5,9],claus:[0,7],event_nam:[12,4],e2ma:[1,2,6,3],error_messag:8,param:[9,4],app_messag:[1,3],ella:8,bulk:[1,8],receiv:[0,2,5,8,12,9],heads_up_email:9,longer:9,descript:[4,14],portion:0,opted_out:5,time:[1,2,8,13,5],reply_to:[9,14],resource_url:12,hello:[11,9,14]},objtypes:{"0":"http:get","1":"http:put","2":"http:post","3":"http:delete"},titles:["Search Syntax","Emma API","Pagination","PHP Signup Example","Webhooks","Response","PHP Get Member By Email Example","Searches","Members","Mailings","Fields","Placeholder Syntax","Webhook Usage","Groups","Triggers"],objnames:{"0":["http","get","HTTP get"],"1":["http","put","HTTP put"],"2":["http","post","HTTP post"],"3":["http","delete","HTTP delete"]},filenames:["member_search","index","pagination","php_signup_example","api/external/webhooks","api/external/response","php_get_member_example","api/external/searches","api/external/members","api/external/mailings","api/external/fields","placeholders","webhooks","api/external/groups","api/external/triggers"]}) \ No newline at end of file +Search.setIndex({objects:{"":{"/#account_id/members/#member_id/groups/remove":[8,1,1,"put--#account_id-members-#member_id-groups-remove"],"/#account_id/mailings/#mailing_id/winner/#winner_id":[9,2,1,"post--#account_id-mailings-#mailing_id-winner-#winner_id"],"/#account_id/response/#mailing_id/in_progress":[5,0,1,"get--#account_id-response-#mailing_id-in_progress"],"/#account_id/members/groups/remove":[8,1,1,"put--#account_id-members-groups-remove"],"/#account_id/mailings/#mailing_id/searches":[9,0,1,"get--#account_id-mailings-#mailing_id-searches"],"/#account_id/fields":[10,2,1,"post--#account_id-fields"],"/#account_id/members/#group_id/copy":[8,1,1,"put--#account_id-members-#group_id-copy"],"/#account_id/members/status":[8,1,1,"put--#account_id-members-status"],"/#account_id/response/#mailing_id/shares/overview":[5,0,1,"get--#account_id-response-#mailing_id-shares-overview"],"/#account_id/webhooks/events":[4,0,1,"get--#account_id-webhooks-events"],"/#account_id/members/#member_id/optout":[8,0,1,"get--#account_id-members-#member_id-optout"],"/#account_id/webhooks":[4,3,1,"delete--#account_id-webhooks"],"/#account_id/fields/#field_id":[10,3,1,"delete--#account_id-fields-#field_id"],"/#account_id/response/#mailing_id":[5,0,1,"get--#account_id-response-#mailing_id"],"/#account_id/groups/#member_group_id/members/remove":[13,3,1,"delete--#account_id-groups-#member_group_id-members-remove"],"/#account_id/searches":[7,2,1,"post--#account_id-searches"],"/#account_id/members/imports":[8,0,1,"get--#account_id-members-imports"],"/#account_id/forwards/#mailing_id/#member_id":[9,2,1,"post--#account_id-forwards-#mailing_id-#member_id"],"/#account_id/response/#mailing_id/customer_share_clicks":[5,0,1,"get--#account_id-response-#mailing_id-customer_share_clicks"],"/#account_id/mailings/#mailing_id/messages/#member_id":[9,0,1,"get--#account_id-mailings-#mailing_id-messages-#member_id"],"/#account_id/members/#member_id/mailings":[8,0,1,"get--#account_id-members-#member_id-mailings"],"/#account_id/groups/#from_group_id/#to_group_id/members/copy":[13,1,1,"put--#account_id-groups-#from_group_id-#to_group_id-members-copy"],"/#account_id/triggers":[14,2,1,"post--#account_id-triggers"],"/#account_id/triggers/#trigger_id":[14,3,1,"delete--#account_id-triggers-#trigger_id"],"/#account_id/members/delete":[8,1,1,"put--#account_id-members-delete"],"/#account_id/mailings/#mailing_id/groups":[9,0,1,"get--#account_id-mailings-#mailing_id-groups"],"/#account_id/response/#mailing_id/forwards":[5,0,1,"get--#account_id-response-#mailing_id-forwards"],"/#account_id/members/#member_id":[8,3,1,"delete--#account_id-members-#member_id"],"/#account_id/triggers/#trigger_id/mailings":[14,0,1,"get--#account_id-triggers-#trigger_id-mailings"],"/#account_id/searches/#search_id/members":[7,0,1,"get--#account_id-searches-#search_id-members"],"/#account_id/members/status/:status_from/to/:status_to":[8,1,1,"put--#account_id-members-status--status_from-to--status_to"],"/#account_id/response/#mailing_id/sends":[5,0,1,"get--#account_id-response-#mailing_id-sends"],"/#account_id/members":[8,3,1,"delete--#account_id-members"],"/#account_id/members/email/:email":[8,0,1,"get--#account_id-members-email--email"],"/#account_id/response/#mailing_id/links":[5,0,1,"get--#account_id-response-#mailing_id-links"],"/#account_id/searches/#search_id":[7,3,1,"delete--#account_id-searches-#search_id"],"/#account_id/members/imports/#import_id/members":[8,0,1,"get--#account_id-members-imports-#import_id-members"],"/#account_id/fields/#field_id/clear":[10,2,1,"post--#account_id-fields-#field_id-clear"],"/#account_id/groups/#member_group_id/members":[13,3,1,"delete--#account_id-groups-#member_group_id-members"],"/#account_id/members/imports/#import_id":[8,0,1,"get--#account_id-members-imports-#import_id"],"/#account_id/response":[5,0,1,"get--#account_id-response"],"/#account_id/response/#mailing_id/opens":[5,0,1,"get--#account_id-response-#mailing_id-opens"],"/#account_id/members/imports/delete":[8,3,1,"delete--#account_id-members-imports-delete"],"/#account_id/mailings":[9,0,1,"get--#account_id-mailings"],"/#account_id/mailings/cancel/#mailing_id":[9,3,1,"delete--#account_id-mailings-cancel-#mailing_id"],"/#account_id/mailings/validate":[9,2,1,"post--#account_id-mailings-validate"],"/#account_id/response/#mailing_id/deliveries":[5,0,1,"get--#account_id-response-#mailing_id-deliveries"],"/#account_id/mailings/#mailing_id/members":[9,0,1,"get--#account_id-mailings-#mailing_id-members"],"/#account_id/response/#share_id/customer_share":[5,0,1,"get--#account_id-response-#share_id-customer_share"],"/#account_id/webhooks/#webhook_id":[4,3,1,"delete--#account_id-webhooks-#webhook_id"],"/#account_id/members/add":[8,2,1,"post--#account_id-members-add"],"/#account_id/members/email/optout/:email":[8,1,1,"put--#account_id-members-email-optout--email"],"/#account_id/response/#mailing_id/optouts":[5,0,1,"get--#account_id-response-#mailing_id-optouts"],"/#account_id/response/#mailing_id/shares":[5,0,1,"get--#account_id-response-#mailing_id-shares"],"/#account_id/groups/#member_group_id":[13,3,1,"delete--#account_id-groups-#member_group_id"],"/#account_id/mailings/#mailing_id":[9,3,1,"delete--#account_id-mailings-#mailing_id"],"/#account_id/members/#member_id/groups":[8,3,1,"delete--#account_id-members-#member_id-groups"],"/#account_id/groups":[13,2,1,"post--#account_id-groups"],"/#account_id/response/#mailing_id/clicks":[5,0,1,"get--#account_id-response-#mailing_id-clicks"],"/#account_id/mailings/#mailing_id/headsup":[9,0,1,"get--#account_id-mailings-#mailing_id-headsup"],"/#account_id/response/#mailing_id/signups":[5,0,1,"get--#account_id-response-#mailing_id-signups"],"/#account_id/response/#mailing_id/customer_shares":[5,0,1,"get--#account_id-response-#mailing_id-customer_shares"]}},terms:{all:[0,1,4,5,8,9,10,11,12,13,14],code:[0,1,6,3],change_typ:8,queri:[0,2,4],month:[0,5,9,14],four:[0,5],mile:0,least:0,field_creat:[12,4],link_target:[5,9],content:[1,11,6,9,3],privat:1,specif:[8,9,4],friendli:5,send:[1,9,4,3,5],customer_share_click:5,those:[5,12],group_upd:[12,4],sent:[5,8,12,9,14],curl_clos:[1,6,3],brown:[7,8],digit:5,everi:0,string:[0,4,5,7,8,9,10,12,13,14],fals:[1,3,4,5,6,7,8,9,10,13,14],webhook:[1,12,4],mailing_status:9,trigger_id:14,webview_share_click:5,affect:[7,8],member_add:[12,4],create_mail:9,new_boolean:10,foo:0,level:1,group_delet:[12,4],list:[0,1,2,4,5,7,8,9,10,11,12,13,14],upload:8,iter:2,"try":8,item:2,plaintext_onli:[9,14],div:[4,5,7,8,9,10,13,14],survey_id:14,pleas:[1,8,11,9],prevent:2,work:[1,4],ten:0,sync:10,sign:[0,5,4],past:1,second:[0,7,14],follow:[0,1,4,5,7,9,11,13],further:1,durat:9,click:[0,4,5,7,8,12,14],append:2,even:10,what:1,hide:[4,5,7,8,9,10,13,14],appear:[1,8],from_group_id:13,section:1,current:[8,12,9],delet:[1,4,7,8,9,10,12,13,14],"new":[1,4,5,7,8,9,10,11,13,14],net:[1,2,6,3],delivery_t:8,method:[5,8,13,4,9],can:[0,1,2,4,5,7,8,9,11,12,13],widget:[7,10,8,9,13],hash:0,datematch:0,displai:10,variat:9,gener:[0,8,12,14],onli:[5,8],here:[0,1,3,5,6,8],bodi:9,let:[1,4,10],address:[0,1,8,6,9],along:8,sinc:8,valu:[0,5,7,8,10,11],field_upd:[12,4],search:[0,1,8,9,7],survei:14,sender:[9,14],larger:2,queue:5,prior:9,action:[0,8],chang:[8,4],campaign:5,newbi:5,appli:[7,14],prefer:0,myemma:[4,5,7,8,9,13],filenam:8,customer_shar:5,"boolean":[0,1,5,7,8,9,10,13,14],curlopt_postfield:[1,3],total:5,jone:[7,5,8,13],select:10,newslett:[7,8,13],describ:7,would:[0,1],regist:4,two:[0,5],next:[0,1],create_webhook:4,few:[5,8],call:[1,2,3,4,6,8,12],criteria:7,member_add_to_group:[12,4],type:[1,3,4,5,6,7,10,9,14],until:2,more:[0,4,7,8,9,13],peopl:5,relat:[1,8,11,9],about:[10,8,12,4,9],notic:8,thide:[4,5,7,8,9,10,13,14],flag:[5,7,8,10,9,14],exce:2,indic:8,examin:1,particular:[1,4,5,8,10,12,9],in_progress:5,origin:9,must:[0,7,13,10],none:9,endpoint:[1,4,5,7,8,9,10,13,14],join:[0,7],hour:0,setup:1,member_sinc:[0,5,7,8,9,13],uniqu:5,histori:8,soup:7,remain:[0,9],archiv:[5,9],member_optout:[12,4],drill:5,control:[1,11,9],quickstart:1,give:5,forward_mailing_id:5,email_domain:[0,5],share:[0,5,8,12,4],accept:[0,5,7,8,9,10,11,13,14],total_click:5,tag:[11,9],want:[1,12,13,5],occur:[7,12],some_numeric_field:0,delai:14,alwai:0,webhook_event_id:4,cours:1,end:[2,8],first_nam:[1,3,5,7,8,9,10,11,13,14],started_or_finish:[9,14],anoth:[9,13],get:[1,4,5,6,7,8,9,10,13,14],message_open:[12,4],html_bodi:[9,14],share_statu:5,push_offset:14,del_statu:5,tild:5,num_members_upd:8,simpl:0,chri:9,pizza:[7,8],map:0,autent:1,referenc:7,xxxx:6,sundai:0,membership:13,taco:[7,5,8,9,13],mai:12,multipl:[10,8],data:[1,3,4,5,10,12],welcom:11,add_onli:8,"short":0,json_encod:[1,3],optout:[5,8,12,13],num_dupl:8,favorit:10,correspond:[0,1],greet:11,predic:[0,1],issu:[1,10],"12t11":[7,5,8,9,13],combin:7,allow:[0,7,8],some_zipcode_field:0,signed_up:5,order:[5,10],michel:[8,9],mailing_nam:5,checkbox:10,fields_upd:8,over:2,becaus:12,buyer:[7,8,9,13],comma:[9,13],is_dis:14,vari:8,paramet:[2,4,5,7,8,9,10,13,14],widget_typ:10,style:[0,4,5,7,8,9,10,13,14],group:[0,1,3,4,7,8,9,12,13,14],curl_setopt:[1,6,3],how:[7,1,2,4],import_start:8,better:[13,14],platform:1,pend:[1,9],mailing_list:9,onc:9,mail:[0,1,4,5,8,11,12,9,14],hidden:13,main:1,might:[1,4],link_nam:[5,9],them:[8,9],"return":[0,1,4,5,7,8,9,10,12,13,14],greater:[0,8],thei:[0,9],food:10,timestamp:[0,5,12,9,10],spell:4,dai:0,auth:1,"26t16":[7,14],instead:[12,2,8],now:5,down:5,term:[0,1],alex:9,name:[0,4,5,7,8,9,10,11,13,14],edit:[7,1,14,10],curl_getinfo:[1,6,3],authent:[1,6,4,3],successufulli:4,separ:[1,9,13],each:[1,2,5,9,12,11,13],found:[8,9,4,14],updat:[4,7,8,9,10,12,13,14],mean:0,status:[8,9],domain:0,shortcut_nam:10,weight:[4,5,7,8,9,10,13,14],resum:9,individu:[5,8],hard:[0,5],last_nam:[1,3,5,7,8,9,10,11,13,14],"05t15":5,birthdai:[10,14],expect:1,year:[0,5,9,14],our:[1,11,12,4,14],happen:[1,4,5],extract:11,short_display_nam:10,special:[0,7,8,13],out:[0,1,4,5,7,8,10,13],variabl:[1,6,3],message_shar:[12,4],network:[5,12],private_api_kei:[1,6,3],check_multipl:10,categori:1,rel:0,print:6,correct:10,statist:8,benjamin:8,qualifi:11,insid:1,advanc:0,contain:[0,5,7,13,10,9],differ:0,standard:[5,9],status_from:8,base:[5,8],recipient_search:9,dictionari:8,put:[4,7,8,9,10,13,14],"13t23":[7,5,8],visit:11,could:1,omit:5,success:[1,3,7,8,9,13],filter:[0,1,7],search_id:7,pagin:[1,2],member_id:[5,7,8,9,12,13],summari:[1,5],assign:9,first:[0,1,10,5],oper:[0,1,7,14],rang:5,notifi:12,directli:0,curlopt_ssl_verifyp:[1,6,3],curl_init:[1,6,3],number:[5,2,13,3,10],placehold:[1,11],date:[0,5,8,10,11,14],unlik:9,alreadi:[10,8,9,13],done:8,plaintext_pref:[7,8,9,13],oppos:8,open:[0,3,4,5,6,7,8,12],payload:4,fanci:5,size:2,given:[0,8,9,4],"long":10,script:1,associ:[1,8,9,4,5],system:[8,12,4,14],messag:[4,5,8,12,11,9,14],attach:11,friend:11,curlinfo_http_cod:[1,6,3],shell:0,option:[0,5,7,8,9,10,13,14],especi:8,signup:[0,1,3,4,5,8,12,14],copi:[8,13],member_upd:[12,4],specifi:[0,2,7,8,10,11,9,14],curl_exec:[1,6,3],curlopt_httphead:[1,6,3],member_signup:[12,4],create_search:7,part:[0,9],enclos:11,than:[0,1,2,3,12,13],with_plaintext:9,"02t10":[5,8],"02t11":[5,8],"02t13":5,nathan:8,whenev:8,provid:[1,5,8,12,9,14],remov:[12,8,13,4],mailing_start:4,rate:2,structur:7,charact:9,greg:8,trackabl:11,were:5,minut:0,danc:1,error_count:[7,8,9,13],pre:[4,5,7,8,9,10,13,14],cleaner:1,sai:0,share_id:5,signup_form_id:[0,8,12,9,14],plaintext:[5,9,14],pass:[1,3],ani:[0,1,2,7,8,9],have:[0,5,8,12,9],tabl:5,seen:5,"null":[7,8,13,10,9,14],kevin:[9,14],signup_mail:0,caus:14,inform:[1,4,6,8,9,10,13],object_id:14,note:[1,8,9,4],also:[0,4,5,7,8,9,11,13],exampl:[0,1,3,5,6,7,11],take:[0,4],which:[0,1,4,8,10,12,9,14],some_number_field:0,singl:[0,1,3,4,5,8,10,12,13],excit:11,sure:1,delete_memb:13,normal:9,parent_mail:14,recipient_count:[5,9,14],previou:9,field_id:[10,12,14],last_run_at:7,most:14,pair:11,"class":[4,5,7,8,9,10,13,14],member_group_id:[8,9,13],mcconnel:[9,14],url:[1,3,4,5,6,12],mailing_finish:[12,4],clear:10,request:[1,2,3],doe:[0,5,7,8,9,10,13],member_status_upd:[12,4],declar:9,tech:4,determin:1,dataset:10,dow:0,recipi:9,"6db0cc7e6fdb2da589b65f29d90c96b6":9,show:[4,5,7,8,9,10,11,13,14],text:[10,11,12],radiu:0,syntax:[0,1,11,9],radio:10,font:[4,5,7,8,9,10,13,14],fine:9,find:[1,6,5],status_to:8,toast:[7,5,8,13],access:[1,5],giant:12,just:[0,9],pretti:8,column_ord:10,explain:[0,1],winner:9,activ:[1,5,7,8,13,9],figur:1,should:[1,2,3,7,8,11,9],templat:[11,14],share_count:5,count:[1,2,3,5],variou:[8,13],confirmed_opt_in:[7,8,9,13],familiar:1,express:0,account:[1,4,5,7,8,10,13,14],cannot:[8,9,4],progress:9,report:[10,8],requir:[1,7,8,10,11,9],object:[5,13],favorite_food:[5,7,8,13,10,9],bar:0,organ:1,include_archiv:[5,9],"public":1,"default":[5,11,13,4,9],ref_member_id:5,message_share_click:[12,4],through:[1,8,4],where:[0,1,8,11,7],view:1,set:[0,1,2,3,6,8,9,12,13],link_id:[0,5,12,9,14],see:[7,1,8],result:[0,1,2,5,8,9],respons:[0,1,2,4,5,7,8,9,10,13,14],fail:[5,9,4],themselv:2,member_field:[0,7],xxxxx:6,subject:[8,12,9,14],statu:[1,4,5,7,8,9,12,13],fancyonion:11,kei:[0,1,8,11,4],is_schedul:9,message_forward:[12,4],databas:8,user:[0,8,9,13],last_modified_at:[7,8,9,13],addresse:5,written:1,between:[0,7,2],"import":[1,8,12,4,10],subscript:[1,3],entiti:1,curlopt_url:[1,6,3],email:[0,1,3,5,6,7,8,9,13],wide:14,extend:1,numer:10,http404:[4,5,7,8,9,10,13,14],job:13,entir:[0,8],share_click:5,to_group_id:13,curlopt_returntransf:[1,6,3],addit:[0,1,8,9,11,13],member_remove_from_group:[12,4],send_start:[0,9,14],protect:1,accident:2,last:[0,5,10],delimit:5,pertain:5,message_click:[12,4],curlopt_post:[1,3],audienc:[1,8,9],mang:0,http500:14,seri:5,com:[4,5,6,7,8,9,11,13],zip_code_field:0,"03t15":[7,5,8,13],point:1,toni:[7,8],overview:[0,1,11,12,5],period:1,winner_id:9,colon:[7,11],optout_count:[7,8,9,13],suppli:9,cancel:9,tuesdai:0,duplic:5,quit:[5,8],user_id:4,recur:14,headsup:9,addition:[1,2],due:5,been:[1,8,10,5],mark:[8,9],whom:9,tshow:[4,5,7,8,9,10,13,14],trigger:[1,4,5,7,8,9,10,12,13,14],unsubscrib:0,treat:8,interest:[10,4],basic:[0,1,4,8,13,14],monthli:[7,8,13],blob:4,mailing_mailing_id:5,mailing_id:[0,5,8,12,9,14],fire:[8,4,14],xxx:[1,3],argument:[0,5],link_ord:[5,9],input:1,present:7,clicked_uniqu:5,"case":[1,8],look:[1,14,10],frozen:9,easier:12,email_error:[7,8,9,13],defin:[0,10,8,9],"while":0,outcom:5,abov:[0,1,8,7],error:[1,3,6,8,10,13],loop:8,opt:[0,4,5,7,8,13],readi:9,deliv:5,recipient_group:9,equal:0,itself:0,new_statu:12,webhook_id:4,recipient_memb:9,perform:8,make:[1,12,6,10],belong:[0,8,4],same:4,check:[8,6,9],member:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14],handl:1,html:9,split:9,document:[1,11,12],complet:[1,3,4,6,8,9],week:0,finish:[5,12,4],http:[1,2,3,4,5,6,11,9],href:[4,5,7,8,9,10,13,14],nest:0,someon:4,rais:[4,5,7,8,9,10,13,14],initi:[10,9],php:[1,6,3],bob:[7,5],recent:[1,8],kept:11,center:0,min:5,well:5,inherit:9,person:9,mailing_typ:[9,14],without:0,command:1,thi:[0,1,4,5,7,8,9,10,12,13,14],undefin:0,http_code:[1,6,3],latest:11,construct:[0,7,9],identifi:8,paus:9,execut:[1,3],less:0,resp:[4,5,7,8,9,10,13,14],"_post":[1,3],against:0,aspect:13,recipient_email:9,source_filenam:8,yet:5,smith:[7,5,8,9,13],"12t09":[7,8],display_nam:10,easi:[10,12],"01t00":8,had:0,littl:1,blog:4,add:[12,1,8,13,3],other:[1,8,9,3,5],curlopt_userpwd:[1,6,3],import_finish:[8,12,4],schedul:9,els:[1,6,3],save:7,match:[0,7],build:1,sanit:1,applic:[1,6,3],account_id:[1,3,4,5,6,7,8,9,10,12,13,14],disposit:1,crud:[8,13,14],print_r:[6,3],mailing_statu:[9,14],know:[5,4],background:13,parent_mailing_id:[9,14],bit:1,insert:11,emma:[1,5,7,8,9,12,13],like:1,onion:11,deprec:4,arbitrari:8,manual:9,integ:[1,8,14,10,5],public_kei:4,api:[1,2,3,6,8,12],either:[0,5,7],bunch:0,output:9,group_id:[1,8,12,3],soft:[0,5],manag:[0,1,13,4],import_id:[8,12],www:[5,9],old:7,deal:[8,13],captur:1,arrai:[0,1,3,5,6,7,8,9,10,12,13,14],some:[1,11,5],field_delet:[12,4],certain:12,intern:10,sampl:[1,4,5,7,8,9,10,13,14],elaps:[2,9],home:11,deleted_at:[7,8,13,10,9,14],some_string_field:0,librari:11,bounce_count:[7,8,9,13],confirm:8,broad:12,per:5,send_finish:[9,14],larg:[0,2],condit:7,three:9,network_cod:12,localhost:9,refer:[5,7,8,13,10,9],with_html_bodi:9,who:[0,5,8],bold:[4,5,7,8,9,10,13,14],event_typ:14,inspect:1,usag:[1,8,12],num_members_ad:8,fulli:11,from:[1,4,8,9,12,13,14],post:[1,3,4,7,8,9,10,12,13,14],group_creat:[12,4],gladi:[7,5,8,13],actual:5,zip:0,groups_upd:8,column:10,page:2,includ:[1,5,7,8,9,10,13],webview:9,disabl:[9,14],block:[1,2],yyyi:5,member_data:[1,3],glob:0,bounc:[0,5],within:[0,8],encod:[9,4],delivery_typ:[5,8],compos:0,webview_shar:5,field_typ:10,active_count:[7,8,9,13],public_webview_url:9,pivot:5,your:[1,4,5,7,8,9,10,13],websit:11,span:[4,5,7,8,9,10,13,14],wai:[1,12],area:1,overus:2,group_nam:[8,12,13,9],support:12,unique_click:5,json:[0,1,3,4,6,7],fast:8,custom:[5,8,11,10],avail:[0,11,4],start:[1,2,8,4],interfac:12,send_at:[9,14],exceed:2,"var":3,interv:[0,14],deliveri:5,head:[1,6,9,3],form:[1,3,4,6,8,10,14],enough:2,forc:1,forward:[0,4,5,8,12,9],"31st":0,group_typ:[8,9,13],push_offset_unit:14,link:[0,4,5,11,9,14],line:[1,5],realli:1,"true":[0,1,2,3,4,6,7,8,9,10,13,14],archived_t:[9,14],info:4,pull:2,made:1,possibl:[5,8,12],whether:8,maximum:2,tell:12,http403:9,record:[0,7,8],below:[0,1,8,12],http400:[7,8,9],limit:[5,2,8,9],some_array_field:0,otherwis:[10,8],start_t:14,mta:5,connect:[6,3],notif:9,creat:[4,5,7,9,10,12,13,14],"int":5,retriev:[7,1,2,8,9],email_us:[0,5],repres:5,exist:[0,4,5,7,8,10,13],behavior:11,curl:[1,6],lentil:7,probabl:14,echo:[1,3],successfulli:[5,8,9],mailing_subject:12,grp:13,todo:11,when:[8,12,4,9],detail:[1,4,7,8,9,10,13],invalid:[7,8,9],event:[4,7,8,13,12,9,14],field:[0,1,3,4,5,7,8,9,10,11,12,13,14],valid:[5,8,9,13],futur:1,num_skip:8,test:[5,6,7,13,9,14],ignor:8,you:[0,1,2,4,5,7,8,9,10,11,12,13],member_delet:[12,4],member_status_id:[7,5,8,9,13],public_api_kei:[1,6,3],stat:[5,9],claus:[0,7],event_nam:[12,4],e2ma:[1,2,6,3],error_messag:8,param:[9,4],app_messag:[1,3],ella:8,bulk:[1,8],receiv:[0,2,5,8,12,9],heads_up_email:9,longer:9,descript:[4,14],portion:0,opted_out:5,time:[1,2,8,13,5],reply_to:[9,14],resource_url:12,hello:[11,9,14]},objtypes:{"0":"http:get","1":"http:put","2":"http:post","3":"http:delete"},titles:["Search Syntax","Emma API","Pagination","PHP Signup Example","Webhooks","Response","PHP Get Member By Email Example","Searches","Members","Mailings","Fields","Placeholder Syntax","Webhook Usage","Groups","Triggers"],objnames:{"0":["http","get","HTTP get"],"1":["http","put","HTTP put"],"2":["http","post","HTTP post"],"3":["http","delete","HTTP delete"]},filenames:["member_search","index","pagination","php_signup_example","api/external/webhooks","api/external/response","php_get_member_example","api/external/searches","api/external/members","api/external/mailings","api/external/fields","placeholders","webhooks","api/external/groups","api/external/triggers"]}) \ No newline at end of file diff --git a/webhooks.html b/webhooks.html index d64ea5b..a33c716 100644 --- a/webhooks.html +++ b/webhooks.html @@ -507,7 +507,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Feb 19, 2013 at 01:56 PM. + Last updated on Feb 26, 2013 at 04:25 PM. </div> </body> </html> \ No newline at end of file From 89f3d71c3fa0fb55fc444eb932498ded6c5ee2c8 Mon Sep 17 00:00:00 2001 From: Hernan Ciudad <hernan@myemma.com> Date: Tue, 5 Mar 2013 16:22:20 -0600 Subject: [PATCH 033/219] Update audience documentation. --- api/external/fields.html | 2 +- api/external/groups.html | 2 +- api/external/mailings.html | 2 +- api/external/members.html | 2 +- api/external/response.html | 2 +- api/external/searches.html | 4 ++-- api/external/triggers.html | 8 ++++---- api/external/webhooks.html | 2 +- genindex.html | 2 +- http-routingtable.html | 2 +- index.html | 2 +- member_search.html | 2 +- pagination.html | 2 +- php_get_member_example.html | 2 +- php_signup_example.html | 2 +- placeholders.html | 2 +- search.html | 2 +- searchindex.js | 2 +- webhooks.html | 2 +- 19 files changed, 23 insertions(+), 23 deletions(-) diff --git a/api/external/fields.html b/api/external/fields.html index f209521..a78eb33 100644 --- a/api/external/fields.html +++ b/api/external/fields.html @@ -415,7 +415,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Feb 26, 2013 at 04:25 PM. + Last updated on Mar 05, 2013 at 04:22 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/groups.html b/api/external/groups.html index 71560c0..33ccd2f 100644 --- a/api/external/groups.html +++ b/api/external/groups.html @@ -702,7 +702,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Feb 26, 2013 at 04:25 PM. + Last updated on Mar 05, 2013 at 04:22 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/mailings.html b/api/external/mailings.html index affdfc4..dff581f 100644 --- a/api/external/mailings.html +++ b/api/external/mailings.html @@ -810,7 +810,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Feb 26, 2013 at 04:25 PM. + Last updated on Mar 05, 2013 at 04:22 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/members.html b/api/external/members.html index 77b32c2..fd6a2d2 100644 --- a/api/external/members.html +++ b/api/external/members.html @@ -1217,7 +1217,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Feb 26, 2013 at 04:25 PM. + Last updated on Mar 05, 2013 at 04:22 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/response.html b/api/external/response.html index f453272..cecfb78 100644 --- a/api/external/response.html +++ b/api/external/response.html @@ -1019,7 +1019,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Feb 26, 2013 at 04:25 PM. + Last updated on Mar 05, 2013 at 04:22 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/searches.html b/api/external/searches.html index cee4124..5172be6 100644 --- a/api/external/searches.html +++ b/api/external/searches.html @@ -199,7 +199,7 @@ <h1>Searches<a class="headerlink" href="#searches" title="Permalink to this head "name": "Test Search", "criteria": "[\"or\", [\"group\", \"eq\", \"Monthly Newsletter\"],[\"group\", \"eq\", \"Widget Buyers\"]]", "deleted_at": null, - "last_run_at": "@D:2013-02-26T16:25:18", + "last_run_at": "@D:2013-03-05T16:22:10", "active_count": 2, "account_id": 100 } @@ -511,7 +511,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Feb 26, 2013 at 04:25 PM. + Last updated on Mar 05, 2013 at 04:22 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/triggers.html b/api/external/triggers.html index 53fae05..f0cf0ae 100644 --- a/api/external/triggers.html +++ b/api/external/triggers.html @@ -148,7 +148,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": 203, "push_offset_units": "0:-14:0:0", - "start_ts": "@D:2013-02-26T16:25:14", + "start_ts": "@D:2013-03-05T16:22:07", "trigger_id": 100, "signups": null, "push_offset": "@I:-1209600.0", @@ -189,7 +189,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": null, "push_offset_units": "0:3:0:0", - "start_ts": "@D:2013-02-26T16:25:14", + "start_ts": "@D:2013-03-05T16:22:07", "trigger_id": 101, "signups": [ 1, @@ -326,7 +326,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": 203, "push_offset_units": "0:-14:0:0", - "start_ts": "@D:2013-02-26T16:25:14", + "start_ts": "@D:2013-03-05T16:22:07", "trigger_id": 100, "signups": null, "push_offset": "@I:-1209600.0", @@ -499,7 +499,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Feb 26, 2013 at 04:25 PM. + Last updated on Mar 05, 2013 at 04:22 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/webhooks.html b/api/external/webhooks.html index 1bc9e02..42a09eb 100644 --- a/api/external/webhooks.html +++ b/api/external/webhooks.html @@ -487,7 +487,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Feb 26, 2013 at 04:25 PM. + Last updated on Mar 05, 2013 at 04:22 PM. </div> </body> </html> \ No newline at end of file diff --git a/genindex.html b/genindex.html index 42c86fa..4eb61de 100644 --- a/genindex.html +++ b/genindex.html @@ -146,7 +146,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Feb 26, 2013 at 04:25 PM. + Last updated on Mar 05, 2013 at 04:22 PM. </div> </body> </html> \ No newline at end of file diff --git a/http-routingtable.html b/http-routingtable.html index 4debe21..8b8d91d 100644 --- a/http-routingtable.html +++ b/http-routingtable.html @@ -607,7 +607,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Feb 26, 2013 at 04:25 PM. + Last updated on Mar 05, 2013 at 04:22 PM. </div> </body> </html> \ No newline at end of file diff --git a/index.html b/index.html index 85d2a80..83c3e0a 100644 --- a/index.html +++ b/index.html @@ -324,7 +324,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Feb 26, 2013 at 04:25 PM. + Last updated on Mar 05, 2013 at 04:22 PM. </div> </body> </html> \ No newline at end of file diff --git a/member_search.html b/member_search.html index 1d04d4d..12b6d1d 100644 --- a/member_search.html +++ b/member_search.html @@ -256,7 +256,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Feb 26, 2013 at 04:25 PM. + Last updated on Mar 05, 2013 at 04:22 PM. </div> </body> </html> \ No newline at end of file diff --git a/pagination.html b/pagination.html index 8215b52..9b4ae6f 100644 --- a/pagination.html +++ b/pagination.html @@ -168,7 +168,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Feb 26, 2013 at 04:25 PM. + Last updated on Mar 05, 2013 at 04:22 PM. </div> </body> </html> \ No newline at end of file diff --git a/php_get_member_example.html b/php_get_member_example.html index 32e93e7..c757e92 100644 --- a/php_get_member_example.html +++ b/php_get_member_example.html @@ -183,7 +183,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Feb 26, 2013 at 04:25 PM. + Last updated on Mar 05, 2013 at 04:22 PM. </div> </body> </html> \ No newline at end of file diff --git a/php_signup_example.html b/php_signup_example.html index bda20b2..c19e94b 100644 --- a/php_signup_example.html +++ b/php_signup_example.html @@ -205,7 +205,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Feb 26, 2013 at 04:25 PM. + Last updated on Mar 05, 2013 at 04:22 PM. </div> </body> </html> \ No newline at end of file diff --git a/placeholders.html b/placeholders.html index 728ed27..7fb341f 100644 --- a/placeholders.html +++ b/placeholders.html @@ -183,7 +183,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Feb 26, 2013 at 04:25 PM. + Last updated on Mar 05, 2013 at 04:22 PM. </div> </body> </html> \ No newline at end of file diff --git a/search.html b/search.html index f17c47e..a84d3e5 100644 --- a/search.html +++ b/search.html @@ -153,7 +153,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Feb 26, 2013 at 04:25 PM. + Last updated on Mar 05, 2013 at 04:22 PM. </div> </body> </html> \ No newline at end of file diff --git a/searchindex.js b/searchindex.js index d1df374..739c494 100644 --- a/searchindex.js +++ b/searchindex.js @@ -1 +1 @@ -Search.setIndex({objects:{"":{"/#account_id/members/#member_id/groups/remove":[8,1,1,"put--#account_id-members-#member_id-groups-remove"],"/#account_id/mailings/#mailing_id/winner/#winner_id":[9,2,1,"post--#account_id-mailings-#mailing_id-winner-#winner_id"],"/#account_id/response/#mailing_id/in_progress":[5,0,1,"get--#account_id-response-#mailing_id-in_progress"],"/#account_id/members/groups/remove":[8,1,1,"put--#account_id-members-groups-remove"],"/#account_id/mailings/#mailing_id/searches":[9,0,1,"get--#account_id-mailings-#mailing_id-searches"],"/#account_id/fields":[10,2,1,"post--#account_id-fields"],"/#account_id/members/#group_id/copy":[8,1,1,"put--#account_id-members-#group_id-copy"],"/#account_id/members/status":[8,1,1,"put--#account_id-members-status"],"/#account_id/response/#mailing_id/shares/overview":[5,0,1,"get--#account_id-response-#mailing_id-shares-overview"],"/#account_id/webhooks/events":[4,0,1,"get--#account_id-webhooks-events"],"/#account_id/members/#member_id/optout":[8,0,1,"get--#account_id-members-#member_id-optout"],"/#account_id/webhooks":[4,3,1,"delete--#account_id-webhooks"],"/#account_id/fields/#field_id":[10,3,1,"delete--#account_id-fields-#field_id"],"/#account_id/response/#mailing_id":[5,0,1,"get--#account_id-response-#mailing_id"],"/#account_id/groups/#member_group_id/members/remove":[13,3,1,"delete--#account_id-groups-#member_group_id-members-remove"],"/#account_id/searches":[7,2,1,"post--#account_id-searches"],"/#account_id/members/imports":[8,0,1,"get--#account_id-members-imports"],"/#account_id/forwards/#mailing_id/#member_id":[9,2,1,"post--#account_id-forwards-#mailing_id-#member_id"],"/#account_id/response/#mailing_id/customer_share_clicks":[5,0,1,"get--#account_id-response-#mailing_id-customer_share_clicks"],"/#account_id/mailings/#mailing_id/messages/#member_id":[9,0,1,"get--#account_id-mailings-#mailing_id-messages-#member_id"],"/#account_id/members/#member_id/mailings":[8,0,1,"get--#account_id-members-#member_id-mailings"],"/#account_id/groups/#from_group_id/#to_group_id/members/copy":[13,1,1,"put--#account_id-groups-#from_group_id-#to_group_id-members-copy"],"/#account_id/triggers":[14,2,1,"post--#account_id-triggers"],"/#account_id/triggers/#trigger_id":[14,3,1,"delete--#account_id-triggers-#trigger_id"],"/#account_id/members/delete":[8,1,1,"put--#account_id-members-delete"],"/#account_id/mailings/#mailing_id/groups":[9,0,1,"get--#account_id-mailings-#mailing_id-groups"],"/#account_id/response/#mailing_id/forwards":[5,0,1,"get--#account_id-response-#mailing_id-forwards"],"/#account_id/members/#member_id":[8,3,1,"delete--#account_id-members-#member_id"],"/#account_id/triggers/#trigger_id/mailings":[14,0,1,"get--#account_id-triggers-#trigger_id-mailings"],"/#account_id/searches/#search_id/members":[7,0,1,"get--#account_id-searches-#search_id-members"],"/#account_id/members/status/:status_from/to/:status_to":[8,1,1,"put--#account_id-members-status--status_from-to--status_to"],"/#account_id/response/#mailing_id/sends":[5,0,1,"get--#account_id-response-#mailing_id-sends"],"/#account_id/members":[8,3,1,"delete--#account_id-members"],"/#account_id/members/email/:email":[8,0,1,"get--#account_id-members-email--email"],"/#account_id/response/#mailing_id/links":[5,0,1,"get--#account_id-response-#mailing_id-links"],"/#account_id/searches/#search_id":[7,3,1,"delete--#account_id-searches-#search_id"],"/#account_id/members/imports/#import_id/members":[8,0,1,"get--#account_id-members-imports-#import_id-members"],"/#account_id/fields/#field_id/clear":[10,2,1,"post--#account_id-fields-#field_id-clear"],"/#account_id/groups/#member_group_id/members":[13,3,1,"delete--#account_id-groups-#member_group_id-members"],"/#account_id/members/imports/#import_id":[8,0,1,"get--#account_id-members-imports-#import_id"],"/#account_id/response":[5,0,1,"get--#account_id-response"],"/#account_id/response/#mailing_id/opens":[5,0,1,"get--#account_id-response-#mailing_id-opens"],"/#account_id/members/imports/delete":[8,3,1,"delete--#account_id-members-imports-delete"],"/#account_id/mailings":[9,0,1,"get--#account_id-mailings"],"/#account_id/mailings/cancel/#mailing_id":[9,3,1,"delete--#account_id-mailings-cancel-#mailing_id"],"/#account_id/mailings/validate":[9,2,1,"post--#account_id-mailings-validate"],"/#account_id/response/#mailing_id/deliveries":[5,0,1,"get--#account_id-response-#mailing_id-deliveries"],"/#account_id/mailings/#mailing_id/members":[9,0,1,"get--#account_id-mailings-#mailing_id-members"],"/#account_id/response/#share_id/customer_share":[5,0,1,"get--#account_id-response-#share_id-customer_share"],"/#account_id/webhooks/#webhook_id":[4,3,1,"delete--#account_id-webhooks-#webhook_id"],"/#account_id/members/add":[8,2,1,"post--#account_id-members-add"],"/#account_id/members/email/optout/:email":[8,1,1,"put--#account_id-members-email-optout--email"],"/#account_id/response/#mailing_id/optouts":[5,0,1,"get--#account_id-response-#mailing_id-optouts"],"/#account_id/response/#mailing_id/shares":[5,0,1,"get--#account_id-response-#mailing_id-shares"],"/#account_id/groups/#member_group_id":[13,3,1,"delete--#account_id-groups-#member_group_id"],"/#account_id/mailings/#mailing_id":[9,3,1,"delete--#account_id-mailings-#mailing_id"],"/#account_id/members/#member_id/groups":[8,3,1,"delete--#account_id-members-#member_id-groups"],"/#account_id/groups":[13,2,1,"post--#account_id-groups"],"/#account_id/response/#mailing_id/clicks":[5,0,1,"get--#account_id-response-#mailing_id-clicks"],"/#account_id/mailings/#mailing_id/headsup":[9,0,1,"get--#account_id-mailings-#mailing_id-headsup"],"/#account_id/response/#mailing_id/signups":[5,0,1,"get--#account_id-response-#mailing_id-signups"],"/#account_id/response/#mailing_id/customer_shares":[5,0,1,"get--#account_id-response-#mailing_id-customer_shares"]}},terms:{all:[0,1,4,5,8,9,10,11,12,13,14],code:[0,1,6,3],change_typ:8,queri:[0,2,4],month:[0,5,9,14],four:[0,5],mile:0,least:0,field_creat:[12,4],link_target:[5,9],content:[1,11,6,9,3],privat:1,specif:[8,9,4],friendli:5,send:[1,9,4,3,5],customer_share_click:5,those:[5,12],group_upd:[12,4],sent:[5,8,12,9,14],curl_clos:[1,6,3],brown:[7,8],digit:5,everi:0,string:[0,4,5,7,8,9,10,12,13,14],fals:[1,3,4,5,6,7,8,9,10,13,14],webhook:[1,12,4],mailing_status:9,trigger_id:14,webview_share_click:5,affect:[7,8],member_add:[12,4],create_mail:9,new_boolean:10,foo:0,level:1,group_delet:[12,4],list:[0,1,2,4,5,7,8,9,10,11,12,13,14],upload:8,iter:2,"try":8,item:2,plaintext_onli:[9,14],div:[4,5,7,8,9,10,13,14],survey_id:14,pleas:[1,8,11,9],prevent:2,work:[1,4],ten:0,sync:10,sign:[0,5,4],past:1,second:[0,7,14],follow:[0,1,4,5,7,9,11,13],further:1,durat:9,click:[0,4,5,7,8,12,14],append:2,even:10,what:1,hide:[4,5,7,8,9,10,13,14],appear:[1,8],from_group_id:13,section:1,current:[8,12,9],delet:[1,4,7,8,9,10,12,13,14],"new":[1,4,5,7,8,9,10,11,13,14],net:[1,2,6,3],delivery_t:8,method:[5,8,13,4,9],can:[0,1,2,4,5,7,8,9,11,12,13],widget:[7,10,8,9,13],hash:0,datematch:0,displai:10,variat:9,gener:[0,8,12,14],onli:[5,8],here:[0,1,3,5,6,8],bodi:9,let:[1,4,10],address:[0,1,8,6,9],along:8,sinc:8,valu:[0,5,7,8,10,11],field_upd:[12,4],search:[0,1,8,9,7],survei:14,sender:[9,14],larger:2,queue:5,prior:9,action:[0,8],chang:[8,4],campaign:5,newbi:5,appli:[7,14],prefer:0,myemma:[4,5,7,8,9,13],filenam:8,customer_shar:5,"boolean":[0,1,5,7,8,9,10,13,14],curlopt_postfield:[1,3],total:5,jone:[7,5,8,13],select:10,newslett:[7,8,13],describ:7,would:[0,1],regist:4,two:[0,5],next:[0,1],create_webhook:4,few:[5,8],call:[1,2,3,4,6,8,12],criteria:7,member_add_to_group:[12,4],type:[1,3,4,5,6,7,10,9,14],until:2,more:[0,4,7,8,9,13],peopl:5,relat:[1,8,11,9],about:[10,8,12,4,9],notic:8,thide:[4,5,7,8,9,10,13,14],flag:[5,7,8,10,9,14],exce:2,indic:8,examin:1,particular:[1,4,5,8,10,12,9],in_progress:5,origin:9,must:[0,7,13,10],none:9,endpoint:[1,4,5,7,8,9,10,13,14],join:[0,7],hour:0,setup:1,member_sinc:[0,5,7,8,9,13],uniqu:5,histori:8,soup:7,remain:[0,9],archiv:[5,9],member_optout:[12,4],drill:5,control:[1,11,9],quickstart:1,give:5,forward_mailing_id:5,email_domain:[0,5],share:[0,5,8,12,4],accept:[0,5,7,8,9,10,11,13,14],total_click:5,tag:[11,9],want:[1,12,13,5],occur:[7,12],some_numeric_field:0,delai:14,alwai:0,webhook_event_id:4,cours:1,end:[2,8],first_nam:[1,3,5,7,8,9,10,11,13,14],started_or_finish:[9,14],anoth:[9,13],get:[1,4,5,6,7,8,9,10,13,14],message_open:[12,4],html_bodi:[9,14],share_statu:5,push_offset:14,del_statu:5,tild:5,num_members_upd:8,simpl:0,chri:9,pizza:[7,8],map:0,autent:1,referenc:7,xxxx:6,sundai:0,membership:13,taco:[7,5,8,9,13],mai:12,multipl:[10,8],data:[1,3,4,5,10,12],welcom:11,add_onli:8,"short":0,json_encod:[1,3],optout:[5,8,12,13],num_dupl:8,favorit:10,correspond:[0,1],greet:11,predic:[0,1],issu:[1,10],"12t11":[7,5,8,9,13],combin:7,allow:[0,7,8],some_zipcode_field:0,signed_up:5,order:[5,10],michel:[8,9],mailing_nam:5,checkbox:10,fields_upd:8,over:2,becaus:12,buyer:[7,8,9,13],comma:[9,13],is_dis:14,vari:8,paramet:[2,4,5,7,8,9,10,13,14],widget_typ:10,style:[0,4,5,7,8,9,10,13,14],group:[0,1,3,4,7,8,9,12,13,14],curl_setopt:[1,6,3],how:[7,1,2,4],import_start:8,better:[13,14],platform:1,pend:[1,9],mailing_list:9,onc:9,mail:[0,1,4,5,8,11,12,9,14],hidden:13,main:1,might:[1,4],link_nam:[5,9],them:[8,9],"return":[0,1,4,5,7,8,9,10,12,13,14],greater:[0,8],thei:[0,9],food:10,timestamp:[0,5,12,9,10],spell:4,dai:0,auth:1,"26t16":[7,14],instead:[12,2,8],now:5,down:5,term:[0,1],alex:9,name:[0,4,5,7,8,9,10,11,13,14],edit:[7,1,14,10],curl_getinfo:[1,6,3],authent:[1,6,4,3],successufulli:4,separ:[1,9,13],each:[1,2,5,9,12,11,13],found:[8,9,4,14],updat:[4,7,8,9,10,12,13,14],mean:0,status:[8,9],domain:0,shortcut_nam:10,weight:[4,5,7,8,9,10,13,14],resum:9,individu:[5,8],hard:[0,5],last_nam:[1,3,5,7,8,9,10,11,13,14],"05t15":5,birthdai:[10,14],expect:1,year:[0,5,9,14],our:[1,11,12,4,14],happen:[1,4,5],extract:11,short_display_nam:10,special:[0,7,8,13],out:[0,1,4,5,7,8,10,13],variabl:[1,6,3],message_shar:[12,4],network:[5,12],private_api_kei:[1,6,3],check_multipl:10,categori:1,rel:0,print:6,correct:10,statist:8,benjamin:8,qualifi:11,insid:1,advanc:0,contain:[0,5,7,13,10,9],differ:0,standard:[5,9],status_from:8,base:[5,8],recipient_search:9,dictionari:8,put:[4,7,8,9,10,13,14],"13t23":[7,5,8],visit:11,could:1,omit:5,success:[1,3,7,8,9,13],filter:[0,1,7],search_id:7,pagin:[1,2],member_id:[5,7,8,9,12,13],summari:[1,5],assign:9,first:[0,1,10,5],oper:[0,1,7,14],rang:5,notifi:12,directli:0,curlopt_ssl_verifyp:[1,6,3],curl_init:[1,6,3],number:[5,2,13,3,10],placehold:[1,11],date:[0,5,8,10,11,14],unlik:9,alreadi:[10,8,9,13],done:8,plaintext_pref:[7,8,9,13],oppos:8,open:[0,3,4,5,6,7,8,12],payload:4,fanci:5,size:2,given:[0,8,9,4],"long":10,script:1,associ:[1,8,9,4,5],system:[8,12,4,14],messag:[4,5,8,12,11,9,14],attach:11,friend:11,curlinfo_http_cod:[1,6,3],shell:0,option:[0,5,7,8,9,10,13,14],especi:8,signup:[0,1,3,4,5,8,12,14],copi:[8,13],member_upd:[12,4],specifi:[0,2,7,8,10,11,9,14],curl_exec:[1,6,3],curlopt_httphead:[1,6,3],member_signup:[12,4],create_search:7,part:[0,9],enclos:11,than:[0,1,2,3,12,13],with_plaintext:9,"02t10":[5,8],"02t11":[5,8],"02t13":5,nathan:8,whenev:8,provid:[1,5,8,12,9,14],remov:[12,8,13,4],mailing_start:4,rate:2,structur:7,charact:9,greg:8,trackabl:11,were:5,minut:0,danc:1,error_count:[7,8,9,13],pre:[4,5,7,8,9,10,13,14],cleaner:1,sai:0,share_id:5,signup_form_id:[0,8,12,9,14],plaintext:[5,9,14],pass:[1,3],ani:[0,1,2,7,8,9],have:[0,5,8,12,9],tabl:5,seen:5,"null":[7,8,13,10,9,14],kevin:[9,14],signup_mail:0,caus:14,inform:[1,4,6,8,9,10,13],object_id:14,note:[1,8,9,4],also:[0,4,5,7,8,9,11,13],exampl:[0,1,3,5,6,7,11],take:[0,4],which:[0,1,4,8,10,12,9,14],some_number_field:0,singl:[0,1,3,4,5,8,10,12,13],excit:11,sure:1,delete_memb:13,normal:9,parent_mail:14,recipient_count:[5,9,14],previou:9,field_id:[10,12,14],last_run_at:7,most:14,pair:11,"class":[4,5,7,8,9,10,13,14],member_group_id:[8,9,13],mcconnel:[9,14],url:[1,3,4,5,6,12],mailing_finish:[12,4],clear:10,request:[1,2,3],doe:[0,5,7,8,9,10,13],member_status_upd:[12,4],declar:9,tech:4,determin:1,dataset:10,dow:0,recipi:9,"6db0cc7e6fdb2da589b65f29d90c96b6":9,show:[4,5,7,8,9,10,11,13,14],text:[10,11,12],radiu:0,syntax:[0,1,11,9],radio:10,font:[4,5,7,8,9,10,13,14],fine:9,find:[1,6,5],status_to:8,toast:[7,5,8,13],access:[1,5],giant:12,just:[0,9],pretti:8,column_ord:10,explain:[0,1],winner:9,activ:[1,5,7,8,13,9],figur:1,should:[1,2,3,7,8,11,9],templat:[11,14],share_count:5,count:[1,2,3,5],variou:[8,13],confirmed_opt_in:[7,8,9,13],familiar:1,express:0,account:[1,4,5,7,8,10,13,14],cannot:[8,9,4],progress:9,report:[10,8],requir:[1,7,8,10,11,9],object:[5,13],favorite_food:[5,7,8,13,10,9],bar:0,organ:1,include_archiv:[5,9],"public":1,"default":[5,11,13,4,9],ref_member_id:5,message_share_click:[12,4],through:[1,8,4],where:[0,1,8,11,7],view:1,set:[0,1,2,3,6,8,9,12,13],link_id:[0,5,12,9,14],see:[7,1,8],result:[0,1,2,5,8,9],respons:[0,1,2,4,5,7,8,9,10,13,14],fail:[5,9,4],themselv:2,member_field:[0,7],xxxxx:6,subject:[8,12,9,14],statu:[1,4,5,7,8,9,12,13],fancyonion:11,kei:[0,1,8,11,4],is_schedul:9,message_forward:[12,4],databas:8,user:[0,8,9,13],last_modified_at:[7,8,9,13],addresse:5,written:1,between:[0,7,2],"import":[1,8,12,4,10],subscript:[1,3],entiti:1,curlopt_url:[1,6,3],email:[0,1,3,5,6,7,8,9,13],wide:14,extend:1,numer:10,http404:[4,5,7,8,9,10,13,14],job:13,entir:[0,8],share_click:5,to_group_id:13,curlopt_returntransf:[1,6,3],addit:[0,1,8,9,11,13],member_remove_from_group:[12,4],send_start:[0,9,14],protect:1,accident:2,last:[0,5,10],delimit:5,pertain:5,message_click:[12,4],curlopt_post:[1,3],audienc:[1,8,9],mang:0,http500:14,seri:5,com:[4,5,6,7,8,9,11,13],zip_code_field:0,"03t15":[7,5,8,13],point:1,toni:[7,8],overview:[0,1,11,12,5],period:1,winner_id:9,colon:[7,11],optout_count:[7,8,9,13],suppli:9,cancel:9,tuesdai:0,duplic:5,quit:[5,8],user_id:4,recur:14,headsup:9,addition:[1,2],due:5,been:[1,8,10,5],mark:[8,9],whom:9,tshow:[4,5,7,8,9,10,13,14],trigger:[1,4,5,7,8,9,10,12,13,14],unsubscrib:0,treat:8,interest:[10,4],basic:[0,1,4,8,13,14],monthli:[7,8,13],blob:4,mailing_mailing_id:5,mailing_id:[0,5,8,12,9,14],fire:[8,4,14],xxx:[1,3],argument:[0,5],link_ord:[5,9],input:1,present:7,clicked_uniqu:5,"case":[1,8],look:[1,14,10],frozen:9,easier:12,email_error:[7,8,9,13],defin:[0,10,8,9],"while":0,outcom:5,abov:[0,1,8,7],error:[1,3,6,8,10,13],loop:8,opt:[0,4,5,7,8,13],readi:9,deliv:5,recipient_group:9,equal:0,itself:0,new_statu:12,webhook_id:4,recipient_memb:9,perform:8,make:[1,12,6,10],belong:[0,8,4],same:4,check:[8,6,9],member:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14],handl:1,html:9,split:9,document:[1,11,12],complet:[1,3,4,6,8,9],week:0,finish:[5,12,4],http:[1,2,3,4,5,6,11,9],href:[4,5,7,8,9,10,13,14],nest:0,someon:4,rais:[4,5,7,8,9,10,13,14],initi:[10,9],php:[1,6,3],bob:[7,5],recent:[1,8],kept:11,center:0,min:5,well:5,inherit:9,person:9,mailing_typ:[9,14],without:0,command:1,thi:[0,1,4,5,7,8,9,10,12,13,14],undefin:0,http_code:[1,6,3],latest:11,construct:[0,7,9],identifi:8,paus:9,execut:[1,3],less:0,resp:[4,5,7,8,9,10,13,14],"_post":[1,3],against:0,aspect:13,recipient_email:9,source_filenam:8,yet:5,smith:[7,5,8,9,13],"12t09":[7,8],display_nam:10,easi:[10,12],"01t00":8,had:0,littl:1,blog:4,add:[12,1,8,13,3],other:[1,8,9,3,5],curlopt_userpwd:[1,6,3],import_finish:[8,12,4],schedul:9,els:[1,6,3],save:7,match:[0,7],build:1,sanit:1,applic:[1,6,3],account_id:[1,3,4,5,6,7,8,9,10,12,13,14],disposit:1,crud:[8,13,14],print_r:[6,3],mailing_statu:[9,14],know:[5,4],background:13,parent_mailing_id:[9,14],bit:1,insert:11,emma:[1,5,7,8,9,12,13],like:1,onion:11,deprec:4,arbitrari:8,manual:9,integ:[1,8,14,10,5],public_kei:4,api:[1,2,3,6,8,12],either:[0,5,7],bunch:0,output:9,group_id:[1,8,12,3],soft:[0,5],manag:[0,1,13,4],import_id:[8,12],www:[5,9],old:7,deal:[8,13],captur:1,arrai:[0,1,3,5,6,7,8,9,10,12,13,14],some:[1,11,5],field_delet:[12,4],certain:12,intern:10,sampl:[1,4,5,7,8,9,10,13,14],elaps:[2,9],home:11,deleted_at:[7,8,13,10,9,14],some_string_field:0,librari:11,bounce_count:[7,8,9,13],confirm:8,broad:12,per:5,send_finish:[9,14],larg:[0,2],condit:7,three:9,network_cod:12,localhost:9,refer:[5,7,8,13,10,9],with_html_bodi:9,who:[0,5,8],bold:[4,5,7,8,9,10,13,14],event_typ:14,inspect:1,usag:[1,8,12],num_members_ad:8,fulli:11,from:[1,4,8,9,12,13,14],post:[1,3,4,7,8,9,10,12,13,14],group_creat:[12,4],gladi:[7,5,8,13],actual:5,zip:0,groups_upd:8,column:10,page:2,includ:[1,5,7,8,9,10,13],webview:9,disabl:[9,14],block:[1,2],yyyi:5,member_data:[1,3],glob:0,bounc:[0,5],within:[0,8],encod:[9,4],delivery_typ:[5,8],compos:0,webview_shar:5,field_typ:10,active_count:[7,8,9,13],public_webview_url:9,pivot:5,your:[1,4,5,7,8,9,10,13],websit:11,span:[4,5,7,8,9,10,13,14],wai:[1,12],area:1,overus:2,group_nam:[8,12,13,9],support:12,unique_click:5,json:[0,1,3,4,6,7],fast:8,custom:[5,8,11,10],avail:[0,11,4],start:[1,2,8,4],interfac:12,send_at:[9,14],exceed:2,"var":3,interv:[0,14],deliveri:5,head:[1,6,9,3],form:[1,3,4,6,8,10,14],enough:2,forc:1,forward:[0,4,5,8,12,9],"31st":0,group_typ:[8,9,13],push_offset_unit:14,link:[0,4,5,11,9,14],line:[1,5],realli:1,"true":[0,1,2,3,4,6,7,8,9,10,13,14],archived_t:[9,14],info:4,pull:2,made:1,possibl:[5,8,12],whether:8,maximum:2,tell:12,http403:9,record:[0,7,8],below:[0,1,8,12],http400:[7,8,9],limit:[5,2,8,9],some_array_field:0,otherwis:[10,8],start_t:14,mta:5,connect:[6,3],notif:9,creat:[4,5,7,9,10,12,13,14],"int":5,retriev:[7,1,2,8,9],email_us:[0,5],repres:5,exist:[0,4,5,7,8,10,13],behavior:11,curl:[1,6],lentil:7,probabl:14,echo:[1,3],successfulli:[5,8,9],mailing_subject:12,grp:13,todo:11,when:[8,12,4,9],detail:[1,4,7,8,9,10,13],invalid:[7,8,9],event:[4,7,8,13,12,9,14],field:[0,1,3,4,5,7,8,9,10,11,12,13,14],valid:[5,8,9,13],futur:1,num_skip:8,test:[5,6,7,13,9,14],ignor:8,you:[0,1,2,4,5,7,8,9,10,11,12,13],member_delet:[12,4],member_status_id:[7,5,8,9,13],public_api_kei:[1,6,3],stat:[5,9],claus:[0,7],event_nam:[12,4],e2ma:[1,2,6,3],error_messag:8,param:[9,4],app_messag:[1,3],ella:8,bulk:[1,8],receiv:[0,2,5,8,12,9],heads_up_email:9,longer:9,descript:[4,14],portion:0,opted_out:5,time:[1,2,8,13,5],reply_to:[9,14],resource_url:12,hello:[11,9,14]},objtypes:{"0":"http:get","1":"http:put","2":"http:post","3":"http:delete"},titles:["Search Syntax","Emma API","Pagination","PHP Signup Example","Webhooks","Response","PHP Get Member By Email Example","Searches","Members","Mailings","Fields","Placeholder Syntax","Webhook Usage","Groups","Triggers"],objnames:{"0":["http","get","HTTP get"],"1":["http","put","HTTP put"],"2":["http","post","HTTP post"],"3":["http","delete","HTTP delete"]},filenames:["member_search","index","pagination","php_signup_example","api/external/webhooks","api/external/response","php_get_member_example","api/external/searches","api/external/members","api/external/mailings","api/external/fields","placeholders","webhooks","api/external/groups","api/external/triggers"]}) \ No newline at end of file +Search.setIndex({objects:{"":{"/#account_id/members/#member_id/groups/remove":[8,1,1,"put--#account_id-members-#member_id-groups-remove"],"/#account_id/mailings/#mailing_id/winner/#winner_id":[9,2,1,"post--#account_id-mailings-#mailing_id-winner-#winner_id"],"/#account_id/response/#mailing_id/in_progress":[5,0,1,"get--#account_id-response-#mailing_id-in_progress"],"/#account_id/members/groups/remove":[8,1,1,"put--#account_id-members-groups-remove"],"/#account_id/mailings/#mailing_id/searches":[9,0,1,"get--#account_id-mailings-#mailing_id-searches"],"/#account_id/fields":[10,2,1,"post--#account_id-fields"],"/#account_id/members/#group_id/copy":[8,1,1,"put--#account_id-members-#group_id-copy"],"/#account_id/members/status":[8,1,1,"put--#account_id-members-status"],"/#account_id/response/#mailing_id/shares/overview":[5,0,1,"get--#account_id-response-#mailing_id-shares-overview"],"/#account_id/webhooks/events":[4,0,1,"get--#account_id-webhooks-events"],"/#account_id/members/#member_id/optout":[8,0,1,"get--#account_id-members-#member_id-optout"],"/#account_id/webhooks":[4,3,1,"delete--#account_id-webhooks"],"/#account_id/fields/#field_id":[10,3,1,"delete--#account_id-fields-#field_id"],"/#account_id/response/#mailing_id":[5,0,1,"get--#account_id-response-#mailing_id"],"/#account_id/groups/#member_group_id/members/remove":[13,3,1,"delete--#account_id-groups-#member_group_id-members-remove"],"/#account_id/searches":[7,2,1,"post--#account_id-searches"],"/#account_id/members/imports":[8,0,1,"get--#account_id-members-imports"],"/#account_id/forwards/#mailing_id/#member_id":[9,2,1,"post--#account_id-forwards-#mailing_id-#member_id"],"/#account_id/response/#mailing_id/customer_share_clicks":[5,0,1,"get--#account_id-response-#mailing_id-customer_share_clicks"],"/#account_id/mailings/#mailing_id/messages/#member_id":[9,0,1,"get--#account_id-mailings-#mailing_id-messages-#member_id"],"/#account_id/members/#member_id/mailings":[8,0,1,"get--#account_id-members-#member_id-mailings"],"/#account_id/groups/#from_group_id/#to_group_id/members/copy":[13,1,1,"put--#account_id-groups-#from_group_id-#to_group_id-members-copy"],"/#account_id/triggers":[14,2,1,"post--#account_id-triggers"],"/#account_id/triggers/#trigger_id":[14,3,1,"delete--#account_id-triggers-#trigger_id"],"/#account_id/members/delete":[8,1,1,"put--#account_id-members-delete"],"/#account_id/mailings/#mailing_id/groups":[9,0,1,"get--#account_id-mailings-#mailing_id-groups"],"/#account_id/response/#mailing_id/forwards":[5,0,1,"get--#account_id-response-#mailing_id-forwards"],"/#account_id/members/#member_id":[8,3,1,"delete--#account_id-members-#member_id"],"/#account_id/triggers/#trigger_id/mailings":[14,0,1,"get--#account_id-triggers-#trigger_id-mailings"],"/#account_id/searches/#search_id/members":[7,0,1,"get--#account_id-searches-#search_id-members"],"/#account_id/members/status/:status_from/to/:status_to":[8,1,1,"put--#account_id-members-status--status_from-to--status_to"],"/#account_id/response/#mailing_id/sends":[5,0,1,"get--#account_id-response-#mailing_id-sends"],"/#account_id/members":[8,3,1,"delete--#account_id-members"],"/#account_id/members/email/:email":[8,0,1,"get--#account_id-members-email--email"],"/#account_id/response/#mailing_id/links":[5,0,1,"get--#account_id-response-#mailing_id-links"],"/#account_id/searches/#search_id":[7,3,1,"delete--#account_id-searches-#search_id"],"/#account_id/members/imports/#import_id/members":[8,0,1,"get--#account_id-members-imports-#import_id-members"],"/#account_id/fields/#field_id/clear":[10,2,1,"post--#account_id-fields-#field_id-clear"],"/#account_id/groups/#member_group_id/members":[13,3,1,"delete--#account_id-groups-#member_group_id-members"],"/#account_id/members/imports/#import_id":[8,0,1,"get--#account_id-members-imports-#import_id"],"/#account_id/response":[5,0,1,"get--#account_id-response"],"/#account_id/response/#mailing_id/opens":[5,0,1,"get--#account_id-response-#mailing_id-opens"],"/#account_id/members/imports/delete":[8,3,1,"delete--#account_id-members-imports-delete"],"/#account_id/mailings":[9,0,1,"get--#account_id-mailings"],"/#account_id/mailings/cancel/#mailing_id":[9,3,1,"delete--#account_id-mailings-cancel-#mailing_id"],"/#account_id/mailings/validate":[9,2,1,"post--#account_id-mailings-validate"],"/#account_id/response/#mailing_id/deliveries":[5,0,1,"get--#account_id-response-#mailing_id-deliveries"],"/#account_id/mailings/#mailing_id/members":[9,0,1,"get--#account_id-mailings-#mailing_id-members"],"/#account_id/response/#share_id/customer_share":[5,0,1,"get--#account_id-response-#share_id-customer_share"],"/#account_id/webhooks/#webhook_id":[4,3,1,"delete--#account_id-webhooks-#webhook_id"],"/#account_id/members/add":[8,2,1,"post--#account_id-members-add"],"/#account_id/members/email/optout/:email":[8,1,1,"put--#account_id-members-email-optout--email"],"/#account_id/response/#mailing_id/optouts":[5,0,1,"get--#account_id-response-#mailing_id-optouts"],"/#account_id/response/#mailing_id/shares":[5,0,1,"get--#account_id-response-#mailing_id-shares"],"/#account_id/groups/#member_group_id":[13,3,1,"delete--#account_id-groups-#member_group_id"],"/#account_id/mailings/#mailing_id":[9,3,1,"delete--#account_id-mailings-#mailing_id"],"/#account_id/members/#member_id/groups":[8,3,1,"delete--#account_id-members-#member_id-groups"],"/#account_id/groups":[13,2,1,"post--#account_id-groups"],"/#account_id/response/#mailing_id/clicks":[5,0,1,"get--#account_id-response-#mailing_id-clicks"],"/#account_id/mailings/#mailing_id/headsup":[9,0,1,"get--#account_id-mailings-#mailing_id-headsup"],"/#account_id/response/#mailing_id/signups":[5,0,1,"get--#account_id-response-#mailing_id-signups"],"/#account_id/response/#mailing_id/customer_shares":[5,0,1,"get--#account_id-response-#mailing_id-customer_shares"]}},terms:{all:[0,1,4,5,8,9,10,11,12,13,14],code:[0,1,6,3],change_typ:8,queri:[0,2,4],month:[0,5,9,14],four:[0,5],mile:0,least:0,field_creat:[12,4],link_target:[5,9],content:[1,11,6,9,3],privat:1,specif:[8,9,4],friendli:5,send:[1,9,4,3,5],customer_share_click:5,those:[5,12],group_upd:[12,4],sent:[5,8,12,9,14],curl_clos:[1,6,3],brown:[7,8],digit:5,everi:0,string:[0,4,5,7,8,9,10,12,13,14],fals:[1,3,4,5,6,7,8,9,10,13,14],webhook:[1,12,4],mailing_status:9,trigger_id:14,webview_share_click:5,affect:[7,8],member_add:[12,4],create_mail:9,new_boolean:10,foo:0,level:1,group_delet:[12,4],list:[0,1,2,4,5,7,8,9,10,11,12,13,14],upload:8,iter:2,"try":8,item:2,plaintext_onli:[9,14],div:[4,5,7,8,9,10,13,14],survey_id:14,pleas:[1,8,11,9],prevent:2,work:[1,4],ten:0,sync:10,sign:[0,5,4],past:1,second:[0,7,14],follow:[0,1,4,5,7,9,11,13],further:1,durat:9,click:[0,4,5,7,8,12,14],append:2,even:10,what:1,hide:[4,5,7,8,9,10,13,14],appear:[1,8],from_group_id:13,section:1,current:[8,12,9],delet:[1,4,7,8,9,10,12,13,14],"new":[1,4,5,7,8,9,10,11,13,14],net:[1,2,6,3],delivery_t:8,method:[5,8,13,4,9],can:[0,1,2,4,5,7,8,9,11,12,13],widget:[7,10,8,9,13],hash:0,datematch:0,displai:10,variat:9,gener:[0,8,12,14],onli:[5,8],here:[0,1,3,5,6,8],bodi:9,let:[1,4,10],address:[0,1,8,6,9],along:8,sinc:8,valu:[0,5,7,8,10,11],field_upd:[12,4],search:[0,1,8,9,7],survei:14,sender:[9,14],larger:2,queue:5,prior:9,action:[0,8],chang:[8,4],campaign:5,newbi:5,appli:[7,14],prefer:0,myemma:[4,5,7,8,9,13],filenam:8,customer_shar:5,"boolean":[0,1,5,7,8,9,10,13,14],curlopt_postfield:[1,3],total:5,jone:[7,5,8,13],select:10,newslett:[7,8,13],describ:7,would:[0,1],regist:4,two:[0,5],next:[0,1],create_webhook:4,few:[5,8],call:[1,2,3,4,6,8,12],criteria:7,member_add_to_group:[12,4],type:[1,3,4,5,6,7,10,9,14],until:2,more:[0,4,7,8,9,13],peopl:5,relat:[1,8,11,9],about:[10,8,12,4,9],notic:8,thide:[4,5,7,8,9,10,13,14],flag:[5,7,8,10,9,14],exce:2,indic:8,examin:1,particular:[1,4,5,8,10,12,9],in_progress:5,origin:9,must:[0,7,13,10],none:9,endpoint:[1,4,5,7,8,9,10,13,14],join:[0,7],hour:0,setup:1,member_sinc:[0,5,7,8,9,13],uniqu:5,histori:8,soup:7,remain:[0,9],archiv:[5,9],member_optout:[12,4],drill:5,control:[1,11,9],quickstart:1,give:5,forward_mailing_id:5,email_domain:[0,5],share:[0,5,8,12,4],accept:[0,5,7,8,9,10,11,13,14],total_click:5,tag:[11,9],want:[1,12,13,5],occur:[7,12],some_numeric_field:0,delai:14,alwai:0,webhook_event_id:4,cours:1,end:[2,8],first_nam:[1,3,5,7,8,9,10,11,13,14],started_or_finish:[9,14],anoth:[9,13],get:[1,4,5,6,7,8,9,10,13,14],message_open:[12,4],html_bodi:[9,14],share_statu:5,push_offset:14,del_statu:5,tild:5,num_members_upd:8,simpl:0,chri:9,pizza:[7,8],map:0,autent:1,referenc:7,xxxx:6,sundai:0,membership:13,taco:[7,5,8,9,13],mai:12,multipl:[10,8],data:[1,3,4,5,10,12],welcom:11,add_onli:8,"short":0,json_encod:[1,3],optout:[5,8,12,13],num_dupl:8,favorit:10,correspond:[0,1],greet:11,predic:[0,1],issu:[1,10],"12t11":[7,5,8,9,13],combin:7,allow:[0,7,8],some_zipcode_field:0,signed_up:5,order:[5,10],michel:[8,9],mailing_nam:5,checkbox:10,fields_upd:8,over:2,becaus:12,buyer:[7,8,9,13],comma:[9,13],is_dis:14,vari:8,paramet:[2,4,5,7,8,9,10,13,14],widget_typ:10,style:[0,4,5,7,8,9,10,13,14],group:[0,1,3,4,7,8,9,12,13,14],curl_setopt:[1,6,3],how:[7,1,2,4],import_start:8,better:[13,14],platform:1,pend:[1,9],mailing_list:9,curlopt_ssl_verifyp:[1,6,3],mail:[0,1,4,5,8,11,12,9,14],hidden:13,main:1,might:[1,4],link_nam:[5,9],them:[8,9],"return":[0,1,4,5,7,8,9,10,12,13,14],greater:[0,8],thei:[0,9],food:10,timestamp:[0,5,12,9,10],spell:4,dai:0,auth:1,instead:[12,2,8],now:5,down:5,term:[0,1],alex:9,name:[0,4,5,7,8,9,10,11,13,14],edit:[7,1,14,10],curl_getinfo:[1,6,3],authent:[1,6,4,3],successufulli:4,separ:[1,9,13],each:[1,2,5,9,12,11,13],found:[8,9,4,14],updat:[4,7,8,9,10,12,13,14],mean:0,status:[8,9],domain:0,shortcut_nam:10,weight:[4,5,7,8,9,10,13,14],resum:9,individu:[5,8],hard:[0,5],last_nam:[1,3,5,7,8,9,10,11,13,14],"05t15":5,"05t16":[7,14],expect:1,year:[0,5,9,14],our:[1,11,12,4,14],happen:[1,4,5],extract:11,short_display_nam:10,special:[0,7,8,13],out:[0,1,4,5,7,8,10,13],variabl:[1,6,3],message_shar:[12,4],network:[5,12],private_api_kei:[1,6,3],check_multipl:10,categori:1,rel:0,print:6,correct:10,statist:8,benjamin:8,qualifi:11,insid:1,advanc:0,contain:[0,5,7,13,10,9],differ:0,standard:[5,9],status_from:8,base:[5,8],recipient_search:9,dictionari:8,put:[4,7,8,9,10,13,14],"13t23":[7,5,8],visit:11,could:1,omit:5,success:[1,3,7,8,9,13],filter:[0,1,7],search_id:7,pagin:[1,2],member_id:[5,7,8,9,12,13],summari:[1,5],assign:9,first:[0,1,10,5],oper:[0,1,7,14],rang:5,notifi:12,directli:0,onc:9,curl_init:[1,6,3],number:[5,2,13,3,10],placehold:[1,11],date:[0,5,8,10,11,14],unlik:9,alreadi:[10,8,9,13],done:8,plaintext_pref:[7,8,9,13],oppos:8,open:[0,3,4,5,6,7,8,12],payload:4,fanci:5,size:2,given:[0,8,9,4],"long":10,script:1,associ:[1,8,9,4,5],system:[8,12,4,14],messag:[4,5,8,12,11,9,14],attach:11,friend:11,curlinfo_http_cod:[1,6,3],shell:0,option:[0,5,7,8,9,10,13,14],especi:8,signup:[0,1,3,4,5,8,12,14],copi:[8,13],member_upd:[12,4],specifi:[0,2,7,8,10,11,9,14],curl_exec:[1,6,3],curlopt_httphead:[1,6,3],member_signup:[12,4],create_search:7,part:[0,9],enclos:11,than:[0,1,2,3,12,13],with_plaintext:9,"02t10":[5,8],"02t11":[5,8],"02t13":5,nathan:8,whenev:8,provid:[1,5,8,12,9,14],remov:[12,8,13,4],mailing_start:4,rate:2,structur:7,charact:9,greg:8,trackabl:11,were:5,minut:0,danc:1,error_count:[7,8,9,13],pre:[4,5,7,8,9,10,13,14],cleaner:1,sai:0,share_id:5,signup_form_id:[0,8,12,9,14],plaintext:[5,9,14],pass:[1,3],ani:[0,1,2,7,8,9],have:[0,5,8,12,9],tabl:5,seen:5,"null":[7,8,13,10,9,14],kevin:[9,14],signup_mail:0,caus:14,inform:[1,4,6,8,9,10,13],object_id:14,note:[1,8,9,4],also:[0,4,5,7,8,9,11,13],exampl:[0,1,3,5,6,7,11],take:[0,4],which:[0,1,4,8,10,12,9,14],some_number_field:0,singl:[0,1,3,4,5,8,10,12,13],excit:11,sure:1,delete_memb:13,normal:9,parent_mail:14,recipient_count:[5,9,14],previou:9,field_id:[10,12,14],last_run_at:7,most:14,pair:11,"class":[4,5,7,8,9,10,13,14],member_group_id:[8,9,13],mcconnel:[9,14],url:[1,3,4,5,6,12],mailing_finish:[12,4],clear:10,request:[1,2,3],doe:[0,5,7,8,9,10,13],member_status_upd:[12,4],declar:9,tech:4,determin:1,dataset:10,dow:0,recipi:9,"6db0cc7e6fdb2da589b65f29d90c96b6":9,show:[4,5,7,8,9,10,11,13,14],text:[10,11,12],radiu:0,syntax:[0,1,11,9],radio:10,font:[4,5,7,8,9,10,13,14],fine:9,find:[1,6,5],status_to:8,toast:[7,5,8,13],access:[1,5],giant:12,just:[0,9],pretti:8,column_ord:10,explain:[0,1],winner:9,activ:[1,5,7,8,13,9],figur:1,birthdai:[10,14],should:[1,2,3,7,8,11,9],templat:[11,14],share_count:5,count:[1,2,3,5],variou:[8,13],confirmed_opt_in:[7,8,9,13],familiar:1,express:0,account:[1,4,5,7,8,10,13,14],cannot:[8,9,4],progress:9,report:[10,8],requir:[1,7,8,10,11,9],object:[5,13],favorite_food:[5,7,8,13,10,9],bar:0,organ:1,include_archiv:[5,9],"public":1,"default":[5,11,13,4,9],ref_member_id:5,message_share_click:[12,4],through:[1,8,4],where:[0,1,8,11,7],view:1,set:[0,1,2,3,6,8,9,12,13],link_id:[0,5,12,9,14],see:[7,1,8],result:[0,1,2,5,8,9],respons:[0,1,2,4,5,7,8,9,10,13,14],fail:[5,9,4],themselv:2,member_field:[0,7],xxxxx:6,subject:[8,12,9,14],statu:[1,4,5,7,8,9,12,13],fancyonion:11,kei:[0,1,8,11,4],is_schedul:9,message_forward:[12,4],databas:8,user:[0,8,9,13],last_modified_at:[7,8,9,13],addresse:5,written:1,between:[0,7,2],"import":[1,8,12,4,10],subscript:[1,3],entiti:1,curlopt_url:[1,6,3],email:[0,1,3,5,6,7,8,9,13],wide:14,extend:1,numer:10,http404:[4,5,7,8,9,10,13,14],job:13,entir:[0,8],share_click:5,to_group_id:13,curlopt_returntransf:[1,6,3],addit:[0,1,8,9,11,13],member_remove_from_group:[12,4],send_start:[0,9,14],protect:1,accident:2,last:[0,5,10],delimit:5,pertain:5,message_click:[12,4],curlopt_post:[1,3],audienc:[1,8,9],mang:0,http500:14,seri:5,com:[4,5,6,7,8,9,11,13],zip_code_field:0,"03t15":[7,5,8,13],point:1,toni:[7,8],overview:[0,1,11,12,5],period:1,winner_id:9,colon:[7,11],optout_count:[7,8,9,13],suppli:9,cancel:9,tuesdai:0,duplic:5,quit:[5,8],user_id:4,recur:14,headsup:9,addition:[1,2],due:5,been:[1,8,10,5],mark:[8,9],whom:9,tshow:[4,5,7,8,9,10,13,14],trigger:[1,4,5,7,8,9,10,12,13,14],unsubscrib:0,treat:8,interest:[10,4],basic:[0,1,4,8,13,14],monthli:[7,8,13],blob:4,mailing_mailing_id:5,mailing_id:[0,5,8,12,9,14],fire:[8,4,14],xxx:[1,3],argument:[0,5],link_ord:[5,9],input:1,present:7,clicked_uniqu:5,"case":[1,8],look:[1,14,10],frozen:9,easier:12,email_error:[7,8,9,13],defin:[0,10,8,9],"while":0,outcom:5,abov:[0,1,8,7],error:[1,3,6,8,10,13],loop:8,opt:[0,4,5,7,8,13],readi:9,deliv:5,recipient_group:9,equal:0,itself:0,new_statu:12,webhook_id:4,recipient_memb:9,perform:8,make:[1,12,6,10],belong:[0,8,4],same:4,check:[8,6,9],member:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14],handl:1,html:9,split:9,document:[1,11,12],complet:[1,3,4,6,8,9],week:0,finish:[5,12,4],http:[1,2,3,4,5,6,11,9],href:[4,5,7,8,9,10,13,14],nest:0,someon:4,rais:[4,5,7,8,9,10,13,14],initi:[10,9],php:[1,6,3],bob:[7,5],recent:[1,8],kept:11,center:0,min:5,well:5,inherit:9,person:9,mailing_typ:[9,14],without:0,command:1,thi:[0,1,4,5,7,8,9,10,12,13,14],undefin:0,http_code:[1,6,3],latest:11,construct:[0,7,9],identifi:8,paus:9,execut:[1,3],less:0,resp:[4,5,7,8,9,10,13,14],"_post":[1,3],against:0,aspect:13,recipient_email:9,source_filenam:8,yet:5,smith:[7,5,8,9,13],"12t09":[7,8],display_nam:10,easi:[10,12],"01t00":8,had:0,littl:1,blog:4,add:[12,1,8,13,3],other:[1,8,9,3,5],curlopt_userpwd:[1,6,3],import_finish:[8,12,4],schedul:9,els:[1,6,3],save:7,match:[0,7],build:1,sanit:1,applic:[1,6,3],account_id:[1,3,4,5,6,7,8,9,10,12,13,14],disposit:1,crud:[8,13,14],print_r:[6,3],mailing_statu:[9,14],know:[5,4],background:13,parent_mailing_id:[9,14],bit:1,insert:11,emma:[1,5,7,8,9,12,13],like:1,onion:11,deprec:4,arbitrari:8,manual:9,integ:[1,8,14,10,5],public_kei:4,api:[1,2,3,6,8,12],either:[0,5,7],bunch:0,output:9,group_id:[1,8,12,3],soft:[0,5],manag:[0,1,13,4],import_id:[8,12],www:[5,9],old:7,deal:[8,13],captur:1,arrai:[0,1,3,5,6,7,8,9,10,12,13,14],some:[1,11,5],field_delet:[12,4],certain:12,intern:10,sampl:[1,4,5,7,8,9,10,13,14],elaps:[2,9],home:11,deleted_at:[7,8,13,10,9,14],some_string_field:0,librari:11,bounce_count:[7,8,9,13],confirm:8,broad:12,per:5,send_finish:[9,14],larg:[0,2],condit:7,three:9,network_cod:12,localhost:9,refer:[5,7,8,13,10,9],with_html_bodi:9,who:[0,5,8],bold:[4,5,7,8,9,10,13,14],event_typ:14,inspect:1,usag:[1,8,12],num_members_ad:8,fulli:11,from:[1,4,8,9,12,13,14],post:[1,3,4,7,8,9,10,12,13,14],group_creat:[12,4],gladi:[7,5,8,13],actual:5,zip:0,groups_upd:8,column:10,page:2,includ:[1,5,7,8,9,10,13],webview:9,disabl:[9,14],block:[1,2],yyyi:5,member_data:[1,3],glob:0,bounc:[0,5],within:[0,8],encod:[9,4],delivery_typ:[5,8],compos:0,webview_shar:5,field_typ:10,active_count:[7,8,9,13],public_webview_url:9,pivot:5,your:[1,4,5,7,8,9,10,13],websit:11,span:[4,5,7,8,9,10,13,14],wai:[1,12],area:1,overus:2,group_nam:[8,12,13,9],support:12,unique_click:5,json:[0,1,3,4,6,7],fast:8,custom:[5,8,11,10],avail:[0,11,4],start:[1,2,8,4],interfac:12,send_at:[9,14],exceed:2,"var":3,interv:[0,14],deliveri:5,head:[1,6,9,3],form:[1,3,4,6,8,10,14],enough:2,forc:1,forward:[0,4,5,8,12,9],"31st":0,group_typ:[8,9,13],push_offset_unit:14,link:[0,4,5,11,9,14],line:[1,5],realli:1,"true":[0,1,2,3,4,6,7,8,9,10,13,14],archived_t:[9,14],info:4,pull:2,made:1,possibl:[5,8,12],whether:8,maximum:2,tell:12,http403:9,record:[0,7,8],below:[0,1,8,12],http400:[7,8,9],limit:[5,2,8,9],some_array_field:0,otherwis:[10,8],start_t:14,mta:5,connect:[6,3],notif:9,creat:[4,5,7,9,10,12,13,14],"int":5,retriev:[7,1,2,8,9],email_us:[0,5],repres:5,exist:[0,4,5,7,8,10,13],behavior:11,curl:[1,6],lentil:7,probabl:14,echo:[1,3],successfulli:[5,8,9],mailing_subject:12,grp:13,todo:11,when:[8,12,4,9],detail:[1,4,7,8,9,10,13],invalid:[7,8,9],event:[4,7,8,13,12,9,14],field:[0,1,3,4,5,7,8,9,10,11,12,13,14],valid:[5,8,9,13],futur:1,num_skip:8,test:[5,6,7,13,9,14],ignor:8,you:[0,1,2,4,5,7,8,9,10,11,12,13],member_delet:[12,4],member_status_id:[7,5,8,9,13],public_api_kei:[1,6,3],stat:[5,9],claus:[0,7],event_nam:[12,4],e2ma:[1,2,6,3],error_messag:8,param:[9,4],app_messag:[1,3],ella:8,bulk:[1,8],receiv:[0,2,5,8,12,9],heads_up_email:9,longer:9,descript:[4,14],portion:0,opted_out:5,time:[1,2,8,13,5],reply_to:[9,14],resource_url:12,hello:[11,9,14]},objtypes:{"0":"http:get","1":"http:put","2":"http:post","3":"http:delete"},titles:["Search Syntax","Emma API","Pagination","PHP Signup Example","Webhooks","Response","PHP Get Member By Email Example","Searches","Members","Mailings","Fields","Placeholder Syntax","Webhook Usage","Groups","Triggers"],objnames:{"0":["http","get","HTTP get"],"1":["http","put","HTTP put"],"2":["http","post","HTTP post"],"3":["http","delete","HTTP delete"]},filenames:["member_search","index","pagination","php_signup_example","api/external/webhooks","api/external/response","php_get_member_example","api/external/searches","api/external/members","api/external/mailings","api/external/fields","placeholders","webhooks","api/external/groups","api/external/triggers"]}) \ No newline at end of file diff --git a/webhooks.html b/webhooks.html index a33c716..c6090f6 100644 --- a/webhooks.html +++ b/webhooks.html @@ -507,7 +507,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Feb 26, 2013 at 04:25 PM. + Last updated on Mar 05, 2013 at 04:22 PM. </div> </body> </html> \ No newline at end of file From 222e481ede92271e0e525d8052cff09c75defece Mon Sep 17 00:00:00 2001 From: Hernan Ciudad <hernan@myemma.com> Date: Tue, 19 Mar 2013 16:43:53 -0500 Subject: [PATCH 034/219] Update audience documentation. --- api/external/fields.html | 2 +- api/external/groups.html | 2 +- api/external/mailings.html | 2 +- api/external/members.html | 2 +- api/external/response.html | 2 +- api/external/searches.html | 4 ++-- api/external/triggers.html | 8 ++++---- api/external/webhooks.html | 2 +- genindex.html | 2 +- http-routingtable.html | 2 +- index.html | 2 +- member_search.html | 2 +- pagination.html | 2 +- php_get_member_example.html | 2 +- php_signup_example.html | 2 +- placeholders.html | 2 +- search.html | 2 +- searchindex.js | 2 +- webhooks.html | 2 +- 19 files changed, 23 insertions(+), 23 deletions(-) diff --git a/api/external/fields.html b/api/external/fields.html index a78eb33..56d6943 100644 --- a/api/external/fields.html +++ b/api/external/fields.html @@ -415,7 +415,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Mar 05, 2013 at 04:22 PM. + Last updated on Mar 19, 2013 at 04:43 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/groups.html b/api/external/groups.html index 33ccd2f..f11d6e9 100644 --- a/api/external/groups.html +++ b/api/external/groups.html @@ -702,7 +702,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Mar 05, 2013 at 04:22 PM. + Last updated on Mar 19, 2013 at 04:43 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/mailings.html b/api/external/mailings.html index dff581f..35d6455 100644 --- a/api/external/mailings.html +++ b/api/external/mailings.html @@ -810,7 +810,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Mar 05, 2013 at 04:22 PM. + Last updated on Mar 19, 2013 at 04:43 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/members.html b/api/external/members.html index fd6a2d2..a5dc674 100644 --- a/api/external/members.html +++ b/api/external/members.html @@ -1217,7 +1217,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Mar 05, 2013 at 04:22 PM. + Last updated on Mar 19, 2013 at 04:43 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/response.html b/api/external/response.html index cecfb78..f3298cc 100644 --- a/api/external/response.html +++ b/api/external/response.html @@ -1019,7 +1019,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Mar 05, 2013 at 04:22 PM. + Last updated on Mar 19, 2013 at 04:43 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/searches.html b/api/external/searches.html index 5172be6..89ef1b2 100644 --- a/api/external/searches.html +++ b/api/external/searches.html @@ -199,7 +199,7 @@ <h1>Searches<a class="headerlink" href="#searches" title="Permalink to this head "name": "Test Search", "criteria": "[\"or\", [\"group\", \"eq\", \"Monthly Newsletter\"],[\"group\", \"eq\", \"Widget Buyers\"]]", "deleted_at": null, - "last_run_at": "@D:2013-03-05T16:22:10", + "last_run_at": "@D:2013-03-19T16:43:47", "active_count": 2, "account_id": 100 } @@ -511,7 +511,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Mar 05, 2013 at 04:22 PM. + Last updated on Mar 19, 2013 at 04:43 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/triggers.html b/api/external/triggers.html index f0cf0ae..3c31ddc 100644 --- a/api/external/triggers.html +++ b/api/external/triggers.html @@ -148,7 +148,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": 203, "push_offset_units": "0:-14:0:0", - "start_ts": "@D:2013-03-05T16:22:07", + "start_ts": "@D:2013-03-19T16:43:44", "trigger_id": 100, "signups": null, "push_offset": "@I:-1209600.0", @@ -189,7 +189,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": null, "push_offset_units": "0:3:0:0", - "start_ts": "@D:2013-03-05T16:22:07", + "start_ts": "@D:2013-03-19T16:43:44", "trigger_id": 101, "signups": [ 1, @@ -326,7 +326,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": 203, "push_offset_units": "0:-14:0:0", - "start_ts": "@D:2013-03-05T16:22:07", + "start_ts": "@D:2013-03-19T16:43:44", "trigger_id": 100, "signups": null, "push_offset": "@I:-1209600.0", @@ -499,7 +499,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Mar 05, 2013 at 04:22 PM. + Last updated on Mar 19, 2013 at 04:43 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/webhooks.html b/api/external/webhooks.html index 42a09eb..0274cd5 100644 --- a/api/external/webhooks.html +++ b/api/external/webhooks.html @@ -487,7 +487,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Mar 05, 2013 at 04:22 PM. + Last updated on Mar 19, 2013 at 04:43 PM. </div> </body> </html> \ No newline at end of file diff --git a/genindex.html b/genindex.html index 4eb61de..d448126 100644 --- a/genindex.html +++ b/genindex.html @@ -146,7 +146,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Mar 05, 2013 at 04:22 PM. + Last updated on Mar 19, 2013 at 04:43 PM. </div> </body> </html> \ No newline at end of file diff --git a/http-routingtable.html b/http-routingtable.html index 8b8d91d..62a9613 100644 --- a/http-routingtable.html +++ b/http-routingtable.html @@ -607,7 +607,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Mar 05, 2013 at 04:22 PM. + Last updated on Mar 19, 2013 at 04:43 PM. </div> </body> </html> \ No newline at end of file diff --git a/index.html b/index.html index 83c3e0a..a5a8d80 100644 --- a/index.html +++ b/index.html @@ -324,7 +324,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Mar 05, 2013 at 04:22 PM. + Last updated on Mar 19, 2013 at 04:43 PM. </div> </body> </html> \ No newline at end of file diff --git a/member_search.html b/member_search.html index 12b6d1d..7c3a61f 100644 --- a/member_search.html +++ b/member_search.html @@ -256,7 +256,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Mar 05, 2013 at 04:22 PM. + Last updated on Mar 19, 2013 at 04:43 PM. </div> </body> </html> \ No newline at end of file diff --git a/pagination.html b/pagination.html index 9b4ae6f..da6b50c 100644 --- a/pagination.html +++ b/pagination.html @@ -168,7 +168,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Mar 05, 2013 at 04:22 PM. + Last updated on Mar 19, 2013 at 04:43 PM. </div> </body> </html> \ No newline at end of file diff --git a/php_get_member_example.html b/php_get_member_example.html index c757e92..ffd37b7 100644 --- a/php_get_member_example.html +++ b/php_get_member_example.html @@ -183,7 +183,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Mar 05, 2013 at 04:22 PM. + Last updated on Mar 19, 2013 at 04:43 PM. </div> </body> </html> \ No newline at end of file diff --git a/php_signup_example.html b/php_signup_example.html index c19e94b..8c9971e 100644 --- a/php_signup_example.html +++ b/php_signup_example.html @@ -205,7 +205,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Mar 05, 2013 at 04:22 PM. + Last updated on Mar 19, 2013 at 04:43 PM. </div> </body> </html> \ No newline at end of file diff --git a/placeholders.html b/placeholders.html index 7fb341f..5e42695 100644 --- a/placeholders.html +++ b/placeholders.html @@ -183,7 +183,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Mar 05, 2013 at 04:22 PM. + Last updated on Mar 19, 2013 at 04:43 PM. </div> </body> </html> \ No newline at end of file diff --git a/search.html b/search.html index a84d3e5..5778b81 100644 --- a/search.html +++ b/search.html @@ -153,7 +153,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Mar 05, 2013 at 04:22 PM. + Last updated on Mar 19, 2013 at 04:43 PM. </div> </body> </html> \ No newline at end of file diff --git a/searchindex.js b/searchindex.js index 739c494..cd0d70c 100644 --- a/searchindex.js +++ b/searchindex.js @@ -1 +1 @@ -Search.setIndex({objects:{"":{"/#account_id/members/#member_id/groups/remove":[8,1,1,"put--#account_id-members-#member_id-groups-remove"],"/#account_id/mailings/#mailing_id/winner/#winner_id":[9,2,1,"post--#account_id-mailings-#mailing_id-winner-#winner_id"],"/#account_id/response/#mailing_id/in_progress":[5,0,1,"get--#account_id-response-#mailing_id-in_progress"],"/#account_id/members/groups/remove":[8,1,1,"put--#account_id-members-groups-remove"],"/#account_id/mailings/#mailing_id/searches":[9,0,1,"get--#account_id-mailings-#mailing_id-searches"],"/#account_id/fields":[10,2,1,"post--#account_id-fields"],"/#account_id/members/#group_id/copy":[8,1,1,"put--#account_id-members-#group_id-copy"],"/#account_id/members/status":[8,1,1,"put--#account_id-members-status"],"/#account_id/response/#mailing_id/shares/overview":[5,0,1,"get--#account_id-response-#mailing_id-shares-overview"],"/#account_id/webhooks/events":[4,0,1,"get--#account_id-webhooks-events"],"/#account_id/members/#member_id/optout":[8,0,1,"get--#account_id-members-#member_id-optout"],"/#account_id/webhooks":[4,3,1,"delete--#account_id-webhooks"],"/#account_id/fields/#field_id":[10,3,1,"delete--#account_id-fields-#field_id"],"/#account_id/response/#mailing_id":[5,0,1,"get--#account_id-response-#mailing_id"],"/#account_id/groups/#member_group_id/members/remove":[13,3,1,"delete--#account_id-groups-#member_group_id-members-remove"],"/#account_id/searches":[7,2,1,"post--#account_id-searches"],"/#account_id/members/imports":[8,0,1,"get--#account_id-members-imports"],"/#account_id/forwards/#mailing_id/#member_id":[9,2,1,"post--#account_id-forwards-#mailing_id-#member_id"],"/#account_id/response/#mailing_id/customer_share_clicks":[5,0,1,"get--#account_id-response-#mailing_id-customer_share_clicks"],"/#account_id/mailings/#mailing_id/messages/#member_id":[9,0,1,"get--#account_id-mailings-#mailing_id-messages-#member_id"],"/#account_id/members/#member_id/mailings":[8,0,1,"get--#account_id-members-#member_id-mailings"],"/#account_id/groups/#from_group_id/#to_group_id/members/copy":[13,1,1,"put--#account_id-groups-#from_group_id-#to_group_id-members-copy"],"/#account_id/triggers":[14,2,1,"post--#account_id-triggers"],"/#account_id/triggers/#trigger_id":[14,3,1,"delete--#account_id-triggers-#trigger_id"],"/#account_id/members/delete":[8,1,1,"put--#account_id-members-delete"],"/#account_id/mailings/#mailing_id/groups":[9,0,1,"get--#account_id-mailings-#mailing_id-groups"],"/#account_id/response/#mailing_id/forwards":[5,0,1,"get--#account_id-response-#mailing_id-forwards"],"/#account_id/members/#member_id":[8,3,1,"delete--#account_id-members-#member_id"],"/#account_id/triggers/#trigger_id/mailings":[14,0,1,"get--#account_id-triggers-#trigger_id-mailings"],"/#account_id/searches/#search_id/members":[7,0,1,"get--#account_id-searches-#search_id-members"],"/#account_id/members/status/:status_from/to/:status_to":[8,1,1,"put--#account_id-members-status--status_from-to--status_to"],"/#account_id/response/#mailing_id/sends":[5,0,1,"get--#account_id-response-#mailing_id-sends"],"/#account_id/members":[8,3,1,"delete--#account_id-members"],"/#account_id/members/email/:email":[8,0,1,"get--#account_id-members-email--email"],"/#account_id/response/#mailing_id/links":[5,0,1,"get--#account_id-response-#mailing_id-links"],"/#account_id/searches/#search_id":[7,3,1,"delete--#account_id-searches-#search_id"],"/#account_id/members/imports/#import_id/members":[8,0,1,"get--#account_id-members-imports-#import_id-members"],"/#account_id/fields/#field_id/clear":[10,2,1,"post--#account_id-fields-#field_id-clear"],"/#account_id/groups/#member_group_id/members":[13,3,1,"delete--#account_id-groups-#member_group_id-members"],"/#account_id/members/imports/#import_id":[8,0,1,"get--#account_id-members-imports-#import_id"],"/#account_id/response":[5,0,1,"get--#account_id-response"],"/#account_id/response/#mailing_id/opens":[5,0,1,"get--#account_id-response-#mailing_id-opens"],"/#account_id/members/imports/delete":[8,3,1,"delete--#account_id-members-imports-delete"],"/#account_id/mailings":[9,0,1,"get--#account_id-mailings"],"/#account_id/mailings/cancel/#mailing_id":[9,3,1,"delete--#account_id-mailings-cancel-#mailing_id"],"/#account_id/mailings/validate":[9,2,1,"post--#account_id-mailings-validate"],"/#account_id/response/#mailing_id/deliveries":[5,0,1,"get--#account_id-response-#mailing_id-deliveries"],"/#account_id/mailings/#mailing_id/members":[9,0,1,"get--#account_id-mailings-#mailing_id-members"],"/#account_id/response/#share_id/customer_share":[5,0,1,"get--#account_id-response-#share_id-customer_share"],"/#account_id/webhooks/#webhook_id":[4,3,1,"delete--#account_id-webhooks-#webhook_id"],"/#account_id/members/add":[8,2,1,"post--#account_id-members-add"],"/#account_id/members/email/optout/:email":[8,1,1,"put--#account_id-members-email-optout--email"],"/#account_id/response/#mailing_id/optouts":[5,0,1,"get--#account_id-response-#mailing_id-optouts"],"/#account_id/response/#mailing_id/shares":[5,0,1,"get--#account_id-response-#mailing_id-shares"],"/#account_id/groups/#member_group_id":[13,3,1,"delete--#account_id-groups-#member_group_id"],"/#account_id/mailings/#mailing_id":[9,3,1,"delete--#account_id-mailings-#mailing_id"],"/#account_id/members/#member_id/groups":[8,3,1,"delete--#account_id-members-#member_id-groups"],"/#account_id/groups":[13,2,1,"post--#account_id-groups"],"/#account_id/response/#mailing_id/clicks":[5,0,1,"get--#account_id-response-#mailing_id-clicks"],"/#account_id/mailings/#mailing_id/headsup":[9,0,1,"get--#account_id-mailings-#mailing_id-headsup"],"/#account_id/response/#mailing_id/signups":[5,0,1,"get--#account_id-response-#mailing_id-signups"],"/#account_id/response/#mailing_id/customer_shares":[5,0,1,"get--#account_id-response-#mailing_id-customer_shares"]}},terms:{all:[0,1,4,5,8,9,10,11,12,13,14],code:[0,1,6,3],change_typ:8,queri:[0,2,4],month:[0,5,9,14],four:[0,5],mile:0,least:0,field_creat:[12,4],link_target:[5,9],content:[1,11,6,9,3],privat:1,specif:[8,9,4],friendli:5,send:[1,9,4,3,5],customer_share_click:5,those:[5,12],group_upd:[12,4],sent:[5,8,12,9,14],curl_clos:[1,6,3],brown:[7,8],digit:5,everi:0,string:[0,4,5,7,8,9,10,12,13,14],fals:[1,3,4,5,6,7,8,9,10,13,14],webhook:[1,12,4],mailing_status:9,trigger_id:14,webview_share_click:5,affect:[7,8],member_add:[12,4],create_mail:9,new_boolean:10,foo:0,level:1,group_delet:[12,4],list:[0,1,2,4,5,7,8,9,10,11,12,13,14],upload:8,iter:2,"try":8,item:2,plaintext_onli:[9,14],div:[4,5,7,8,9,10,13,14],survey_id:14,pleas:[1,8,11,9],prevent:2,work:[1,4],ten:0,sync:10,sign:[0,5,4],past:1,second:[0,7,14],follow:[0,1,4,5,7,9,11,13],further:1,durat:9,click:[0,4,5,7,8,12,14],append:2,even:10,what:1,hide:[4,5,7,8,9,10,13,14],appear:[1,8],from_group_id:13,section:1,current:[8,12,9],delet:[1,4,7,8,9,10,12,13,14],"new":[1,4,5,7,8,9,10,11,13,14],net:[1,2,6,3],delivery_t:8,method:[5,8,13,4,9],can:[0,1,2,4,5,7,8,9,11,12,13],widget:[7,10,8,9,13],hash:0,datematch:0,displai:10,variat:9,gener:[0,8,12,14],onli:[5,8],here:[0,1,3,5,6,8],bodi:9,let:[1,4,10],address:[0,1,8,6,9],along:8,sinc:8,valu:[0,5,7,8,10,11],field_upd:[12,4],search:[0,1,8,9,7],survei:14,sender:[9,14],larger:2,queue:5,prior:9,action:[0,8],chang:[8,4],campaign:5,newbi:5,appli:[7,14],prefer:0,myemma:[4,5,7,8,9,13],filenam:8,customer_shar:5,"boolean":[0,1,5,7,8,9,10,13,14],curlopt_postfield:[1,3],total:5,jone:[7,5,8,13],select:10,newslett:[7,8,13],describ:7,would:[0,1],regist:4,two:[0,5],next:[0,1],create_webhook:4,few:[5,8],call:[1,2,3,4,6,8,12],criteria:7,member_add_to_group:[12,4],type:[1,3,4,5,6,7,10,9,14],until:2,more:[0,4,7,8,9,13],peopl:5,relat:[1,8,11,9],about:[10,8,12,4,9],notic:8,thide:[4,5,7,8,9,10,13,14],flag:[5,7,8,10,9,14],exce:2,indic:8,examin:1,particular:[1,4,5,8,10,12,9],in_progress:5,origin:9,must:[0,7,13,10],none:9,endpoint:[1,4,5,7,8,9,10,13,14],join:[0,7],hour:0,setup:1,member_sinc:[0,5,7,8,9,13],uniqu:5,histori:8,soup:7,remain:[0,9],archiv:[5,9],member_optout:[12,4],drill:5,control:[1,11,9],quickstart:1,give:5,forward_mailing_id:5,email_domain:[0,5],share:[0,5,8,12,4],accept:[0,5,7,8,9,10,11,13,14],total_click:5,tag:[11,9],want:[1,12,13,5],occur:[7,12],some_numeric_field:0,delai:14,alwai:0,webhook_event_id:4,cours:1,end:[2,8],first_nam:[1,3,5,7,8,9,10,11,13,14],started_or_finish:[9,14],anoth:[9,13],get:[1,4,5,6,7,8,9,10,13,14],message_open:[12,4],html_bodi:[9,14],share_statu:5,push_offset:14,del_statu:5,tild:5,num_members_upd:8,simpl:0,chri:9,pizza:[7,8],map:0,autent:1,referenc:7,xxxx:6,sundai:0,membership:13,taco:[7,5,8,9,13],mai:12,multipl:[10,8],data:[1,3,4,5,10,12],welcom:11,add_onli:8,"short":0,json_encod:[1,3],optout:[5,8,12,13],num_dupl:8,favorit:10,correspond:[0,1],greet:11,predic:[0,1],issu:[1,10],"12t11":[7,5,8,9,13],combin:7,allow:[0,7,8],some_zipcode_field:0,signed_up:5,order:[5,10],michel:[8,9],mailing_nam:5,checkbox:10,fields_upd:8,over:2,becaus:12,buyer:[7,8,9,13],comma:[9,13],is_dis:14,vari:8,paramet:[2,4,5,7,8,9,10,13,14],widget_typ:10,style:[0,4,5,7,8,9,10,13,14],group:[0,1,3,4,7,8,9,12,13,14],curl_setopt:[1,6,3],how:[7,1,2,4],import_start:8,better:[13,14],platform:1,pend:[1,9],mailing_list:9,curlopt_ssl_verifyp:[1,6,3],mail:[0,1,4,5,8,11,12,9,14],hidden:13,main:1,might:[1,4],link_nam:[5,9],them:[8,9],"return":[0,1,4,5,7,8,9,10,12,13,14],greater:[0,8],thei:[0,9],food:10,timestamp:[0,5,12,9,10],spell:4,dai:0,auth:1,instead:[12,2,8],now:5,down:5,term:[0,1],alex:9,name:[0,4,5,7,8,9,10,11,13,14],edit:[7,1,14,10],curl_getinfo:[1,6,3],authent:[1,6,4,3],successufulli:4,separ:[1,9,13],each:[1,2,5,9,12,11,13],found:[8,9,4,14],updat:[4,7,8,9,10,12,13,14],mean:0,status:[8,9],domain:0,shortcut_nam:10,weight:[4,5,7,8,9,10,13,14],resum:9,individu:[5,8],hard:[0,5],last_nam:[1,3,5,7,8,9,10,11,13,14],"05t15":5,"05t16":[7,14],expect:1,year:[0,5,9,14],our:[1,11,12,4,14],happen:[1,4,5],extract:11,short_display_nam:10,special:[0,7,8,13],out:[0,1,4,5,7,8,10,13],variabl:[1,6,3],message_shar:[12,4],network:[5,12],private_api_kei:[1,6,3],check_multipl:10,categori:1,rel:0,print:6,correct:10,statist:8,benjamin:8,qualifi:11,insid:1,advanc:0,contain:[0,5,7,13,10,9],differ:0,standard:[5,9],status_from:8,base:[5,8],recipient_search:9,dictionari:8,put:[4,7,8,9,10,13,14],"13t23":[7,5,8],visit:11,could:1,omit:5,success:[1,3,7,8,9,13],filter:[0,1,7],search_id:7,pagin:[1,2],member_id:[5,7,8,9,12,13],summari:[1,5],assign:9,first:[0,1,10,5],oper:[0,1,7,14],rang:5,notifi:12,directli:0,onc:9,curl_init:[1,6,3],number:[5,2,13,3,10],placehold:[1,11],date:[0,5,8,10,11,14],unlik:9,alreadi:[10,8,9,13],done:8,plaintext_pref:[7,8,9,13],oppos:8,open:[0,3,4,5,6,7,8,12],payload:4,fanci:5,size:2,given:[0,8,9,4],"long":10,script:1,associ:[1,8,9,4,5],system:[8,12,4,14],messag:[4,5,8,12,11,9,14],attach:11,friend:11,curlinfo_http_cod:[1,6,3],shell:0,option:[0,5,7,8,9,10,13,14],especi:8,signup:[0,1,3,4,5,8,12,14],copi:[8,13],member_upd:[12,4],specifi:[0,2,7,8,10,11,9,14],curl_exec:[1,6,3],curlopt_httphead:[1,6,3],member_signup:[12,4],create_search:7,part:[0,9],enclos:11,than:[0,1,2,3,12,13],with_plaintext:9,"02t10":[5,8],"02t11":[5,8],"02t13":5,nathan:8,whenev:8,provid:[1,5,8,12,9,14],remov:[12,8,13,4],mailing_start:4,rate:2,structur:7,charact:9,greg:8,trackabl:11,were:5,minut:0,danc:1,error_count:[7,8,9,13],pre:[4,5,7,8,9,10,13,14],cleaner:1,sai:0,share_id:5,signup_form_id:[0,8,12,9,14],plaintext:[5,9,14],pass:[1,3],ani:[0,1,2,7,8,9],have:[0,5,8,12,9],tabl:5,seen:5,"null":[7,8,13,10,9,14],kevin:[9,14],signup_mail:0,caus:14,inform:[1,4,6,8,9,10,13],object_id:14,note:[1,8,9,4],also:[0,4,5,7,8,9,11,13],exampl:[0,1,3,5,6,7,11],take:[0,4],which:[0,1,4,8,10,12,9,14],some_number_field:0,singl:[0,1,3,4,5,8,10,12,13],excit:11,sure:1,delete_memb:13,normal:9,parent_mail:14,recipient_count:[5,9,14],previou:9,field_id:[10,12,14],last_run_at:7,most:14,pair:11,"class":[4,5,7,8,9,10,13,14],member_group_id:[8,9,13],mcconnel:[9,14],url:[1,3,4,5,6,12],mailing_finish:[12,4],clear:10,request:[1,2,3],doe:[0,5,7,8,9,10,13],member_status_upd:[12,4],declar:9,tech:4,determin:1,dataset:10,dow:0,recipi:9,"6db0cc7e6fdb2da589b65f29d90c96b6":9,show:[4,5,7,8,9,10,11,13,14],text:[10,11,12],radiu:0,syntax:[0,1,11,9],radio:10,font:[4,5,7,8,9,10,13,14],fine:9,find:[1,6,5],status_to:8,toast:[7,5,8,13],access:[1,5],giant:12,just:[0,9],pretti:8,column_ord:10,explain:[0,1],winner:9,activ:[1,5,7,8,13,9],figur:1,birthdai:[10,14],should:[1,2,3,7,8,11,9],templat:[11,14],share_count:5,count:[1,2,3,5],variou:[8,13],confirmed_opt_in:[7,8,9,13],familiar:1,express:0,account:[1,4,5,7,8,10,13,14],cannot:[8,9,4],progress:9,report:[10,8],requir:[1,7,8,10,11,9],object:[5,13],favorite_food:[5,7,8,13,10,9],bar:0,organ:1,include_archiv:[5,9],"public":1,"default":[5,11,13,4,9],ref_member_id:5,message_share_click:[12,4],through:[1,8,4],where:[0,1,8,11,7],view:1,set:[0,1,2,3,6,8,9,12,13],link_id:[0,5,12,9,14],see:[7,1,8],result:[0,1,2,5,8,9],respons:[0,1,2,4,5,7,8,9,10,13,14],fail:[5,9,4],themselv:2,member_field:[0,7],xxxxx:6,subject:[8,12,9,14],statu:[1,4,5,7,8,9,12,13],fancyonion:11,kei:[0,1,8,11,4],is_schedul:9,message_forward:[12,4],databas:8,user:[0,8,9,13],last_modified_at:[7,8,9,13],addresse:5,written:1,between:[0,7,2],"import":[1,8,12,4,10],subscript:[1,3],entiti:1,curlopt_url:[1,6,3],email:[0,1,3,5,6,7,8,9,13],wide:14,extend:1,numer:10,http404:[4,5,7,8,9,10,13,14],job:13,entir:[0,8],share_click:5,to_group_id:13,curlopt_returntransf:[1,6,3],addit:[0,1,8,9,11,13],member_remove_from_group:[12,4],send_start:[0,9,14],protect:1,accident:2,last:[0,5,10],delimit:5,pertain:5,message_click:[12,4],curlopt_post:[1,3],audienc:[1,8,9],mang:0,http500:14,seri:5,com:[4,5,6,7,8,9,11,13],zip_code_field:0,"03t15":[7,5,8,13],point:1,toni:[7,8],overview:[0,1,11,12,5],period:1,winner_id:9,colon:[7,11],optout_count:[7,8,9,13],suppli:9,cancel:9,tuesdai:0,duplic:5,quit:[5,8],user_id:4,recur:14,headsup:9,addition:[1,2],due:5,been:[1,8,10,5],mark:[8,9],whom:9,tshow:[4,5,7,8,9,10,13,14],trigger:[1,4,5,7,8,9,10,12,13,14],unsubscrib:0,treat:8,interest:[10,4],basic:[0,1,4,8,13,14],monthli:[7,8,13],blob:4,mailing_mailing_id:5,mailing_id:[0,5,8,12,9,14],fire:[8,4,14],xxx:[1,3],argument:[0,5],link_ord:[5,9],input:1,present:7,clicked_uniqu:5,"case":[1,8],look:[1,14,10],frozen:9,easier:12,email_error:[7,8,9,13],defin:[0,10,8,9],"while":0,outcom:5,abov:[0,1,8,7],error:[1,3,6,8,10,13],loop:8,opt:[0,4,5,7,8,13],readi:9,deliv:5,recipient_group:9,equal:0,itself:0,new_statu:12,webhook_id:4,recipient_memb:9,perform:8,make:[1,12,6,10],belong:[0,8,4],same:4,check:[8,6,9],member:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14],handl:1,html:9,split:9,document:[1,11,12],complet:[1,3,4,6,8,9],week:0,finish:[5,12,4],http:[1,2,3,4,5,6,11,9],href:[4,5,7,8,9,10,13,14],nest:0,someon:4,rais:[4,5,7,8,9,10,13,14],initi:[10,9],php:[1,6,3],bob:[7,5],recent:[1,8],kept:11,center:0,min:5,well:5,inherit:9,person:9,mailing_typ:[9,14],without:0,command:1,thi:[0,1,4,5,7,8,9,10,12,13,14],undefin:0,http_code:[1,6,3],latest:11,construct:[0,7,9],identifi:8,paus:9,execut:[1,3],less:0,resp:[4,5,7,8,9,10,13,14],"_post":[1,3],against:0,aspect:13,recipient_email:9,source_filenam:8,yet:5,smith:[7,5,8,9,13],"12t09":[7,8],display_nam:10,easi:[10,12],"01t00":8,had:0,littl:1,blog:4,add:[12,1,8,13,3],other:[1,8,9,3,5],curlopt_userpwd:[1,6,3],import_finish:[8,12,4],schedul:9,els:[1,6,3],save:7,match:[0,7],build:1,sanit:1,applic:[1,6,3],account_id:[1,3,4,5,6,7,8,9,10,12,13,14],disposit:1,crud:[8,13,14],print_r:[6,3],mailing_statu:[9,14],know:[5,4],background:13,parent_mailing_id:[9,14],bit:1,insert:11,emma:[1,5,7,8,9,12,13],like:1,onion:11,deprec:4,arbitrari:8,manual:9,integ:[1,8,14,10,5],public_kei:4,api:[1,2,3,6,8,12],either:[0,5,7],bunch:0,output:9,group_id:[1,8,12,3],soft:[0,5],manag:[0,1,13,4],import_id:[8,12],www:[5,9],old:7,deal:[8,13],captur:1,arrai:[0,1,3,5,6,7,8,9,10,12,13,14],some:[1,11,5],field_delet:[12,4],certain:12,intern:10,sampl:[1,4,5,7,8,9,10,13,14],elaps:[2,9],home:11,deleted_at:[7,8,13,10,9,14],some_string_field:0,librari:11,bounce_count:[7,8,9,13],confirm:8,broad:12,per:5,send_finish:[9,14],larg:[0,2],condit:7,three:9,network_cod:12,localhost:9,refer:[5,7,8,13,10,9],with_html_bodi:9,who:[0,5,8],bold:[4,5,7,8,9,10,13,14],event_typ:14,inspect:1,usag:[1,8,12],num_members_ad:8,fulli:11,from:[1,4,8,9,12,13,14],post:[1,3,4,7,8,9,10,12,13,14],group_creat:[12,4],gladi:[7,5,8,13],actual:5,zip:0,groups_upd:8,column:10,page:2,includ:[1,5,7,8,9,10,13],webview:9,disabl:[9,14],block:[1,2],yyyi:5,member_data:[1,3],glob:0,bounc:[0,5],within:[0,8],encod:[9,4],delivery_typ:[5,8],compos:0,webview_shar:5,field_typ:10,active_count:[7,8,9,13],public_webview_url:9,pivot:5,your:[1,4,5,7,8,9,10,13],websit:11,span:[4,5,7,8,9,10,13,14],wai:[1,12],area:1,overus:2,group_nam:[8,12,13,9],support:12,unique_click:5,json:[0,1,3,4,6,7],fast:8,custom:[5,8,11,10],avail:[0,11,4],start:[1,2,8,4],interfac:12,send_at:[9,14],exceed:2,"var":3,interv:[0,14],deliveri:5,head:[1,6,9,3],form:[1,3,4,6,8,10,14],enough:2,forc:1,forward:[0,4,5,8,12,9],"31st":0,group_typ:[8,9,13],push_offset_unit:14,link:[0,4,5,11,9,14],line:[1,5],realli:1,"true":[0,1,2,3,4,6,7,8,9,10,13,14],archived_t:[9,14],info:4,pull:2,made:1,possibl:[5,8,12],whether:8,maximum:2,tell:12,http403:9,record:[0,7,8],below:[0,1,8,12],http400:[7,8,9],limit:[5,2,8,9],some_array_field:0,otherwis:[10,8],start_t:14,mta:5,connect:[6,3],notif:9,creat:[4,5,7,9,10,12,13,14],"int":5,retriev:[7,1,2,8,9],email_us:[0,5],repres:5,exist:[0,4,5,7,8,10,13],behavior:11,curl:[1,6],lentil:7,probabl:14,echo:[1,3],successfulli:[5,8,9],mailing_subject:12,grp:13,todo:11,when:[8,12,4,9],detail:[1,4,7,8,9,10,13],invalid:[7,8,9],event:[4,7,8,13,12,9,14],field:[0,1,3,4,5,7,8,9,10,11,12,13,14],valid:[5,8,9,13],futur:1,num_skip:8,test:[5,6,7,13,9,14],ignor:8,you:[0,1,2,4,5,7,8,9,10,11,12,13],member_delet:[12,4],member_status_id:[7,5,8,9,13],public_api_kei:[1,6,3],stat:[5,9],claus:[0,7],event_nam:[12,4],e2ma:[1,2,6,3],error_messag:8,param:[9,4],app_messag:[1,3],ella:8,bulk:[1,8],receiv:[0,2,5,8,12,9],heads_up_email:9,longer:9,descript:[4,14],portion:0,opted_out:5,time:[1,2,8,13,5],reply_to:[9,14],resource_url:12,hello:[11,9,14]},objtypes:{"0":"http:get","1":"http:put","2":"http:post","3":"http:delete"},titles:["Search Syntax","Emma API","Pagination","PHP Signup Example","Webhooks","Response","PHP Get Member By Email Example","Searches","Members","Mailings","Fields","Placeholder Syntax","Webhook Usage","Groups","Triggers"],objnames:{"0":["http","get","HTTP get"],"1":["http","put","HTTP put"],"2":["http","post","HTTP post"],"3":["http","delete","HTTP delete"]},filenames:["member_search","index","pagination","php_signup_example","api/external/webhooks","api/external/response","php_get_member_example","api/external/searches","api/external/members","api/external/mailings","api/external/fields","placeholders","webhooks","api/external/groups","api/external/triggers"]}) \ No newline at end of file +Search.setIndex({objects:{"":{"/#account_id/members/#member_id/groups/remove":[8,1,1,"put--#account_id-members-#member_id-groups-remove"],"/#account_id/mailings/#mailing_id/winner/#winner_id":[9,2,1,"post--#account_id-mailings-#mailing_id-winner-#winner_id"],"/#account_id/response/#mailing_id/in_progress":[5,0,1,"get--#account_id-response-#mailing_id-in_progress"],"/#account_id/members/groups/remove":[8,1,1,"put--#account_id-members-groups-remove"],"/#account_id/mailings/#mailing_id/searches":[9,0,1,"get--#account_id-mailings-#mailing_id-searches"],"/#account_id/fields":[10,2,1,"post--#account_id-fields"],"/#account_id/members/#group_id/copy":[8,1,1,"put--#account_id-members-#group_id-copy"],"/#account_id/members/status":[8,1,1,"put--#account_id-members-status"],"/#account_id/response/#mailing_id/shares/overview":[5,0,1,"get--#account_id-response-#mailing_id-shares-overview"],"/#account_id/webhooks/events":[4,0,1,"get--#account_id-webhooks-events"],"/#account_id/members/#member_id/optout":[8,0,1,"get--#account_id-members-#member_id-optout"],"/#account_id/webhooks":[4,3,1,"delete--#account_id-webhooks"],"/#account_id/fields/#field_id":[10,3,1,"delete--#account_id-fields-#field_id"],"/#account_id/response/#mailing_id":[5,0,1,"get--#account_id-response-#mailing_id"],"/#account_id/groups/#member_group_id/members/remove":[13,3,1,"delete--#account_id-groups-#member_group_id-members-remove"],"/#account_id/searches":[7,2,1,"post--#account_id-searches"],"/#account_id/members/imports":[8,0,1,"get--#account_id-members-imports"],"/#account_id/forwards/#mailing_id/#member_id":[9,2,1,"post--#account_id-forwards-#mailing_id-#member_id"],"/#account_id/response/#mailing_id/customer_share_clicks":[5,0,1,"get--#account_id-response-#mailing_id-customer_share_clicks"],"/#account_id/mailings/#mailing_id/messages/#member_id":[9,0,1,"get--#account_id-mailings-#mailing_id-messages-#member_id"],"/#account_id/members/#member_id/mailings":[8,0,1,"get--#account_id-members-#member_id-mailings"],"/#account_id/groups/#from_group_id/#to_group_id/members/copy":[13,1,1,"put--#account_id-groups-#from_group_id-#to_group_id-members-copy"],"/#account_id/triggers":[14,2,1,"post--#account_id-triggers"],"/#account_id/triggers/#trigger_id":[14,3,1,"delete--#account_id-triggers-#trigger_id"],"/#account_id/members/delete":[8,1,1,"put--#account_id-members-delete"],"/#account_id/mailings/#mailing_id/groups":[9,0,1,"get--#account_id-mailings-#mailing_id-groups"],"/#account_id/response/#mailing_id/forwards":[5,0,1,"get--#account_id-response-#mailing_id-forwards"],"/#account_id/members/#member_id":[8,3,1,"delete--#account_id-members-#member_id"],"/#account_id/triggers/#trigger_id/mailings":[14,0,1,"get--#account_id-triggers-#trigger_id-mailings"],"/#account_id/searches/#search_id/members":[7,0,1,"get--#account_id-searches-#search_id-members"],"/#account_id/members/status/:status_from/to/:status_to":[8,1,1,"put--#account_id-members-status--status_from-to--status_to"],"/#account_id/response/#mailing_id/sends":[5,0,1,"get--#account_id-response-#mailing_id-sends"],"/#account_id/members":[8,3,1,"delete--#account_id-members"],"/#account_id/members/email/:email":[8,0,1,"get--#account_id-members-email--email"],"/#account_id/response/#mailing_id/links":[5,0,1,"get--#account_id-response-#mailing_id-links"],"/#account_id/searches/#search_id":[7,3,1,"delete--#account_id-searches-#search_id"],"/#account_id/members/imports/#import_id/members":[8,0,1,"get--#account_id-members-imports-#import_id-members"],"/#account_id/fields/#field_id/clear":[10,2,1,"post--#account_id-fields-#field_id-clear"],"/#account_id/groups/#member_group_id/members":[13,3,1,"delete--#account_id-groups-#member_group_id-members"],"/#account_id/members/imports/#import_id":[8,0,1,"get--#account_id-members-imports-#import_id"],"/#account_id/response":[5,0,1,"get--#account_id-response"],"/#account_id/response/#mailing_id/opens":[5,0,1,"get--#account_id-response-#mailing_id-opens"],"/#account_id/members/imports/delete":[8,3,1,"delete--#account_id-members-imports-delete"],"/#account_id/mailings":[9,0,1,"get--#account_id-mailings"],"/#account_id/mailings/cancel/#mailing_id":[9,3,1,"delete--#account_id-mailings-cancel-#mailing_id"],"/#account_id/mailings/validate":[9,2,1,"post--#account_id-mailings-validate"],"/#account_id/response/#mailing_id/deliveries":[5,0,1,"get--#account_id-response-#mailing_id-deliveries"],"/#account_id/mailings/#mailing_id/members":[9,0,1,"get--#account_id-mailings-#mailing_id-members"],"/#account_id/response/#share_id/customer_share":[5,0,1,"get--#account_id-response-#share_id-customer_share"],"/#account_id/webhooks/#webhook_id":[4,3,1,"delete--#account_id-webhooks-#webhook_id"],"/#account_id/members/add":[8,2,1,"post--#account_id-members-add"],"/#account_id/members/email/optout/:email":[8,1,1,"put--#account_id-members-email-optout--email"],"/#account_id/response/#mailing_id/optouts":[5,0,1,"get--#account_id-response-#mailing_id-optouts"],"/#account_id/response/#mailing_id/shares":[5,0,1,"get--#account_id-response-#mailing_id-shares"],"/#account_id/groups/#member_group_id":[13,3,1,"delete--#account_id-groups-#member_group_id"],"/#account_id/mailings/#mailing_id":[9,3,1,"delete--#account_id-mailings-#mailing_id"],"/#account_id/members/#member_id/groups":[8,3,1,"delete--#account_id-members-#member_id-groups"],"/#account_id/groups":[13,2,1,"post--#account_id-groups"],"/#account_id/response/#mailing_id/clicks":[5,0,1,"get--#account_id-response-#mailing_id-clicks"],"/#account_id/mailings/#mailing_id/headsup":[9,0,1,"get--#account_id-mailings-#mailing_id-headsup"],"/#account_id/response/#mailing_id/signups":[5,0,1,"get--#account_id-response-#mailing_id-signups"],"/#account_id/response/#mailing_id/customer_shares":[5,0,1,"get--#account_id-response-#mailing_id-customer_shares"]}},terms:{all:[0,1,4,5,8,9,10,11,12,13,14],code:[0,1,6,3],change_typ:8,queri:[0,2,4],month:[0,5,9,14],four:[0,5],mile:0,least:0,field_creat:[12,4],link_target:[5,9],content:[1,11,6,9,3],privat:1,specif:[8,9,4],friendli:5,send:[1,9,4,3,5],customer_share_click:5,those:[5,12],group_upd:[12,4],sent:[5,8,12,9,14],curl_clos:[1,6,3],brown:[7,8],digit:5,everi:0,string:[0,4,5,7,8,9,10,12,13,14],fals:[1,3,4,5,6,7,8,9,10,13,14],webhook:[1,12,4],mailing_status:9,trigger_id:14,webview_share_click:5,affect:[7,8],member_add:[12,4],create_mail:9,new_boolean:10,foo:0,level:1,group_delet:[12,4],list:[0,1,2,4,5,7,8,9,10,11,12,13,14],upload:8,iter:2,"try":8,item:2,plaintext_onli:[9,14],div:[4,5,7,8,9,10,13,14],survey_id:14,pleas:[1,8,11,9],prevent:2,work:[1,4],ten:0,sync:10,sign:[0,5,4],past:1,second:[0,7,14],follow:[0,1,4,5,7,9,11,13],further:1,durat:9,click:[0,4,5,7,8,12,14],append:2,even:10,what:1,hide:[4,5,7,8,9,10,13,14],appear:[1,8],from_group_id:13,section:1,current:[8,12,9],delet:[1,4,7,8,9,10,12,13,14],"new":[1,4,5,7,8,9,10,11,13,14],net:[1,2,6,3],delivery_t:8,method:[5,8,13,4,9],can:[0,1,2,4,5,7,8,9,11,12,13],widget:[7,10,8,9,13],hash:0,datematch:0,displai:10,variat:9,gener:[0,8,12,14],onli:[5,8],here:[0,1,3,5,6,8],bodi:9,let:[1,4,10],address:[0,1,8,6,9],along:8,sinc:8,valu:[0,5,7,8,10,11],field_upd:[12,4],search:[0,1,8,9,7],survei:14,sender:[9,14],larger:2,queue:5,prior:9,action:[0,8],chang:[8,4],campaign:5,newbi:5,appli:[7,14],prefer:0,myemma:[4,5,7,8,9,13],filenam:8,customer_shar:5,"boolean":[0,1,5,7,8,9,10,13,14],curlopt_postfield:[1,3],total:5,jone:[7,5,8,13],select:10,newslett:[7,8,13],describ:7,would:[0,1],regist:4,two:[0,5],next:[0,1],create_webhook:4,few:[5,8],call:[1,2,3,4,6,8,12],criteria:7,member_add_to_group:[12,4],type:[1,3,4,5,6,7,10,9,14],until:2,more:[0,4,7,8,9,13],peopl:5,relat:[1,8,11,9],about:[10,8,12,4,9],notic:8,thide:[4,5,7,8,9,10,13,14],flag:[5,7,8,10,9,14],exce:2,indic:8,examin:1,particular:[1,4,5,8,10,12,9],in_progress:5,origin:9,must:[0,7,13,10],none:9,endpoint:[1,4,5,7,8,9,10,13,14],join:[0,7],hour:0,setup:1,member_sinc:[0,5,7,8,9,13],uniqu:5,histori:8,soup:7,remain:[0,9],archiv:[5,9],member_optout:[12,4],drill:5,control:[1,11,9],quickstart:1,give:5,forward_mailing_id:5,email_domain:[0,5],share:[0,5,8,12,4],accept:[0,5,7,8,9,10,11,13,14],total_click:5,tag:[11,9],want:[1,12,13,5],occur:[7,12],some_numeric_field:0,delai:14,alwai:0,webhook_event_id:4,cours:1,end:[2,8],first_nam:[1,3,5,7,8,9,10,11,13,14],started_or_finish:[9,14],anoth:[9,13],get:[1,4,5,6,7,8,9,10,13,14],message_open:[12,4],html_bodi:[9,14],share_statu:5,push_offset:14,del_statu:5,tild:5,num_members_upd:8,simpl:0,chri:9,pizza:[7,8],map:0,autent:1,referenc:7,xxxx:6,sundai:0,membership:13,taco:[7,5,8,9,13],mai:12,multipl:[10,8],data:[1,3,4,5,10,12],welcom:11,add_onli:8,"short":0,json_encod:[1,3],optout:[5,8,12,13],num_dupl:8,favorit:10,correspond:[0,1],greet:11,predic:[0,1],issu:[1,10],"12t11":[7,5,8,9,13],combin:7,allow:[0,7,8],some_zipcode_field:0,signed_up:5,order:[5,10],michel:[8,9],mailing_nam:5,checkbox:10,fields_upd:8,over:2,becaus:12,buyer:[7,8,9,13],comma:[9,13],is_dis:14,vari:8,paramet:[2,4,5,7,8,9,10,13,14],widget_typ:10,style:[0,4,5,7,8,9,10,13,14],group:[0,1,3,4,7,8,9,12,13,14],curl_setopt:[1,6,3],how:[7,1,2,4],import_start:8,better:[13,14],platform:1,pend:[1,9],mailing_list:9,onc:9,mail:[0,1,4,5,8,11,12,9,14],hidden:13,main:1,might:[1,4],link_nam:[5,9],them:[8,9],"return":[0,1,4,5,7,8,9,10,12,13,14],greater:[0,8],thei:[0,9],food:10,timestamp:[0,5,12,9,10],spell:4,dai:0,auth:1,instead:[12,2,8],now:5,down:5,term:[0,1],alex:9,name:[0,4,5,7,8,9,10,11,13,14],edit:[7,1,14,10],curl_getinfo:[1,6,3],authent:[1,6,4,3],successufulli:4,separ:[1,9,13],each:[1,2,5,9,12,11,13],found:[8,9,4,14],updat:[4,7,8,9,10,12,13,14],mean:0,status:[8,9],domain:0,shortcut_nam:10,weight:[4,5,7,8,9,10,13,14],resum:9,individu:[5,8],hard:[0,5],last_nam:[1,3,5,7,8,9,10,11,13,14],"05t15":5,birthdai:[10,14],expect:1,year:[0,5,9,14],our:[1,11,12,4,14],happen:[1,4,5],extract:11,short_display_nam:10,special:[0,7,8,13],out:[0,1,4,5,7,8,10,13],variabl:[1,6,3],message_shar:[12,4],network:[5,12],private_api_kei:[1,6,3],check_multipl:10,categori:1,rel:0,print:6,correct:10,statist:8,benjamin:8,qualifi:11,insid:1,advanc:0,contain:[0,5,7,13,10,9],differ:0,standard:[5,9],status_from:8,base:[5,8],recipient_search:9,dictionari:8,put:[4,7,8,9,10,13,14],"13t23":[7,5,8],visit:11,could:1,omit:5,success:[1,3,7,8,9,13],filter:[0,1,7],search_id:7,pagin:[1,2],member_id:[5,7,8,9,12,13],summari:[1,5],assign:9,first:[0,1,10,5],oper:[0,1,7,14],rang:5,notifi:12,directli:0,curlopt_ssl_verifyp:[1,6,3],curl_init:[1,6,3],number:[5,2,13,3,10],placehold:[1,11],date:[0,5,8,10,11,14],unlik:9,alreadi:[10,8,9,13],done:8,plaintext_pref:[7,8,9,13],oppos:8,open:[0,3,4,5,6,7,8,12],payload:4,fanci:5,size:2,given:[0,8,9,4],"long":10,script:1,associ:[1,8,9,4,5],system:[8,12,4,14],messag:[4,5,8,12,11,9,14],attach:11,friend:11,curlinfo_http_cod:[1,6,3],shell:0,option:[0,5,7,8,9,10,13,14],especi:8,signup:[0,1,3,4,5,8,12,14],copi:[8,13],member_upd:[12,4],specifi:[0,2,7,8,10,11,9,14],curl_exec:[1,6,3],curlopt_httphead:[1,6,3],member_signup:[12,4],create_search:7,part:[0,9],enclos:11,than:[0,1,2,3,12,13],with_plaintext:9,"02t10":[5,8],"02t11":[5,8],"02t13":5,nathan:8,whenev:8,provid:[1,5,8,12,9,14],remov:[12,8,13,4],mailing_start:4,rate:2,structur:7,charact:9,greg:8,trackabl:11,were:5,minut:0,danc:1,error_count:[7,8,9,13],pre:[4,5,7,8,9,10,13,14],cleaner:1,sai:0,share_id:5,signup_form_id:[0,8,12,9,14],plaintext:[5,9,14],pass:[1,3],ani:[0,1,2,7,8,9],have:[0,5,8,12,9],tabl:5,seen:5,"null":[7,8,13,10,9,14],kevin:[9,14],signup_mail:0,caus:14,inform:[1,4,6,8,9,10,13],object_id:14,note:[1,8,9,4],also:[0,4,5,7,8,9,11,13],exampl:[0,1,3,5,6,7,11],take:[0,4],which:[0,1,4,8,10,12,9,14],some_number_field:0,singl:[0,1,3,4,5,8,10,12,13],excit:11,sure:1,delete_memb:13,normal:9,parent_mail:14,recipient_count:[5,9,14],previou:9,field_id:[10,12,14],last_run_at:7,most:14,pair:11,"class":[4,5,7,8,9,10,13,14],member_group_id:[8,9,13],mcconnel:[9,14],url:[1,3,4,5,6,12],mailing_finish:[12,4],clear:10,request:[1,2,3],doe:[0,5,7,8,9,10,13],member_status_upd:[12,4],declar:9,tech:4,determin:1,dataset:10,dow:0,recipi:9,"6db0cc7e6fdb2da589b65f29d90c96b6":9,show:[4,5,7,8,9,10,11,13,14],text:[10,11,12],radiu:0,syntax:[0,1,11,9],radio:10,font:[4,5,7,8,9,10,13,14],fine:9,find:[1,6,5],status_to:8,toast:[7,5,8,13],access:[1,5],giant:12,just:[0,9],pretti:8,column_ord:10,explain:[0,1],winner:9,activ:[1,5,7,8,13,9],figur:1,should:[1,2,3,7,8,11,9],templat:[11,14],share_count:5,count:[1,2,3,5],variou:[8,13],confirmed_opt_in:[7,8,9,13],familiar:1,express:0,account:[1,4,5,7,8,10,13,14],cannot:[8,9,4],progress:9,report:[10,8],requir:[1,7,8,10,11,9],object:[5,13],favorite_food:[5,7,8,13,10,9],bar:0,organ:1,include_archiv:[5,9],"public":1,"default":[5,11,13,4,9],ref_member_id:5,message_share_click:[12,4],through:[1,8,4],where:[0,1,8,11,7],view:1,set:[0,1,2,3,6,8,9,12,13],link_id:[0,5,12,9,14],see:[7,1,8],result:[0,1,2,5,8,9],respons:[0,1,2,4,5,7,8,9,10,13,14],fail:[5,9,4],themselv:2,member_field:[0,7],xxxxx:6,subject:[8,12,9,14],statu:[1,4,5,7,8,9,12,13],fancyonion:11,kei:[0,1,8,11,4],is_schedul:9,message_forward:[12,4],databas:8,user:[0,8,9,13],last_modified_at:[7,8,9,13],addresse:5,written:1,between:[0,7,2],"import":[1,8,12,4,10],subscript:[1,3],entiti:1,curlopt_url:[1,6,3],email:[0,1,3,5,6,7,8,9,13],"19t16":[7,14],wide:14,extend:1,numer:10,http404:[4,5,7,8,9,10,13,14],job:13,entir:[0,8],share_click:5,to_group_id:13,curlopt_returntransf:[1,6,3],addit:[0,1,8,9,11,13],member_remove_from_group:[12,4],send_start:[0,9,14],protect:1,accident:2,last:[0,5,10],delimit:5,pertain:5,message_click:[12,4],curlopt_post:[1,3],audienc:[1,8,9],mang:0,http500:14,seri:5,com:[4,5,6,7,8,9,11,13],zip_code_field:0,"03t15":[7,5,8,13],point:1,toni:[7,8],overview:[0,1,11,12,5],period:1,winner_id:9,colon:[7,11],optout_count:[7,8,9,13],suppli:9,cancel:9,tuesdai:0,duplic:5,quit:[5,8],user_id:4,recur:14,headsup:9,addition:[1,2],due:5,been:[1,8,10,5],mark:[8,9],whom:9,tshow:[4,5,7,8,9,10,13,14],trigger:[1,4,5,7,8,9,10,12,13,14],unsubscrib:0,treat:8,interest:[10,4],basic:[0,1,4,8,13,14],monthli:[7,8,13],blob:4,mailing_mailing_id:5,mailing_id:[0,5,8,12,9,14],fire:[8,4,14],xxx:[1,3],argument:[0,5],link_ord:[5,9],input:1,present:7,clicked_uniqu:5,"case":[1,8],look:[1,14,10],frozen:9,easier:12,email_error:[7,8,9,13],defin:[0,10,8,9],"while":0,outcom:5,abov:[0,1,8,7],error:[1,3,6,8,10,13],loop:8,opt:[0,4,5,7,8,13],readi:9,deliv:5,recipient_group:9,equal:0,itself:0,new_statu:12,webhook_id:4,recipient_memb:9,perform:8,make:[1,12,6,10],belong:[0,8,4],same:4,check:[8,6,9],member:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14],handl:1,html:9,split:9,document:[1,11,12],complet:[1,3,4,6,8,9],week:0,finish:[5,12,4],http:[1,2,3,4,5,6,11,9],href:[4,5,7,8,9,10,13,14],nest:0,someon:4,rais:[4,5,7,8,9,10,13,14],initi:[10,9],php:[1,6,3],bob:[7,5],recent:[1,8],kept:11,center:0,min:5,well:5,inherit:9,person:9,mailing_typ:[9,14],without:0,command:1,thi:[0,1,4,5,7,8,9,10,12,13,14],undefin:0,http_code:[1,6,3],latest:11,construct:[0,7,9],identifi:8,paus:9,execut:[1,3],less:0,resp:[4,5,7,8,9,10,13,14],"_post":[1,3],against:0,aspect:13,recipient_email:9,source_filenam:8,yet:5,smith:[7,5,8,9,13],"12t09":[7,8],display_nam:10,easi:[10,12],"01t00":8,had:0,littl:1,blog:4,add:[12,1,8,13,3],other:[1,8,9,3,5],curlopt_userpwd:[1,6,3],import_finish:[8,12,4],schedul:9,els:[1,6,3],save:7,match:[0,7],build:1,sanit:1,applic:[1,6,3],account_id:[1,3,4,5,6,7,8,9,10,12,13,14],disposit:1,crud:[8,13,14],print_r:[6,3],mailing_statu:[9,14],know:[5,4],background:13,parent_mailing_id:[9,14],bit:1,insert:11,emma:[1,5,7,8,9,12,13],like:1,onion:11,deprec:4,arbitrari:8,manual:9,integ:[1,8,14,10,5],public_kei:4,api:[1,2,3,6,8,12],either:[0,5,7],bunch:0,output:9,group_id:[1,8,12,3],soft:[0,5],manag:[0,1,13,4],import_id:[8,12],www:[5,9],old:7,deal:[8,13],captur:1,arrai:[0,1,3,5,6,7,8,9,10,12,13,14],some:[1,11,5],field_delet:[12,4],certain:12,intern:10,sampl:[1,4,5,7,8,9,10,13,14],elaps:[2,9],home:11,deleted_at:[7,8,13,10,9,14],some_string_field:0,librari:11,bounce_count:[7,8,9,13],confirm:8,broad:12,per:5,send_finish:[9,14],larg:[0,2],condit:7,three:9,network_cod:12,localhost:9,refer:[5,7,8,13,10,9],with_html_bodi:9,who:[0,5,8],bold:[4,5,7,8,9,10,13,14],event_typ:14,inspect:1,usag:[1,8,12],num_members_ad:8,fulli:11,from:[1,4,8,9,12,13,14],post:[1,3,4,7,8,9,10,12,13,14],group_creat:[12,4],gladi:[7,5,8,13],actual:5,zip:0,groups_upd:8,column:10,page:2,includ:[1,5,7,8,9,10,13],webview:9,disabl:[9,14],block:[1,2],yyyi:5,member_data:[1,3],glob:0,bounc:[0,5],within:[0,8],encod:[9,4],delivery_typ:[5,8],compos:0,webview_shar:5,field_typ:10,active_count:[7,8,9,13],public_webview_url:9,pivot:5,your:[1,4,5,7,8,9,10,13],websit:11,span:[4,5,7,8,9,10,13,14],wai:[1,12],area:1,overus:2,group_nam:[8,12,13,9],support:12,unique_click:5,json:[0,1,3,4,6,7],fast:8,custom:[5,8,11,10],avail:[0,11,4],start:[1,2,8,4],interfac:12,send_at:[9,14],exceed:2,"var":3,interv:[0,14],deliveri:5,head:[1,6,9,3],form:[1,3,4,6,8,10,14],enough:2,forc:1,forward:[0,4,5,8,12,9],"31st":0,group_typ:[8,9,13],push_offset_unit:14,link:[0,4,5,11,9,14],line:[1,5],realli:1,"true":[0,1,2,3,4,6,7,8,9,10,13,14],archived_t:[9,14],info:4,pull:2,made:1,possibl:[5,8,12],whether:8,maximum:2,tell:12,http403:9,record:[0,7,8],below:[0,1,8,12],http400:[7,8,9],limit:[5,2,8,9],some_array_field:0,otherwis:[10,8],start_t:14,mta:5,connect:[6,3],notif:9,creat:[4,5,7,9,10,12,13,14],"int":5,retriev:[7,1,2,8,9],email_us:[0,5],repres:5,exist:[0,4,5,7,8,10,13],behavior:11,curl:[1,6],lentil:7,probabl:14,echo:[1,3],successfulli:[5,8,9],mailing_subject:12,grp:13,todo:11,when:[8,12,4,9],detail:[1,4,7,8,9,10,13],invalid:[7,8,9],event:[4,7,8,13,12,9,14],field:[0,1,3,4,5,7,8,9,10,11,12,13,14],valid:[5,8,9,13],futur:1,num_skip:8,test:[5,6,7,13,9,14],ignor:8,you:[0,1,2,4,5,7,8,9,10,11,12,13],member_delet:[12,4],member_status_id:[7,5,8,9,13],public_api_kei:[1,6,3],stat:[5,9],claus:[0,7],event_nam:[12,4],e2ma:[1,2,6,3],error_messag:8,param:[9,4],app_messag:[1,3],ella:8,bulk:[1,8],receiv:[0,2,5,8,12,9],heads_up_email:9,longer:9,descript:[4,14],portion:0,opted_out:5,time:[1,2,8,13,5],reply_to:[9,14],resource_url:12,hello:[11,9,14]},objtypes:{"0":"http:get","1":"http:put","2":"http:post","3":"http:delete"},titles:["Search Syntax","Emma API","Pagination","PHP Signup Example","Webhooks","Response","PHP Get Member By Email Example","Searches","Members","Mailings","Fields","Placeholder Syntax","Webhook Usage","Groups","Triggers"],objnames:{"0":["http","get","HTTP get"],"1":["http","put","HTTP put"],"2":["http","post","HTTP post"],"3":["http","delete","HTTP delete"]},filenames:["member_search","index","pagination","php_signup_example","api/external/webhooks","api/external/response","php_get_member_example","api/external/searches","api/external/members","api/external/mailings","api/external/fields","placeholders","webhooks","api/external/groups","api/external/triggers"]}) \ No newline at end of file diff --git a/webhooks.html b/webhooks.html index c6090f6..a0bdb19 100644 --- a/webhooks.html +++ b/webhooks.html @@ -507,7 +507,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Mar 05, 2013 at 04:22 PM. + Last updated on Mar 19, 2013 at 04:43 PM. </div> </body> </html> \ No newline at end of file From 4071b38d0f6fe20c5960b034d74aefc03da4734a Mon Sep 17 00:00:00 2001 From: Jason Bynum <jason.bynum@myemma.com> Date: Wed, 20 Mar 2013 14:21:49 -0500 Subject: [PATCH 035/219] Update audience documentation. --- _sources/index.txt | 25 +++++++++++++++++++++++++ api/external/fields.html | 2 +- api/external/groups.html | 2 +- api/external/mailings.html | 2 +- api/external/members.html | 2 +- api/external/response.html | 2 +- api/external/searches.html | 4 ++-- api/external/triggers.html | 8 ++++---- api/external/webhooks.html | 2 +- genindex.html | 2 +- http-routingtable.html | 2 +- index.html | 22 +++++++++++++++++++++- member_search.html | 2 +- pagination.html | 2 +- php_get_member_example.html | 2 +- php_signup_example.html | 2 +- placeholders.html | 2 +- search.html | 2 +- searchindex.js | 2 +- webhooks.html | 2 +- 20 files changed, 68 insertions(+), 23 deletions(-) diff --git a/_sources/index.txt b/_sources/index.txt index 00f12df..9c2d3ce 100644 --- a/_sources/index.txt +++ b/_sources/index.txt @@ -18,6 +18,31 @@ to the following areas: * Access mailing response information by mailing, member of time period * Access response at summary and detail levels +API Wrappers +------------ + +Emma's wrappers make it easy to connect to our API in the programming language you're working in. Just select your language to integrate with Emma without having to study all the ins and outs of our API first. + +This collection is young, but growing, and includes wrappers commissioned by Emma, as well as those built by members of our community. Unless otherwise noted, all wrappers provide full coverage of our current API. If you see something that needs to be fixed or improved, please don't hesitate to fork the repo and submit a pull request. And if you've built a wrapper that you would like listed here, `let us know! <mailto:integrations@myemma.com>`_ + +**PHP** + `EmmaPHP <https://github.com/myemma/EmmaPHP>`_ : Commissioned by Emma and built by Nashville developer `Dennis Monsewicz <https://github.com/dennismonsewicz>`_. + + `OhMyEmma <https://github.com/jwoodcock/OhMyEmma>`_: Built by Nashville developer `Jacques Woodcock <https://github.com/jwoodcock>`_. + +**Python** + `EmmaPython <https://github.com/myemma/EmmaPython>`_: Built by Emma's own `Doug Hurst <https://github.com/dalanhurst>`_. + +**Ruby** + `EmmaRuby <https://github.com/myemma/EmmaRuby>`_: Commissioned by Emma and built by Nashville developer `Dennis Monsewicz <https://github.com/dennismonsewicz>`_. + +**Objective-C** + Coming Soon! + +**.NET Framework** + Coming Soon! + + Quickstart ---------- diff --git a/api/external/fields.html b/api/external/fields.html index 56d6943..202a5e5 100644 --- a/api/external/fields.html +++ b/api/external/fields.html @@ -415,7 +415,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Mar 19, 2013 at 04:43 PM. + Last updated on Mar 20, 2013 at 02:21 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/groups.html b/api/external/groups.html index f11d6e9..1a4e60b 100644 --- a/api/external/groups.html +++ b/api/external/groups.html @@ -702,7 +702,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Mar 19, 2013 at 04:43 PM. + Last updated on Mar 20, 2013 at 02:21 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/mailings.html b/api/external/mailings.html index 35d6455..adb418e 100644 --- a/api/external/mailings.html +++ b/api/external/mailings.html @@ -810,7 +810,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Mar 19, 2013 at 04:43 PM. + Last updated on Mar 20, 2013 at 02:21 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/members.html b/api/external/members.html index a5dc674..bd40bdb 100644 --- a/api/external/members.html +++ b/api/external/members.html @@ -1217,7 +1217,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Mar 19, 2013 at 04:43 PM. + Last updated on Mar 20, 2013 at 02:21 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/response.html b/api/external/response.html index f3298cc..cf8b71e 100644 --- a/api/external/response.html +++ b/api/external/response.html @@ -1019,7 +1019,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Mar 19, 2013 at 04:43 PM. + Last updated on Mar 20, 2013 at 02:21 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/searches.html b/api/external/searches.html index 89ef1b2..ac378bf 100644 --- a/api/external/searches.html +++ b/api/external/searches.html @@ -199,7 +199,7 @@ <h1>Searches<a class="headerlink" href="#searches" title="Permalink to this head "name": "Test Search", "criteria": "[\"or\", [\"group\", \"eq\", \"Monthly Newsletter\"],[\"group\", \"eq\", \"Widget Buyers\"]]", "deleted_at": null, - "last_run_at": "@D:2013-03-19T16:43:47", + "last_run_at": "@D:2013-03-20T14:21:44", "active_count": 2, "account_id": 100 } @@ -511,7 +511,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Mar 19, 2013 at 04:43 PM. + Last updated on Mar 20, 2013 at 02:21 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/triggers.html b/api/external/triggers.html index 3c31ddc..fe8d1a7 100644 --- a/api/external/triggers.html +++ b/api/external/triggers.html @@ -148,7 +148,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": 203, "push_offset_units": "0:-14:0:0", - "start_ts": "@D:2013-03-19T16:43:44", + "start_ts": "@D:2013-03-20T14:21:42", "trigger_id": 100, "signups": null, "push_offset": "@I:-1209600.0", @@ -189,7 +189,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": null, "push_offset_units": "0:3:0:0", - "start_ts": "@D:2013-03-19T16:43:44", + "start_ts": "@D:2013-03-20T14:21:42", "trigger_id": 101, "signups": [ 1, @@ -326,7 +326,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": 203, "push_offset_units": "0:-14:0:0", - "start_ts": "@D:2013-03-19T16:43:44", + "start_ts": "@D:2013-03-20T14:21:42", "trigger_id": 100, "signups": null, "push_offset": "@I:-1209600.0", @@ -499,7 +499,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Mar 19, 2013 at 04:43 PM. + Last updated on Mar 20, 2013 at 02:21 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/webhooks.html b/api/external/webhooks.html index 0274cd5..e2e2f98 100644 --- a/api/external/webhooks.html +++ b/api/external/webhooks.html @@ -487,7 +487,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Mar 19, 2013 at 04:43 PM. + Last updated on Mar 20, 2013 at 02:21 PM. </div> </body> </html> \ No newline at end of file diff --git a/genindex.html b/genindex.html index d448126..edea93f 100644 --- a/genindex.html +++ b/genindex.html @@ -146,7 +146,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Mar 19, 2013 at 04:43 PM. + Last updated on Mar 20, 2013 at 02:21 PM. </div> </body> </html> \ No newline at end of file diff --git a/http-routingtable.html b/http-routingtable.html index 62a9613..5bb9ff6 100644 --- a/http-routingtable.html +++ b/http-routingtable.html @@ -607,7 +607,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Mar 19, 2013 at 04:43 PM. + Last updated on Mar 20, 2013 at 02:21 PM. </div> </body> </html> \ No newline at end of file diff --git a/index.html b/index.html index a5a8d80..cd5913a 100644 --- a/index.html +++ b/index.html @@ -135,6 +135,25 @@ <h2>Overview<a class="headerlink" href="#overview" title="Permalink to this head </li> </ul> </div> +<div class="section" id="api-wrappers"> +<h2>API Wrappers<a class="headerlink" href="#api-wrappers" title="Permalink to this headline">¶</a></h2> +<p>Emma’s wrappers make it easy to connect to our API in the programming language you’re working in. Just select your language to integrate with Emma without having to study all the ins and outs of our API first.</p> +<p>This collection is young, but growing, and includes wrappers commissioned by Emma, as well as those built by members of our community. Unless otherwise noted, all wrappers provide full coverage of our current API. If you see something that needs to be fixed or improved, please don’t hesitate to fork the repo and submit a pull request. And if you’ve built a wrapper that you would like listed here, <a class="reference external" href="mailto:integrations%40myemma.com">let us know!</a></p> +<dl class="docutils"> +<dt><strong>PHP</strong></dt> +<dd><p class="first"><a class="reference external" href="https://github.com/myemma/EmmaPHP">EmmaPHP</a> : Commissioned by Emma and built by Nashville developer <a class="reference external" href="https://github.com/dennismonsewicz">Dennis Monsewicz</a>.</p> +<p class="last"><a class="reference external" href="https://github.com/jwoodcock/OhMyEmma">OhMyEmma</a>: Built by Nashville developer <a class="reference external" href="https://github.com/jwoodcock">Jacques Woodcock</a>.</p> +</dd> +<dt><strong>Python</strong></dt> +<dd><a class="reference external" href="https://github.com/myemma/EmmaPython">EmmaPython</a>: Built by Emma’s own <a class="reference external" href="https://github.com/dalanhurst">Doug Hurst</a>.</dd> +<dt><strong>Ruby</strong></dt> +<dd><a class="reference external" href="https://github.com/myemma/EmmaRuby">EmmaRuby</a>: Commissioned by Emma and built by Nashville developer <a class="reference external" href="https://github.com/dennismonsewicz">Dennis Monsewicz</a>.</dd> +<dt><strong>Objective-C</strong></dt> +<dd>Coming Soon!</dd> +<dt><strong>.NET Framework</strong></dt> +<dd>Coming Soon!</dd> +</dl> +</div> <div class="section" id="quickstart"> <h2>Quickstart<a class="headerlink" href="#quickstart" title="Permalink to this headline">¶</a></h2> <p>Let’s start by building some PHP code that will add a member to our audience.</p> @@ -275,6 +294,7 @@ <h3><a href="#">Table Of Contents</a></h3> <ul> <li><a class="reference internal" href="#">Emma API</a><ul> <li><a class="reference internal" href="#overview">Overview</a></li> +<li><a class="reference internal" href="#api-wrappers">API Wrappers</a></li> <li><a class="reference internal" href="#quickstart">Quickstart</a></li> <li><a class="reference internal" href="#api-calls-by-category">API calls by category</a><ul> </ul> @@ -324,7 +344,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Mar 19, 2013 at 04:43 PM. + Last updated on Mar 20, 2013 at 02:21 PM. </div> </body> </html> \ No newline at end of file diff --git a/member_search.html b/member_search.html index 7c3a61f..7e52f66 100644 --- a/member_search.html +++ b/member_search.html @@ -256,7 +256,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Mar 19, 2013 at 04:43 PM. + Last updated on Mar 20, 2013 at 02:21 PM. </div> </body> </html> \ No newline at end of file diff --git a/pagination.html b/pagination.html index da6b50c..aaffbf1 100644 --- a/pagination.html +++ b/pagination.html @@ -168,7 +168,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Mar 19, 2013 at 04:43 PM. + Last updated on Mar 20, 2013 at 02:21 PM. </div> </body> </html> \ No newline at end of file diff --git a/php_get_member_example.html b/php_get_member_example.html index ffd37b7..2ed5998 100644 --- a/php_get_member_example.html +++ b/php_get_member_example.html @@ -183,7 +183,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Mar 19, 2013 at 04:43 PM. + Last updated on Mar 20, 2013 at 02:21 PM. </div> </body> </html> \ No newline at end of file diff --git a/php_signup_example.html b/php_signup_example.html index 8c9971e..6b88725 100644 --- a/php_signup_example.html +++ b/php_signup_example.html @@ -205,7 +205,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Mar 19, 2013 at 04:43 PM. + Last updated on Mar 20, 2013 at 02:21 PM. </div> </body> </html> \ No newline at end of file diff --git a/placeholders.html b/placeholders.html index 5e42695..dab7f9e 100644 --- a/placeholders.html +++ b/placeholders.html @@ -183,7 +183,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Mar 19, 2013 at 04:43 PM. + Last updated on Mar 20, 2013 at 02:21 PM. </div> </body> </html> \ No newline at end of file diff --git a/search.html b/search.html index 5778b81..908da84 100644 --- a/search.html +++ b/search.html @@ -153,7 +153,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Mar 19, 2013 at 04:43 PM. + Last updated on Mar 20, 2013 at 02:21 PM. </div> </body> </html> \ No newline at end of file diff --git a/searchindex.js b/searchindex.js index cd0d70c..2c776ee 100644 --- a/searchindex.js +++ b/searchindex.js @@ -1 +1 @@ -Search.setIndex({objects:{"":{"/#account_id/members/#member_id/groups/remove":[8,1,1,"put--#account_id-members-#member_id-groups-remove"],"/#account_id/mailings/#mailing_id/winner/#winner_id":[9,2,1,"post--#account_id-mailings-#mailing_id-winner-#winner_id"],"/#account_id/response/#mailing_id/in_progress":[5,0,1,"get--#account_id-response-#mailing_id-in_progress"],"/#account_id/members/groups/remove":[8,1,1,"put--#account_id-members-groups-remove"],"/#account_id/mailings/#mailing_id/searches":[9,0,1,"get--#account_id-mailings-#mailing_id-searches"],"/#account_id/fields":[10,2,1,"post--#account_id-fields"],"/#account_id/members/#group_id/copy":[8,1,1,"put--#account_id-members-#group_id-copy"],"/#account_id/members/status":[8,1,1,"put--#account_id-members-status"],"/#account_id/response/#mailing_id/shares/overview":[5,0,1,"get--#account_id-response-#mailing_id-shares-overview"],"/#account_id/webhooks/events":[4,0,1,"get--#account_id-webhooks-events"],"/#account_id/members/#member_id/optout":[8,0,1,"get--#account_id-members-#member_id-optout"],"/#account_id/webhooks":[4,3,1,"delete--#account_id-webhooks"],"/#account_id/fields/#field_id":[10,3,1,"delete--#account_id-fields-#field_id"],"/#account_id/response/#mailing_id":[5,0,1,"get--#account_id-response-#mailing_id"],"/#account_id/groups/#member_group_id/members/remove":[13,3,1,"delete--#account_id-groups-#member_group_id-members-remove"],"/#account_id/searches":[7,2,1,"post--#account_id-searches"],"/#account_id/members/imports":[8,0,1,"get--#account_id-members-imports"],"/#account_id/forwards/#mailing_id/#member_id":[9,2,1,"post--#account_id-forwards-#mailing_id-#member_id"],"/#account_id/response/#mailing_id/customer_share_clicks":[5,0,1,"get--#account_id-response-#mailing_id-customer_share_clicks"],"/#account_id/mailings/#mailing_id/messages/#member_id":[9,0,1,"get--#account_id-mailings-#mailing_id-messages-#member_id"],"/#account_id/members/#member_id/mailings":[8,0,1,"get--#account_id-members-#member_id-mailings"],"/#account_id/groups/#from_group_id/#to_group_id/members/copy":[13,1,1,"put--#account_id-groups-#from_group_id-#to_group_id-members-copy"],"/#account_id/triggers":[14,2,1,"post--#account_id-triggers"],"/#account_id/triggers/#trigger_id":[14,3,1,"delete--#account_id-triggers-#trigger_id"],"/#account_id/members/delete":[8,1,1,"put--#account_id-members-delete"],"/#account_id/mailings/#mailing_id/groups":[9,0,1,"get--#account_id-mailings-#mailing_id-groups"],"/#account_id/response/#mailing_id/forwards":[5,0,1,"get--#account_id-response-#mailing_id-forwards"],"/#account_id/members/#member_id":[8,3,1,"delete--#account_id-members-#member_id"],"/#account_id/triggers/#trigger_id/mailings":[14,0,1,"get--#account_id-triggers-#trigger_id-mailings"],"/#account_id/searches/#search_id/members":[7,0,1,"get--#account_id-searches-#search_id-members"],"/#account_id/members/status/:status_from/to/:status_to":[8,1,1,"put--#account_id-members-status--status_from-to--status_to"],"/#account_id/response/#mailing_id/sends":[5,0,1,"get--#account_id-response-#mailing_id-sends"],"/#account_id/members":[8,3,1,"delete--#account_id-members"],"/#account_id/members/email/:email":[8,0,1,"get--#account_id-members-email--email"],"/#account_id/response/#mailing_id/links":[5,0,1,"get--#account_id-response-#mailing_id-links"],"/#account_id/searches/#search_id":[7,3,1,"delete--#account_id-searches-#search_id"],"/#account_id/members/imports/#import_id/members":[8,0,1,"get--#account_id-members-imports-#import_id-members"],"/#account_id/fields/#field_id/clear":[10,2,1,"post--#account_id-fields-#field_id-clear"],"/#account_id/groups/#member_group_id/members":[13,3,1,"delete--#account_id-groups-#member_group_id-members"],"/#account_id/members/imports/#import_id":[8,0,1,"get--#account_id-members-imports-#import_id"],"/#account_id/response":[5,0,1,"get--#account_id-response"],"/#account_id/response/#mailing_id/opens":[5,0,1,"get--#account_id-response-#mailing_id-opens"],"/#account_id/members/imports/delete":[8,3,1,"delete--#account_id-members-imports-delete"],"/#account_id/mailings":[9,0,1,"get--#account_id-mailings"],"/#account_id/mailings/cancel/#mailing_id":[9,3,1,"delete--#account_id-mailings-cancel-#mailing_id"],"/#account_id/mailings/validate":[9,2,1,"post--#account_id-mailings-validate"],"/#account_id/response/#mailing_id/deliveries":[5,0,1,"get--#account_id-response-#mailing_id-deliveries"],"/#account_id/mailings/#mailing_id/members":[9,0,1,"get--#account_id-mailings-#mailing_id-members"],"/#account_id/response/#share_id/customer_share":[5,0,1,"get--#account_id-response-#share_id-customer_share"],"/#account_id/webhooks/#webhook_id":[4,3,1,"delete--#account_id-webhooks-#webhook_id"],"/#account_id/members/add":[8,2,1,"post--#account_id-members-add"],"/#account_id/members/email/optout/:email":[8,1,1,"put--#account_id-members-email-optout--email"],"/#account_id/response/#mailing_id/optouts":[5,0,1,"get--#account_id-response-#mailing_id-optouts"],"/#account_id/response/#mailing_id/shares":[5,0,1,"get--#account_id-response-#mailing_id-shares"],"/#account_id/groups/#member_group_id":[13,3,1,"delete--#account_id-groups-#member_group_id"],"/#account_id/mailings/#mailing_id":[9,3,1,"delete--#account_id-mailings-#mailing_id"],"/#account_id/members/#member_id/groups":[8,3,1,"delete--#account_id-members-#member_id-groups"],"/#account_id/groups":[13,2,1,"post--#account_id-groups"],"/#account_id/response/#mailing_id/clicks":[5,0,1,"get--#account_id-response-#mailing_id-clicks"],"/#account_id/mailings/#mailing_id/headsup":[9,0,1,"get--#account_id-mailings-#mailing_id-headsup"],"/#account_id/response/#mailing_id/signups":[5,0,1,"get--#account_id-response-#mailing_id-signups"],"/#account_id/response/#mailing_id/customer_shares":[5,0,1,"get--#account_id-response-#mailing_id-customer_shares"]}},terms:{all:[0,1,4,5,8,9,10,11,12,13,14],code:[0,1,6,3],change_typ:8,queri:[0,2,4],month:[0,5,9,14],four:[0,5],mile:0,least:0,field_creat:[12,4],link_target:[5,9],content:[1,11,6,9,3],privat:1,specif:[8,9,4],friendli:5,send:[1,9,4,3,5],customer_share_click:5,those:[5,12],group_upd:[12,4],sent:[5,8,12,9,14],curl_clos:[1,6,3],brown:[7,8],digit:5,everi:0,string:[0,4,5,7,8,9,10,12,13,14],fals:[1,3,4,5,6,7,8,9,10,13,14],webhook:[1,12,4],mailing_status:9,trigger_id:14,webview_share_click:5,affect:[7,8],member_add:[12,4],create_mail:9,new_boolean:10,foo:0,level:1,group_delet:[12,4],list:[0,1,2,4,5,7,8,9,10,11,12,13,14],upload:8,iter:2,"try":8,item:2,plaintext_onli:[9,14],div:[4,5,7,8,9,10,13,14],survey_id:14,pleas:[1,8,11,9],prevent:2,work:[1,4],ten:0,sync:10,sign:[0,5,4],past:1,second:[0,7,14],follow:[0,1,4,5,7,9,11,13],further:1,durat:9,click:[0,4,5,7,8,12,14],append:2,even:10,what:1,hide:[4,5,7,8,9,10,13,14],appear:[1,8],from_group_id:13,section:1,current:[8,12,9],delet:[1,4,7,8,9,10,12,13,14],"new":[1,4,5,7,8,9,10,11,13,14],net:[1,2,6,3],delivery_t:8,method:[5,8,13,4,9],can:[0,1,2,4,5,7,8,9,11,12,13],widget:[7,10,8,9,13],hash:0,datematch:0,displai:10,variat:9,gener:[0,8,12,14],onli:[5,8],here:[0,1,3,5,6,8],bodi:9,let:[1,4,10],address:[0,1,8,6,9],along:8,sinc:8,valu:[0,5,7,8,10,11],field_upd:[12,4],search:[0,1,8,9,7],survei:14,sender:[9,14],larger:2,queue:5,prior:9,action:[0,8],chang:[8,4],campaign:5,newbi:5,appli:[7,14],prefer:0,myemma:[4,5,7,8,9,13],filenam:8,customer_shar:5,"boolean":[0,1,5,7,8,9,10,13,14],curlopt_postfield:[1,3],total:5,jone:[7,5,8,13],select:10,newslett:[7,8,13],describ:7,would:[0,1],regist:4,two:[0,5],next:[0,1],create_webhook:4,few:[5,8],call:[1,2,3,4,6,8,12],criteria:7,member_add_to_group:[12,4],type:[1,3,4,5,6,7,10,9,14],until:2,more:[0,4,7,8,9,13],peopl:5,relat:[1,8,11,9],about:[10,8,12,4,9],notic:8,thide:[4,5,7,8,9,10,13,14],flag:[5,7,8,10,9,14],exce:2,indic:8,examin:1,particular:[1,4,5,8,10,12,9],in_progress:5,origin:9,must:[0,7,13,10],none:9,endpoint:[1,4,5,7,8,9,10,13,14],join:[0,7],hour:0,setup:1,member_sinc:[0,5,7,8,9,13],uniqu:5,histori:8,soup:7,remain:[0,9],archiv:[5,9],member_optout:[12,4],drill:5,control:[1,11,9],quickstart:1,give:5,forward_mailing_id:5,email_domain:[0,5],share:[0,5,8,12,4],accept:[0,5,7,8,9,10,11,13,14],total_click:5,tag:[11,9],want:[1,12,13,5],occur:[7,12],some_numeric_field:0,delai:14,alwai:0,webhook_event_id:4,cours:1,end:[2,8],first_nam:[1,3,5,7,8,9,10,11,13,14],started_or_finish:[9,14],anoth:[9,13],get:[1,4,5,6,7,8,9,10,13,14],message_open:[12,4],html_bodi:[9,14],share_statu:5,push_offset:14,del_statu:5,tild:5,num_members_upd:8,simpl:0,chri:9,pizza:[7,8],map:0,autent:1,referenc:7,xxxx:6,sundai:0,membership:13,taco:[7,5,8,9,13],mai:12,multipl:[10,8],data:[1,3,4,5,10,12],welcom:11,add_onli:8,"short":0,json_encod:[1,3],optout:[5,8,12,13],num_dupl:8,favorit:10,correspond:[0,1],greet:11,predic:[0,1],issu:[1,10],"12t11":[7,5,8,9,13],combin:7,allow:[0,7,8],some_zipcode_field:0,signed_up:5,order:[5,10],michel:[8,9],mailing_nam:5,checkbox:10,fields_upd:8,over:2,becaus:12,buyer:[7,8,9,13],comma:[9,13],is_dis:14,vari:8,paramet:[2,4,5,7,8,9,10,13,14],widget_typ:10,style:[0,4,5,7,8,9,10,13,14],group:[0,1,3,4,7,8,9,12,13,14],curl_setopt:[1,6,3],how:[7,1,2,4],import_start:8,better:[13,14],platform:1,pend:[1,9],mailing_list:9,onc:9,mail:[0,1,4,5,8,11,12,9,14],hidden:13,main:1,might:[1,4],link_nam:[5,9],them:[8,9],"return":[0,1,4,5,7,8,9,10,12,13,14],greater:[0,8],thei:[0,9],food:10,timestamp:[0,5,12,9,10],spell:4,dai:0,auth:1,instead:[12,2,8],now:5,down:5,term:[0,1],alex:9,name:[0,4,5,7,8,9,10,11,13,14],edit:[7,1,14,10],curl_getinfo:[1,6,3],authent:[1,6,4,3],successufulli:4,separ:[1,9,13],each:[1,2,5,9,12,11,13],found:[8,9,4,14],updat:[4,7,8,9,10,12,13,14],mean:0,status:[8,9],domain:0,shortcut_nam:10,weight:[4,5,7,8,9,10,13,14],resum:9,individu:[5,8],hard:[0,5],last_nam:[1,3,5,7,8,9,10,11,13,14],"05t15":5,birthdai:[10,14],expect:1,year:[0,5,9,14],our:[1,11,12,4,14],happen:[1,4,5],extract:11,short_display_nam:10,special:[0,7,8,13],out:[0,1,4,5,7,8,10,13],variabl:[1,6,3],message_shar:[12,4],network:[5,12],private_api_kei:[1,6,3],check_multipl:10,categori:1,rel:0,print:6,correct:10,statist:8,benjamin:8,qualifi:11,insid:1,advanc:0,contain:[0,5,7,13,10,9],differ:0,standard:[5,9],status_from:8,base:[5,8],recipient_search:9,dictionari:8,put:[4,7,8,9,10,13,14],"13t23":[7,5,8],visit:11,could:1,omit:5,success:[1,3,7,8,9,13],filter:[0,1,7],search_id:7,pagin:[1,2],member_id:[5,7,8,9,12,13],summari:[1,5],assign:9,first:[0,1,10,5],oper:[0,1,7,14],rang:5,notifi:12,directli:0,curlopt_ssl_verifyp:[1,6,3],curl_init:[1,6,3],number:[5,2,13,3,10],placehold:[1,11],date:[0,5,8,10,11,14],unlik:9,alreadi:[10,8,9,13],done:8,plaintext_pref:[7,8,9,13],oppos:8,open:[0,3,4,5,6,7,8,12],payload:4,fanci:5,size:2,given:[0,8,9,4],"long":10,script:1,associ:[1,8,9,4,5],system:[8,12,4,14],messag:[4,5,8,12,11,9,14],attach:11,friend:11,curlinfo_http_cod:[1,6,3],shell:0,option:[0,5,7,8,9,10,13,14],especi:8,signup:[0,1,3,4,5,8,12,14],copi:[8,13],member_upd:[12,4],specifi:[0,2,7,8,10,11,9,14],curl_exec:[1,6,3],curlopt_httphead:[1,6,3],member_signup:[12,4],create_search:7,part:[0,9],enclos:11,than:[0,1,2,3,12,13],with_plaintext:9,"02t10":[5,8],"02t11":[5,8],"02t13":5,nathan:8,whenev:8,provid:[1,5,8,12,9,14],remov:[12,8,13,4],mailing_start:4,rate:2,structur:7,charact:9,greg:8,trackabl:11,were:5,minut:0,danc:1,error_count:[7,8,9,13],pre:[4,5,7,8,9,10,13,14],cleaner:1,sai:0,share_id:5,signup_form_id:[0,8,12,9,14],plaintext:[5,9,14],pass:[1,3],ani:[0,1,2,7,8,9],have:[0,5,8,12,9],tabl:5,seen:5,"null":[7,8,13,10,9,14],kevin:[9,14],signup_mail:0,caus:14,inform:[1,4,6,8,9,10,13],object_id:14,note:[1,8,9,4],also:[0,4,5,7,8,9,11,13],exampl:[0,1,3,5,6,7,11],take:[0,4],which:[0,1,4,8,10,12,9,14],some_number_field:0,singl:[0,1,3,4,5,8,10,12,13],excit:11,sure:1,delete_memb:13,normal:9,parent_mail:14,recipient_count:[5,9,14],previou:9,field_id:[10,12,14],last_run_at:7,most:14,pair:11,"class":[4,5,7,8,9,10,13,14],member_group_id:[8,9,13],mcconnel:[9,14],url:[1,3,4,5,6,12],mailing_finish:[12,4],clear:10,request:[1,2,3],doe:[0,5,7,8,9,10,13],member_status_upd:[12,4],declar:9,tech:4,determin:1,dataset:10,dow:0,recipi:9,"6db0cc7e6fdb2da589b65f29d90c96b6":9,show:[4,5,7,8,9,10,11,13,14],text:[10,11,12],radiu:0,syntax:[0,1,11,9],radio:10,font:[4,5,7,8,9,10,13,14],fine:9,find:[1,6,5],status_to:8,toast:[7,5,8,13],access:[1,5],giant:12,just:[0,9],pretti:8,column_ord:10,explain:[0,1],winner:9,activ:[1,5,7,8,13,9],figur:1,should:[1,2,3,7,8,11,9],templat:[11,14],share_count:5,count:[1,2,3,5],variou:[8,13],confirmed_opt_in:[7,8,9,13],familiar:1,express:0,account:[1,4,5,7,8,10,13,14],cannot:[8,9,4],progress:9,report:[10,8],requir:[1,7,8,10,11,9],object:[5,13],favorite_food:[5,7,8,13,10,9],bar:0,organ:1,include_archiv:[5,9],"public":1,"default":[5,11,13,4,9],ref_member_id:5,message_share_click:[12,4],through:[1,8,4],where:[0,1,8,11,7],view:1,set:[0,1,2,3,6,8,9,12,13],link_id:[0,5,12,9,14],see:[7,1,8],result:[0,1,2,5,8,9],respons:[0,1,2,4,5,7,8,9,10,13,14],fail:[5,9,4],themselv:2,member_field:[0,7],xxxxx:6,subject:[8,12,9,14],statu:[1,4,5,7,8,9,12,13],fancyonion:11,kei:[0,1,8,11,4],is_schedul:9,message_forward:[12,4],databas:8,user:[0,8,9,13],last_modified_at:[7,8,9,13],addresse:5,written:1,between:[0,7,2],"import":[1,8,12,4,10],subscript:[1,3],entiti:1,curlopt_url:[1,6,3],email:[0,1,3,5,6,7,8,9,13],"19t16":[7,14],wide:14,extend:1,numer:10,http404:[4,5,7,8,9,10,13,14],job:13,entir:[0,8],share_click:5,to_group_id:13,curlopt_returntransf:[1,6,3],addit:[0,1,8,9,11,13],member_remove_from_group:[12,4],send_start:[0,9,14],protect:1,accident:2,last:[0,5,10],delimit:5,pertain:5,message_click:[12,4],curlopt_post:[1,3],audienc:[1,8,9],mang:0,http500:14,seri:5,com:[4,5,6,7,8,9,11,13],zip_code_field:0,"03t15":[7,5,8,13],point:1,toni:[7,8],overview:[0,1,11,12,5],period:1,winner_id:9,colon:[7,11],optout_count:[7,8,9,13],suppli:9,cancel:9,tuesdai:0,duplic:5,quit:[5,8],user_id:4,recur:14,headsup:9,addition:[1,2],due:5,been:[1,8,10,5],mark:[8,9],whom:9,tshow:[4,5,7,8,9,10,13,14],trigger:[1,4,5,7,8,9,10,12,13,14],unsubscrib:0,treat:8,interest:[10,4],basic:[0,1,4,8,13,14],monthli:[7,8,13],blob:4,mailing_mailing_id:5,mailing_id:[0,5,8,12,9,14],fire:[8,4,14],xxx:[1,3],argument:[0,5],link_ord:[5,9],input:1,present:7,clicked_uniqu:5,"case":[1,8],look:[1,14,10],frozen:9,easier:12,email_error:[7,8,9,13],defin:[0,10,8,9],"while":0,outcom:5,abov:[0,1,8,7],error:[1,3,6,8,10,13],loop:8,opt:[0,4,5,7,8,13],readi:9,deliv:5,recipient_group:9,equal:0,itself:0,new_statu:12,webhook_id:4,recipient_memb:9,perform:8,make:[1,12,6,10],belong:[0,8,4],same:4,check:[8,6,9],member:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14],handl:1,html:9,split:9,document:[1,11,12],complet:[1,3,4,6,8,9],week:0,finish:[5,12,4],http:[1,2,3,4,5,6,11,9],href:[4,5,7,8,9,10,13,14],nest:0,someon:4,rais:[4,5,7,8,9,10,13,14],initi:[10,9],php:[1,6,3],bob:[7,5],recent:[1,8],kept:11,center:0,min:5,well:5,inherit:9,person:9,mailing_typ:[9,14],without:0,command:1,thi:[0,1,4,5,7,8,9,10,12,13,14],undefin:0,http_code:[1,6,3],latest:11,construct:[0,7,9],identifi:8,paus:9,execut:[1,3],less:0,resp:[4,5,7,8,9,10,13,14],"_post":[1,3],against:0,aspect:13,recipient_email:9,source_filenam:8,yet:5,smith:[7,5,8,9,13],"12t09":[7,8],display_nam:10,easi:[10,12],"01t00":8,had:0,littl:1,blog:4,add:[12,1,8,13,3],other:[1,8,9,3,5],curlopt_userpwd:[1,6,3],import_finish:[8,12,4],schedul:9,els:[1,6,3],save:7,match:[0,7],build:1,sanit:1,applic:[1,6,3],account_id:[1,3,4,5,6,7,8,9,10,12,13,14],disposit:1,crud:[8,13,14],print_r:[6,3],mailing_statu:[9,14],know:[5,4],background:13,parent_mailing_id:[9,14],bit:1,insert:11,emma:[1,5,7,8,9,12,13],like:1,onion:11,deprec:4,arbitrari:8,manual:9,integ:[1,8,14,10,5],public_kei:4,api:[1,2,3,6,8,12],either:[0,5,7],bunch:0,output:9,group_id:[1,8,12,3],soft:[0,5],manag:[0,1,13,4],import_id:[8,12],www:[5,9],old:7,deal:[8,13],captur:1,arrai:[0,1,3,5,6,7,8,9,10,12,13,14],some:[1,11,5],field_delet:[12,4],certain:12,intern:10,sampl:[1,4,5,7,8,9,10,13,14],elaps:[2,9],home:11,deleted_at:[7,8,13,10,9,14],some_string_field:0,librari:11,bounce_count:[7,8,9,13],confirm:8,broad:12,per:5,send_finish:[9,14],larg:[0,2],condit:7,three:9,network_cod:12,localhost:9,refer:[5,7,8,13,10,9],with_html_bodi:9,who:[0,5,8],bold:[4,5,7,8,9,10,13,14],event_typ:14,inspect:1,usag:[1,8,12],num_members_ad:8,fulli:11,from:[1,4,8,9,12,13,14],post:[1,3,4,7,8,9,10,12,13,14],group_creat:[12,4],gladi:[7,5,8,13],actual:5,zip:0,groups_upd:8,column:10,page:2,includ:[1,5,7,8,9,10,13],webview:9,disabl:[9,14],block:[1,2],yyyi:5,member_data:[1,3],glob:0,bounc:[0,5],within:[0,8],encod:[9,4],delivery_typ:[5,8],compos:0,webview_shar:5,field_typ:10,active_count:[7,8,9,13],public_webview_url:9,pivot:5,your:[1,4,5,7,8,9,10,13],websit:11,span:[4,5,7,8,9,10,13,14],wai:[1,12],area:1,overus:2,group_nam:[8,12,13,9],support:12,unique_click:5,json:[0,1,3,4,6,7],fast:8,custom:[5,8,11,10],avail:[0,11,4],start:[1,2,8,4],interfac:12,send_at:[9,14],exceed:2,"var":3,interv:[0,14],deliveri:5,head:[1,6,9,3],form:[1,3,4,6,8,10,14],enough:2,forc:1,forward:[0,4,5,8,12,9],"31st":0,group_typ:[8,9,13],push_offset_unit:14,link:[0,4,5,11,9,14],line:[1,5],realli:1,"true":[0,1,2,3,4,6,7,8,9,10,13,14],archived_t:[9,14],info:4,pull:2,made:1,possibl:[5,8,12],whether:8,maximum:2,tell:12,http403:9,record:[0,7,8],below:[0,1,8,12],http400:[7,8,9],limit:[5,2,8,9],some_array_field:0,otherwis:[10,8],start_t:14,mta:5,connect:[6,3],notif:9,creat:[4,5,7,9,10,12,13,14],"int":5,retriev:[7,1,2,8,9],email_us:[0,5],repres:5,exist:[0,4,5,7,8,10,13],behavior:11,curl:[1,6],lentil:7,probabl:14,echo:[1,3],successfulli:[5,8,9],mailing_subject:12,grp:13,todo:11,when:[8,12,4,9],detail:[1,4,7,8,9,10,13],invalid:[7,8,9],event:[4,7,8,13,12,9,14],field:[0,1,3,4,5,7,8,9,10,11,12,13,14],valid:[5,8,9,13],futur:1,num_skip:8,test:[5,6,7,13,9,14],ignor:8,you:[0,1,2,4,5,7,8,9,10,11,12,13],member_delet:[12,4],member_status_id:[7,5,8,9,13],public_api_kei:[1,6,3],stat:[5,9],claus:[0,7],event_nam:[12,4],e2ma:[1,2,6,3],error_messag:8,param:[9,4],app_messag:[1,3],ella:8,bulk:[1,8],receiv:[0,2,5,8,12,9],heads_up_email:9,longer:9,descript:[4,14],portion:0,opted_out:5,time:[1,2,8,13,5],reply_to:[9,14],resource_url:12,hello:[11,9,14]},objtypes:{"0":"http:get","1":"http:put","2":"http:post","3":"http:delete"},titles:["Search Syntax","Emma API","Pagination","PHP Signup Example","Webhooks","Response","PHP Get Member By Email Example","Searches","Members","Mailings","Fields","Placeholder Syntax","Webhook Usage","Groups","Triggers"],objnames:{"0":["http","get","HTTP get"],"1":["http","put","HTTP put"],"2":["http","post","HTTP post"],"3":["http","delete","HTTP delete"]},filenames:["member_search","index","pagination","php_signup_example","api/external/webhooks","api/external/response","php_get_member_example","api/external/searches","api/external/members","api/external/mailings","api/external/fields","placeholders","webhooks","api/external/groups","api/external/triggers"]}) \ No newline at end of file +Search.setIndex({objects:{"":{"/#account_id/members/#member_id/groups/remove":[8,1,1,"put--#account_id-members-#member_id-groups-remove"],"/#account_id/mailings/#mailing_id/winner/#winner_id":[9,2,1,"post--#account_id-mailings-#mailing_id-winner-#winner_id"],"/#account_id/response/#mailing_id/in_progress":[5,0,1,"get--#account_id-response-#mailing_id-in_progress"],"/#account_id/members/groups/remove":[8,1,1,"put--#account_id-members-groups-remove"],"/#account_id/mailings/#mailing_id/searches":[9,0,1,"get--#account_id-mailings-#mailing_id-searches"],"/#account_id/fields":[10,2,1,"post--#account_id-fields"],"/#account_id/members/#group_id/copy":[8,1,1,"put--#account_id-members-#group_id-copy"],"/#account_id/members/status":[8,1,1,"put--#account_id-members-status"],"/#account_id/response/#mailing_id/shares/overview":[5,0,1,"get--#account_id-response-#mailing_id-shares-overview"],"/#account_id/webhooks/events":[4,0,1,"get--#account_id-webhooks-events"],"/#account_id/members/#member_id/optout":[8,0,1,"get--#account_id-members-#member_id-optout"],"/#account_id/webhooks":[4,3,1,"delete--#account_id-webhooks"],"/#account_id/fields/#field_id":[10,3,1,"delete--#account_id-fields-#field_id"],"/#account_id/response/#mailing_id":[5,0,1,"get--#account_id-response-#mailing_id"],"/#account_id/groups/#member_group_id/members/remove":[13,3,1,"delete--#account_id-groups-#member_group_id-members-remove"],"/#account_id/searches":[7,2,1,"post--#account_id-searches"],"/#account_id/members/imports":[8,0,1,"get--#account_id-members-imports"],"/#account_id/forwards/#mailing_id/#member_id":[9,2,1,"post--#account_id-forwards-#mailing_id-#member_id"],"/#account_id/response/#mailing_id/customer_share_clicks":[5,0,1,"get--#account_id-response-#mailing_id-customer_share_clicks"],"/#account_id/mailings/#mailing_id/messages/#member_id":[9,0,1,"get--#account_id-mailings-#mailing_id-messages-#member_id"],"/#account_id/members/#member_id/mailings":[8,0,1,"get--#account_id-members-#member_id-mailings"],"/#account_id/groups/#from_group_id/#to_group_id/members/copy":[13,1,1,"put--#account_id-groups-#from_group_id-#to_group_id-members-copy"],"/#account_id/triggers":[14,2,1,"post--#account_id-triggers"],"/#account_id/triggers/#trigger_id":[14,3,1,"delete--#account_id-triggers-#trigger_id"],"/#account_id/members/delete":[8,1,1,"put--#account_id-members-delete"],"/#account_id/mailings/#mailing_id/groups":[9,0,1,"get--#account_id-mailings-#mailing_id-groups"],"/#account_id/response/#mailing_id/forwards":[5,0,1,"get--#account_id-response-#mailing_id-forwards"],"/#account_id/members/#member_id":[8,3,1,"delete--#account_id-members-#member_id"],"/#account_id/triggers/#trigger_id/mailings":[14,0,1,"get--#account_id-triggers-#trigger_id-mailings"],"/#account_id/searches/#search_id/members":[7,0,1,"get--#account_id-searches-#search_id-members"],"/#account_id/members/status/:status_from/to/:status_to":[8,1,1,"put--#account_id-members-status--status_from-to--status_to"],"/#account_id/response/#mailing_id/sends":[5,0,1,"get--#account_id-response-#mailing_id-sends"],"/#account_id/members":[8,3,1,"delete--#account_id-members"],"/#account_id/members/email/:email":[8,0,1,"get--#account_id-members-email--email"],"/#account_id/response/#mailing_id/links":[5,0,1,"get--#account_id-response-#mailing_id-links"],"/#account_id/searches/#search_id":[7,3,1,"delete--#account_id-searches-#search_id"],"/#account_id/members/imports/#import_id/members":[8,0,1,"get--#account_id-members-imports-#import_id-members"],"/#account_id/fields/#field_id/clear":[10,2,1,"post--#account_id-fields-#field_id-clear"],"/#account_id/groups/#member_group_id/members":[13,3,1,"delete--#account_id-groups-#member_group_id-members"],"/#account_id/members/imports/#import_id":[8,0,1,"get--#account_id-members-imports-#import_id"],"/#account_id/response":[5,0,1,"get--#account_id-response"],"/#account_id/response/#mailing_id/opens":[5,0,1,"get--#account_id-response-#mailing_id-opens"],"/#account_id/members/imports/delete":[8,3,1,"delete--#account_id-members-imports-delete"],"/#account_id/mailings":[9,0,1,"get--#account_id-mailings"],"/#account_id/mailings/cancel/#mailing_id":[9,3,1,"delete--#account_id-mailings-cancel-#mailing_id"],"/#account_id/mailings/validate":[9,2,1,"post--#account_id-mailings-validate"],"/#account_id/response/#mailing_id/deliveries":[5,0,1,"get--#account_id-response-#mailing_id-deliveries"],"/#account_id/mailings/#mailing_id/members":[9,0,1,"get--#account_id-mailings-#mailing_id-members"],"/#account_id/response/#share_id/customer_share":[5,0,1,"get--#account_id-response-#share_id-customer_share"],"/#account_id/webhooks/#webhook_id":[4,3,1,"delete--#account_id-webhooks-#webhook_id"],"/#account_id/members/add":[8,2,1,"post--#account_id-members-add"],"/#account_id/members/email/optout/:email":[8,1,1,"put--#account_id-members-email-optout--email"],"/#account_id/response/#mailing_id/optouts":[5,0,1,"get--#account_id-response-#mailing_id-optouts"],"/#account_id/response/#mailing_id/shares":[5,0,1,"get--#account_id-response-#mailing_id-shares"],"/#account_id/groups/#member_group_id":[13,3,1,"delete--#account_id-groups-#member_group_id"],"/#account_id/mailings/#mailing_id":[9,3,1,"delete--#account_id-mailings-#mailing_id"],"/#account_id/members/#member_id/groups":[8,3,1,"delete--#account_id-members-#member_id-groups"],"/#account_id/groups":[13,2,1,"post--#account_id-groups"],"/#account_id/response/#mailing_id/clicks":[5,0,1,"get--#account_id-response-#mailing_id-clicks"],"/#account_id/mailings/#mailing_id/headsup":[9,0,1,"get--#account_id-mailings-#mailing_id-headsup"],"/#account_id/response/#mailing_id/signups":[5,0,1,"get--#account_id-response-#mailing_id-signups"],"/#account_id/response/#mailing_id/customer_shares":[5,0,1,"get--#account_id-response-#mailing_id-customer_shares"]}},terms:{all:[0,1,4,5,8,9,10,11,12,13,14],code:[0,1,6,3],change_typ:8,queri:[0,2,4],month:[0,5,9,14],four:[0,5],mile:0,least:0,follow:[0,1,4,5,7,9,11,13],link_target:[5,9],content:[1,11,6,9,3],privat:1,specif:[8,9,4],friendli:5,send:[1,9,4,3,5],program:1,customer_share_click:5,those:[1,12,5],group_upd:[12,4],sent:[5,8,12,9,14],curl_clos:[1,6,3],brown:[7,8],digit:5,everi:0,string:[0,4,5,7,8,9,10,12,13,14],fals:[1,3,4,5,6,7,8,9,10,13,14],webhook:[1,12,4],mailing_status:9,trigger_id:14,webview_share_click:5,affect:[7,8],member_add:[12,4],create_mail:9,new_boolean:10,foo:0,level:1,group_delet:[12,4],list:[0,1,2,4,5,7,8,9,10,11,12,13,14],upload:8,iter:2,"try":8,item:2,plaintext_onli:[9,14],div:[4,5,7,8,9,10,13,14],survey_id:14,pleas:[1,8,11,9],prevent:2,work:[1,4],ten:0,sync:10,sign:[0,5,4],past:1,second:[0,7,14],field_creat:[12,4],further:1,shortcut_nam:10,click:[0,4,5,7,8,12,14],append:2,even:10,what:1,hide:[4,5,7,8,9,10,13,14],appear:[1,8],from_group_id:13,section:1,current:[1,8,12,9],delet:[1,4,7,8,9,10,12,13,14],"new":[1,4,5,7,8,9,10,11,13,14],net:[1,2,6,3],delivery_t:8,method:[5,8,13,4,9],can:[0,1,2,4,5,7,8,9,11,12,13],widget:[7,10,8,9,13],full:1,hash:0,datematch:0,displai:10,variat:9,gener:[0,8,12,14],onli:[5,8],here:[0,1,3,5,6,8],bodi:9,let:[1,4,10],address:[0,1,8,6,9],along:8,sinc:8,valu:[0,5,7,8,10,11],field_upd:[12,4],search:[0,1,8,9,7],survei:14,sender:[9,14],larger:2,queue:5,prior:9,action:[0,8],chang:[8,4],campaign:5,newbi:5,appli:[7,14],prefer:0,young:1,myemma:[4,5,7,8,9,13],filenam:8,customer_shar:5,"boolean":[0,1,5,7,8,9,10,13,14],curlopt_postfield:[1,3],total:5,jone:[7,5,8,13],select:[1,10],newslett:[7,8,13],describ:7,would:[0,1],commun:1,regist:4,two:[0,5],coverag:1,next:[0,1],create_webhook:4,few:[5,8],call:[1,2,3,4,6,8,12],criteria:7,member_add_to_group:[12,4],type:[1,3,4,5,6,7,10,9,14],until:2,more:[0,4,7,8,9,13],peopl:5,relat:[1,8,11,9],about:[10,8,12,4,9],notic:8,thide:[4,5,7,8,9,10,13,14],flag:[5,7,8,10,9,14],exce:2,indic:8,examin:1,particular:[1,4,5,8,10,12,9],in_progress:5,origin:9,must:[0,7,13,10],none:9,endpoint:[1,4,5,7,8,9,10,13,14],join:[0,7],hour:0,setup:1,member_sinc:[0,5,7,8,9,13],uniqu:5,histori:8,soup:7,remain:[0,9],archiv:[5,9],member_optout:[12,4],drill:5,control:[1,11,9],quickstart:1,give:5,forward_mailing_id:5,email_domain:[0,5],share:[0,5,8,12,4],accept:[0,5,7,8,9,10,11,13,14],total_click:5,tag:[11,9],want:[1,12,13,5],occur:[7,12],some_numeric_field:0,delai:14,alwai:0,webhook_event_id:4,cours:1,multipl:[10,8],first_nam:[1,3,5,7,8,9,10,11,13,14],started_or_finish:[9,14],anoth:[9,13],get:[1,4,5,6,7,8,9,10,13,14],message_open:[12,4],html_bodi:[9,14],share_statu:5,push_offset:14,del_statu:5,tild:5,num_members_upd:8,simpl:0,chri:9,pizza:[7,8],map:0,autent:1,referenc:7,xxxx:6,sundai:0,jacqu:1,membership:13,taco:[7,5,8,9,13],mai:12,end:[2,8],associ:[1,8,9,4,5],grow:1,welcom:11,add_onli:8,"short":0,json_encod:[1,3],optout:[5,8,12,13],num_dupl:8,favorit:10,correspond:[0,1],greet:11,predic:[0,1],issu:[1,10],"12t11":[7,5,8,9,13],combin:7,allow:[0,7,8],some_zipcode_field:0,signed_up:5,order:[5,10],michel:[8,9],mailing_nam:5,checkbox:10,fields_upd:8,over:2,soon:1,buyer:[7,8,9,13],comma:[9,13],is_dis:14,vari:8,paramet:[2,4,5,7,8,9,10,13,14],widget_typ:10,style:[0,4,5,7,8,9,10,13,14],group:[0,1,3,4,7,8,9,12,13,14],curl_setopt:[1,6,3],how:[7,1,2,4],fix:1,import_start:8,better:[13,14],platform:1,pend:[1,9],mailing_list:9,onc:9,mail:[0,1,4,5,8,11,12,9,14],hidden:13,main:1,might:[1,4],link_nam:[5,9],them:[8,9],messag:[4,5,8,12,11,9,14],"return":[0,1,4,5,7,8,9,10,12,13,14],greater:[0,8],thei:[0,9],food:10,timestamp:[0,5,12,9,10],spell:4,nashvil:1,dai:0,auth:1,framework:1,instead:[12,2,8],now:5,down:5,term:[0,1],alex:9,name:[0,4,5,7,8,9,10,11,13,14],edit:[7,1,14,10],curl_getinfo:[1,6,3],authent:[1,6,4,3],successufulli:4,separ:[1,9,13],each:[1,2,5,9,12,11,13],found:[8,9,4,14],updat:[4,7,8,9,10,12,13,14],denni:1,status:[8,9],domain:0,weight:[4,5,7,8,9,10,13,14],resum:9,individu:[5,8],hard:[0,5],last_nam:[1,3,5,7,8,9,10,11,13,14],"05t15":5,birthdai:[10,14],connect:[1,6,3],doug:1,our:[1,11,12,4,14],happen:[1,4,5],commiss:1,short_display_nam:10,special:[0,7,8,13],out:[0,1,4,5,7,8,10,13],variabl:[1,6,3],message_shar:[12,4],network:[5,12],private_api_kei:[1,6,3],check_multipl:10,categori:1,rel:0,print:6,correct:10,integr:1,benjamin:8,qualifi:11,insid:1,advanc:0,contain:[0,5,7,13,10,9],given:[0,8,9,4],standard:[5,9],status_from:8,base:[5,8],recipient_search:9,dictionari:8,put:[4,7,8,9,10,13,14],"13t23":[7,5,8],refer:[5,7,8,13,10,9],visit:11,could:1,omit:5,success:[1,3,7,8,9,13],filter:[0,1,7],search_id:7,pagin:[1,2],member_id:[5,7,8,9,12,13],summari:[1,5],assign:9,first:[0,1,10,5],oper:[0,1,7,14],rang:5,notifi:12,directli:0,curlopt_ssl_verifyp:[1,6,3],curl_init:[1,6,3],number:[5,2,13,3,10],placehold:[1,11],date:[0,5,8,10,11,14],unlik:9,alreadi:[10,8,9,13],done:8,plaintext_pref:[7,8,9,13],oppos:8,open:[0,3,4,5,6,7,8,12],payload:4,fanci:5,size:2,differ:0,"long":10,script:1,data:[1,3,4,5,10,12],system:[8,12,4,14],wrapper:1,attach:11,easier:12,friend:11,curlinfo_http_cod:[1,6,3],shell:0,option:[0,5,7,8,9,10,13,14],especi:8,signup:[0,1,3,4,5,8,12,14],copi:[8,13],member_upd:[12,4],specifi:[0,2,7,8,10,11,9,14],curl_exec:[1,6,3],curlopt_httphead:[1,6,3],member_signup:[12,4],create_search:7,part:[0,9],enclos:11,than:[0,1,2,3,12,13],with_plaintext:9,"02t10":[5,8],"02t11":[5,8],"02t13":5,nathan:8,whenev:8,provid:[1,5,8,12,9,14],remov:[12,8,13,4],mailing_start:4,rate:2,structur:7,charact:9,greg:8,trackabl:11,were:5,minut:0,danc:1,error_count:[7,8,9,13],pre:[4,5,7,8,9,10,13,14],cleaner:1,sai:0,share_id:5,signup_form_id:[0,8,12,9,14],plaintext:[5,9,14],pass:[1,3],ani:[0,1,2,7,8,9],have:[0,1,5,8,12,9],tabl:5,need:1,seen:5,"null":[7,8,13,10,9,14],kevin:[9,14],signup_mail:0,caus:14,built:1,inform:[1,4,6,8,9,10,13],object_id:14,note:[1,8,9,4],also:[0,4,5,7,8,9,11,13],exampl:[0,1,3,5,6,7,11],take:[0,4],which:[0,1,4,8,10,12,9,14],some_number_field:0,singl:[0,1,3,4,5,8,10,12,13],excit:11,sure:1,delete_memb:13,normal:9,parent_mail:14,recipient_count:[5,9,14],previou:9,field_id:[10,12,14],last_run_at:7,most:14,pair:11,"class":[4,5,7,8,9,10,13,14],don:1,member_group_id:[8,9,13],mcconnel:[9,14],url:[1,3,4,5,6,12],mailing_finish:[12,4],clear:10,request:[1,2,3],doe:[0,5,7,8,9,10,13],member_status_upd:[12,4],declar:9,tech:4,determin:1,dataset:10,dow:0,recipi:9,"6db0cc7e6fdb2da589b65f29d90c96b6":9,show:[4,5,7,8,9,10,11,13,14],text:[10,11,12],radiu:0,syntax:[0,1,11,9],radio:10,font:[4,5,7,8,9,10,13,14],fine:9,find:[1,6,5],status_to:8,toast:[7,5,8,13],access:[1,5],giant:12,just:[0,1,9],pretti:8,column_ord:10,explain:[0,1],winner:9,activ:[1,5,7,8,13,9],figur:1,should:[1,2,3,7,8,11,9],templat:[11,14],share_count:5,count:[1,2,3,5],variou:[8,13],confirmed_opt_in:[7,8,9,13],familiar:1,express:0,account:[1,4,5,7,8,10,13,14],becaus:12,repo:1,cannot:[8,9,4],progress:9,report:[10,8],requir:[1,7,8,10,11,9],object:[1,13,5],favorite_food:[5,7,8,13,10,9],bar:0,organ:1,include_archiv:[5,9],"public":1,"default":[5,11,13,4,9],ref_member_id:5,message_share_click:[12,4],through:[1,8,4],where:[0,1,8,11,7],view:1,user:[0,8,9,13],set:[0,1,2,3,6,8,9,12,13],link_id:[0,5,12,9,14],see:[7,1,8],result:[0,1,2,5,8,9],respons:[0,1,2,4,5,7,8,9,10,13,14],fail:[5,9,4],themselv:2,member_field:[0,7],xxxxx:6,subject:[8,12,9,14],statu:[1,4,5,7,8,9,12,13],fancyonion:11,kei:[0,1,8,11,4],is_schedul:9,message_forward:[12,4],databas:8,someth:1,last_modified_at:[7,8,9,13],addresse:5,written:1,between:[0,7,2],clicked_uniqu:5,"import":[1,8,12,4,10],subscript:[1,3],entiti:1,curlopt_url:[1,6,3],email:[0,1,3,5,6,7,8,9,13],wide:14,extend:1,numer:10,http404:[4,5,7,8,9,10,13,14],job:13,entir:[0,8],share_click:5,to_group_id:13,come:1,curlopt_returntransf:[1,6,3],addit:[0,1,8,9,11,13],member_remove_from_group:[12,4],send_start:[0,9,14],protect:1,accident:2,last:[0,5,10],delimit:5,pertain:5,message_click:[12,4],curlopt_post:[1,3],audienc:[1,8,9],mang:0,improv:1,http500:14,seri:5,com:[4,5,6,7,8,9,11,13],zip_code_field:0,"03t15":[7,5,8,13],point:1,toni:[7,8],overview:[0,1,11,12,5],period:1,winner_id:9,colon:[7,11],optout_count:[7,8,9,13],suppli:9,cancel:9,tuesdai:0,duplic:5,quit:[5,8],user_id:4,recur:14,headsup:9,addition:[1,2],due:5,been:[1,8,10,5],mark:[8,9],whom:9,tshow:[4,5,7,8,9,10,13,14],trigger:[1,4,5,7,8,9,10,12,13,14],unsubscrib:0,treat:8,interest:[10,4],basic:[0,1,4,8,13,14],monthli:[7,8,13],hesit:1,blob:4,email_us:[0,5],mailing_mailing_id:5,mailing_id:[0,5,8,12,9,14],fire:[8,4,14],xxx:[1,3],rubi:1,argument:[0,5],link_ord:[5,9],input:1,extract:11,present:7,statist:8,"case":[1,8],look:[1,14,10],frozen:9,durat:9,email_error:[7,8,9,13],defin:[0,10,8,9],"while":0,smith:[7,5,8,9,13],outcom:5,abov:[0,1,8,7],error:[1,3,6,8,10,13],loop:8,opt:[0,4,5,7,8,13],readi:9,deliv:5,recipient_group:9,equal:0,itself:0,new_statu:12,webhook_id:4,develop:1,recipient_memb:9,perform:8,make:[1,12,6,10],belong:[0,8,4],same:4,check:[8,6,9],member:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14],python:1,html:9,split:9,document:[1,11,12],complet:[1,3,4,6,8,9],week:0,finish:[5,12,4],http:[1,2,3,4,5,6,11,9],href:[4,5,7,8,9,10,13,14],nest:0,someon:4,rais:[4,5,7,8,9,10,13,14],initi:[10,9],php:[1,6,3],studi:1,recent:[1,8],kept:11,center:0,min:5,well:[1,5],inherit:9,person:9,mailing_typ:[9,14],without:[0,1],command:1,thi:[0,1,4,5,7,8,9,10,12,13,14],undefin:0,http_code:[1,6,3],latest:11,construct:[0,7,9],identifi:8,paus:9,execut:[1,3],less:0,resp:[4,5,7,8,9,10,13,14],"_post":[1,3],against:0,aspect:13,recipient_email:9,source_filenam:8,yet:5,languag:1,"12t09":[7,8],display_nam:10,easi:[1,12,10],"01t00":8,had:0,littl:1,blog:4,add:[12,1,8,13,3],other:[1,8,9,3,5],curlopt_userpwd:[1,6,3],import_finish:[8,12,4],schedul:9,els:[1,6,3],save:7,match:[0,7],build:1,sanit:1,applic:[1,6,3],account_id:[1,3,4,5,6,7,8,9,10,12,13,14],handl:1,disposit:1,crud:[8,13,14],print_r:[6,3],mailing_statu:[9,14],know:[1,4,5],background:13,parent_mailing_id:[9,14],bit:1,insert:11,emma:[1,5,7,8,9,12,13],like:1,onion:11,deprec:4,arbitrari:8,manual:9,integ:[1,8,14,10,5],collect:1,api:[1,2,3,6,8,12],either:[0,5,7],bunch:0,output:9,group_id:[1,8,12,3],soft:[0,5],manag:[0,1,13,4],import_id:[8,12],www:[5,9],old:7,deal:[8,13],captur:1,arrai:[0,1,3,5,6,7,8,9,10,12,13,14],some:[1,11,5],field_delet:[12,4],certain:12,intern:10,sampl:[1,4,5,7,8,9,10,13,14],elaps:[2,9],unless:1,deleted_at:[7,8,13,10,9,14],some_string_field:0,librari:11,woodcock:1,emmarubi:1,bounce_count:[7,8,9,13],emmapython:1,public_kei:4,deliveri:5,broad:12,per:5,send_finish:[9,14],larg:[0,2],condit:7,three:9,network_cod:12,localhost:9,emmaphp:1,with_html_bodi:9,who:[0,5,8],bold:[4,5,7,8,9,10,13,14],event_typ:14,inspect:1,usag:[1,8,12],monsewicz:1,num_members_ad:8,fulli:11,from:[1,4,8,9,12,13,14],post:[1,3,4,7,8,9,10,12,13,14],group_creat:[12,4],gladi:[7,5,8,13],hurst:1,actual:5,zip:0,groups_upd:8,column:10,page:2,includ:[1,5,7,8,9,10,13],webview:9,mean:0,disabl:[9,14],block:[1,2],yyyi:5,own:1,member_data:[1,3],glob:0,bounc:[0,5],within:[0,8],encod:[9,4],delivery_typ:[5,8],compos:0,webview_shar:5,field_typ:10,active_count:[7,8,9,13],public_webview_url:9,"20t14":[7,14],pivot:5,your:[1,4,5,7,8,9,10,13],websit:11,fast:8,span:[4,5,7,8,9,10,13,14],wai:[1,12],area:1,overus:2,group_nam:[8,12,13,9],support:12,unique_click:5,json:[0,1,3,4,6,7],submit:1,custom:[5,8,11,10],avail:[0,11,4],start:[1,2,8,4],interfac:12,send_at:[9,14],exceed:2,"var":3,interv:[0,14],fork:1,head:[1,6,9,3],form:[1,3,4,6,8,10,14],enough:2,forc:1,forward:[0,4,5,8,12,9],"31st":0,group_typ:[8,9,13],push_offset_unit:14,link:[0,4,5,11,9,14],line:[1,5],realli:1,"true":[0,1,2,3,4,6,7,8,9,10,13,14],archived_t:[9,14],info:4,pull:[1,2],made:1,possibl:[5,8,12],whether:8,maximum:2,tell:12,http403:9,record:[0,7,8],below:[0,1,8,12],http400:[7,8,9],limit:[5,2,8,9],some_array_field:0,otherwis:[1,8,10],start_t:14,mta:5,expect:1,notif:9,creat:[4,5,7,9,10,12,13,14],"int":5,retriev:[7,1,2,8,9],year:[0,5,9,14],repres:5,exist:[0,4,5,7,8,10,13],behavior:11,bob:[7,5],curl:[1,6],lentil:7,probabl:14,echo:[1,3],successfulli:[5,8,9],mailing_subject:12,grp:13,todo:11,when:[8,12,4,9],detail:[1,4,7,8,9,10,13],invalid:[7,8,9],event:[4,7,8,13,12,9,14],field:[0,1,3,4,5,7,8,9,10,11,12,13,14],valid:[5,8,9,13],futur:1,num_skip:8,test:[5,6,7,13,9,14],ignor:8,you:[0,1,2,4,5,7,8,9,10,11,12,13],member_delet:[12,4],member_status_id:[7,5,8,9,13],public_api_kei:[1,6,3],stat:[5,9],claus:[0,7],event_nam:[12,4],e2ma:[1,2,6,3],error_messag:8,param:[9,4],app_messag:[1,3],ella:8,bulk:[1,8],receiv:[0,2,5,8,12,9],heads_up_email:9,longer:9,home:11,confirm:8,descript:[4,14],ohmyemma:1,portion:0,opted_out:5,time:[1,2,8,13,5],reply_to:[9,14],resource_url:12,hello:[11,9,14]},objtypes:{"0":"http:get","1":"http:put","2":"http:post","3":"http:delete"},titles:["Search Syntax","Emma API","Pagination","PHP Signup Example","Webhooks","Response","PHP Get Member By Email Example","Searches","Members","Mailings","Fields","Placeholder Syntax","Webhook Usage","Groups","Triggers"],objnames:{"0":["http","get","HTTP get"],"1":["http","put","HTTP put"],"2":["http","post","HTTP post"],"3":["http","delete","HTTP delete"]},filenames:["member_search","index","pagination","php_signup_example","api/external/webhooks","api/external/response","php_get_member_example","api/external/searches","api/external/members","api/external/mailings","api/external/fields","placeholders","webhooks","api/external/groups","api/external/triggers"]}) \ No newline at end of file diff --git a/webhooks.html b/webhooks.html index a0bdb19..4edb14b 100644 --- a/webhooks.html +++ b/webhooks.html @@ -507,7 +507,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Mar 19, 2013 at 04:43 PM. + Last updated on Mar 20, 2013 at 02:21 PM. </div> </body> </html> \ No newline at end of file From daa1c550a3d3c57420761ee75317b959834db8b2 Mon Sep 17 00:00:00 2001 From: Jason Bynum <jason.bynum@myemma.com> Date: Thu, 4 Apr 2013 11:13:43 -0500 Subject: [PATCH 036/219] Update audience documentation. --- _sources/index.txt | 2 +- api/external/fields.html | 2 +- api/external/groups.html | 2 +- api/external/mailings.html | 2 +- api/external/members.html | 2 +- api/external/response.html | 2 +- api/external/searches.html | 4 ++-- api/external/triggers.html | 8 ++++---- api/external/webhooks.html | 2 +- genindex.html | 2 +- http-routingtable.html | 2 +- index.html | 4 ++-- member_search.html | 2 +- pagination.html | 2 +- php_get_member_example.html | 2 +- php_signup_example.html | 2 +- placeholders.html | 2 +- search.html | 2 +- searchindex.js | 2 +- webhooks.html | 2 +- 20 files changed, 25 insertions(+), 25 deletions(-) diff --git a/_sources/index.txt b/_sources/index.txt index 9c2d3ce..c0b3965 100644 --- a/_sources/index.txt +++ b/_sources/index.txt @@ -37,7 +37,7 @@ This collection is young, but growing, and includes wrappers commissioned by Emm `EmmaRuby <https://github.com/myemma/EmmaRuby>`_: Commissioned by Emma and built by Nashville developer `Dennis Monsewicz <https://github.com/dennismonsewicz>`_. **Objective-C** - Coming Soon! + `EmmaRuby <https://github.com/myemma/EmmaSDK>`_: Commissioned by Emma and built by Portland developer `Benjamin Van Der Veen <https://github.com/bvanderveen>`_. **.NET Framework** Coming Soon! diff --git a/api/external/fields.html b/api/external/fields.html index 202a5e5..ee38205 100644 --- a/api/external/fields.html +++ b/api/external/fields.html @@ -415,7 +415,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Mar 20, 2013 at 02:21 PM. + Last updated on Apr 04, 2013 at 11:13 AM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/groups.html b/api/external/groups.html index 1a4e60b..18cc2ca 100644 --- a/api/external/groups.html +++ b/api/external/groups.html @@ -702,7 +702,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Mar 20, 2013 at 02:21 PM. + Last updated on Apr 04, 2013 at 11:13 AM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/mailings.html b/api/external/mailings.html index adb418e..cc59027 100644 --- a/api/external/mailings.html +++ b/api/external/mailings.html @@ -810,7 +810,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Mar 20, 2013 at 02:21 PM. + Last updated on Apr 04, 2013 at 11:13 AM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/members.html b/api/external/members.html index bd40bdb..62ebad4 100644 --- a/api/external/members.html +++ b/api/external/members.html @@ -1217,7 +1217,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Mar 20, 2013 at 02:21 PM. + Last updated on Apr 04, 2013 at 11:13 AM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/response.html b/api/external/response.html index cf8b71e..06508b0 100644 --- a/api/external/response.html +++ b/api/external/response.html @@ -1019,7 +1019,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Mar 20, 2013 at 02:21 PM. + Last updated on Apr 04, 2013 at 11:13 AM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/searches.html b/api/external/searches.html index ac378bf..3e43683 100644 --- a/api/external/searches.html +++ b/api/external/searches.html @@ -199,7 +199,7 @@ <h1>Searches<a class="headerlink" href="#searches" title="Permalink to this head "name": "Test Search", "criteria": "[\"or\", [\"group\", \"eq\", \"Monthly Newsletter\"],[\"group\", \"eq\", \"Widget Buyers\"]]", "deleted_at": null, - "last_run_at": "@D:2013-03-20T14:21:44", + "last_run_at": "@D:2013-04-04T11:13:36", "active_count": 2, "account_id": 100 } @@ -511,7 +511,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Mar 20, 2013 at 02:21 PM. + Last updated on Apr 04, 2013 at 11:13 AM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/triggers.html b/api/external/triggers.html index fe8d1a7..e3fea1e 100644 --- a/api/external/triggers.html +++ b/api/external/triggers.html @@ -148,7 +148,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": 203, "push_offset_units": "0:-14:0:0", - "start_ts": "@D:2013-03-20T14:21:42", + "start_ts": "@D:2013-04-04T11:13:34", "trigger_id": 100, "signups": null, "push_offset": "@I:-1209600.0", @@ -189,7 +189,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": null, "push_offset_units": "0:3:0:0", - "start_ts": "@D:2013-03-20T14:21:42", + "start_ts": "@D:2013-04-04T11:13:34", "trigger_id": 101, "signups": [ 1, @@ -326,7 +326,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": 203, "push_offset_units": "0:-14:0:0", - "start_ts": "@D:2013-03-20T14:21:42", + "start_ts": "@D:2013-04-04T11:13:34", "trigger_id": 100, "signups": null, "push_offset": "@I:-1209600.0", @@ -499,7 +499,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Mar 20, 2013 at 02:21 PM. + Last updated on Apr 04, 2013 at 11:13 AM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/webhooks.html b/api/external/webhooks.html index e2e2f98..969fb3b 100644 --- a/api/external/webhooks.html +++ b/api/external/webhooks.html @@ -487,7 +487,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Mar 20, 2013 at 02:21 PM. + Last updated on Apr 04, 2013 at 11:13 AM. </div> </body> </html> \ No newline at end of file diff --git a/genindex.html b/genindex.html index edea93f..6b0e20d 100644 --- a/genindex.html +++ b/genindex.html @@ -146,7 +146,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Mar 20, 2013 at 02:21 PM. + Last updated on Apr 04, 2013 at 11:13 AM. </div> </body> </html> \ No newline at end of file diff --git a/http-routingtable.html b/http-routingtable.html index 5bb9ff6..fdc61c7 100644 --- a/http-routingtable.html +++ b/http-routingtable.html @@ -607,7 +607,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Mar 20, 2013 at 02:21 PM. + Last updated on Apr 04, 2013 at 11:13 AM. </div> </body> </html> \ No newline at end of file diff --git a/index.html b/index.html index cd5913a..f2e1639 100644 --- a/index.html +++ b/index.html @@ -149,7 +149,7 @@ <h2>API Wrappers<a class="headerlink" href="#api-wrappers" title="Permalink to t <dt><strong>Ruby</strong></dt> <dd><a class="reference external" href="https://github.com/myemma/EmmaRuby">EmmaRuby</a>: Commissioned by Emma and built by Nashville developer <a class="reference external" href="https://github.com/dennismonsewicz">Dennis Monsewicz</a>.</dd> <dt><strong>Objective-C</strong></dt> -<dd>Coming Soon!</dd> +<dd><a class="reference external" href="https://github.com/myemma/EmmaSDK">EmmaRuby</a>: Commissioned by Emma and built by Portland developer <a class="reference external" href="https://github.com/bvanderveen">Benjamin Van Der Veen</a>.</dd> <dt><strong>.NET Framework</strong></dt> <dd>Coming Soon!</dd> </dl> @@ -344,7 +344,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Mar 20, 2013 at 02:21 PM. + Last updated on Apr 04, 2013 at 11:13 AM. </div> </body> </html> \ No newline at end of file diff --git a/member_search.html b/member_search.html index 7e52f66..13119c4 100644 --- a/member_search.html +++ b/member_search.html @@ -256,7 +256,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Mar 20, 2013 at 02:21 PM. + Last updated on Apr 04, 2013 at 11:13 AM. </div> </body> </html> \ No newline at end of file diff --git a/pagination.html b/pagination.html index aaffbf1..7a5bba8 100644 --- a/pagination.html +++ b/pagination.html @@ -168,7 +168,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Mar 20, 2013 at 02:21 PM. + Last updated on Apr 04, 2013 at 11:13 AM. </div> </body> </html> \ No newline at end of file diff --git a/php_get_member_example.html b/php_get_member_example.html index 2ed5998..20b3cfa 100644 --- a/php_get_member_example.html +++ b/php_get_member_example.html @@ -183,7 +183,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Mar 20, 2013 at 02:21 PM. + Last updated on Apr 04, 2013 at 11:13 AM. </div> </body> </html> \ No newline at end of file diff --git a/php_signup_example.html b/php_signup_example.html index 6b88725..bf1fd2f 100644 --- a/php_signup_example.html +++ b/php_signup_example.html @@ -205,7 +205,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Mar 20, 2013 at 02:21 PM. + Last updated on Apr 04, 2013 at 11:13 AM. </div> </body> </html> \ No newline at end of file diff --git a/placeholders.html b/placeholders.html index dab7f9e..9f169a8 100644 --- a/placeholders.html +++ b/placeholders.html @@ -183,7 +183,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Mar 20, 2013 at 02:21 PM. + Last updated on Apr 04, 2013 at 11:13 AM. </div> </body> </html> \ No newline at end of file diff --git a/search.html b/search.html index 908da84..e532fe8 100644 --- a/search.html +++ b/search.html @@ -153,7 +153,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Mar 20, 2013 at 02:21 PM. + Last updated on Apr 04, 2013 at 11:13 AM. </div> </body> </html> \ No newline at end of file diff --git a/searchindex.js b/searchindex.js index 2c776ee..15ef205 100644 --- a/searchindex.js +++ b/searchindex.js @@ -1 +1 @@ -Search.setIndex({objects:{"":{"/#account_id/members/#member_id/groups/remove":[8,1,1,"put--#account_id-members-#member_id-groups-remove"],"/#account_id/mailings/#mailing_id/winner/#winner_id":[9,2,1,"post--#account_id-mailings-#mailing_id-winner-#winner_id"],"/#account_id/response/#mailing_id/in_progress":[5,0,1,"get--#account_id-response-#mailing_id-in_progress"],"/#account_id/members/groups/remove":[8,1,1,"put--#account_id-members-groups-remove"],"/#account_id/mailings/#mailing_id/searches":[9,0,1,"get--#account_id-mailings-#mailing_id-searches"],"/#account_id/fields":[10,2,1,"post--#account_id-fields"],"/#account_id/members/#group_id/copy":[8,1,1,"put--#account_id-members-#group_id-copy"],"/#account_id/members/status":[8,1,1,"put--#account_id-members-status"],"/#account_id/response/#mailing_id/shares/overview":[5,0,1,"get--#account_id-response-#mailing_id-shares-overview"],"/#account_id/webhooks/events":[4,0,1,"get--#account_id-webhooks-events"],"/#account_id/members/#member_id/optout":[8,0,1,"get--#account_id-members-#member_id-optout"],"/#account_id/webhooks":[4,3,1,"delete--#account_id-webhooks"],"/#account_id/fields/#field_id":[10,3,1,"delete--#account_id-fields-#field_id"],"/#account_id/response/#mailing_id":[5,0,1,"get--#account_id-response-#mailing_id"],"/#account_id/groups/#member_group_id/members/remove":[13,3,1,"delete--#account_id-groups-#member_group_id-members-remove"],"/#account_id/searches":[7,2,1,"post--#account_id-searches"],"/#account_id/members/imports":[8,0,1,"get--#account_id-members-imports"],"/#account_id/forwards/#mailing_id/#member_id":[9,2,1,"post--#account_id-forwards-#mailing_id-#member_id"],"/#account_id/response/#mailing_id/customer_share_clicks":[5,0,1,"get--#account_id-response-#mailing_id-customer_share_clicks"],"/#account_id/mailings/#mailing_id/messages/#member_id":[9,0,1,"get--#account_id-mailings-#mailing_id-messages-#member_id"],"/#account_id/members/#member_id/mailings":[8,0,1,"get--#account_id-members-#member_id-mailings"],"/#account_id/groups/#from_group_id/#to_group_id/members/copy":[13,1,1,"put--#account_id-groups-#from_group_id-#to_group_id-members-copy"],"/#account_id/triggers":[14,2,1,"post--#account_id-triggers"],"/#account_id/triggers/#trigger_id":[14,3,1,"delete--#account_id-triggers-#trigger_id"],"/#account_id/members/delete":[8,1,1,"put--#account_id-members-delete"],"/#account_id/mailings/#mailing_id/groups":[9,0,1,"get--#account_id-mailings-#mailing_id-groups"],"/#account_id/response/#mailing_id/forwards":[5,0,1,"get--#account_id-response-#mailing_id-forwards"],"/#account_id/members/#member_id":[8,3,1,"delete--#account_id-members-#member_id"],"/#account_id/triggers/#trigger_id/mailings":[14,0,1,"get--#account_id-triggers-#trigger_id-mailings"],"/#account_id/searches/#search_id/members":[7,0,1,"get--#account_id-searches-#search_id-members"],"/#account_id/members/status/:status_from/to/:status_to":[8,1,1,"put--#account_id-members-status--status_from-to--status_to"],"/#account_id/response/#mailing_id/sends":[5,0,1,"get--#account_id-response-#mailing_id-sends"],"/#account_id/members":[8,3,1,"delete--#account_id-members"],"/#account_id/members/email/:email":[8,0,1,"get--#account_id-members-email--email"],"/#account_id/response/#mailing_id/links":[5,0,1,"get--#account_id-response-#mailing_id-links"],"/#account_id/searches/#search_id":[7,3,1,"delete--#account_id-searches-#search_id"],"/#account_id/members/imports/#import_id/members":[8,0,1,"get--#account_id-members-imports-#import_id-members"],"/#account_id/fields/#field_id/clear":[10,2,1,"post--#account_id-fields-#field_id-clear"],"/#account_id/groups/#member_group_id/members":[13,3,1,"delete--#account_id-groups-#member_group_id-members"],"/#account_id/members/imports/#import_id":[8,0,1,"get--#account_id-members-imports-#import_id"],"/#account_id/response":[5,0,1,"get--#account_id-response"],"/#account_id/response/#mailing_id/opens":[5,0,1,"get--#account_id-response-#mailing_id-opens"],"/#account_id/members/imports/delete":[8,3,1,"delete--#account_id-members-imports-delete"],"/#account_id/mailings":[9,0,1,"get--#account_id-mailings"],"/#account_id/mailings/cancel/#mailing_id":[9,3,1,"delete--#account_id-mailings-cancel-#mailing_id"],"/#account_id/mailings/validate":[9,2,1,"post--#account_id-mailings-validate"],"/#account_id/response/#mailing_id/deliveries":[5,0,1,"get--#account_id-response-#mailing_id-deliveries"],"/#account_id/mailings/#mailing_id/members":[9,0,1,"get--#account_id-mailings-#mailing_id-members"],"/#account_id/response/#share_id/customer_share":[5,0,1,"get--#account_id-response-#share_id-customer_share"],"/#account_id/webhooks/#webhook_id":[4,3,1,"delete--#account_id-webhooks-#webhook_id"],"/#account_id/members/add":[8,2,1,"post--#account_id-members-add"],"/#account_id/members/email/optout/:email":[8,1,1,"put--#account_id-members-email-optout--email"],"/#account_id/response/#mailing_id/optouts":[5,0,1,"get--#account_id-response-#mailing_id-optouts"],"/#account_id/response/#mailing_id/shares":[5,0,1,"get--#account_id-response-#mailing_id-shares"],"/#account_id/groups/#member_group_id":[13,3,1,"delete--#account_id-groups-#member_group_id"],"/#account_id/mailings/#mailing_id":[9,3,1,"delete--#account_id-mailings-#mailing_id"],"/#account_id/members/#member_id/groups":[8,3,1,"delete--#account_id-members-#member_id-groups"],"/#account_id/groups":[13,2,1,"post--#account_id-groups"],"/#account_id/response/#mailing_id/clicks":[5,0,1,"get--#account_id-response-#mailing_id-clicks"],"/#account_id/mailings/#mailing_id/headsup":[9,0,1,"get--#account_id-mailings-#mailing_id-headsup"],"/#account_id/response/#mailing_id/signups":[5,0,1,"get--#account_id-response-#mailing_id-signups"],"/#account_id/response/#mailing_id/customer_shares":[5,0,1,"get--#account_id-response-#mailing_id-customer_shares"]}},terms:{all:[0,1,4,5,8,9,10,11,12,13,14],code:[0,1,6,3],change_typ:8,queri:[0,2,4],month:[0,5,9,14],four:[0,5],mile:0,least:0,follow:[0,1,4,5,7,9,11,13],link_target:[5,9],content:[1,11,6,9,3],privat:1,specif:[8,9,4],friendli:5,send:[1,9,4,3,5],program:1,customer_share_click:5,those:[1,12,5],group_upd:[12,4],sent:[5,8,12,9,14],curl_clos:[1,6,3],brown:[7,8],digit:5,everi:0,string:[0,4,5,7,8,9,10,12,13,14],fals:[1,3,4,5,6,7,8,9,10,13,14],webhook:[1,12,4],mailing_status:9,trigger_id:14,webview_share_click:5,affect:[7,8],member_add:[12,4],create_mail:9,new_boolean:10,foo:0,level:1,group_delet:[12,4],list:[0,1,2,4,5,7,8,9,10,11,12,13,14],upload:8,iter:2,"try":8,item:2,plaintext_onli:[9,14],div:[4,5,7,8,9,10,13,14],survey_id:14,pleas:[1,8,11,9],prevent:2,work:[1,4],ten:0,sync:10,sign:[0,5,4],past:1,second:[0,7,14],field_creat:[12,4],further:1,shortcut_nam:10,click:[0,4,5,7,8,12,14],append:2,even:10,what:1,hide:[4,5,7,8,9,10,13,14],appear:[1,8],from_group_id:13,section:1,current:[1,8,12,9],delet:[1,4,7,8,9,10,12,13,14],"new":[1,4,5,7,8,9,10,11,13,14],net:[1,2,6,3],delivery_t:8,method:[5,8,13,4,9],can:[0,1,2,4,5,7,8,9,11,12,13],widget:[7,10,8,9,13],full:1,hash:0,datematch:0,displai:10,variat:9,gener:[0,8,12,14],onli:[5,8],here:[0,1,3,5,6,8],bodi:9,let:[1,4,10],address:[0,1,8,6,9],along:8,sinc:8,valu:[0,5,7,8,10,11],field_upd:[12,4],search:[0,1,8,9,7],survei:14,sender:[9,14],larger:2,queue:5,prior:9,action:[0,8],chang:[8,4],campaign:5,newbi:5,appli:[7,14],prefer:0,young:1,myemma:[4,5,7,8,9,13],filenam:8,customer_shar:5,"boolean":[0,1,5,7,8,9,10,13,14],curlopt_postfield:[1,3],total:5,jone:[7,5,8,13],select:[1,10],newslett:[7,8,13],describ:7,would:[0,1],commun:1,regist:4,two:[0,5],coverag:1,next:[0,1],create_webhook:4,few:[5,8],call:[1,2,3,4,6,8,12],criteria:7,member_add_to_group:[12,4],type:[1,3,4,5,6,7,10,9,14],until:2,more:[0,4,7,8,9,13],peopl:5,relat:[1,8,11,9],about:[10,8,12,4,9],notic:8,thide:[4,5,7,8,9,10,13,14],flag:[5,7,8,10,9,14],exce:2,indic:8,examin:1,particular:[1,4,5,8,10,12,9],in_progress:5,origin:9,must:[0,7,13,10],none:9,endpoint:[1,4,5,7,8,9,10,13,14],join:[0,7],hour:0,setup:1,member_sinc:[0,5,7,8,9,13],uniqu:5,histori:8,soup:7,remain:[0,9],archiv:[5,9],member_optout:[12,4],drill:5,control:[1,11,9],quickstart:1,give:5,forward_mailing_id:5,email_domain:[0,5],share:[0,5,8,12,4],accept:[0,5,7,8,9,10,11,13,14],total_click:5,tag:[11,9],want:[1,12,13,5],occur:[7,12],some_numeric_field:0,delai:14,alwai:0,webhook_event_id:4,cours:1,multipl:[10,8],first_nam:[1,3,5,7,8,9,10,11,13,14],started_or_finish:[9,14],anoth:[9,13],get:[1,4,5,6,7,8,9,10,13,14],message_open:[12,4],html_bodi:[9,14],share_statu:5,push_offset:14,del_statu:5,tild:5,num_members_upd:8,simpl:0,chri:9,pizza:[7,8],map:0,autent:1,referenc:7,xxxx:6,sundai:0,jacqu:1,membership:13,taco:[7,5,8,9,13],mai:12,end:[2,8],associ:[1,8,9,4,5],grow:1,welcom:11,add_onli:8,"short":0,json_encod:[1,3],optout:[5,8,12,13],num_dupl:8,favorit:10,correspond:[0,1],greet:11,predic:[0,1],issu:[1,10],"12t11":[7,5,8,9,13],combin:7,allow:[0,7,8],some_zipcode_field:0,signed_up:5,order:[5,10],michel:[8,9],mailing_nam:5,checkbox:10,fields_upd:8,over:2,soon:1,buyer:[7,8,9,13],comma:[9,13],is_dis:14,vari:8,paramet:[2,4,5,7,8,9,10,13,14],widget_typ:10,style:[0,4,5,7,8,9,10,13,14],group:[0,1,3,4,7,8,9,12,13,14],curl_setopt:[1,6,3],how:[7,1,2,4],fix:1,import_start:8,better:[13,14],platform:1,pend:[1,9],mailing_list:9,onc:9,mail:[0,1,4,5,8,11,12,9,14],hidden:13,main:1,might:[1,4],link_nam:[5,9],them:[8,9],messag:[4,5,8,12,11,9,14],"return":[0,1,4,5,7,8,9,10,12,13,14],greater:[0,8],thei:[0,9],food:10,timestamp:[0,5,12,9,10],spell:4,nashvil:1,dai:0,auth:1,framework:1,instead:[12,2,8],now:5,down:5,term:[0,1],alex:9,name:[0,4,5,7,8,9,10,11,13,14],edit:[7,1,14,10],curl_getinfo:[1,6,3],authent:[1,6,4,3],successufulli:4,separ:[1,9,13],each:[1,2,5,9,12,11,13],found:[8,9,4,14],updat:[4,7,8,9,10,12,13,14],denni:1,status:[8,9],domain:0,weight:[4,5,7,8,9,10,13,14],resum:9,individu:[5,8],hard:[0,5],last_nam:[1,3,5,7,8,9,10,11,13,14],"05t15":5,birthdai:[10,14],connect:[1,6,3],doug:1,our:[1,11,12,4,14],happen:[1,4,5],commiss:1,short_display_nam:10,special:[0,7,8,13],out:[0,1,4,5,7,8,10,13],variabl:[1,6,3],message_shar:[12,4],network:[5,12],private_api_kei:[1,6,3],check_multipl:10,categori:1,rel:0,print:6,correct:10,integr:1,benjamin:8,qualifi:11,insid:1,advanc:0,contain:[0,5,7,13,10,9],given:[0,8,9,4],standard:[5,9],status_from:8,base:[5,8],recipient_search:9,dictionari:8,put:[4,7,8,9,10,13,14],"13t23":[7,5,8],refer:[5,7,8,13,10,9],visit:11,could:1,omit:5,success:[1,3,7,8,9,13],filter:[0,1,7],search_id:7,pagin:[1,2],member_id:[5,7,8,9,12,13],summari:[1,5],assign:9,first:[0,1,10,5],oper:[0,1,7,14],rang:5,notifi:12,directli:0,curlopt_ssl_verifyp:[1,6,3],curl_init:[1,6,3],number:[5,2,13,3,10],placehold:[1,11],date:[0,5,8,10,11,14],unlik:9,alreadi:[10,8,9,13],done:8,plaintext_pref:[7,8,9,13],oppos:8,open:[0,3,4,5,6,7,8,12],payload:4,fanci:5,size:2,differ:0,"long":10,script:1,data:[1,3,4,5,10,12],system:[8,12,4,14],wrapper:1,attach:11,easier:12,friend:11,curlinfo_http_cod:[1,6,3],shell:0,option:[0,5,7,8,9,10,13,14],especi:8,signup:[0,1,3,4,5,8,12,14],copi:[8,13],member_upd:[12,4],specifi:[0,2,7,8,10,11,9,14],curl_exec:[1,6,3],curlopt_httphead:[1,6,3],member_signup:[12,4],create_search:7,part:[0,9],enclos:11,than:[0,1,2,3,12,13],with_plaintext:9,"02t10":[5,8],"02t11":[5,8],"02t13":5,nathan:8,whenev:8,provid:[1,5,8,12,9,14],remov:[12,8,13,4],mailing_start:4,rate:2,structur:7,charact:9,greg:8,trackabl:11,were:5,minut:0,danc:1,error_count:[7,8,9,13],pre:[4,5,7,8,9,10,13,14],cleaner:1,sai:0,share_id:5,signup_form_id:[0,8,12,9,14],plaintext:[5,9,14],pass:[1,3],ani:[0,1,2,7,8,9],have:[0,1,5,8,12,9],tabl:5,need:1,seen:5,"null":[7,8,13,10,9,14],kevin:[9,14],signup_mail:0,caus:14,built:1,inform:[1,4,6,8,9,10,13],object_id:14,note:[1,8,9,4],also:[0,4,5,7,8,9,11,13],exampl:[0,1,3,5,6,7,11],take:[0,4],which:[0,1,4,8,10,12,9,14],some_number_field:0,singl:[0,1,3,4,5,8,10,12,13],excit:11,sure:1,delete_memb:13,normal:9,parent_mail:14,recipient_count:[5,9,14],previou:9,field_id:[10,12,14],last_run_at:7,most:14,pair:11,"class":[4,5,7,8,9,10,13,14],don:1,member_group_id:[8,9,13],mcconnel:[9,14],url:[1,3,4,5,6,12],mailing_finish:[12,4],clear:10,request:[1,2,3],doe:[0,5,7,8,9,10,13],member_status_upd:[12,4],declar:9,tech:4,determin:1,dataset:10,dow:0,recipi:9,"6db0cc7e6fdb2da589b65f29d90c96b6":9,show:[4,5,7,8,9,10,11,13,14],text:[10,11,12],radiu:0,syntax:[0,1,11,9],radio:10,font:[4,5,7,8,9,10,13,14],fine:9,find:[1,6,5],status_to:8,toast:[7,5,8,13],access:[1,5],giant:12,just:[0,1,9],pretti:8,column_ord:10,explain:[0,1],winner:9,activ:[1,5,7,8,13,9],figur:1,should:[1,2,3,7,8,11,9],templat:[11,14],share_count:5,count:[1,2,3,5],variou:[8,13],confirmed_opt_in:[7,8,9,13],familiar:1,express:0,account:[1,4,5,7,8,10,13,14],becaus:12,repo:1,cannot:[8,9,4],progress:9,report:[10,8],requir:[1,7,8,10,11,9],object:[1,13,5],favorite_food:[5,7,8,13,10,9],bar:0,organ:1,include_archiv:[5,9],"public":1,"default":[5,11,13,4,9],ref_member_id:5,message_share_click:[12,4],through:[1,8,4],where:[0,1,8,11,7],view:1,user:[0,8,9,13],set:[0,1,2,3,6,8,9,12,13],link_id:[0,5,12,9,14],see:[7,1,8],result:[0,1,2,5,8,9],respons:[0,1,2,4,5,7,8,9,10,13,14],fail:[5,9,4],themselv:2,member_field:[0,7],xxxxx:6,subject:[8,12,9,14],statu:[1,4,5,7,8,9,12,13],fancyonion:11,kei:[0,1,8,11,4],is_schedul:9,message_forward:[12,4],databas:8,someth:1,last_modified_at:[7,8,9,13],addresse:5,written:1,between:[0,7,2],clicked_uniqu:5,"import":[1,8,12,4,10],subscript:[1,3],entiti:1,curlopt_url:[1,6,3],email:[0,1,3,5,6,7,8,9,13],wide:14,extend:1,numer:10,http404:[4,5,7,8,9,10,13,14],job:13,entir:[0,8],share_click:5,to_group_id:13,come:1,curlopt_returntransf:[1,6,3],addit:[0,1,8,9,11,13],member_remove_from_group:[12,4],send_start:[0,9,14],protect:1,accident:2,last:[0,5,10],delimit:5,pertain:5,message_click:[12,4],curlopt_post:[1,3],audienc:[1,8,9],mang:0,improv:1,http500:14,seri:5,com:[4,5,6,7,8,9,11,13],zip_code_field:0,"03t15":[7,5,8,13],point:1,toni:[7,8],overview:[0,1,11,12,5],period:1,winner_id:9,colon:[7,11],optout_count:[7,8,9,13],suppli:9,cancel:9,tuesdai:0,duplic:5,quit:[5,8],user_id:4,recur:14,headsup:9,addition:[1,2],due:5,been:[1,8,10,5],mark:[8,9],whom:9,tshow:[4,5,7,8,9,10,13,14],trigger:[1,4,5,7,8,9,10,12,13,14],unsubscrib:0,treat:8,interest:[10,4],basic:[0,1,4,8,13,14],monthli:[7,8,13],hesit:1,blob:4,email_us:[0,5],mailing_mailing_id:5,mailing_id:[0,5,8,12,9,14],fire:[8,4,14],xxx:[1,3],rubi:1,argument:[0,5],link_ord:[5,9],input:1,extract:11,present:7,statist:8,"case":[1,8],look:[1,14,10],frozen:9,durat:9,email_error:[7,8,9,13],defin:[0,10,8,9],"while":0,smith:[7,5,8,9,13],outcom:5,abov:[0,1,8,7],error:[1,3,6,8,10,13],loop:8,opt:[0,4,5,7,8,13],readi:9,deliv:5,recipient_group:9,equal:0,itself:0,new_statu:12,webhook_id:4,develop:1,recipient_memb:9,perform:8,make:[1,12,6,10],belong:[0,8,4],same:4,check:[8,6,9],member:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14],python:1,html:9,split:9,document:[1,11,12],complet:[1,3,4,6,8,9],week:0,finish:[5,12,4],http:[1,2,3,4,5,6,11,9],href:[4,5,7,8,9,10,13,14],nest:0,someon:4,rais:[4,5,7,8,9,10,13,14],initi:[10,9],php:[1,6,3],studi:1,recent:[1,8],kept:11,center:0,min:5,well:[1,5],inherit:9,person:9,mailing_typ:[9,14],without:[0,1],command:1,thi:[0,1,4,5,7,8,9,10,12,13,14],undefin:0,http_code:[1,6,3],latest:11,construct:[0,7,9],identifi:8,paus:9,execut:[1,3],less:0,resp:[4,5,7,8,9,10,13,14],"_post":[1,3],against:0,aspect:13,recipient_email:9,source_filenam:8,yet:5,languag:1,"12t09":[7,8],display_nam:10,easi:[1,12,10],"01t00":8,had:0,littl:1,blog:4,add:[12,1,8,13,3],other:[1,8,9,3,5],curlopt_userpwd:[1,6,3],import_finish:[8,12,4],schedul:9,els:[1,6,3],save:7,match:[0,7],build:1,sanit:1,applic:[1,6,3],account_id:[1,3,4,5,6,7,8,9,10,12,13,14],handl:1,disposit:1,crud:[8,13,14],print_r:[6,3],mailing_statu:[9,14],know:[1,4,5],background:13,parent_mailing_id:[9,14],bit:1,insert:11,emma:[1,5,7,8,9,12,13],like:1,onion:11,deprec:4,arbitrari:8,manual:9,integ:[1,8,14,10,5],collect:1,api:[1,2,3,6,8,12],either:[0,5,7],bunch:0,output:9,group_id:[1,8,12,3],soft:[0,5],manag:[0,1,13,4],import_id:[8,12],www:[5,9],old:7,deal:[8,13],captur:1,arrai:[0,1,3,5,6,7,8,9,10,12,13,14],some:[1,11,5],field_delet:[12,4],certain:12,intern:10,sampl:[1,4,5,7,8,9,10,13,14],elaps:[2,9],unless:1,deleted_at:[7,8,13,10,9,14],some_string_field:0,librari:11,woodcock:1,emmarubi:1,bounce_count:[7,8,9,13],emmapython:1,public_kei:4,deliveri:5,broad:12,per:5,send_finish:[9,14],larg:[0,2],condit:7,three:9,network_cod:12,localhost:9,emmaphp:1,with_html_bodi:9,who:[0,5,8],bold:[4,5,7,8,9,10,13,14],event_typ:14,inspect:1,usag:[1,8,12],monsewicz:1,num_members_ad:8,fulli:11,from:[1,4,8,9,12,13,14],post:[1,3,4,7,8,9,10,12,13,14],group_creat:[12,4],gladi:[7,5,8,13],hurst:1,actual:5,zip:0,groups_upd:8,column:10,page:2,includ:[1,5,7,8,9,10,13],webview:9,mean:0,disabl:[9,14],block:[1,2],yyyi:5,own:1,member_data:[1,3],glob:0,bounc:[0,5],within:[0,8],encod:[9,4],delivery_typ:[5,8],compos:0,webview_shar:5,field_typ:10,active_count:[7,8,9,13],public_webview_url:9,"20t14":[7,14],pivot:5,your:[1,4,5,7,8,9,10,13],websit:11,fast:8,span:[4,5,7,8,9,10,13,14],wai:[1,12],area:1,overus:2,group_nam:[8,12,13,9],support:12,unique_click:5,json:[0,1,3,4,6,7],submit:1,custom:[5,8,11,10],avail:[0,11,4],start:[1,2,8,4],interfac:12,send_at:[9,14],exceed:2,"var":3,interv:[0,14],fork:1,head:[1,6,9,3],form:[1,3,4,6,8,10,14],enough:2,forc:1,forward:[0,4,5,8,12,9],"31st":0,group_typ:[8,9,13],push_offset_unit:14,link:[0,4,5,11,9,14],line:[1,5],realli:1,"true":[0,1,2,3,4,6,7,8,9,10,13,14],archived_t:[9,14],info:4,pull:[1,2],made:1,possibl:[5,8,12],whether:8,maximum:2,tell:12,http403:9,record:[0,7,8],below:[0,1,8,12],http400:[7,8,9],limit:[5,2,8,9],some_array_field:0,otherwis:[1,8,10],start_t:14,mta:5,expect:1,notif:9,creat:[4,5,7,9,10,12,13,14],"int":5,retriev:[7,1,2,8,9],year:[0,5,9,14],repres:5,exist:[0,4,5,7,8,10,13],behavior:11,bob:[7,5],curl:[1,6],lentil:7,probabl:14,echo:[1,3],successfulli:[5,8,9],mailing_subject:12,grp:13,todo:11,when:[8,12,4,9],detail:[1,4,7,8,9,10,13],invalid:[7,8,9],event:[4,7,8,13,12,9,14],field:[0,1,3,4,5,7,8,9,10,11,12,13,14],valid:[5,8,9,13],futur:1,num_skip:8,test:[5,6,7,13,9,14],ignor:8,you:[0,1,2,4,5,7,8,9,10,11,12,13],member_delet:[12,4],member_status_id:[7,5,8,9,13],public_api_kei:[1,6,3],stat:[5,9],claus:[0,7],event_nam:[12,4],e2ma:[1,2,6,3],error_messag:8,param:[9,4],app_messag:[1,3],ella:8,bulk:[1,8],receiv:[0,2,5,8,12,9],heads_up_email:9,longer:9,home:11,confirm:8,descript:[4,14],ohmyemma:1,portion:0,opted_out:5,time:[1,2,8,13,5],reply_to:[9,14],resource_url:12,hello:[11,9,14]},objtypes:{"0":"http:get","1":"http:put","2":"http:post","3":"http:delete"},titles:["Search Syntax","Emma API","Pagination","PHP Signup Example","Webhooks","Response","PHP Get Member By Email Example","Searches","Members","Mailings","Fields","Placeholder Syntax","Webhook Usage","Groups","Triggers"],objnames:{"0":["http","get","HTTP get"],"1":["http","put","HTTP put"],"2":["http","post","HTTP post"],"3":["http","delete","HTTP delete"]},filenames:["member_search","index","pagination","php_signup_example","api/external/webhooks","api/external/response","php_get_member_example","api/external/searches","api/external/members","api/external/mailings","api/external/fields","placeholders","webhooks","api/external/groups","api/external/triggers"]}) \ No newline at end of file +Search.setIndex({objects:{"":{"/#account_id/members/#member_id/groups/remove":[8,1,1,"put--#account_id-members-#member_id-groups-remove"],"/#account_id/mailings/#mailing_id/winner/#winner_id":[9,2,1,"post--#account_id-mailings-#mailing_id-winner-#winner_id"],"/#account_id/response/#mailing_id/in_progress":[5,0,1,"get--#account_id-response-#mailing_id-in_progress"],"/#account_id/members/groups/remove":[8,1,1,"put--#account_id-members-groups-remove"],"/#account_id/mailings/#mailing_id/searches":[9,0,1,"get--#account_id-mailings-#mailing_id-searches"],"/#account_id/fields":[10,2,1,"post--#account_id-fields"],"/#account_id/members/#group_id/copy":[8,1,1,"put--#account_id-members-#group_id-copy"],"/#account_id/members/status":[8,1,1,"put--#account_id-members-status"],"/#account_id/response/#mailing_id/shares/overview":[5,0,1,"get--#account_id-response-#mailing_id-shares-overview"],"/#account_id/webhooks/events":[4,0,1,"get--#account_id-webhooks-events"],"/#account_id/members/#member_id/optout":[8,0,1,"get--#account_id-members-#member_id-optout"],"/#account_id/webhooks":[4,3,1,"delete--#account_id-webhooks"],"/#account_id/fields/#field_id":[10,3,1,"delete--#account_id-fields-#field_id"],"/#account_id/response/#mailing_id":[5,0,1,"get--#account_id-response-#mailing_id"],"/#account_id/groups/#member_group_id/members/remove":[13,3,1,"delete--#account_id-groups-#member_group_id-members-remove"],"/#account_id/searches":[7,2,1,"post--#account_id-searches"],"/#account_id/members/imports":[8,0,1,"get--#account_id-members-imports"],"/#account_id/forwards/#mailing_id/#member_id":[9,2,1,"post--#account_id-forwards-#mailing_id-#member_id"],"/#account_id/response/#mailing_id/customer_share_clicks":[5,0,1,"get--#account_id-response-#mailing_id-customer_share_clicks"],"/#account_id/mailings/#mailing_id/messages/#member_id":[9,0,1,"get--#account_id-mailings-#mailing_id-messages-#member_id"],"/#account_id/members/#member_id/mailings":[8,0,1,"get--#account_id-members-#member_id-mailings"],"/#account_id/groups/#from_group_id/#to_group_id/members/copy":[13,1,1,"put--#account_id-groups-#from_group_id-#to_group_id-members-copy"],"/#account_id/triggers":[14,2,1,"post--#account_id-triggers"],"/#account_id/triggers/#trigger_id":[14,3,1,"delete--#account_id-triggers-#trigger_id"],"/#account_id/members/delete":[8,1,1,"put--#account_id-members-delete"],"/#account_id/mailings/#mailing_id/groups":[9,0,1,"get--#account_id-mailings-#mailing_id-groups"],"/#account_id/response/#mailing_id/forwards":[5,0,1,"get--#account_id-response-#mailing_id-forwards"],"/#account_id/members/#member_id":[8,3,1,"delete--#account_id-members-#member_id"],"/#account_id/triggers/#trigger_id/mailings":[14,0,1,"get--#account_id-triggers-#trigger_id-mailings"],"/#account_id/searches/#search_id/members":[7,0,1,"get--#account_id-searches-#search_id-members"],"/#account_id/members/status/:status_from/to/:status_to":[8,1,1,"put--#account_id-members-status--status_from-to--status_to"],"/#account_id/response/#mailing_id/sends":[5,0,1,"get--#account_id-response-#mailing_id-sends"],"/#account_id/members":[8,3,1,"delete--#account_id-members"],"/#account_id/members/email/:email":[8,0,1,"get--#account_id-members-email--email"],"/#account_id/response/#mailing_id/links":[5,0,1,"get--#account_id-response-#mailing_id-links"],"/#account_id/searches/#search_id":[7,3,1,"delete--#account_id-searches-#search_id"],"/#account_id/members/imports/#import_id/members":[8,0,1,"get--#account_id-members-imports-#import_id-members"],"/#account_id/fields/#field_id/clear":[10,2,1,"post--#account_id-fields-#field_id-clear"],"/#account_id/groups/#member_group_id/members":[13,3,1,"delete--#account_id-groups-#member_group_id-members"],"/#account_id/members/imports/#import_id":[8,0,1,"get--#account_id-members-imports-#import_id"],"/#account_id/response":[5,0,1,"get--#account_id-response"],"/#account_id/response/#mailing_id/opens":[5,0,1,"get--#account_id-response-#mailing_id-opens"],"/#account_id/members/imports/delete":[8,3,1,"delete--#account_id-members-imports-delete"],"/#account_id/mailings":[9,0,1,"get--#account_id-mailings"],"/#account_id/mailings/cancel/#mailing_id":[9,3,1,"delete--#account_id-mailings-cancel-#mailing_id"],"/#account_id/mailings/validate":[9,2,1,"post--#account_id-mailings-validate"],"/#account_id/response/#mailing_id/deliveries":[5,0,1,"get--#account_id-response-#mailing_id-deliveries"],"/#account_id/mailings/#mailing_id/members":[9,0,1,"get--#account_id-mailings-#mailing_id-members"],"/#account_id/response/#share_id/customer_share":[5,0,1,"get--#account_id-response-#share_id-customer_share"],"/#account_id/webhooks/#webhook_id":[4,3,1,"delete--#account_id-webhooks-#webhook_id"],"/#account_id/members/add":[8,2,1,"post--#account_id-members-add"],"/#account_id/members/email/optout/:email":[8,1,1,"put--#account_id-members-email-optout--email"],"/#account_id/response/#mailing_id/optouts":[5,0,1,"get--#account_id-response-#mailing_id-optouts"],"/#account_id/response/#mailing_id/shares":[5,0,1,"get--#account_id-response-#mailing_id-shares"],"/#account_id/groups/#member_group_id":[13,3,1,"delete--#account_id-groups-#member_group_id"],"/#account_id/mailings/#mailing_id":[9,3,1,"delete--#account_id-mailings-#mailing_id"],"/#account_id/members/#member_id/groups":[8,3,1,"delete--#account_id-members-#member_id-groups"],"/#account_id/groups":[13,2,1,"post--#account_id-groups"],"/#account_id/response/#mailing_id/clicks":[5,0,1,"get--#account_id-response-#mailing_id-clicks"],"/#account_id/mailings/#mailing_id/headsup":[9,0,1,"get--#account_id-mailings-#mailing_id-headsup"],"/#account_id/response/#mailing_id/signups":[5,0,1,"get--#account_id-response-#mailing_id-signups"],"/#account_id/response/#mailing_id/customer_shares":[5,0,1,"get--#account_id-response-#mailing_id-customer_shares"]}},terms:{all:[0,1,4,5,8,9,10,11,12,13,14],code:[0,1,6,3],change_typ:8,queri:[0,2,4],month:[0,5,9,14],four:[0,5],mile:0,least:0,follow:[0,1,4,5,7,9,11,13],link_target:[5,9],content:[1,11,6,9,3],privat:1,specif:[8,9,4],friendli:5,send:[1,9,4,3,5],program:1,customer_share_click:5,those:[1,12,5],group_upd:[12,4],sent:[5,8,12,9,14],curl_clos:[1,6,3],brown:[7,8],digit:5,everi:0,string:[0,4,5,7,8,9,10,12,13,14],fals:[1,3,4,5,6,7,8,9,10,13,14],webhook:[1,12,4],mailing_status:9,trigger_id:14,webview_share_click:5,affect:[7,8],member_add:[12,4],create_mail:9,new_boolean:10,foo:0,level:1,group_delet:[12,4],list:[0,1,2,4,5,7,8,9,10,11,12,13,14],upload:8,iter:2,"try":8,item:2,plaintext_onli:[9,14],div:[4,5,7,8,9,10,13,14],survey_id:14,setup:1,pleas:[1,8,11,9],prevent:2,work:[1,4],ten:0,sync:10,sign:[0,5,4],past:1,second:[0,7,14],field_creat:[12,4],further:1,shortcut_nam:10,click:[0,4,5,7,8,12,14],append:2,even:10,what:1,hide:[4,5,7,8,9,10,13,14],appear:[1,8],from_group_id:13,section:1,current:[1,8,12,9],delet:[1,4,7,8,9,10,12,13,14],"new":[1,4,5,7,8,9,10,11,13,14],net:[1,2,6,3],delivery_t:8,method:[5,8,13,4,9],can:[0,1,2,4,5,7,8,9,11,12,13],widget:[7,10,8,9,13],full:1,hash:0,datematch:0,displai:10,variat:9,gener:[0,8,12,14],onli:[5,8],here:[0,1,3,5,6,8],bodi:9,let:[1,4,10],address:[0,1,8,6,9],along:8,sinc:8,valu:[0,5,7,8,10,11],field_upd:[12,4],search:[0,1,8,9,7],survei:14,sender:[9,14],larger:2,queue:5,prior:9,action:[0,8],chang:[8,4],campaign:5,newbi:5,appli:[7,14],prefer:0,young:1,myemma:[4,5,7,8,9,13],filenam:8,customer_shar:5,"boolean":[0,1,5,7,8,9,10,13,14],curlopt_postfield:[1,3],total:5,jone:[7,5,8,13],select:[1,10],newslett:[7,8,13],describ:7,would:[0,1],commun:1,regist:4,two:[0,5],coverag:1,next:[0,1],create_webhook:4,few:[5,8],call:[1,2,3,4,6,8,12],criteria:7,member_add_to_group:[12,4],type:[1,3,4,5,6,7,10,9,14],until:2,more:[0,4,7,8,9,13],peopl:5,relat:[1,8,11,9],about:[10,8,12,4,9],notic:8,thide:[4,5,7,8,9,10,13,14],flag:[5,7,8,10,9,14],exce:2,indic:8,examin:1,particular:[1,4,5,8,10,12,9],in_progress:5,origin:9,must:[0,7,13,10],none:9,endpoint:[1,4,5,7,8,9,10,13,14],join:[0,7],hour:0,der:1,member_sinc:[0,5,7,8,9,13],uniqu:5,histori:8,soup:7,remain:[0,9],archiv:[5,9],member_optout:[12,4],drill:5,control:[1,11,9],quickstart:1,give:5,forward_mailing_id:5,email_domain:[0,5],share:[0,5,8,12,4],accept:[0,5,7,8,9,10,11,13,14],total_click:5,tag:[11,9],want:[1,12,13,5],occur:[7,12],some_numeric_field:0,delai:14,alwai:0,webhook_event_id:4,cours:1,multipl:[10,8],first_nam:[1,3,5,7,8,9,10,11,13,14],started_or_finish:[9,14],anoth:[9,13],get:[1,4,5,6,7,8,9,10,13,14],message_open:[12,4],html_bodi:[9,14],share_statu:5,push_offset:14,del_statu:5,tild:5,num_members_upd:8,simpl:0,chri:9,pizza:[7,8],map:0,autent:1,referenc:7,xxxx:6,sundai:0,jacqu:1,membership:13,taco:[7,5,8,9,13],mai:12,end:[2,8],associ:[1,8,9,4,5],grow:1,welcom:11,add_onli:8,"short":0,json_encod:[1,3],optout:[5,8,12,13],num_dupl:8,favorit:10,correspond:[0,1],greet:11,predic:[0,1],issu:[1,10],"12t11":[7,5,8,9,13],combin:7,allow:[0,7,8],some_zipcode_field:0,signed_up:5,order:[5,10],michel:[8,9],mailing_nam:5,checkbox:10,fields_upd:8,over:2,soon:1,buyer:[7,8,9,13],comma:[9,13],is_dis:14,vari:8,paramet:[2,4,5,7,8,9,10,13,14],widget_typ:10,style:[0,4,5,7,8,9,10,13,14],group:[0,1,3,4,7,8,9,12,13,14],curl_setopt:[1,6,3],how:[7,1,2,4],fix:1,import_start:8,better:[13,14],platform:1,pend:[1,9],mailing_list:9,onc:9,mail:[0,1,4,5,8,11,12,9,14],hidden:13,main:1,might:[1,4],link_nam:[5,9],them:[8,9],messag:[4,5,8,12,11,9,14],"return":[0,1,4,5,7,8,9,10,12,13,14],greater:[0,8],thei:[0,9],food:10,timestamp:[0,5,12,9,10],spell:4,nashvil:1,dai:0,auth:1,framework:1,instead:[12,2,8],now:5,down:5,term:[0,1],alex:9,name:[0,4,5,7,8,9,10,11,13,14],edit:[7,1,14,10],curl_getinfo:[1,6,3],authent:[1,6,4,3],successufulli:4,separ:[1,9,13],each:[1,2,5,9,12,11,13],found:[8,9,4,14],updat:[4,7,8,9,10,12,13,14],denni:1,status:[8,9],domain:0,weight:[4,5,7,8,9,10,13,14],resum:9,individu:[5,8],hard:[0,5],last_nam:[1,3,5,7,8,9,10,11,13,14],"05t15":5,birthdai:[10,14],connect:[1,6,3],doug:1,our:[1,11,12,4,14],happen:[1,4,5],commiss:1,short_display_nam:10,special:[0,7,8,13],out:[0,1,4,5,7,8,10,13],variabl:[1,6,3],message_shar:[12,4],network:[5,12],private_api_kei:[1,6,3],check_multipl:10,categori:1,rel:0,print:6,correct:10,integr:1,benjamin:[1,8],qualifi:11,insid:1,advanc:0,contain:[0,5,7,13,10,9],given:[0,8,9,4],standard:[5,9],status_from:8,base:[5,8],recipient_search:9,dictionari:8,put:[4,7,8,9,10,13,14],span:[4,5,7,8,9,10,13,14],"13t23":[7,5,8],refer:[5,7,8,13,10,9],visit:11,could:1,omit:5,success:[1,3,7,8,9,13],filter:[0,1,7],search_id:7,pagin:[1,2],member_id:[5,7,8,9,12,13],summari:[1,5],assign:9,first:[0,1,10,5],oper:[0,1,7,14],rang:5,notifi:12,directli:0,curlopt_ssl_verifyp:[1,6,3],curl_init:[1,6,3],number:[5,2,13,3,10],placehold:[1,11],date:[0,5,8,10,11,14],unlik:9,alreadi:[10,8,9,13],done:8,plaintext_pref:[7,8,9,13],oppos:8,open:[0,3,4,5,6,7,8,12],payload:4,fanci:5,size:2,differ:0,"long":10,script:1,data:[1,3,4,5,10,12],system:[8,12,4,14],wrapper:1,attach:11,easier:12,friend:11,curlinfo_http_cod:[1,6,3],shell:0,option:[0,5,7,8,9,10,13,14],especi:8,signup:[0,1,3,4,5,8,12,14],copi:[8,13],member_upd:[12,4],specifi:[0,2,7,8,10,11,9,14],curl_exec:[1,6,3],curlopt_httphead:[1,6,3],member_signup:[12,4],create_search:7,part:[0,9],enclos:11,than:[0,1,2,3,12,13],with_plaintext:9,"02t10":[5,8],"02t11":[5,8],"02t13":5,nathan:8,whenev:8,provid:[1,5,8,12,9,14],remov:[12,8,13,4],mailing_start:4,rate:2,structur:7,charact:9,greg:8,trackabl:11,were:5,minut:0,danc:1,error_count:[7,8,9,13],pre:[4,5,7,8,9,10,13,14],cleaner:1,sai:0,share_id:5,signup_form_id:[0,8,12,9,14],plaintext:[5,9,14],pass:[1,3],ani:[0,1,2,7,8,9],have:[0,1,5,8,12,9],tabl:5,need:1,seen:5,"null":[7,8,13,10,9,14],kevin:[9,14],signup_mail:0,caus:14,built:1,inform:[1,4,6,8,9,10,13],object_id:14,note:[1,8,9,4],also:[0,4,5,7,8,9,11,13],exampl:[0,1,3,5,6,7,11],take:[0,4],which:[0,1,4,8,10,12,9,14],some_number_field:0,singl:[0,1,3,4,5,8,10,12,13],excit:11,sure:1,delete_memb:13,normal:9,parent_mail:14,recipient_count:[5,9,14],previou:9,field_id:[10,12,14],last_run_at:7,most:14,pair:11,"class":[4,5,7,8,9,10,13,14],don:1,member_group_id:[8,9,13],mcconnel:[9,14],url:[1,3,4,5,6,12],mailing_finish:[12,4],clear:10,request:[1,2,3],doe:[0,5,7,8,9,10,13],member_status_upd:[12,4],declar:9,tech:4,determin:1,dataset:10,dow:0,recipi:9,"6db0cc7e6fdb2da589b65f29d90c96b6":9,show:[4,5,7,8,9,10,11,13,14],text:[10,11,12],radiu:0,syntax:[0,1,11,9],radio:10,font:[4,5,7,8,9,10,13,14],fine:9,find:[1,6,5],status_to:8,toast:[7,5,8,13],access:[1,5],giant:12,just:[0,1,9],pretti:8,column_ord:10,explain:[0,1],winner:9,activ:[1,5,7,8,13,9],figur:1,should:[1,2,3,7,8,11,9],templat:[11,14],share_count:5,count:[1,2,3,5],variou:[8,13],confirmed_opt_in:[7,8,9,13],familiar:1,express:0,account:[1,4,5,7,8,10,13,14],becaus:12,repo:1,cannot:[8,9,4],progress:9,report:[10,8],requir:[1,7,8,10,11,9],object:[1,13,5],favorite_food:[5,7,8,13,10,9],bar:0,organ:1,include_archiv:[5,9],"public":1,"default":[5,11,13,4,9],ref_member_id:5,message_share_click:[12,4],through:[1,8,4],where:[0,1,8,11,7],view:1,user:[0,8,9,13],set:[0,1,2,3,6,8,9,12,13],link_id:[0,5,12,9,14],see:[7,1,8],result:[0,1,2,5,8,9],respons:[0,1,2,4,5,7,8,9,10,13,14],fail:[5,9,4],themselv:2,member_field:[0,7],xxxxx:6,subject:[8,12,9,14],statu:[1,4,5,7,8,9,12,13],fancyonion:11,kei:[0,1,8,11,4],is_schedul:9,message_forward:[12,4],databas:8,someth:1,last_modified_at:[7,8,9,13],addresse:5,written:1,between:[0,7,2],clicked_uniqu:5,"import":[1,8,12,4,10],subscript:[1,3],entiti:1,curlopt_url:[1,6,3],email:[0,1,3,5,6,7,8,9,13],wide:14,extend:1,numer:10,http404:[4,5,7,8,9,10,13,14],job:13,entir:[0,8],share_click:5,to_group_id:13,come:1,curlopt_returntransf:[1,6,3],addit:[0,1,8,9,11,13],member_remove_from_group:[12,4],send_start:[0,9,14],protect:1,accident:2,last:[0,5,10],delimit:5,lentil:7,"12t09":[7,8],pertain:5,message_click:[12,4],curlopt_post:[1,3],audienc:[1,8,9],mang:0,improv:1,http500:14,seri:5,com:[4,5,6,7,8,9,11,13],zip_code_field:0,"03t15":[7,5,8,13],point:1,toni:[7,8],overview:[0,1,11,12,5],period:1,winner_id:9,colon:[7,11],optout_count:[7,8,9,13],suppli:9,cancel:9,tuesdai:0,duplic:5,quit:[5,8],user_id:4,recur:14,headsup:9,addition:[1,2],due:5,been:[1,8,10,5],mark:[8,9],whom:9,tshow:[4,5,7,8,9,10,13,14],trigger:[1,4,5,7,8,9,10,12,13,14],unsubscrib:0,treat:8,interest:[10,4],basic:[0,1,4,8,13,14],monthli:[7,8,13],hesit:1,blob:4,email_us:[0,5],mailing_mailing_id:5,mailing_id:[0,5,8,12,9,14],fire:[8,4,14],xxx:[1,3],rubi:1,argument:[0,5],link_ord:[5,9],input:1,extract:11,present:7,statist:8,"case":[1,8],look:[1,14,10],frozen:9,durat:9,email_error:[7,8,9,13],defin:[0,10,8,9],"while":0,smith:[7,5,8,9,13],outcom:5,abov:[0,1,8,7],error:[1,3,6,8,10,13],veen:1,loop:8,opt:[0,4,5,7,8,13],readi:9,deliv:5,recipient_group:9,equal:0,itself:0,new_statu:12,webhook_id:4,develop:1,recipient_memb:9,perform:8,make:[1,12,6,10],belong:[0,8,4],same:4,check:[8,6,9],member:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14],python:1,html:9,split:9,document:[1,11,12],complet:[1,3,4,6,8,9],week:0,finish:[5,12,4],http:[1,2,3,4,5,6,11,9],href:[4,5,7,8,9,10,13,14],nest:0,someon:4,rais:[4,5,7,8,9,10,13,14],initi:[10,9],php:[1,6,3],studi:1,recent:[1,8],kept:11,center:0,min:5,well:[1,5],inherit:9,person:9,mailing_typ:[9,14],without:[0,1],command:1,thi:[0,1,4,5,7,8,9,10,12,13,14],undefin:0,http_code:[1,6,3],latest:11,construct:[0,7,9],identifi:8,paus:9,execut:[1,3],less:0,resp:[4,5,7,8,9,10,13,14],"_post":[1,3],against:0,aspect:13,recipient_email:9,source_filenam:8,yet:5,languag:1,"04t11":[7,14],display_nam:10,easi:[1,12,10],"01t00":8,had:0,littl:1,blog:4,add:[12,1,8,13,3],other:[1,8,9,3,5],curlopt_userpwd:[1,6,3],import_finish:[8,12,4],schedul:9,els:[1,6,3],save:7,match:[0,7],build:1,sanit:1,applic:[1,6,3],account_id:[1,3,4,5,6,7,8,9,10,12,13,14],handl:1,disposit:1,crud:[8,13,14],print_r:[6,3],mailing_statu:[9,14],know:[1,4,5],background:13,parent_mailing_id:[9,14],bit:1,insert:11,emma:[1,5,7,8,9,12,13],like:1,onion:11,deprec:4,arbitrari:8,manual:9,integ:[1,8,14,10,5],collect:1,api:[1,2,3,6,8,12],either:[0,5,7],bunch:0,output:9,group_id:[1,8,12,3],soft:[0,5],manag:[0,1,13,4],import_id:[8,12],www:[5,9],old:7,deal:[8,13],captur:1,arrai:[0,1,3,5,6,7,8,9,10,12,13,14],some:[1,11,5],field_delet:[12,4],certain:12,intern:10,sampl:[1,4,5,7,8,9,10,13,14],elaps:[2,9],unless:1,deleted_at:[7,8,13,10,9,14],some_string_field:0,librari:11,woodcock:1,emmarubi:1,bounce_count:[7,8,9,13],emmapython:1,public_kei:4,deliveri:5,broad:12,per:5,send_finish:[9,14],larg:[0,2],condit:7,three:9,network_cod:12,localhost:9,emmaphp:1,with_html_bodi:9,who:[0,5,8],bold:[4,5,7,8,9,10,13,14],event_typ:14,inspect:1,usag:[1,8,12],monsewicz:1,num_members_ad:8,fulli:11,from:[1,4,8,9,12,13,14],post:[1,3,4,7,8,9,10,12,13,14],group_creat:[12,4],gladi:[7,5,8,13],hurst:1,actual:5,zip:0,groups_upd:8,column:10,page:2,includ:[1,5,7,8,9,10,13],webview:9,mean:0,disabl:[9,14],block:[1,2],yyyi:5,own:1,member_data:[1,3],glob:0,bounc:[0,5],within:[0,8],encod:[9,4],delivery_typ:[5,8],compos:0,webview_shar:5,field_typ:10,active_count:[7,8,9,13],public_webview_url:9,pivot:5,your:[1,4,5,7,8,9,10,13],websit:11,fast:8,van:1,wai:[1,12],area:1,overus:2,group_nam:[8,12,13,9],support:12,unique_click:5,json:[0,1,3,4,6,7],submit:1,custom:[5,8,11,10],avail:[0,11,4],start:[1,2,8,4],interfac:12,send_at:[9,14],exceed:2,"var":3,interv:[0,14],fork:1,head:[1,6,9,3],form:[1,3,4,6,8,10,14],enough:2,forc:1,forward:[0,4,5,8,12,9],"31st":0,group_typ:[8,9,13],push_offset_unit:14,link:[0,4,5,11,9,14],line:[1,5],realli:1,"true":[0,1,2,3,4,6,7,8,9,10,13,14],archived_t:[9,14],info:4,pull:[1,2],made:1,possibl:[5,8,12],whether:8,maximum:2,tell:12,http403:9,record:[0,7,8],below:[0,1,8,12],http400:[7,8,9],limit:[5,2,8,9],some_array_field:0,otherwis:[1,8,10],start_t:14,mta:5,expect:1,notif:9,creat:[4,5,7,9,10,12,13,14],"int":5,retriev:[7,1,2,8,9],year:[0,5,9,14],repres:5,exist:[0,4,5,7,8,10,13],behavior:11,bob:[7,5],curl:[1,6],portland:1,probabl:14,echo:[1,3],successfulli:[5,8,9],mailing_subject:12,grp:13,todo:11,when:[8,12,4,9],detail:[1,4,7,8,9,10,13],invalid:[7,8,9],event:[4,7,8,13,12,9,14],field:[0,1,3,4,5,7,8,9,10,11,12,13,14],valid:[5,8,9,13],futur:1,num_skip:8,test:[5,6,7,13,9,14],ignor:8,you:[0,1,2,4,5,7,8,9,10,11,12,13],member_delet:[12,4],member_status_id:[7,5,8,9,13],public_api_kei:[1,6,3],stat:[5,9],claus:[0,7],event_nam:[12,4],e2ma:[1,2,6,3],error_messag:8,param:[9,4],app_messag:[1,3],ella:8,bulk:[1,8],receiv:[0,2,5,8,12,9],heads_up_email:9,longer:9,home:11,confirm:8,descript:[4,14],ohmyemma:1,portion:0,opted_out:5,time:[1,2,8,13,5],reply_to:[9,14],resource_url:12,hello:[11,9,14]},objtypes:{"0":"http:get","1":"http:put","2":"http:post","3":"http:delete"},titles:["Search Syntax","Emma API","Pagination","PHP Signup Example","Webhooks","Response","PHP Get Member By Email Example","Searches","Members","Mailings","Fields","Placeholder Syntax","Webhook Usage","Groups","Triggers"],objnames:{"0":["http","get","HTTP get"],"1":["http","put","HTTP put"],"2":["http","post","HTTP post"],"3":["http","delete","HTTP delete"]},filenames:["member_search","index","pagination","php_signup_example","api/external/webhooks","api/external/response","php_get_member_example","api/external/searches","api/external/members","api/external/mailings","api/external/fields","placeholders","webhooks","api/external/groups","api/external/triggers"]}) \ No newline at end of file diff --git a/webhooks.html b/webhooks.html index 4edb14b..fb71dc9 100644 --- a/webhooks.html +++ b/webhooks.html @@ -507,7 +507,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Mar 20, 2013 at 02:21 PM. + Last updated on Apr 04, 2013 at 11:13 AM. </div> </body> </html> \ No newline at end of file From 47c74121f3dccfe7eaa10a5dbb53b0e46e901b75 Mon Sep 17 00:00:00 2001 From: Hernan Ciudad <hernan@myemma.com> Date: Thu, 4 Apr 2013 11:32:14 -0500 Subject: [PATCH 037/219] Update audience documentation. --- _sources/index.txt | 2 +- api/external/fields.html | 2 +- api/external/groups.html | 2 +- api/external/mailings.html | 2 +- api/external/members.html | 2 +- api/external/response.html | 2 +- api/external/searches.html | 4 ++-- api/external/triggers.html | 8 ++++---- api/external/webhooks.html | 2 +- genindex.html | 2 +- http-routingtable.html | 2 +- index.html | 4 ++-- member_search.html | 2 +- pagination.html | 2 +- php_get_member_example.html | 2 +- php_signup_example.html | 2 +- placeholders.html | 2 +- search.html | 2 +- searchindex.js | 2 +- webhooks.html | 2 +- 20 files changed, 25 insertions(+), 25 deletions(-) diff --git a/_sources/index.txt b/_sources/index.txt index c0b3965..bed278d 100644 --- a/_sources/index.txt +++ b/_sources/index.txt @@ -37,7 +37,7 @@ This collection is young, but growing, and includes wrappers commissioned by Emm `EmmaRuby <https://github.com/myemma/EmmaRuby>`_: Commissioned by Emma and built by Nashville developer `Dennis Monsewicz <https://github.com/dennismonsewicz>`_. **Objective-C** - `EmmaRuby <https://github.com/myemma/EmmaSDK>`_: Commissioned by Emma and built by Portland developer `Benjamin Van Der Veen <https://github.com/bvanderveen>`_. + `EmmaSDK <https://github.com/myemma/EmmaSDK>`_: Commissioned by Emma and built by Portland developer `Benjamin Van Der Veen <https://github.com/bvanderveen>`_. **.NET Framework** Coming Soon! diff --git a/api/external/fields.html b/api/external/fields.html index ee38205..818b79d 100644 --- a/api/external/fields.html +++ b/api/external/fields.html @@ -415,7 +415,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Apr 04, 2013 at 11:13 AM. + Last updated on Apr 04, 2013 at 11:32 AM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/groups.html b/api/external/groups.html index 18cc2ca..e58cfa7 100644 --- a/api/external/groups.html +++ b/api/external/groups.html @@ -702,7 +702,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Apr 04, 2013 at 11:13 AM. + Last updated on Apr 04, 2013 at 11:32 AM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/mailings.html b/api/external/mailings.html index cc59027..018d69e 100644 --- a/api/external/mailings.html +++ b/api/external/mailings.html @@ -810,7 +810,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Apr 04, 2013 at 11:13 AM. + Last updated on Apr 04, 2013 at 11:32 AM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/members.html b/api/external/members.html index 62ebad4..f99e496 100644 --- a/api/external/members.html +++ b/api/external/members.html @@ -1217,7 +1217,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Apr 04, 2013 at 11:13 AM. + Last updated on Apr 04, 2013 at 11:32 AM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/response.html b/api/external/response.html index 06508b0..b3e4778 100644 --- a/api/external/response.html +++ b/api/external/response.html @@ -1019,7 +1019,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Apr 04, 2013 at 11:13 AM. + Last updated on Apr 04, 2013 at 11:32 AM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/searches.html b/api/external/searches.html index 3e43683..3f029e6 100644 --- a/api/external/searches.html +++ b/api/external/searches.html @@ -199,7 +199,7 @@ <h1>Searches<a class="headerlink" href="#searches" title="Permalink to this head "name": "Test Search", "criteria": "[\"or\", [\"group\", \"eq\", \"Monthly Newsletter\"],[\"group\", \"eq\", \"Widget Buyers\"]]", "deleted_at": null, - "last_run_at": "@D:2013-04-04T11:13:36", + "last_run_at": "@D:2013-04-04T11:32:07", "active_count": 2, "account_id": 100 } @@ -511,7 +511,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Apr 04, 2013 at 11:13 AM. + Last updated on Apr 04, 2013 at 11:32 AM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/triggers.html b/api/external/triggers.html index e3fea1e..effcc1f 100644 --- a/api/external/triggers.html +++ b/api/external/triggers.html @@ -148,7 +148,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": 203, "push_offset_units": "0:-14:0:0", - "start_ts": "@D:2013-04-04T11:13:34", + "start_ts": "@D:2013-04-04T11:32:04", "trigger_id": 100, "signups": null, "push_offset": "@I:-1209600.0", @@ -189,7 +189,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": null, "push_offset_units": "0:3:0:0", - "start_ts": "@D:2013-04-04T11:13:34", + "start_ts": "@D:2013-04-04T11:32:04", "trigger_id": 101, "signups": [ 1, @@ -326,7 +326,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": 203, "push_offset_units": "0:-14:0:0", - "start_ts": "@D:2013-04-04T11:13:34", + "start_ts": "@D:2013-04-04T11:32:04", "trigger_id": 100, "signups": null, "push_offset": "@I:-1209600.0", @@ -499,7 +499,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Apr 04, 2013 at 11:13 AM. + Last updated on Apr 04, 2013 at 11:32 AM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/webhooks.html b/api/external/webhooks.html index 969fb3b..c6533ef 100644 --- a/api/external/webhooks.html +++ b/api/external/webhooks.html @@ -487,7 +487,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Apr 04, 2013 at 11:13 AM. + Last updated on Apr 04, 2013 at 11:32 AM. </div> </body> </html> \ No newline at end of file diff --git a/genindex.html b/genindex.html index 6b0e20d..6eb8600 100644 --- a/genindex.html +++ b/genindex.html @@ -146,7 +146,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Apr 04, 2013 at 11:13 AM. + Last updated on Apr 04, 2013 at 11:32 AM. </div> </body> </html> \ No newline at end of file diff --git a/http-routingtable.html b/http-routingtable.html index fdc61c7..ff7360c 100644 --- a/http-routingtable.html +++ b/http-routingtable.html @@ -607,7 +607,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Apr 04, 2013 at 11:13 AM. + Last updated on Apr 04, 2013 at 11:32 AM. </div> </body> </html> \ No newline at end of file diff --git a/index.html b/index.html index f2e1639..f1ef70d 100644 --- a/index.html +++ b/index.html @@ -149,7 +149,7 @@ <h2>API Wrappers<a class="headerlink" href="#api-wrappers" title="Permalink to t <dt><strong>Ruby</strong></dt> <dd><a class="reference external" href="https://github.com/myemma/EmmaRuby">EmmaRuby</a>: Commissioned by Emma and built by Nashville developer <a class="reference external" href="https://github.com/dennismonsewicz">Dennis Monsewicz</a>.</dd> <dt><strong>Objective-C</strong></dt> -<dd><a class="reference external" href="https://github.com/myemma/EmmaSDK">EmmaRuby</a>: Commissioned by Emma and built by Portland developer <a class="reference external" href="https://github.com/bvanderveen">Benjamin Van Der Veen</a>.</dd> +<dd><a class="reference external" href="https://github.com/myemma/EmmaSDK">EmmaSDK</a>: Commissioned by Emma and built by Portland developer <a class="reference external" href="https://github.com/bvanderveen">Benjamin Van Der Veen</a>.</dd> <dt><strong>.NET Framework</strong></dt> <dd>Coming Soon!</dd> </dl> @@ -344,7 +344,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Apr 04, 2013 at 11:13 AM. + Last updated on Apr 04, 2013 at 11:32 AM. </div> </body> </html> \ No newline at end of file diff --git a/member_search.html b/member_search.html index 13119c4..dca6c0a 100644 --- a/member_search.html +++ b/member_search.html @@ -256,7 +256,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Apr 04, 2013 at 11:13 AM. + Last updated on Apr 04, 2013 at 11:32 AM. </div> </body> </html> \ No newline at end of file diff --git a/pagination.html b/pagination.html index 7a5bba8..00346bb 100644 --- a/pagination.html +++ b/pagination.html @@ -168,7 +168,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Apr 04, 2013 at 11:13 AM. + Last updated on Apr 04, 2013 at 11:32 AM. </div> </body> </html> \ No newline at end of file diff --git a/php_get_member_example.html b/php_get_member_example.html index 20b3cfa..624b8c7 100644 --- a/php_get_member_example.html +++ b/php_get_member_example.html @@ -183,7 +183,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Apr 04, 2013 at 11:13 AM. + Last updated on Apr 04, 2013 at 11:32 AM. </div> </body> </html> \ No newline at end of file diff --git a/php_signup_example.html b/php_signup_example.html index bf1fd2f..3f3ba02 100644 --- a/php_signup_example.html +++ b/php_signup_example.html @@ -205,7 +205,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Apr 04, 2013 at 11:13 AM. + Last updated on Apr 04, 2013 at 11:32 AM. </div> </body> </html> \ No newline at end of file diff --git a/placeholders.html b/placeholders.html index 9f169a8..c0fe09a 100644 --- a/placeholders.html +++ b/placeholders.html @@ -183,7 +183,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Apr 04, 2013 at 11:13 AM. + Last updated on Apr 04, 2013 at 11:32 AM. </div> </body> </html> \ No newline at end of file diff --git a/search.html b/search.html index e532fe8..525abd5 100644 --- a/search.html +++ b/search.html @@ -153,7 +153,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Apr 04, 2013 at 11:13 AM. + Last updated on Apr 04, 2013 at 11:32 AM. </div> </body> </html> \ No newline at end of file diff --git a/searchindex.js b/searchindex.js index 15ef205..e85ab38 100644 --- a/searchindex.js +++ b/searchindex.js @@ -1 +1 @@ -Search.setIndex({objects:{"":{"/#account_id/members/#member_id/groups/remove":[8,1,1,"put--#account_id-members-#member_id-groups-remove"],"/#account_id/mailings/#mailing_id/winner/#winner_id":[9,2,1,"post--#account_id-mailings-#mailing_id-winner-#winner_id"],"/#account_id/response/#mailing_id/in_progress":[5,0,1,"get--#account_id-response-#mailing_id-in_progress"],"/#account_id/members/groups/remove":[8,1,1,"put--#account_id-members-groups-remove"],"/#account_id/mailings/#mailing_id/searches":[9,0,1,"get--#account_id-mailings-#mailing_id-searches"],"/#account_id/fields":[10,2,1,"post--#account_id-fields"],"/#account_id/members/#group_id/copy":[8,1,1,"put--#account_id-members-#group_id-copy"],"/#account_id/members/status":[8,1,1,"put--#account_id-members-status"],"/#account_id/response/#mailing_id/shares/overview":[5,0,1,"get--#account_id-response-#mailing_id-shares-overview"],"/#account_id/webhooks/events":[4,0,1,"get--#account_id-webhooks-events"],"/#account_id/members/#member_id/optout":[8,0,1,"get--#account_id-members-#member_id-optout"],"/#account_id/webhooks":[4,3,1,"delete--#account_id-webhooks"],"/#account_id/fields/#field_id":[10,3,1,"delete--#account_id-fields-#field_id"],"/#account_id/response/#mailing_id":[5,0,1,"get--#account_id-response-#mailing_id"],"/#account_id/groups/#member_group_id/members/remove":[13,3,1,"delete--#account_id-groups-#member_group_id-members-remove"],"/#account_id/searches":[7,2,1,"post--#account_id-searches"],"/#account_id/members/imports":[8,0,1,"get--#account_id-members-imports"],"/#account_id/forwards/#mailing_id/#member_id":[9,2,1,"post--#account_id-forwards-#mailing_id-#member_id"],"/#account_id/response/#mailing_id/customer_share_clicks":[5,0,1,"get--#account_id-response-#mailing_id-customer_share_clicks"],"/#account_id/mailings/#mailing_id/messages/#member_id":[9,0,1,"get--#account_id-mailings-#mailing_id-messages-#member_id"],"/#account_id/members/#member_id/mailings":[8,0,1,"get--#account_id-members-#member_id-mailings"],"/#account_id/groups/#from_group_id/#to_group_id/members/copy":[13,1,1,"put--#account_id-groups-#from_group_id-#to_group_id-members-copy"],"/#account_id/triggers":[14,2,1,"post--#account_id-triggers"],"/#account_id/triggers/#trigger_id":[14,3,1,"delete--#account_id-triggers-#trigger_id"],"/#account_id/members/delete":[8,1,1,"put--#account_id-members-delete"],"/#account_id/mailings/#mailing_id/groups":[9,0,1,"get--#account_id-mailings-#mailing_id-groups"],"/#account_id/response/#mailing_id/forwards":[5,0,1,"get--#account_id-response-#mailing_id-forwards"],"/#account_id/members/#member_id":[8,3,1,"delete--#account_id-members-#member_id"],"/#account_id/triggers/#trigger_id/mailings":[14,0,1,"get--#account_id-triggers-#trigger_id-mailings"],"/#account_id/searches/#search_id/members":[7,0,1,"get--#account_id-searches-#search_id-members"],"/#account_id/members/status/:status_from/to/:status_to":[8,1,1,"put--#account_id-members-status--status_from-to--status_to"],"/#account_id/response/#mailing_id/sends":[5,0,1,"get--#account_id-response-#mailing_id-sends"],"/#account_id/members":[8,3,1,"delete--#account_id-members"],"/#account_id/members/email/:email":[8,0,1,"get--#account_id-members-email--email"],"/#account_id/response/#mailing_id/links":[5,0,1,"get--#account_id-response-#mailing_id-links"],"/#account_id/searches/#search_id":[7,3,1,"delete--#account_id-searches-#search_id"],"/#account_id/members/imports/#import_id/members":[8,0,1,"get--#account_id-members-imports-#import_id-members"],"/#account_id/fields/#field_id/clear":[10,2,1,"post--#account_id-fields-#field_id-clear"],"/#account_id/groups/#member_group_id/members":[13,3,1,"delete--#account_id-groups-#member_group_id-members"],"/#account_id/members/imports/#import_id":[8,0,1,"get--#account_id-members-imports-#import_id"],"/#account_id/response":[5,0,1,"get--#account_id-response"],"/#account_id/response/#mailing_id/opens":[5,0,1,"get--#account_id-response-#mailing_id-opens"],"/#account_id/members/imports/delete":[8,3,1,"delete--#account_id-members-imports-delete"],"/#account_id/mailings":[9,0,1,"get--#account_id-mailings"],"/#account_id/mailings/cancel/#mailing_id":[9,3,1,"delete--#account_id-mailings-cancel-#mailing_id"],"/#account_id/mailings/validate":[9,2,1,"post--#account_id-mailings-validate"],"/#account_id/response/#mailing_id/deliveries":[5,0,1,"get--#account_id-response-#mailing_id-deliveries"],"/#account_id/mailings/#mailing_id/members":[9,0,1,"get--#account_id-mailings-#mailing_id-members"],"/#account_id/response/#share_id/customer_share":[5,0,1,"get--#account_id-response-#share_id-customer_share"],"/#account_id/webhooks/#webhook_id":[4,3,1,"delete--#account_id-webhooks-#webhook_id"],"/#account_id/members/add":[8,2,1,"post--#account_id-members-add"],"/#account_id/members/email/optout/:email":[8,1,1,"put--#account_id-members-email-optout--email"],"/#account_id/response/#mailing_id/optouts":[5,0,1,"get--#account_id-response-#mailing_id-optouts"],"/#account_id/response/#mailing_id/shares":[5,0,1,"get--#account_id-response-#mailing_id-shares"],"/#account_id/groups/#member_group_id":[13,3,1,"delete--#account_id-groups-#member_group_id"],"/#account_id/mailings/#mailing_id":[9,3,1,"delete--#account_id-mailings-#mailing_id"],"/#account_id/members/#member_id/groups":[8,3,1,"delete--#account_id-members-#member_id-groups"],"/#account_id/groups":[13,2,1,"post--#account_id-groups"],"/#account_id/response/#mailing_id/clicks":[5,0,1,"get--#account_id-response-#mailing_id-clicks"],"/#account_id/mailings/#mailing_id/headsup":[9,0,1,"get--#account_id-mailings-#mailing_id-headsup"],"/#account_id/response/#mailing_id/signups":[5,0,1,"get--#account_id-response-#mailing_id-signups"],"/#account_id/response/#mailing_id/customer_shares":[5,0,1,"get--#account_id-response-#mailing_id-customer_shares"]}},terms:{all:[0,1,4,5,8,9,10,11,12,13,14],code:[0,1,6,3],change_typ:8,queri:[0,2,4],month:[0,5,9,14],four:[0,5],mile:0,least:0,follow:[0,1,4,5,7,9,11,13],link_target:[5,9],content:[1,11,6,9,3],privat:1,specif:[8,9,4],friendli:5,send:[1,9,4,3,5],program:1,customer_share_click:5,those:[1,12,5],group_upd:[12,4],sent:[5,8,12,9,14],curl_clos:[1,6,3],brown:[7,8],digit:5,everi:0,string:[0,4,5,7,8,9,10,12,13,14],fals:[1,3,4,5,6,7,8,9,10,13,14],webhook:[1,12,4],mailing_status:9,trigger_id:14,webview_share_click:5,affect:[7,8],member_add:[12,4],create_mail:9,new_boolean:10,foo:0,level:1,group_delet:[12,4],list:[0,1,2,4,5,7,8,9,10,11,12,13,14],upload:8,iter:2,"try":8,item:2,plaintext_onli:[9,14],div:[4,5,7,8,9,10,13,14],survey_id:14,setup:1,pleas:[1,8,11,9],prevent:2,work:[1,4],ten:0,sync:10,sign:[0,5,4],past:1,second:[0,7,14],field_creat:[12,4],further:1,shortcut_nam:10,click:[0,4,5,7,8,12,14],append:2,even:10,what:1,hide:[4,5,7,8,9,10,13,14],appear:[1,8],from_group_id:13,section:1,current:[1,8,12,9],delet:[1,4,7,8,9,10,12,13,14],"new":[1,4,5,7,8,9,10,11,13,14],net:[1,2,6,3],delivery_t:8,method:[5,8,13,4,9],can:[0,1,2,4,5,7,8,9,11,12,13],widget:[7,10,8,9,13],full:1,hash:0,datematch:0,displai:10,variat:9,gener:[0,8,12,14],onli:[5,8],here:[0,1,3,5,6,8],bodi:9,let:[1,4,10],address:[0,1,8,6,9],along:8,sinc:8,valu:[0,5,7,8,10,11],field_upd:[12,4],search:[0,1,8,9,7],survei:14,sender:[9,14],larger:2,queue:5,prior:9,action:[0,8],chang:[8,4],campaign:5,newbi:5,appli:[7,14],prefer:0,young:1,myemma:[4,5,7,8,9,13],filenam:8,customer_shar:5,"boolean":[0,1,5,7,8,9,10,13,14],curlopt_postfield:[1,3],total:5,jone:[7,5,8,13],select:[1,10],newslett:[7,8,13],describ:7,would:[0,1],commun:1,regist:4,two:[0,5],coverag:1,next:[0,1],create_webhook:4,few:[5,8],call:[1,2,3,4,6,8,12],criteria:7,member_add_to_group:[12,4],type:[1,3,4,5,6,7,10,9,14],until:2,more:[0,4,7,8,9,13],peopl:5,relat:[1,8,11,9],about:[10,8,12,4,9],notic:8,thide:[4,5,7,8,9,10,13,14],flag:[5,7,8,10,9,14],exce:2,indic:8,examin:1,particular:[1,4,5,8,10,12,9],in_progress:5,origin:9,must:[0,7,13,10],none:9,endpoint:[1,4,5,7,8,9,10,13,14],join:[0,7],hour:0,der:1,member_sinc:[0,5,7,8,9,13],uniqu:5,histori:8,soup:7,remain:[0,9],archiv:[5,9],member_optout:[12,4],drill:5,control:[1,11,9],quickstart:1,give:5,forward_mailing_id:5,email_domain:[0,5],share:[0,5,8,12,4],accept:[0,5,7,8,9,10,11,13,14],total_click:5,tag:[11,9],want:[1,12,13,5],occur:[7,12],some_numeric_field:0,delai:14,alwai:0,webhook_event_id:4,cours:1,multipl:[10,8],first_nam:[1,3,5,7,8,9,10,11,13,14],started_or_finish:[9,14],anoth:[9,13],get:[1,4,5,6,7,8,9,10,13,14],message_open:[12,4],html_bodi:[9,14],share_statu:5,push_offset:14,del_statu:5,tild:5,num_members_upd:8,simpl:0,chri:9,pizza:[7,8],map:0,autent:1,referenc:7,xxxx:6,sundai:0,jacqu:1,membership:13,taco:[7,5,8,9,13],mai:12,end:[2,8],associ:[1,8,9,4,5],grow:1,welcom:11,add_onli:8,"short":0,json_encod:[1,3],optout:[5,8,12,13],num_dupl:8,favorit:10,correspond:[0,1],greet:11,predic:[0,1],issu:[1,10],"12t11":[7,5,8,9,13],combin:7,allow:[0,7,8],some_zipcode_field:0,signed_up:5,order:[5,10],michel:[8,9],mailing_nam:5,checkbox:10,fields_upd:8,over:2,soon:1,buyer:[7,8,9,13],comma:[9,13],is_dis:14,vari:8,paramet:[2,4,5,7,8,9,10,13,14],widget_typ:10,style:[0,4,5,7,8,9,10,13,14],group:[0,1,3,4,7,8,9,12,13,14],curl_setopt:[1,6,3],how:[7,1,2,4],fix:1,import_start:8,better:[13,14],platform:1,pend:[1,9],mailing_list:9,onc:9,mail:[0,1,4,5,8,11,12,9,14],hidden:13,main:1,might:[1,4],link_nam:[5,9],them:[8,9],messag:[4,5,8,12,11,9,14],"return":[0,1,4,5,7,8,9,10,12,13,14],greater:[0,8],thei:[0,9],food:10,timestamp:[0,5,12,9,10],spell:4,nashvil:1,dai:0,auth:1,framework:1,instead:[12,2,8],now:5,down:5,term:[0,1],alex:9,name:[0,4,5,7,8,9,10,11,13,14],edit:[7,1,14,10],curl_getinfo:[1,6,3],authent:[1,6,4,3],successufulli:4,separ:[1,9,13],each:[1,2,5,9,12,11,13],found:[8,9,4,14],updat:[4,7,8,9,10,12,13,14],denni:1,status:[8,9],domain:0,weight:[4,5,7,8,9,10,13,14],resum:9,individu:[5,8],hard:[0,5],last_nam:[1,3,5,7,8,9,10,11,13,14],"05t15":5,birthdai:[10,14],connect:[1,6,3],doug:1,our:[1,11,12,4,14],happen:[1,4,5],commiss:1,short_display_nam:10,special:[0,7,8,13],out:[0,1,4,5,7,8,10,13],variabl:[1,6,3],message_shar:[12,4],network:[5,12],private_api_kei:[1,6,3],check_multipl:10,categori:1,rel:0,print:6,correct:10,integr:1,benjamin:[1,8],qualifi:11,insid:1,advanc:0,contain:[0,5,7,13,10,9],given:[0,8,9,4],standard:[5,9],status_from:8,base:[5,8],recipient_search:9,dictionari:8,put:[4,7,8,9,10,13,14],span:[4,5,7,8,9,10,13,14],"13t23":[7,5,8],refer:[5,7,8,13,10,9],visit:11,could:1,omit:5,success:[1,3,7,8,9,13],filter:[0,1,7],search_id:7,pagin:[1,2],member_id:[5,7,8,9,12,13],summari:[1,5],assign:9,first:[0,1,10,5],oper:[0,1,7,14],rang:5,notifi:12,directli:0,curlopt_ssl_verifyp:[1,6,3],curl_init:[1,6,3],number:[5,2,13,3,10],placehold:[1,11],date:[0,5,8,10,11,14],unlik:9,alreadi:[10,8,9,13],done:8,plaintext_pref:[7,8,9,13],oppos:8,open:[0,3,4,5,6,7,8,12],payload:4,fanci:5,size:2,differ:0,"long":10,script:1,data:[1,3,4,5,10,12],system:[8,12,4,14],wrapper:1,attach:11,easier:12,friend:11,curlinfo_http_cod:[1,6,3],shell:0,option:[0,5,7,8,9,10,13,14],especi:8,signup:[0,1,3,4,5,8,12,14],copi:[8,13],member_upd:[12,4],specifi:[0,2,7,8,10,11,9,14],curl_exec:[1,6,3],curlopt_httphead:[1,6,3],member_signup:[12,4],create_search:7,part:[0,9],enclos:11,than:[0,1,2,3,12,13],with_plaintext:9,"02t10":[5,8],"02t11":[5,8],"02t13":5,nathan:8,whenev:8,provid:[1,5,8,12,9,14],remov:[12,8,13,4],mailing_start:4,rate:2,structur:7,charact:9,greg:8,trackabl:11,were:5,minut:0,danc:1,error_count:[7,8,9,13],pre:[4,5,7,8,9,10,13,14],cleaner:1,sai:0,share_id:5,signup_form_id:[0,8,12,9,14],plaintext:[5,9,14],pass:[1,3],ani:[0,1,2,7,8,9],have:[0,1,5,8,12,9],tabl:5,need:1,seen:5,"null":[7,8,13,10,9,14],kevin:[9,14],signup_mail:0,caus:14,built:1,inform:[1,4,6,8,9,10,13],object_id:14,note:[1,8,9,4],also:[0,4,5,7,8,9,11,13],exampl:[0,1,3,5,6,7,11],take:[0,4],which:[0,1,4,8,10,12,9,14],some_number_field:0,singl:[0,1,3,4,5,8,10,12,13],excit:11,sure:1,delete_memb:13,normal:9,parent_mail:14,recipient_count:[5,9,14],previou:9,field_id:[10,12,14],last_run_at:7,most:14,pair:11,"class":[4,5,7,8,9,10,13,14],don:1,member_group_id:[8,9,13],mcconnel:[9,14],url:[1,3,4,5,6,12],mailing_finish:[12,4],clear:10,request:[1,2,3],doe:[0,5,7,8,9,10,13],member_status_upd:[12,4],declar:9,tech:4,determin:1,dataset:10,dow:0,recipi:9,"6db0cc7e6fdb2da589b65f29d90c96b6":9,show:[4,5,7,8,9,10,11,13,14],text:[10,11,12],radiu:0,syntax:[0,1,11,9],radio:10,font:[4,5,7,8,9,10,13,14],fine:9,find:[1,6,5],status_to:8,toast:[7,5,8,13],access:[1,5],giant:12,just:[0,1,9],pretti:8,column_ord:10,explain:[0,1],winner:9,activ:[1,5,7,8,13,9],figur:1,should:[1,2,3,7,8,11,9],templat:[11,14],share_count:5,count:[1,2,3,5],variou:[8,13],confirmed_opt_in:[7,8,9,13],familiar:1,express:0,account:[1,4,5,7,8,10,13,14],becaus:12,repo:1,cannot:[8,9,4],progress:9,report:[10,8],requir:[1,7,8,10,11,9],object:[1,13,5],favorite_food:[5,7,8,13,10,9],bar:0,organ:1,include_archiv:[5,9],"public":1,"default":[5,11,13,4,9],ref_member_id:5,message_share_click:[12,4],through:[1,8,4],where:[0,1,8,11,7],view:1,user:[0,8,9,13],set:[0,1,2,3,6,8,9,12,13],link_id:[0,5,12,9,14],see:[7,1,8],result:[0,1,2,5,8,9],respons:[0,1,2,4,5,7,8,9,10,13,14],fail:[5,9,4],themselv:2,member_field:[0,7],xxxxx:6,subject:[8,12,9,14],statu:[1,4,5,7,8,9,12,13],fancyonion:11,kei:[0,1,8,11,4],is_schedul:9,message_forward:[12,4],databas:8,someth:1,last_modified_at:[7,8,9,13],addresse:5,written:1,between:[0,7,2],clicked_uniqu:5,"import":[1,8,12,4,10],subscript:[1,3],entiti:1,curlopt_url:[1,6,3],email:[0,1,3,5,6,7,8,9,13],wide:14,extend:1,numer:10,http404:[4,5,7,8,9,10,13,14],job:13,entir:[0,8],share_click:5,to_group_id:13,come:1,curlopt_returntransf:[1,6,3],addit:[0,1,8,9,11,13],member_remove_from_group:[12,4],send_start:[0,9,14],protect:1,accident:2,last:[0,5,10],delimit:5,lentil:7,"12t09":[7,8],pertain:5,message_click:[12,4],curlopt_post:[1,3],audienc:[1,8,9],mang:0,improv:1,http500:14,seri:5,com:[4,5,6,7,8,9,11,13],zip_code_field:0,"03t15":[7,5,8,13],point:1,toni:[7,8],overview:[0,1,11,12,5],period:1,winner_id:9,colon:[7,11],optout_count:[7,8,9,13],suppli:9,cancel:9,tuesdai:0,duplic:5,quit:[5,8],user_id:4,recur:14,headsup:9,addition:[1,2],due:5,been:[1,8,10,5],mark:[8,9],whom:9,tshow:[4,5,7,8,9,10,13,14],trigger:[1,4,5,7,8,9,10,12,13,14],unsubscrib:0,treat:8,interest:[10,4],basic:[0,1,4,8,13,14],monthli:[7,8,13],hesit:1,blob:4,email_us:[0,5],mailing_mailing_id:5,mailing_id:[0,5,8,12,9,14],fire:[8,4,14],xxx:[1,3],rubi:1,argument:[0,5],link_ord:[5,9],input:1,extract:11,present:7,statist:8,"case":[1,8],look:[1,14,10],frozen:9,durat:9,email_error:[7,8,9,13],defin:[0,10,8,9],"while":0,smith:[7,5,8,9,13],outcom:5,abov:[0,1,8,7],error:[1,3,6,8,10,13],veen:1,loop:8,opt:[0,4,5,7,8,13],readi:9,deliv:5,recipient_group:9,equal:0,itself:0,new_statu:12,webhook_id:4,develop:1,recipient_memb:9,perform:8,make:[1,12,6,10],belong:[0,8,4],same:4,check:[8,6,9],member:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14],python:1,html:9,split:9,document:[1,11,12],complet:[1,3,4,6,8,9],week:0,finish:[5,12,4],http:[1,2,3,4,5,6,11,9],href:[4,5,7,8,9,10,13,14],nest:0,someon:4,rais:[4,5,7,8,9,10,13,14],initi:[10,9],php:[1,6,3],studi:1,recent:[1,8],kept:11,center:0,min:5,well:[1,5],inherit:9,person:9,mailing_typ:[9,14],without:[0,1],command:1,thi:[0,1,4,5,7,8,9,10,12,13,14],undefin:0,http_code:[1,6,3],latest:11,construct:[0,7,9],identifi:8,paus:9,execut:[1,3],less:0,resp:[4,5,7,8,9,10,13,14],"_post":[1,3],against:0,aspect:13,recipient_email:9,source_filenam:8,yet:5,languag:1,"04t11":[7,14],display_nam:10,easi:[1,12,10],"01t00":8,had:0,littl:1,blog:4,add:[12,1,8,13,3],other:[1,8,9,3,5],curlopt_userpwd:[1,6,3],import_finish:[8,12,4],schedul:9,els:[1,6,3],save:7,match:[0,7],build:1,sanit:1,applic:[1,6,3],account_id:[1,3,4,5,6,7,8,9,10,12,13,14],handl:1,disposit:1,crud:[8,13,14],print_r:[6,3],mailing_statu:[9,14],know:[1,4,5],background:13,parent_mailing_id:[9,14],bit:1,insert:11,emma:[1,5,7,8,9,12,13],like:1,onion:11,deprec:4,arbitrari:8,manual:9,integ:[1,8,14,10,5],collect:1,api:[1,2,3,6,8,12],either:[0,5,7],bunch:0,output:9,group_id:[1,8,12,3],soft:[0,5],manag:[0,1,13,4],import_id:[8,12],www:[5,9],old:7,deal:[8,13],captur:1,arrai:[0,1,3,5,6,7,8,9,10,12,13,14],some:[1,11,5],field_delet:[12,4],certain:12,intern:10,sampl:[1,4,5,7,8,9,10,13,14],elaps:[2,9],unless:1,deleted_at:[7,8,13,10,9,14],some_string_field:0,librari:11,woodcock:1,emmarubi:1,bounce_count:[7,8,9,13],emmapython:1,public_kei:4,deliveri:5,broad:12,per:5,send_finish:[9,14],larg:[0,2],condit:7,three:9,network_cod:12,localhost:9,emmaphp:1,with_html_bodi:9,who:[0,5,8],bold:[4,5,7,8,9,10,13,14],event_typ:14,inspect:1,usag:[1,8,12],monsewicz:1,num_members_ad:8,fulli:11,from:[1,4,8,9,12,13,14],post:[1,3,4,7,8,9,10,12,13,14],group_creat:[12,4],gladi:[7,5,8,13],hurst:1,actual:5,zip:0,groups_upd:8,column:10,page:2,includ:[1,5,7,8,9,10,13],webview:9,mean:0,disabl:[9,14],block:[1,2],yyyi:5,own:1,member_data:[1,3],glob:0,bounc:[0,5],within:[0,8],encod:[9,4],delivery_typ:[5,8],compos:0,webview_shar:5,field_typ:10,active_count:[7,8,9,13],public_webview_url:9,pivot:5,your:[1,4,5,7,8,9,10,13],websit:11,fast:8,van:1,wai:[1,12],area:1,overus:2,group_nam:[8,12,13,9],support:12,unique_click:5,json:[0,1,3,4,6,7],submit:1,custom:[5,8,11,10],avail:[0,11,4],start:[1,2,8,4],interfac:12,send_at:[9,14],exceed:2,"var":3,interv:[0,14],fork:1,head:[1,6,9,3],form:[1,3,4,6,8,10,14],enough:2,forc:1,forward:[0,4,5,8,12,9],"31st":0,group_typ:[8,9,13],push_offset_unit:14,link:[0,4,5,11,9,14],line:[1,5],realli:1,"true":[0,1,2,3,4,6,7,8,9,10,13,14],archived_t:[9,14],info:4,pull:[1,2],made:1,possibl:[5,8,12],whether:8,maximum:2,tell:12,http403:9,record:[0,7,8],below:[0,1,8,12],http400:[7,8,9],limit:[5,2,8,9],some_array_field:0,otherwis:[1,8,10],start_t:14,mta:5,expect:1,notif:9,creat:[4,5,7,9,10,12,13,14],"int":5,retriev:[7,1,2,8,9],year:[0,5,9,14],repres:5,exist:[0,4,5,7,8,10,13],behavior:11,bob:[7,5],curl:[1,6],portland:1,probabl:14,echo:[1,3],successfulli:[5,8,9],mailing_subject:12,grp:13,todo:11,when:[8,12,4,9],detail:[1,4,7,8,9,10,13],invalid:[7,8,9],event:[4,7,8,13,12,9,14],field:[0,1,3,4,5,7,8,9,10,11,12,13,14],valid:[5,8,9,13],futur:1,num_skip:8,test:[5,6,7,13,9,14],ignor:8,you:[0,1,2,4,5,7,8,9,10,11,12,13],member_delet:[12,4],member_status_id:[7,5,8,9,13],public_api_kei:[1,6,3],stat:[5,9],claus:[0,7],event_nam:[12,4],e2ma:[1,2,6,3],error_messag:8,param:[9,4],app_messag:[1,3],ella:8,bulk:[1,8],receiv:[0,2,5,8,12,9],heads_up_email:9,longer:9,home:11,confirm:8,descript:[4,14],ohmyemma:1,portion:0,opted_out:5,time:[1,2,8,13,5],reply_to:[9,14],resource_url:12,hello:[11,9,14]},objtypes:{"0":"http:get","1":"http:put","2":"http:post","3":"http:delete"},titles:["Search Syntax","Emma API","Pagination","PHP Signup Example","Webhooks","Response","PHP Get Member By Email Example","Searches","Members","Mailings","Fields","Placeholder Syntax","Webhook Usage","Groups","Triggers"],objnames:{"0":["http","get","HTTP get"],"1":["http","put","HTTP put"],"2":["http","post","HTTP post"],"3":["http","delete","HTTP delete"]},filenames:["member_search","index","pagination","php_signup_example","api/external/webhooks","api/external/response","php_get_member_example","api/external/searches","api/external/members","api/external/mailings","api/external/fields","placeholders","webhooks","api/external/groups","api/external/triggers"]}) \ No newline at end of file +Search.setIndex({objects:{"":{"/#account_id/members/#member_id/groups/remove":[8,1,1,"put--#account_id-members-#member_id-groups-remove"],"/#account_id/mailings/#mailing_id/winner/#winner_id":[9,2,1,"post--#account_id-mailings-#mailing_id-winner-#winner_id"],"/#account_id/response/#mailing_id/in_progress":[5,0,1,"get--#account_id-response-#mailing_id-in_progress"],"/#account_id/members/groups/remove":[8,1,1,"put--#account_id-members-groups-remove"],"/#account_id/mailings/#mailing_id/searches":[9,0,1,"get--#account_id-mailings-#mailing_id-searches"],"/#account_id/fields":[10,2,1,"post--#account_id-fields"],"/#account_id/members/#group_id/copy":[8,1,1,"put--#account_id-members-#group_id-copy"],"/#account_id/members/status":[8,1,1,"put--#account_id-members-status"],"/#account_id/response/#mailing_id/shares/overview":[5,0,1,"get--#account_id-response-#mailing_id-shares-overview"],"/#account_id/webhooks/events":[4,0,1,"get--#account_id-webhooks-events"],"/#account_id/members/#member_id/optout":[8,0,1,"get--#account_id-members-#member_id-optout"],"/#account_id/webhooks":[4,3,1,"delete--#account_id-webhooks"],"/#account_id/fields/#field_id":[10,3,1,"delete--#account_id-fields-#field_id"],"/#account_id/response/#mailing_id":[5,0,1,"get--#account_id-response-#mailing_id"],"/#account_id/groups/#member_group_id/members/remove":[13,3,1,"delete--#account_id-groups-#member_group_id-members-remove"],"/#account_id/searches":[7,2,1,"post--#account_id-searches"],"/#account_id/members/imports":[8,0,1,"get--#account_id-members-imports"],"/#account_id/forwards/#mailing_id/#member_id":[9,2,1,"post--#account_id-forwards-#mailing_id-#member_id"],"/#account_id/response/#mailing_id/customer_share_clicks":[5,0,1,"get--#account_id-response-#mailing_id-customer_share_clicks"],"/#account_id/mailings/#mailing_id/messages/#member_id":[9,0,1,"get--#account_id-mailings-#mailing_id-messages-#member_id"],"/#account_id/members/#member_id/mailings":[8,0,1,"get--#account_id-members-#member_id-mailings"],"/#account_id/groups/#from_group_id/#to_group_id/members/copy":[13,1,1,"put--#account_id-groups-#from_group_id-#to_group_id-members-copy"],"/#account_id/triggers":[14,2,1,"post--#account_id-triggers"],"/#account_id/triggers/#trigger_id":[14,3,1,"delete--#account_id-triggers-#trigger_id"],"/#account_id/members/delete":[8,1,1,"put--#account_id-members-delete"],"/#account_id/mailings/#mailing_id/groups":[9,0,1,"get--#account_id-mailings-#mailing_id-groups"],"/#account_id/response/#mailing_id/forwards":[5,0,1,"get--#account_id-response-#mailing_id-forwards"],"/#account_id/members/#member_id":[8,3,1,"delete--#account_id-members-#member_id"],"/#account_id/triggers/#trigger_id/mailings":[14,0,1,"get--#account_id-triggers-#trigger_id-mailings"],"/#account_id/searches/#search_id/members":[7,0,1,"get--#account_id-searches-#search_id-members"],"/#account_id/members/status/:status_from/to/:status_to":[8,1,1,"put--#account_id-members-status--status_from-to--status_to"],"/#account_id/response/#mailing_id/sends":[5,0,1,"get--#account_id-response-#mailing_id-sends"],"/#account_id/members":[8,3,1,"delete--#account_id-members"],"/#account_id/members/email/:email":[8,0,1,"get--#account_id-members-email--email"],"/#account_id/response/#mailing_id/links":[5,0,1,"get--#account_id-response-#mailing_id-links"],"/#account_id/searches/#search_id":[7,3,1,"delete--#account_id-searches-#search_id"],"/#account_id/members/imports/#import_id/members":[8,0,1,"get--#account_id-members-imports-#import_id-members"],"/#account_id/fields/#field_id/clear":[10,2,1,"post--#account_id-fields-#field_id-clear"],"/#account_id/groups/#member_group_id/members":[13,3,1,"delete--#account_id-groups-#member_group_id-members"],"/#account_id/members/imports/#import_id":[8,0,1,"get--#account_id-members-imports-#import_id"],"/#account_id/response":[5,0,1,"get--#account_id-response"],"/#account_id/response/#mailing_id/opens":[5,0,1,"get--#account_id-response-#mailing_id-opens"],"/#account_id/members/imports/delete":[8,3,1,"delete--#account_id-members-imports-delete"],"/#account_id/mailings":[9,0,1,"get--#account_id-mailings"],"/#account_id/mailings/cancel/#mailing_id":[9,3,1,"delete--#account_id-mailings-cancel-#mailing_id"],"/#account_id/mailings/validate":[9,2,1,"post--#account_id-mailings-validate"],"/#account_id/response/#mailing_id/deliveries":[5,0,1,"get--#account_id-response-#mailing_id-deliveries"],"/#account_id/mailings/#mailing_id/members":[9,0,1,"get--#account_id-mailings-#mailing_id-members"],"/#account_id/response/#share_id/customer_share":[5,0,1,"get--#account_id-response-#share_id-customer_share"],"/#account_id/webhooks/#webhook_id":[4,3,1,"delete--#account_id-webhooks-#webhook_id"],"/#account_id/members/add":[8,2,1,"post--#account_id-members-add"],"/#account_id/members/email/optout/:email":[8,1,1,"put--#account_id-members-email-optout--email"],"/#account_id/response/#mailing_id/optouts":[5,0,1,"get--#account_id-response-#mailing_id-optouts"],"/#account_id/response/#mailing_id/shares":[5,0,1,"get--#account_id-response-#mailing_id-shares"],"/#account_id/groups/#member_group_id":[13,3,1,"delete--#account_id-groups-#member_group_id"],"/#account_id/mailings/#mailing_id":[9,3,1,"delete--#account_id-mailings-#mailing_id"],"/#account_id/members/#member_id/groups":[8,3,1,"delete--#account_id-members-#member_id-groups"],"/#account_id/groups":[13,2,1,"post--#account_id-groups"],"/#account_id/response/#mailing_id/clicks":[5,0,1,"get--#account_id-response-#mailing_id-clicks"],"/#account_id/mailings/#mailing_id/headsup":[9,0,1,"get--#account_id-mailings-#mailing_id-headsup"],"/#account_id/response/#mailing_id/signups":[5,0,1,"get--#account_id-response-#mailing_id-signups"],"/#account_id/response/#mailing_id/customer_shares":[5,0,1,"get--#account_id-response-#mailing_id-customer_shares"]}},terms:{all:[0,1,4,5,8,9,10,11,12,13,14],code:[0,1,6,3],change_typ:8,queri:[0,2,4],month:[0,5,9,14],four:[0,5],mile:0,least:0,follow:[0,1,4,5,7,9,11,13],link_target:[5,9],content:[1,11,6,9,3],privat:1,specif:[8,9,4],friendli:5,send:[1,9,4,3,5],program:1,customer_share_click:5,those:[1,12,5],group_upd:[12,4],sent:[5,8,12,9,14],curl_clos:[1,6,3],brown:[7,8],digit:5,everi:0,string:[0,4,5,7,8,9,10,12,13,14],fals:[1,3,4,5,6,7,8,9,10,13,14],webhook:[1,12,4],mailing_status:9,trigger_id:14,webview_share_click:5,affect:[7,8],member_add:[12,4],create_mail:9,new_boolean:10,foo:0,level:1,group_delet:[12,4],list:[0,1,2,4,5,7,8,9,10,11,12,13,14],upload:8,iter:2,"try":8,item:2,plaintext_onli:[9,14],div:[4,5,7,8,9,10,13,14],survey_id:14,setup:1,pleas:[1,8,11,9],prevent:2,work:[1,4],ten:0,sync:10,sign:[0,5,4],past:1,second:[0,7,14],field_creat:[12,4],further:1,shortcut_nam:10,click:[0,4,5,7,8,12,14],append:2,even:10,what:1,hide:[4,5,7,8,9,10,13,14],appear:[1,8],from_group_id:13,section:1,current:[1,8,12,9],delet:[1,4,7,8,9,10,12,13,14],"new":[1,4,5,7,8,9,10,11,13,14],net:[1,2,6,3],delivery_t:8,method:[5,8,13,4,9],can:[0,1,2,4,5,7,8,9,11,12,13],widget:[7,10,8,9,13],full:1,hash:0,datematch:0,displai:10,variat:9,gener:[0,8,12,14],onli:[5,8],here:[0,1,3,5,6,8],bodi:9,let:[1,4,10],address:[0,1,8,6,9],along:8,sinc:8,valu:[0,5,7,8,10,11],field_upd:[12,4],search:[0,1,8,9,7],survei:14,sender:[9,14],larger:2,queue:5,prior:9,action:[0,8],chang:[8,4],campaign:5,newbi:5,appli:[7,14],prefer:0,young:1,myemma:[4,5,7,8,9,13],filenam:8,customer_shar:5,"boolean":[0,1,5,7,8,9,10,13,14],curlopt_postfield:[1,3],total:5,jone:[7,5,8,13],select:[1,10],newslett:[7,8,13],describ:7,would:[0,1],commun:1,regist:4,two:[0,5],coverag:1,next:[0,1],create_webhook:4,few:[5,8],call:[1,2,3,4,6,8,12],criteria:7,member_add_to_group:[12,4],type:[1,3,4,5,6,7,10,9,14],until:2,more:[0,4,7,8,9,13],peopl:5,relat:[1,8,11,9],about:[10,8,12,4,9],notic:8,thide:[4,5,7,8,9,10,13,14],flag:[5,7,8,10,9,14],exce:2,indic:8,examin:1,particular:[1,4,5,8,10,12,9],in_progress:5,origin:9,must:[0,7,13,10],none:9,endpoint:[1,4,5,7,8,9,10,13,14],join:[0,7],hour:0,der:1,member_sinc:[0,5,7,8,9,13],uniqu:5,histori:8,soup:7,remain:[0,9],archiv:[5,9],member_optout:[12,4],drill:5,control:[1,11,9],quickstart:1,give:5,forward_mailing_id:5,email_domain:[0,5],share:[0,5,8,12,4],accept:[0,5,7,8,9,10,11,13,14],total_click:5,tag:[11,9],want:[1,12,13,5],occur:[7,12],some_numeric_field:0,delai:14,alwai:0,webhook_event_id:4,cours:1,multipl:[10,8],first_nam:[1,3,5,7,8,9,10,11,13,14],started_or_finish:[9,14],anoth:[9,13],get:[1,4,5,6,7,8,9,10,13,14],message_open:[12,4],html_bodi:[9,14],share_statu:5,push_offset:14,del_statu:5,tild:5,num_members_upd:8,simpl:0,chri:9,pizza:[7,8],map:0,autent:1,referenc:7,xxxx:6,sundai:0,jacqu:1,membership:13,taco:[7,5,8,9,13],mai:12,end:[2,8],associ:[1,8,9,4,5],grow:1,welcom:11,add_onli:8,"short":0,json_encod:[1,3],optout:[5,8,12,13],num_dupl:8,favorit:10,correspond:[0,1],greet:11,predic:[0,1],issu:[1,10],"12t11":[7,5,8,9,13],combin:7,allow:[0,7,8],some_zipcode_field:0,signed_up:5,order:[5,10],michel:[8,9],mailing_nam:5,checkbox:10,fields_upd:8,over:2,soon:1,buyer:[7,8,9,13],comma:[9,13],is_dis:14,vari:8,paramet:[2,4,5,7,8,9,10,13,14],widget_typ:10,style:[0,4,5,7,8,9,10,13,14],group:[0,1,3,4,7,8,9,12,13,14],curl_setopt:[1,6,3],how:[7,1,2,4],fix:1,import_start:8,better:[13,14],platform:1,pend:[1,9],mailing_list:9,onc:9,mail:[0,1,4,5,8,11,12,9,14],hidden:13,main:1,might:[1,4],link_nam:[5,9],them:[8,9],messag:[4,5,8,12,11,9,14],"return":[0,1,4,5,7,8,9,10,12,13,14],greater:[0,8],thei:[0,9],food:10,timestamp:[0,5,12,9,10],spell:4,nashvil:1,dai:0,auth:1,framework:1,instead:[12,2,8],now:5,down:5,term:[0,1],alex:9,name:[0,4,5,7,8,9,10,11,13,14],edit:[7,1,14,10],curl_getinfo:[1,6,3],authent:[1,6,4,3],successufulli:4,separ:[1,9,13],each:[1,2,5,9,12,11,13],found:[8,9,4,14],updat:[4,7,8,9,10,12,13,14],denni:1,status:[8,9],domain:0,weight:[4,5,7,8,9,10,13,14],resum:9,individu:[5,8],hard:[0,5],last_nam:[1,3,5,7,8,9,10,11,13,14],"05t15":5,birthdai:[10,14],connect:[1,6,3],doug:1,our:[1,11,12,4,14],happen:[1,4,5],commiss:1,short_display_nam:10,special:[0,7,8,13],out:[0,1,4,5,7,8,10,13],variabl:[1,6,3],message_shar:[12,4],network:[5,12],private_api_kei:[1,6,3],check_multipl:10,categori:1,rel:0,print:6,correct:10,integr:1,benjamin:[1,8],qualifi:11,insid:1,advanc:0,contain:[0,5,7,13,10,9],given:[0,8,9,4],standard:[5,9],status_from:8,base:[5,8],recipient_search:9,dictionari:8,put:[4,7,8,9,10,13,14],span:[4,5,7,8,9,10,13,14],"13t23":[7,5,8],refer:[5,7,8,13,10,9],visit:11,could:1,omit:5,success:[1,3,7,8,9,13],filter:[0,1,7],search_id:7,pagin:[1,2],member_id:[5,7,8,9,12,13],summari:[1,5],assign:9,first:[0,1,10,5],oper:[0,1,7,14],rang:5,notifi:12,directli:0,curlopt_ssl_verifyp:[1,6,3],curl_init:[1,6,3],number:[5,2,13,3,10],placehold:[1,11],date:[0,5,8,10,11,14],unlik:9,alreadi:[10,8,9,13],done:8,plaintext_pref:[7,8,9,13],oppos:8,open:[0,3,4,5,6,7,8,12],payload:4,fanci:5,size:2,differ:0,"long":10,script:1,data:[1,3,4,5,10,12],system:[8,12,4,14],wrapper:1,attach:11,easier:12,friend:11,curlinfo_http_cod:[1,6,3],shell:0,option:[0,5,7,8,9,10,13,14],especi:8,signup:[0,1,3,4,5,8,12,14],copi:[8,13],member_upd:[12,4],specifi:[0,2,7,8,10,11,9,14],curl_exec:[1,6,3],curlopt_httphead:[1,6,3],member_signup:[12,4],create_search:7,part:[0,9],enclos:11,than:[0,1,2,3,12,13],with_plaintext:9,"02t10":[5,8],"02t11":[5,8],"02t13":5,nathan:8,whenev:8,provid:[1,5,8,12,9,14],remov:[12,8,13,4],mailing_start:4,rate:2,structur:7,charact:9,greg:8,trackabl:11,were:5,minut:0,danc:1,error_count:[7,8,9,13],pre:[4,5,7,8,9,10,13,14],cleaner:1,sai:0,share_id:5,signup_form_id:[0,8,12,9,14],plaintext:[5,9,14],pass:[1,3],ani:[0,1,2,7,8,9],have:[0,1,5,8,12,9],tabl:5,need:1,seen:5,"null":[7,8,13,10,9,14],kevin:[9,14],signup_mail:0,caus:14,built:1,inform:[1,4,6,8,9,10,13],object_id:14,note:[1,8,9,4],also:[0,4,5,7,8,9,11,13],exampl:[0,1,3,5,6,7,11],take:[0,4],which:[0,1,4,8,10,12,9,14],some_number_field:0,singl:[0,1,3,4,5,8,10,12,13],excit:11,sure:1,delete_memb:13,normal:9,parent_mail:14,recipient_count:[5,9,14],previou:9,field_id:[10,12,14],last_run_at:7,most:14,pair:11,"class":[4,5,7,8,9,10,13,14],don:1,member_group_id:[8,9,13],mcconnel:[9,14],url:[1,3,4,5,6,12],mailing_finish:[12,4],clear:10,request:[1,2,3],doe:[0,5,7,8,9,10,13],member_status_upd:[12,4],declar:9,tech:4,determin:1,dataset:10,dow:0,recipi:9,"6db0cc7e6fdb2da589b65f29d90c96b6":9,show:[4,5,7,8,9,10,11,13,14],text:[10,11,12],radiu:0,syntax:[0,1,11,9],radio:10,font:[4,5,7,8,9,10,13,14],fine:9,find:[1,6,5],status_to:8,toast:[7,5,8,13],access:[1,5],giant:12,just:[0,1,9],pretti:8,column_ord:10,explain:[0,1],winner:9,activ:[1,5,7,8,13,9],figur:1,should:[1,2,3,7,8,11,9],templat:[11,14],share_count:5,count:[1,2,3,5],variou:[8,13],confirmed_opt_in:[7,8,9,13],familiar:1,express:0,account:[1,4,5,7,8,10,13,14],becaus:12,repo:1,cannot:[8,9,4],progress:9,report:[10,8],requir:[1,7,8,10,11,9],object:[1,13,5],favorite_food:[5,7,8,13,10,9],bar:0,organ:1,include_archiv:[5,9],"public":1,"default":[5,11,13,4,9],ref_member_id:5,message_share_click:[12,4],through:[1,8,4],where:[0,1,8,11,7],view:1,user:[0,8,9,13],set:[0,1,2,3,6,8,9,12,13],link_id:[0,5,12,9,14],see:[7,1,8],result:[0,1,2,5,8,9],respons:[0,1,2,4,5,7,8,9,10,13,14],fail:[5,9,4],themselv:2,member_field:[0,7],xxxxx:6,subject:[8,12,9,14],statu:[1,4,5,7,8,9,12,13],fancyonion:11,kei:[0,1,8,11,4],is_schedul:9,message_forward:[12,4],databas:8,someth:1,last_modified_at:[7,8,9,13],addresse:5,written:1,between:[0,7,2],clicked_uniqu:5,"import":[1,8,12,4,10],subscript:[1,3],entiti:1,curlopt_url:[1,6,3],email:[0,1,3,5,6,7,8,9,13],wide:14,extend:1,numer:10,http404:[4,5,7,8,9,10,13,14],job:13,entir:[0,8],share_click:5,to_group_id:13,come:1,curlopt_returntransf:[1,6,3],addit:[0,1,8,9,11,13],member_remove_from_group:[12,4],send_start:[0,9,14],protect:1,accident:2,last:[0,5,10],delimit:5,lentil:7,"12t09":[7,8],pertain:5,message_click:[12,4],curlopt_post:[1,3],audienc:[1,8,9],mang:0,improv:1,http500:14,seri:5,com:[4,5,6,7,8,9,11,13],zip_code_field:0,"03t15":[7,5,8,13],point:1,toni:[7,8],overview:[0,1,11,12,5],period:1,winner_id:9,colon:[7,11],optout_count:[7,8,9,13],suppli:9,cancel:9,tuesdai:0,duplic:5,quit:[5,8],user_id:4,recur:14,headsup:9,addition:[1,2],due:5,been:[1,8,10,5],mark:[8,9],whom:9,tshow:[4,5,7,8,9,10,13,14],trigger:[1,4,5,7,8,9,10,12,13,14],unsubscrib:0,treat:8,interest:[10,4],basic:[0,1,4,8,13,14],monthli:[7,8,13],member_delet:[12,4],hesit:1,blob:4,email_us:[0,5],mailing_mailing_id:5,mailing_id:[0,5,8,12,9,14],fire:[8,4,14],xxx:[1,3],rubi:1,argument:[0,5],link_ord:[5,9],input:1,extract:11,present:7,statist:8,"case":[1,8],look:[1,14,10],frozen:9,durat:9,email_error:[7,8,9,13],defin:[0,10,8,9],"while":0,smith:[7,5,8,9,13],outcom:5,abov:[0,1,8,7],error:[1,3,6,8,10,13],veen:1,loop:8,opt:[0,4,5,7,8,13],readi:9,deliv:5,recipient_group:9,equal:0,itself:0,new_statu:12,webhook_id:4,develop:1,recipient_memb:9,perform:8,make:[1,12,6,10],belong:[0,8,4],same:4,check:[8,6,9],member:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14],python:1,html:9,split:9,document:[1,11,12],complet:[1,3,4,6,8,9],week:0,finish:[5,12,4],http:[1,2,3,4,5,6,11,9],href:[4,5,7,8,9,10,13,14],nest:0,someon:4,rais:[4,5,7,8,9,10,13,14],initi:[10,9],php:[1,6,3],studi:1,recent:[1,8],kept:11,center:0,min:5,well:[1,5],inherit:9,person:9,mailing_typ:[9,14],without:[0,1],command:1,thi:[0,1,4,5,7,8,9,10,12,13,14],undefin:0,http_code:[1,6,3],latest:11,construct:[0,7,9],identifi:8,paus:9,execut:[1,3],less:0,resp:[4,5,7,8,9,10,13,14],"_post":[1,3],against:0,aspect:13,recipient_email:9,source_filenam:8,yet:5,languag:1,"04t11":[7,14],display_nam:10,easi:[1,12,10],"01t00":8,had:0,littl:1,blog:4,add:[12,1,8,13,3],other:[1,8,9,3,5],curlopt_userpwd:[1,6,3],import_finish:[8,12,4],schedul:9,els:[1,6,3],save:7,match:[0,7],build:1,sanit:1,applic:[1,6,3],account_id:[1,3,4,5,6,7,8,9,10,12,13,14],handl:1,disposit:1,crud:[8,13,14],print_r:[6,3],mailing_statu:[9,14],know:[1,4,5],background:13,parent_mailing_id:[9,14],bit:1,insert:11,emma:[1,5,7,8,9,12,13],like:1,onion:11,deprec:4,arbitrari:8,manual:9,integ:[1,8,14,10,5],collect:1,api:[1,2,3,6,8,12],either:[0,5,7],bunch:0,output:9,group_id:[1,8,12,3],soft:[0,5],manag:[0,1,13,4],import_id:[8,12],www:[5,9],old:7,deal:[8,13],captur:1,arrai:[0,1,3,5,6,7,8,9,10,12,13,14],some:[1,11,5],field_delet:[12,4],certain:12,intern:10,sampl:[1,4,5,7,8,9,10,13,14],elaps:[2,9],unless:1,deleted_at:[7,8,13,10,9,14],some_string_field:0,librari:11,woodcock:1,emmarubi:1,bounce_count:[7,8,9,13],emmapython:1,public_kei:4,deliveri:5,broad:12,per:5,send_finish:[9,14],larg:[0,2],condit:7,three:9,network_cod:12,localhost:9,emmaphp:1,with_html_bodi:9,who:[0,5,8],bold:[4,5,7,8,9,10,13,14],event_typ:14,inspect:1,usag:[1,8,12],monsewicz:1,num_members_ad:8,fulli:11,from:[1,4,8,9,12,13,14],post:[1,3,4,7,8,9,10,12,13,14],group_creat:[12,4],gladi:[7,5,8,13],hurst:1,actual:5,zip:0,groups_upd:8,column:10,page:2,includ:[1,5,7,8,9,10,13],webview:9,mean:0,disabl:[9,14],block:[1,2],yyyi:5,own:1,member_data:[1,3],glob:0,bounc:[0,5],within:[0,8],encod:[9,4],delivery_typ:[5,8],compos:0,webview_shar:5,field_typ:10,active_count:[7,8,9,13],public_webview_url:9,pivot:5,your:[1,4,5,7,8,9,10,13],websit:11,fast:8,van:1,wai:[1,12],area:1,overus:2,group_nam:[8,12,13,9],support:12,unique_click:5,json:[0,1,3,4,6,7],submit:1,custom:[5,8,11,10],avail:[0,11,4],start:[1,2,8,4],interfac:12,send_at:[9,14],exceed:2,"var":3,interv:[0,14],fork:1,head:[1,6,9,3],form:[1,3,4,6,8,10,14],enough:2,forc:1,forward:[0,4,5,8,12,9],"31st":0,group_typ:[8,9,13],push_offset_unit:14,link:[0,4,5,11,9,14],line:[1,5],realli:1,"true":[0,1,2,3,4,6,7,8,9,10,13,14],archived_t:[9,14],info:4,pull:[1,2],made:1,possibl:[5,8,12],whether:8,maximum:2,tell:12,http403:9,record:[0,7,8],below:[0,1,8,12],http400:[7,8,9],limit:[5,2,8,9],some_array_field:0,otherwis:[1,8,10],start_t:14,mta:5,expect:1,notif:9,creat:[4,5,7,9,10,12,13,14],"int":5,retriev:[7,1,2,8,9],year:[0,5,9,14],repres:5,exist:[0,4,5,7,8,10,13],behavior:11,bob:[7,5],curl:[1,6],portland:1,probabl:14,echo:[1,3],successfulli:[5,8,9],mailing_subject:12,grp:13,todo:11,when:[8,12,4,9],detail:[1,4,7,8,9,10,13],invalid:[7,8,9],event:[4,7,8,13,12,9,14],field:[0,1,3,4,5,7,8,9,10,11,12,13,14],valid:[5,8,9,13],futur:1,num_skip:8,test:[5,6,7,13,9,14],ignor:8,you:[0,1,2,4,5,7,8,9,10,11,12,13],emmasdk:1,member_status_id:[7,5,8,9,13],public_api_kei:[1,6,3],stat:[5,9],claus:[0,7],event_nam:[12,4],e2ma:[1,2,6,3],error_messag:8,param:[9,4],app_messag:[1,3],ella:8,bulk:[1,8],receiv:[0,2,5,8,12,9],heads_up_email:9,longer:9,home:11,confirm:8,descript:[4,14],ohmyemma:1,portion:0,opted_out:5,time:[1,2,8,13,5],reply_to:[9,14],resource_url:12,hello:[11,9,14]},objtypes:{"0":"http:get","1":"http:put","2":"http:post","3":"http:delete"},titles:["Search Syntax","Emma API","Pagination","PHP Signup Example","Webhooks","Response","PHP Get Member By Email Example","Searches","Members","Mailings","Fields","Placeholder Syntax","Webhook Usage","Groups","Triggers"],objnames:{"0":["http","get","HTTP get"],"1":["http","put","HTTP put"],"2":["http","post","HTTP post"],"3":["http","delete","HTTP delete"]},filenames:["member_search","index","pagination","php_signup_example","api/external/webhooks","api/external/response","php_get_member_example","api/external/searches","api/external/members","api/external/mailings","api/external/fields","placeholders","webhooks","api/external/groups","api/external/triggers"]}) \ No newline at end of file diff --git a/webhooks.html b/webhooks.html index fb71dc9..657d769 100644 --- a/webhooks.html +++ b/webhooks.html @@ -507,7 +507,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Apr 04, 2013 at 11:13 AM. + Last updated on Apr 04, 2013 at 11:32 AM. </div> </body> </html> \ No newline at end of file From 8f6bdd8c41bed6301857b53dac9b34bdba8d94ec Mon Sep 17 00:00:00 2001 From: Jason Bynum <jason.bynum@myemma.com> Date: Thu, 4 Apr 2013 11:34:27 -0500 Subject: [PATCH 038/219] Update audience documentation. --- api/external/fields.html | 2 +- api/external/groups.html | 2 +- api/external/mailings.html | 2 +- api/external/members.html | 2 +- api/external/response.html | 2 +- api/external/searches.html | 4 ++-- api/external/triggers.html | 8 ++++---- api/external/webhooks.html | 2 +- genindex.html | 2 +- http-routingtable.html | 2 +- index.html | 2 +- member_search.html | 2 +- pagination.html | 2 +- php_get_member_example.html | 2 +- php_signup_example.html | 2 +- placeholders.html | 2 +- search.html | 2 +- webhooks.html | 2 +- 18 files changed, 22 insertions(+), 22 deletions(-) diff --git a/api/external/fields.html b/api/external/fields.html index 818b79d..269c425 100644 --- a/api/external/fields.html +++ b/api/external/fields.html @@ -415,7 +415,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Apr 04, 2013 at 11:32 AM. + Last updated on Apr 04, 2013 at 11:34 AM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/groups.html b/api/external/groups.html index e58cfa7..4d4ee48 100644 --- a/api/external/groups.html +++ b/api/external/groups.html @@ -702,7 +702,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Apr 04, 2013 at 11:32 AM. + Last updated on Apr 04, 2013 at 11:34 AM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/mailings.html b/api/external/mailings.html index 018d69e..47176d7 100644 --- a/api/external/mailings.html +++ b/api/external/mailings.html @@ -810,7 +810,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Apr 04, 2013 at 11:32 AM. + Last updated on Apr 04, 2013 at 11:34 AM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/members.html b/api/external/members.html index f99e496..7004ae6 100644 --- a/api/external/members.html +++ b/api/external/members.html @@ -1217,7 +1217,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Apr 04, 2013 at 11:32 AM. + Last updated on Apr 04, 2013 at 11:34 AM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/response.html b/api/external/response.html index b3e4778..e205e33 100644 --- a/api/external/response.html +++ b/api/external/response.html @@ -1019,7 +1019,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Apr 04, 2013 at 11:32 AM. + Last updated on Apr 04, 2013 at 11:34 AM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/searches.html b/api/external/searches.html index 3f029e6..8b8b022 100644 --- a/api/external/searches.html +++ b/api/external/searches.html @@ -199,7 +199,7 @@ <h1>Searches<a class="headerlink" href="#searches" title="Permalink to this head "name": "Test Search", "criteria": "[\"or\", [\"group\", \"eq\", \"Monthly Newsletter\"],[\"group\", \"eq\", \"Widget Buyers\"]]", "deleted_at": null, - "last_run_at": "@D:2013-04-04T11:32:07", + "last_run_at": "@D:2013-04-04T11:34:23", "active_count": 2, "account_id": 100 } @@ -511,7 +511,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Apr 04, 2013 at 11:32 AM. + Last updated on Apr 04, 2013 at 11:34 AM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/triggers.html b/api/external/triggers.html index effcc1f..f6807dc 100644 --- a/api/external/triggers.html +++ b/api/external/triggers.html @@ -148,7 +148,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": 203, "push_offset_units": "0:-14:0:0", - "start_ts": "@D:2013-04-04T11:32:04", + "start_ts": "@D:2013-04-04T11:34:21", "trigger_id": 100, "signups": null, "push_offset": "@I:-1209600.0", @@ -189,7 +189,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": null, "push_offset_units": "0:3:0:0", - "start_ts": "@D:2013-04-04T11:32:04", + "start_ts": "@D:2013-04-04T11:34:21", "trigger_id": 101, "signups": [ 1, @@ -326,7 +326,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": 203, "push_offset_units": "0:-14:0:0", - "start_ts": "@D:2013-04-04T11:32:04", + "start_ts": "@D:2013-04-04T11:34:21", "trigger_id": 100, "signups": null, "push_offset": "@I:-1209600.0", @@ -499,7 +499,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Apr 04, 2013 at 11:32 AM. + Last updated on Apr 04, 2013 at 11:34 AM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/webhooks.html b/api/external/webhooks.html index c6533ef..10a7677 100644 --- a/api/external/webhooks.html +++ b/api/external/webhooks.html @@ -487,7 +487,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Apr 04, 2013 at 11:32 AM. + Last updated on Apr 04, 2013 at 11:34 AM. </div> </body> </html> \ No newline at end of file diff --git a/genindex.html b/genindex.html index 6eb8600..3f0f8b4 100644 --- a/genindex.html +++ b/genindex.html @@ -146,7 +146,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Apr 04, 2013 at 11:32 AM. + Last updated on Apr 04, 2013 at 11:34 AM. </div> </body> </html> \ No newline at end of file diff --git a/http-routingtable.html b/http-routingtable.html index ff7360c..0956b3a 100644 --- a/http-routingtable.html +++ b/http-routingtable.html @@ -607,7 +607,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Apr 04, 2013 at 11:32 AM. + Last updated on Apr 04, 2013 at 11:34 AM. </div> </body> </html> \ No newline at end of file diff --git a/index.html b/index.html index f1ef70d..3f99e03 100644 --- a/index.html +++ b/index.html @@ -344,7 +344,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Apr 04, 2013 at 11:32 AM. + Last updated on Apr 04, 2013 at 11:34 AM. </div> </body> </html> \ No newline at end of file diff --git a/member_search.html b/member_search.html index dca6c0a..ce3430d 100644 --- a/member_search.html +++ b/member_search.html @@ -256,7 +256,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Apr 04, 2013 at 11:32 AM. + Last updated on Apr 04, 2013 at 11:34 AM. </div> </body> </html> \ No newline at end of file diff --git a/pagination.html b/pagination.html index 00346bb..69f4772 100644 --- a/pagination.html +++ b/pagination.html @@ -168,7 +168,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Apr 04, 2013 at 11:32 AM. + Last updated on Apr 04, 2013 at 11:34 AM. </div> </body> </html> \ No newline at end of file diff --git a/php_get_member_example.html b/php_get_member_example.html index 624b8c7..f49b20e 100644 --- a/php_get_member_example.html +++ b/php_get_member_example.html @@ -183,7 +183,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Apr 04, 2013 at 11:32 AM. + Last updated on Apr 04, 2013 at 11:34 AM. </div> </body> </html> \ No newline at end of file diff --git a/php_signup_example.html b/php_signup_example.html index 3f3ba02..2801bd2 100644 --- a/php_signup_example.html +++ b/php_signup_example.html @@ -205,7 +205,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Apr 04, 2013 at 11:32 AM. + Last updated on Apr 04, 2013 at 11:34 AM. </div> </body> </html> \ No newline at end of file diff --git a/placeholders.html b/placeholders.html index c0fe09a..dd092c3 100644 --- a/placeholders.html +++ b/placeholders.html @@ -183,7 +183,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Apr 04, 2013 at 11:32 AM. + Last updated on Apr 04, 2013 at 11:34 AM. </div> </body> </html> \ No newline at end of file diff --git a/search.html b/search.html index 525abd5..b2eee47 100644 --- a/search.html +++ b/search.html @@ -153,7 +153,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Apr 04, 2013 at 11:32 AM. + Last updated on Apr 04, 2013 at 11:34 AM. </div> </body> </html> \ No newline at end of file diff --git a/webhooks.html b/webhooks.html index 657d769..525d269 100644 --- a/webhooks.html +++ b/webhooks.html @@ -507,7 +507,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Apr 04, 2013 at 11:32 AM. + Last updated on Apr 04, 2013 at 11:34 AM. </div> </body> </html> \ No newline at end of file From c3d6fa84e560401c0550ace7f58763064ec79347 Mon Sep 17 00:00:00 2001 From: Hernan Ciudad <hernan@myemma.com> Date: Fri, 12 Apr 2013 16:17:43 -0500 Subject: [PATCH 039/219] Update audience documentation. --- api/external/fields.html | 2 +- api/external/groups.html | 2 +- api/external/mailings.html | 2 +- api/external/members.html | 2 +- api/external/response.html | 2 +- api/external/searches.html | 4 ++-- api/external/triggers.html | 8 ++++---- api/external/webhooks.html | 2 +- genindex.html | 2 +- http-routingtable.html | 2 +- index.html | 2 +- member_search.html | 2 +- pagination.html | 2 +- php_get_member_example.html | 2 +- php_signup_example.html | 2 +- placeholders.html | 2 +- search.html | 2 +- searchindex.js | 2 +- webhooks.html | 2 +- 19 files changed, 23 insertions(+), 23 deletions(-) diff --git a/api/external/fields.html b/api/external/fields.html index 269c425..3966b3a 100644 --- a/api/external/fields.html +++ b/api/external/fields.html @@ -415,7 +415,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Apr 04, 2013 at 11:34 AM. + Last updated on Apr 12, 2013 at 04:17 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/groups.html b/api/external/groups.html index 4d4ee48..74a125b 100644 --- a/api/external/groups.html +++ b/api/external/groups.html @@ -702,7 +702,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Apr 04, 2013 at 11:34 AM. + Last updated on Apr 12, 2013 at 04:17 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/mailings.html b/api/external/mailings.html index 47176d7..7e74ded 100644 --- a/api/external/mailings.html +++ b/api/external/mailings.html @@ -810,7 +810,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Apr 04, 2013 at 11:34 AM. + Last updated on Apr 12, 2013 at 04:17 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/members.html b/api/external/members.html index 7004ae6..c66d957 100644 --- a/api/external/members.html +++ b/api/external/members.html @@ -1217,7 +1217,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Apr 04, 2013 at 11:34 AM. + Last updated on Apr 12, 2013 at 04:17 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/response.html b/api/external/response.html index e205e33..8ea4e55 100644 --- a/api/external/response.html +++ b/api/external/response.html @@ -1019,7 +1019,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Apr 04, 2013 at 11:34 AM. + Last updated on Apr 12, 2013 at 04:17 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/searches.html b/api/external/searches.html index 8b8b022..7cb3398 100644 --- a/api/external/searches.html +++ b/api/external/searches.html @@ -199,7 +199,7 @@ <h1>Searches<a class="headerlink" href="#searches" title="Permalink to this head "name": "Test Search", "criteria": "[\"or\", [\"group\", \"eq\", \"Monthly Newsletter\"],[\"group\", \"eq\", \"Widget Buyers\"]]", "deleted_at": null, - "last_run_at": "@D:2013-04-04T11:34:23", + "last_run_at": "@D:2013-04-12T16:17:36", "active_count": 2, "account_id": 100 } @@ -511,7 +511,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Apr 04, 2013 at 11:34 AM. + Last updated on Apr 12, 2013 at 04:17 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/triggers.html b/api/external/triggers.html index f6807dc..f372b5d 100644 --- a/api/external/triggers.html +++ b/api/external/triggers.html @@ -148,7 +148,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": 203, "push_offset_units": "0:-14:0:0", - "start_ts": "@D:2013-04-04T11:34:21", + "start_ts": "@D:2013-04-12T16:17:33", "trigger_id": 100, "signups": null, "push_offset": "@I:-1209600.0", @@ -189,7 +189,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": null, "push_offset_units": "0:3:0:0", - "start_ts": "@D:2013-04-04T11:34:21", + "start_ts": "@D:2013-04-12T16:17:33", "trigger_id": 101, "signups": [ 1, @@ -326,7 +326,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": 203, "push_offset_units": "0:-14:0:0", - "start_ts": "@D:2013-04-04T11:34:21", + "start_ts": "@D:2013-04-12T16:17:33", "trigger_id": 100, "signups": null, "push_offset": "@I:-1209600.0", @@ -499,7 +499,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Apr 04, 2013 at 11:34 AM. + Last updated on Apr 12, 2013 at 04:17 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/webhooks.html b/api/external/webhooks.html index 10a7677..8283e6a 100644 --- a/api/external/webhooks.html +++ b/api/external/webhooks.html @@ -487,7 +487,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Apr 04, 2013 at 11:34 AM. + Last updated on Apr 12, 2013 at 04:17 PM. </div> </body> </html> \ No newline at end of file diff --git a/genindex.html b/genindex.html index 3f0f8b4..a5c0275 100644 --- a/genindex.html +++ b/genindex.html @@ -146,7 +146,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Apr 04, 2013 at 11:34 AM. + Last updated on Apr 12, 2013 at 04:17 PM. </div> </body> </html> \ No newline at end of file diff --git a/http-routingtable.html b/http-routingtable.html index 0956b3a..077fb04 100644 --- a/http-routingtable.html +++ b/http-routingtable.html @@ -607,7 +607,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Apr 04, 2013 at 11:34 AM. + Last updated on Apr 12, 2013 at 04:17 PM. </div> </body> </html> \ No newline at end of file diff --git a/index.html b/index.html index 3f99e03..27bb4ff 100644 --- a/index.html +++ b/index.html @@ -344,7 +344,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Apr 04, 2013 at 11:34 AM. + Last updated on Apr 12, 2013 at 04:17 PM. </div> </body> </html> \ No newline at end of file diff --git a/member_search.html b/member_search.html index ce3430d..d97d1fe 100644 --- a/member_search.html +++ b/member_search.html @@ -256,7 +256,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Apr 04, 2013 at 11:34 AM. + Last updated on Apr 12, 2013 at 04:17 PM. </div> </body> </html> \ No newline at end of file diff --git a/pagination.html b/pagination.html index 69f4772..6469794 100644 --- a/pagination.html +++ b/pagination.html @@ -168,7 +168,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Apr 04, 2013 at 11:34 AM. + Last updated on Apr 12, 2013 at 04:17 PM. </div> </body> </html> \ No newline at end of file diff --git a/php_get_member_example.html b/php_get_member_example.html index f49b20e..056f23a 100644 --- a/php_get_member_example.html +++ b/php_get_member_example.html @@ -183,7 +183,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Apr 04, 2013 at 11:34 AM. + Last updated on Apr 12, 2013 at 04:17 PM. </div> </body> </html> \ No newline at end of file diff --git a/php_signup_example.html b/php_signup_example.html index 2801bd2..3389649 100644 --- a/php_signup_example.html +++ b/php_signup_example.html @@ -205,7 +205,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Apr 04, 2013 at 11:34 AM. + Last updated on Apr 12, 2013 at 04:17 PM. </div> </body> </html> \ No newline at end of file diff --git a/placeholders.html b/placeholders.html index dd092c3..b8f6a19 100644 --- a/placeholders.html +++ b/placeholders.html @@ -183,7 +183,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Apr 04, 2013 at 11:34 AM. + Last updated on Apr 12, 2013 at 04:17 PM. </div> </body> </html> \ No newline at end of file diff --git a/search.html b/search.html index b2eee47..da95baf 100644 --- a/search.html +++ b/search.html @@ -153,7 +153,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Apr 04, 2013 at 11:34 AM. + Last updated on Apr 12, 2013 at 04:17 PM. </div> </body> </html> \ No newline at end of file diff --git a/searchindex.js b/searchindex.js index e85ab38..1d804c9 100644 --- a/searchindex.js +++ b/searchindex.js @@ -1 +1 @@ -Search.setIndex({objects:{"":{"/#account_id/members/#member_id/groups/remove":[8,1,1,"put--#account_id-members-#member_id-groups-remove"],"/#account_id/mailings/#mailing_id/winner/#winner_id":[9,2,1,"post--#account_id-mailings-#mailing_id-winner-#winner_id"],"/#account_id/response/#mailing_id/in_progress":[5,0,1,"get--#account_id-response-#mailing_id-in_progress"],"/#account_id/members/groups/remove":[8,1,1,"put--#account_id-members-groups-remove"],"/#account_id/mailings/#mailing_id/searches":[9,0,1,"get--#account_id-mailings-#mailing_id-searches"],"/#account_id/fields":[10,2,1,"post--#account_id-fields"],"/#account_id/members/#group_id/copy":[8,1,1,"put--#account_id-members-#group_id-copy"],"/#account_id/members/status":[8,1,1,"put--#account_id-members-status"],"/#account_id/response/#mailing_id/shares/overview":[5,0,1,"get--#account_id-response-#mailing_id-shares-overview"],"/#account_id/webhooks/events":[4,0,1,"get--#account_id-webhooks-events"],"/#account_id/members/#member_id/optout":[8,0,1,"get--#account_id-members-#member_id-optout"],"/#account_id/webhooks":[4,3,1,"delete--#account_id-webhooks"],"/#account_id/fields/#field_id":[10,3,1,"delete--#account_id-fields-#field_id"],"/#account_id/response/#mailing_id":[5,0,1,"get--#account_id-response-#mailing_id"],"/#account_id/groups/#member_group_id/members/remove":[13,3,1,"delete--#account_id-groups-#member_group_id-members-remove"],"/#account_id/searches":[7,2,1,"post--#account_id-searches"],"/#account_id/members/imports":[8,0,1,"get--#account_id-members-imports"],"/#account_id/forwards/#mailing_id/#member_id":[9,2,1,"post--#account_id-forwards-#mailing_id-#member_id"],"/#account_id/response/#mailing_id/customer_share_clicks":[5,0,1,"get--#account_id-response-#mailing_id-customer_share_clicks"],"/#account_id/mailings/#mailing_id/messages/#member_id":[9,0,1,"get--#account_id-mailings-#mailing_id-messages-#member_id"],"/#account_id/members/#member_id/mailings":[8,0,1,"get--#account_id-members-#member_id-mailings"],"/#account_id/groups/#from_group_id/#to_group_id/members/copy":[13,1,1,"put--#account_id-groups-#from_group_id-#to_group_id-members-copy"],"/#account_id/triggers":[14,2,1,"post--#account_id-triggers"],"/#account_id/triggers/#trigger_id":[14,3,1,"delete--#account_id-triggers-#trigger_id"],"/#account_id/members/delete":[8,1,1,"put--#account_id-members-delete"],"/#account_id/mailings/#mailing_id/groups":[9,0,1,"get--#account_id-mailings-#mailing_id-groups"],"/#account_id/response/#mailing_id/forwards":[5,0,1,"get--#account_id-response-#mailing_id-forwards"],"/#account_id/members/#member_id":[8,3,1,"delete--#account_id-members-#member_id"],"/#account_id/triggers/#trigger_id/mailings":[14,0,1,"get--#account_id-triggers-#trigger_id-mailings"],"/#account_id/searches/#search_id/members":[7,0,1,"get--#account_id-searches-#search_id-members"],"/#account_id/members/status/:status_from/to/:status_to":[8,1,1,"put--#account_id-members-status--status_from-to--status_to"],"/#account_id/response/#mailing_id/sends":[5,0,1,"get--#account_id-response-#mailing_id-sends"],"/#account_id/members":[8,3,1,"delete--#account_id-members"],"/#account_id/members/email/:email":[8,0,1,"get--#account_id-members-email--email"],"/#account_id/response/#mailing_id/links":[5,0,1,"get--#account_id-response-#mailing_id-links"],"/#account_id/searches/#search_id":[7,3,1,"delete--#account_id-searches-#search_id"],"/#account_id/members/imports/#import_id/members":[8,0,1,"get--#account_id-members-imports-#import_id-members"],"/#account_id/fields/#field_id/clear":[10,2,1,"post--#account_id-fields-#field_id-clear"],"/#account_id/groups/#member_group_id/members":[13,3,1,"delete--#account_id-groups-#member_group_id-members"],"/#account_id/members/imports/#import_id":[8,0,1,"get--#account_id-members-imports-#import_id"],"/#account_id/response":[5,0,1,"get--#account_id-response"],"/#account_id/response/#mailing_id/opens":[5,0,1,"get--#account_id-response-#mailing_id-opens"],"/#account_id/members/imports/delete":[8,3,1,"delete--#account_id-members-imports-delete"],"/#account_id/mailings":[9,0,1,"get--#account_id-mailings"],"/#account_id/mailings/cancel/#mailing_id":[9,3,1,"delete--#account_id-mailings-cancel-#mailing_id"],"/#account_id/mailings/validate":[9,2,1,"post--#account_id-mailings-validate"],"/#account_id/response/#mailing_id/deliveries":[5,0,1,"get--#account_id-response-#mailing_id-deliveries"],"/#account_id/mailings/#mailing_id/members":[9,0,1,"get--#account_id-mailings-#mailing_id-members"],"/#account_id/response/#share_id/customer_share":[5,0,1,"get--#account_id-response-#share_id-customer_share"],"/#account_id/webhooks/#webhook_id":[4,3,1,"delete--#account_id-webhooks-#webhook_id"],"/#account_id/members/add":[8,2,1,"post--#account_id-members-add"],"/#account_id/members/email/optout/:email":[8,1,1,"put--#account_id-members-email-optout--email"],"/#account_id/response/#mailing_id/optouts":[5,0,1,"get--#account_id-response-#mailing_id-optouts"],"/#account_id/response/#mailing_id/shares":[5,0,1,"get--#account_id-response-#mailing_id-shares"],"/#account_id/groups/#member_group_id":[13,3,1,"delete--#account_id-groups-#member_group_id"],"/#account_id/mailings/#mailing_id":[9,3,1,"delete--#account_id-mailings-#mailing_id"],"/#account_id/members/#member_id/groups":[8,3,1,"delete--#account_id-members-#member_id-groups"],"/#account_id/groups":[13,2,1,"post--#account_id-groups"],"/#account_id/response/#mailing_id/clicks":[5,0,1,"get--#account_id-response-#mailing_id-clicks"],"/#account_id/mailings/#mailing_id/headsup":[9,0,1,"get--#account_id-mailings-#mailing_id-headsup"],"/#account_id/response/#mailing_id/signups":[5,0,1,"get--#account_id-response-#mailing_id-signups"],"/#account_id/response/#mailing_id/customer_shares":[5,0,1,"get--#account_id-response-#mailing_id-customer_shares"]}},terms:{all:[0,1,4,5,8,9,10,11,12,13,14],code:[0,1,6,3],change_typ:8,queri:[0,2,4],month:[0,5,9,14],four:[0,5],mile:0,least:0,follow:[0,1,4,5,7,9,11,13],link_target:[5,9],content:[1,11,6,9,3],privat:1,specif:[8,9,4],friendli:5,send:[1,9,4,3,5],program:1,customer_share_click:5,those:[1,12,5],group_upd:[12,4],sent:[5,8,12,9,14],curl_clos:[1,6,3],brown:[7,8],digit:5,everi:0,string:[0,4,5,7,8,9,10,12,13,14],fals:[1,3,4,5,6,7,8,9,10,13,14],webhook:[1,12,4],mailing_status:9,trigger_id:14,webview_share_click:5,affect:[7,8],member_add:[12,4],create_mail:9,new_boolean:10,foo:0,level:1,group_delet:[12,4],list:[0,1,2,4,5,7,8,9,10,11,12,13,14],upload:8,iter:2,"try":8,item:2,plaintext_onli:[9,14],div:[4,5,7,8,9,10,13,14],survey_id:14,setup:1,pleas:[1,8,11,9],prevent:2,work:[1,4],ten:0,sync:10,sign:[0,5,4],past:1,second:[0,7,14],field_creat:[12,4],further:1,shortcut_nam:10,click:[0,4,5,7,8,12,14],append:2,even:10,what:1,hide:[4,5,7,8,9,10,13,14],appear:[1,8],from_group_id:13,section:1,current:[1,8,12,9],delet:[1,4,7,8,9,10,12,13,14],"new":[1,4,5,7,8,9,10,11,13,14],net:[1,2,6,3],delivery_t:8,method:[5,8,13,4,9],can:[0,1,2,4,5,7,8,9,11,12,13],widget:[7,10,8,9,13],full:1,hash:0,datematch:0,displai:10,variat:9,gener:[0,8,12,14],onli:[5,8],here:[0,1,3,5,6,8],bodi:9,let:[1,4,10],address:[0,1,8,6,9],along:8,sinc:8,valu:[0,5,7,8,10,11],field_upd:[12,4],search:[0,1,8,9,7],survei:14,sender:[9,14],larger:2,queue:5,prior:9,action:[0,8],chang:[8,4],campaign:5,newbi:5,appli:[7,14],prefer:0,young:1,myemma:[4,5,7,8,9,13],filenam:8,customer_shar:5,"boolean":[0,1,5,7,8,9,10,13,14],curlopt_postfield:[1,3],total:5,jone:[7,5,8,13],select:[1,10],newslett:[7,8,13],describ:7,would:[0,1],commun:1,regist:4,two:[0,5],coverag:1,next:[0,1],create_webhook:4,few:[5,8],call:[1,2,3,4,6,8,12],criteria:7,member_add_to_group:[12,4],type:[1,3,4,5,6,7,10,9,14],until:2,more:[0,4,7,8,9,13],peopl:5,relat:[1,8,11,9],about:[10,8,12,4,9],notic:8,thide:[4,5,7,8,9,10,13,14],flag:[5,7,8,10,9,14],exce:2,indic:8,examin:1,particular:[1,4,5,8,10,12,9],in_progress:5,origin:9,must:[0,7,13,10],none:9,endpoint:[1,4,5,7,8,9,10,13,14],join:[0,7],hour:0,der:1,member_sinc:[0,5,7,8,9,13],uniqu:5,histori:8,soup:7,remain:[0,9],archiv:[5,9],member_optout:[12,4],drill:5,control:[1,11,9],quickstart:1,give:5,forward_mailing_id:5,email_domain:[0,5],share:[0,5,8,12,4],accept:[0,5,7,8,9,10,11,13,14],total_click:5,tag:[11,9],want:[1,12,13,5],occur:[7,12],some_numeric_field:0,delai:14,alwai:0,webhook_event_id:4,cours:1,multipl:[10,8],first_nam:[1,3,5,7,8,9,10,11,13,14],started_or_finish:[9,14],anoth:[9,13],get:[1,4,5,6,7,8,9,10,13,14],message_open:[12,4],html_bodi:[9,14],share_statu:5,push_offset:14,del_statu:5,tild:5,num_members_upd:8,simpl:0,chri:9,pizza:[7,8],map:0,autent:1,referenc:7,xxxx:6,sundai:0,jacqu:1,membership:13,taco:[7,5,8,9,13],mai:12,end:[2,8],associ:[1,8,9,4,5],grow:1,welcom:11,add_onli:8,"short":0,json_encod:[1,3],optout:[5,8,12,13],num_dupl:8,favorit:10,correspond:[0,1],greet:11,predic:[0,1],issu:[1,10],"12t11":[7,5,8,9,13],combin:7,allow:[0,7,8],some_zipcode_field:0,signed_up:5,order:[5,10],michel:[8,9],mailing_nam:5,checkbox:10,fields_upd:8,over:2,soon:1,buyer:[7,8,9,13],comma:[9,13],is_dis:14,vari:8,paramet:[2,4,5,7,8,9,10,13,14],widget_typ:10,style:[0,4,5,7,8,9,10,13,14],group:[0,1,3,4,7,8,9,12,13,14],curl_setopt:[1,6,3],how:[7,1,2,4],fix:1,import_start:8,better:[13,14],platform:1,pend:[1,9],mailing_list:9,onc:9,mail:[0,1,4,5,8,11,12,9,14],hidden:13,main:1,might:[1,4],link_nam:[5,9],them:[8,9],messag:[4,5,8,12,11,9,14],"return":[0,1,4,5,7,8,9,10,12,13,14],greater:[0,8],thei:[0,9],food:10,timestamp:[0,5,12,9,10],spell:4,nashvil:1,dai:0,auth:1,framework:1,instead:[12,2,8],now:5,down:5,term:[0,1],alex:9,name:[0,4,5,7,8,9,10,11,13,14],edit:[7,1,14,10],curl_getinfo:[1,6,3],authent:[1,6,4,3],successufulli:4,separ:[1,9,13],each:[1,2,5,9,12,11,13],found:[8,9,4,14],updat:[4,7,8,9,10,12,13,14],denni:1,status:[8,9],domain:0,weight:[4,5,7,8,9,10,13,14],resum:9,individu:[5,8],hard:[0,5],last_nam:[1,3,5,7,8,9,10,11,13,14],"05t15":5,birthdai:[10,14],connect:[1,6,3],doug:1,our:[1,11,12,4,14],happen:[1,4,5],commiss:1,short_display_nam:10,special:[0,7,8,13],out:[0,1,4,5,7,8,10,13],variabl:[1,6,3],message_shar:[12,4],network:[5,12],private_api_kei:[1,6,3],check_multipl:10,categori:1,rel:0,print:6,correct:10,integr:1,benjamin:[1,8],qualifi:11,insid:1,advanc:0,contain:[0,5,7,13,10,9],given:[0,8,9,4],standard:[5,9],status_from:8,base:[5,8],recipient_search:9,dictionari:8,put:[4,7,8,9,10,13,14],span:[4,5,7,8,9,10,13,14],"13t23":[7,5,8],refer:[5,7,8,13,10,9],visit:11,could:1,omit:5,success:[1,3,7,8,9,13],filter:[0,1,7],search_id:7,pagin:[1,2],member_id:[5,7,8,9,12,13],summari:[1,5],assign:9,first:[0,1,10,5],oper:[0,1,7,14],rang:5,notifi:12,directli:0,curlopt_ssl_verifyp:[1,6,3],curl_init:[1,6,3],number:[5,2,13,3,10],placehold:[1,11],date:[0,5,8,10,11,14],unlik:9,alreadi:[10,8,9,13],done:8,plaintext_pref:[7,8,9,13],oppos:8,open:[0,3,4,5,6,7,8,12],payload:4,fanci:5,size:2,differ:0,"long":10,script:1,data:[1,3,4,5,10,12],system:[8,12,4,14],wrapper:1,attach:11,easier:12,friend:11,curlinfo_http_cod:[1,6,3],shell:0,option:[0,5,7,8,9,10,13,14],especi:8,signup:[0,1,3,4,5,8,12,14],copi:[8,13],member_upd:[12,4],specifi:[0,2,7,8,10,11,9,14],curl_exec:[1,6,3],curlopt_httphead:[1,6,3],member_signup:[12,4],create_search:7,part:[0,9],enclos:11,than:[0,1,2,3,12,13],with_plaintext:9,"02t10":[5,8],"02t11":[5,8],"02t13":5,nathan:8,whenev:8,provid:[1,5,8,12,9,14],remov:[12,8,13,4],mailing_start:4,rate:2,structur:7,charact:9,greg:8,trackabl:11,were:5,minut:0,danc:1,error_count:[7,8,9,13],pre:[4,5,7,8,9,10,13,14],cleaner:1,sai:0,share_id:5,signup_form_id:[0,8,12,9,14],plaintext:[5,9,14],pass:[1,3],ani:[0,1,2,7,8,9],have:[0,1,5,8,12,9],tabl:5,need:1,seen:5,"null":[7,8,13,10,9,14],kevin:[9,14],signup_mail:0,caus:14,built:1,inform:[1,4,6,8,9,10,13],object_id:14,note:[1,8,9,4],also:[0,4,5,7,8,9,11,13],exampl:[0,1,3,5,6,7,11],take:[0,4],which:[0,1,4,8,10,12,9,14],some_number_field:0,singl:[0,1,3,4,5,8,10,12,13],excit:11,sure:1,delete_memb:13,normal:9,parent_mail:14,recipient_count:[5,9,14],previou:9,field_id:[10,12,14],last_run_at:7,most:14,pair:11,"class":[4,5,7,8,9,10,13,14],don:1,member_group_id:[8,9,13],mcconnel:[9,14],url:[1,3,4,5,6,12],mailing_finish:[12,4],clear:10,request:[1,2,3],doe:[0,5,7,8,9,10,13],member_status_upd:[12,4],declar:9,tech:4,determin:1,dataset:10,dow:0,recipi:9,"6db0cc7e6fdb2da589b65f29d90c96b6":9,show:[4,5,7,8,9,10,11,13,14],text:[10,11,12],radiu:0,syntax:[0,1,11,9],radio:10,font:[4,5,7,8,9,10,13,14],fine:9,find:[1,6,5],status_to:8,toast:[7,5,8,13],access:[1,5],giant:12,just:[0,1,9],pretti:8,column_ord:10,explain:[0,1],winner:9,activ:[1,5,7,8,13,9],figur:1,should:[1,2,3,7,8,11,9],templat:[11,14],share_count:5,count:[1,2,3,5],variou:[8,13],confirmed_opt_in:[7,8,9,13],familiar:1,express:0,account:[1,4,5,7,8,10,13,14],becaus:12,repo:1,cannot:[8,9,4],progress:9,report:[10,8],requir:[1,7,8,10,11,9],object:[1,13,5],favorite_food:[5,7,8,13,10,9],bar:0,organ:1,include_archiv:[5,9],"public":1,"default":[5,11,13,4,9],ref_member_id:5,message_share_click:[12,4],through:[1,8,4],where:[0,1,8,11,7],view:1,user:[0,8,9,13],set:[0,1,2,3,6,8,9,12,13],link_id:[0,5,12,9,14],see:[7,1,8],result:[0,1,2,5,8,9],respons:[0,1,2,4,5,7,8,9,10,13,14],fail:[5,9,4],themselv:2,member_field:[0,7],xxxxx:6,subject:[8,12,9,14],statu:[1,4,5,7,8,9,12,13],fancyonion:11,kei:[0,1,8,11,4],is_schedul:9,message_forward:[12,4],databas:8,someth:1,last_modified_at:[7,8,9,13],addresse:5,written:1,between:[0,7,2],clicked_uniqu:5,"import":[1,8,12,4,10],subscript:[1,3],entiti:1,curlopt_url:[1,6,3],email:[0,1,3,5,6,7,8,9,13],wide:14,extend:1,numer:10,http404:[4,5,7,8,9,10,13,14],job:13,entir:[0,8],share_click:5,to_group_id:13,come:1,curlopt_returntransf:[1,6,3],addit:[0,1,8,9,11,13],member_remove_from_group:[12,4],send_start:[0,9,14],protect:1,accident:2,last:[0,5,10],delimit:5,lentil:7,"12t09":[7,8],pertain:5,message_click:[12,4],curlopt_post:[1,3],audienc:[1,8,9],mang:0,improv:1,http500:14,seri:5,com:[4,5,6,7,8,9,11,13],zip_code_field:0,"03t15":[7,5,8,13],point:1,toni:[7,8],overview:[0,1,11,12,5],period:1,winner_id:9,colon:[7,11],optout_count:[7,8,9,13],suppli:9,cancel:9,tuesdai:0,duplic:5,quit:[5,8],user_id:4,recur:14,headsup:9,addition:[1,2],due:5,been:[1,8,10,5],mark:[8,9],whom:9,tshow:[4,5,7,8,9,10,13,14],trigger:[1,4,5,7,8,9,10,12,13,14],unsubscrib:0,treat:8,interest:[10,4],basic:[0,1,4,8,13,14],monthli:[7,8,13],member_delet:[12,4],hesit:1,blob:4,email_us:[0,5],mailing_mailing_id:5,mailing_id:[0,5,8,12,9,14],fire:[8,4,14],xxx:[1,3],rubi:1,argument:[0,5],link_ord:[5,9],input:1,extract:11,present:7,statist:8,"case":[1,8],look:[1,14,10],frozen:9,durat:9,email_error:[7,8,9,13],defin:[0,10,8,9],"while":0,smith:[7,5,8,9,13],outcom:5,abov:[0,1,8,7],error:[1,3,6,8,10,13],veen:1,loop:8,opt:[0,4,5,7,8,13],readi:9,deliv:5,recipient_group:9,equal:0,itself:0,new_statu:12,webhook_id:4,develop:1,recipient_memb:9,perform:8,make:[1,12,6,10],belong:[0,8,4],same:4,check:[8,6,9],member:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14],python:1,html:9,split:9,document:[1,11,12],complet:[1,3,4,6,8,9],week:0,finish:[5,12,4],http:[1,2,3,4,5,6,11,9],href:[4,5,7,8,9,10,13,14],nest:0,someon:4,rais:[4,5,7,8,9,10,13,14],initi:[10,9],php:[1,6,3],studi:1,recent:[1,8],kept:11,center:0,min:5,well:[1,5],inherit:9,person:9,mailing_typ:[9,14],without:[0,1],command:1,thi:[0,1,4,5,7,8,9,10,12,13,14],undefin:0,http_code:[1,6,3],latest:11,construct:[0,7,9],identifi:8,paus:9,execut:[1,3],less:0,resp:[4,5,7,8,9,10,13,14],"_post":[1,3],against:0,aspect:13,recipient_email:9,source_filenam:8,yet:5,languag:1,"04t11":[7,14],display_nam:10,easi:[1,12,10],"01t00":8,had:0,littl:1,blog:4,add:[12,1,8,13,3],other:[1,8,9,3,5],curlopt_userpwd:[1,6,3],import_finish:[8,12,4],schedul:9,els:[1,6,3],save:7,match:[0,7],build:1,sanit:1,applic:[1,6,3],account_id:[1,3,4,5,6,7,8,9,10,12,13,14],handl:1,disposit:1,crud:[8,13,14],print_r:[6,3],mailing_statu:[9,14],know:[1,4,5],background:13,parent_mailing_id:[9,14],bit:1,insert:11,emma:[1,5,7,8,9,12,13],like:1,onion:11,deprec:4,arbitrari:8,manual:9,integ:[1,8,14,10,5],collect:1,api:[1,2,3,6,8,12],either:[0,5,7],bunch:0,output:9,group_id:[1,8,12,3],soft:[0,5],manag:[0,1,13,4],import_id:[8,12],www:[5,9],old:7,deal:[8,13],captur:1,arrai:[0,1,3,5,6,7,8,9,10,12,13,14],some:[1,11,5],field_delet:[12,4],certain:12,intern:10,sampl:[1,4,5,7,8,9,10,13,14],elaps:[2,9],unless:1,deleted_at:[7,8,13,10,9,14],some_string_field:0,librari:11,woodcock:1,emmarubi:1,bounce_count:[7,8,9,13],emmapython:1,public_kei:4,deliveri:5,broad:12,per:5,send_finish:[9,14],larg:[0,2],condit:7,three:9,network_cod:12,localhost:9,emmaphp:1,with_html_bodi:9,who:[0,5,8],bold:[4,5,7,8,9,10,13,14],event_typ:14,inspect:1,usag:[1,8,12],monsewicz:1,num_members_ad:8,fulli:11,from:[1,4,8,9,12,13,14],post:[1,3,4,7,8,9,10,12,13,14],group_creat:[12,4],gladi:[7,5,8,13],hurst:1,actual:5,zip:0,groups_upd:8,column:10,page:2,includ:[1,5,7,8,9,10,13],webview:9,mean:0,disabl:[9,14],block:[1,2],yyyi:5,own:1,member_data:[1,3],glob:0,bounc:[0,5],within:[0,8],encod:[9,4],delivery_typ:[5,8],compos:0,webview_shar:5,field_typ:10,active_count:[7,8,9,13],public_webview_url:9,pivot:5,your:[1,4,5,7,8,9,10,13],websit:11,fast:8,van:1,wai:[1,12],area:1,overus:2,group_nam:[8,12,13,9],support:12,unique_click:5,json:[0,1,3,4,6,7],submit:1,custom:[5,8,11,10],avail:[0,11,4],start:[1,2,8,4],interfac:12,send_at:[9,14],exceed:2,"var":3,interv:[0,14],fork:1,head:[1,6,9,3],form:[1,3,4,6,8,10,14],enough:2,forc:1,forward:[0,4,5,8,12,9],"31st":0,group_typ:[8,9,13],push_offset_unit:14,link:[0,4,5,11,9,14],line:[1,5],realli:1,"true":[0,1,2,3,4,6,7,8,9,10,13,14],archived_t:[9,14],info:4,pull:[1,2],made:1,possibl:[5,8,12],whether:8,maximum:2,tell:12,http403:9,record:[0,7,8],below:[0,1,8,12],http400:[7,8,9],limit:[5,2,8,9],some_array_field:0,otherwis:[1,8,10],start_t:14,mta:5,expect:1,notif:9,creat:[4,5,7,9,10,12,13,14],"int":5,retriev:[7,1,2,8,9],year:[0,5,9,14],repres:5,exist:[0,4,5,7,8,10,13],behavior:11,bob:[7,5],curl:[1,6],portland:1,probabl:14,echo:[1,3],successfulli:[5,8,9],mailing_subject:12,grp:13,todo:11,when:[8,12,4,9],detail:[1,4,7,8,9,10,13],invalid:[7,8,9],event:[4,7,8,13,12,9,14],field:[0,1,3,4,5,7,8,9,10,11,12,13,14],valid:[5,8,9,13],futur:1,num_skip:8,test:[5,6,7,13,9,14],ignor:8,you:[0,1,2,4,5,7,8,9,10,11,12,13],emmasdk:1,member_status_id:[7,5,8,9,13],public_api_kei:[1,6,3],stat:[5,9],claus:[0,7],event_nam:[12,4],e2ma:[1,2,6,3],error_messag:8,param:[9,4],app_messag:[1,3],ella:8,bulk:[1,8],receiv:[0,2,5,8,12,9],heads_up_email:9,longer:9,home:11,confirm:8,descript:[4,14],ohmyemma:1,portion:0,opted_out:5,time:[1,2,8,13,5],reply_to:[9,14],resource_url:12,hello:[11,9,14]},objtypes:{"0":"http:get","1":"http:put","2":"http:post","3":"http:delete"},titles:["Search Syntax","Emma API","Pagination","PHP Signup Example","Webhooks","Response","PHP Get Member By Email Example","Searches","Members","Mailings","Fields","Placeholder Syntax","Webhook Usage","Groups","Triggers"],objnames:{"0":["http","get","HTTP get"],"1":["http","put","HTTP put"],"2":["http","post","HTTP post"],"3":["http","delete","HTTP delete"]},filenames:["member_search","index","pagination","php_signup_example","api/external/webhooks","api/external/response","php_get_member_example","api/external/searches","api/external/members","api/external/mailings","api/external/fields","placeholders","webhooks","api/external/groups","api/external/triggers"]}) \ No newline at end of file +Search.setIndex({objects:{"":{"/#account_id/members/#member_id/groups/remove":[8,1,1,"put--#account_id-members-#member_id-groups-remove"],"/#account_id/mailings/#mailing_id/winner/#winner_id":[9,2,1,"post--#account_id-mailings-#mailing_id-winner-#winner_id"],"/#account_id/response/#mailing_id/in_progress":[5,0,1,"get--#account_id-response-#mailing_id-in_progress"],"/#account_id/members/groups/remove":[8,1,1,"put--#account_id-members-groups-remove"],"/#account_id/mailings/#mailing_id/searches":[9,0,1,"get--#account_id-mailings-#mailing_id-searches"],"/#account_id/fields":[10,2,1,"post--#account_id-fields"],"/#account_id/members/#group_id/copy":[8,1,1,"put--#account_id-members-#group_id-copy"],"/#account_id/members/status":[8,1,1,"put--#account_id-members-status"],"/#account_id/response/#mailing_id/shares/overview":[5,0,1,"get--#account_id-response-#mailing_id-shares-overview"],"/#account_id/webhooks/events":[4,0,1,"get--#account_id-webhooks-events"],"/#account_id/members/#member_id/optout":[8,0,1,"get--#account_id-members-#member_id-optout"],"/#account_id/webhooks":[4,3,1,"delete--#account_id-webhooks"],"/#account_id/fields/#field_id":[10,3,1,"delete--#account_id-fields-#field_id"],"/#account_id/response/#mailing_id":[5,0,1,"get--#account_id-response-#mailing_id"],"/#account_id/groups/#member_group_id/members/remove":[13,3,1,"delete--#account_id-groups-#member_group_id-members-remove"],"/#account_id/searches":[7,2,1,"post--#account_id-searches"],"/#account_id/members/imports":[8,0,1,"get--#account_id-members-imports"],"/#account_id/forwards/#mailing_id/#member_id":[9,2,1,"post--#account_id-forwards-#mailing_id-#member_id"],"/#account_id/response/#mailing_id/customer_share_clicks":[5,0,1,"get--#account_id-response-#mailing_id-customer_share_clicks"],"/#account_id/mailings/#mailing_id/messages/#member_id":[9,0,1,"get--#account_id-mailings-#mailing_id-messages-#member_id"],"/#account_id/members/#member_id/mailings":[8,0,1,"get--#account_id-members-#member_id-mailings"],"/#account_id/groups/#from_group_id/#to_group_id/members/copy":[13,1,1,"put--#account_id-groups-#from_group_id-#to_group_id-members-copy"],"/#account_id/triggers":[14,2,1,"post--#account_id-triggers"],"/#account_id/triggers/#trigger_id":[14,3,1,"delete--#account_id-triggers-#trigger_id"],"/#account_id/members/delete":[8,1,1,"put--#account_id-members-delete"],"/#account_id/mailings/#mailing_id/groups":[9,0,1,"get--#account_id-mailings-#mailing_id-groups"],"/#account_id/response/#mailing_id/forwards":[5,0,1,"get--#account_id-response-#mailing_id-forwards"],"/#account_id/members/#member_id":[8,3,1,"delete--#account_id-members-#member_id"],"/#account_id/triggers/#trigger_id/mailings":[14,0,1,"get--#account_id-triggers-#trigger_id-mailings"],"/#account_id/searches/#search_id/members":[7,0,1,"get--#account_id-searches-#search_id-members"],"/#account_id/members/status/:status_from/to/:status_to":[8,1,1,"put--#account_id-members-status--status_from-to--status_to"],"/#account_id/response/#mailing_id/sends":[5,0,1,"get--#account_id-response-#mailing_id-sends"],"/#account_id/members":[8,3,1,"delete--#account_id-members"],"/#account_id/members/email/:email":[8,0,1,"get--#account_id-members-email--email"],"/#account_id/response/#mailing_id/links":[5,0,1,"get--#account_id-response-#mailing_id-links"],"/#account_id/searches/#search_id":[7,3,1,"delete--#account_id-searches-#search_id"],"/#account_id/members/imports/#import_id/members":[8,0,1,"get--#account_id-members-imports-#import_id-members"],"/#account_id/fields/#field_id/clear":[10,2,1,"post--#account_id-fields-#field_id-clear"],"/#account_id/groups/#member_group_id/members":[13,3,1,"delete--#account_id-groups-#member_group_id-members"],"/#account_id/members/imports/#import_id":[8,0,1,"get--#account_id-members-imports-#import_id"],"/#account_id/response":[5,0,1,"get--#account_id-response"],"/#account_id/response/#mailing_id/opens":[5,0,1,"get--#account_id-response-#mailing_id-opens"],"/#account_id/members/imports/delete":[8,3,1,"delete--#account_id-members-imports-delete"],"/#account_id/mailings":[9,0,1,"get--#account_id-mailings"],"/#account_id/mailings/cancel/#mailing_id":[9,3,1,"delete--#account_id-mailings-cancel-#mailing_id"],"/#account_id/mailings/validate":[9,2,1,"post--#account_id-mailings-validate"],"/#account_id/response/#mailing_id/deliveries":[5,0,1,"get--#account_id-response-#mailing_id-deliveries"],"/#account_id/mailings/#mailing_id/members":[9,0,1,"get--#account_id-mailings-#mailing_id-members"],"/#account_id/response/#share_id/customer_share":[5,0,1,"get--#account_id-response-#share_id-customer_share"],"/#account_id/webhooks/#webhook_id":[4,3,1,"delete--#account_id-webhooks-#webhook_id"],"/#account_id/members/add":[8,2,1,"post--#account_id-members-add"],"/#account_id/members/email/optout/:email":[8,1,1,"put--#account_id-members-email-optout--email"],"/#account_id/response/#mailing_id/optouts":[5,0,1,"get--#account_id-response-#mailing_id-optouts"],"/#account_id/response/#mailing_id/shares":[5,0,1,"get--#account_id-response-#mailing_id-shares"],"/#account_id/groups/#member_group_id":[13,3,1,"delete--#account_id-groups-#member_group_id"],"/#account_id/mailings/#mailing_id":[9,3,1,"delete--#account_id-mailings-#mailing_id"],"/#account_id/members/#member_id/groups":[8,3,1,"delete--#account_id-members-#member_id-groups"],"/#account_id/groups":[13,2,1,"post--#account_id-groups"],"/#account_id/response/#mailing_id/clicks":[5,0,1,"get--#account_id-response-#mailing_id-clicks"],"/#account_id/mailings/#mailing_id/headsup":[9,0,1,"get--#account_id-mailings-#mailing_id-headsup"],"/#account_id/response/#mailing_id/signups":[5,0,1,"get--#account_id-response-#mailing_id-signups"],"/#account_id/response/#mailing_id/customer_shares":[5,0,1,"get--#account_id-response-#mailing_id-customer_shares"]}},terms:{all:[0,1,4,5,8,9,10,11,12,13,14],code:[0,1,6,3],change_typ:8,queri:[0,2,4],month:[0,5,9,14],four:[0,5],mile:0,least:0,follow:[0,1,4,5,7,9,11,13],link_target:[5,9],content:[1,11,6,9,3],privat:1,specif:[8,9,4],friendli:5,send:[1,9,4,3,5],program:1,customer_share_click:5,those:[1,12,5],group_upd:[12,4],sent:[5,8,12,9,14],curl_clos:[1,6,3],brown:[7,8],digit:5,everi:0,string:[0,4,5,7,8,9,10,12,13,14],fals:[1,3,4,5,6,7,8,9,10,13,14],webhook:[1,12,4],mailing_status:9,trigger_id:14,webview_share_click:5,affect:[7,8],member_add:[12,4],create_mail:9,new_boolean:10,foo:0,level:1,group_delet:[12,4],list:[0,1,2,4,5,7,8,9,10,11,12,13,14],upload:8,iter:2,"try":8,item:2,plaintext_onli:[9,14],div:[4,5,7,8,9,10,13,14],survey_id:14,setup:1,pleas:[1,8,11,9],prevent:2,work:[1,4],ten:0,sync:10,sign:[0,5,4],past:1,second:[0,7,14],field_creat:[12,4],further:1,shortcut_nam:10,click:[0,4,5,7,8,12,14],append:2,even:10,what:1,hide:[4,5,7,8,9,10,13,14],appear:[1,8],from_group_id:13,section:1,current:[1,8,12,9],delet:[1,4,7,8,9,10,12,13,14],"new":[1,4,5,7,8,9,10,11,13,14],net:[1,2,6,3],delivery_t:8,method:[5,8,13,4,9],can:[0,1,2,4,5,7,8,9,11,12,13],widget:[7,10,8,9,13],full:1,hash:0,datematch:0,displai:10,variat:9,gener:[0,8,12,14],onli:[5,8],here:[0,1,3,5,6,8],bodi:9,let:[1,4,10],address:[0,1,8,6,9],along:8,sinc:8,valu:[0,5,7,8,10,11],field_upd:[12,4],search:[0,1,8,9,7],survei:14,sender:[9,14],larger:2,queue:5,prior:9,action:[0,8],chang:[8,4],campaign:5,newbi:5,appli:[7,14],prefer:0,young:1,myemma:[4,5,7,8,9,13],filenam:8,customer_shar:5,"boolean":[0,1,5,7,8,9,10,13,14],curlopt_postfield:[1,3],total:5,jone:[7,5,8,13],select:[1,10],newslett:[7,8,13],describ:7,would:[0,1],commun:1,regist:4,two:[0,5],coverag:1,next:[0,1],create_webhook:4,few:[5,8],call:[1,2,3,4,6,8,12],criteria:7,member_add_to_group:[12,4],type:[1,3,4,5,6,7,10,9,14],until:2,more:[0,4,7,8,9,13],peopl:5,relat:[1,8,11,9],about:[10,8,12,4,9],notic:8,thide:[4,5,7,8,9,10,13,14],flag:[5,7,8,10,9,14],exce:2,indic:8,examin:1,particular:[1,4,5,8,10,12,9],in_progress:5,origin:9,must:[0,7,13,10],none:9,endpoint:[1,4,5,7,8,9,10,13,14],join:[0,7],hour:0,der:1,member_sinc:[0,5,7,8,9,13],uniqu:5,histori:8,soup:7,remain:[0,9],archiv:[5,9],member_optout:[12,4],drill:5,control:[1,11,9],quickstart:1,give:5,forward_mailing_id:5,email_domain:[0,5],share:[0,5,8,12,4],accept:[0,5,7,8,9,10,11,13,14],total_click:5,tag:[11,9],want:[1,12,13,5],occur:[7,12],some_numeric_field:0,delai:14,alwai:0,webhook_event_id:4,cours:1,multipl:[10,8],first_nam:[1,3,5,7,8,9,10,11,13,14],started_or_finish:[9,14],anoth:[9,13],get:[1,4,5,6,7,8,9,10,13,14],message_open:[12,4],html_bodi:[9,14],share_statu:5,push_offset:14,del_statu:5,tild:5,num_members_upd:8,simpl:0,chri:9,pizza:[7,8],map:0,autent:1,referenc:7,xxxx:6,sundai:0,jacqu:1,membership:13,taco:[7,5,8,9,13],mai:12,end:[2,8],associ:[1,8,9,4,5],grow:1,welcom:11,add_onli:8,"short":0,json_encod:[1,3],optout:[5,8,12,13],num_dupl:8,favorit:10,correspond:[0,1],greet:11,predic:[0,1],issu:[1,10],"12t11":[7,5,8,9,13],combin:7,allow:[0,7,8],some_zipcode_field:0,signed_up:5,order:[5,10],michel:[8,9],mailing_nam:5,checkbox:10,fields_upd:8,over:2,soon:1,buyer:[7,8,9,13],comma:[9,13],is_dis:14,vari:8,paramet:[2,4,5,7,8,9,10,13,14],widget_typ:10,style:[0,4,5,7,8,9,10,13,14],group:[0,1,3,4,7,8,9,12,13,14],curl_setopt:[1,6,3],how:[7,1,2,4],fix:1,import_start:8,better:[13,14],platform:1,pend:[1,9],mailing_list:9,onc:9,mail:[0,1,4,5,8,11,12,9,14],hidden:13,main:1,might:[1,4],link_nam:[5,9],them:[8,9],messag:[4,5,8,12,11,9,14],"return":[0,1,4,5,7,8,9,10,12,13,14],greater:[0,8],thei:[0,9],food:10,timestamp:[0,5,12,9,10],spell:4,nashvil:1,dai:0,auth:1,framework:1,instead:[12,2,8],now:5,down:5,term:[0,1],alex:9,name:[0,4,5,7,8,9,10,11,13,14],edit:[7,1,14,10],curl_getinfo:[1,6,3],authent:[1,6,4,3],successufulli:4,separ:[1,9,13],each:[1,2,5,9,12,11,13],found:[8,9,4,14],updat:[4,7,8,9,10,12,13,14],denni:1,status:[8,9],domain:0,weight:[4,5,7,8,9,10,13,14],resum:9,individu:[5,8],hard:[0,5],last_nam:[1,3,5,7,8,9,10,11,13,14],"05t15":5,birthdai:[10,14],connect:[1,6,3],doug:1,our:[1,11,12,4,14],happen:[1,4,5],commiss:1,short_display_nam:10,special:[0,7,8,13],out:[0,1,4,5,7,8,10,13],variabl:[1,6,3],message_shar:[12,4],network:[5,12],private_api_kei:[1,6,3],check_multipl:10,categori:1,rel:0,print:6,correct:10,integr:1,benjamin:[1,8],qualifi:11,insid:1,advanc:0,contain:[0,5,7,13,10,9],given:[0,8,9,4],standard:[5,9],status_from:8,base:[5,8],recipient_search:9,dictionari:8,put:[4,7,8,9,10,13,14],span:[4,5,7,8,9,10,13,14],"13t23":[7,5,8],refer:[5,7,8,13,10,9],visit:11,could:1,omit:5,success:[1,3,7,8,9,13],filter:[0,1,7],search_id:7,pagin:[1,2],member_id:[5,7,8,9,12,13],summari:[1,5],assign:9,first:[0,1,10,5],oper:[0,1,7,14],rang:5,notifi:12,directli:0,curlopt_ssl_verifyp:[1,6,3],curl_init:[1,6,3],number:[5,2,13,3,10],placehold:[1,11],date:[0,5,8,10,11,14],unlik:9,alreadi:[10,8,9,13],done:8,plaintext_pref:[7,8,9,13],oppos:8,open:[0,3,4,5,6,7,8,12],payload:4,fanci:5,size:2,differ:0,"long":10,script:1,data:[1,3,4,5,10,12],system:[8,12,4,14],wrapper:1,attach:11,easier:12,friend:11,curlinfo_http_cod:[1,6,3],shell:0,option:[0,5,7,8,9,10,13,14],especi:8,signup:[0,1,3,4,5,8,12,14],copi:[8,13],member_upd:[12,4],specifi:[0,2,7,8,10,11,9,14],curl_exec:[1,6,3],curlopt_httphead:[1,6,3],member_signup:[12,4],create_search:7,part:[0,9],enclos:11,than:[0,1,2,3,12,13],with_plaintext:9,"02t10":[5,8],"02t11":[5,8],"02t13":5,nathan:8,whenev:8,provid:[1,5,8,12,9,14],remov:[12,8,13,4],mailing_start:4,rate:2,structur:7,charact:9,greg:8,trackabl:11,were:5,minut:0,danc:1,error_count:[7,8,9,13],pre:[4,5,7,8,9,10,13,14],cleaner:1,sai:0,share_id:5,signup_form_id:[0,8,12,9,14],plaintext:[5,9,14],pass:[1,3],ani:[0,1,2,7,8,9],have:[0,1,5,8,12,9],tabl:5,need:1,seen:5,"null":[7,8,13,10,9,14],kevin:[9,14],signup_mail:0,caus:14,built:1,inform:[1,4,6,8,9,10,13],check:[8,6,9],object_id:14,note:[1,8,9,4],also:[0,4,5,7,8,9,11,13],exampl:[0,1,3,5,6,7,11],take:[0,4],which:[0,1,4,8,10,12,9,14],some_number_field:0,singl:[0,1,3,4,5,8,10,12,13],excit:11,sure:1,delete_memb:13,normal:9,parent_mail:14,recipient_count:[5,9,14],previou:9,field_id:[10,12,14],last_run_at:7,most:14,pair:11,"class":[4,5,7,8,9,10,13,14],don:1,member_group_id:[8,9,13],mcconnel:[9,14],url:[1,3,4,5,6,12],mailing_finish:[12,4],clear:10,request:[1,2,3],doe:[0,5,7,8,9,10,13],member_status_upd:[12,4],declar:9,tech:4,determin:1,dataset:10,dow:0,recipi:9,"6db0cc7e6fdb2da589b65f29d90c96b6":9,show:[4,5,7,8,9,10,11,13,14],text:[10,11,12],radiu:0,syntax:[0,1,11,9],radio:10,font:[4,5,7,8,9,10,13,14],fine:9,find:[1,6,5],status_to:8,toast:[7,5,8,13],access:[1,5],giant:12,just:[0,1,9],pretti:8,column_ord:10,explain:[0,1],winner:9,activ:[1,5,7,8,13,9],figur:1,should:[1,2,3,7,8,11,9],templat:[11,14],share_count:5,count:[1,2,3,5],variou:[8,13],confirmed_opt_in:[7,8,9,13],familiar:1,express:0,account:[1,4,5,7,8,10,13,14],becaus:12,repo:1,cannot:[8,9,4],progress:9,report:[10,8],requir:[1,7,8,10,11,9],object:[1,13,5],favorite_food:[5,7,8,13,10,9],bar:0,organ:1,include_archiv:[5,9],"public":1,"default":[5,11,13,4,9],ref_member_id:5,message_share_click:[12,4],through:[1,8,4],where:[0,1,8,11,7],view:1,user:[0,8,9,13],set:[0,1,2,3,6,8,9,12,13],link_id:[0,5,12,9,14],see:[7,1,8],result:[0,1,2,5,8,9],respons:[0,1,2,4,5,7,8,9,10,13,14],fail:[5,9,4],themselv:2,member_field:[0,7],xxxxx:6,subject:[8,12,9,14],statu:[1,4,5,7,8,9,12,13],fancyonion:11,kei:[0,1,8,11,4],is_schedul:9,message_forward:[12,4],databas:8,someth:1,last_modified_at:[7,8,9,13],addresse:5,written:1,between:[0,7,2],clicked_uniqu:5,"import":[1,8,12,4,10],subscript:[1,3],entiti:1,curlopt_url:[1,6,3],email:[0,1,3,5,6,7,8,9,13],wide:14,extend:1,numer:10,http404:[4,5,7,8,9,10,13,14],job:13,entir:[0,8],share_click:5,to_group_id:13,come:1,curlopt_returntransf:[1,6,3],addit:[0,1,8,9,11,13],member_remove_from_group:[12,4],send_start:[0,9,14],protect:1,accident:2,last:[0,5,10],delimit:5,lentil:7,pertain:5,message_click:[12,4],curlopt_post:[1,3],audienc:[1,8,9],mang:0,improv:1,http500:14,seri:5,com:[4,5,6,7,8,9,11,13],zip_code_field:0,"03t15":[7,5,8,13],point:1,toni:[7,8],overview:[0,1,11,12,5],period:1,winner_id:9,colon:[7,11],optout_count:[7,8,9,13],suppli:9,cancel:9,tuesdai:0,duplic:5,quit:[5,8],user_id:4,recur:14,headsup:9,addition:[1,2],due:5,been:[1,8,10,5],mark:[8,9],whom:9,tshow:[4,5,7,8,9,10,13,14],trigger:[1,4,5,7,8,9,10,12,13,14],unsubscrib:0,treat:8,interest:[10,4],basic:[0,1,4,8,13,14],monthli:[7,8,13],member_delet:[12,4],hesit:1,blob:4,email_us:[0,5],mailing_mailing_id:5,mailing_id:[0,5,8,12,9,14],fire:[8,4,14],xxx:[1,3],rubi:1,argument:[0,5],link_ord:[5,9],input:1,extract:11,present:7,statist:8,"case":[1,8],look:[1,14,10],frozen:9,durat:9,email_error:[7,8,9,13],defin:[0,10,8,9],"while":0,smith:[7,5,8,9,13],outcom:5,abov:[0,1,8,7],error:[1,3,6,8,10,13],veen:1,loop:8,opt:[0,4,5,7,8,13],readi:9,deliv:5,recipient_group:9,equal:0,itself:0,new_statu:12,webhook_id:4,develop:1,recipient_memb:9,perform:8,make:[1,12,6,10],belong:[0,8,4],same:4,"12t16":[7,14],member:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14],python:1,html:9,split:9,document:[1,11,12],complet:[1,3,4,6,8,9],week:0,finish:[5,12,4],http:[1,2,3,4,5,6,11,9],href:[4,5,7,8,9,10,13,14],nest:0,someon:4,rais:[4,5,7,8,9,10,13,14],initi:[10,9],php:[1,6,3],studi:1,recent:[1,8],kept:11,center:0,min:5,well:[1,5],inherit:9,person:9,mailing_typ:[9,14],without:[0,1],command:1,thi:[0,1,4,5,7,8,9,10,12,13,14],undefin:0,http_code:[1,6,3],latest:11,construct:[0,7,9],identifi:8,paus:9,execut:[1,3],less:0,resp:[4,5,7,8,9,10,13,14],"_post":[1,3],against:0,aspect:13,recipient_email:9,source_filenam:8,yet:5,languag:1,"12t09":[7,8],display_nam:10,easi:[1,12,10],"01t00":8,had:0,littl:1,blog:4,add:[12,1,8,13,3],other:[1,8,9,3,5],curlopt_userpwd:[1,6,3],import_finish:[8,12,4],schedul:9,els:[1,6,3],save:7,match:[0,7],build:1,sanit:1,applic:[1,6,3],account_id:[1,3,4,5,6,7,8,9,10,12,13,14],handl:1,disposit:1,crud:[8,13,14],print_r:[6,3],mailing_statu:[9,14],know:[1,4,5],background:13,parent_mailing_id:[9,14],bit:1,insert:11,emma:[1,5,7,8,9,12,13],like:1,onion:11,deprec:4,arbitrari:8,manual:9,integ:[1,8,14,10,5],collect:1,api:[1,2,3,6,8,12],either:[0,5,7],bunch:0,output:9,group_id:[1,8,12,3],soft:[0,5],manag:[0,1,13,4],import_id:[8,12],www:[5,9],old:7,deal:[8,13],captur:1,arrai:[0,1,3,5,6,7,8,9,10,12,13,14],some:[1,11,5],field_delet:[12,4],certain:12,intern:10,sampl:[1,4,5,7,8,9,10,13,14],elaps:[2,9],unless:1,deleted_at:[7,8,13,10,9,14],some_string_field:0,librari:11,woodcock:1,emmarubi:1,bounce_count:[7,8,9,13],emmapython:1,public_kei:4,deliveri:5,broad:12,per:5,send_finish:[9,14],larg:[0,2],condit:7,three:9,network_cod:12,localhost:9,emmaphp:1,with_html_bodi:9,who:[0,5,8],bold:[4,5,7,8,9,10,13,14],event_typ:14,inspect:1,usag:[1,8,12],monsewicz:1,num_members_ad:8,fulli:11,from:[1,4,8,9,12,13,14],post:[1,3,4,7,8,9,10,12,13,14],group_creat:[12,4],gladi:[7,5,8,13],hurst:1,actual:5,zip:0,groups_upd:8,column:10,page:2,includ:[1,5,7,8,9,10,13],webview:9,mean:0,disabl:[9,14],block:[1,2],yyyi:5,own:1,member_data:[1,3],glob:0,bounc:[0,5],within:[0,8],encod:[9,4],delivery_typ:[5,8],compos:0,webview_shar:5,field_typ:10,active_count:[7,8,9,13],public_webview_url:9,pivot:5,your:[1,4,5,7,8,9,10,13],websit:11,fast:8,van:1,wai:[1,12],area:1,overus:2,group_nam:[8,12,13,9],support:12,unique_click:5,json:[0,1,3,4,6,7],submit:1,custom:[5,8,11,10],avail:[0,11,4],start:[1,2,8,4],interfac:12,send_at:[9,14],exceed:2,"var":3,interv:[0,14],fork:1,head:[1,6,9,3],form:[1,3,4,6,8,10,14],enough:2,forc:1,forward:[0,4,5,8,12,9],"31st":0,group_typ:[8,9,13],push_offset_unit:14,link:[0,4,5,11,9,14],line:[1,5],realli:1,"true":[0,1,2,3,4,6,7,8,9,10,13,14],archived_t:[9,14],info:4,pull:[1,2],made:1,possibl:[5,8,12],whether:8,maximum:2,tell:12,http403:9,record:[0,7,8],below:[0,1,8,12],http400:[7,8,9],limit:[5,2,8,9],some_array_field:0,otherwis:[1,8,10],start_t:14,mta:5,expect:1,notif:9,creat:[4,5,7,9,10,12,13,14],"int":5,retriev:[7,1,2,8,9],year:[0,5,9,14],repres:5,exist:[0,4,5,7,8,10,13],behavior:11,bob:[7,5],curl:[1,6],portland:1,probabl:14,echo:[1,3],successfulli:[5,8,9],mailing_subject:12,grp:13,todo:11,when:[8,12,4,9],detail:[1,4,7,8,9,10,13],invalid:[7,8,9],event:[4,7,8,13,12,9,14],field:[0,1,3,4,5,7,8,9,10,11,12,13,14],valid:[5,8,9,13],futur:1,num_skip:8,test:[5,6,7,13,9,14],ignor:8,you:[0,1,2,4,5,7,8,9,10,11,12,13],emmasdk:1,member_status_id:[7,5,8,9,13],public_api_kei:[1,6,3],stat:[5,9],claus:[0,7],event_nam:[12,4],e2ma:[1,2,6,3],error_messag:8,param:[9,4],app_messag:[1,3],ella:8,bulk:[1,8],receiv:[0,2,5,8,12,9],heads_up_email:9,longer:9,home:11,confirm:8,descript:[4,14],ohmyemma:1,portion:0,opted_out:5,time:[1,2,8,13,5],reply_to:[9,14],resource_url:12,hello:[11,9,14]},objtypes:{"0":"http:get","1":"http:put","2":"http:post","3":"http:delete"},titles:["Search Syntax","Emma API","Pagination","PHP Signup Example","Webhooks","Response","PHP Get Member By Email Example","Searches","Members","Mailings","Fields","Placeholder Syntax","Webhook Usage","Groups","Triggers"],objnames:{"0":["http","get","HTTP get"],"1":["http","put","HTTP put"],"2":["http","post","HTTP post"],"3":["http","delete","HTTP delete"]},filenames:["member_search","index","pagination","php_signup_example","api/external/webhooks","api/external/response","php_get_member_example","api/external/searches","api/external/members","api/external/mailings","api/external/fields","placeholders","webhooks","api/external/groups","api/external/triggers"]}) \ No newline at end of file diff --git a/webhooks.html b/webhooks.html index 525d269..4c3a248 100644 --- a/webhooks.html +++ b/webhooks.html @@ -507,7 +507,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Apr 04, 2013 at 11:34 AM. + Last updated on Apr 12, 2013 at 04:17 PM. </div> </body> </html> \ No newline at end of file From 749f3fe8e7dcc756aa752fabee723531f8bd6134 Mon Sep 17 00:00:00 2001 From: Jason Bynum <jason.bynum@myemma.com> Date: Fri, 26 Apr 2013 14:56:23 -0500 Subject: [PATCH 040/219] Update audience documentation. --- _sources/index.txt | 4 ---- api/external/fields.html | 2 +- api/external/groups.html | 2 +- api/external/mailings.html | 2 +- api/external/members.html | 2 +- api/external/response.html | 2 +- api/external/searches.html | 4 ++-- api/external/triggers.html | 8 ++++---- api/external/webhooks.html | 2 +- genindex.html | 2 +- http-routingtable.html | 2 +- index.html | 4 +--- member_search.html | 2 +- pagination.html | 2 +- php_get_member_example.html | 2 +- php_signup_example.html | 2 +- placeholders.html | 2 +- search.html | 2 +- searchindex.js | 2 +- webhooks.html | 2 +- 20 files changed, 23 insertions(+), 29 deletions(-) diff --git a/_sources/index.txt b/_sources/index.txt index bed278d..fa987d1 100644 --- a/_sources/index.txt +++ b/_sources/index.txt @@ -39,10 +39,6 @@ This collection is young, but growing, and includes wrappers commissioned by Emm **Objective-C** `EmmaSDK <https://github.com/myemma/EmmaSDK>`_: Commissioned by Emma and built by Portland developer `Benjamin Van Der Veen <https://github.com/bvanderveen>`_. -**.NET Framework** - Coming Soon! - - Quickstart ---------- diff --git a/api/external/fields.html b/api/external/fields.html index 3966b3a..8dac0b4 100644 --- a/api/external/fields.html +++ b/api/external/fields.html @@ -415,7 +415,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Apr 12, 2013 at 04:17 PM. + Last updated on Apr 26, 2013 at 02:56 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/groups.html b/api/external/groups.html index 74a125b..f632bdd 100644 --- a/api/external/groups.html +++ b/api/external/groups.html @@ -702,7 +702,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Apr 12, 2013 at 04:17 PM. + Last updated on Apr 26, 2013 at 02:56 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/mailings.html b/api/external/mailings.html index 7e74ded..2b1da39 100644 --- a/api/external/mailings.html +++ b/api/external/mailings.html @@ -810,7 +810,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Apr 12, 2013 at 04:17 PM. + Last updated on Apr 26, 2013 at 02:56 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/members.html b/api/external/members.html index c66d957..8401b3c 100644 --- a/api/external/members.html +++ b/api/external/members.html @@ -1217,7 +1217,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Apr 12, 2013 at 04:17 PM. + Last updated on Apr 26, 2013 at 02:56 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/response.html b/api/external/response.html index 8ea4e55..3da6756 100644 --- a/api/external/response.html +++ b/api/external/response.html @@ -1019,7 +1019,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Apr 12, 2013 at 04:17 PM. + Last updated on Apr 26, 2013 at 02:56 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/searches.html b/api/external/searches.html index 7cb3398..d6e9657 100644 --- a/api/external/searches.html +++ b/api/external/searches.html @@ -199,7 +199,7 @@ <h1>Searches<a class="headerlink" href="#searches" title="Permalink to this head "name": "Test Search", "criteria": "[\"or\", [\"group\", \"eq\", \"Monthly Newsletter\"],[\"group\", \"eq\", \"Widget Buyers\"]]", "deleted_at": null, - "last_run_at": "@D:2013-04-12T16:17:36", + "last_run_at": "@D:2013-04-26T14:56:15", "active_count": 2, "account_id": 100 } @@ -511,7 +511,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Apr 12, 2013 at 04:17 PM. + Last updated on Apr 26, 2013 at 02:56 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/triggers.html b/api/external/triggers.html index f372b5d..8524aea 100644 --- a/api/external/triggers.html +++ b/api/external/triggers.html @@ -148,7 +148,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": 203, "push_offset_units": "0:-14:0:0", - "start_ts": "@D:2013-04-12T16:17:33", + "start_ts": "@D:2013-04-26T14:56:13", "trigger_id": 100, "signups": null, "push_offset": "@I:-1209600.0", @@ -189,7 +189,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": null, "push_offset_units": "0:3:0:0", - "start_ts": "@D:2013-04-12T16:17:33", + "start_ts": "@D:2013-04-26T14:56:13", "trigger_id": 101, "signups": [ 1, @@ -326,7 +326,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": 203, "push_offset_units": "0:-14:0:0", - "start_ts": "@D:2013-04-12T16:17:33", + "start_ts": "@D:2013-04-26T14:56:13", "trigger_id": 100, "signups": null, "push_offset": "@I:-1209600.0", @@ -499,7 +499,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Apr 12, 2013 at 04:17 PM. + Last updated on Apr 26, 2013 at 02:56 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/webhooks.html b/api/external/webhooks.html index 8283e6a..e799400 100644 --- a/api/external/webhooks.html +++ b/api/external/webhooks.html @@ -487,7 +487,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Apr 12, 2013 at 04:17 PM. + Last updated on Apr 26, 2013 at 02:56 PM. </div> </body> </html> \ No newline at end of file diff --git a/genindex.html b/genindex.html index a5c0275..0ee6f73 100644 --- a/genindex.html +++ b/genindex.html @@ -146,7 +146,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Apr 12, 2013 at 04:17 PM. + Last updated on Apr 26, 2013 at 02:56 PM. </div> </body> </html> \ No newline at end of file diff --git a/http-routingtable.html b/http-routingtable.html index 077fb04..4354244 100644 --- a/http-routingtable.html +++ b/http-routingtable.html @@ -607,7 +607,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Apr 12, 2013 at 04:17 PM. + Last updated on Apr 26, 2013 at 02:56 PM. </div> </body> </html> \ No newline at end of file diff --git a/index.html b/index.html index 27bb4ff..696d3bf 100644 --- a/index.html +++ b/index.html @@ -150,8 +150,6 @@ <h2>API Wrappers<a class="headerlink" href="#api-wrappers" title="Permalink to t <dd><a class="reference external" href="https://github.com/myemma/EmmaRuby">EmmaRuby</a>: Commissioned by Emma and built by Nashville developer <a class="reference external" href="https://github.com/dennismonsewicz">Dennis Monsewicz</a>.</dd> <dt><strong>Objective-C</strong></dt> <dd><a class="reference external" href="https://github.com/myemma/EmmaSDK">EmmaSDK</a>: Commissioned by Emma and built by Portland developer <a class="reference external" href="https://github.com/bvanderveen">Benjamin Van Der Veen</a>.</dd> -<dt><strong>.NET Framework</strong></dt> -<dd>Coming Soon!</dd> </dl> </div> <div class="section" id="quickstart"> @@ -344,7 +342,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Apr 12, 2013 at 04:17 PM. + Last updated on Apr 26, 2013 at 02:56 PM. </div> </body> </html> \ No newline at end of file diff --git a/member_search.html b/member_search.html index d97d1fe..0567dc9 100644 --- a/member_search.html +++ b/member_search.html @@ -256,7 +256,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Apr 12, 2013 at 04:17 PM. + Last updated on Apr 26, 2013 at 02:56 PM. </div> </body> </html> \ No newline at end of file diff --git a/pagination.html b/pagination.html index 6469794..42cbae5 100644 --- a/pagination.html +++ b/pagination.html @@ -168,7 +168,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Apr 12, 2013 at 04:17 PM. + Last updated on Apr 26, 2013 at 02:56 PM. </div> </body> </html> \ No newline at end of file diff --git a/php_get_member_example.html b/php_get_member_example.html index 056f23a..35f0969 100644 --- a/php_get_member_example.html +++ b/php_get_member_example.html @@ -183,7 +183,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Apr 12, 2013 at 04:17 PM. + Last updated on Apr 26, 2013 at 02:56 PM. </div> </body> </html> \ No newline at end of file diff --git a/php_signup_example.html b/php_signup_example.html index 3389649..af623e5 100644 --- a/php_signup_example.html +++ b/php_signup_example.html @@ -205,7 +205,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Apr 12, 2013 at 04:17 PM. + Last updated on Apr 26, 2013 at 02:56 PM. </div> </body> </html> \ No newline at end of file diff --git a/placeholders.html b/placeholders.html index b8f6a19..e5a7415 100644 --- a/placeholders.html +++ b/placeholders.html @@ -183,7 +183,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Apr 12, 2013 at 04:17 PM. + Last updated on Apr 26, 2013 at 02:56 PM. </div> </body> </html> \ No newline at end of file diff --git a/search.html b/search.html index da95baf..82ceacf 100644 --- a/search.html +++ b/search.html @@ -153,7 +153,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Apr 12, 2013 at 04:17 PM. + Last updated on Apr 26, 2013 at 02:56 PM. </div> </body> </html> \ No newline at end of file diff --git a/searchindex.js b/searchindex.js index 1d804c9..646e585 100644 --- a/searchindex.js +++ b/searchindex.js @@ -1 +1 @@ -Search.setIndex({objects:{"":{"/#account_id/members/#member_id/groups/remove":[8,1,1,"put--#account_id-members-#member_id-groups-remove"],"/#account_id/mailings/#mailing_id/winner/#winner_id":[9,2,1,"post--#account_id-mailings-#mailing_id-winner-#winner_id"],"/#account_id/response/#mailing_id/in_progress":[5,0,1,"get--#account_id-response-#mailing_id-in_progress"],"/#account_id/members/groups/remove":[8,1,1,"put--#account_id-members-groups-remove"],"/#account_id/mailings/#mailing_id/searches":[9,0,1,"get--#account_id-mailings-#mailing_id-searches"],"/#account_id/fields":[10,2,1,"post--#account_id-fields"],"/#account_id/members/#group_id/copy":[8,1,1,"put--#account_id-members-#group_id-copy"],"/#account_id/members/status":[8,1,1,"put--#account_id-members-status"],"/#account_id/response/#mailing_id/shares/overview":[5,0,1,"get--#account_id-response-#mailing_id-shares-overview"],"/#account_id/webhooks/events":[4,0,1,"get--#account_id-webhooks-events"],"/#account_id/members/#member_id/optout":[8,0,1,"get--#account_id-members-#member_id-optout"],"/#account_id/webhooks":[4,3,1,"delete--#account_id-webhooks"],"/#account_id/fields/#field_id":[10,3,1,"delete--#account_id-fields-#field_id"],"/#account_id/response/#mailing_id":[5,0,1,"get--#account_id-response-#mailing_id"],"/#account_id/groups/#member_group_id/members/remove":[13,3,1,"delete--#account_id-groups-#member_group_id-members-remove"],"/#account_id/searches":[7,2,1,"post--#account_id-searches"],"/#account_id/members/imports":[8,0,1,"get--#account_id-members-imports"],"/#account_id/forwards/#mailing_id/#member_id":[9,2,1,"post--#account_id-forwards-#mailing_id-#member_id"],"/#account_id/response/#mailing_id/customer_share_clicks":[5,0,1,"get--#account_id-response-#mailing_id-customer_share_clicks"],"/#account_id/mailings/#mailing_id/messages/#member_id":[9,0,1,"get--#account_id-mailings-#mailing_id-messages-#member_id"],"/#account_id/members/#member_id/mailings":[8,0,1,"get--#account_id-members-#member_id-mailings"],"/#account_id/groups/#from_group_id/#to_group_id/members/copy":[13,1,1,"put--#account_id-groups-#from_group_id-#to_group_id-members-copy"],"/#account_id/triggers":[14,2,1,"post--#account_id-triggers"],"/#account_id/triggers/#trigger_id":[14,3,1,"delete--#account_id-triggers-#trigger_id"],"/#account_id/members/delete":[8,1,1,"put--#account_id-members-delete"],"/#account_id/mailings/#mailing_id/groups":[9,0,1,"get--#account_id-mailings-#mailing_id-groups"],"/#account_id/response/#mailing_id/forwards":[5,0,1,"get--#account_id-response-#mailing_id-forwards"],"/#account_id/members/#member_id":[8,3,1,"delete--#account_id-members-#member_id"],"/#account_id/triggers/#trigger_id/mailings":[14,0,1,"get--#account_id-triggers-#trigger_id-mailings"],"/#account_id/searches/#search_id/members":[7,0,1,"get--#account_id-searches-#search_id-members"],"/#account_id/members/status/:status_from/to/:status_to":[8,1,1,"put--#account_id-members-status--status_from-to--status_to"],"/#account_id/response/#mailing_id/sends":[5,0,1,"get--#account_id-response-#mailing_id-sends"],"/#account_id/members":[8,3,1,"delete--#account_id-members"],"/#account_id/members/email/:email":[8,0,1,"get--#account_id-members-email--email"],"/#account_id/response/#mailing_id/links":[5,0,1,"get--#account_id-response-#mailing_id-links"],"/#account_id/searches/#search_id":[7,3,1,"delete--#account_id-searches-#search_id"],"/#account_id/members/imports/#import_id/members":[8,0,1,"get--#account_id-members-imports-#import_id-members"],"/#account_id/fields/#field_id/clear":[10,2,1,"post--#account_id-fields-#field_id-clear"],"/#account_id/groups/#member_group_id/members":[13,3,1,"delete--#account_id-groups-#member_group_id-members"],"/#account_id/members/imports/#import_id":[8,0,1,"get--#account_id-members-imports-#import_id"],"/#account_id/response":[5,0,1,"get--#account_id-response"],"/#account_id/response/#mailing_id/opens":[5,0,1,"get--#account_id-response-#mailing_id-opens"],"/#account_id/members/imports/delete":[8,3,1,"delete--#account_id-members-imports-delete"],"/#account_id/mailings":[9,0,1,"get--#account_id-mailings"],"/#account_id/mailings/cancel/#mailing_id":[9,3,1,"delete--#account_id-mailings-cancel-#mailing_id"],"/#account_id/mailings/validate":[9,2,1,"post--#account_id-mailings-validate"],"/#account_id/response/#mailing_id/deliveries":[5,0,1,"get--#account_id-response-#mailing_id-deliveries"],"/#account_id/mailings/#mailing_id/members":[9,0,1,"get--#account_id-mailings-#mailing_id-members"],"/#account_id/response/#share_id/customer_share":[5,0,1,"get--#account_id-response-#share_id-customer_share"],"/#account_id/webhooks/#webhook_id":[4,3,1,"delete--#account_id-webhooks-#webhook_id"],"/#account_id/members/add":[8,2,1,"post--#account_id-members-add"],"/#account_id/members/email/optout/:email":[8,1,1,"put--#account_id-members-email-optout--email"],"/#account_id/response/#mailing_id/optouts":[5,0,1,"get--#account_id-response-#mailing_id-optouts"],"/#account_id/response/#mailing_id/shares":[5,0,1,"get--#account_id-response-#mailing_id-shares"],"/#account_id/groups/#member_group_id":[13,3,1,"delete--#account_id-groups-#member_group_id"],"/#account_id/mailings/#mailing_id":[9,3,1,"delete--#account_id-mailings-#mailing_id"],"/#account_id/members/#member_id/groups":[8,3,1,"delete--#account_id-members-#member_id-groups"],"/#account_id/groups":[13,2,1,"post--#account_id-groups"],"/#account_id/response/#mailing_id/clicks":[5,0,1,"get--#account_id-response-#mailing_id-clicks"],"/#account_id/mailings/#mailing_id/headsup":[9,0,1,"get--#account_id-mailings-#mailing_id-headsup"],"/#account_id/response/#mailing_id/signups":[5,0,1,"get--#account_id-response-#mailing_id-signups"],"/#account_id/response/#mailing_id/customer_shares":[5,0,1,"get--#account_id-response-#mailing_id-customer_shares"]}},terms:{all:[0,1,4,5,8,9,10,11,12,13,14],code:[0,1,6,3],change_typ:8,queri:[0,2,4],month:[0,5,9,14],four:[0,5],mile:0,least:0,follow:[0,1,4,5,7,9,11,13],link_target:[5,9],content:[1,11,6,9,3],privat:1,specif:[8,9,4],friendli:5,send:[1,9,4,3,5],program:1,customer_share_click:5,those:[1,12,5],group_upd:[12,4],sent:[5,8,12,9,14],curl_clos:[1,6,3],brown:[7,8],digit:5,everi:0,string:[0,4,5,7,8,9,10,12,13,14],fals:[1,3,4,5,6,7,8,9,10,13,14],webhook:[1,12,4],mailing_status:9,trigger_id:14,webview_share_click:5,affect:[7,8],member_add:[12,4],create_mail:9,new_boolean:10,foo:0,level:1,group_delet:[12,4],list:[0,1,2,4,5,7,8,9,10,11,12,13,14],upload:8,iter:2,"try":8,item:2,plaintext_onli:[9,14],div:[4,5,7,8,9,10,13,14],survey_id:14,setup:1,pleas:[1,8,11,9],prevent:2,work:[1,4],ten:0,sync:10,sign:[0,5,4],past:1,second:[0,7,14],field_creat:[12,4],further:1,shortcut_nam:10,click:[0,4,5,7,8,12,14],append:2,even:10,what:1,hide:[4,5,7,8,9,10,13,14],appear:[1,8],from_group_id:13,section:1,current:[1,8,12,9],delet:[1,4,7,8,9,10,12,13,14],"new":[1,4,5,7,8,9,10,11,13,14],net:[1,2,6,3],delivery_t:8,method:[5,8,13,4,9],can:[0,1,2,4,5,7,8,9,11,12,13],widget:[7,10,8,9,13],full:1,hash:0,datematch:0,displai:10,variat:9,gener:[0,8,12,14],onli:[5,8],here:[0,1,3,5,6,8],bodi:9,let:[1,4,10],address:[0,1,8,6,9],along:8,sinc:8,valu:[0,5,7,8,10,11],field_upd:[12,4],search:[0,1,8,9,7],survei:14,sender:[9,14],larger:2,queue:5,prior:9,action:[0,8],chang:[8,4],campaign:5,newbi:5,appli:[7,14],prefer:0,young:1,myemma:[4,5,7,8,9,13],filenam:8,customer_shar:5,"boolean":[0,1,5,7,8,9,10,13,14],curlopt_postfield:[1,3],total:5,jone:[7,5,8,13],select:[1,10],newslett:[7,8,13],describ:7,would:[0,1],commun:1,regist:4,two:[0,5],coverag:1,next:[0,1],create_webhook:4,few:[5,8],call:[1,2,3,4,6,8,12],criteria:7,member_add_to_group:[12,4],type:[1,3,4,5,6,7,10,9,14],until:2,more:[0,4,7,8,9,13],peopl:5,relat:[1,8,11,9],about:[10,8,12,4,9],notic:8,thide:[4,5,7,8,9,10,13,14],flag:[5,7,8,10,9,14],exce:2,indic:8,examin:1,particular:[1,4,5,8,10,12,9],in_progress:5,origin:9,must:[0,7,13,10],none:9,endpoint:[1,4,5,7,8,9,10,13,14],join:[0,7],hour:0,der:1,member_sinc:[0,5,7,8,9,13],uniqu:5,histori:8,soup:7,remain:[0,9],archiv:[5,9],member_optout:[12,4],drill:5,control:[1,11,9],quickstart:1,give:5,forward_mailing_id:5,email_domain:[0,5],share:[0,5,8,12,4],accept:[0,5,7,8,9,10,11,13,14],total_click:5,tag:[11,9],want:[1,12,13,5],occur:[7,12],some_numeric_field:0,delai:14,alwai:0,webhook_event_id:4,cours:1,multipl:[10,8],first_nam:[1,3,5,7,8,9,10,11,13,14],started_or_finish:[9,14],anoth:[9,13],get:[1,4,5,6,7,8,9,10,13,14],message_open:[12,4],html_bodi:[9,14],share_statu:5,push_offset:14,del_statu:5,tild:5,num_members_upd:8,simpl:0,chri:9,pizza:[7,8],map:0,autent:1,referenc:7,xxxx:6,sundai:0,jacqu:1,membership:13,taco:[7,5,8,9,13],mai:12,end:[2,8],associ:[1,8,9,4,5],grow:1,welcom:11,add_onli:8,"short":0,json_encod:[1,3],optout:[5,8,12,13],num_dupl:8,favorit:10,correspond:[0,1],greet:11,predic:[0,1],issu:[1,10],"12t11":[7,5,8,9,13],combin:7,allow:[0,7,8],some_zipcode_field:0,signed_up:5,order:[5,10],michel:[8,9],mailing_nam:5,checkbox:10,fields_upd:8,over:2,soon:1,buyer:[7,8,9,13],comma:[9,13],is_dis:14,vari:8,paramet:[2,4,5,7,8,9,10,13,14],widget_typ:10,style:[0,4,5,7,8,9,10,13,14],group:[0,1,3,4,7,8,9,12,13,14],curl_setopt:[1,6,3],how:[7,1,2,4],fix:1,import_start:8,better:[13,14],platform:1,pend:[1,9],mailing_list:9,onc:9,mail:[0,1,4,5,8,11,12,9,14],hidden:13,main:1,might:[1,4],link_nam:[5,9],them:[8,9],messag:[4,5,8,12,11,9,14],"return":[0,1,4,5,7,8,9,10,12,13,14],greater:[0,8],thei:[0,9],food:10,timestamp:[0,5,12,9,10],spell:4,nashvil:1,dai:0,auth:1,framework:1,instead:[12,2,8],now:5,down:5,term:[0,1],alex:9,name:[0,4,5,7,8,9,10,11,13,14],edit:[7,1,14,10],curl_getinfo:[1,6,3],authent:[1,6,4,3],successufulli:4,separ:[1,9,13],each:[1,2,5,9,12,11,13],found:[8,9,4,14],updat:[4,7,8,9,10,12,13,14],denni:1,status:[8,9],domain:0,weight:[4,5,7,8,9,10,13,14],resum:9,individu:[5,8],hard:[0,5],last_nam:[1,3,5,7,8,9,10,11,13,14],"05t15":5,birthdai:[10,14],connect:[1,6,3],doug:1,our:[1,11,12,4,14],happen:[1,4,5],commiss:1,short_display_nam:10,special:[0,7,8,13],out:[0,1,4,5,7,8,10,13],variabl:[1,6,3],message_shar:[12,4],network:[5,12],private_api_kei:[1,6,3],check_multipl:10,categori:1,rel:0,print:6,correct:10,integr:1,benjamin:[1,8],qualifi:11,insid:1,advanc:0,contain:[0,5,7,13,10,9],given:[0,8,9,4],standard:[5,9],status_from:8,base:[5,8],recipient_search:9,dictionari:8,put:[4,7,8,9,10,13,14],span:[4,5,7,8,9,10,13,14],"13t23":[7,5,8],refer:[5,7,8,13,10,9],visit:11,could:1,omit:5,success:[1,3,7,8,9,13],filter:[0,1,7],search_id:7,pagin:[1,2],member_id:[5,7,8,9,12,13],summari:[1,5],assign:9,first:[0,1,10,5],oper:[0,1,7,14],rang:5,notifi:12,directli:0,curlopt_ssl_verifyp:[1,6,3],curl_init:[1,6,3],number:[5,2,13,3,10],placehold:[1,11],date:[0,5,8,10,11,14],unlik:9,alreadi:[10,8,9,13],done:8,plaintext_pref:[7,8,9,13],oppos:8,open:[0,3,4,5,6,7,8,12],payload:4,fanci:5,size:2,differ:0,"long":10,script:1,data:[1,3,4,5,10,12],system:[8,12,4,14],wrapper:1,attach:11,easier:12,friend:11,curlinfo_http_cod:[1,6,3],shell:0,option:[0,5,7,8,9,10,13,14],especi:8,signup:[0,1,3,4,5,8,12,14],copi:[8,13],member_upd:[12,4],specifi:[0,2,7,8,10,11,9,14],curl_exec:[1,6,3],curlopt_httphead:[1,6,3],member_signup:[12,4],create_search:7,part:[0,9],enclos:11,than:[0,1,2,3,12,13],with_plaintext:9,"02t10":[5,8],"02t11":[5,8],"02t13":5,nathan:8,whenev:8,provid:[1,5,8,12,9,14],remov:[12,8,13,4],mailing_start:4,rate:2,structur:7,charact:9,greg:8,trackabl:11,were:5,minut:0,danc:1,error_count:[7,8,9,13],pre:[4,5,7,8,9,10,13,14],cleaner:1,sai:0,share_id:5,signup_form_id:[0,8,12,9,14],plaintext:[5,9,14],pass:[1,3],ani:[0,1,2,7,8,9],have:[0,1,5,8,12,9],tabl:5,need:1,seen:5,"null":[7,8,13,10,9,14],kevin:[9,14],signup_mail:0,caus:14,built:1,inform:[1,4,6,8,9,10,13],check:[8,6,9],object_id:14,note:[1,8,9,4],also:[0,4,5,7,8,9,11,13],exampl:[0,1,3,5,6,7,11],take:[0,4],which:[0,1,4,8,10,12,9,14],some_number_field:0,singl:[0,1,3,4,5,8,10,12,13],excit:11,sure:1,delete_memb:13,normal:9,parent_mail:14,recipient_count:[5,9,14],previou:9,field_id:[10,12,14],last_run_at:7,most:14,pair:11,"class":[4,5,7,8,9,10,13,14],don:1,member_group_id:[8,9,13],mcconnel:[9,14],url:[1,3,4,5,6,12],mailing_finish:[12,4],clear:10,request:[1,2,3],doe:[0,5,7,8,9,10,13],member_status_upd:[12,4],declar:9,tech:4,determin:1,dataset:10,dow:0,recipi:9,"6db0cc7e6fdb2da589b65f29d90c96b6":9,show:[4,5,7,8,9,10,11,13,14],text:[10,11,12],radiu:0,syntax:[0,1,11,9],radio:10,font:[4,5,7,8,9,10,13,14],fine:9,find:[1,6,5],status_to:8,toast:[7,5,8,13],access:[1,5],giant:12,just:[0,1,9],pretti:8,column_ord:10,explain:[0,1],winner:9,activ:[1,5,7,8,13,9],figur:1,should:[1,2,3,7,8,11,9],templat:[11,14],share_count:5,count:[1,2,3,5],variou:[8,13],confirmed_opt_in:[7,8,9,13],familiar:1,express:0,account:[1,4,5,7,8,10,13,14],becaus:12,repo:1,cannot:[8,9,4],progress:9,report:[10,8],requir:[1,7,8,10,11,9],object:[1,13,5],favorite_food:[5,7,8,13,10,9],bar:0,organ:1,include_archiv:[5,9],"public":1,"default":[5,11,13,4,9],ref_member_id:5,message_share_click:[12,4],through:[1,8,4],where:[0,1,8,11,7],view:1,user:[0,8,9,13],set:[0,1,2,3,6,8,9,12,13],link_id:[0,5,12,9,14],see:[7,1,8],result:[0,1,2,5,8,9],respons:[0,1,2,4,5,7,8,9,10,13,14],fail:[5,9,4],themselv:2,member_field:[0,7],xxxxx:6,subject:[8,12,9,14],statu:[1,4,5,7,8,9,12,13],fancyonion:11,kei:[0,1,8,11,4],is_schedul:9,message_forward:[12,4],databas:8,someth:1,last_modified_at:[7,8,9,13],addresse:5,written:1,between:[0,7,2],clicked_uniqu:5,"import":[1,8,12,4,10],subscript:[1,3],entiti:1,curlopt_url:[1,6,3],email:[0,1,3,5,6,7,8,9,13],wide:14,extend:1,numer:10,http404:[4,5,7,8,9,10,13,14],job:13,entir:[0,8],share_click:5,to_group_id:13,come:1,curlopt_returntransf:[1,6,3],addit:[0,1,8,9,11,13],member_remove_from_group:[12,4],send_start:[0,9,14],protect:1,accident:2,last:[0,5,10],delimit:5,lentil:7,pertain:5,message_click:[12,4],curlopt_post:[1,3],audienc:[1,8,9],mang:0,improv:1,http500:14,seri:5,com:[4,5,6,7,8,9,11,13],zip_code_field:0,"03t15":[7,5,8,13],point:1,toni:[7,8],overview:[0,1,11,12,5],period:1,winner_id:9,colon:[7,11],optout_count:[7,8,9,13],suppli:9,cancel:9,tuesdai:0,duplic:5,quit:[5,8],user_id:4,recur:14,headsup:9,addition:[1,2],due:5,been:[1,8,10,5],mark:[8,9],whom:9,tshow:[4,5,7,8,9,10,13,14],trigger:[1,4,5,7,8,9,10,12,13,14],unsubscrib:0,treat:8,interest:[10,4],basic:[0,1,4,8,13,14],monthli:[7,8,13],member_delet:[12,4],hesit:1,blob:4,email_us:[0,5],mailing_mailing_id:5,mailing_id:[0,5,8,12,9,14],fire:[8,4,14],xxx:[1,3],rubi:1,argument:[0,5],link_ord:[5,9],input:1,extract:11,present:7,statist:8,"case":[1,8],look:[1,14,10],frozen:9,durat:9,email_error:[7,8,9,13],defin:[0,10,8,9],"while":0,smith:[7,5,8,9,13],outcom:5,abov:[0,1,8,7],error:[1,3,6,8,10,13],veen:1,loop:8,opt:[0,4,5,7,8,13],readi:9,deliv:5,recipient_group:9,equal:0,itself:0,new_statu:12,webhook_id:4,develop:1,recipient_memb:9,perform:8,make:[1,12,6,10],belong:[0,8,4],same:4,"12t16":[7,14],member:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14],python:1,html:9,split:9,document:[1,11,12],complet:[1,3,4,6,8,9],week:0,finish:[5,12,4],http:[1,2,3,4,5,6,11,9],href:[4,5,7,8,9,10,13,14],nest:0,someon:4,rais:[4,5,7,8,9,10,13,14],initi:[10,9],php:[1,6,3],studi:1,recent:[1,8],kept:11,center:0,min:5,well:[1,5],inherit:9,person:9,mailing_typ:[9,14],without:[0,1],command:1,thi:[0,1,4,5,7,8,9,10,12,13,14],undefin:0,http_code:[1,6,3],latest:11,construct:[0,7,9],identifi:8,paus:9,execut:[1,3],less:0,resp:[4,5,7,8,9,10,13,14],"_post":[1,3],against:0,aspect:13,recipient_email:9,source_filenam:8,yet:5,languag:1,"12t09":[7,8],display_nam:10,easi:[1,12,10],"01t00":8,had:0,littl:1,blog:4,add:[12,1,8,13,3],other:[1,8,9,3,5],curlopt_userpwd:[1,6,3],import_finish:[8,12,4],schedul:9,els:[1,6,3],save:7,match:[0,7],build:1,sanit:1,applic:[1,6,3],account_id:[1,3,4,5,6,7,8,9,10,12,13,14],handl:1,disposit:1,crud:[8,13,14],print_r:[6,3],mailing_statu:[9,14],know:[1,4,5],background:13,parent_mailing_id:[9,14],bit:1,insert:11,emma:[1,5,7,8,9,12,13],like:1,onion:11,deprec:4,arbitrari:8,manual:9,integ:[1,8,14,10,5],collect:1,api:[1,2,3,6,8,12],either:[0,5,7],bunch:0,output:9,group_id:[1,8,12,3],soft:[0,5],manag:[0,1,13,4],import_id:[8,12],www:[5,9],old:7,deal:[8,13],captur:1,arrai:[0,1,3,5,6,7,8,9,10,12,13,14],some:[1,11,5],field_delet:[12,4],certain:12,intern:10,sampl:[1,4,5,7,8,9,10,13,14],elaps:[2,9],unless:1,deleted_at:[7,8,13,10,9,14],some_string_field:0,librari:11,woodcock:1,emmarubi:1,bounce_count:[7,8,9,13],emmapython:1,public_kei:4,deliveri:5,broad:12,per:5,send_finish:[9,14],larg:[0,2],condit:7,three:9,network_cod:12,localhost:9,emmaphp:1,with_html_bodi:9,who:[0,5,8],bold:[4,5,7,8,9,10,13,14],event_typ:14,inspect:1,usag:[1,8,12],monsewicz:1,num_members_ad:8,fulli:11,from:[1,4,8,9,12,13,14],post:[1,3,4,7,8,9,10,12,13,14],group_creat:[12,4],gladi:[7,5,8,13],hurst:1,actual:5,zip:0,groups_upd:8,column:10,page:2,includ:[1,5,7,8,9,10,13],webview:9,mean:0,disabl:[9,14],block:[1,2],yyyi:5,own:1,member_data:[1,3],glob:0,bounc:[0,5],within:[0,8],encod:[9,4],delivery_typ:[5,8],compos:0,webview_shar:5,field_typ:10,active_count:[7,8,9,13],public_webview_url:9,pivot:5,your:[1,4,5,7,8,9,10,13],websit:11,fast:8,van:1,wai:[1,12],area:1,overus:2,group_nam:[8,12,13,9],support:12,unique_click:5,json:[0,1,3,4,6,7],submit:1,custom:[5,8,11,10],avail:[0,11,4],start:[1,2,8,4],interfac:12,send_at:[9,14],exceed:2,"var":3,interv:[0,14],fork:1,head:[1,6,9,3],form:[1,3,4,6,8,10,14],enough:2,forc:1,forward:[0,4,5,8,12,9],"31st":0,group_typ:[8,9,13],push_offset_unit:14,link:[0,4,5,11,9,14],line:[1,5],realli:1,"true":[0,1,2,3,4,6,7,8,9,10,13,14],archived_t:[9,14],info:4,pull:[1,2],made:1,possibl:[5,8,12],whether:8,maximum:2,tell:12,http403:9,record:[0,7,8],below:[0,1,8,12],http400:[7,8,9],limit:[5,2,8,9],some_array_field:0,otherwis:[1,8,10],start_t:14,mta:5,expect:1,notif:9,creat:[4,5,7,9,10,12,13,14],"int":5,retriev:[7,1,2,8,9],year:[0,5,9,14],repres:5,exist:[0,4,5,7,8,10,13],behavior:11,bob:[7,5],curl:[1,6],portland:1,probabl:14,echo:[1,3],successfulli:[5,8,9],mailing_subject:12,grp:13,todo:11,when:[8,12,4,9],detail:[1,4,7,8,9,10,13],invalid:[7,8,9],event:[4,7,8,13,12,9,14],field:[0,1,3,4,5,7,8,9,10,11,12,13,14],valid:[5,8,9,13],futur:1,num_skip:8,test:[5,6,7,13,9,14],ignor:8,you:[0,1,2,4,5,7,8,9,10,11,12,13],emmasdk:1,member_status_id:[7,5,8,9,13],public_api_kei:[1,6,3],stat:[5,9],claus:[0,7],event_nam:[12,4],e2ma:[1,2,6,3],error_messag:8,param:[9,4],app_messag:[1,3],ella:8,bulk:[1,8],receiv:[0,2,5,8,12,9],heads_up_email:9,longer:9,home:11,confirm:8,descript:[4,14],ohmyemma:1,portion:0,opted_out:5,time:[1,2,8,13,5],reply_to:[9,14],resource_url:12,hello:[11,9,14]},objtypes:{"0":"http:get","1":"http:put","2":"http:post","3":"http:delete"},titles:["Search Syntax","Emma API","Pagination","PHP Signup Example","Webhooks","Response","PHP Get Member By Email Example","Searches","Members","Mailings","Fields","Placeholder Syntax","Webhook Usage","Groups","Triggers"],objnames:{"0":["http","get","HTTP get"],"1":["http","put","HTTP put"],"2":["http","post","HTTP post"],"3":["http","delete","HTTP delete"]},filenames:["member_search","index","pagination","php_signup_example","api/external/webhooks","api/external/response","php_get_member_example","api/external/searches","api/external/members","api/external/mailings","api/external/fields","placeholders","webhooks","api/external/groups","api/external/triggers"]}) \ No newline at end of file +Search.setIndex({objects:{"":{"/#account_id/members/#member_id/groups/remove":[8,1,1,"put--#account_id-members-#member_id-groups-remove"],"/#account_id/mailings/#mailing_id/winner/#winner_id":[9,2,1,"post--#account_id-mailings-#mailing_id-winner-#winner_id"],"/#account_id/response/#mailing_id/in_progress":[5,0,1,"get--#account_id-response-#mailing_id-in_progress"],"/#account_id/members/groups/remove":[8,1,1,"put--#account_id-members-groups-remove"],"/#account_id/mailings/#mailing_id/searches":[9,0,1,"get--#account_id-mailings-#mailing_id-searches"],"/#account_id/fields":[10,2,1,"post--#account_id-fields"],"/#account_id/members/#group_id/copy":[8,1,1,"put--#account_id-members-#group_id-copy"],"/#account_id/members/status":[8,1,1,"put--#account_id-members-status"],"/#account_id/response/#mailing_id/shares/overview":[5,0,1,"get--#account_id-response-#mailing_id-shares-overview"],"/#account_id/webhooks/events":[4,0,1,"get--#account_id-webhooks-events"],"/#account_id/members/#member_id/optout":[8,0,1,"get--#account_id-members-#member_id-optout"],"/#account_id/webhooks":[4,3,1,"delete--#account_id-webhooks"],"/#account_id/fields/#field_id":[10,3,1,"delete--#account_id-fields-#field_id"],"/#account_id/response/#mailing_id":[5,0,1,"get--#account_id-response-#mailing_id"],"/#account_id/groups/#member_group_id/members/remove":[13,3,1,"delete--#account_id-groups-#member_group_id-members-remove"],"/#account_id/searches":[7,2,1,"post--#account_id-searches"],"/#account_id/members/imports":[8,0,1,"get--#account_id-members-imports"],"/#account_id/forwards/#mailing_id/#member_id":[9,2,1,"post--#account_id-forwards-#mailing_id-#member_id"],"/#account_id/response/#mailing_id/customer_share_clicks":[5,0,1,"get--#account_id-response-#mailing_id-customer_share_clicks"],"/#account_id/mailings/#mailing_id/messages/#member_id":[9,0,1,"get--#account_id-mailings-#mailing_id-messages-#member_id"],"/#account_id/members/#member_id/mailings":[8,0,1,"get--#account_id-members-#member_id-mailings"],"/#account_id/groups/#from_group_id/#to_group_id/members/copy":[13,1,1,"put--#account_id-groups-#from_group_id-#to_group_id-members-copy"],"/#account_id/triggers":[14,2,1,"post--#account_id-triggers"],"/#account_id/triggers/#trigger_id":[14,3,1,"delete--#account_id-triggers-#trigger_id"],"/#account_id/members/delete":[8,1,1,"put--#account_id-members-delete"],"/#account_id/mailings/#mailing_id/groups":[9,0,1,"get--#account_id-mailings-#mailing_id-groups"],"/#account_id/response/#mailing_id/forwards":[5,0,1,"get--#account_id-response-#mailing_id-forwards"],"/#account_id/members/#member_id":[8,3,1,"delete--#account_id-members-#member_id"],"/#account_id/triggers/#trigger_id/mailings":[14,0,1,"get--#account_id-triggers-#trigger_id-mailings"],"/#account_id/searches/#search_id/members":[7,0,1,"get--#account_id-searches-#search_id-members"],"/#account_id/members/status/:status_from/to/:status_to":[8,1,1,"put--#account_id-members-status--status_from-to--status_to"],"/#account_id/response/#mailing_id/sends":[5,0,1,"get--#account_id-response-#mailing_id-sends"],"/#account_id/members":[8,3,1,"delete--#account_id-members"],"/#account_id/members/email/:email":[8,0,1,"get--#account_id-members-email--email"],"/#account_id/response/#mailing_id/links":[5,0,1,"get--#account_id-response-#mailing_id-links"],"/#account_id/searches/#search_id":[7,3,1,"delete--#account_id-searches-#search_id"],"/#account_id/members/imports/#import_id/members":[8,0,1,"get--#account_id-members-imports-#import_id-members"],"/#account_id/fields/#field_id/clear":[10,2,1,"post--#account_id-fields-#field_id-clear"],"/#account_id/groups/#member_group_id/members":[13,3,1,"delete--#account_id-groups-#member_group_id-members"],"/#account_id/members/imports/#import_id":[8,0,1,"get--#account_id-members-imports-#import_id"],"/#account_id/response":[5,0,1,"get--#account_id-response"],"/#account_id/response/#mailing_id/opens":[5,0,1,"get--#account_id-response-#mailing_id-opens"],"/#account_id/members/imports/delete":[8,3,1,"delete--#account_id-members-imports-delete"],"/#account_id/mailings":[9,0,1,"get--#account_id-mailings"],"/#account_id/mailings/cancel/#mailing_id":[9,3,1,"delete--#account_id-mailings-cancel-#mailing_id"],"/#account_id/mailings/validate":[9,2,1,"post--#account_id-mailings-validate"],"/#account_id/response/#mailing_id/deliveries":[5,0,1,"get--#account_id-response-#mailing_id-deliveries"],"/#account_id/mailings/#mailing_id/members":[9,0,1,"get--#account_id-mailings-#mailing_id-members"],"/#account_id/response/#share_id/customer_share":[5,0,1,"get--#account_id-response-#share_id-customer_share"],"/#account_id/webhooks/#webhook_id":[4,3,1,"delete--#account_id-webhooks-#webhook_id"],"/#account_id/members/add":[8,2,1,"post--#account_id-members-add"],"/#account_id/members/email/optout/:email":[8,1,1,"put--#account_id-members-email-optout--email"],"/#account_id/response/#mailing_id/optouts":[5,0,1,"get--#account_id-response-#mailing_id-optouts"],"/#account_id/response/#mailing_id/shares":[5,0,1,"get--#account_id-response-#mailing_id-shares"],"/#account_id/groups/#member_group_id":[13,3,1,"delete--#account_id-groups-#member_group_id"],"/#account_id/mailings/#mailing_id":[9,3,1,"delete--#account_id-mailings-#mailing_id"],"/#account_id/members/#member_id/groups":[8,3,1,"delete--#account_id-members-#member_id-groups"],"/#account_id/groups":[13,2,1,"post--#account_id-groups"],"/#account_id/response/#mailing_id/clicks":[5,0,1,"get--#account_id-response-#mailing_id-clicks"],"/#account_id/mailings/#mailing_id/headsup":[9,0,1,"get--#account_id-mailings-#mailing_id-headsup"],"/#account_id/response/#mailing_id/signups":[5,0,1,"get--#account_id-response-#mailing_id-signups"],"/#account_id/response/#mailing_id/customer_shares":[5,0,1,"get--#account_id-response-#mailing_id-customer_shares"]}},terms:{all:[0,1,4,5,8,9,10,11,12,13,14],code:[0,1,6,3],change_typ:8,queri:[0,2,4],month:[0,5,9,14],four:[0,5],mile:0,least:0,follow:[0,1,4,5,7,9,11,13],link_target:[5,9],content:[1,11,6,9,3],privat:1,specif:[8,9,4],friendli:5,send:[1,9,4,3,5],program:1,customer_share_click:5,those:[1,12,5],group_upd:[12,4],sent:[5,8,12,9,14],curl_clos:[1,6,3],brown:[7,8],digit:5,everi:0,string:[0,4,5,7,8,9,10,12,13,14],fals:[1,3,4,5,6,7,8,9,10,13,14],webhook:[1,12,4],mailing_status:9,trigger_id:14,webview_share_click:5,affect:[7,8],member_add:[12,4],create_mail:9,new_boolean:10,foo:0,level:1,group_delet:[12,4],list:[0,1,2,4,5,7,8,9,10,11,12,13,14],upload:8,iter:2,"try":8,item:2,plaintext_onli:[9,14],div:[4,5,7,8,9,10,13,14],survey_id:14,setup:1,pleas:[1,8,11,9],prevent:2,work:[1,4],ten:0,sync:10,sign:[0,5,4],past:1,second:[0,7,14],field_creat:[12,4],further:1,shortcut_nam:10,click:[0,4,5,7,8,12,14],append:2,even:10,what:1,hide:[4,5,7,8,9,10,13,14],appear:[1,8],from_group_id:13,section:1,current:[1,8,12,9],delet:[1,4,7,8,9,10,12,13,14],"new":[1,4,5,7,8,9,10,11,13,14],net:[1,2,6,3],delivery_t:8,method:[5,8,13,4,9],can:[0,1,2,4,5,7,8,9,11,12,13],widget:[7,10,8,9,13],full:1,hash:0,datematch:0,displai:10,variat:9,gener:[0,8,12,14],onli:[5,8],here:[0,1,3,5,6,8],bodi:9,let:[1,4,10],address:[0,1,8,6,9],along:8,sinc:8,valu:[0,5,7,8,10,11],field_upd:[12,4],search:[0,1,8,9,7],survei:14,sender:[9,14],larger:2,queue:5,prior:9,action:[0,8],chang:[8,4],campaign:5,newbi:5,appli:[7,14],prefer:0,young:1,myemma:[4,5,7,8,9,13],filenam:8,customer_shar:5,"boolean":[0,1,5,7,8,9,10,13,14],curlopt_postfield:[1,3],total:5,jone:[7,5,8,13],select:[1,10],newslett:[7,8,13],describ:7,would:[0,1],commun:1,regist:4,two:[0,5],coverag:1,next:[0,1],create_webhook:4,few:[5,8],call:[1,2,3,4,6,8,12],criteria:7,member_add_to_group:[12,4],type:[1,3,4,5,6,7,10,9,14],until:2,more:[0,4,7,8,9,13],peopl:5,relat:[1,8,11,9],about:[10,8,12,4,9],notic:8,thide:[4,5,7,8,9,10,13,14],flag:[5,7,8,10,9,14],exce:2,indic:8,examin:1,particular:[1,4,5,8,10,12,9],in_progress:5,origin:9,must:[0,7,13,10],none:9,endpoint:[1,4,5,7,8,9,10,13,14],join:[0,7],hour:0,der:1,member_sinc:[0,5,7,8,9,13],uniqu:5,histori:8,soup:7,remain:[0,9],archiv:[5,9],member_optout:[12,4],drill:5,control:[1,11,9],quickstart:1,give:5,forward_mailing_id:5,email_domain:[0,5],share:[0,5,8,12,4],accept:[0,5,7,8,9,10,11,13,14],total_click:5,tag:[11,9],want:[1,12,13,5],occur:[7,12],some_numeric_field:0,delai:14,alwai:0,webhook_event_id:4,cours:1,multipl:[10,8],first_nam:[1,3,5,7,8,9,10,11,13,14],started_or_finish:[9,14],anoth:[9,13],get:[1,4,5,6,7,8,9,10,13,14],message_open:[12,4],html_bodi:[9,14],share_statu:5,push_offset:14,del_statu:5,tild:5,num_members_upd:8,simpl:0,chri:9,pizza:[7,8],map:0,autent:1,referenc:7,xxxx:6,sundai:0,jacqu:1,membership:13,taco:[7,5,8,9,13],mai:12,end:[2,8],associ:[1,8,9,4,5],grow:1,welcom:11,add_onli:8,"short":0,json_encod:[1,3],optout:[5,8,12,13],num_dupl:8,favorit:10,correspond:[0,1],greet:11,predic:[0,1],issu:[1,10],"12t11":[7,5,8,9,13],combin:7,allow:[0,7,8],some_zipcode_field:0,signed_up:5,order:[5,10],michel:[8,9],mailing_nam:5,checkbox:10,fields_upd:8,over:2,becaus:12,buyer:[7,8,9,13],comma:[9,13],is_dis:14,vari:8,paramet:[2,4,5,7,8,9,10,13,14],widget_typ:10,style:[0,4,5,7,8,9,10,13,14],group:[0,1,3,4,7,8,9,12,13,14],curl_setopt:[1,6,3],how:[7,1,2,4],fix:1,import_start:8,better:[13,14],platform:1,pend:[1,9],mailing_list:9,onc:9,mail:[0,1,4,5,8,11,12,9,14],hidden:13,main:1,might:[1,4],link_nam:[5,9],them:[8,9],messag:[4,5,8,12,11,9,14],"return":[0,1,4,5,7,8,9,10,12,13,14],greater:[0,8],thei:[0,9],food:10,timestamp:[0,5,12,9,10],spell:4,nashvil:1,dai:0,auth:1,"26t14":[7,14],instead:[12,2,8],now:5,down:5,term:[0,1],alex:9,name:[0,4,5,7,8,9,10,11,13,14],edit:[7,1,14,10],curl_getinfo:[1,6,3],authent:[1,6,4,3],successufulli:4,separ:[1,9,13],each:[1,2,5,9,12,11,13],found:[8,9,4,14],updat:[4,7,8,9,10,12,13,14],denni:1,status:[8,9],domain:0,weight:[4,5,7,8,9,10,13,14],resum:9,individu:[5,8],hard:[0,5],last_nam:[1,3,5,7,8,9,10,11,13,14],"05t15":5,birthdai:[10,14],connect:[1,6,3],doug:1,our:[1,11,12,4,14],happen:[1,4,5],commiss:1,short_display_nam:10,special:[0,7,8,13],out:[0,1,4,5,7,8,10,13],variabl:[1,6,3],message_shar:[12,4],network:[5,12],private_api_kei:[1,6,3],check_multipl:10,categori:1,rel:0,print:6,correct:10,integr:1,benjamin:[1,8],qualifi:11,insid:1,advanc:0,contain:[0,5,7,13,10,9],given:[0,8,9,4],standard:[5,9],status_from:8,base:[5,8],recipient_search:9,dictionari:8,put:[4,7,8,9,10,13,14],span:[4,5,7,8,9,10,13,14],"13t23":[7,5,8],refer:[5,7,8,13,10,9],visit:11,could:1,omit:5,success:[1,3,7,8,9,13],filter:[0,1,7],search_id:7,pagin:[1,2],member_id:[5,7,8,9,12,13],summari:[1,5],assign:9,first:[0,1,10,5],oper:[0,1,7,14],rang:5,notifi:12,directli:0,curlopt_ssl_verifyp:[1,6,3],curl_init:[1,6,3],number:[5,2,13,3,10],placehold:[1,11],date:[0,5,8,10,11,14],unlik:9,alreadi:[10,8,9,13],done:8,plaintext_pref:[7,8,9,13],oppos:8,open:[0,3,4,5,6,7,8,12],payload:4,fanci:5,size:2,differ:0,"long":10,script:1,data:[1,3,4,5,10,12],system:[8,12,4,14],wrapper:1,attach:11,easier:12,friend:11,curlinfo_http_cod:[1,6,3],shell:0,option:[0,5,7,8,9,10,13,14],especi:8,signup:[0,1,3,4,5,8,12,14],copi:[8,13],member_upd:[12,4],specifi:[0,2,7,8,10,11,9,14],curl_exec:[1,6,3],curlopt_httphead:[1,6,3],member_signup:[12,4],create_search:7,part:[0,9],enclos:11,than:[0,1,2,3,12,13],with_plaintext:9,"02t10":[5,8],"02t11":[5,8],"02t13":5,nathan:8,whenev:8,provid:[1,5,8,12,9,14],remov:[12,8,13,4],mailing_start:4,rate:2,structur:7,charact:9,greg:8,trackabl:11,were:5,minut:0,danc:1,error_count:[7,8,9,13],pre:[4,5,7,8,9,10,13,14],cleaner:1,sai:0,share_id:5,signup_form_id:[0,8,12,9,14],plaintext:[5,9,14],pass:[1,3],ani:[0,1,2,7,8,9],have:[0,1,5,8,12,9],tabl:5,need:1,seen:5,"null":[7,8,13,10,9,14],kevin:[9,14],signup_mail:0,caus:14,built:1,inform:[1,4,6,8,9,10,13],object_id:14,note:[1,8,9,4],also:[0,4,5,7,8,9,11,13],exampl:[0,1,3,5,6,7,11],take:[0,4],which:[0,1,4,8,10,12,9,14],some_number_field:0,singl:[0,1,3,4,5,8,10,12,13],excit:11,sure:1,delete_memb:13,normal:9,parent_mail:14,recipient_count:[5,9,14],previou:9,field_id:[10,12,14],last_run_at:7,most:14,pair:11,"class":[4,5,7,8,9,10,13,14],don:1,member_group_id:[8,9,13],mcconnel:[9,14],url:[1,3,4,5,6,12],mailing_finish:[12,4],clear:10,request:[1,2,3],doe:[0,5,7,8,9,10,13],member_status_upd:[12,4],declar:9,tech:4,determin:1,dataset:10,dow:0,recipi:9,"6db0cc7e6fdb2da589b65f29d90c96b6":9,show:[4,5,7,8,9,10,11,13,14],text:[10,11,12],radiu:0,syntax:[0,1,11,9],radio:10,font:[4,5,7,8,9,10,13,14],fine:9,find:[1,6,5],status_to:8,toast:[7,5,8,13],access:[1,5],giant:12,just:[0,1,9],pretti:8,column_ord:10,explain:[0,1],winner:9,activ:[1,5,7,8,13,9],figur:1,should:[1,2,3,7,8,11,9],templat:[11,14],share_count:5,count:[1,2,3,5],variou:[8,13],confirmed_opt_in:[7,8,9,13],familiar:1,express:0,account:[1,4,5,7,8,10,13,14],repo:1,cannot:[8,9,4],progress:9,report:[10,8],requir:[1,7,8,10,11,9],object:[1,13,5],favorite_food:[5,7,8,13,10,9],bar:0,organ:1,include_archiv:[5,9],"public":1,"default":[5,11,13,4,9],ref_member_id:5,message_share_click:[12,4],through:[1,8,4],where:[0,1,8,11,7],view:1,user:[0,8,9,13],set:[0,1,2,3,6,8,9,12,13],link_id:[0,5,12,9,14],see:[7,1,8],result:[0,1,2,5,8,9],respons:[0,1,2,4,5,7,8,9,10,13,14],fail:[5,9,4],themselv:2,member_field:[0,7],xxxxx:6,subject:[8,12,9,14],statu:[1,4,5,7,8,9,12,13],fancyonion:11,kei:[0,1,8,11,4],is_schedul:9,message_forward:[12,4],databas:8,someth:1,last_modified_at:[7,8,9,13],addresse:5,written:1,between:[0,7,2],clicked_uniqu:5,"import":[1,8,12,4,10],subscript:[1,3],entiti:1,curlopt_url:[1,6,3],email:[0,1,3,5,6,7,8,9,13],wide:14,extend:1,numer:10,http404:[4,5,7,8,9,10,13,14],job:13,entir:[0,8],share_click:5,to_group_id:13,curlopt_returntransf:[1,6,3],addit:[0,1,8,9,11,13],member_remove_from_group:[12,4],send_start:[0,9,14],protect:1,accident:2,last:[0,5,10],delimit:5,lentil:7,pertain:5,message_click:[12,4],curlopt_post:[1,3],audienc:[1,8,9],mang:0,improv:1,http500:14,seri:5,com:[4,5,6,7,8,9,11,13],zip_code_field:0,"03t15":[7,5,8,13],point:1,toni:[7,8],overview:[0,1,11,12,5],period:1,winner_id:9,colon:[7,11],optout_count:[7,8,9,13],suppli:9,cancel:9,tuesdai:0,duplic:5,quit:[5,8],user_id:4,recur:14,headsup:9,addition:[1,2],due:5,been:[1,8,10,5],mark:[8,9],whom:9,tshow:[4,5,7,8,9,10,13,14],trigger:[1,4,5,7,8,9,10,12,13,14],unsubscrib:0,treat:8,interest:[10,4],basic:[0,1,4,8,13,14],monthli:[7,8,13],member_delet:[12,4],hesit:1,blob:4,email_us:[0,5],mailing_mailing_id:5,mailing_id:[0,5,8,12,9,14],fire:[8,4,14],xxx:[1,3],rubi:1,argument:[0,5],link_ord:[5,9],input:1,extract:11,present:7,statist:8,"case":[1,8],look:[1,14,10],frozen:9,durat:9,email_error:[7,8,9,13],defin:[0,10,8,9],"while":0,smith:[7,5,8,9,13],outcom:5,abov:[0,1,8,7],error:[1,3,6,8,10,13],veen:1,loop:8,opt:[0,4,5,7,8,13],readi:9,deliv:5,recipient_group:9,equal:0,itself:0,new_statu:12,webhook_id:4,develop:1,recipient_memb:9,perform:8,make:[1,12,6,10],belong:[0,8,4],same:4,check:[8,6,9],member:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14],python:1,html:9,split:9,document:[1,11,12],complet:[1,3,4,6,8,9],week:0,finish:[5,12,4],http:[1,2,3,4,5,6,11,9],href:[4,5,7,8,9,10,13,14],nest:0,someon:4,rais:[4,5,7,8,9,10,13,14],initi:[10,9],php:[1,6,3],studi:1,recent:[1,8],kept:11,center:0,min:5,well:[1,5],inherit:9,person:9,mailing_typ:[9,14],without:[0,1],command:1,thi:[0,1,4,5,7,8,9,10,12,13,14],undefin:0,http_code:[1,6,3],latest:11,construct:[0,7,9],identifi:8,paus:9,execut:[1,3],less:0,resp:[4,5,7,8,9,10,13,14],"_post":[1,3],against:0,aspect:13,recipient_email:9,source_filenam:8,yet:5,languag:1,"12t09":[7,8],display_nam:10,easi:[1,12,10],"01t00":8,had:0,littl:1,blog:4,add:[12,1,8,13,3],other:[1,8,9,3,5],curlopt_userpwd:[1,6,3],import_finish:[8,12,4],schedul:9,els:[1,6,3],save:7,match:[0,7],build:1,sanit:1,applic:[1,6,3],account_id:[1,3,4,5,6,7,8,9,10,12,13,14],handl:1,disposit:1,crud:[8,13,14],print_r:[6,3],mailing_statu:[9,14],know:[1,4,5],background:13,parent_mailing_id:[9,14],bit:1,insert:11,emma:[1,5,7,8,9,12,13],like:1,onion:11,deprec:4,arbitrari:8,manual:9,integ:[1,8,14,10,5],collect:1,api:[1,2,3,6,8,12],either:[0,5,7],bunch:0,output:9,group_id:[1,8,12,3],soft:[0,5],manag:[0,1,13,4],import_id:[8,12],www:[5,9],old:7,deal:[8,13],captur:1,arrai:[0,1,3,5,6,7,8,9,10,12,13,14],some:[1,11,5],field_delet:[12,4],certain:12,intern:10,sampl:[1,4,5,7,8,9,10,13,14],elaps:[2,9],unless:1,deleted_at:[7,8,13,10,9,14],some_string_field:0,librari:11,woodcock:1,emmarubi:1,bounce_count:[7,8,9,13],emmapython:1,public_kei:4,deliveri:5,broad:12,per:5,send_finish:[9,14],larg:[0,2],condit:7,three:9,network_cod:12,localhost:9,emmaphp:1,with_html_bodi:9,who:[0,5,8],bold:[4,5,7,8,9,10,13,14],event_typ:14,inspect:1,usag:[1,8,12],monsewicz:1,num_members_ad:8,fulli:11,from:[1,4,8,9,12,13,14],post:[1,3,4,7,8,9,10,12,13,14],group_creat:[12,4],gladi:[7,5,8,13],hurst:1,actual:5,zip:0,groups_upd:8,column:10,page:2,includ:[1,5,7,8,9,10,13],webview:9,mean:0,disabl:[9,14],block:[1,2],yyyi:5,own:1,member_data:[1,3],glob:0,bounc:[0,5],within:[0,8],encod:[9,4],delivery_typ:[5,8],compos:0,webview_shar:5,field_typ:10,active_count:[7,8,9,13],public_webview_url:9,pivot:5,your:[1,4,5,7,8,9,10,13],websit:11,fast:8,van:1,wai:[1,12],area:1,overus:2,group_nam:[8,12,13,9],support:12,unique_click:5,json:[0,1,3,4,6,7],submit:1,custom:[5,8,11,10],avail:[0,11,4],start:[1,2,8,4],interfac:12,send_at:[9,14],exceed:2,"var":3,interv:[0,14],fork:1,head:[1,6,9,3],form:[1,3,4,6,8,10,14],enough:2,forc:1,forward:[0,4,5,8,12,9],"31st":0,group_typ:[8,9,13],push_offset_unit:14,link:[0,4,5,11,9,14],line:[1,5],realli:1,"true":[0,1,2,3,4,6,7,8,9,10,13,14],archived_t:[9,14],info:4,pull:[1,2],made:1,possibl:[5,8,12],whether:8,maximum:2,tell:12,http403:9,record:[0,7,8],below:[0,1,8,12],http400:[7,8,9],limit:[5,2,8,9],some_array_field:0,otherwis:[1,8,10],start_t:14,mta:5,expect:1,notif:9,creat:[4,5,7,9,10,12,13,14],"int":5,retriev:[7,1,2,8,9],year:[0,5,9,14],repres:5,exist:[0,4,5,7,8,10,13],behavior:11,bob:[7,5],curl:[1,6],portland:1,probabl:14,echo:[1,3],successfulli:[5,8,9],mailing_subject:12,grp:13,todo:11,when:[8,12,4,9],detail:[1,4,7,8,9,10,13],invalid:[7,8,9],event:[4,7,8,13,12,9,14],field:[0,1,3,4,5,7,8,9,10,11,12,13,14],valid:[5,8,9,13],futur:1,num_skip:8,test:[5,6,7,13,9,14],ignor:8,you:[0,1,2,4,5,7,8,9,10,11,12,13],emmasdk:1,member_status_id:[7,5,8,9,13],public_api_kei:[1,6,3],stat:[5,9],claus:[0,7],event_nam:[12,4],e2ma:[1,2,6,3],error_messag:8,param:[9,4],app_messag:[1,3],ella:8,bulk:[1,8],receiv:[0,2,5,8,12,9],heads_up_email:9,longer:9,home:11,confirm:8,descript:[4,14],ohmyemma:1,portion:0,opted_out:5,time:[1,2,8,13,5],reply_to:[9,14],resource_url:12,hello:[11,9,14]},objtypes:{"0":"http:get","1":"http:put","2":"http:post","3":"http:delete"},titles:["Search Syntax","Emma API","Pagination","PHP Signup Example","Webhooks","Response","PHP Get Member By Email Example","Searches","Members","Mailings","Fields","Placeholder Syntax","Webhook Usage","Groups","Triggers"],objnames:{"0":["http","get","HTTP get"],"1":["http","put","HTTP put"],"2":["http","post","HTTP post"],"3":["http","delete","HTTP delete"]},filenames:["member_search","index","pagination","php_signup_example","api/external/webhooks","api/external/response","php_get_member_example","api/external/searches","api/external/members","api/external/mailings","api/external/fields","placeholders","webhooks","api/external/groups","api/external/triggers"]}) \ No newline at end of file diff --git a/webhooks.html b/webhooks.html index 4c3a248..4b8fb20 100644 --- a/webhooks.html +++ b/webhooks.html @@ -507,7 +507,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Apr 12, 2013 at 04:17 PM. + Last updated on Apr 26, 2013 at 02:56 PM. </div> </body> </html> \ No newline at end of file From 1b03a938af574a8a165d7e1d1e412427f9d49ef5 Mon Sep 17 00:00:00 2001 From: Sofia Karagadayeva <sofia@3442232.local> Date: Fri, 10 May 2013 14:30:15 -0500 Subject: [PATCH 041/219] Update audience documentation. --- _sources/index.txt | 4 ++++ api/external/fields.html | 2 +- api/external/groups.html | 2 +- api/external/mailings.html | 2 +- api/external/members.html | 2 +- api/external/response.html | 2 +- api/external/searches.html | 4 ++-- api/external/triggers.html | 8 ++++---- api/external/webhooks.html | 2 +- genindex.html | 2 +- http-routingtable.html | 2 +- index.html | 4 +++- member_search.html | 2 +- pagination.html | 2 +- php_get_member_example.html | 2 +- php_signup_example.html | 2 +- placeholders.html | 2 +- search.html | 2 +- searchindex.js | 2 +- webhooks.html | 2 +- 20 files changed, 29 insertions(+), 23 deletions(-) diff --git a/_sources/index.txt b/_sources/index.txt index fa987d1..bed278d 100644 --- a/_sources/index.txt +++ b/_sources/index.txt @@ -39,6 +39,10 @@ This collection is young, but growing, and includes wrappers commissioned by Emm **Objective-C** `EmmaSDK <https://github.com/myemma/EmmaSDK>`_: Commissioned by Emma and built by Portland developer `Benjamin Van Der Veen <https://github.com/bvanderveen>`_. +**.NET Framework** + Coming Soon! + + Quickstart ---------- diff --git a/api/external/fields.html b/api/external/fields.html index 8dac0b4..b13a999 100644 --- a/api/external/fields.html +++ b/api/external/fields.html @@ -415,7 +415,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Apr 26, 2013 at 02:56 PM. + Last updated on May 10, 2013 at 02:30 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/groups.html b/api/external/groups.html index f632bdd..b29466a 100644 --- a/api/external/groups.html +++ b/api/external/groups.html @@ -702,7 +702,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Apr 26, 2013 at 02:56 PM. + Last updated on May 10, 2013 at 02:30 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/mailings.html b/api/external/mailings.html index 2b1da39..60d7618 100644 --- a/api/external/mailings.html +++ b/api/external/mailings.html @@ -810,7 +810,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Apr 26, 2013 at 02:56 PM. + Last updated on May 10, 2013 at 02:30 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/members.html b/api/external/members.html index 8401b3c..45d5663 100644 --- a/api/external/members.html +++ b/api/external/members.html @@ -1217,7 +1217,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Apr 26, 2013 at 02:56 PM. + Last updated on May 10, 2013 at 02:30 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/response.html b/api/external/response.html index 3da6756..64c8e63 100644 --- a/api/external/response.html +++ b/api/external/response.html @@ -1019,7 +1019,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Apr 26, 2013 at 02:56 PM. + Last updated on May 10, 2013 at 02:30 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/searches.html b/api/external/searches.html index d6e9657..f92e017 100644 --- a/api/external/searches.html +++ b/api/external/searches.html @@ -199,7 +199,7 @@ <h1>Searches<a class="headerlink" href="#searches" title="Permalink to this head "name": "Test Search", "criteria": "[\"or\", [\"group\", \"eq\", \"Monthly Newsletter\"],[\"group\", \"eq\", \"Widget Buyers\"]]", "deleted_at": null, - "last_run_at": "@D:2013-04-26T14:56:15", + "last_run_at": "@D:2013-05-10T14:30:09", "active_count": 2, "account_id": 100 } @@ -511,7 +511,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Apr 26, 2013 at 02:56 PM. + Last updated on May 10, 2013 at 02:30 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/triggers.html b/api/external/triggers.html index 8524aea..488088f 100644 --- a/api/external/triggers.html +++ b/api/external/triggers.html @@ -148,7 +148,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": 203, "push_offset_units": "0:-14:0:0", - "start_ts": "@D:2013-04-26T14:56:13", + "start_ts": "@D:2013-05-10T14:30:03", "trigger_id": 100, "signups": null, "push_offset": "@I:-1209600.0", @@ -189,7 +189,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": null, "push_offset_units": "0:3:0:0", - "start_ts": "@D:2013-04-26T14:56:13", + "start_ts": "@D:2013-05-10T14:30:03", "trigger_id": 101, "signups": [ 1, @@ -326,7 +326,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": 203, "push_offset_units": "0:-14:0:0", - "start_ts": "@D:2013-04-26T14:56:13", + "start_ts": "@D:2013-05-10T14:30:03", "trigger_id": 100, "signups": null, "push_offset": "@I:-1209600.0", @@ -499,7 +499,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Apr 26, 2013 at 02:56 PM. + Last updated on May 10, 2013 at 02:30 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/webhooks.html b/api/external/webhooks.html index e799400..2e270ba 100644 --- a/api/external/webhooks.html +++ b/api/external/webhooks.html @@ -487,7 +487,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Apr 26, 2013 at 02:56 PM. + Last updated on May 10, 2013 at 02:30 PM. </div> </body> </html> \ No newline at end of file diff --git a/genindex.html b/genindex.html index 0ee6f73..a61076c 100644 --- a/genindex.html +++ b/genindex.html @@ -146,7 +146,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Apr 26, 2013 at 02:56 PM. + Last updated on May 10, 2013 at 02:30 PM. </div> </body> </html> \ No newline at end of file diff --git a/http-routingtable.html b/http-routingtable.html index 4354244..e53d759 100644 --- a/http-routingtable.html +++ b/http-routingtable.html @@ -607,7 +607,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Apr 26, 2013 at 02:56 PM. + Last updated on May 10, 2013 at 02:30 PM. </div> </body> </html> \ No newline at end of file diff --git a/index.html b/index.html index 696d3bf..50dd027 100644 --- a/index.html +++ b/index.html @@ -150,6 +150,8 @@ <h2>API Wrappers<a class="headerlink" href="#api-wrappers" title="Permalink to t <dd><a class="reference external" href="https://github.com/myemma/EmmaRuby">EmmaRuby</a>: Commissioned by Emma and built by Nashville developer <a class="reference external" href="https://github.com/dennismonsewicz">Dennis Monsewicz</a>.</dd> <dt><strong>Objective-C</strong></dt> <dd><a class="reference external" href="https://github.com/myemma/EmmaSDK">EmmaSDK</a>: Commissioned by Emma and built by Portland developer <a class="reference external" href="https://github.com/bvanderveen">Benjamin Van Der Veen</a>.</dd> +<dt><strong>.NET Framework</strong></dt> +<dd>Coming Soon!</dd> </dl> </div> <div class="section" id="quickstart"> @@ -342,7 +344,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Apr 26, 2013 at 02:56 PM. + Last updated on May 10, 2013 at 02:30 PM. </div> </body> </html> \ No newline at end of file diff --git a/member_search.html b/member_search.html index 0567dc9..02f33a6 100644 --- a/member_search.html +++ b/member_search.html @@ -256,7 +256,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Apr 26, 2013 at 02:56 PM. + Last updated on May 10, 2013 at 02:30 PM. </div> </body> </html> \ No newline at end of file diff --git a/pagination.html b/pagination.html index 42cbae5..777de68 100644 --- a/pagination.html +++ b/pagination.html @@ -168,7 +168,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Apr 26, 2013 at 02:56 PM. + Last updated on May 10, 2013 at 02:30 PM. </div> </body> </html> \ No newline at end of file diff --git a/php_get_member_example.html b/php_get_member_example.html index 35f0969..a9138ba 100644 --- a/php_get_member_example.html +++ b/php_get_member_example.html @@ -183,7 +183,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Apr 26, 2013 at 02:56 PM. + Last updated on May 10, 2013 at 02:30 PM. </div> </body> </html> \ No newline at end of file diff --git a/php_signup_example.html b/php_signup_example.html index af623e5..23a4ca5 100644 --- a/php_signup_example.html +++ b/php_signup_example.html @@ -205,7 +205,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Apr 26, 2013 at 02:56 PM. + Last updated on May 10, 2013 at 02:30 PM. </div> </body> </html> \ No newline at end of file diff --git a/placeholders.html b/placeholders.html index e5a7415..d5fd74a 100644 --- a/placeholders.html +++ b/placeholders.html @@ -183,7 +183,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Apr 26, 2013 at 02:56 PM. + Last updated on May 10, 2013 at 02:30 PM. </div> </body> </html> \ No newline at end of file diff --git a/search.html b/search.html index 82ceacf..ba86fd4 100644 --- a/search.html +++ b/search.html @@ -153,7 +153,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Apr 26, 2013 at 02:56 PM. + Last updated on May 10, 2013 at 02:30 PM. </div> </body> </html> \ No newline at end of file diff --git a/searchindex.js b/searchindex.js index 646e585..ff4ed81 100644 --- a/searchindex.js +++ b/searchindex.js @@ -1 +1 @@ -Search.setIndex({objects:{"":{"/#account_id/members/#member_id/groups/remove":[8,1,1,"put--#account_id-members-#member_id-groups-remove"],"/#account_id/mailings/#mailing_id/winner/#winner_id":[9,2,1,"post--#account_id-mailings-#mailing_id-winner-#winner_id"],"/#account_id/response/#mailing_id/in_progress":[5,0,1,"get--#account_id-response-#mailing_id-in_progress"],"/#account_id/members/groups/remove":[8,1,1,"put--#account_id-members-groups-remove"],"/#account_id/mailings/#mailing_id/searches":[9,0,1,"get--#account_id-mailings-#mailing_id-searches"],"/#account_id/fields":[10,2,1,"post--#account_id-fields"],"/#account_id/members/#group_id/copy":[8,1,1,"put--#account_id-members-#group_id-copy"],"/#account_id/members/status":[8,1,1,"put--#account_id-members-status"],"/#account_id/response/#mailing_id/shares/overview":[5,0,1,"get--#account_id-response-#mailing_id-shares-overview"],"/#account_id/webhooks/events":[4,0,1,"get--#account_id-webhooks-events"],"/#account_id/members/#member_id/optout":[8,0,1,"get--#account_id-members-#member_id-optout"],"/#account_id/webhooks":[4,3,1,"delete--#account_id-webhooks"],"/#account_id/fields/#field_id":[10,3,1,"delete--#account_id-fields-#field_id"],"/#account_id/response/#mailing_id":[5,0,1,"get--#account_id-response-#mailing_id"],"/#account_id/groups/#member_group_id/members/remove":[13,3,1,"delete--#account_id-groups-#member_group_id-members-remove"],"/#account_id/searches":[7,2,1,"post--#account_id-searches"],"/#account_id/members/imports":[8,0,1,"get--#account_id-members-imports"],"/#account_id/forwards/#mailing_id/#member_id":[9,2,1,"post--#account_id-forwards-#mailing_id-#member_id"],"/#account_id/response/#mailing_id/customer_share_clicks":[5,0,1,"get--#account_id-response-#mailing_id-customer_share_clicks"],"/#account_id/mailings/#mailing_id/messages/#member_id":[9,0,1,"get--#account_id-mailings-#mailing_id-messages-#member_id"],"/#account_id/members/#member_id/mailings":[8,0,1,"get--#account_id-members-#member_id-mailings"],"/#account_id/groups/#from_group_id/#to_group_id/members/copy":[13,1,1,"put--#account_id-groups-#from_group_id-#to_group_id-members-copy"],"/#account_id/triggers":[14,2,1,"post--#account_id-triggers"],"/#account_id/triggers/#trigger_id":[14,3,1,"delete--#account_id-triggers-#trigger_id"],"/#account_id/members/delete":[8,1,1,"put--#account_id-members-delete"],"/#account_id/mailings/#mailing_id/groups":[9,0,1,"get--#account_id-mailings-#mailing_id-groups"],"/#account_id/response/#mailing_id/forwards":[5,0,1,"get--#account_id-response-#mailing_id-forwards"],"/#account_id/members/#member_id":[8,3,1,"delete--#account_id-members-#member_id"],"/#account_id/triggers/#trigger_id/mailings":[14,0,1,"get--#account_id-triggers-#trigger_id-mailings"],"/#account_id/searches/#search_id/members":[7,0,1,"get--#account_id-searches-#search_id-members"],"/#account_id/members/status/:status_from/to/:status_to":[8,1,1,"put--#account_id-members-status--status_from-to--status_to"],"/#account_id/response/#mailing_id/sends":[5,0,1,"get--#account_id-response-#mailing_id-sends"],"/#account_id/members":[8,3,1,"delete--#account_id-members"],"/#account_id/members/email/:email":[8,0,1,"get--#account_id-members-email--email"],"/#account_id/response/#mailing_id/links":[5,0,1,"get--#account_id-response-#mailing_id-links"],"/#account_id/searches/#search_id":[7,3,1,"delete--#account_id-searches-#search_id"],"/#account_id/members/imports/#import_id/members":[8,0,1,"get--#account_id-members-imports-#import_id-members"],"/#account_id/fields/#field_id/clear":[10,2,1,"post--#account_id-fields-#field_id-clear"],"/#account_id/groups/#member_group_id/members":[13,3,1,"delete--#account_id-groups-#member_group_id-members"],"/#account_id/members/imports/#import_id":[8,0,1,"get--#account_id-members-imports-#import_id"],"/#account_id/response":[5,0,1,"get--#account_id-response"],"/#account_id/response/#mailing_id/opens":[5,0,1,"get--#account_id-response-#mailing_id-opens"],"/#account_id/members/imports/delete":[8,3,1,"delete--#account_id-members-imports-delete"],"/#account_id/mailings":[9,0,1,"get--#account_id-mailings"],"/#account_id/mailings/cancel/#mailing_id":[9,3,1,"delete--#account_id-mailings-cancel-#mailing_id"],"/#account_id/mailings/validate":[9,2,1,"post--#account_id-mailings-validate"],"/#account_id/response/#mailing_id/deliveries":[5,0,1,"get--#account_id-response-#mailing_id-deliveries"],"/#account_id/mailings/#mailing_id/members":[9,0,1,"get--#account_id-mailings-#mailing_id-members"],"/#account_id/response/#share_id/customer_share":[5,0,1,"get--#account_id-response-#share_id-customer_share"],"/#account_id/webhooks/#webhook_id":[4,3,1,"delete--#account_id-webhooks-#webhook_id"],"/#account_id/members/add":[8,2,1,"post--#account_id-members-add"],"/#account_id/members/email/optout/:email":[8,1,1,"put--#account_id-members-email-optout--email"],"/#account_id/response/#mailing_id/optouts":[5,0,1,"get--#account_id-response-#mailing_id-optouts"],"/#account_id/response/#mailing_id/shares":[5,0,1,"get--#account_id-response-#mailing_id-shares"],"/#account_id/groups/#member_group_id":[13,3,1,"delete--#account_id-groups-#member_group_id"],"/#account_id/mailings/#mailing_id":[9,3,1,"delete--#account_id-mailings-#mailing_id"],"/#account_id/members/#member_id/groups":[8,3,1,"delete--#account_id-members-#member_id-groups"],"/#account_id/groups":[13,2,1,"post--#account_id-groups"],"/#account_id/response/#mailing_id/clicks":[5,0,1,"get--#account_id-response-#mailing_id-clicks"],"/#account_id/mailings/#mailing_id/headsup":[9,0,1,"get--#account_id-mailings-#mailing_id-headsup"],"/#account_id/response/#mailing_id/signups":[5,0,1,"get--#account_id-response-#mailing_id-signups"],"/#account_id/response/#mailing_id/customer_shares":[5,0,1,"get--#account_id-response-#mailing_id-customer_shares"]}},terms:{all:[0,1,4,5,8,9,10,11,12,13,14],code:[0,1,6,3],change_typ:8,queri:[0,2,4],month:[0,5,9,14],four:[0,5],mile:0,least:0,follow:[0,1,4,5,7,9,11,13],link_target:[5,9],content:[1,11,6,9,3],privat:1,specif:[8,9,4],friendli:5,send:[1,9,4,3,5],program:1,customer_share_click:5,those:[1,12,5],group_upd:[12,4],sent:[5,8,12,9,14],curl_clos:[1,6,3],brown:[7,8],digit:5,everi:0,string:[0,4,5,7,8,9,10,12,13,14],fals:[1,3,4,5,6,7,8,9,10,13,14],webhook:[1,12,4],mailing_status:9,trigger_id:14,webview_share_click:5,affect:[7,8],member_add:[12,4],create_mail:9,new_boolean:10,foo:0,level:1,group_delet:[12,4],list:[0,1,2,4,5,7,8,9,10,11,12,13,14],upload:8,iter:2,"try":8,item:2,plaintext_onli:[9,14],div:[4,5,7,8,9,10,13,14],survey_id:14,setup:1,pleas:[1,8,11,9],prevent:2,work:[1,4],ten:0,sync:10,sign:[0,5,4],past:1,second:[0,7,14],field_creat:[12,4],further:1,shortcut_nam:10,click:[0,4,5,7,8,12,14],append:2,even:10,what:1,hide:[4,5,7,8,9,10,13,14],appear:[1,8],from_group_id:13,section:1,current:[1,8,12,9],delet:[1,4,7,8,9,10,12,13,14],"new":[1,4,5,7,8,9,10,11,13,14],net:[1,2,6,3],delivery_t:8,method:[5,8,13,4,9],can:[0,1,2,4,5,7,8,9,11,12,13],widget:[7,10,8,9,13],full:1,hash:0,datematch:0,displai:10,variat:9,gener:[0,8,12,14],onli:[5,8],here:[0,1,3,5,6,8],bodi:9,let:[1,4,10],address:[0,1,8,6,9],along:8,sinc:8,valu:[0,5,7,8,10,11],field_upd:[12,4],search:[0,1,8,9,7],survei:14,sender:[9,14],larger:2,queue:5,prior:9,action:[0,8],chang:[8,4],campaign:5,newbi:5,appli:[7,14],prefer:0,young:1,myemma:[4,5,7,8,9,13],filenam:8,customer_shar:5,"boolean":[0,1,5,7,8,9,10,13,14],curlopt_postfield:[1,3],total:5,jone:[7,5,8,13],select:[1,10],newslett:[7,8,13],describ:7,would:[0,1],commun:1,regist:4,two:[0,5],coverag:1,next:[0,1],create_webhook:4,few:[5,8],call:[1,2,3,4,6,8,12],criteria:7,member_add_to_group:[12,4],type:[1,3,4,5,6,7,10,9,14],until:2,more:[0,4,7,8,9,13],peopl:5,relat:[1,8,11,9],about:[10,8,12,4,9],notic:8,thide:[4,5,7,8,9,10,13,14],flag:[5,7,8,10,9,14],exce:2,indic:8,examin:1,particular:[1,4,5,8,10,12,9],in_progress:5,origin:9,must:[0,7,13,10],none:9,endpoint:[1,4,5,7,8,9,10,13,14],join:[0,7],hour:0,der:1,member_sinc:[0,5,7,8,9,13],uniqu:5,histori:8,soup:7,remain:[0,9],archiv:[5,9],member_optout:[12,4],drill:5,control:[1,11,9],quickstart:1,give:5,forward_mailing_id:5,email_domain:[0,5],share:[0,5,8,12,4],accept:[0,5,7,8,9,10,11,13,14],total_click:5,tag:[11,9],want:[1,12,13,5],occur:[7,12],some_numeric_field:0,delai:14,alwai:0,webhook_event_id:4,cours:1,multipl:[10,8],first_nam:[1,3,5,7,8,9,10,11,13,14],started_or_finish:[9,14],anoth:[9,13],get:[1,4,5,6,7,8,9,10,13,14],message_open:[12,4],html_bodi:[9,14],share_statu:5,push_offset:14,del_statu:5,tild:5,num_members_upd:8,simpl:0,chri:9,pizza:[7,8],map:0,autent:1,referenc:7,xxxx:6,sundai:0,jacqu:1,membership:13,taco:[7,5,8,9,13],mai:12,end:[2,8],associ:[1,8,9,4,5],grow:1,welcom:11,add_onli:8,"short":0,json_encod:[1,3],optout:[5,8,12,13],num_dupl:8,favorit:10,correspond:[0,1],greet:11,predic:[0,1],issu:[1,10],"12t11":[7,5,8,9,13],combin:7,allow:[0,7,8],some_zipcode_field:0,signed_up:5,order:[5,10],michel:[8,9],mailing_nam:5,checkbox:10,fields_upd:8,over:2,becaus:12,buyer:[7,8,9,13],comma:[9,13],is_dis:14,vari:8,paramet:[2,4,5,7,8,9,10,13,14],widget_typ:10,style:[0,4,5,7,8,9,10,13,14],group:[0,1,3,4,7,8,9,12,13,14],curl_setopt:[1,6,3],how:[7,1,2,4],fix:1,import_start:8,better:[13,14],platform:1,pend:[1,9],mailing_list:9,onc:9,mail:[0,1,4,5,8,11,12,9,14],hidden:13,main:1,might:[1,4],link_nam:[5,9],them:[8,9],messag:[4,5,8,12,11,9,14],"return":[0,1,4,5,7,8,9,10,12,13,14],greater:[0,8],thei:[0,9],food:10,timestamp:[0,5,12,9,10],spell:4,nashvil:1,dai:0,auth:1,"26t14":[7,14],instead:[12,2,8],now:5,down:5,term:[0,1],alex:9,name:[0,4,5,7,8,9,10,11,13,14],edit:[7,1,14,10],curl_getinfo:[1,6,3],authent:[1,6,4,3],successufulli:4,separ:[1,9,13],each:[1,2,5,9,12,11,13],found:[8,9,4,14],updat:[4,7,8,9,10,12,13,14],denni:1,status:[8,9],domain:0,weight:[4,5,7,8,9,10,13,14],resum:9,individu:[5,8],hard:[0,5],last_nam:[1,3,5,7,8,9,10,11,13,14],"05t15":5,birthdai:[10,14],connect:[1,6,3],doug:1,our:[1,11,12,4,14],happen:[1,4,5],commiss:1,short_display_nam:10,special:[0,7,8,13],out:[0,1,4,5,7,8,10,13],variabl:[1,6,3],message_shar:[12,4],network:[5,12],private_api_kei:[1,6,3],check_multipl:10,categori:1,rel:0,print:6,correct:10,integr:1,benjamin:[1,8],qualifi:11,insid:1,advanc:0,contain:[0,5,7,13,10,9],given:[0,8,9,4],standard:[5,9],status_from:8,base:[5,8],recipient_search:9,dictionari:8,put:[4,7,8,9,10,13,14],span:[4,5,7,8,9,10,13,14],"13t23":[7,5,8],refer:[5,7,8,13,10,9],visit:11,could:1,omit:5,success:[1,3,7,8,9,13],filter:[0,1,7],search_id:7,pagin:[1,2],member_id:[5,7,8,9,12,13],summari:[1,5],assign:9,first:[0,1,10,5],oper:[0,1,7,14],rang:5,notifi:12,directli:0,curlopt_ssl_verifyp:[1,6,3],curl_init:[1,6,3],number:[5,2,13,3,10],placehold:[1,11],date:[0,5,8,10,11,14],unlik:9,alreadi:[10,8,9,13],done:8,plaintext_pref:[7,8,9,13],oppos:8,open:[0,3,4,5,6,7,8,12],payload:4,fanci:5,size:2,differ:0,"long":10,script:1,data:[1,3,4,5,10,12],system:[8,12,4,14],wrapper:1,attach:11,easier:12,friend:11,curlinfo_http_cod:[1,6,3],shell:0,option:[0,5,7,8,9,10,13,14],especi:8,signup:[0,1,3,4,5,8,12,14],copi:[8,13],member_upd:[12,4],specifi:[0,2,7,8,10,11,9,14],curl_exec:[1,6,3],curlopt_httphead:[1,6,3],member_signup:[12,4],create_search:7,part:[0,9],enclos:11,than:[0,1,2,3,12,13],with_plaintext:9,"02t10":[5,8],"02t11":[5,8],"02t13":5,nathan:8,whenev:8,provid:[1,5,8,12,9,14],remov:[12,8,13,4],mailing_start:4,rate:2,structur:7,charact:9,greg:8,trackabl:11,were:5,minut:0,danc:1,error_count:[7,8,9,13],pre:[4,5,7,8,9,10,13,14],cleaner:1,sai:0,share_id:5,signup_form_id:[0,8,12,9,14],plaintext:[5,9,14],pass:[1,3],ani:[0,1,2,7,8,9],have:[0,1,5,8,12,9],tabl:5,need:1,seen:5,"null":[7,8,13,10,9,14],kevin:[9,14],signup_mail:0,caus:14,built:1,inform:[1,4,6,8,9,10,13],object_id:14,note:[1,8,9,4],also:[0,4,5,7,8,9,11,13],exampl:[0,1,3,5,6,7,11],take:[0,4],which:[0,1,4,8,10,12,9,14],some_number_field:0,singl:[0,1,3,4,5,8,10,12,13],excit:11,sure:1,delete_memb:13,normal:9,parent_mail:14,recipient_count:[5,9,14],previou:9,field_id:[10,12,14],last_run_at:7,most:14,pair:11,"class":[4,5,7,8,9,10,13,14],don:1,member_group_id:[8,9,13],mcconnel:[9,14],url:[1,3,4,5,6,12],mailing_finish:[12,4],clear:10,request:[1,2,3],doe:[0,5,7,8,9,10,13],member_status_upd:[12,4],declar:9,tech:4,determin:1,dataset:10,dow:0,recipi:9,"6db0cc7e6fdb2da589b65f29d90c96b6":9,show:[4,5,7,8,9,10,11,13,14],text:[10,11,12],radiu:0,syntax:[0,1,11,9],radio:10,font:[4,5,7,8,9,10,13,14],fine:9,find:[1,6,5],status_to:8,toast:[7,5,8,13],access:[1,5],giant:12,just:[0,1,9],pretti:8,column_ord:10,explain:[0,1],winner:9,activ:[1,5,7,8,13,9],figur:1,should:[1,2,3,7,8,11,9],templat:[11,14],share_count:5,count:[1,2,3,5],variou:[8,13],confirmed_opt_in:[7,8,9,13],familiar:1,express:0,account:[1,4,5,7,8,10,13,14],repo:1,cannot:[8,9,4],progress:9,report:[10,8],requir:[1,7,8,10,11,9],object:[1,13,5],favorite_food:[5,7,8,13,10,9],bar:0,organ:1,include_archiv:[5,9],"public":1,"default":[5,11,13,4,9],ref_member_id:5,message_share_click:[12,4],through:[1,8,4],where:[0,1,8,11,7],view:1,user:[0,8,9,13],set:[0,1,2,3,6,8,9,12,13],link_id:[0,5,12,9,14],see:[7,1,8],result:[0,1,2,5,8,9],respons:[0,1,2,4,5,7,8,9,10,13,14],fail:[5,9,4],themselv:2,member_field:[0,7],xxxxx:6,subject:[8,12,9,14],statu:[1,4,5,7,8,9,12,13],fancyonion:11,kei:[0,1,8,11,4],is_schedul:9,message_forward:[12,4],databas:8,someth:1,last_modified_at:[7,8,9,13],addresse:5,written:1,between:[0,7,2],clicked_uniqu:5,"import":[1,8,12,4,10],subscript:[1,3],entiti:1,curlopt_url:[1,6,3],email:[0,1,3,5,6,7,8,9,13],wide:14,extend:1,numer:10,http404:[4,5,7,8,9,10,13,14],job:13,entir:[0,8],share_click:5,to_group_id:13,curlopt_returntransf:[1,6,3],addit:[0,1,8,9,11,13],member_remove_from_group:[12,4],send_start:[0,9,14],protect:1,accident:2,last:[0,5,10],delimit:5,lentil:7,pertain:5,message_click:[12,4],curlopt_post:[1,3],audienc:[1,8,9],mang:0,improv:1,http500:14,seri:5,com:[4,5,6,7,8,9,11,13],zip_code_field:0,"03t15":[7,5,8,13],point:1,toni:[7,8],overview:[0,1,11,12,5],period:1,winner_id:9,colon:[7,11],optout_count:[7,8,9,13],suppli:9,cancel:9,tuesdai:0,duplic:5,quit:[5,8],user_id:4,recur:14,headsup:9,addition:[1,2],due:5,been:[1,8,10,5],mark:[8,9],whom:9,tshow:[4,5,7,8,9,10,13,14],trigger:[1,4,5,7,8,9,10,12,13,14],unsubscrib:0,treat:8,interest:[10,4],basic:[0,1,4,8,13,14],monthli:[7,8,13],member_delet:[12,4],hesit:1,blob:4,email_us:[0,5],mailing_mailing_id:5,mailing_id:[0,5,8,12,9,14],fire:[8,4,14],xxx:[1,3],rubi:1,argument:[0,5],link_ord:[5,9],input:1,extract:11,present:7,statist:8,"case":[1,8],look:[1,14,10],frozen:9,durat:9,email_error:[7,8,9,13],defin:[0,10,8,9],"while":0,smith:[7,5,8,9,13],outcom:5,abov:[0,1,8,7],error:[1,3,6,8,10,13],veen:1,loop:8,opt:[0,4,5,7,8,13],readi:9,deliv:5,recipient_group:9,equal:0,itself:0,new_statu:12,webhook_id:4,develop:1,recipient_memb:9,perform:8,make:[1,12,6,10],belong:[0,8,4],same:4,check:[8,6,9],member:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14],python:1,html:9,split:9,document:[1,11,12],complet:[1,3,4,6,8,9],week:0,finish:[5,12,4],http:[1,2,3,4,5,6,11,9],href:[4,5,7,8,9,10,13,14],nest:0,someon:4,rais:[4,5,7,8,9,10,13,14],initi:[10,9],php:[1,6,3],studi:1,recent:[1,8],kept:11,center:0,min:5,well:[1,5],inherit:9,person:9,mailing_typ:[9,14],without:[0,1],command:1,thi:[0,1,4,5,7,8,9,10,12,13,14],undefin:0,http_code:[1,6,3],latest:11,construct:[0,7,9],identifi:8,paus:9,execut:[1,3],less:0,resp:[4,5,7,8,9,10,13,14],"_post":[1,3],against:0,aspect:13,recipient_email:9,source_filenam:8,yet:5,languag:1,"12t09":[7,8],display_nam:10,easi:[1,12,10],"01t00":8,had:0,littl:1,blog:4,add:[12,1,8,13,3],other:[1,8,9,3,5],curlopt_userpwd:[1,6,3],import_finish:[8,12,4],schedul:9,els:[1,6,3],save:7,match:[0,7],build:1,sanit:1,applic:[1,6,3],account_id:[1,3,4,5,6,7,8,9,10,12,13,14],handl:1,disposit:1,crud:[8,13,14],print_r:[6,3],mailing_statu:[9,14],know:[1,4,5],background:13,parent_mailing_id:[9,14],bit:1,insert:11,emma:[1,5,7,8,9,12,13],like:1,onion:11,deprec:4,arbitrari:8,manual:9,integ:[1,8,14,10,5],collect:1,api:[1,2,3,6,8,12],either:[0,5,7],bunch:0,output:9,group_id:[1,8,12,3],soft:[0,5],manag:[0,1,13,4],import_id:[8,12],www:[5,9],old:7,deal:[8,13],captur:1,arrai:[0,1,3,5,6,7,8,9,10,12,13,14],some:[1,11,5],field_delet:[12,4],certain:12,intern:10,sampl:[1,4,5,7,8,9,10,13,14],elaps:[2,9],unless:1,deleted_at:[7,8,13,10,9,14],some_string_field:0,librari:11,woodcock:1,emmarubi:1,bounce_count:[7,8,9,13],emmapython:1,public_kei:4,deliveri:5,broad:12,per:5,send_finish:[9,14],larg:[0,2],condit:7,three:9,network_cod:12,localhost:9,emmaphp:1,with_html_bodi:9,who:[0,5,8],bold:[4,5,7,8,9,10,13,14],event_typ:14,inspect:1,usag:[1,8,12],monsewicz:1,num_members_ad:8,fulli:11,from:[1,4,8,9,12,13,14],post:[1,3,4,7,8,9,10,12,13,14],group_creat:[12,4],gladi:[7,5,8,13],hurst:1,actual:5,zip:0,groups_upd:8,column:10,page:2,includ:[1,5,7,8,9,10,13],webview:9,mean:0,disabl:[9,14],block:[1,2],yyyi:5,own:1,member_data:[1,3],glob:0,bounc:[0,5],within:[0,8],encod:[9,4],delivery_typ:[5,8],compos:0,webview_shar:5,field_typ:10,active_count:[7,8,9,13],public_webview_url:9,pivot:5,your:[1,4,5,7,8,9,10,13],websit:11,fast:8,van:1,wai:[1,12],area:1,overus:2,group_nam:[8,12,13,9],support:12,unique_click:5,json:[0,1,3,4,6,7],submit:1,custom:[5,8,11,10],avail:[0,11,4],start:[1,2,8,4],interfac:12,send_at:[9,14],exceed:2,"var":3,interv:[0,14],fork:1,head:[1,6,9,3],form:[1,3,4,6,8,10,14],enough:2,forc:1,forward:[0,4,5,8,12,9],"31st":0,group_typ:[8,9,13],push_offset_unit:14,link:[0,4,5,11,9,14],line:[1,5],realli:1,"true":[0,1,2,3,4,6,7,8,9,10,13,14],archived_t:[9,14],info:4,pull:[1,2],made:1,possibl:[5,8,12],whether:8,maximum:2,tell:12,http403:9,record:[0,7,8],below:[0,1,8,12],http400:[7,8,9],limit:[5,2,8,9],some_array_field:0,otherwis:[1,8,10],start_t:14,mta:5,expect:1,notif:9,creat:[4,5,7,9,10,12,13,14],"int":5,retriev:[7,1,2,8,9],year:[0,5,9,14],repres:5,exist:[0,4,5,7,8,10,13],behavior:11,bob:[7,5],curl:[1,6],portland:1,probabl:14,echo:[1,3],successfulli:[5,8,9],mailing_subject:12,grp:13,todo:11,when:[8,12,4,9],detail:[1,4,7,8,9,10,13],invalid:[7,8,9],event:[4,7,8,13,12,9,14],field:[0,1,3,4,5,7,8,9,10,11,12,13,14],valid:[5,8,9,13],futur:1,num_skip:8,test:[5,6,7,13,9,14],ignor:8,you:[0,1,2,4,5,7,8,9,10,11,12,13],emmasdk:1,member_status_id:[7,5,8,9,13],public_api_kei:[1,6,3],stat:[5,9],claus:[0,7],event_nam:[12,4],e2ma:[1,2,6,3],error_messag:8,param:[9,4],app_messag:[1,3],ella:8,bulk:[1,8],receiv:[0,2,5,8,12,9],heads_up_email:9,longer:9,home:11,confirm:8,descript:[4,14],ohmyemma:1,portion:0,opted_out:5,time:[1,2,8,13,5],reply_to:[9,14],resource_url:12,hello:[11,9,14]},objtypes:{"0":"http:get","1":"http:put","2":"http:post","3":"http:delete"},titles:["Search Syntax","Emma API","Pagination","PHP Signup Example","Webhooks","Response","PHP Get Member By Email Example","Searches","Members","Mailings","Fields","Placeholder Syntax","Webhook Usage","Groups","Triggers"],objnames:{"0":["http","get","HTTP get"],"1":["http","put","HTTP put"],"2":["http","post","HTTP post"],"3":["http","delete","HTTP delete"]},filenames:["member_search","index","pagination","php_signup_example","api/external/webhooks","api/external/response","php_get_member_example","api/external/searches","api/external/members","api/external/mailings","api/external/fields","placeholders","webhooks","api/external/groups","api/external/triggers"]}) \ No newline at end of file +Search.setIndex({objects:{"":{"/#account_id/members/#member_id/groups/remove":[8,1,1,"put--#account_id-members-#member_id-groups-remove"],"/#account_id/mailings/#mailing_id/winner/#winner_id":[9,2,1,"post--#account_id-mailings-#mailing_id-winner-#winner_id"],"/#account_id/response/#mailing_id/in_progress":[5,0,1,"get--#account_id-response-#mailing_id-in_progress"],"/#account_id/members/groups/remove":[8,1,1,"put--#account_id-members-groups-remove"],"/#account_id/mailings/#mailing_id/searches":[9,0,1,"get--#account_id-mailings-#mailing_id-searches"],"/#account_id/fields":[10,2,1,"post--#account_id-fields"],"/#account_id/members/#group_id/copy":[8,1,1,"put--#account_id-members-#group_id-copy"],"/#account_id/members/status":[8,1,1,"put--#account_id-members-status"],"/#account_id/response/#mailing_id/shares/overview":[5,0,1,"get--#account_id-response-#mailing_id-shares-overview"],"/#account_id/webhooks/events":[4,0,1,"get--#account_id-webhooks-events"],"/#account_id/members/#member_id/optout":[8,0,1,"get--#account_id-members-#member_id-optout"],"/#account_id/webhooks":[4,3,1,"delete--#account_id-webhooks"],"/#account_id/fields/#field_id":[10,3,1,"delete--#account_id-fields-#field_id"],"/#account_id/response/#mailing_id":[5,0,1,"get--#account_id-response-#mailing_id"],"/#account_id/groups/#member_group_id/members/remove":[13,3,1,"delete--#account_id-groups-#member_group_id-members-remove"],"/#account_id/searches":[7,2,1,"post--#account_id-searches"],"/#account_id/members/imports":[8,0,1,"get--#account_id-members-imports"],"/#account_id/forwards/#mailing_id/#member_id":[9,2,1,"post--#account_id-forwards-#mailing_id-#member_id"],"/#account_id/response/#mailing_id/customer_share_clicks":[5,0,1,"get--#account_id-response-#mailing_id-customer_share_clicks"],"/#account_id/mailings/#mailing_id/messages/#member_id":[9,0,1,"get--#account_id-mailings-#mailing_id-messages-#member_id"],"/#account_id/members/#member_id/mailings":[8,0,1,"get--#account_id-members-#member_id-mailings"],"/#account_id/groups/#from_group_id/#to_group_id/members/copy":[13,1,1,"put--#account_id-groups-#from_group_id-#to_group_id-members-copy"],"/#account_id/triggers":[14,2,1,"post--#account_id-triggers"],"/#account_id/triggers/#trigger_id":[14,3,1,"delete--#account_id-triggers-#trigger_id"],"/#account_id/members/delete":[8,1,1,"put--#account_id-members-delete"],"/#account_id/mailings/#mailing_id/groups":[9,0,1,"get--#account_id-mailings-#mailing_id-groups"],"/#account_id/response/#mailing_id/forwards":[5,0,1,"get--#account_id-response-#mailing_id-forwards"],"/#account_id/members/#member_id":[8,3,1,"delete--#account_id-members-#member_id"],"/#account_id/triggers/#trigger_id/mailings":[14,0,1,"get--#account_id-triggers-#trigger_id-mailings"],"/#account_id/searches/#search_id/members":[7,0,1,"get--#account_id-searches-#search_id-members"],"/#account_id/members/status/:status_from/to/:status_to":[8,1,1,"put--#account_id-members-status--status_from-to--status_to"],"/#account_id/response/#mailing_id/sends":[5,0,1,"get--#account_id-response-#mailing_id-sends"],"/#account_id/members":[8,3,1,"delete--#account_id-members"],"/#account_id/members/email/:email":[8,0,1,"get--#account_id-members-email--email"],"/#account_id/response/#mailing_id/links":[5,0,1,"get--#account_id-response-#mailing_id-links"],"/#account_id/searches/#search_id":[7,3,1,"delete--#account_id-searches-#search_id"],"/#account_id/members/imports/#import_id/members":[8,0,1,"get--#account_id-members-imports-#import_id-members"],"/#account_id/fields/#field_id/clear":[10,2,1,"post--#account_id-fields-#field_id-clear"],"/#account_id/groups/#member_group_id/members":[13,3,1,"delete--#account_id-groups-#member_group_id-members"],"/#account_id/members/imports/#import_id":[8,0,1,"get--#account_id-members-imports-#import_id"],"/#account_id/response":[5,0,1,"get--#account_id-response"],"/#account_id/response/#mailing_id/opens":[5,0,1,"get--#account_id-response-#mailing_id-opens"],"/#account_id/members/imports/delete":[8,3,1,"delete--#account_id-members-imports-delete"],"/#account_id/mailings":[9,0,1,"get--#account_id-mailings"],"/#account_id/mailings/cancel/#mailing_id":[9,3,1,"delete--#account_id-mailings-cancel-#mailing_id"],"/#account_id/mailings/validate":[9,2,1,"post--#account_id-mailings-validate"],"/#account_id/response/#mailing_id/deliveries":[5,0,1,"get--#account_id-response-#mailing_id-deliveries"],"/#account_id/mailings/#mailing_id/members":[9,0,1,"get--#account_id-mailings-#mailing_id-members"],"/#account_id/response/#share_id/customer_share":[5,0,1,"get--#account_id-response-#share_id-customer_share"],"/#account_id/webhooks/#webhook_id":[4,3,1,"delete--#account_id-webhooks-#webhook_id"],"/#account_id/members/add":[8,2,1,"post--#account_id-members-add"],"/#account_id/members/email/optout/:email":[8,1,1,"put--#account_id-members-email-optout--email"],"/#account_id/response/#mailing_id/optouts":[5,0,1,"get--#account_id-response-#mailing_id-optouts"],"/#account_id/response/#mailing_id/shares":[5,0,1,"get--#account_id-response-#mailing_id-shares"],"/#account_id/groups/#member_group_id":[13,3,1,"delete--#account_id-groups-#member_group_id"],"/#account_id/mailings/#mailing_id":[9,3,1,"delete--#account_id-mailings-#mailing_id"],"/#account_id/members/#member_id/groups":[8,3,1,"delete--#account_id-members-#member_id-groups"],"/#account_id/groups":[13,2,1,"post--#account_id-groups"],"/#account_id/response/#mailing_id/clicks":[5,0,1,"get--#account_id-response-#mailing_id-clicks"],"/#account_id/mailings/#mailing_id/headsup":[9,0,1,"get--#account_id-mailings-#mailing_id-headsup"],"/#account_id/response/#mailing_id/signups":[5,0,1,"get--#account_id-response-#mailing_id-signups"],"/#account_id/response/#mailing_id/customer_shares":[5,0,1,"get--#account_id-response-#mailing_id-customer_shares"]}},terms:{all:[0,1,4,5,8,9,10,11,12,13,14],code:[0,1,6,3],change_typ:8,queri:[0,2,4],month:[0,5,9,14],four:[0,5],mile:0,least:0,follow:[0,1,4,5,7,9,11,13],link_target:[5,9],content:[1,11,6,9,3],privat:1,specif:[8,9,4],friendli:5,send:[1,9,4,3,5],program:1,customer_share_click:5,those:[1,12,5],group_upd:[12,4],sent:[5,8,12,9,14],curl_clos:[1,6,3],brown:[7,8],digit:5,everi:0,string:[0,4,5,7,8,9,10,12,13,14],fals:[1,3,4,5,6,7,8,9,10,13,14],webhook:[1,12,4],mailing_status:9,trigger_id:14,webview_share_click:5,affect:[7,8],member_add:[12,4],create_mail:9,new_boolean:10,foo:0,level:1,group_delet:[12,4],list:[0,1,2,4,5,7,8,9,10,11,12,13,14],upload:8,iter:2,"try":8,item:2,plaintext_onli:[9,14],div:[4,5,7,8,9,10,13,14],survey_id:14,setup:1,pleas:[1,8,11,9],prevent:2,work:[1,4],ten:0,sync:10,sign:[0,5,4],past:1,second:[0,7,14],field_creat:[12,4],further:1,shortcut_nam:10,click:[0,4,5,7,8,12,14],append:2,even:10,what:1,hide:[4,5,7,8,9,10,13,14],appear:[1,8],from_group_id:13,section:1,current:[1,8,12,9],delet:[1,4,7,8,9,10,12,13,14],"new":[1,4,5,7,8,9,10,11,13,14],net:[1,2,6,3],delivery_t:8,method:[5,8,13,4,9],can:[0,1,2,4,5,7,8,9,11,12,13],widget:[7,10,8,9,13],full:1,hash:0,datematch:0,displai:10,variat:9,gener:[0,8,12,14],onli:[5,8],here:[0,1,3,5,6,8],bodi:9,let:[1,4,10],address:[0,1,8,6,9],along:8,sinc:8,valu:[0,5,7,8,10,11],field_upd:[12,4],search:[0,1,8,9,7],survei:14,sender:[9,14],larger:2,queue:5,prior:9,action:[0,8],chang:[8,4],campaign:5,newbi:5,appli:[7,14],prefer:0,young:1,myemma:[4,5,7,8,9,13],filenam:8,customer_shar:5,"boolean":[0,1,5,7,8,9,10,13,14],curlopt_postfield:[1,3],total:5,jone:[7,5,8,13],select:[1,10],newslett:[7,8,13],describ:7,would:[0,1],commun:1,regist:4,two:[0,5],coverag:1,next:[0,1],create_webhook:4,few:[5,8],call:[1,2,3,4,6,8,12],criteria:7,member_add_to_group:[12,4],type:[1,3,4,5,6,7,10,9,14],until:2,more:[0,4,7,8,9,13],peopl:5,relat:[1,8,11,9],about:[10,8,12,4,9],notic:8,thide:[4,5,7,8,9,10,13,14],flag:[5,7,8,10,9,14],exce:2,indic:8,examin:1,particular:[1,4,5,8,10,12,9],in_progress:5,origin:9,must:[0,7,13,10],none:9,endpoint:[1,4,5,7,8,9,10,13,14],join:[0,7],hour:0,der:1,member_sinc:[0,5,7,8,9,13],uniqu:5,histori:8,soup:7,remain:[0,9],archiv:[5,9],member_optout:[12,4],drill:5,control:[1,11,9],quickstart:1,give:5,forward_mailing_id:5,email_domain:[0,5],share:[0,5,8,12,4],accept:[0,5,7,8,9,10,11,13,14],total_click:5,tag:[11,9],want:[1,12,13,5],occur:[7,12],some_numeric_field:0,delai:14,alwai:0,webhook_event_id:4,cours:1,multipl:[10,8],first_nam:[1,3,5,7,8,9,10,11,13,14],started_or_finish:[9,14],anoth:[9,13],get:[1,4,5,6,7,8,9,10,13,14],message_open:[12,4],html_bodi:[9,14],share_statu:5,push_offset:14,del_statu:5,tild:5,num_members_upd:8,simpl:0,chri:9,pizza:[7,8],map:0,autent:1,referenc:7,xxxx:6,sundai:0,jacqu:1,membership:13,taco:[7,5,8,9,13],mai:12,end:[2,8],associ:[1,8,9,4,5],grow:1,welcom:11,add_onli:8,"short":0,json_encod:[1,3],optout:[5,8,12,13],num_dupl:8,favorit:10,correspond:[0,1],greet:11,predic:[0,1],issu:[1,10],"12t11":[7,5,8,9,13],combin:7,allow:[0,7,8],some_zipcode_field:0,signed_up:5,order:[5,10],michel:[8,9],mailing_nam:5,checkbox:10,fields_upd:8,over:2,soon:1,buyer:[7,8,9,13],comma:[9,13],is_dis:14,vari:8,paramet:[2,4,5,7,8,9,10,13,14],widget_typ:10,style:[0,4,5,7,8,9,10,13,14],group:[0,1,3,4,7,8,9,12,13,14],curl_setopt:[1,6,3],how:[7,1,2,4],fix:1,import_start:8,better:[13,14],platform:1,pend:[1,9],mailing_list:9,onc:9,mail:[0,1,4,5,8,11,12,9,14],hidden:13,main:1,might:[1,4],link_nam:[5,9],them:[8,9],messag:[4,5,8,12,11,9,14],"return":[0,1,4,5,7,8,9,10,12,13,14],greater:[0,8],thei:[0,9],food:10,timestamp:[0,5,12,9,10],spell:4,nashvil:1,dai:0,auth:1,framework:1,instead:[12,2,8],now:5,down:5,term:[0,1],alex:9,name:[0,4,5,7,8,9,10,11,13,14],edit:[7,1,14,10],curl_getinfo:[1,6,3],authent:[1,6,4,3],successufulli:4,separ:[1,9,13],each:[1,2,5,9,12,11,13],found:[8,9,4,14],updat:[4,7,8,9,10,12,13,14],denni:1,status:[8,9],domain:0,weight:[4,5,7,8,9,10,13,14],resum:9,individu:[5,8],hard:[0,5],last_nam:[1,3,5,7,8,9,10,11,13,14],"05t15":5,birthdai:[10,14],connect:[1,6,3],doug:1,our:[1,11,12,4,14],happen:[1,4,5],commiss:1,short_display_nam:10,special:[0,7,8,13],out:[0,1,4,5,7,8,10,13],variabl:[1,6,3],message_shar:[12,4],network:[5,12],private_api_kei:[1,6,3],check_multipl:10,categori:1,rel:0,print:6,correct:10,integr:1,benjamin:[1,8],qualifi:11,insid:1,advanc:0,contain:[0,5,7,13,10,9],given:[0,8,9,4],standard:[5,9],status_from:8,base:[5,8],recipient_search:9,dictionari:8,put:[4,7,8,9,10,13,14],span:[4,5,7,8,9,10,13,14],"13t23":[7,5,8],refer:[5,7,8,13,10,9],visit:11,could:1,omit:5,success:[1,3,7,8,9,13],filter:[0,1,7],search_id:7,pagin:[1,2],member_id:[5,7,8,9,12,13],summari:[1,5],assign:9,first:[0,1,10,5],oper:[0,1,7,14],rang:5,notifi:12,directli:0,curlopt_ssl_verifyp:[1,6,3],curl_init:[1,6,3],number:[5,2,13,3,10],placehold:[1,11],date:[0,5,8,10,11,14],unlik:9,alreadi:[10,8,9,13],done:8,plaintext_pref:[7,8,9,13],oppos:8,open:[0,3,4,5,6,7,8,12],payload:4,fanci:5,size:2,differ:0,"long":10,script:1,data:[1,3,4,5,10,12],system:[8,12,4,14],wrapper:1,attach:11,easier:12,friend:11,curlinfo_http_cod:[1,6,3],shell:0,option:[0,5,7,8,9,10,13,14],especi:8,signup:[0,1,3,4,5,8,12,14],copi:[8,13],member_upd:[12,4],specifi:[0,2,7,8,10,11,9,14],curl_exec:[1,6,3],curlopt_httphead:[1,6,3],member_signup:[12,4],create_search:7,part:[0,9],enclos:11,than:[0,1,2,3,12,13],with_plaintext:9,"02t10":[5,8],"02t11":[5,8],"02t13":5,nathan:8,whenev:8,provid:[1,5,8,12,9,14],remov:[12,8,13,4],mailing_start:4,rate:2,structur:7,charact:9,greg:8,trackabl:11,were:5,minut:0,danc:1,error_count:[7,8,9,13],pre:[4,5,7,8,9,10,13,14],cleaner:1,sai:0,share_id:5,signup_form_id:[0,8,12,9,14],plaintext:[5,9,14],pass:[1,3],ani:[0,1,2,7,8,9],have:[0,1,5,8,12,9],tabl:5,need:1,seen:5,"null":[7,8,13,10,9,14],kevin:[9,14],signup_mail:0,caus:14,built:1,inform:[1,4,6,8,9,10,13],object_id:14,note:[1,8,9,4],also:[0,4,5,7,8,9,11,13],exampl:[0,1,3,5,6,7,11],take:[0,4],which:[0,1,4,8,10,12,9,14],some_number_field:0,singl:[0,1,3,4,5,8,10,12,13],excit:11,sure:1,delete_memb:13,normal:9,parent_mail:14,recipient_count:[5,9,14],previou:9,field_id:[10,12,14],last_run_at:7,most:14,pair:11,"class":[4,5,7,8,9,10,13,14],don:1,member_group_id:[8,9,13],mcconnel:[9,14],url:[1,3,4,5,6,12],mailing_finish:[12,4],clear:10,request:[1,2,3],doe:[0,5,7,8,9,10,13],member_status_upd:[12,4],declar:9,tech:4,determin:1,dataset:10,dow:0,recipi:9,"6db0cc7e6fdb2da589b65f29d90c96b6":9,show:[4,5,7,8,9,10,11,13,14],text:[10,11,12],radiu:0,syntax:[0,1,11,9],radio:10,font:[4,5,7,8,9,10,13,14],fine:9,find:[1,6,5],status_to:8,toast:[7,5,8,13],access:[1,5],giant:12,just:[0,1,9],pretti:8,column_ord:10,explain:[0,1],winner:9,activ:[1,5,7,8,13,9],figur:1,should:[1,2,3,7,8,11,9],templat:[11,14],share_count:5,count:[1,2,3,5],variou:[8,13],confirmed_opt_in:[7,8,9,13],familiar:1,express:0,account:[1,4,5,7,8,10,13,14],becaus:12,repo:1,cannot:[8,9,4],progress:9,report:[10,8],requir:[1,7,8,10,11,9],object:[1,13,5],favorite_food:[5,7,8,13,10,9],bar:0,organ:1,include_archiv:[5,9],"public":1,"default":[5,11,13,4,9],ref_member_id:5,message_share_click:[12,4],through:[1,8,4],where:[0,1,8,11,7],view:1,user:[0,8,9,13],set:[0,1,2,3,6,8,9,12,13],link_id:[0,5,12,9,14],see:[7,1,8],result:[0,1,2,5,8,9],respons:[0,1,2,4,5,7,8,9,10,13,14],fail:[5,9,4],themselv:2,member_field:[0,7],xxxxx:6,subject:[8,12,9,14],statu:[1,4,5,7,8,9,12,13],fancyonion:11,kei:[0,1,8,11,4],is_schedul:9,message_forward:[12,4],databas:8,someth:1,last_modified_at:[7,8,9,13],addresse:5,written:1,between:[0,7,2],clicked_uniqu:5,"import":[1,8,12,4,10],subscript:[1,3],entiti:1,curlopt_url:[1,6,3],email:[0,1,3,5,6,7,8,9,13],wide:14,extend:1,numer:10,http404:[4,5,7,8,9,10,13,14],job:13,entir:[0,8],share_click:5,to_group_id:13,come:1,curlopt_returntransf:[1,6,3],addit:[0,1,8,9,11,13],member_remove_from_group:[12,4],send_start:[0,9,14],protect:1,accident:2,last:[0,5,10],delimit:5,lentil:7,pertain:5,message_click:[12,4],curlopt_post:[1,3],audienc:[1,8,9],mang:0,improv:1,http500:14,seri:5,com:[4,5,6,7,8,9,11,13],zip_code_field:0,"03t15":[7,5,8,13],point:1,toni:[7,8],overview:[0,1,11,12,5],period:1,winner_id:9,colon:[7,11],optout_count:[7,8,9,13],suppli:9,cancel:9,tuesdai:0,duplic:5,quit:[5,8],user_id:4,recur:14,headsup:9,addition:[1,2],due:5,been:[1,8,10,5],mark:[8,9],whom:9,tshow:[4,5,7,8,9,10,13,14],trigger:[1,4,5,7,8,9,10,12,13,14],unsubscrib:0,treat:8,interest:[10,4],basic:[0,1,4,8,13,14],monthli:[7,8,13],member_delet:[12,4],hesit:1,blob:4,email_us:[0,5],mailing_mailing_id:5,mailing_id:[0,5,8,12,9,14],fire:[8,4,14],xxx:[1,3],rubi:1,argument:[0,5],link_ord:[5,9],input:1,extract:11,present:7,statist:8,"case":[1,8],look:[1,14,10],frozen:9,durat:9,email_error:[7,8,9,13],defin:[0,10,8,9],"while":0,smith:[7,5,8,9,13],outcom:5,abov:[0,1,8,7],error:[1,3,6,8,10,13],veen:1,loop:8,opt:[0,4,5,7,8,13],readi:9,deliv:5,recipient_group:9,equal:0,itself:0,new_statu:12,webhook_id:4,develop:1,recipient_memb:9,perform:8,make:[1,12,6,10],belong:[0,8,4],same:4,check:[8,6,9],member:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14],python:1,html:9,split:9,document:[1,11,12],complet:[1,3,4,6,8,9],week:0,finish:[5,12,4],http:[1,2,3,4,5,6,11,9],href:[4,5,7,8,9,10,13,14],nest:0,someon:4,rais:[4,5,7,8,9,10,13,14],initi:[10,9],php:[1,6,3],studi:1,recent:[1,8],kept:11,center:0,min:5,well:[1,5],inherit:9,person:9,mailing_typ:[9,14],without:[0,1],command:1,thi:[0,1,4,5,7,8,9,10,12,13,14],undefin:0,http_code:[1,6,3],latest:11,construct:[0,7,9],identifi:8,paus:9,execut:[1,3],less:0,resp:[4,5,7,8,9,10,13,14],"_post":[1,3],against:0,aspect:13,recipient_email:9,source_filenam:8,yet:5,languag:1,"12t09":[7,8],display_nam:10,easi:[1,12,10],"01t00":8,had:0,littl:1,blog:4,add:[12,1,8,13,3],other:[1,8,9,3,5],curlopt_userpwd:[1,6,3],import_finish:[8,12,4],schedul:9,els:[1,6,3],save:7,match:[0,7],build:1,sanit:1,applic:[1,6,3],account_id:[1,3,4,5,6,7,8,9,10,12,13,14],handl:1,disposit:1,crud:[8,13,14],print_r:[6,3],mailing_statu:[9,14],know:[1,4,5],background:13,parent_mailing_id:[9,14],bit:1,insert:11,emma:[1,5,7,8,9,12,13],like:1,onion:11,deprec:4,arbitrari:8,manual:9,integ:[1,8,14,10,5],collect:1,api:[1,2,3,6,8,12],either:[0,5,7],bunch:0,output:9,group_id:[1,8,12,3],soft:[0,5],manag:[0,1,13,4],import_id:[8,12],www:[5,9],old:7,who:[0,5,8],deal:[8,13],captur:1,arrai:[0,1,3,5,6,7,8,9,10,12,13,14],some:[1,11,5],field_delet:[12,4],certain:12,intern:10,sampl:[1,4,5,7,8,9,10,13,14],elaps:[2,9],unless:1,deleted_at:[7,8,13,10,9,14],some_string_field:0,librari:11,woodcock:1,emmarubi:1,bounce_count:[7,8,9,13],emmapython:1,public_kei:4,deliveri:5,broad:12,per:5,send_finish:[9,14],larg:[0,2],condit:7,three:9,network_cod:12,localhost:9,emmaphp:1,with_html_bodi:9,"10t14":[7,14],bold:[4,5,7,8,9,10,13,14],event_typ:14,inspect:1,usag:[1,8,12],monsewicz:1,num_members_ad:8,fulli:11,from:[1,4,8,9,12,13,14],post:[1,3,4,7,8,9,10,12,13,14],group_creat:[12,4],gladi:[7,5,8,13],hurst:1,actual:5,zip:0,groups_upd:8,column:10,page:2,includ:[1,5,7,8,9,10,13],webview:9,mean:0,disabl:[9,14],block:[1,2],yyyi:5,own:1,member_data:[1,3],glob:0,bounc:[0,5],within:[0,8],encod:[9,4],delivery_typ:[5,8],compos:0,webview_shar:5,field_typ:10,active_count:[7,8,9,13],public_webview_url:9,pivot:5,your:[1,4,5,7,8,9,10,13],websit:11,fast:8,van:1,wai:[1,12],area:1,overus:2,group_nam:[8,12,13,9],support:12,unique_click:5,json:[0,1,3,4,6,7],submit:1,custom:[5,8,11,10],avail:[0,11,4],start:[1,2,8,4],interfac:12,send_at:[9,14],exceed:2,"var":3,interv:[0,14],fork:1,head:[1,6,9,3],form:[1,3,4,6,8,10,14],enough:2,forc:1,forward:[0,4,5,8,12,9],"31st":0,group_typ:[8,9,13],push_offset_unit:14,link:[0,4,5,11,9,14],line:[1,5],realli:1,"true":[0,1,2,3,4,6,7,8,9,10,13,14],archived_t:[9,14],info:4,pull:[1,2],made:1,possibl:[5,8,12],whether:8,maximum:2,tell:12,http403:9,record:[0,7,8],below:[0,1,8,12],http400:[7,8,9],limit:[5,2,8,9],some_array_field:0,otherwis:[1,8,10],start_t:14,mta:5,expect:1,notif:9,creat:[4,5,7,9,10,12,13,14],"int":5,retriev:[7,1,2,8,9],year:[0,5,9,14],repres:5,exist:[0,4,5,7,8,10,13],behavior:11,bob:[7,5],curl:[1,6],portland:1,probabl:14,echo:[1,3],successfulli:[5,8,9],mailing_subject:12,grp:13,todo:11,when:[8,12,4,9],detail:[1,4,7,8,9,10,13],invalid:[7,8,9],event:[4,7,8,13,12,9,14],field:[0,1,3,4,5,7,8,9,10,11,12,13,14],valid:[5,8,9,13],futur:1,num_skip:8,test:[5,6,7,13,9,14],ignor:8,you:[0,1,2,4,5,7,8,9,10,11,12,13],emmasdk:1,member_status_id:[7,5,8,9,13],public_api_kei:[1,6,3],stat:[5,9],claus:[0,7],event_nam:[12,4],e2ma:[1,2,6,3],error_messag:8,param:[9,4],app_messag:[1,3],ella:8,bulk:[1,8],receiv:[0,2,5,8,12,9],heads_up_email:9,longer:9,home:11,confirm:8,descript:[4,14],ohmyemma:1,portion:0,opted_out:5,time:[1,2,8,13,5],reply_to:[9,14],resource_url:12,hello:[11,9,14]},objtypes:{"0":"http:get","1":"http:put","2":"http:post","3":"http:delete"},titles:["Search Syntax","Emma API","Pagination","PHP Signup Example","Webhooks","Response","PHP Get Member By Email Example","Searches","Members","Mailings","Fields","Placeholder Syntax","Webhook Usage","Groups","Triggers"],objnames:{"0":["http","get","HTTP get"],"1":["http","put","HTTP put"],"2":["http","post","HTTP post"],"3":["http","delete","HTTP delete"]},filenames:["member_search","index","pagination","php_signup_example","api/external/webhooks","api/external/response","php_get_member_example","api/external/searches","api/external/members","api/external/mailings","api/external/fields","placeholders","webhooks","api/external/groups","api/external/triggers"]}) \ No newline at end of file diff --git a/webhooks.html b/webhooks.html index 4b8fb20..59b2592 100644 --- a/webhooks.html +++ b/webhooks.html @@ -507,7 +507,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Apr 26, 2013 at 02:56 PM. + Last updated on May 10, 2013 at 02:30 PM. </div> </body> </html> \ No newline at end of file From 130c9ad27272fc28861a401ac5b2b263a81c8258 Mon Sep 17 00:00:00 2001 From: Sofia Karagadayeva <sofia@3442232.local> Date: Tue, 14 May 2013 16:50:32 -0500 Subject: [PATCH 042/219] Update audience documentation. --- api/external/fields.html | 2 +- api/external/groups.html | 2 +- api/external/mailings.html | 2 +- api/external/members.html | 2 +- api/external/response.html | 2 +- api/external/searches.html | 4 ++-- api/external/triggers.html | 8 ++++---- api/external/webhooks.html | 2 +- genindex.html | 2 +- http-routingtable.html | 2 +- index.html | 2 +- member_search.html | 2 +- pagination.html | 2 +- php_get_member_example.html | 2 +- php_signup_example.html | 2 +- placeholders.html | 2 +- search.html | 2 +- searchindex.js | 2 +- webhooks.html | 2 +- 19 files changed, 23 insertions(+), 23 deletions(-) diff --git a/api/external/fields.html b/api/external/fields.html index b13a999..b16ecf8 100644 --- a/api/external/fields.html +++ b/api/external/fields.html @@ -415,7 +415,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on May 10, 2013 at 02:30 PM. + Last updated on May 14, 2013 at 04:50 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/groups.html b/api/external/groups.html index b29466a..ce6c70f 100644 --- a/api/external/groups.html +++ b/api/external/groups.html @@ -702,7 +702,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on May 10, 2013 at 02:30 PM. + Last updated on May 14, 2013 at 04:50 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/mailings.html b/api/external/mailings.html index 60d7618..c1e3a2e 100644 --- a/api/external/mailings.html +++ b/api/external/mailings.html @@ -810,7 +810,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on May 10, 2013 at 02:30 PM. + Last updated on May 14, 2013 at 04:50 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/members.html b/api/external/members.html index 45d5663..b0ec443 100644 --- a/api/external/members.html +++ b/api/external/members.html @@ -1217,7 +1217,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on May 10, 2013 at 02:30 PM. + Last updated on May 14, 2013 at 04:50 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/response.html b/api/external/response.html index 64c8e63..33486a5 100644 --- a/api/external/response.html +++ b/api/external/response.html @@ -1019,7 +1019,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on May 10, 2013 at 02:30 PM. + Last updated on May 14, 2013 at 04:50 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/searches.html b/api/external/searches.html index f92e017..888c678 100644 --- a/api/external/searches.html +++ b/api/external/searches.html @@ -199,7 +199,7 @@ <h1>Searches<a class="headerlink" href="#searches" title="Permalink to this head "name": "Test Search", "criteria": "[\"or\", [\"group\", \"eq\", \"Monthly Newsletter\"],[\"group\", \"eq\", \"Widget Buyers\"]]", "deleted_at": null, - "last_run_at": "@D:2013-05-10T14:30:09", + "last_run_at": "@D:2013-05-14T16:50:27", "active_count": 2, "account_id": 100 } @@ -511,7 +511,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on May 10, 2013 at 02:30 PM. + Last updated on May 14, 2013 at 04:50 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/triggers.html b/api/external/triggers.html index 488088f..7e197b4 100644 --- a/api/external/triggers.html +++ b/api/external/triggers.html @@ -148,7 +148,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": 203, "push_offset_units": "0:-14:0:0", - "start_ts": "@D:2013-05-10T14:30:03", + "start_ts": "@D:2013-05-14T16:50:24", "trigger_id": 100, "signups": null, "push_offset": "@I:-1209600.0", @@ -189,7 +189,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": null, "push_offset_units": "0:3:0:0", - "start_ts": "@D:2013-05-10T14:30:03", + "start_ts": "@D:2013-05-14T16:50:24", "trigger_id": 101, "signups": [ 1, @@ -326,7 +326,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": 203, "push_offset_units": "0:-14:0:0", - "start_ts": "@D:2013-05-10T14:30:03", + "start_ts": "@D:2013-05-14T16:50:24", "trigger_id": 100, "signups": null, "push_offset": "@I:-1209600.0", @@ -499,7 +499,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on May 10, 2013 at 02:30 PM. + Last updated on May 14, 2013 at 04:50 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/webhooks.html b/api/external/webhooks.html index 2e270ba..3058558 100644 --- a/api/external/webhooks.html +++ b/api/external/webhooks.html @@ -487,7 +487,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on May 10, 2013 at 02:30 PM. + Last updated on May 14, 2013 at 04:50 PM. </div> </body> </html> \ No newline at end of file diff --git a/genindex.html b/genindex.html index a61076c..f22fcfd 100644 --- a/genindex.html +++ b/genindex.html @@ -146,7 +146,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on May 10, 2013 at 02:30 PM. + Last updated on May 14, 2013 at 04:50 PM. </div> </body> </html> \ No newline at end of file diff --git a/http-routingtable.html b/http-routingtable.html index e53d759..db06382 100644 --- a/http-routingtable.html +++ b/http-routingtable.html @@ -607,7 +607,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on May 10, 2013 at 02:30 PM. + Last updated on May 14, 2013 at 04:50 PM. </div> </body> </html> \ No newline at end of file diff --git a/index.html b/index.html index 50dd027..d2ea1d8 100644 --- a/index.html +++ b/index.html @@ -344,7 +344,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on May 10, 2013 at 02:30 PM. + Last updated on May 14, 2013 at 04:50 PM. </div> </body> </html> \ No newline at end of file diff --git a/member_search.html b/member_search.html index 02f33a6..67f3c99 100644 --- a/member_search.html +++ b/member_search.html @@ -256,7 +256,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on May 10, 2013 at 02:30 PM. + Last updated on May 14, 2013 at 04:50 PM. </div> </body> </html> \ No newline at end of file diff --git a/pagination.html b/pagination.html index 777de68..8ae81eb 100644 --- a/pagination.html +++ b/pagination.html @@ -168,7 +168,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on May 10, 2013 at 02:30 PM. + Last updated on May 14, 2013 at 04:50 PM. </div> </body> </html> \ No newline at end of file diff --git a/php_get_member_example.html b/php_get_member_example.html index a9138ba..3ab9e3e 100644 --- a/php_get_member_example.html +++ b/php_get_member_example.html @@ -183,7 +183,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on May 10, 2013 at 02:30 PM. + Last updated on May 14, 2013 at 04:50 PM. </div> </body> </html> \ No newline at end of file diff --git a/php_signup_example.html b/php_signup_example.html index 23a4ca5..8d707dd 100644 --- a/php_signup_example.html +++ b/php_signup_example.html @@ -205,7 +205,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on May 10, 2013 at 02:30 PM. + Last updated on May 14, 2013 at 04:50 PM. </div> </body> </html> \ No newline at end of file diff --git a/placeholders.html b/placeholders.html index d5fd74a..ee329c5 100644 --- a/placeholders.html +++ b/placeholders.html @@ -183,7 +183,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on May 10, 2013 at 02:30 PM. + Last updated on May 14, 2013 at 04:50 PM. </div> </body> </html> \ No newline at end of file diff --git a/search.html b/search.html index ba86fd4..3c001ad 100644 --- a/search.html +++ b/search.html @@ -153,7 +153,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on May 10, 2013 at 02:30 PM. + Last updated on May 14, 2013 at 04:50 PM. </div> </body> </html> \ No newline at end of file diff --git a/searchindex.js b/searchindex.js index ff4ed81..9714d1b 100644 --- a/searchindex.js +++ b/searchindex.js @@ -1 +1 @@ -Search.setIndex({objects:{"":{"/#account_id/members/#member_id/groups/remove":[8,1,1,"put--#account_id-members-#member_id-groups-remove"],"/#account_id/mailings/#mailing_id/winner/#winner_id":[9,2,1,"post--#account_id-mailings-#mailing_id-winner-#winner_id"],"/#account_id/response/#mailing_id/in_progress":[5,0,1,"get--#account_id-response-#mailing_id-in_progress"],"/#account_id/members/groups/remove":[8,1,1,"put--#account_id-members-groups-remove"],"/#account_id/mailings/#mailing_id/searches":[9,0,1,"get--#account_id-mailings-#mailing_id-searches"],"/#account_id/fields":[10,2,1,"post--#account_id-fields"],"/#account_id/members/#group_id/copy":[8,1,1,"put--#account_id-members-#group_id-copy"],"/#account_id/members/status":[8,1,1,"put--#account_id-members-status"],"/#account_id/response/#mailing_id/shares/overview":[5,0,1,"get--#account_id-response-#mailing_id-shares-overview"],"/#account_id/webhooks/events":[4,0,1,"get--#account_id-webhooks-events"],"/#account_id/members/#member_id/optout":[8,0,1,"get--#account_id-members-#member_id-optout"],"/#account_id/webhooks":[4,3,1,"delete--#account_id-webhooks"],"/#account_id/fields/#field_id":[10,3,1,"delete--#account_id-fields-#field_id"],"/#account_id/response/#mailing_id":[5,0,1,"get--#account_id-response-#mailing_id"],"/#account_id/groups/#member_group_id/members/remove":[13,3,1,"delete--#account_id-groups-#member_group_id-members-remove"],"/#account_id/searches":[7,2,1,"post--#account_id-searches"],"/#account_id/members/imports":[8,0,1,"get--#account_id-members-imports"],"/#account_id/forwards/#mailing_id/#member_id":[9,2,1,"post--#account_id-forwards-#mailing_id-#member_id"],"/#account_id/response/#mailing_id/customer_share_clicks":[5,0,1,"get--#account_id-response-#mailing_id-customer_share_clicks"],"/#account_id/mailings/#mailing_id/messages/#member_id":[9,0,1,"get--#account_id-mailings-#mailing_id-messages-#member_id"],"/#account_id/members/#member_id/mailings":[8,0,1,"get--#account_id-members-#member_id-mailings"],"/#account_id/groups/#from_group_id/#to_group_id/members/copy":[13,1,1,"put--#account_id-groups-#from_group_id-#to_group_id-members-copy"],"/#account_id/triggers":[14,2,1,"post--#account_id-triggers"],"/#account_id/triggers/#trigger_id":[14,3,1,"delete--#account_id-triggers-#trigger_id"],"/#account_id/members/delete":[8,1,1,"put--#account_id-members-delete"],"/#account_id/mailings/#mailing_id/groups":[9,0,1,"get--#account_id-mailings-#mailing_id-groups"],"/#account_id/response/#mailing_id/forwards":[5,0,1,"get--#account_id-response-#mailing_id-forwards"],"/#account_id/members/#member_id":[8,3,1,"delete--#account_id-members-#member_id"],"/#account_id/triggers/#trigger_id/mailings":[14,0,1,"get--#account_id-triggers-#trigger_id-mailings"],"/#account_id/searches/#search_id/members":[7,0,1,"get--#account_id-searches-#search_id-members"],"/#account_id/members/status/:status_from/to/:status_to":[8,1,1,"put--#account_id-members-status--status_from-to--status_to"],"/#account_id/response/#mailing_id/sends":[5,0,1,"get--#account_id-response-#mailing_id-sends"],"/#account_id/members":[8,3,1,"delete--#account_id-members"],"/#account_id/members/email/:email":[8,0,1,"get--#account_id-members-email--email"],"/#account_id/response/#mailing_id/links":[5,0,1,"get--#account_id-response-#mailing_id-links"],"/#account_id/searches/#search_id":[7,3,1,"delete--#account_id-searches-#search_id"],"/#account_id/members/imports/#import_id/members":[8,0,1,"get--#account_id-members-imports-#import_id-members"],"/#account_id/fields/#field_id/clear":[10,2,1,"post--#account_id-fields-#field_id-clear"],"/#account_id/groups/#member_group_id/members":[13,3,1,"delete--#account_id-groups-#member_group_id-members"],"/#account_id/members/imports/#import_id":[8,0,1,"get--#account_id-members-imports-#import_id"],"/#account_id/response":[5,0,1,"get--#account_id-response"],"/#account_id/response/#mailing_id/opens":[5,0,1,"get--#account_id-response-#mailing_id-opens"],"/#account_id/members/imports/delete":[8,3,1,"delete--#account_id-members-imports-delete"],"/#account_id/mailings":[9,0,1,"get--#account_id-mailings"],"/#account_id/mailings/cancel/#mailing_id":[9,3,1,"delete--#account_id-mailings-cancel-#mailing_id"],"/#account_id/mailings/validate":[9,2,1,"post--#account_id-mailings-validate"],"/#account_id/response/#mailing_id/deliveries":[5,0,1,"get--#account_id-response-#mailing_id-deliveries"],"/#account_id/mailings/#mailing_id/members":[9,0,1,"get--#account_id-mailings-#mailing_id-members"],"/#account_id/response/#share_id/customer_share":[5,0,1,"get--#account_id-response-#share_id-customer_share"],"/#account_id/webhooks/#webhook_id":[4,3,1,"delete--#account_id-webhooks-#webhook_id"],"/#account_id/members/add":[8,2,1,"post--#account_id-members-add"],"/#account_id/members/email/optout/:email":[8,1,1,"put--#account_id-members-email-optout--email"],"/#account_id/response/#mailing_id/optouts":[5,0,1,"get--#account_id-response-#mailing_id-optouts"],"/#account_id/response/#mailing_id/shares":[5,0,1,"get--#account_id-response-#mailing_id-shares"],"/#account_id/groups/#member_group_id":[13,3,1,"delete--#account_id-groups-#member_group_id"],"/#account_id/mailings/#mailing_id":[9,3,1,"delete--#account_id-mailings-#mailing_id"],"/#account_id/members/#member_id/groups":[8,3,1,"delete--#account_id-members-#member_id-groups"],"/#account_id/groups":[13,2,1,"post--#account_id-groups"],"/#account_id/response/#mailing_id/clicks":[5,0,1,"get--#account_id-response-#mailing_id-clicks"],"/#account_id/mailings/#mailing_id/headsup":[9,0,1,"get--#account_id-mailings-#mailing_id-headsup"],"/#account_id/response/#mailing_id/signups":[5,0,1,"get--#account_id-response-#mailing_id-signups"],"/#account_id/response/#mailing_id/customer_shares":[5,0,1,"get--#account_id-response-#mailing_id-customer_shares"]}},terms:{all:[0,1,4,5,8,9,10,11,12,13,14],code:[0,1,6,3],change_typ:8,queri:[0,2,4],month:[0,5,9,14],four:[0,5],mile:0,least:0,follow:[0,1,4,5,7,9,11,13],link_target:[5,9],content:[1,11,6,9,3],privat:1,specif:[8,9,4],friendli:5,send:[1,9,4,3,5],program:1,customer_share_click:5,those:[1,12,5],group_upd:[12,4],sent:[5,8,12,9,14],curl_clos:[1,6,3],brown:[7,8],digit:5,everi:0,string:[0,4,5,7,8,9,10,12,13,14],fals:[1,3,4,5,6,7,8,9,10,13,14],webhook:[1,12,4],mailing_status:9,trigger_id:14,webview_share_click:5,affect:[7,8],member_add:[12,4],create_mail:9,new_boolean:10,foo:0,level:1,group_delet:[12,4],list:[0,1,2,4,5,7,8,9,10,11,12,13,14],upload:8,iter:2,"try":8,item:2,plaintext_onli:[9,14],div:[4,5,7,8,9,10,13,14],survey_id:14,setup:1,pleas:[1,8,11,9],prevent:2,work:[1,4],ten:0,sync:10,sign:[0,5,4],past:1,second:[0,7,14],field_creat:[12,4],further:1,shortcut_nam:10,click:[0,4,5,7,8,12,14],append:2,even:10,what:1,hide:[4,5,7,8,9,10,13,14],appear:[1,8],from_group_id:13,section:1,current:[1,8,12,9],delet:[1,4,7,8,9,10,12,13,14],"new":[1,4,5,7,8,9,10,11,13,14],net:[1,2,6,3],delivery_t:8,method:[5,8,13,4,9],can:[0,1,2,4,5,7,8,9,11,12,13],widget:[7,10,8,9,13],full:1,hash:0,datematch:0,displai:10,variat:9,gener:[0,8,12,14],onli:[5,8],here:[0,1,3,5,6,8],bodi:9,let:[1,4,10],address:[0,1,8,6,9],along:8,sinc:8,valu:[0,5,7,8,10,11],field_upd:[12,4],search:[0,1,8,9,7],survei:14,sender:[9,14],larger:2,queue:5,prior:9,action:[0,8],chang:[8,4],campaign:5,newbi:5,appli:[7,14],prefer:0,young:1,myemma:[4,5,7,8,9,13],filenam:8,customer_shar:5,"boolean":[0,1,5,7,8,9,10,13,14],curlopt_postfield:[1,3],total:5,jone:[7,5,8,13],select:[1,10],newslett:[7,8,13],describ:7,would:[0,1],commun:1,regist:4,two:[0,5],coverag:1,next:[0,1],create_webhook:4,few:[5,8],call:[1,2,3,4,6,8,12],criteria:7,member_add_to_group:[12,4],type:[1,3,4,5,6,7,10,9,14],until:2,more:[0,4,7,8,9,13],peopl:5,relat:[1,8,11,9],about:[10,8,12,4,9],notic:8,thide:[4,5,7,8,9,10,13,14],flag:[5,7,8,10,9,14],exce:2,indic:8,examin:1,particular:[1,4,5,8,10,12,9],in_progress:5,origin:9,must:[0,7,13,10],none:9,endpoint:[1,4,5,7,8,9,10,13,14],join:[0,7],hour:0,der:1,member_sinc:[0,5,7,8,9,13],uniqu:5,histori:8,soup:7,remain:[0,9],archiv:[5,9],member_optout:[12,4],drill:5,control:[1,11,9],quickstart:1,give:5,forward_mailing_id:5,email_domain:[0,5],share:[0,5,8,12,4],accept:[0,5,7,8,9,10,11,13,14],total_click:5,tag:[11,9],want:[1,12,13,5],occur:[7,12],some_numeric_field:0,delai:14,alwai:0,webhook_event_id:4,cours:1,multipl:[10,8],first_nam:[1,3,5,7,8,9,10,11,13,14],started_or_finish:[9,14],anoth:[9,13],get:[1,4,5,6,7,8,9,10,13,14],message_open:[12,4],html_bodi:[9,14],share_statu:5,push_offset:14,del_statu:5,tild:5,num_members_upd:8,simpl:0,chri:9,pizza:[7,8],map:0,autent:1,referenc:7,xxxx:6,sundai:0,jacqu:1,membership:13,taco:[7,5,8,9,13],mai:12,end:[2,8],associ:[1,8,9,4,5],grow:1,welcom:11,add_onli:8,"short":0,json_encod:[1,3],optout:[5,8,12,13],num_dupl:8,favorit:10,correspond:[0,1],greet:11,predic:[0,1],issu:[1,10],"12t11":[7,5,8,9,13],combin:7,allow:[0,7,8],some_zipcode_field:0,signed_up:5,order:[5,10],michel:[8,9],mailing_nam:5,checkbox:10,fields_upd:8,over:2,soon:1,buyer:[7,8,9,13],comma:[9,13],is_dis:14,vari:8,paramet:[2,4,5,7,8,9,10,13,14],widget_typ:10,style:[0,4,5,7,8,9,10,13,14],group:[0,1,3,4,7,8,9,12,13,14],curl_setopt:[1,6,3],how:[7,1,2,4],fix:1,import_start:8,better:[13,14],platform:1,pend:[1,9],mailing_list:9,onc:9,mail:[0,1,4,5,8,11,12,9,14],hidden:13,main:1,might:[1,4],link_nam:[5,9],them:[8,9],messag:[4,5,8,12,11,9,14],"return":[0,1,4,5,7,8,9,10,12,13,14],greater:[0,8],thei:[0,9],food:10,timestamp:[0,5,12,9,10],spell:4,nashvil:1,dai:0,auth:1,framework:1,instead:[12,2,8],now:5,down:5,term:[0,1],alex:9,name:[0,4,5,7,8,9,10,11,13,14],edit:[7,1,14,10],curl_getinfo:[1,6,3],authent:[1,6,4,3],successufulli:4,separ:[1,9,13],each:[1,2,5,9,12,11,13],found:[8,9,4,14],updat:[4,7,8,9,10,12,13,14],denni:1,status:[8,9],domain:0,weight:[4,5,7,8,9,10,13,14],resum:9,individu:[5,8],hard:[0,5],last_nam:[1,3,5,7,8,9,10,11,13,14],"05t15":5,birthdai:[10,14],connect:[1,6,3],doug:1,our:[1,11,12,4,14],happen:[1,4,5],commiss:1,short_display_nam:10,special:[0,7,8,13],out:[0,1,4,5,7,8,10,13],variabl:[1,6,3],message_shar:[12,4],network:[5,12],private_api_kei:[1,6,3],check_multipl:10,categori:1,rel:0,print:6,correct:10,integr:1,benjamin:[1,8],qualifi:11,insid:1,advanc:0,contain:[0,5,7,13,10,9],given:[0,8,9,4],standard:[5,9],status_from:8,base:[5,8],recipient_search:9,dictionari:8,put:[4,7,8,9,10,13,14],span:[4,5,7,8,9,10,13,14],"13t23":[7,5,8],refer:[5,7,8,13,10,9],visit:11,could:1,omit:5,success:[1,3,7,8,9,13],filter:[0,1,7],search_id:7,pagin:[1,2],member_id:[5,7,8,9,12,13],summari:[1,5],assign:9,first:[0,1,10,5],oper:[0,1,7,14],rang:5,notifi:12,directli:0,curlopt_ssl_verifyp:[1,6,3],curl_init:[1,6,3],number:[5,2,13,3,10],placehold:[1,11],date:[0,5,8,10,11,14],unlik:9,alreadi:[10,8,9,13],done:8,plaintext_pref:[7,8,9,13],oppos:8,open:[0,3,4,5,6,7,8,12],payload:4,fanci:5,size:2,differ:0,"long":10,script:1,data:[1,3,4,5,10,12],system:[8,12,4,14],wrapper:1,attach:11,easier:12,friend:11,curlinfo_http_cod:[1,6,3],shell:0,option:[0,5,7,8,9,10,13,14],especi:8,signup:[0,1,3,4,5,8,12,14],copi:[8,13],member_upd:[12,4],specifi:[0,2,7,8,10,11,9,14],curl_exec:[1,6,3],curlopt_httphead:[1,6,3],member_signup:[12,4],create_search:7,part:[0,9],enclos:11,than:[0,1,2,3,12,13],with_plaintext:9,"02t10":[5,8],"02t11":[5,8],"02t13":5,nathan:8,whenev:8,provid:[1,5,8,12,9,14],remov:[12,8,13,4],mailing_start:4,rate:2,structur:7,charact:9,greg:8,trackabl:11,were:5,minut:0,danc:1,error_count:[7,8,9,13],pre:[4,5,7,8,9,10,13,14],cleaner:1,sai:0,share_id:5,signup_form_id:[0,8,12,9,14],plaintext:[5,9,14],pass:[1,3],ani:[0,1,2,7,8,9],have:[0,1,5,8,12,9],tabl:5,need:1,seen:5,"null":[7,8,13,10,9,14],kevin:[9,14],signup_mail:0,caus:14,built:1,inform:[1,4,6,8,9,10,13],object_id:14,note:[1,8,9,4],also:[0,4,5,7,8,9,11,13],exampl:[0,1,3,5,6,7,11],take:[0,4],which:[0,1,4,8,10,12,9,14],some_number_field:0,singl:[0,1,3,4,5,8,10,12,13],excit:11,sure:1,delete_memb:13,normal:9,parent_mail:14,recipient_count:[5,9,14],previou:9,field_id:[10,12,14],last_run_at:7,most:14,pair:11,"class":[4,5,7,8,9,10,13,14],don:1,member_group_id:[8,9,13],mcconnel:[9,14],url:[1,3,4,5,6,12],mailing_finish:[12,4],clear:10,request:[1,2,3],doe:[0,5,7,8,9,10,13],member_status_upd:[12,4],declar:9,tech:4,determin:1,dataset:10,dow:0,recipi:9,"6db0cc7e6fdb2da589b65f29d90c96b6":9,show:[4,5,7,8,9,10,11,13,14],text:[10,11,12],radiu:0,syntax:[0,1,11,9],radio:10,font:[4,5,7,8,9,10,13,14],fine:9,find:[1,6,5],status_to:8,toast:[7,5,8,13],access:[1,5],giant:12,just:[0,1,9],pretti:8,column_ord:10,explain:[0,1],winner:9,activ:[1,5,7,8,13,9],figur:1,should:[1,2,3,7,8,11,9],templat:[11,14],share_count:5,count:[1,2,3,5],variou:[8,13],confirmed_opt_in:[7,8,9,13],familiar:1,express:0,account:[1,4,5,7,8,10,13,14],becaus:12,repo:1,cannot:[8,9,4],progress:9,report:[10,8],requir:[1,7,8,10,11,9],object:[1,13,5],favorite_food:[5,7,8,13,10,9],bar:0,organ:1,include_archiv:[5,9],"public":1,"default":[5,11,13,4,9],ref_member_id:5,message_share_click:[12,4],through:[1,8,4],where:[0,1,8,11,7],view:1,user:[0,8,9,13],set:[0,1,2,3,6,8,9,12,13],link_id:[0,5,12,9,14],see:[7,1,8],result:[0,1,2,5,8,9],respons:[0,1,2,4,5,7,8,9,10,13,14],fail:[5,9,4],themselv:2,member_field:[0,7],xxxxx:6,subject:[8,12,9,14],statu:[1,4,5,7,8,9,12,13],fancyonion:11,kei:[0,1,8,11,4],is_schedul:9,message_forward:[12,4],databas:8,someth:1,last_modified_at:[7,8,9,13],addresse:5,written:1,between:[0,7,2],clicked_uniqu:5,"import":[1,8,12,4,10],subscript:[1,3],entiti:1,curlopt_url:[1,6,3],email:[0,1,3,5,6,7,8,9,13],wide:14,extend:1,numer:10,http404:[4,5,7,8,9,10,13,14],job:13,entir:[0,8],share_click:5,to_group_id:13,come:1,curlopt_returntransf:[1,6,3],addit:[0,1,8,9,11,13],member_remove_from_group:[12,4],send_start:[0,9,14],protect:1,accident:2,last:[0,5,10],delimit:5,lentil:7,pertain:5,message_click:[12,4],curlopt_post:[1,3],audienc:[1,8,9],mang:0,improv:1,http500:14,seri:5,com:[4,5,6,7,8,9,11,13],zip_code_field:0,"03t15":[7,5,8,13],point:1,toni:[7,8],overview:[0,1,11,12,5],period:1,winner_id:9,colon:[7,11],optout_count:[7,8,9,13],suppli:9,cancel:9,tuesdai:0,duplic:5,quit:[5,8],user_id:4,recur:14,headsup:9,addition:[1,2],due:5,been:[1,8,10,5],mark:[8,9],whom:9,tshow:[4,5,7,8,9,10,13,14],trigger:[1,4,5,7,8,9,10,12,13,14],unsubscrib:0,treat:8,interest:[10,4],basic:[0,1,4,8,13,14],monthli:[7,8,13],member_delet:[12,4],hesit:1,blob:4,email_us:[0,5],mailing_mailing_id:5,mailing_id:[0,5,8,12,9,14],fire:[8,4,14],xxx:[1,3],rubi:1,argument:[0,5],link_ord:[5,9],input:1,extract:11,present:7,statist:8,"case":[1,8],look:[1,14,10],frozen:9,durat:9,email_error:[7,8,9,13],defin:[0,10,8,9],"while":0,smith:[7,5,8,9,13],outcom:5,abov:[0,1,8,7],error:[1,3,6,8,10,13],veen:1,loop:8,opt:[0,4,5,7,8,13],readi:9,deliv:5,recipient_group:9,equal:0,itself:0,new_statu:12,webhook_id:4,develop:1,recipient_memb:9,perform:8,make:[1,12,6,10],belong:[0,8,4],same:4,check:[8,6,9],member:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14],python:1,html:9,split:9,document:[1,11,12],complet:[1,3,4,6,8,9],week:0,finish:[5,12,4],http:[1,2,3,4,5,6,11,9],href:[4,5,7,8,9,10,13,14],nest:0,someon:4,rais:[4,5,7,8,9,10,13,14],initi:[10,9],php:[1,6,3],studi:1,recent:[1,8],kept:11,center:0,min:5,well:[1,5],inherit:9,person:9,mailing_typ:[9,14],without:[0,1],command:1,thi:[0,1,4,5,7,8,9,10,12,13,14],undefin:0,http_code:[1,6,3],latest:11,construct:[0,7,9],identifi:8,paus:9,execut:[1,3],less:0,resp:[4,5,7,8,9,10,13,14],"_post":[1,3],against:0,aspect:13,recipient_email:9,source_filenam:8,yet:5,languag:1,"12t09":[7,8],display_nam:10,easi:[1,12,10],"01t00":8,had:0,littl:1,blog:4,add:[12,1,8,13,3],other:[1,8,9,3,5],curlopt_userpwd:[1,6,3],import_finish:[8,12,4],schedul:9,els:[1,6,3],save:7,match:[0,7],build:1,sanit:1,applic:[1,6,3],account_id:[1,3,4,5,6,7,8,9,10,12,13,14],handl:1,disposit:1,crud:[8,13,14],print_r:[6,3],mailing_statu:[9,14],know:[1,4,5],background:13,parent_mailing_id:[9,14],bit:1,insert:11,emma:[1,5,7,8,9,12,13],like:1,onion:11,deprec:4,arbitrari:8,manual:9,integ:[1,8,14,10,5],collect:1,api:[1,2,3,6,8,12],either:[0,5,7],bunch:0,output:9,group_id:[1,8,12,3],soft:[0,5],manag:[0,1,13,4],import_id:[8,12],www:[5,9],old:7,who:[0,5,8],deal:[8,13],captur:1,arrai:[0,1,3,5,6,7,8,9,10,12,13,14],some:[1,11,5],field_delet:[12,4],certain:12,intern:10,sampl:[1,4,5,7,8,9,10,13,14],elaps:[2,9],unless:1,deleted_at:[7,8,13,10,9,14],some_string_field:0,librari:11,woodcock:1,emmarubi:1,bounce_count:[7,8,9,13],emmapython:1,public_kei:4,deliveri:5,broad:12,per:5,send_finish:[9,14],larg:[0,2],condit:7,three:9,network_cod:12,localhost:9,emmaphp:1,with_html_bodi:9,"10t14":[7,14],bold:[4,5,7,8,9,10,13,14],event_typ:14,inspect:1,usag:[1,8,12],monsewicz:1,num_members_ad:8,fulli:11,from:[1,4,8,9,12,13,14],post:[1,3,4,7,8,9,10,12,13,14],group_creat:[12,4],gladi:[7,5,8,13],hurst:1,actual:5,zip:0,groups_upd:8,column:10,page:2,includ:[1,5,7,8,9,10,13],webview:9,mean:0,disabl:[9,14],block:[1,2],yyyi:5,own:1,member_data:[1,3],glob:0,bounc:[0,5],within:[0,8],encod:[9,4],delivery_typ:[5,8],compos:0,webview_shar:5,field_typ:10,active_count:[7,8,9,13],public_webview_url:9,pivot:5,your:[1,4,5,7,8,9,10,13],websit:11,fast:8,van:1,wai:[1,12],area:1,overus:2,group_nam:[8,12,13,9],support:12,unique_click:5,json:[0,1,3,4,6,7],submit:1,custom:[5,8,11,10],avail:[0,11,4],start:[1,2,8,4],interfac:12,send_at:[9,14],exceed:2,"var":3,interv:[0,14],fork:1,head:[1,6,9,3],form:[1,3,4,6,8,10,14],enough:2,forc:1,forward:[0,4,5,8,12,9],"31st":0,group_typ:[8,9,13],push_offset_unit:14,link:[0,4,5,11,9,14],line:[1,5],realli:1,"true":[0,1,2,3,4,6,7,8,9,10,13,14],archived_t:[9,14],info:4,pull:[1,2],made:1,possibl:[5,8,12],whether:8,maximum:2,tell:12,http403:9,record:[0,7,8],below:[0,1,8,12],http400:[7,8,9],limit:[5,2,8,9],some_array_field:0,otherwis:[1,8,10],start_t:14,mta:5,expect:1,notif:9,creat:[4,5,7,9,10,12,13,14],"int":5,retriev:[7,1,2,8,9],year:[0,5,9,14],repres:5,exist:[0,4,5,7,8,10,13],behavior:11,bob:[7,5],curl:[1,6],portland:1,probabl:14,echo:[1,3],successfulli:[5,8,9],mailing_subject:12,grp:13,todo:11,when:[8,12,4,9],detail:[1,4,7,8,9,10,13],invalid:[7,8,9],event:[4,7,8,13,12,9,14],field:[0,1,3,4,5,7,8,9,10,11,12,13,14],valid:[5,8,9,13],futur:1,num_skip:8,test:[5,6,7,13,9,14],ignor:8,you:[0,1,2,4,5,7,8,9,10,11,12,13],emmasdk:1,member_status_id:[7,5,8,9,13],public_api_kei:[1,6,3],stat:[5,9],claus:[0,7],event_nam:[12,4],e2ma:[1,2,6,3],error_messag:8,param:[9,4],app_messag:[1,3],ella:8,bulk:[1,8],receiv:[0,2,5,8,12,9],heads_up_email:9,longer:9,home:11,confirm:8,descript:[4,14],ohmyemma:1,portion:0,opted_out:5,time:[1,2,8,13,5],reply_to:[9,14],resource_url:12,hello:[11,9,14]},objtypes:{"0":"http:get","1":"http:put","2":"http:post","3":"http:delete"},titles:["Search Syntax","Emma API","Pagination","PHP Signup Example","Webhooks","Response","PHP Get Member By Email Example","Searches","Members","Mailings","Fields","Placeholder Syntax","Webhook Usage","Groups","Triggers"],objnames:{"0":["http","get","HTTP get"],"1":["http","put","HTTP put"],"2":["http","post","HTTP post"],"3":["http","delete","HTTP delete"]},filenames:["member_search","index","pagination","php_signup_example","api/external/webhooks","api/external/response","php_get_member_example","api/external/searches","api/external/members","api/external/mailings","api/external/fields","placeholders","webhooks","api/external/groups","api/external/triggers"]}) \ No newline at end of file +Search.setIndex({objects:{"":{"/#account_id/members/#member_id/groups/remove":[8,1,1,"put--#account_id-members-#member_id-groups-remove"],"/#account_id/mailings/#mailing_id/winner/#winner_id":[9,2,1,"post--#account_id-mailings-#mailing_id-winner-#winner_id"],"/#account_id/response/#mailing_id/in_progress":[5,0,1,"get--#account_id-response-#mailing_id-in_progress"],"/#account_id/members/groups/remove":[8,1,1,"put--#account_id-members-groups-remove"],"/#account_id/mailings/#mailing_id/searches":[9,0,1,"get--#account_id-mailings-#mailing_id-searches"],"/#account_id/fields":[10,2,1,"post--#account_id-fields"],"/#account_id/members/#group_id/copy":[8,1,1,"put--#account_id-members-#group_id-copy"],"/#account_id/members/status":[8,1,1,"put--#account_id-members-status"],"/#account_id/response/#mailing_id/shares/overview":[5,0,1,"get--#account_id-response-#mailing_id-shares-overview"],"/#account_id/webhooks/events":[4,0,1,"get--#account_id-webhooks-events"],"/#account_id/members/#member_id/optout":[8,0,1,"get--#account_id-members-#member_id-optout"],"/#account_id/webhooks":[4,3,1,"delete--#account_id-webhooks"],"/#account_id/fields/#field_id":[10,3,1,"delete--#account_id-fields-#field_id"],"/#account_id/response/#mailing_id":[5,0,1,"get--#account_id-response-#mailing_id"],"/#account_id/groups/#member_group_id/members/remove":[13,3,1,"delete--#account_id-groups-#member_group_id-members-remove"],"/#account_id/searches":[7,2,1,"post--#account_id-searches"],"/#account_id/members/imports":[8,0,1,"get--#account_id-members-imports"],"/#account_id/forwards/#mailing_id/#member_id":[9,2,1,"post--#account_id-forwards-#mailing_id-#member_id"],"/#account_id/response/#mailing_id/customer_share_clicks":[5,0,1,"get--#account_id-response-#mailing_id-customer_share_clicks"],"/#account_id/mailings/#mailing_id/messages/#member_id":[9,0,1,"get--#account_id-mailings-#mailing_id-messages-#member_id"],"/#account_id/members/#member_id/mailings":[8,0,1,"get--#account_id-members-#member_id-mailings"],"/#account_id/groups/#from_group_id/#to_group_id/members/copy":[13,1,1,"put--#account_id-groups-#from_group_id-#to_group_id-members-copy"],"/#account_id/triggers":[14,2,1,"post--#account_id-triggers"],"/#account_id/triggers/#trigger_id":[14,3,1,"delete--#account_id-triggers-#trigger_id"],"/#account_id/members/delete":[8,1,1,"put--#account_id-members-delete"],"/#account_id/mailings/#mailing_id/groups":[9,0,1,"get--#account_id-mailings-#mailing_id-groups"],"/#account_id/response/#mailing_id/forwards":[5,0,1,"get--#account_id-response-#mailing_id-forwards"],"/#account_id/members/#member_id":[8,3,1,"delete--#account_id-members-#member_id"],"/#account_id/triggers/#trigger_id/mailings":[14,0,1,"get--#account_id-triggers-#trigger_id-mailings"],"/#account_id/searches/#search_id/members":[7,0,1,"get--#account_id-searches-#search_id-members"],"/#account_id/members/status/:status_from/to/:status_to":[8,1,1,"put--#account_id-members-status--status_from-to--status_to"],"/#account_id/response/#mailing_id/sends":[5,0,1,"get--#account_id-response-#mailing_id-sends"],"/#account_id/members":[8,3,1,"delete--#account_id-members"],"/#account_id/members/email/:email":[8,0,1,"get--#account_id-members-email--email"],"/#account_id/response/#mailing_id/links":[5,0,1,"get--#account_id-response-#mailing_id-links"],"/#account_id/searches/#search_id":[7,3,1,"delete--#account_id-searches-#search_id"],"/#account_id/members/imports/#import_id/members":[8,0,1,"get--#account_id-members-imports-#import_id-members"],"/#account_id/fields/#field_id/clear":[10,2,1,"post--#account_id-fields-#field_id-clear"],"/#account_id/groups/#member_group_id/members":[13,3,1,"delete--#account_id-groups-#member_group_id-members"],"/#account_id/members/imports/#import_id":[8,0,1,"get--#account_id-members-imports-#import_id"],"/#account_id/response":[5,0,1,"get--#account_id-response"],"/#account_id/response/#mailing_id/opens":[5,0,1,"get--#account_id-response-#mailing_id-opens"],"/#account_id/members/imports/delete":[8,3,1,"delete--#account_id-members-imports-delete"],"/#account_id/mailings":[9,0,1,"get--#account_id-mailings"],"/#account_id/mailings/cancel/#mailing_id":[9,3,1,"delete--#account_id-mailings-cancel-#mailing_id"],"/#account_id/mailings/validate":[9,2,1,"post--#account_id-mailings-validate"],"/#account_id/response/#mailing_id/deliveries":[5,0,1,"get--#account_id-response-#mailing_id-deliveries"],"/#account_id/mailings/#mailing_id/members":[9,0,1,"get--#account_id-mailings-#mailing_id-members"],"/#account_id/response/#share_id/customer_share":[5,0,1,"get--#account_id-response-#share_id-customer_share"],"/#account_id/webhooks/#webhook_id":[4,3,1,"delete--#account_id-webhooks-#webhook_id"],"/#account_id/members/add":[8,2,1,"post--#account_id-members-add"],"/#account_id/members/email/optout/:email":[8,1,1,"put--#account_id-members-email-optout--email"],"/#account_id/response/#mailing_id/optouts":[5,0,1,"get--#account_id-response-#mailing_id-optouts"],"/#account_id/response/#mailing_id/shares":[5,0,1,"get--#account_id-response-#mailing_id-shares"],"/#account_id/groups/#member_group_id":[13,3,1,"delete--#account_id-groups-#member_group_id"],"/#account_id/mailings/#mailing_id":[9,3,1,"delete--#account_id-mailings-#mailing_id"],"/#account_id/members/#member_id/groups":[8,3,1,"delete--#account_id-members-#member_id-groups"],"/#account_id/groups":[13,2,1,"post--#account_id-groups"],"/#account_id/response/#mailing_id/clicks":[5,0,1,"get--#account_id-response-#mailing_id-clicks"],"/#account_id/mailings/#mailing_id/headsup":[9,0,1,"get--#account_id-mailings-#mailing_id-headsup"],"/#account_id/response/#mailing_id/signups":[5,0,1,"get--#account_id-response-#mailing_id-signups"],"/#account_id/response/#mailing_id/customer_shares":[5,0,1,"get--#account_id-response-#mailing_id-customer_shares"]}},terms:{all:[0,1,4,5,8,9,10,11,12,13,14],code:[0,1,6,3],change_typ:8,queri:[0,2,4],month:[0,5,9,14],four:[0,5],mile:0,least:0,follow:[0,1,4,5,7,9,11,13],link_target:[5,9],content:[1,11,6,9,3],privat:1,specif:[8,9,4],friendli:5,send:[1,9,4,3,5],program:1,customer_share_click:5,those:[1,12,5],group_upd:[12,4],sent:[5,8,12,9,14],curl_clos:[1,6,3],brown:[7,8],digit:5,everi:0,string:[0,4,5,7,8,9,10,12,13,14],fals:[1,3,4,5,6,7,8,9,10,13,14],webhook:[1,12,4],mailing_status:9,trigger_id:14,webview_share_click:5,affect:[7,8],member_add:[12,4],create_mail:9,new_boolean:10,foo:0,level:1,group_delet:[12,4],list:[0,1,2,4,5,7,8,9,10,11,12,13,14],upload:8,iter:2,"try":8,item:2,plaintext_onli:[9,14],div:[4,5,7,8,9,10,13,14],survey_id:14,setup:1,pleas:[1,8,11,9],prevent:2,work:[1,4],ten:0,sync:10,sign:[0,5,4],past:1,second:[0,7,14],field_creat:[12,4],further:1,shortcut_nam:10,click:[0,4,5,7,8,12,14],append:2,even:10,what:1,hide:[4,5,7,8,9,10,13,14],appear:[1,8],from_group_id:13,section:1,current:[1,8,12,9],delet:[1,4,7,8,9,10,12,13,14],"new":[1,4,5,7,8,9,10,11,13,14],net:[1,2,6,3],delivery_t:8,method:[5,8,13,4,9],can:[0,1,2,4,5,7,8,9,11,12,13],widget:[7,10,8,9,13],full:1,hash:0,datematch:0,displai:10,variat:9,gener:[0,8,12,14],onli:[5,8],here:[0,1,3,5,6,8],bodi:9,let:[1,4,10],address:[0,1,8,6,9],along:8,sinc:8,valu:[0,5,7,8,10,11],field_upd:[12,4],search:[0,1,8,9,7],survei:14,sender:[9,14],larger:2,queue:5,prior:9,action:[0,8],chang:[8,4],campaign:5,newbi:5,appli:[7,14],prefer:0,young:1,myemma:[4,5,7,8,9,13],filenam:8,customer_shar:5,"boolean":[0,1,5,7,8,9,10,13,14],curlopt_postfield:[1,3],total:5,jone:[7,5,8,13],select:[1,10],newslett:[7,8,13],describ:7,would:[0,1],commun:1,regist:4,two:[0,5],coverag:1,next:[0,1],create_webhook:4,few:[5,8],call:[1,2,3,4,6,8,12],criteria:7,member_add_to_group:[12,4],type:[1,3,4,5,6,7,10,9,14],until:2,more:[0,4,7,8,9,13],peopl:5,relat:[1,8,11,9],about:[10,8,12,4,9],notic:8,thide:[4,5,7,8,9,10,13,14],flag:[5,7,8,10,9,14],exce:2,indic:8,examin:1,particular:[1,4,5,8,10,12,9],in_progress:5,origin:9,must:[0,7,13,10],none:9,endpoint:[1,4,5,7,8,9,10,13,14],join:[0,7],hour:0,der:1,member_sinc:[0,5,7,8,9,13],uniqu:5,histori:8,soup:7,remain:[0,9],archiv:[5,9],member_optout:[12,4],drill:5,control:[1,11,9],quickstart:1,give:5,forward_mailing_id:5,email_domain:[0,5],share:[0,5,8,12,4],accept:[0,5,7,8,9,10,11,13,14],total_click:5,tag:[11,9],want:[1,12,13,5],occur:[7,12],some_numeric_field:0,delai:14,alwai:0,webhook_event_id:4,cours:1,multipl:[10,8],first_nam:[1,3,5,7,8,9,10,11,13,14],started_or_finish:[9,14],anoth:[9,13],get:[1,4,5,6,7,8,9,10,13,14],message_open:[12,4],html_bodi:[9,14],share_statu:5,push_offset:14,del_statu:5,tild:5,num_members_upd:8,simpl:0,chri:9,pizza:[7,8],map:0,autent:1,referenc:7,xxxx:6,sundai:0,jacqu:1,membership:13,taco:[7,5,8,9,13],mai:12,end:[2,8],associ:[1,8,9,4,5],grow:1,welcom:11,add_onli:8,"short":0,json_encod:[1,3],optout:[5,8,12,13],num_dupl:8,favorit:10,correspond:[0,1],greet:11,predic:[0,1],issu:[1,10],"12t11":[7,5,8,9,13],combin:7,allow:[0,7,8],some_zipcode_field:0,signed_up:5,order:[5,10],michel:[8,9],mailing_nam:5,checkbox:10,fields_upd:8,over:2,soon:1,buyer:[7,8,9,13],comma:[9,13],is_dis:14,vari:8,paramet:[2,4,5,7,8,9,10,13,14],widget_typ:10,style:[0,4,5,7,8,9,10,13,14],group:[0,1,3,4,7,8,9,12,13,14],curl_setopt:[1,6,3],how:[7,1,2,4],fix:1,import_start:8,better:[13,14],platform:1,pend:[1,9],mailing_list:9,onc:9,mail:[0,1,4,5,8,11,12,9,14],hidden:13,main:1,might:[1,4],link_nam:[5,9],them:[8,9],messag:[4,5,8,12,11,9,14],"return":[0,1,4,5,7,8,9,10,12,13,14],greater:[0,8],thei:[0,9],food:10,timestamp:[0,5,12,9,10],spell:4,nashvil:1,dai:0,auth:1,framework:1,instead:[12,2,8],now:5,down:5,term:[0,1],alex:9,name:[0,4,5,7,8,9,10,11,13,14],edit:[7,1,14,10],curl_getinfo:[1,6,3],authent:[1,6,4,3],successufulli:4,separ:[1,9,13],each:[1,2,5,9,12,11,13],found:[8,9,4,14],updat:[4,7,8,9,10,12,13,14],denni:1,status:[8,9],domain:0,weight:[4,5,7,8,9,10,13,14],resum:9,individu:[5,8],hard:[0,5],last_nam:[1,3,5,7,8,9,10,11,13,14],"05t15":5,birthdai:[10,14],connect:[1,6,3],doug:1,our:[1,11,12,4,14],happen:[1,4,5],commiss:1,short_display_nam:10,special:[0,7,8,13],out:[0,1,4,5,7,8,10,13],variabl:[1,6,3],message_shar:[12,4],network:[5,12],private_api_kei:[1,6,3],check_multipl:10,categori:1,rel:0,print:6,correct:10,integr:1,benjamin:[1,8],qualifi:11,insid:1,advanc:0,contain:[0,5,7,13,10,9],given:[0,8,9,4],standard:[5,9],status_from:8,base:[5,8],recipient_search:9,dictionari:8,put:[4,7,8,9,10,13,14],span:[4,5,7,8,9,10,13,14],"13t23":[7,5,8],refer:[5,7,8,13,10,9],visit:11,could:1,omit:5,success:[1,3,7,8,9,13],filter:[0,1,7],search_id:7,pagin:[1,2],member_id:[5,7,8,9,12,13],summari:[1,5],assign:9,first:[0,1,10,5],oper:[0,1,7,14],rang:5,notifi:12,directli:0,curlopt_ssl_verifyp:[1,6,3],curl_init:[1,6,3],number:[5,2,13,3,10],placehold:[1,11],date:[0,5,8,10,11,14],unlik:9,alreadi:[10,8,9,13],done:8,plaintext_pref:[7,8,9,13],oppos:8,open:[0,3,4,5,6,7,8,12],payload:4,fanci:5,size:2,differ:0,"long":10,script:1,data:[1,3,4,5,10,12],system:[8,12,4,14],wrapper:1,attach:11,easier:12,friend:11,curlinfo_http_cod:[1,6,3],shell:0,option:[0,5,7,8,9,10,13,14],especi:8,signup:[0,1,3,4,5,8,12,14],copi:[8,13],member_upd:[12,4],specifi:[0,2,7,8,10,11,9,14],curl_exec:[1,6,3],curlopt_httphead:[1,6,3],member_signup:[12,4],create_search:7,part:[0,9],enclos:11,than:[0,1,2,3,12,13],with_plaintext:9,"02t10":[5,8],"02t11":[5,8],"02t13":5,nathan:8,whenev:8,provid:[1,5,8,12,9,14],remov:[12,8,13,4],mailing_start:4,rate:2,structur:7,charact:9,greg:8,trackabl:11,were:5,minut:0,danc:1,error_count:[7,8,9,13],pre:[4,5,7,8,9,10,13,14],cleaner:1,sai:0,share_id:5,signup_form_id:[0,8,12,9,14],plaintext:[5,9,14],pass:[1,3],ani:[0,1,2,7,8,9],have:[0,1,5,8,12,9],tabl:5,need:1,seen:5,"null":[7,8,13,10,9,14],kevin:[9,14],signup_mail:0,caus:14,built:1,inform:[1,4,6,8,9,10,13],object_id:14,note:[1,8,9,4],also:[0,4,5,7,8,9,11,13],exampl:[0,1,3,5,6,7,11],take:[0,4],which:[0,1,4,8,10,12,9,14],some_number_field:0,singl:[0,1,3,4,5,8,10,12,13],excit:11,sure:1,delete_memb:13,normal:9,parent_mail:14,recipient_count:[5,9,14],previou:9,field_id:[10,12,14],last_run_at:7,most:14,pair:11,"class":[4,5,7,8,9,10,13,14],don:1,member_group_id:[8,9,13],mcconnel:[9,14],url:[1,3,4,5,6,12],mailing_finish:[12,4],clear:10,request:[1,2,3],doe:[0,5,7,8,9,10,13],member_status_upd:[12,4],declar:9,tech:4,determin:1,dataset:10,dow:0,recipi:9,"6db0cc7e6fdb2da589b65f29d90c96b6":9,show:[4,5,7,8,9,10,11,13,14],text:[10,11,12],radiu:0,syntax:[0,1,11,9],radio:10,font:[4,5,7,8,9,10,13,14],fine:9,find:[1,6,5],status_to:8,toast:[7,5,8,13],access:[1,5],giant:12,just:[0,1,9],pretti:8,column_ord:10,explain:[0,1],winner:9,activ:[1,5,7,8,13,9],figur:1,should:[1,2,3,7,8,11,9],templat:[11,14],share_count:5,count:[1,2,3,5],variou:[8,13],confirmed_opt_in:[7,8,9,13],familiar:1,express:0,account:[1,4,5,7,8,10,13,14],becaus:12,repo:1,cannot:[8,9,4],progress:9,report:[10,8],requir:[1,7,8,10,11,9],object:[1,13,5],favorite_food:[5,7,8,13,10,9],bar:0,organ:1,include_archiv:[5,9],"public":1,"default":[5,11,13,4,9],ref_member_id:5,message_share_click:[12,4],through:[1,8,4],where:[0,1,8,11,7],view:1,user:[0,8,9,13],set:[0,1,2,3,6,8,9,12,13],link_id:[0,5,12,9,14],see:[7,1,8],result:[0,1,2,5,8,9],respons:[0,1,2,4,5,7,8,9,10,13,14],fail:[5,9,4],themselv:2,member_field:[0,7],xxxxx:6,subject:[8,12,9,14],statu:[1,4,5,7,8,9,12,13],fancyonion:11,kei:[0,1,8,11,4],is_schedul:9,message_forward:[12,4],databas:8,someth:1,last_modified_at:[7,8,9,13],addresse:5,written:1,between:[0,7,2],clicked_uniqu:5,"import":[1,8,12,4,10],subscript:[1,3],entiti:1,curlopt_url:[1,6,3],email:[0,1,3,5,6,7,8,9,13],wide:14,extend:1,numer:10,http404:[4,5,7,8,9,10,13,14],job:13,entir:[0,8],share_click:5,to_group_id:13,come:1,curlopt_returntransf:[1,6,3],addit:[0,1,8,9,11,13],member_remove_from_group:[12,4],send_start:[0,9,14],protect:1,accident:2,last:[0,5,10],delimit:5,lentil:7,pertain:5,message_click:[12,4],curlopt_post:[1,3],audienc:[1,8,9],mang:0,improv:1,http500:14,seri:5,com:[4,5,6,7,8,9,11,13],zip_code_field:0,"03t15":[7,5,8,13],point:1,toni:[7,8],overview:[0,1,11,12,5],period:1,winner_id:9,colon:[7,11],optout_count:[7,8,9,13],suppli:9,cancel:9,tuesdai:0,duplic:5,quit:[5,8],user_id:4,recur:14,headsup:9,addition:[1,2],due:5,been:[1,8,10,5],mark:[8,9],whom:9,tshow:[4,5,7,8,9,10,13,14],trigger:[1,4,5,7,8,9,10,12,13,14],unsubscrib:0,treat:8,interest:[10,4],basic:[0,1,4,8,13,14],monthli:[7,8,13],member_delet:[12,4],hesit:1,blob:4,email_us:[0,5],mailing_mailing_id:5,mailing_id:[0,5,8,12,9,14],fire:[8,4,14],xxx:[1,3],rubi:1,argument:[0,5],link_ord:[5,9],input:1,extract:11,present:7,statist:8,"case":[1,8],look:[1,14,10],frozen:9,durat:9,email_error:[7,8,9,13],defin:[0,10,8,9],"while":0,smith:[7,5,8,9,13],outcom:5,abov:[0,1,8,7],error:[1,3,6,8,10,13],veen:1,loop:8,opt:[0,4,5,7,8,13],readi:9,deliv:5,recipient_group:9,equal:0,itself:0,new_statu:12,webhook_id:4,develop:1,recipient_memb:9,perform:8,make:[1,12,6,10],belong:[0,8,4],same:4,check:[8,6,9],member:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14],python:1,html:9,split:9,document:[1,11,12],complet:[1,3,4,6,8,9],week:0,finish:[5,12,4],http:[1,2,3,4,5,6,11,9],href:[4,5,7,8,9,10,13,14],nest:0,someon:4,rais:[4,5,7,8,9,10,13,14],initi:[10,9],php:[1,6,3],studi:1,recent:[1,8],kept:11,center:0,min:5,well:[1,5],inherit:9,person:9,mailing_typ:[9,14],without:[0,1],command:1,thi:[0,1,4,5,7,8,9,10,12,13,14],undefin:0,http_code:[1,6,3],latest:11,construct:[0,7,9],identifi:8,paus:9,execut:[1,3],less:0,resp:[4,5,7,8,9,10,13,14],"_post":[1,3],against:0,aspect:13,recipient_email:9,source_filenam:8,yet:5,languag:1,"12t09":[7,8],display_nam:10,easi:[1,12,10],"01t00":8,had:0,littl:1,blog:4,add:[12,1,8,13,3],other:[1,8,9,3,5],curlopt_userpwd:[1,6,3],import_finish:[8,12,4],schedul:9,els:[1,6,3],save:7,match:[0,7],build:1,sanit:1,applic:[1,6,3],account_id:[1,3,4,5,6,7,8,9,10,12,13,14],handl:1,disposit:1,crud:[8,13,14],print_r:[6,3],mailing_statu:[9,14],know:[1,4,5],background:13,parent_mailing_id:[9,14],bit:1,insert:11,emma:[1,5,7,8,9,12,13],like:1,onion:11,deprec:4,arbitrari:8,manual:9,integ:[1,8,14,10,5],collect:1,api:[1,2,3,6,8,12],either:[0,5,7],bunch:0,output:9,group_id:[1,8,12,3],soft:[0,5],manag:[0,1,13,4],import_id:[8,12],www:[5,9],old:7,deal:[8,13],captur:1,arrai:[0,1,3,5,6,7,8,9,10,12,13,14],some:[1,11,5],field_delet:[12,4],certain:12,intern:10,sampl:[1,4,5,7,8,9,10,13,14],elaps:[2,9],unless:1,deleted_at:[7,8,13,10,9,14],some_string_field:0,librari:11,woodcock:1,emmarubi:1,bounce_count:[7,8,9,13],emmapython:1,public_kei:4,deliveri:5,broad:12,per:5,send_finish:[9,14],larg:[0,2],condit:7,three:9,network_cod:12,localhost:9,emmaphp:1,with_html_bodi:9,who:[0,5,8],bold:[4,5,7,8,9,10,13,14],event_typ:14,inspect:1,usag:[1,8,12],monsewicz:1,num_members_ad:8,fulli:11,from:[1,4,8,9,12,13,14],post:[1,3,4,7,8,9,10,12,13,14],group_creat:[12,4],gladi:[7,5,8,13],hurst:1,actual:5,zip:0,groups_upd:8,column:10,page:2,includ:[1,5,7,8,9,10,13],webview:9,mean:0,"14t16":[7,14],disabl:[9,14],block:[1,2],yyyi:5,own:1,member_data:[1,3],glob:0,bounc:[0,5],within:[0,8],encod:[9,4],delivery_typ:[5,8],compos:0,webview_shar:5,field_typ:10,active_count:[7,8,9,13],public_webview_url:9,pivot:5,your:[1,4,5,7,8,9,10,13],websit:11,fast:8,van:1,wai:[1,12],area:1,overus:2,group_nam:[8,12,13,9],support:12,unique_click:5,json:[0,1,3,4,6,7],submit:1,custom:[5,8,11,10],avail:[0,11,4],start:[1,2,8,4],interfac:12,send_at:[9,14],exceed:2,"var":3,interv:[0,14],fork:1,head:[1,6,9,3],form:[1,3,4,6,8,10,14],enough:2,forc:1,forward:[0,4,5,8,12,9],"31st":0,group_typ:[8,9,13],push_offset_unit:14,link:[0,4,5,11,9,14],line:[1,5],realli:1,"true":[0,1,2,3,4,6,7,8,9,10,13,14],archived_t:[9,14],info:4,pull:[1,2],made:1,possibl:[5,8,12],whether:8,maximum:2,tell:12,http403:9,record:[0,7,8],below:[0,1,8,12],http400:[7,8,9],limit:[5,2,8,9],some_array_field:0,otherwis:[1,8,10],start_t:14,mta:5,expect:1,notif:9,creat:[4,5,7,9,10,12,13,14],"int":5,retriev:[7,1,2,8,9],year:[0,5,9,14],repres:5,exist:[0,4,5,7,8,10,13],behavior:11,bob:[7,5],curl:[1,6],portland:1,probabl:14,echo:[1,3],successfulli:[5,8,9],mailing_subject:12,grp:13,todo:11,when:[8,12,4,9],detail:[1,4,7,8,9,10,13],invalid:[7,8,9],event:[4,7,8,13,12,9,14],field:[0,1,3,4,5,7,8,9,10,11,12,13,14],valid:[5,8,9,13],futur:1,num_skip:8,test:[5,6,7,13,9,14],ignor:8,you:[0,1,2,4,5,7,8,9,10,11,12,13],emmasdk:1,member_status_id:[7,5,8,9,13],public_api_kei:[1,6,3],stat:[5,9],claus:[0,7],event_nam:[12,4],e2ma:[1,2,6,3],error_messag:8,param:[9,4],app_messag:[1,3],ella:8,bulk:[1,8],receiv:[0,2,5,8,12,9],heads_up_email:9,longer:9,home:11,confirm:8,descript:[4,14],ohmyemma:1,portion:0,opted_out:5,time:[1,2,8,13,5],reply_to:[9,14],resource_url:12,hello:[11,9,14]},objtypes:{"0":"http:get","1":"http:put","2":"http:post","3":"http:delete"},titles:["Search Syntax","Emma API","Pagination","PHP Signup Example","Webhooks","Response","PHP Get Member By Email Example","Searches","Members","Mailings","Fields","Placeholder Syntax","Webhook Usage","Groups","Triggers"],objnames:{"0":["http","get","HTTP get"],"1":["http","put","HTTP put"],"2":["http","post","HTTP post"],"3":["http","delete","HTTP delete"]},filenames:["member_search","index","pagination","php_signup_example","api/external/webhooks","api/external/response","php_get_member_example","api/external/searches","api/external/members","api/external/mailings","api/external/fields","placeholders","webhooks","api/external/groups","api/external/triggers"]}) \ No newline at end of file diff --git a/webhooks.html b/webhooks.html index 59b2592..60db123 100644 --- a/webhooks.html +++ b/webhooks.html @@ -507,7 +507,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on May 10, 2013 at 02:30 PM. + Last updated on May 14, 2013 at 04:50 PM. </div> </body> </html> \ No newline at end of file From 25e9a8b11273ac7719916bfea2b0a7249ce9bf93 Mon Sep 17 00:00:00 2001 From: Sofia Karagadayeva <sofia@3442232.local> Date: Wed, 22 May 2013 15:11:35 -0500 Subject: [PATCH 043/219] Update audience documentation. --- api/external/fields.html | 2 +- api/external/groups.html | 2 +- api/external/mailings.html | 2 +- api/external/members.html | 2 +- api/external/response.html | 2 +- api/external/searches.html | 4 ++-- api/external/triggers.html | 8 ++++---- api/external/webhooks.html | 2 +- genindex.html | 2 +- http-routingtable.html | 2 +- index.html | 2 +- member_search.html | 2 +- pagination.html | 2 +- php_get_member_example.html | 2 +- php_signup_example.html | 2 +- placeholders.html | 2 +- search.html | 2 +- searchindex.js | 2 +- webhooks.html | 2 +- 19 files changed, 23 insertions(+), 23 deletions(-) diff --git a/api/external/fields.html b/api/external/fields.html index b16ecf8..27ad4fe 100644 --- a/api/external/fields.html +++ b/api/external/fields.html @@ -415,7 +415,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on May 14, 2013 at 04:50 PM. + Last updated on May 22, 2013 at 03:11 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/groups.html b/api/external/groups.html index ce6c70f..95e9f47 100644 --- a/api/external/groups.html +++ b/api/external/groups.html @@ -702,7 +702,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on May 14, 2013 at 04:50 PM. + Last updated on May 22, 2013 at 03:11 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/mailings.html b/api/external/mailings.html index c1e3a2e..957b72c 100644 --- a/api/external/mailings.html +++ b/api/external/mailings.html @@ -810,7 +810,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on May 14, 2013 at 04:50 PM. + Last updated on May 22, 2013 at 03:11 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/members.html b/api/external/members.html index b0ec443..00c2f0d 100644 --- a/api/external/members.html +++ b/api/external/members.html @@ -1217,7 +1217,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on May 14, 2013 at 04:50 PM. + Last updated on May 22, 2013 at 03:11 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/response.html b/api/external/response.html index 33486a5..49ef853 100644 --- a/api/external/response.html +++ b/api/external/response.html @@ -1019,7 +1019,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on May 14, 2013 at 04:50 PM. + Last updated on May 22, 2013 at 03:11 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/searches.html b/api/external/searches.html index 888c678..b17fd6f 100644 --- a/api/external/searches.html +++ b/api/external/searches.html @@ -199,7 +199,7 @@ <h1>Searches<a class="headerlink" href="#searches" title="Permalink to this head "name": "Test Search", "criteria": "[\"or\", [\"group\", \"eq\", \"Monthly Newsletter\"],[\"group\", \"eq\", \"Widget Buyers\"]]", "deleted_at": null, - "last_run_at": "@D:2013-05-14T16:50:27", + "last_run_at": "@D:2013-05-22T15:11:29", "active_count": 2, "account_id": 100 } @@ -511,7 +511,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on May 14, 2013 at 04:50 PM. + Last updated on May 22, 2013 at 03:11 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/triggers.html b/api/external/triggers.html index 7e197b4..e18fb79 100644 --- a/api/external/triggers.html +++ b/api/external/triggers.html @@ -148,7 +148,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": 203, "push_offset_units": "0:-14:0:0", - "start_ts": "@D:2013-05-14T16:50:24", + "start_ts": "@D:2013-05-22T15:11:26", "trigger_id": 100, "signups": null, "push_offset": "@I:-1209600.0", @@ -189,7 +189,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": null, "push_offset_units": "0:3:0:0", - "start_ts": "@D:2013-05-14T16:50:24", + "start_ts": "@D:2013-05-22T15:11:26", "trigger_id": 101, "signups": [ 1, @@ -326,7 +326,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": 203, "push_offset_units": "0:-14:0:0", - "start_ts": "@D:2013-05-14T16:50:24", + "start_ts": "@D:2013-05-22T15:11:26", "trigger_id": 100, "signups": null, "push_offset": "@I:-1209600.0", @@ -499,7 +499,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on May 14, 2013 at 04:50 PM. + Last updated on May 22, 2013 at 03:11 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/webhooks.html b/api/external/webhooks.html index 3058558..4a79555 100644 --- a/api/external/webhooks.html +++ b/api/external/webhooks.html @@ -487,7 +487,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on May 14, 2013 at 04:50 PM. + Last updated on May 22, 2013 at 03:11 PM. </div> </body> </html> \ No newline at end of file diff --git a/genindex.html b/genindex.html index f22fcfd..eb887a2 100644 --- a/genindex.html +++ b/genindex.html @@ -146,7 +146,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on May 14, 2013 at 04:50 PM. + Last updated on May 22, 2013 at 03:11 PM. </div> </body> </html> \ No newline at end of file diff --git a/http-routingtable.html b/http-routingtable.html index db06382..0968602 100644 --- a/http-routingtable.html +++ b/http-routingtable.html @@ -607,7 +607,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on May 14, 2013 at 04:50 PM. + Last updated on May 22, 2013 at 03:11 PM. </div> </body> </html> \ No newline at end of file diff --git a/index.html b/index.html index d2ea1d8..eb6a8b4 100644 --- a/index.html +++ b/index.html @@ -344,7 +344,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on May 14, 2013 at 04:50 PM. + Last updated on May 22, 2013 at 03:11 PM. </div> </body> </html> \ No newline at end of file diff --git a/member_search.html b/member_search.html index 67f3c99..9d6ea65 100644 --- a/member_search.html +++ b/member_search.html @@ -256,7 +256,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on May 14, 2013 at 04:50 PM. + Last updated on May 22, 2013 at 03:11 PM. </div> </body> </html> \ No newline at end of file diff --git a/pagination.html b/pagination.html index 8ae81eb..6862f24 100644 --- a/pagination.html +++ b/pagination.html @@ -168,7 +168,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on May 14, 2013 at 04:50 PM. + Last updated on May 22, 2013 at 03:11 PM. </div> </body> </html> \ No newline at end of file diff --git a/php_get_member_example.html b/php_get_member_example.html index 3ab9e3e..9295e64 100644 --- a/php_get_member_example.html +++ b/php_get_member_example.html @@ -183,7 +183,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on May 14, 2013 at 04:50 PM. + Last updated on May 22, 2013 at 03:11 PM. </div> </body> </html> \ No newline at end of file diff --git a/php_signup_example.html b/php_signup_example.html index 8d707dd..0f152eb 100644 --- a/php_signup_example.html +++ b/php_signup_example.html @@ -205,7 +205,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on May 14, 2013 at 04:50 PM. + Last updated on May 22, 2013 at 03:11 PM. </div> </body> </html> \ No newline at end of file diff --git a/placeholders.html b/placeholders.html index ee329c5..f54ef8a 100644 --- a/placeholders.html +++ b/placeholders.html @@ -183,7 +183,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on May 14, 2013 at 04:50 PM. + Last updated on May 22, 2013 at 03:11 PM. </div> </body> </html> \ No newline at end of file diff --git a/search.html b/search.html index 3c001ad..4918bc8 100644 --- a/search.html +++ b/search.html @@ -153,7 +153,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on May 14, 2013 at 04:50 PM. + Last updated on May 22, 2013 at 03:11 PM. </div> </body> </html> \ No newline at end of file diff --git a/searchindex.js b/searchindex.js index 9714d1b..fc7c62e 100644 --- a/searchindex.js +++ b/searchindex.js @@ -1 +1 @@ -Search.setIndex({objects:{"":{"/#account_id/members/#member_id/groups/remove":[8,1,1,"put--#account_id-members-#member_id-groups-remove"],"/#account_id/mailings/#mailing_id/winner/#winner_id":[9,2,1,"post--#account_id-mailings-#mailing_id-winner-#winner_id"],"/#account_id/response/#mailing_id/in_progress":[5,0,1,"get--#account_id-response-#mailing_id-in_progress"],"/#account_id/members/groups/remove":[8,1,1,"put--#account_id-members-groups-remove"],"/#account_id/mailings/#mailing_id/searches":[9,0,1,"get--#account_id-mailings-#mailing_id-searches"],"/#account_id/fields":[10,2,1,"post--#account_id-fields"],"/#account_id/members/#group_id/copy":[8,1,1,"put--#account_id-members-#group_id-copy"],"/#account_id/members/status":[8,1,1,"put--#account_id-members-status"],"/#account_id/response/#mailing_id/shares/overview":[5,0,1,"get--#account_id-response-#mailing_id-shares-overview"],"/#account_id/webhooks/events":[4,0,1,"get--#account_id-webhooks-events"],"/#account_id/members/#member_id/optout":[8,0,1,"get--#account_id-members-#member_id-optout"],"/#account_id/webhooks":[4,3,1,"delete--#account_id-webhooks"],"/#account_id/fields/#field_id":[10,3,1,"delete--#account_id-fields-#field_id"],"/#account_id/response/#mailing_id":[5,0,1,"get--#account_id-response-#mailing_id"],"/#account_id/groups/#member_group_id/members/remove":[13,3,1,"delete--#account_id-groups-#member_group_id-members-remove"],"/#account_id/searches":[7,2,1,"post--#account_id-searches"],"/#account_id/members/imports":[8,0,1,"get--#account_id-members-imports"],"/#account_id/forwards/#mailing_id/#member_id":[9,2,1,"post--#account_id-forwards-#mailing_id-#member_id"],"/#account_id/response/#mailing_id/customer_share_clicks":[5,0,1,"get--#account_id-response-#mailing_id-customer_share_clicks"],"/#account_id/mailings/#mailing_id/messages/#member_id":[9,0,1,"get--#account_id-mailings-#mailing_id-messages-#member_id"],"/#account_id/members/#member_id/mailings":[8,0,1,"get--#account_id-members-#member_id-mailings"],"/#account_id/groups/#from_group_id/#to_group_id/members/copy":[13,1,1,"put--#account_id-groups-#from_group_id-#to_group_id-members-copy"],"/#account_id/triggers":[14,2,1,"post--#account_id-triggers"],"/#account_id/triggers/#trigger_id":[14,3,1,"delete--#account_id-triggers-#trigger_id"],"/#account_id/members/delete":[8,1,1,"put--#account_id-members-delete"],"/#account_id/mailings/#mailing_id/groups":[9,0,1,"get--#account_id-mailings-#mailing_id-groups"],"/#account_id/response/#mailing_id/forwards":[5,0,1,"get--#account_id-response-#mailing_id-forwards"],"/#account_id/members/#member_id":[8,3,1,"delete--#account_id-members-#member_id"],"/#account_id/triggers/#trigger_id/mailings":[14,0,1,"get--#account_id-triggers-#trigger_id-mailings"],"/#account_id/searches/#search_id/members":[7,0,1,"get--#account_id-searches-#search_id-members"],"/#account_id/members/status/:status_from/to/:status_to":[8,1,1,"put--#account_id-members-status--status_from-to--status_to"],"/#account_id/response/#mailing_id/sends":[5,0,1,"get--#account_id-response-#mailing_id-sends"],"/#account_id/members":[8,3,1,"delete--#account_id-members"],"/#account_id/members/email/:email":[8,0,1,"get--#account_id-members-email--email"],"/#account_id/response/#mailing_id/links":[5,0,1,"get--#account_id-response-#mailing_id-links"],"/#account_id/searches/#search_id":[7,3,1,"delete--#account_id-searches-#search_id"],"/#account_id/members/imports/#import_id/members":[8,0,1,"get--#account_id-members-imports-#import_id-members"],"/#account_id/fields/#field_id/clear":[10,2,1,"post--#account_id-fields-#field_id-clear"],"/#account_id/groups/#member_group_id/members":[13,3,1,"delete--#account_id-groups-#member_group_id-members"],"/#account_id/members/imports/#import_id":[8,0,1,"get--#account_id-members-imports-#import_id"],"/#account_id/response":[5,0,1,"get--#account_id-response"],"/#account_id/response/#mailing_id/opens":[5,0,1,"get--#account_id-response-#mailing_id-opens"],"/#account_id/members/imports/delete":[8,3,1,"delete--#account_id-members-imports-delete"],"/#account_id/mailings":[9,0,1,"get--#account_id-mailings"],"/#account_id/mailings/cancel/#mailing_id":[9,3,1,"delete--#account_id-mailings-cancel-#mailing_id"],"/#account_id/mailings/validate":[9,2,1,"post--#account_id-mailings-validate"],"/#account_id/response/#mailing_id/deliveries":[5,0,1,"get--#account_id-response-#mailing_id-deliveries"],"/#account_id/mailings/#mailing_id/members":[9,0,1,"get--#account_id-mailings-#mailing_id-members"],"/#account_id/response/#share_id/customer_share":[5,0,1,"get--#account_id-response-#share_id-customer_share"],"/#account_id/webhooks/#webhook_id":[4,3,1,"delete--#account_id-webhooks-#webhook_id"],"/#account_id/members/add":[8,2,1,"post--#account_id-members-add"],"/#account_id/members/email/optout/:email":[8,1,1,"put--#account_id-members-email-optout--email"],"/#account_id/response/#mailing_id/optouts":[5,0,1,"get--#account_id-response-#mailing_id-optouts"],"/#account_id/response/#mailing_id/shares":[5,0,1,"get--#account_id-response-#mailing_id-shares"],"/#account_id/groups/#member_group_id":[13,3,1,"delete--#account_id-groups-#member_group_id"],"/#account_id/mailings/#mailing_id":[9,3,1,"delete--#account_id-mailings-#mailing_id"],"/#account_id/members/#member_id/groups":[8,3,1,"delete--#account_id-members-#member_id-groups"],"/#account_id/groups":[13,2,1,"post--#account_id-groups"],"/#account_id/response/#mailing_id/clicks":[5,0,1,"get--#account_id-response-#mailing_id-clicks"],"/#account_id/mailings/#mailing_id/headsup":[9,0,1,"get--#account_id-mailings-#mailing_id-headsup"],"/#account_id/response/#mailing_id/signups":[5,0,1,"get--#account_id-response-#mailing_id-signups"],"/#account_id/response/#mailing_id/customer_shares":[5,0,1,"get--#account_id-response-#mailing_id-customer_shares"]}},terms:{all:[0,1,4,5,8,9,10,11,12,13,14],code:[0,1,6,3],change_typ:8,queri:[0,2,4],month:[0,5,9,14],four:[0,5],mile:0,least:0,follow:[0,1,4,5,7,9,11,13],link_target:[5,9],content:[1,11,6,9,3],privat:1,specif:[8,9,4],friendli:5,send:[1,9,4,3,5],program:1,customer_share_click:5,those:[1,12,5],group_upd:[12,4],sent:[5,8,12,9,14],curl_clos:[1,6,3],brown:[7,8],digit:5,everi:0,string:[0,4,5,7,8,9,10,12,13,14],fals:[1,3,4,5,6,7,8,9,10,13,14],webhook:[1,12,4],mailing_status:9,trigger_id:14,webview_share_click:5,affect:[7,8],member_add:[12,4],create_mail:9,new_boolean:10,foo:0,level:1,group_delet:[12,4],list:[0,1,2,4,5,7,8,9,10,11,12,13,14],upload:8,iter:2,"try":8,item:2,plaintext_onli:[9,14],div:[4,5,7,8,9,10,13,14],survey_id:14,setup:1,pleas:[1,8,11,9],prevent:2,work:[1,4],ten:0,sync:10,sign:[0,5,4],past:1,second:[0,7,14],field_creat:[12,4],further:1,shortcut_nam:10,click:[0,4,5,7,8,12,14],append:2,even:10,what:1,hide:[4,5,7,8,9,10,13,14],appear:[1,8],from_group_id:13,section:1,current:[1,8,12,9],delet:[1,4,7,8,9,10,12,13,14],"new":[1,4,5,7,8,9,10,11,13,14],net:[1,2,6,3],delivery_t:8,method:[5,8,13,4,9],can:[0,1,2,4,5,7,8,9,11,12,13],widget:[7,10,8,9,13],full:1,hash:0,datematch:0,displai:10,variat:9,gener:[0,8,12,14],onli:[5,8],here:[0,1,3,5,6,8],bodi:9,let:[1,4,10],address:[0,1,8,6,9],along:8,sinc:8,valu:[0,5,7,8,10,11],field_upd:[12,4],search:[0,1,8,9,7],survei:14,sender:[9,14],larger:2,queue:5,prior:9,action:[0,8],chang:[8,4],campaign:5,newbi:5,appli:[7,14],prefer:0,young:1,myemma:[4,5,7,8,9,13],filenam:8,customer_shar:5,"boolean":[0,1,5,7,8,9,10,13,14],curlopt_postfield:[1,3],total:5,jone:[7,5,8,13],select:[1,10],newslett:[7,8,13],describ:7,would:[0,1],commun:1,regist:4,two:[0,5],coverag:1,next:[0,1],create_webhook:4,few:[5,8],call:[1,2,3,4,6,8,12],criteria:7,member_add_to_group:[12,4],type:[1,3,4,5,6,7,10,9,14],until:2,more:[0,4,7,8,9,13],peopl:5,relat:[1,8,11,9],about:[10,8,12,4,9],notic:8,thide:[4,5,7,8,9,10,13,14],flag:[5,7,8,10,9,14],exce:2,indic:8,examin:1,particular:[1,4,5,8,10,12,9],in_progress:5,origin:9,must:[0,7,13,10],none:9,endpoint:[1,4,5,7,8,9,10,13,14],join:[0,7],hour:0,der:1,member_sinc:[0,5,7,8,9,13],uniqu:5,histori:8,soup:7,remain:[0,9],archiv:[5,9],member_optout:[12,4],drill:5,control:[1,11,9],quickstart:1,give:5,forward_mailing_id:5,email_domain:[0,5],share:[0,5,8,12,4],accept:[0,5,7,8,9,10,11,13,14],total_click:5,tag:[11,9],want:[1,12,13,5],occur:[7,12],some_numeric_field:0,delai:14,alwai:0,webhook_event_id:4,cours:1,multipl:[10,8],first_nam:[1,3,5,7,8,9,10,11,13,14],started_or_finish:[9,14],anoth:[9,13],get:[1,4,5,6,7,8,9,10,13,14],message_open:[12,4],html_bodi:[9,14],share_statu:5,push_offset:14,del_statu:5,tild:5,num_members_upd:8,simpl:0,chri:9,pizza:[7,8],map:0,autent:1,referenc:7,xxxx:6,sundai:0,jacqu:1,membership:13,taco:[7,5,8,9,13],mai:12,end:[2,8],associ:[1,8,9,4,5],grow:1,welcom:11,add_onli:8,"short":0,json_encod:[1,3],optout:[5,8,12,13],num_dupl:8,favorit:10,correspond:[0,1],greet:11,predic:[0,1],issu:[1,10],"12t11":[7,5,8,9,13],combin:7,allow:[0,7,8],some_zipcode_field:0,signed_up:5,order:[5,10],michel:[8,9],mailing_nam:5,checkbox:10,fields_upd:8,over:2,soon:1,buyer:[7,8,9,13],comma:[9,13],is_dis:14,vari:8,paramet:[2,4,5,7,8,9,10,13,14],widget_typ:10,style:[0,4,5,7,8,9,10,13,14],group:[0,1,3,4,7,8,9,12,13,14],curl_setopt:[1,6,3],how:[7,1,2,4],fix:1,import_start:8,better:[13,14],platform:1,pend:[1,9],mailing_list:9,onc:9,mail:[0,1,4,5,8,11,12,9,14],hidden:13,main:1,might:[1,4],link_nam:[5,9],them:[8,9],messag:[4,5,8,12,11,9,14],"return":[0,1,4,5,7,8,9,10,12,13,14],greater:[0,8],thei:[0,9],food:10,timestamp:[0,5,12,9,10],spell:4,nashvil:1,dai:0,auth:1,framework:1,instead:[12,2,8],now:5,down:5,term:[0,1],alex:9,name:[0,4,5,7,8,9,10,11,13,14],edit:[7,1,14,10],curl_getinfo:[1,6,3],authent:[1,6,4,3],successufulli:4,separ:[1,9,13],each:[1,2,5,9,12,11,13],found:[8,9,4,14],updat:[4,7,8,9,10,12,13,14],denni:1,status:[8,9],domain:0,weight:[4,5,7,8,9,10,13,14],resum:9,individu:[5,8],hard:[0,5],last_nam:[1,3,5,7,8,9,10,11,13,14],"05t15":5,birthdai:[10,14],connect:[1,6,3],doug:1,our:[1,11,12,4,14],happen:[1,4,5],commiss:1,short_display_nam:10,special:[0,7,8,13],out:[0,1,4,5,7,8,10,13],variabl:[1,6,3],message_shar:[12,4],network:[5,12],private_api_kei:[1,6,3],check_multipl:10,categori:1,rel:0,print:6,correct:10,integr:1,benjamin:[1,8],qualifi:11,insid:1,advanc:0,contain:[0,5,7,13,10,9],given:[0,8,9,4],standard:[5,9],status_from:8,base:[5,8],recipient_search:9,dictionari:8,put:[4,7,8,9,10,13,14],span:[4,5,7,8,9,10,13,14],"13t23":[7,5,8],refer:[5,7,8,13,10,9],visit:11,could:1,omit:5,success:[1,3,7,8,9,13],filter:[0,1,7],search_id:7,pagin:[1,2],member_id:[5,7,8,9,12,13],summari:[1,5],assign:9,first:[0,1,10,5],oper:[0,1,7,14],rang:5,notifi:12,directli:0,curlopt_ssl_verifyp:[1,6,3],curl_init:[1,6,3],number:[5,2,13,3,10],placehold:[1,11],date:[0,5,8,10,11,14],unlik:9,alreadi:[10,8,9,13],done:8,plaintext_pref:[7,8,9,13],oppos:8,open:[0,3,4,5,6,7,8,12],payload:4,fanci:5,size:2,differ:0,"long":10,script:1,data:[1,3,4,5,10,12],system:[8,12,4,14],wrapper:1,attach:11,easier:12,friend:11,curlinfo_http_cod:[1,6,3],shell:0,option:[0,5,7,8,9,10,13,14],especi:8,signup:[0,1,3,4,5,8,12,14],copi:[8,13],member_upd:[12,4],specifi:[0,2,7,8,10,11,9,14],curl_exec:[1,6,3],curlopt_httphead:[1,6,3],member_signup:[12,4],create_search:7,part:[0,9],enclos:11,than:[0,1,2,3,12,13],with_plaintext:9,"02t10":[5,8],"02t11":[5,8],"02t13":5,nathan:8,whenev:8,provid:[1,5,8,12,9,14],remov:[12,8,13,4],mailing_start:4,rate:2,structur:7,charact:9,greg:8,trackabl:11,were:5,minut:0,danc:1,error_count:[7,8,9,13],pre:[4,5,7,8,9,10,13,14],cleaner:1,sai:0,share_id:5,signup_form_id:[0,8,12,9,14],plaintext:[5,9,14],pass:[1,3],ani:[0,1,2,7,8,9],have:[0,1,5,8,12,9],tabl:5,need:1,seen:5,"null":[7,8,13,10,9,14],kevin:[9,14],signup_mail:0,caus:14,built:1,inform:[1,4,6,8,9,10,13],object_id:14,note:[1,8,9,4],also:[0,4,5,7,8,9,11,13],exampl:[0,1,3,5,6,7,11],take:[0,4],which:[0,1,4,8,10,12,9,14],some_number_field:0,singl:[0,1,3,4,5,8,10,12,13],excit:11,sure:1,delete_memb:13,normal:9,parent_mail:14,recipient_count:[5,9,14],previou:9,field_id:[10,12,14],last_run_at:7,most:14,pair:11,"class":[4,5,7,8,9,10,13,14],don:1,member_group_id:[8,9,13],mcconnel:[9,14],url:[1,3,4,5,6,12],mailing_finish:[12,4],clear:10,request:[1,2,3],doe:[0,5,7,8,9,10,13],member_status_upd:[12,4],declar:9,tech:4,determin:1,dataset:10,dow:0,recipi:9,"6db0cc7e6fdb2da589b65f29d90c96b6":9,show:[4,5,7,8,9,10,11,13,14],text:[10,11,12],radiu:0,syntax:[0,1,11,9],radio:10,font:[4,5,7,8,9,10,13,14],fine:9,find:[1,6,5],status_to:8,toast:[7,5,8,13],access:[1,5],giant:12,just:[0,1,9],pretti:8,column_ord:10,explain:[0,1],winner:9,activ:[1,5,7,8,13,9],figur:1,should:[1,2,3,7,8,11,9],templat:[11,14],share_count:5,count:[1,2,3,5],variou:[8,13],confirmed_opt_in:[7,8,9,13],familiar:1,express:0,account:[1,4,5,7,8,10,13,14],becaus:12,repo:1,cannot:[8,9,4],progress:9,report:[10,8],requir:[1,7,8,10,11,9],object:[1,13,5],favorite_food:[5,7,8,13,10,9],bar:0,organ:1,include_archiv:[5,9],"public":1,"default":[5,11,13,4,9],ref_member_id:5,message_share_click:[12,4],through:[1,8,4],where:[0,1,8,11,7],view:1,user:[0,8,9,13],set:[0,1,2,3,6,8,9,12,13],link_id:[0,5,12,9,14],see:[7,1,8],result:[0,1,2,5,8,9],respons:[0,1,2,4,5,7,8,9,10,13,14],fail:[5,9,4],themselv:2,member_field:[0,7],xxxxx:6,subject:[8,12,9,14],statu:[1,4,5,7,8,9,12,13],fancyonion:11,kei:[0,1,8,11,4],is_schedul:9,message_forward:[12,4],databas:8,someth:1,last_modified_at:[7,8,9,13],addresse:5,written:1,between:[0,7,2],clicked_uniqu:5,"import":[1,8,12,4,10],subscript:[1,3],entiti:1,curlopt_url:[1,6,3],email:[0,1,3,5,6,7,8,9,13],wide:14,extend:1,numer:10,http404:[4,5,7,8,9,10,13,14],job:13,entir:[0,8],share_click:5,to_group_id:13,come:1,curlopt_returntransf:[1,6,3],addit:[0,1,8,9,11,13],member_remove_from_group:[12,4],send_start:[0,9,14],protect:1,accident:2,last:[0,5,10],delimit:5,lentil:7,pertain:5,message_click:[12,4],curlopt_post:[1,3],audienc:[1,8,9],mang:0,improv:1,http500:14,seri:5,com:[4,5,6,7,8,9,11,13],zip_code_field:0,"03t15":[7,5,8,13],point:1,toni:[7,8],overview:[0,1,11,12,5],period:1,winner_id:9,colon:[7,11],optout_count:[7,8,9,13],suppli:9,cancel:9,tuesdai:0,duplic:5,quit:[5,8],user_id:4,recur:14,headsup:9,addition:[1,2],due:5,been:[1,8,10,5],mark:[8,9],whom:9,tshow:[4,5,7,8,9,10,13,14],trigger:[1,4,5,7,8,9,10,12,13,14],unsubscrib:0,treat:8,interest:[10,4],basic:[0,1,4,8,13,14],monthli:[7,8,13],member_delet:[12,4],hesit:1,blob:4,email_us:[0,5],mailing_mailing_id:5,mailing_id:[0,5,8,12,9,14],fire:[8,4,14],xxx:[1,3],rubi:1,argument:[0,5],link_ord:[5,9],input:1,extract:11,present:7,statist:8,"case":[1,8],look:[1,14,10],frozen:9,durat:9,email_error:[7,8,9,13],defin:[0,10,8,9],"while":0,smith:[7,5,8,9,13],outcom:5,abov:[0,1,8,7],error:[1,3,6,8,10,13],veen:1,loop:8,opt:[0,4,5,7,8,13],readi:9,deliv:5,recipient_group:9,equal:0,itself:0,new_statu:12,webhook_id:4,develop:1,recipient_memb:9,perform:8,make:[1,12,6,10],belong:[0,8,4],same:4,check:[8,6,9],member:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14],python:1,html:9,split:9,document:[1,11,12],complet:[1,3,4,6,8,9],week:0,finish:[5,12,4],http:[1,2,3,4,5,6,11,9],href:[4,5,7,8,9,10,13,14],nest:0,someon:4,rais:[4,5,7,8,9,10,13,14],initi:[10,9],php:[1,6,3],studi:1,recent:[1,8],kept:11,center:0,min:5,well:[1,5],inherit:9,person:9,mailing_typ:[9,14],without:[0,1],command:1,thi:[0,1,4,5,7,8,9,10,12,13,14],undefin:0,http_code:[1,6,3],latest:11,construct:[0,7,9],identifi:8,paus:9,execut:[1,3],less:0,resp:[4,5,7,8,9,10,13,14],"_post":[1,3],against:0,aspect:13,recipient_email:9,source_filenam:8,yet:5,languag:1,"12t09":[7,8],display_nam:10,easi:[1,12,10],"01t00":8,had:0,littl:1,blog:4,add:[12,1,8,13,3],other:[1,8,9,3,5],curlopt_userpwd:[1,6,3],import_finish:[8,12,4],schedul:9,els:[1,6,3],save:7,match:[0,7],build:1,sanit:1,applic:[1,6,3],account_id:[1,3,4,5,6,7,8,9,10,12,13,14],handl:1,disposit:1,crud:[8,13,14],print_r:[6,3],mailing_statu:[9,14],know:[1,4,5],background:13,parent_mailing_id:[9,14],bit:1,insert:11,emma:[1,5,7,8,9,12,13],like:1,onion:11,deprec:4,arbitrari:8,manual:9,integ:[1,8,14,10,5],collect:1,api:[1,2,3,6,8,12],either:[0,5,7],bunch:0,output:9,group_id:[1,8,12,3],soft:[0,5],manag:[0,1,13,4],import_id:[8,12],www:[5,9],old:7,deal:[8,13],captur:1,arrai:[0,1,3,5,6,7,8,9,10,12,13,14],some:[1,11,5],field_delet:[12,4],certain:12,intern:10,sampl:[1,4,5,7,8,9,10,13,14],elaps:[2,9],unless:1,deleted_at:[7,8,13,10,9,14],some_string_field:0,librari:11,woodcock:1,emmarubi:1,bounce_count:[7,8,9,13],emmapython:1,public_kei:4,deliveri:5,broad:12,per:5,send_finish:[9,14],larg:[0,2],condit:7,three:9,network_cod:12,localhost:9,emmaphp:1,with_html_bodi:9,who:[0,5,8],bold:[4,5,7,8,9,10,13,14],event_typ:14,inspect:1,usag:[1,8,12],monsewicz:1,num_members_ad:8,fulli:11,from:[1,4,8,9,12,13,14],post:[1,3,4,7,8,9,10,12,13,14],group_creat:[12,4],gladi:[7,5,8,13],hurst:1,actual:5,zip:0,groups_upd:8,column:10,page:2,includ:[1,5,7,8,9,10,13],webview:9,mean:0,"14t16":[7,14],disabl:[9,14],block:[1,2],yyyi:5,own:1,member_data:[1,3],glob:0,bounc:[0,5],within:[0,8],encod:[9,4],delivery_typ:[5,8],compos:0,webview_shar:5,field_typ:10,active_count:[7,8,9,13],public_webview_url:9,pivot:5,your:[1,4,5,7,8,9,10,13],websit:11,fast:8,van:1,wai:[1,12],area:1,overus:2,group_nam:[8,12,13,9],support:12,unique_click:5,json:[0,1,3,4,6,7],submit:1,custom:[5,8,11,10],avail:[0,11,4],start:[1,2,8,4],interfac:12,send_at:[9,14],exceed:2,"var":3,interv:[0,14],fork:1,head:[1,6,9,3],form:[1,3,4,6,8,10,14],enough:2,forc:1,forward:[0,4,5,8,12,9],"31st":0,group_typ:[8,9,13],push_offset_unit:14,link:[0,4,5,11,9,14],line:[1,5],realli:1,"true":[0,1,2,3,4,6,7,8,9,10,13,14],archived_t:[9,14],info:4,pull:[1,2],made:1,possibl:[5,8,12],whether:8,maximum:2,tell:12,http403:9,record:[0,7,8],below:[0,1,8,12],http400:[7,8,9],limit:[5,2,8,9],some_array_field:0,otherwis:[1,8,10],start_t:14,mta:5,expect:1,notif:9,creat:[4,5,7,9,10,12,13,14],"int":5,retriev:[7,1,2,8,9],year:[0,5,9,14],repres:5,exist:[0,4,5,7,8,10,13],behavior:11,bob:[7,5],curl:[1,6],portland:1,probabl:14,echo:[1,3],successfulli:[5,8,9],mailing_subject:12,grp:13,todo:11,when:[8,12,4,9],detail:[1,4,7,8,9,10,13],invalid:[7,8,9],event:[4,7,8,13,12,9,14],field:[0,1,3,4,5,7,8,9,10,11,12,13,14],valid:[5,8,9,13],futur:1,num_skip:8,test:[5,6,7,13,9,14],ignor:8,you:[0,1,2,4,5,7,8,9,10,11,12,13],emmasdk:1,member_status_id:[7,5,8,9,13],public_api_kei:[1,6,3],stat:[5,9],claus:[0,7],event_nam:[12,4],e2ma:[1,2,6,3],error_messag:8,param:[9,4],app_messag:[1,3],ella:8,bulk:[1,8],receiv:[0,2,5,8,12,9],heads_up_email:9,longer:9,home:11,confirm:8,descript:[4,14],ohmyemma:1,portion:0,opted_out:5,time:[1,2,8,13,5],reply_to:[9,14],resource_url:12,hello:[11,9,14]},objtypes:{"0":"http:get","1":"http:put","2":"http:post","3":"http:delete"},titles:["Search Syntax","Emma API","Pagination","PHP Signup Example","Webhooks","Response","PHP Get Member By Email Example","Searches","Members","Mailings","Fields","Placeholder Syntax","Webhook Usage","Groups","Triggers"],objnames:{"0":["http","get","HTTP get"],"1":["http","put","HTTP put"],"2":["http","post","HTTP post"],"3":["http","delete","HTTP delete"]},filenames:["member_search","index","pagination","php_signup_example","api/external/webhooks","api/external/response","php_get_member_example","api/external/searches","api/external/members","api/external/mailings","api/external/fields","placeholders","webhooks","api/external/groups","api/external/triggers"]}) \ No newline at end of file +Search.setIndex({objects:{"":{"/#account_id/members/#member_id/groups/remove":[8,1,1,"put--#account_id-members-#member_id-groups-remove"],"/#account_id/mailings/#mailing_id/winner/#winner_id":[9,2,1,"post--#account_id-mailings-#mailing_id-winner-#winner_id"],"/#account_id/response/#mailing_id/in_progress":[5,0,1,"get--#account_id-response-#mailing_id-in_progress"],"/#account_id/members/groups/remove":[8,1,1,"put--#account_id-members-groups-remove"],"/#account_id/mailings/#mailing_id/searches":[9,0,1,"get--#account_id-mailings-#mailing_id-searches"],"/#account_id/fields":[10,2,1,"post--#account_id-fields"],"/#account_id/members/#group_id/copy":[8,1,1,"put--#account_id-members-#group_id-copy"],"/#account_id/members/status":[8,1,1,"put--#account_id-members-status"],"/#account_id/response/#mailing_id/shares/overview":[5,0,1,"get--#account_id-response-#mailing_id-shares-overview"],"/#account_id/webhooks/events":[4,0,1,"get--#account_id-webhooks-events"],"/#account_id/members/#member_id/optout":[8,0,1,"get--#account_id-members-#member_id-optout"],"/#account_id/webhooks":[4,3,1,"delete--#account_id-webhooks"],"/#account_id/fields/#field_id":[10,3,1,"delete--#account_id-fields-#field_id"],"/#account_id/response/#mailing_id":[5,0,1,"get--#account_id-response-#mailing_id"],"/#account_id/groups/#member_group_id/members/remove":[13,3,1,"delete--#account_id-groups-#member_group_id-members-remove"],"/#account_id/searches":[7,2,1,"post--#account_id-searches"],"/#account_id/members/imports":[8,0,1,"get--#account_id-members-imports"],"/#account_id/forwards/#mailing_id/#member_id":[9,2,1,"post--#account_id-forwards-#mailing_id-#member_id"],"/#account_id/response/#mailing_id/customer_share_clicks":[5,0,1,"get--#account_id-response-#mailing_id-customer_share_clicks"],"/#account_id/mailings/#mailing_id/messages/#member_id":[9,0,1,"get--#account_id-mailings-#mailing_id-messages-#member_id"],"/#account_id/members/#member_id/mailings":[8,0,1,"get--#account_id-members-#member_id-mailings"],"/#account_id/groups/#from_group_id/#to_group_id/members/copy":[13,1,1,"put--#account_id-groups-#from_group_id-#to_group_id-members-copy"],"/#account_id/triggers":[14,2,1,"post--#account_id-triggers"],"/#account_id/triggers/#trigger_id":[14,3,1,"delete--#account_id-triggers-#trigger_id"],"/#account_id/members/delete":[8,1,1,"put--#account_id-members-delete"],"/#account_id/mailings/#mailing_id/groups":[9,0,1,"get--#account_id-mailings-#mailing_id-groups"],"/#account_id/response/#mailing_id/forwards":[5,0,1,"get--#account_id-response-#mailing_id-forwards"],"/#account_id/members/#member_id":[8,3,1,"delete--#account_id-members-#member_id"],"/#account_id/triggers/#trigger_id/mailings":[14,0,1,"get--#account_id-triggers-#trigger_id-mailings"],"/#account_id/searches/#search_id/members":[7,0,1,"get--#account_id-searches-#search_id-members"],"/#account_id/members/status/:status_from/to/:status_to":[8,1,1,"put--#account_id-members-status--status_from-to--status_to"],"/#account_id/response/#mailing_id/sends":[5,0,1,"get--#account_id-response-#mailing_id-sends"],"/#account_id/members":[8,3,1,"delete--#account_id-members"],"/#account_id/members/email/:email":[8,0,1,"get--#account_id-members-email--email"],"/#account_id/response/#mailing_id/links":[5,0,1,"get--#account_id-response-#mailing_id-links"],"/#account_id/searches/#search_id":[7,3,1,"delete--#account_id-searches-#search_id"],"/#account_id/members/imports/#import_id/members":[8,0,1,"get--#account_id-members-imports-#import_id-members"],"/#account_id/fields/#field_id/clear":[10,2,1,"post--#account_id-fields-#field_id-clear"],"/#account_id/groups/#member_group_id/members":[13,3,1,"delete--#account_id-groups-#member_group_id-members"],"/#account_id/members/imports/#import_id":[8,0,1,"get--#account_id-members-imports-#import_id"],"/#account_id/response":[5,0,1,"get--#account_id-response"],"/#account_id/response/#mailing_id/opens":[5,0,1,"get--#account_id-response-#mailing_id-opens"],"/#account_id/members/imports/delete":[8,3,1,"delete--#account_id-members-imports-delete"],"/#account_id/mailings":[9,0,1,"get--#account_id-mailings"],"/#account_id/mailings/cancel/#mailing_id":[9,3,1,"delete--#account_id-mailings-cancel-#mailing_id"],"/#account_id/mailings/validate":[9,2,1,"post--#account_id-mailings-validate"],"/#account_id/response/#mailing_id/deliveries":[5,0,1,"get--#account_id-response-#mailing_id-deliveries"],"/#account_id/mailings/#mailing_id/members":[9,0,1,"get--#account_id-mailings-#mailing_id-members"],"/#account_id/response/#share_id/customer_share":[5,0,1,"get--#account_id-response-#share_id-customer_share"],"/#account_id/webhooks/#webhook_id":[4,3,1,"delete--#account_id-webhooks-#webhook_id"],"/#account_id/members/add":[8,2,1,"post--#account_id-members-add"],"/#account_id/members/email/optout/:email":[8,1,1,"put--#account_id-members-email-optout--email"],"/#account_id/response/#mailing_id/optouts":[5,0,1,"get--#account_id-response-#mailing_id-optouts"],"/#account_id/response/#mailing_id/shares":[5,0,1,"get--#account_id-response-#mailing_id-shares"],"/#account_id/groups/#member_group_id":[13,3,1,"delete--#account_id-groups-#member_group_id"],"/#account_id/mailings/#mailing_id":[9,3,1,"delete--#account_id-mailings-#mailing_id"],"/#account_id/members/#member_id/groups":[8,3,1,"delete--#account_id-members-#member_id-groups"],"/#account_id/groups":[13,2,1,"post--#account_id-groups"],"/#account_id/response/#mailing_id/clicks":[5,0,1,"get--#account_id-response-#mailing_id-clicks"],"/#account_id/mailings/#mailing_id/headsup":[9,0,1,"get--#account_id-mailings-#mailing_id-headsup"],"/#account_id/response/#mailing_id/signups":[5,0,1,"get--#account_id-response-#mailing_id-signups"],"/#account_id/response/#mailing_id/customer_shares":[5,0,1,"get--#account_id-response-#mailing_id-customer_shares"]}},terms:{all:[0,1,4,5,8,9,10,11,12,13,14],code:[0,1,6,3],change_typ:8,queri:[0,2,4],month:[0,5,9,14],four:[0,5],mile:0,least:0,follow:[0,1,4,5,7,9,11,13],link_target:[5,9],content:[1,11,6,9,3],privat:1,specif:[8,9,4],friendli:5,send:[1,9,4,3,5],program:1,customer_share_click:5,those:[1,12,5],group_upd:[12,4],sent:[5,8,12,9,14],curl_clos:[1,6,3],brown:[7,8],digit:5,everi:0,string:[0,4,5,7,8,9,10,12,13,14],fals:[1,3,4,5,6,7,8,9,10,13,14],webhook:[1,12,4],mailing_status:9,trigger_id:14,webview_share_click:5,affect:[7,8],member_add:[12,4],create_mail:9,new_boolean:10,foo:0,level:1,group_delet:[12,4],list:[0,1,2,4,5,7,8,9,10,11,12,13,14],upload:8,iter:2,"try":8,item:2,plaintext_onli:[9,14],div:[4,5,7,8,9,10,13,14],survey_id:14,setup:1,pleas:[1,8,11,9],prevent:2,work:[1,4],ten:0,sync:10,sign:[0,5,4],past:1,second:[0,7,14],field_creat:[12,4],further:1,shortcut_nam:10,click:[0,4,5,7,8,12,14],append:2,even:10,what:1,hide:[4,5,7,8,9,10,13,14],appear:[1,8],from_group_id:13,section:1,current:[1,8,12,9],delet:[1,4,7,8,9,10,12,13,14],"new":[1,4,5,7,8,9,10,11,13,14],net:[1,2,6,3],delivery_t:8,method:[5,8,13,4,9],can:[0,1,2,4,5,7,8,9,11,12,13],widget:[7,10,8,9,13],full:1,hash:0,datematch:0,displai:10,variat:9,gener:[0,8,12,14],onli:[5,8],here:[0,1,3,5,6,8],bodi:9,let:[1,4,10],address:[0,1,8,6,9],along:8,sinc:8,valu:[0,5,7,8,10,11],field_upd:[12,4],search:[0,1,8,9,7],survei:14,sender:[9,14],larger:2,queue:5,prior:9,action:[0,8],chang:[8,4],campaign:5,newbi:5,appli:[7,14],prefer:0,young:1,myemma:[4,5,7,8,9,13],filenam:8,customer_shar:5,"boolean":[0,1,5,7,8,9,10,13,14],curlopt_postfield:[1,3],total:5,jone:[7,5,8,13],select:[1,10],newslett:[7,8,13],describ:7,would:[0,1],commun:1,regist:4,two:[0,5],coverag:1,next:[0,1],create_webhook:4,few:[5,8],call:[1,2,3,4,6,8,12],criteria:7,member_add_to_group:[12,4],type:[1,3,4,5,6,7,10,9,14],until:2,more:[0,4,7,8,9,13],peopl:5,relat:[1,8,11,9],about:[10,8,12,4,9],notic:8,thide:[4,5,7,8,9,10,13,14],flag:[5,7,8,10,9,14],exce:2,indic:8,examin:1,particular:[1,4,5,8,10,12,9],in_progress:5,origin:9,must:[0,7,13,10],none:9,endpoint:[1,4,5,7,8,9,10,13,14],join:[0,7],hour:0,der:1,member_sinc:[0,5,7,8,9,13],uniqu:5,histori:8,soup:7,remain:[0,9],archiv:[5,9],member_optout:[12,4],drill:5,control:[1,11,9],quickstart:1,give:5,forward_mailing_id:5,email_domain:[0,5],share:[0,5,8,12,4],accept:[0,5,7,8,9,10,11,13,14],total_click:5,tag:[11,9],want:[1,12,13,5],occur:[7,12],some_numeric_field:0,delai:14,alwai:0,webhook_event_id:4,cours:1,multipl:[10,8],first_nam:[1,3,5,7,8,9,10,11,13,14],started_or_finish:[9,14],anoth:[9,13],get:[1,4,5,6,7,8,9,10,13,14],message_open:[12,4],html_bodi:[9,14],share_statu:5,push_offset:14,del_statu:5,tild:5,num_members_upd:8,simpl:0,chri:9,pizza:[7,8],map:0,autent:1,referenc:7,xxxx:6,sundai:0,jacqu:1,membership:13,taco:[7,5,8,9,13],mai:12,end:[2,8],associ:[1,8,9,4,5],grow:1,welcom:11,add_onli:8,"short":0,json_encod:[1,3],optout:[5,8,12,13],num_dupl:8,favorit:10,correspond:[0,1],greet:11,predic:[0,1],issu:[1,10],"12t11":[7,5,8,9,13],combin:7,allow:[0,7,8],some_zipcode_field:0,signed_up:5,order:[5,10],michel:[8,9],mailing_nam:5,checkbox:10,fields_upd:8,over:2,soon:1,buyer:[7,8,9,13],comma:[9,13],is_dis:14,vari:8,paramet:[2,4,5,7,8,9,10,13,14],widget_typ:10,style:[0,4,5,7,8,9,10,13,14],group:[0,1,3,4,7,8,9,12,13,14],curl_setopt:[1,6,3],how:[7,1,2,4],fix:1,import_start:8,better:[13,14],platform:1,pend:[1,9],mailing_list:9,onc:9,mail:[0,1,4,5,8,11,12,9,14],hidden:13,main:1,might:[1,4],link_nam:[5,9],them:[8,9],messag:[4,5,8,12,11,9,14],"return":[0,1,4,5,7,8,9,10,12,13,14],greater:[0,8],thei:[0,9],food:10,timestamp:[0,5,12,9,10],spell:4,nashvil:1,dai:0,auth:1,framework:1,instead:[12,2,8],now:5,down:5,term:[0,1],alex:9,name:[0,4,5,7,8,9,10,11,13,14],edit:[7,1,14,10],curl_getinfo:[1,6,3],authent:[1,6,4,3],successufulli:4,separ:[1,9,13],each:[1,2,5,9,12,11,13],found:[8,9,4,14],updat:[4,7,8,9,10,12,13,14],denni:1,status:[8,9],domain:0,weight:[4,5,7,8,9,10,13,14],resum:9,individu:[5,8],hard:[0,5],last_nam:[1,3,5,7,8,9,10,11,13,14],"05t15":5,birthdai:[10,14],connect:[1,6,3],doug:1,our:[1,11,12,4,14],happen:[1,4,5],"22t15":[7,14],commiss:1,short_display_nam:10,special:[0,7,8,13],out:[0,1,4,5,7,8,10,13],variabl:[1,6,3],message_shar:[12,4],network:[5,12],private_api_kei:[1,6,3],check_multipl:10,categori:1,rel:0,print:6,correct:10,integr:1,benjamin:[1,8],qualifi:11,insid:1,advanc:0,contain:[0,5,7,13,10,9],given:[0,8,9,4],standard:[5,9],status_from:8,base:[5,8],recipient_search:9,dictionari:8,put:[4,7,8,9,10,13,14],span:[4,5,7,8,9,10,13,14],"13t23":[7,5,8],refer:[5,7,8,13,10,9],visit:11,could:1,omit:5,success:[1,3,7,8,9,13],filter:[0,1,7],search_id:7,pagin:[1,2],member_id:[5,7,8,9,12,13],summari:[1,5],assign:9,first:[0,1,10,5],oper:[0,1,7,14],rang:5,notifi:12,directli:0,curlopt_ssl_verifyp:[1,6,3],curl_init:[1,6,3],number:[5,2,13,3,10],placehold:[1,11],date:[0,5,8,10,11,14],unlik:9,alreadi:[10,8,9,13],done:8,plaintext_pref:[7,8,9,13],oppos:8,open:[0,3,4,5,6,7,8,12],payload:4,fanci:5,size:2,differ:0,"long":10,script:1,data:[1,3,4,5,10,12],system:[8,12,4,14],wrapper:1,attach:11,easier:12,friend:11,curlinfo_http_cod:[1,6,3],shell:0,option:[0,5,7,8,9,10,13,14],especi:8,signup:[0,1,3,4,5,8,12,14],copi:[8,13],member_upd:[12,4],specifi:[0,2,7,8,10,11,9,14],curl_exec:[1,6,3],curlopt_httphead:[1,6,3],member_signup:[12,4],create_search:7,part:[0,9],enclos:11,than:[0,1,2,3,12,13],with_plaintext:9,"02t10":[5,8],"02t11":[5,8],"02t13":5,nathan:8,whenev:8,provid:[1,5,8,12,9,14],remov:[12,8,13,4],mailing_start:4,rate:2,structur:7,charact:9,greg:8,trackabl:11,were:5,minut:0,danc:1,error_count:[7,8,9,13],pre:[4,5,7,8,9,10,13,14],cleaner:1,sai:0,share_id:5,signup_form_id:[0,8,12,9,14],plaintext:[5,9,14],pass:[1,3],ani:[0,1,2,7,8,9],have:[0,1,5,8,12,9],tabl:5,need:1,seen:5,"null":[7,8,13,10,9,14],kevin:[9,14],signup_mail:0,caus:14,built:1,inform:[1,4,6,8,9,10,13],object_id:14,note:[1,8,9,4],also:[0,4,5,7,8,9,11,13],exampl:[0,1,3,5,6,7,11],take:[0,4],which:[0,1,4,8,10,12,9,14],some_number_field:0,singl:[0,1,3,4,5,8,10,12,13],excit:11,sure:1,delete_memb:13,normal:9,parent_mail:14,recipient_count:[5,9,14],previou:9,field_id:[10,12,14],last_run_at:7,most:14,pair:11,"class":[4,5,7,8,9,10,13,14],don:1,member_group_id:[8,9,13],mcconnel:[9,14],url:[1,3,4,5,6,12],mailing_finish:[12,4],clear:10,request:[1,2,3],doe:[0,5,7,8,9,10,13],member_status_upd:[12,4],declar:9,tech:4,determin:1,dataset:10,dow:0,recipi:9,"6db0cc7e6fdb2da589b65f29d90c96b6":9,show:[4,5,7,8,9,10,11,13,14],text:[10,11,12],radiu:0,syntax:[0,1,11,9],radio:10,font:[4,5,7,8,9,10,13,14],fine:9,find:[1,6,5],status_to:8,toast:[7,5,8,13],access:[1,5],giant:12,just:[0,1,9],pretti:8,column_ord:10,explain:[0,1],winner:9,activ:[1,5,7,8,13,9],figur:1,should:[1,2,3,7,8,11,9],templat:[11,14],share_count:5,count:[1,2,3,5],variou:[8,13],confirmed_opt_in:[7,8,9,13],familiar:1,express:0,account:[1,4,5,7,8,10,13,14],becaus:12,repo:1,cannot:[8,9,4],progress:9,report:[10,8],requir:[1,7,8,10,11,9],object:[1,13,5],favorite_food:[5,7,8,13,10,9],bar:0,organ:1,include_archiv:[5,9],"public":1,"default":[5,11,13,4,9],ref_member_id:5,message_share_click:[12,4],through:[1,8,4],where:[0,1,8,11,7],view:1,user:[0,8,9,13],set:[0,1,2,3,6,8,9,12,13],link_id:[0,5,12,9,14],see:[7,1,8],result:[0,1,2,5,8,9],respons:[0,1,2,4,5,7,8,9,10,13,14],fail:[5,9,4],themselv:2,member_field:[0,7],xxxxx:6,subject:[8,12,9,14],statu:[1,4,5,7,8,9,12,13],fancyonion:11,kei:[0,1,8,11,4],is_schedul:9,message_forward:[12,4],databas:8,someth:1,last_modified_at:[7,8,9,13],addresse:5,written:1,between:[0,7,2],clicked_uniqu:5,"import":[1,8,12,4,10],subscript:[1,3],entiti:1,curlopt_url:[1,6,3],email:[0,1,3,5,6,7,8,9,13],wide:14,extend:1,numer:10,http404:[4,5,7,8,9,10,13,14],job:13,entir:[0,8],share_click:5,to_group_id:13,come:1,curlopt_returntransf:[1,6,3],addit:[0,1,8,9,11,13],member_remove_from_group:[12,4],send_start:[0,9,14],protect:1,accident:2,last:[0,5,10],delimit:5,lentil:7,pertain:5,message_click:[12,4],curlopt_post:[1,3],audienc:[1,8,9],mang:0,improv:1,http500:14,seri:5,com:[4,5,6,7,8,9,11,13],zip_code_field:0,"03t15":[7,5,8,13],point:1,toni:[7,8],overview:[0,1,11,12,5],period:1,winner_id:9,colon:[7,11],optout_count:[7,8,9,13],suppli:9,cancel:9,tuesdai:0,duplic:5,quit:[5,8],user_id:4,recur:14,headsup:9,addition:[1,2],due:5,been:[1,8,10,5],mark:[8,9],whom:9,tshow:[4,5,7,8,9,10,13,14],trigger:[1,4,5,7,8,9,10,12,13,14],unsubscrib:0,treat:8,interest:[10,4],basic:[0,1,4,8,13,14],monthli:[7,8,13],member_delet:[12,4],hesit:1,blob:4,email_us:[0,5],mailing_mailing_id:5,mailing_id:[0,5,8,12,9,14],fire:[8,4,14],xxx:[1,3],rubi:1,argument:[0,5],link_ord:[5,9],input:1,extract:11,present:7,statist:8,"case":[1,8],look:[1,14,10],frozen:9,durat:9,email_error:[7,8,9,13],defin:[0,10,8,9],"while":0,smith:[7,5,8,9,13],outcom:5,abov:[0,1,8,7],error:[1,3,6,8,10,13],veen:1,loop:8,opt:[0,4,5,7,8,13],readi:9,deliv:5,recipient_group:9,equal:0,itself:0,new_statu:12,webhook_id:4,develop:1,recipient_memb:9,perform:8,make:[1,12,6,10],belong:[0,8,4],same:4,check:[8,6,9],member:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14],python:1,html:9,split:9,document:[1,11,12],complet:[1,3,4,6,8,9],week:0,finish:[5,12,4],http:[1,2,3,4,5,6,11,9],href:[4,5,7,8,9,10,13,14],nest:0,someon:4,rais:[4,5,7,8,9,10,13,14],initi:[10,9],php:[1,6,3],studi:1,recent:[1,8],kept:11,center:0,min:5,well:[1,5],inherit:9,person:9,mailing_typ:[9,14],without:[0,1],command:1,thi:[0,1,4,5,7,8,9,10,12,13,14],undefin:0,http_code:[1,6,3],latest:11,construct:[0,7,9],identifi:8,paus:9,execut:[1,3],less:0,resp:[4,5,7,8,9,10,13,14],"_post":[1,3],against:0,aspect:13,recipient_email:9,source_filenam:8,yet:5,languag:1,"12t09":[7,8],display_nam:10,easi:[1,12,10],"01t00":8,had:0,littl:1,blog:4,add:[12,1,8,13,3],other:[1,8,9,3,5],curlopt_userpwd:[1,6,3],import_finish:[8,12,4],schedul:9,els:[1,6,3],save:7,match:[0,7],build:1,sanit:1,applic:[1,6,3],account_id:[1,3,4,5,6,7,8,9,10,12,13,14],handl:1,disposit:1,crud:[8,13,14],print_r:[6,3],mailing_statu:[9,14],know:[1,4,5],background:13,parent_mailing_id:[9,14],bit:1,insert:11,emma:[1,5,7,8,9,12,13],like:1,onion:11,deprec:4,arbitrari:8,manual:9,integ:[1,8,14,10,5],collect:1,api:[1,2,3,6,8,12],either:[0,5,7],bunch:0,output:9,group_id:[1,8,12,3],soft:[0,5],manag:[0,1,13,4],import_id:[8,12],www:[5,9],old:7,deal:[8,13],captur:1,arrai:[0,1,3,5,6,7,8,9,10,12,13,14],some:[1,11,5],field_delet:[12,4],certain:12,intern:10,sampl:[1,4,5,7,8,9,10,13,14],elaps:[2,9],unless:1,deleted_at:[7,8,13,10,9,14],some_string_field:0,librari:11,woodcock:1,emmarubi:1,bounce_count:[7,8,9,13],emmapython:1,public_kei:4,deliveri:5,broad:12,per:5,send_finish:[9,14],larg:[0,2],condit:7,three:9,network_cod:12,localhost:9,emmaphp:1,with_html_bodi:9,who:[0,5,8],bold:[4,5,7,8,9,10,13,14],event_typ:14,inspect:1,usag:[1,8,12],monsewicz:1,num_members_ad:8,fulli:11,from:[1,4,8,9,12,13,14],post:[1,3,4,7,8,9,10,12,13,14],group_creat:[12,4],gladi:[7,5,8,13],hurst:1,actual:5,zip:0,groups_upd:8,column:10,page:2,includ:[1,5,7,8,9,10,13],webview:9,mean:0,disabl:[9,14],block:[1,2],yyyi:5,own:1,member_data:[1,3],glob:0,bounc:[0,5],within:[0,8],encod:[9,4],delivery_typ:[5,8],compos:0,webview_shar:5,field_typ:10,active_count:[7,8,9,13],public_webview_url:9,pivot:5,your:[1,4,5,7,8,9,10,13],websit:11,fast:8,van:1,wai:[1,12],area:1,overus:2,group_nam:[8,12,13,9],support:12,unique_click:5,json:[0,1,3,4,6,7],submit:1,custom:[5,8,11,10],avail:[0,11,4],start:[1,2,8,4],interfac:12,send_at:[9,14],exceed:2,"var":3,interv:[0,14],fork:1,head:[1,6,9,3],form:[1,3,4,6,8,10,14],enough:2,forc:1,forward:[0,4,5,8,12,9],"31st":0,group_typ:[8,9,13],push_offset_unit:14,link:[0,4,5,11,9,14],line:[1,5],realli:1,"true":[0,1,2,3,4,6,7,8,9,10,13,14],archived_t:[9,14],info:4,pull:[1,2],made:1,possibl:[5,8,12],whether:8,maximum:2,tell:12,http403:9,record:[0,7,8],below:[0,1,8,12],http400:[7,8,9],limit:[5,2,8,9],some_array_field:0,otherwis:[1,8,10],start_t:14,mta:5,expect:1,notif:9,creat:[4,5,7,9,10,12,13,14],"int":5,retriev:[7,1,2,8,9],year:[0,5,9,14],repres:5,exist:[0,4,5,7,8,10,13],behavior:11,bob:[7,5],curl:[1,6],portland:1,probabl:14,echo:[1,3],successfulli:[5,8,9],mailing_subject:12,grp:13,todo:11,when:[8,12,4,9],detail:[1,4,7,8,9,10,13],invalid:[7,8,9],event:[4,7,8,13,12,9,14],field:[0,1,3,4,5,7,8,9,10,11,12,13,14],valid:[5,8,9,13],futur:1,num_skip:8,test:[5,6,7,13,9,14],ignor:8,you:[0,1,2,4,5,7,8,9,10,11,12,13],emmasdk:1,member_status_id:[7,5,8,9,13],public_api_kei:[1,6,3],stat:[5,9],claus:[0,7],event_nam:[12,4],e2ma:[1,2,6,3],error_messag:8,param:[9,4],app_messag:[1,3],ella:8,bulk:[1,8],receiv:[0,2,5,8,12,9],heads_up_email:9,longer:9,home:11,confirm:8,descript:[4,14],ohmyemma:1,portion:0,opted_out:5,time:[1,2,8,13,5],reply_to:[9,14],resource_url:12,hello:[11,9,14]},objtypes:{"0":"http:get","1":"http:put","2":"http:post","3":"http:delete"},titles:["Search Syntax","Emma API","Pagination","PHP Signup Example","Webhooks","Response","PHP Get Member By Email Example","Searches","Members","Mailings","Fields","Placeholder Syntax","Webhook Usage","Groups","Triggers"],objnames:{"0":["http","get","HTTP get"],"1":["http","put","HTTP put"],"2":["http","post","HTTP post"],"3":["http","delete","HTTP delete"]},filenames:["member_search","index","pagination","php_signup_example","api/external/webhooks","api/external/response","php_get_member_example","api/external/searches","api/external/members","api/external/mailings","api/external/fields","placeholders","webhooks","api/external/groups","api/external/triggers"]}) \ No newline at end of file diff --git a/webhooks.html b/webhooks.html index 60db123..ca56180 100644 --- a/webhooks.html +++ b/webhooks.html @@ -507,7 +507,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on May 14, 2013 at 04:50 PM. + Last updated on May 22, 2013 at 03:11 PM. </div> </body> </html> \ No newline at end of file From 14e3fe6762d88173687818ae8a6725096de0a8ec Mon Sep 17 00:00:00 2001 From: Sofia Karagadayeva <sofia@3442232.local> Date: Wed, 29 May 2013 16:18:53 -0500 Subject: [PATCH 044/219] Update audience documentation. --- api/external/fields.html | 2 +- api/external/groups.html | 2 +- api/external/mailings.html | 2 +- api/external/members.html | 2 +- api/external/response.html | 2 +- api/external/searches.html | 4 ++-- api/external/triggers.html | 8 ++++---- api/external/webhooks.html | 2 +- genindex.html | 2 +- http-routingtable.html | 2 +- index.html | 2 +- member_search.html | 2 +- pagination.html | 2 +- php_get_member_example.html | 2 +- php_signup_example.html | 2 +- placeholders.html | 2 +- search.html | 2 +- searchindex.js | 2 +- webhooks.html | 2 +- 19 files changed, 23 insertions(+), 23 deletions(-) diff --git a/api/external/fields.html b/api/external/fields.html index 27ad4fe..0957778 100644 --- a/api/external/fields.html +++ b/api/external/fields.html @@ -415,7 +415,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on May 22, 2013 at 03:11 PM. + Last updated on May 29, 2013 at 04:18 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/groups.html b/api/external/groups.html index 95e9f47..07e3c33 100644 --- a/api/external/groups.html +++ b/api/external/groups.html @@ -702,7 +702,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on May 22, 2013 at 03:11 PM. + Last updated on May 29, 2013 at 04:18 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/mailings.html b/api/external/mailings.html index 957b72c..e935fa6 100644 --- a/api/external/mailings.html +++ b/api/external/mailings.html @@ -810,7 +810,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on May 22, 2013 at 03:11 PM. + Last updated on May 29, 2013 at 04:18 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/members.html b/api/external/members.html index 00c2f0d..c33d159 100644 --- a/api/external/members.html +++ b/api/external/members.html @@ -1217,7 +1217,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on May 22, 2013 at 03:11 PM. + Last updated on May 29, 2013 at 04:18 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/response.html b/api/external/response.html index 49ef853..92f9f1a 100644 --- a/api/external/response.html +++ b/api/external/response.html @@ -1019,7 +1019,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on May 22, 2013 at 03:11 PM. + Last updated on May 29, 2013 at 04:18 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/searches.html b/api/external/searches.html index b17fd6f..c28117b 100644 --- a/api/external/searches.html +++ b/api/external/searches.html @@ -199,7 +199,7 @@ <h1>Searches<a class="headerlink" href="#searches" title="Permalink to this head "name": "Test Search", "criteria": "[\"or\", [\"group\", \"eq\", \"Monthly Newsletter\"],[\"group\", \"eq\", \"Widget Buyers\"]]", "deleted_at": null, - "last_run_at": "@D:2013-05-22T15:11:29", + "last_run_at": "@D:2013-05-29T16:18:48", "active_count": 2, "account_id": 100 } @@ -511,7 +511,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on May 22, 2013 at 03:11 PM. + Last updated on May 29, 2013 at 04:18 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/triggers.html b/api/external/triggers.html index e18fb79..d18c28a 100644 --- a/api/external/triggers.html +++ b/api/external/triggers.html @@ -148,7 +148,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": 203, "push_offset_units": "0:-14:0:0", - "start_ts": "@D:2013-05-22T15:11:26", + "start_ts": "@D:2013-05-29T16:18:45", "trigger_id": 100, "signups": null, "push_offset": "@I:-1209600.0", @@ -189,7 +189,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": null, "push_offset_units": "0:3:0:0", - "start_ts": "@D:2013-05-22T15:11:26", + "start_ts": "@D:2013-05-29T16:18:45", "trigger_id": 101, "signups": [ 1, @@ -326,7 +326,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": 203, "push_offset_units": "0:-14:0:0", - "start_ts": "@D:2013-05-22T15:11:26", + "start_ts": "@D:2013-05-29T16:18:45", "trigger_id": 100, "signups": null, "push_offset": "@I:-1209600.0", @@ -499,7 +499,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on May 22, 2013 at 03:11 PM. + Last updated on May 29, 2013 at 04:18 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/webhooks.html b/api/external/webhooks.html index 4a79555..14b8bc8 100644 --- a/api/external/webhooks.html +++ b/api/external/webhooks.html @@ -487,7 +487,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on May 22, 2013 at 03:11 PM. + Last updated on May 29, 2013 at 04:18 PM. </div> </body> </html> \ No newline at end of file diff --git a/genindex.html b/genindex.html index eb887a2..2363bac 100644 --- a/genindex.html +++ b/genindex.html @@ -146,7 +146,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on May 22, 2013 at 03:11 PM. + Last updated on May 29, 2013 at 04:18 PM. </div> </body> </html> \ No newline at end of file diff --git a/http-routingtable.html b/http-routingtable.html index 0968602..bad7d85 100644 --- a/http-routingtable.html +++ b/http-routingtable.html @@ -607,7 +607,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on May 22, 2013 at 03:11 PM. + Last updated on May 29, 2013 at 04:18 PM. </div> </body> </html> \ No newline at end of file diff --git a/index.html b/index.html index eb6a8b4..59f7a8b 100644 --- a/index.html +++ b/index.html @@ -344,7 +344,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on May 22, 2013 at 03:11 PM. + Last updated on May 29, 2013 at 04:18 PM. </div> </body> </html> \ No newline at end of file diff --git a/member_search.html b/member_search.html index 9d6ea65..b5f41de 100644 --- a/member_search.html +++ b/member_search.html @@ -256,7 +256,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on May 22, 2013 at 03:11 PM. + Last updated on May 29, 2013 at 04:18 PM. </div> </body> </html> \ No newline at end of file diff --git a/pagination.html b/pagination.html index 6862f24..082957e 100644 --- a/pagination.html +++ b/pagination.html @@ -168,7 +168,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on May 22, 2013 at 03:11 PM. + Last updated on May 29, 2013 at 04:18 PM. </div> </body> </html> \ No newline at end of file diff --git a/php_get_member_example.html b/php_get_member_example.html index 9295e64..fdb293a 100644 --- a/php_get_member_example.html +++ b/php_get_member_example.html @@ -183,7 +183,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on May 22, 2013 at 03:11 PM. + Last updated on May 29, 2013 at 04:18 PM. </div> </body> </html> \ No newline at end of file diff --git a/php_signup_example.html b/php_signup_example.html index 0f152eb..2414c80 100644 --- a/php_signup_example.html +++ b/php_signup_example.html @@ -205,7 +205,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on May 22, 2013 at 03:11 PM. + Last updated on May 29, 2013 at 04:18 PM. </div> </body> </html> \ No newline at end of file diff --git a/placeholders.html b/placeholders.html index f54ef8a..e414fb1 100644 --- a/placeholders.html +++ b/placeholders.html @@ -183,7 +183,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on May 22, 2013 at 03:11 PM. + Last updated on May 29, 2013 at 04:18 PM. </div> </body> </html> \ No newline at end of file diff --git a/search.html b/search.html index 4918bc8..5606418 100644 --- a/search.html +++ b/search.html @@ -153,7 +153,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on May 22, 2013 at 03:11 PM. + Last updated on May 29, 2013 at 04:18 PM. </div> </body> </html> \ No newline at end of file diff --git a/searchindex.js b/searchindex.js index fc7c62e..9063c49 100644 --- a/searchindex.js +++ b/searchindex.js @@ -1 +1 @@ -Search.setIndex({objects:{"":{"/#account_id/members/#member_id/groups/remove":[8,1,1,"put--#account_id-members-#member_id-groups-remove"],"/#account_id/mailings/#mailing_id/winner/#winner_id":[9,2,1,"post--#account_id-mailings-#mailing_id-winner-#winner_id"],"/#account_id/response/#mailing_id/in_progress":[5,0,1,"get--#account_id-response-#mailing_id-in_progress"],"/#account_id/members/groups/remove":[8,1,1,"put--#account_id-members-groups-remove"],"/#account_id/mailings/#mailing_id/searches":[9,0,1,"get--#account_id-mailings-#mailing_id-searches"],"/#account_id/fields":[10,2,1,"post--#account_id-fields"],"/#account_id/members/#group_id/copy":[8,1,1,"put--#account_id-members-#group_id-copy"],"/#account_id/members/status":[8,1,1,"put--#account_id-members-status"],"/#account_id/response/#mailing_id/shares/overview":[5,0,1,"get--#account_id-response-#mailing_id-shares-overview"],"/#account_id/webhooks/events":[4,0,1,"get--#account_id-webhooks-events"],"/#account_id/members/#member_id/optout":[8,0,1,"get--#account_id-members-#member_id-optout"],"/#account_id/webhooks":[4,3,1,"delete--#account_id-webhooks"],"/#account_id/fields/#field_id":[10,3,1,"delete--#account_id-fields-#field_id"],"/#account_id/response/#mailing_id":[5,0,1,"get--#account_id-response-#mailing_id"],"/#account_id/groups/#member_group_id/members/remove":[13,3,1,"delete--#account_id-groups-#member_group_id-members-remove"],"/#account_id/searches":[7,2,1,"post--#account_id-searches"],"/#account_id/members/imports":[8,0,1,"get--#account_id-members-imports"],"/#account_id/forwards/#mailing_id/#member_id":[9,2,1,"post--#account_id-forwards-#mailing_id-#member_id"],"/#account_id/response/#mailing_id/customer_share_clicks":[5,0,1,"get--#account_id-response-#mailing_id-customer_share_clicks"],"/#account_id/mailings/#mailing_id/messages/#member_id":[9,0,1,"get--#account_id-mailings-#mailing_id-messages-#member_id"],"/#account_id/members/#member_id/mailings":[8,0,1,"get--#account_id-members-#member_id-mailings"],"/#account_id/groups/#from_group_id/#to_group_id/members/copy":[13,1,1,"put--#account_id-groups-#from_group_id-#to_group_id-members-copy"],"/#account_id/triggers":[14,2,1,"post--#account_id-triggers"],"/#account_id/triggers/#trigger_id":[14,3,1,"delete--#account_id-triggers-#trigger_id"],"/#account_id/members/delete":[8,1,1,"put--#account_id-members-delete"],"/#account_id/mailings/#mailing_id/groups":[9,0,1,"get--#account_id-mailings-#mailing_id-groups"],"/#account_id/response/#mailing_id/forwards":[5,0,1,"get--#account_id-response-#mailing_id-forwards"],"/#account_id/members/#member_id":[8,3,1,"delete--#account_id-members-#member_id"],"/#account_id/triggers/#trigger_id/mailings":[14,0,1,"get--#account_id-triggers-#trigger_id-mailings"],"/#account_id/searches/#search_id/members":[7,0,1,"get--#account_id-searches-#search_id-members"],"/#account_id/members/status/:status_from/to/:status_to":[8,1,1,"put--#account_id-members-status--status_from-to--status_to"],"/#account_id/response/#mailing_id/sends":[5,0,1,"get--#account_id-response-#mailing_id-sends"],"/#account_id/members":[8,3,1,"delete--#account_id-members"],"/#account_id/members/email/:email":[8,0,1,"get--#account_id-members-email--email"],"/#account_id/response/#mailing_id/links":[5,0,1,"get--#account_id-response-#mailing_id-links"],"/#account_id/searches/#search_id":[7,3,1,"delete--#account_id-searches-#search_id"],"/#account_id/members/imports/#import_id/members":[8,0,1,"get--#account_id-members-imports-#import_id-members"],"/#account_id/fields/#field_id/clear":[10,2,1,"post--#account_id-fields-#field_id-clear"],"/#account_id/groups/#member_group_id/members":[13,3,1,"delete--#account_id-groups-#member_group_id-members"],"/#account_id/members/imports/#import_id":[8,0,1,"get--#account_id-members-imports-#import_id"],"/#account_id/response":[5,0,1,"get--#account_id-response"],"/#account_id/response/#mailing_id/opens":[5,0,1,"get--#account_id-response-#mailing_id-opens"],"/#account_id/members/imports/delete":[8,3,1,"delete--#account_id-members-imports-delete"],"/#account_id/mailings":[9,0,1,"get--#account_id-mailings"],"/#account_id/mailings/cancel/#mailing_id":[9,3,1,"delete--#account_id-mailings-cancel-#mailing_id"],"/#account_id/mailings/validate":[9,2,1,"post--#account_id-mailings-validate"],"/#account_id/response/#mailing_id/deliveries":[5,0,1,"get--#account_id-response-#mailing_id-deliveries"],"/#account_id/mailings/#mailing_id/members":[9,0,1,"get--#account_id-mailings-#mailing_id-members"],"/#account_id/response/#share_id/customer_share":[5,0,1,"get--#account_id-response-#share_id-customer_share"],"/#account_id/webhooks/#webhook_id":[4,3,1,"delete--#account_id-webhooks-#webhook_id"],"/#account_id/members/add":[8,2,1,"post--#account_id-members-add"],"/#account_id/members/email/optout/:email":[8,1,1,"put--#account_id-members-email-optout--email"],"/#account_id/response/#mailing_id/optouts":[5,0,1,"get--#account_id-response-#mailing_id-optouts"],"/#account_id/response/#mailing_id/shares":[5,0,1,"get--#account_id-response-#mailing_id-shares"],"/#account_id/groups/#member_group_id":[13,3,1,"delete--#account_id-groups-#member_group_id"],"/#account_id/mailings/#mailing_id":[9,3,1,"delete--#account_id-mailings-#mailing_id"],"/#account_id/members/#member_id/groups":[8,3,1,"delete--#account_id-members-#member_id-groups"],"/#account_id/groups":[13,2,1,"post--#account_id-groups"],"/#account_id/response/#mailing_id/clicks":[5,0,1,"get--#account_id-response-#mailing_id-clicks"],"/#account_id/mailings/#mailing_id/headsup":[9,0,1,"get--#account_id-mailings-#mailing_id-headsup"],"/#account_id/response/#mailing_id/signups":[5,0,1,"get--#account_id-response-#mailing_id-signups"],"/#account_id/response/#mailing_id/customer_shares":[5,0,1,"get--#account_id-response-#mailing_id-customer_shares"]}},terms:{all:[0,1,4,5,8,9,10,11,12,13,14],code:[0,1,6,3],change_typ:8,queri:[0,2,4],month:[0,5,9,14],four:[0,5],mile:0,least:0,follow:[0,1,4,5,7,9,11,13],link_target:[5,9],content:[1,11,6,9,3],privat:1,specif:[8,9,4],friendli:5,send:[1,9,4,3,5],program:1,customer_share_click:5,those:[1,12,5],group_upd:[12,4],sent:[5,8,12,9,14],curl_clos:[1,6,3],brown:[7,8],digit:5,everi:0,string:[0,4,5,7,8,9,10,12,13,14],fals:[1,3,4,5,6,7,8,9,10,13,14],webhook:[1,12,4],mailing_status:9,trigger_id:14,webview_share_click:5,affect:[7,8],member_add:[12,4],create_mail:9,new_boolean:10,foo:0,level:1,group_delet:[12,4],list:[0,1,2,4,5,7,8,9,10,11,12,13,14],upload:8,iter:2,"try":8,item:2,plaintext_onli:[9,14],div:[4,5,7,8,9,10,13,14],survey_id:14,setup:1,pleas:[1,8,11,9],prevent:2,work:[1,4],ten:0,sync:10,sign:[0,5,4],past:1,second:[0,7,14],field_creat:[12,4],further:1,shortcut_nam:10,click:[0,4,5,7,8,12,14],append:2,even:10,what:1,hide:[4,5,7,8,9,10,13,14],appear:[1,8],from_group_id:13,section:1,current:[1,8,12,9],delet:[1,4,7,8,9,10,12,13,14],"new":[1,4,5,7,8,9,10,11,13,14],net:[1,2,6,3],delivery_t:8,method:[5,8,13,4,9],can:[0,1,2,4,5,7,8,9,11,12,13],widget:[7,10,8,9,13],full:1,hash:0,datematch:0,displai:10,variat:9,gener:[0,8,12,14],onli:[5,8],here:[0,1,3,5,6,8],bodi:9,let:[1,4,10],address:[0,1,8,6,9],along:8,sinc:8,valu:[0,5,7,8,10,11],field_upd:[12,4],search:[0,1,8,9,7],survei:14,sender:[9,14],larger:2,queue:5,prior:9,action:[0,8],chang:[8,4],campaign:5,newbi:5,appli:[7,14],prefer:0,young:1,myemma:[4,5,7,8,9,13],filenam:8,customer_shar:5,"boolean":[0,1,5,7,8,9,10,13,14],curlopt_postfield:[1,3],total:5,jone:[7,5,8,13],select:[1,10],newslett:[7,8,13],describ:7,would:[0,1],commun:1,regist:4,two:[0,5],coverag:1,next:[0,1],create_webhook:4,few:[5,8],call:[1,2,3,4,6,8,12],criteria:7,member_add_to_group:[12,4],type:[1,3,4,5,6,7,10,9,14],until:2,more:[0,4,7,8,9,13],peopl:5,relat:[1,8,11,9],about:[10,8,12,4,9],notic:8,thide:[4,5,7,8,9,10,13,14],flag:[5,7,8,10,9,14],exce:2,indic:8,examin:1,particular:[1,4,5,8,10,12,9],in_progress:5,origin:9,must:[0,7,13,10],none:9,endpoint:[1,4,5,7,8,9,10,13,14],join:[0,7],hour:0,der:1,member_sinc:[0,5,7,8,9,13],uniqu:5,histori:8,soup:7,remain:[0,9],archiv:[5,9],member_optout:[12,4],drill:5,control:[1,11,9],quickstart:1,give:5,forward_mailing_id:5,email_domain:[0,5],share:[0,5,8,12,4],accept:[0,5,7,8,9,10,11,13,14],total_click:5,tag:[11,9],want:[1,12,13,5],occur:[7,12],some_numeric_field:0,delai:14,alwai:0,webhook_event_id:4,cours:1,multipl:[10,8],first_nam:[1,3,5,7,8,9,10,11,13,14],started_or_finish:[9,14],anoth:[9,13],get:[1,4,5,6,7,8,9,10,13,14],message_open:[12,4],html_bodi:[9,14],share_statu:5,push_offset:14,del_statu:5,tild:5,num_members_upd:8,simpl:0,chri:9,pizza:[7,8],map:0,autent:1,referenc:7,xxxx:6,sundai:0,jacqu:1,membership:13,taco:[7,5,8,9,13],mai:12,end:[2,8],associ:[1,8,9,4,5],grow:1,welcom:11,add_onli:8,"short":0,json_encod:[1,3],optout:[5,8,12,13],num_dupl:8,favorit:10,correspond:[0,1],greet:11,predic:[0,1],issu:[1,10],"12t11":[7,5,8,9,13],combin:7,allow:[0,7,8],some_zipcode_field:0,signed_up:5,order:[5,10],michel:[8,9],mailing_nam:5,checkbox:10,fields_upd:8,over:2,soon:1,buyer:[7,8,9,13],comma:[9,13],is_dis:14,vari:8,paramet:[2,4,5,7,8,9,10,13,14],widget_typ:10,style:[0,4,5,7,8,9,10,13,14],group:[0,1,3,4,7,8,9,12,13,14],curl_setopt:[1,6,3],how:[7,1,2,4],fix:1,import_start:8,better:[13,14],platform:1,pend:[1,9],mailing_list:9,onc:9,mail:[0,1,4,5,8,11,12,9,14],hidden:13,main:1,might:[1,4],link_nam:[5,9],them:[8,9],messag:[4,5,8,12,11,9,14],"return":[0,1,4,5,7,8,9,10,12,13,14],greater:[0,8],thei:[0,9],food:10,timestamp:[0,5,12,9,10],spell:4,nashvil:1,dai:0,auth:1,framework:1,instead:[12,2,8],now:5,down:5,term:[0,1],alex:9,name:[0,4,5,7,8,9,10,11,13,14],edit:[7,1,14,10],curl_getinfo:[1,6,3],authent:[1,6,4,3],successufulli:4,separ:[1,9,13],each:[1,2,5,9,12,11,13],found:[8,9,4,14],updat:[4,7,8,9,10,12,13,14],denni:1,status:[8,9],domain:0,weight:[4,5,7,8,9,10,13,14],resum:9,individu:[5,8],hard:[0,5],last_nam:[1,3,5,7,8,9,10,11,13,14],"05t15":5,birthdai:[10,14],connect:[1,6,3],doug:1,our:[1,11,12,4,14],happen:[1,4,5],"22t15":[7,14],commiss:1,short_display_nam:10,special:[0,7,8,13],out:[0,1,4,5,7,8,10,13],variabl:[1,6,3],message_shar:[12,4],network:[5,12],private_api_kei:[1,6,3],check_multipl:10,categori:1,rel:0,print:6,correct:10,integr:1,benjamin:[1,8],qualifi:11,insid:1,advanc:0,contain:[0,5,7,13,10,9],given:[0,8,9,4],standard:[5,9],status_from:8,base:[5,8],recipient_search:9,dictionari:8,put:[4,7,8,9,10,13,14],span:[4,5,7,8,9,10,13,14],"13t23":[7,5,8],refer:[5,7,8,13,10,9],visit:11,could:1,omit:5,success:[1,3,7,8,9,13],filter:[0,1,7],search_id:7,pagin:[1,2],member_id:[5,7,8,9,12,13],summari:[1,5],assign:9,first:[0,1,10,5],oper:[0,1,7,14],rang:5,notifi:12,directli:0,curlopt_ssl_verifyp:[1,6,3],curl_init:[1,6,3],number:[5,2,13,3,10],placehold:[1,11],date:[0,5,8,10,11,14],unlik:9,alreadi:[10,8,9,13],done:8,plaintext_pref:[7,8,9,13],oppos:8,open:[0,3,4,5,6,7,8,12],payload:4,fanci:5,size:2,differ:0,"long":10,script:1,data:[1,3,4,5,10,12],system:[8,12,4,14],wrapper:1,attach:11,easier:12,friend:11,curlinfo_http_cod:[1,6,3],shell:0,option:[0,5,7,8,9,10,13,14],especi:8,signup:[0,1,3,4,5,8,12,14],copi:[8,13],member_upd:[12,4],specifi:[0,2,7,8,10,11,9,14],curl_exec:[1,6,3],curlopt_httphead:[1,6,3],member_signup:[12,4],create_search:7,part:[0,9],enclos:11,than:[0,1,2,3,12,13],with_plaintext:9,"02t10":[5,8],"02t11":[5,8],"02t13":5,nathan:8,whenev:8,provid:[1,5,8,12,9,14],remov:[12,8,13,4],mailing_start:4,rate:2,structur:7,charact:9,greg:8,trackabl:11,were:5,minut:0,danc:1,error_count:[7,8,9,13],pre:[4,5,7,8,9,10,13,14],cleaner:1,sai:0,share_id:5,signup_form_id:[0,8,12,9,14],plaintext:[5,9,14],pass:[1,3],ani:[0,1,2,7,8,9],have:[0,1,5,8,12,9],tabl:5,need:1,seen:5,"null":[7,8,13,10,9,14],kevin:[9,14],signup_mail:0,caus:14,built:1,inform:[1,4,6,8,9,10,13],object_id:14,note:[1,8,9,4],also:[0,4,5,7,8,9,11,13],exampl:[0,1,3,5,6,7,11],take:[0,4],which:[0,1,4,8,10,12,9,14],some_number_field:0,singl:[0,1,3,4,5,8,10,12,13],excit:11,sure:1,delete_memb:13,normal:9,parent_mail:14,recipient_count:[5,9,14],previou:9,field_id:[10,12,14],last_run_at:7,most:14,pair:11,"class":[4,5,7,8,9,10,13,14],don:1,member_group_id:[8,9,13],mcconnel:[9,14],url:[1,3,4,5,6,12],mailing_finish:[12,4],clear:10,request:[1,2,3],doe:[0,5,7,8,9,10,13],member_status_upd:[12,4],declar:9,tech:4,determin:1,dataset:10,dow:0,recipi:9,"6db0cc7e6fdb2da589b65f29d90c96b6":9,show:[4,5,7,8,9,10,11,13,14],text:[10,11,12],radiu:0,syntax:[0,1,11,9],radio:10,font:[4,5,7,8,9,10,13,14],fine:9,find:[1,6,5],status_to:8,toast:[7,5,8,13],access:[1,5],giant:12,just:[0,1,9],pretti:8,column_ord:10,explain:[0,1],winner:9,activ:[1,5,7,8,13,9],figur:1,should:[1,2,3,7,8,11,9],templat:[11,14],share_count:5,count:[1,2,3,5],variou:[8,13],confirmed_opt_in:[7,8,9,13],familiar:1,express:0,account:[1,4,5,7,8,10,13,14],becaus:12,repo:1,cannot:[8,9,4],progress:9,report:[10,8],requir:[1,7,8,10,11,9],object:[1,13,5],favorite_food:[5,7,8,13,10,9],bar:0,organ:1,include_archiv:[5,9],"public":1,"default":[5,11,13,4,9],ref_member_id:5,message_share_click:[12,4],through:[1,8,4],where:[0,1,8,11,7],view:1,user:[0,8,9,13],set:[0,1,2,3,6,8,9,12,13],link_id:[0,5,12,9,14],see:[7,1,8],result:[0,1,2,5,8,9],respons:[0,1,2,4,5,7,8,9,10,13,14],fail:[5,9,4],themselv:2,member_field:[0,7],xxxxx:6,subject:[8,12,9,14],statu:[1,4,5,7,8,9,12,13],fancyonion:11,kei:[0,1,8,11,4],is_schedul:9,message_forward:[12,4],databas:8,someth:1,last_modified_at:[7,8,9,13],addresse:5,written:1,between:[0,7,2],clicked_uniqu:5,"import":[1,8,12,4,10],subscript:[1,3],entiti:1,curlopt_url:[1,6,3],email:[0,1,3,5,6,7,8,9,13],wide:14,extend:1,numer:10,http404:[4,5,7,8,9,10,13,14],job:13,entir:[0,8],share_click:5,to_group_id:13,come:1,curlopt_returntransf:[1,6,3],addit:[0,1,8,9,11,13],member_remove_from_group:[12,4],send_start:[0,9,14],protect:1,accident:2,last:[0,5,10],delimit:5,lentil:7,pertain:5,message_click:[12,4],curlopt_post:[1,3],audienc:[1,8,9],mang:0,improv:1,http500:14,seri:5,com:[4,5,6,7,8,9,11,13],zip_code_field:0,"03t15":[7,5,8,13],point:1,toni:[7,8],overview:[0,1,11,12,5],period:1,winner_id:9,colon:[7,11],optout_count:[7,8,9,13],suppli:9,cancel:9,tuesdai:0,duplic:5,quit:[5,8],user_id:4,recur:14,headsup:9,addition:[1,2],due:5,been:[1,8,10,5],mark:[8,9],whom:9,tshow:[4,5,7,8,9,10,13,14],trigger:[1,4,5,7,8,9,10,12,13,14],unsubscrib:0,treat:8,interest:[10,4],basic:[0,1,4,8,13,14],monthli:[7,8,13],member_delet:[12,4],hesit:1,blob:4,email_us:[0,5],mailing_mailing_id:5,mailing_id:[0,5,8,12,9,14],fire:[8,4,14],xxx:[1,3],rubi:1,argument:[0,5],link_ord:[5,9],input:1,extract:11,present:7,statist:8,"case":[1,8],look:[1,14,10],frozen:9,durat:9,email_error:[7,8,9,13],defin:[0,10,8,9],"while":0,smith:[7,5,8,9,13],outcom:5,abov:[0,1,8,7],error:[1,3,6,8,10,13],veen:1,loop:8,opt:[0,4,5,7,8,13],readi:9,deliv:5,recipient_group:9,equal:0,itself:0,new_statu:12,webhook_id:4,develop:1,recipient_memb:9,perform:8,make:[1,12,6,10],belong:[0,8,4],same:4,check:[8,6,9],member:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14],python:1,html:9,split:9,document:[1,11,12],complet:[1,3,4,6,8,9],week:0,finish:[5,12,4],http:[1,2,3,4,5,6,11,9],href:[4,5,7,8,9,10,13,14],nest:0,someon:4,rais:[4,5,7,8,9,10,13,14],initi:[10,9],php:[1,6,3],studi:1,recent:[1,8],kept:11,center:0,min:5,well:[1,5],inherit:9,person:9,mailing_typ:[9,14],without:[0,1],command:1,thi:[0,1,4,5,7,8,9,10,12,13,14],undefin:0,http_code:[1,6,3],latest:11,construct:[0,7,9],identifi:8,paus:9,execut:[1,3],less:0,resp:[4,5,7,8,9,10,13,14],"_post":[1,3],against:0,aspect:13,recipient_email:9,source_filenam:8,yet:5,languag:1,"12t09":[7,8],display_nam:10,easi:[1,12,10],"01t00":8,had:0,littl:1,blog:4,add:[12,1,8,13,3],other:[1,8,9,3,5],curlopt_userpwd:[1,6,3],import_finish:[8,12,4],schedul:9,els:[1,6,3],save:7,match:[0,7],build:1,sanit:1,applic:[1,6,3],account_id:[1,3,4,5,6,7,8,9,10,12,13,14],handl:1,disposit:1,crud:[8,13,14],print_r:[6,3],mailing_statu:[9,14],know:[1,4,5],background:13,parent_mailing_id:[9,14],bit:1,insert:11,emma:[1,5,7,8,9,12,13],like:1,onion:11,deprec:4,arbitrari:8,manual:9,integ:[1,8,14,10,5],collect:1,api:[1,2,3,6,8,12],either:[0,5,7],bunch:0,output:9,group_id:[1,8,12,3],soft:[0,5],manag:[0,1,13,4],import_id:[8,12],www:[5,9],old:7,deal:[8,13],captur:1,arrai:[0,1,3,5,6,7,8,9,10,12,13,14],some:[1,11,5],field_delet:[12,4],certain:12,intern:10,sampl:[1,4,5,7,8,9,10,13,14],elaps:[2,9],unless:1,deleted_at:[7,8,13,10,9,14],some_string_field:0,librari:11,woodcock:1,emmarubi:1,bounce_count:[7,8,9,13],emmapython:1,public_kei:4,deliveri:5,broad:12,per:5,send_finish:[9,14],larg:[0,2],condit:7,three:9,network_cod:12,localhost:9,emmaphp:1,with_html_bodi:9,who:[0,5,8],bold:[4,5,7,8,9,10,13,14],event_typ:14,inspect:1,usag:[1,8,12],monsewicz:1,num_members_ad:8,fulli:11,from:[1,4,8,9,12,13,14],post:[1,3,4,7,8,9,10,12,13,14],group_creat:[12,4],gladi:[7,5,8,13],hurst:1,actual:5,zip:0,groups_upd:8,column:10,page:2,includ:[1,5,7,8,9,10,13],webview:9,mean:0,disabl:[9,14],block:[1,2],yyyi:5,own:1,member_data:[1,3],glob:0,bounc:[0,5],within:[0,8],encod:[9,4],delivery_typ:[5,8],compos:0,webview_shar:5,field_typ:10,active_count:[7,8,9,13],public_webview_url:9,pivot:5,your:[1,4,5,7,8,9,10,13],websit:11,fast:8,van:1,wai:[1,12],area:1,overus:2,group_nam:[8,12,13,9],support:12,unique_click:5,json:[0,1,3,4,6,7],submit:1,custom:[5,8,11,10],avail:[0,11,4],start:[1,2,8,4],interfac:12,send_at:[9,14],exceed:2,"var":3,interv:[0,14],fork:1,head:[1,6,9,3],form:[1,3,4,6,8,10,14],enough:2,forc:1,forward:[0,4,5,8,12,9],"31st":0,group_typ:[8,9,13],push_offset_unit:14,link:[0,4,5,11,9,14],line:[1,5],realli:1,"true":[0,1,2,3,4,6,7,8,9,10,13,14],archived_t:[9,14],info:4,pull:[1,2],made:1,possibl:[5,8,12],whether:8,maximum:2,tell:12,http403:9,record:[0,7,8],below:[0,1,8,12],http400:[7,8,9],limit:[5,2,8,9],some_array_field:0,otherwis:[1,8,10],start_t:14,mta:5,expect:1,notif:9,creat:[4,5,7,9,10,12,13,14],"int":5,retriev:[7,1,2,8,9],year:[0,5,9,14],repres:5,exist:[0,4,5,7,8,10,13],behavior:11,bob:[7,5],curl:[1,6],portland:1,probabl:14,echo:[1,3],successfulli:[5,8,9],mailing_subject:12,grp:13,todo:11,when:[8,12,4,9],detail:[1,4,7,8,9,10,13],invalid:[7,8,9],event:[4,7,8,13,12,9,14],field:[0,1,3,4,5,7,8,9,10,11,12,13,14],valid:[5,8,9,13],futur:1,num_skip:8,test:[5,6,7,13,9,14],ignor:8,you:[0,1,2,4,5,7,8,9,10,11,12,13],emmasdk:1,member_status_id:[7,5,8,9,13],public_api_kei:[1,6,3],stat:[5,9],claus:[0,7],event_nam:[12,4],e2ma:[1,2,6,3],error_messag:8,param:[9,4],app_messag:[1,3],ella:8,bulk:[1,8],receiv:[0,2,5,8,12,9],heads_up_email:9,longer:9,home:11,confirm:8,descript:[4,14],ohmyemma:1,portion:0,opted_out:5,time:[1,2,8,13,5],reply_to:[9,14],resource_url:12,hello:[11,9,14]},objtypes:{"0":"http:get","1":"http:put","2":"http:post","3":"http:delete"},titles:["Search Syntax","Emma API","Pagination","PHP Signup Example","Webhooks","Response","PHP Get Member By Email Example","Searches","Members","Mailings","Fields","Placeholder Syntax","Webhook Usage","Groups","Triggers"],objnames:{"0":["http","get","HTTP get"],"1":["http","put","HTTP put"],"2":["http","post","HTTP post"],"3":["http","delete","HTTP delete"]},filenames:["member_search","index","pagination","php_signup_example","api/external/webhooks","api/external/response","php_get_member_example","api/external/searches","api/external/members","api/external/mailings","api/external/fields","placeholders","webhooks","api/external/groups","api/external/triggers"]}) \ No newline at end of file +Search.setIndex({objects:{"":{"/#account_id/members/#member_id/groups/remove":[8,1,1,"put--#account_id-members-#member_id-groups-remove"],"/#account_id/mailings/#mailing_id/winner/#winner_id":[9,2,1,"post--#account_id-mailings-#mailing_id-winner-#winner_id"],"/#account_id/response/#mailing_id/in_progress":[5,0,1,"get--#account_id-response-#mailing_id-in_progress"],"/#account_id/members/groups/remove":[8,1,1,"put--#account_id-members-groups-remove"],"/#account_id/mailings/#mailing_id/searches":[9,0,1,"get--#account_id-mailings-#mailing_id-searches"],"/#account_id/fields":[10,2,1,"post--#account_id-fields"],"/#account_id/members/#group_id/copy":[8,1,1,"put--#account_id-members-#group_id-copy"],"/#account_id/members/status":[8,1,1,"put--#account_id-members-status"],"/#account_id/response/#mailing_id/shares/overview":[5,0,1,"get--#account_id-response-#mailing_id-shares-overview"],"/#account_id/webhooks/events":[4,0,1,"get--#account_id-webhooks-events"],"/#account_id/members/#member_id/optout":[8,0,1,"get--#account_id-members-#member_id-optout"],"/#account_id/webhooks":[4,3,1,"delete--#account_id-webhooks"],"/#account_id/fields/#field_id":[10,3,1,"delete--#account_id-fields-#field_id"],"/#account_id/response/#mailing_id":[5,0,1,"get--#account_id-response-#mailing_id"],"/#account_id/groups/#member_group_id/members/remove":[13,3,1,"delete--#account_id-groups-#member_group_id-members-remove"],"/#account_id/searches":[7,2,1,"post--#account_id-searches"],"/#account_id/members/imports":[8,0,1,"get--#account_id-members-imports"],"/#account_id/forwards/#mailing_id/#member_id":[9,2,1,"post--#account_id-forwards-#mailing_id-#member_id"],"/#account_id/response/#mailing_id/customer_share_clicks":[5,0,1,"get--#account_id-response-#mailing_id-customer_share_clicks"],"/#account_id/mailings/#mailing_id/messages/#member_id":[9,0,1,"get--#account_id-mailings-#mailing_id-messages-#member_id"],"/#account_id/members/#member_id/mailings":[8,0,1,"get--#account_id-members-#member_id-mailings"],"/#account_id/groups/#from_group_id/#to_group_id/members/copy":[13,1,1,"put--#account_id-groups-#from_group_id-#to_group_id-members-copy"],"/#account_id/triggers":[14,2,1,"post--#account_id-triggers"],"/#account_id/triggers/#trigger_id":[14,3,1,"delete--#account_id-triggers-#trigger_id"],"/#account_id/members/delete":[8,1,1,"put--#account_id-members-delete"],"/#account_id/mailings/#mailing_id/groups":[9,0,1,"get--#account_id-mailings-#mailing_id-groups"],"/#account_id/response/#mailing_id/forwards":[5,0,1,"get--#account_id-response-#mailing_id-forwards"],"/#account_id/members/#member_id":[8,3,1,"delete--#account_id-members-#member_id"],"/#account_id/triggers/#trigger_id/mailings":[14,0,1,"get--#account_id-triggers-#trigger_id-mailings"],"/#account_id/searches/#search_id/members":[7,0,1,"get--#account_id-searches-#search_id-members"],"/#account_id/members/status/:status_from/to/:status_to":[8,1,1,"put--#account_id-members-status--status_from-to--status_to"],"/#account_id/response/#mailing_id/sends":[5,0,1,"get--#account_id-response-#mailing_id-sends"],"/#account_id/members":[8,3,1,"delete--#account_id-members"],"/#account_id/members/email/:email":[8,0,1,"get--#account_id-members-email--email"],"/#account_id/response/#mailing_id/links":[5,0,1,"get--#account_id-response-#mailing_id-links"],"/#account_id/searches/#search_id":[7,3,1,"delete--#account_id-searches-#search_id"],"/#account_id/members/imports/#import_id/members":[8,0,1,"get--#account_id-members-imports-#import_id-members"],"/#account_id/fields/#field_id/clear":[10,2,1,"post--#account_id-fields-#field_id-clear"],"/#account_id/groups/#member_group_id/members":[13,3,1,"delete--#account_id-groups-#member_group_id-members"],"/#account_id/members/imports/#import_id":[8,0,1,"get--#account_id-members-imports-#import_id"],"/#account_id/response":[5,0,1,"get--#account_id-response"],"/#account_id/response/#mailing_id/opens":[5,0,1,"get--#account_id-response-#mailing_id-opens"],"/#account_id/members/imports/delete":[8,3,1,"delete--#account_id-members-imports-delete"],"/#account_id/mailings":[9,0,1,"get--#account_id-mailings"],"/#account_id/mailings/cancel/#mailing_id":[9,3,1,"delete--#account_id-mailings-cancel-#mailing_id"],"/#account_id/mailings/validate":[9,2,1,"post--#account_id-mailings-validate"],"/#account_id/response/#mailing_id/deliveries":[5,0,1,"get--#account_id-response-#mailing_id-deliveries"],"/#account_id/mailings/#mailing_id/members":[9,0,1,"get--#account_id-mailings-#mailing_id-members"],"/#account_id/response/#share_id/customer_share":[5,0,1,"get--#account_id-response-#share_id-customer_share"],"/#account_id/webhooks/#webhook_id":[4,3,1,"delete--#account_id-webhooks-#webhook_id"],"/#account_id/members/add":[8,2,1,"post--#account_id-members-add"],"/#account_id/members/email/optout/:email":[8,1,1,"put--#account_id-members-email-optout--email"],"/#account_id/response/#mailing_id/optouts":[5,0,1,"get--#account_id-response-#mailing_id-optouts"],"/#account_id/response/#mailing_id/shares":[5,0,1,"get--#account_id-response-#mailing_id-shares"],"/#account_id/groups/#member_group_id":[13,3,1,"delete--#account_id-groups-#member_group_id"],"/#account_id/mailings/#mailing_id":[9,3,1,"delete--#account_id-mailings-#mailing_id"],"/#account_id/members/#member_id/groups":[8,3,1,"delete--#account_id-members-#member_id-groups"],"/#account_id/groups":[13,2,1,"post--#account_id-groups"],"/#account_id/response/#mailing_id/clicks":[5,0,1,"get--#account_id-response-#mailing_id-clicks"],"/#account_id/mailings/#mailing_id/headsup":[9,0,1,"get--#account_id-mailings-#mailing_id-headsup"],"/#account_id/response/#mailing_id/signups":[5,0,1,"get--#account_id-response-#mailing_id-signups"],"/#account_id/response/#mailing_id/customer_shares":[5,0,1,"get--#account_id-response-#mailing_id-customer_shares"]}},terms:{all:[0,1,4,5,8,9,10,11,12,13,14],code:[0,1,6,3],change_typ:8,queri:[0,2,4],month:[0,5,9,14],four:[0,5],mile:0,least:0,follow:[0,1,4,5,7,9,11,13],link_target:[5,9],content:[1,11,6,9,3],privat:1,specif:[8,9,4],friendli:5,send:[1,9,4,3,5],program:1,customer_share_click:5,those:[1,12,5],group_upd:[12,4],sent:[5,8,12,9,14],curl_clos:[1,6,3],brown:[7,8],digit:5,everi:0,string:[0,4,5,7,8,9,10,12,13,14],fals:[1,3,4,5,6,7,8,9,10,13,14],webhook:[1,12,4],mailing_status:9,trigger_id:14,webview_share_click:5,affect:[7,8],member_add:[12,4],create_mail:9,new_boolean:10,foo:0,level:1,group_delet:[12,4],list:[0,1,2,4,5,7,8,9,10,11,12,13,14],upload:8,iter:2,"try":8,item:2,plaintext_onli:[9,14],div:[4,5,7,8,9,10,13,14],survey_id:14,setup:1,pleas:[1,8,11,9],prevent:2,work:[1,4],ten:0,sync:10,sign:[0,5,4],past:1,second:[0,7,14],field_creat:[12,4],further:1,shortcut_nam:10,click:[0,4,5,7,8,12,14],append:2,even:10,what:1,hide:[4,5,7,8,9,10,13,14],appear:[1,8],from_group_id:13,section:1,current:[1,8,12,9],delet:[1,4,7,8,9,10,12,13,14],"new":[1,4,5,7,8,9,10,11,13,14],net:[1,2,6,3],delivery_t:8,method:[5,8,13,4,9],can:[0,1,2,4,5,7,8,9,11,12,13],widget:[7,10,8,9,13],full:1,hash:0,datematch:0,displai:10,variat:9,gener:[0,8,12,14],onli:[5,8],here:[0,1,3,5,6,8],bodi:9,let:[1,4,10],address:[0,1,8,6,9],along:8,sinc:8,valu:[0,5,7,8,10,11],field_upd:[12,4],search:[0,1,8,9,7],survei:14,sender:[9,14],larger:2,queue:5,prior:9,action:[0,8],chang:[8,4],campaign:5,newbi:5,appli:[7,14],prefer:0,young:1,myemma:[4,5,7,8,9,13],filenam:8,customer_shar:5,"boolean":[0,1,5,7,8,9,10,13,14],curlopt_postfield:[1,3],total:5,jone:[7,5,8,13],select:[1,10],newslett:[7,8,13],describ:7,would:[0,1],commun:1,regist:4,two:[0,5],coverag:1,next:[0,1],create_webhook:4,few:[5,8],call:[1,2,3,4,6,8,12],criteria:7,member_add_to_group:[12,4],type:[1,3,4,5,6,7,10,9,14],until:2,more:[0,4,7,8,9,13],peopl:5,relat:[1,8,11,9],about:[10,8,12,4,9],notic:8,thide:[4,5,7,8,9,10,13,14],flag:[5,7,8,10,9,14],exce:2,indic:8,examin:1,particular:[1,4,5,8,10,12,9],in_progress:5,origin:9,must:[0,7,13,10],none:9,endpoint:[1,4,5,7,8,9,10,13,14],join:[0,7],hour:0,der:1,member_sinc:[0,5,7,8,9,13],uniqu:5,histori:8,soup:7,remain:[0,9],archiv:[5,9],member_optout:[12,4],drill:5,control:[1,11,9],quickstart:1,give:5,forward_mailing_id:5,email_domain:[0,5],share:[0,5,8,12,4],accept:[0,5,7,8,9,10,11,13,14],total_click:5,tag:[11,9],want:[1,12,13,5],occur:[7,12],some_numeric_field:0,delai:14,alwai:0,webhook_event_id:4,cours:1,multipl:[10,8],first_nam:[1,3,5,7,8,9,10,11,13,14],started_or_finish:[9,14],anoth:[9,13],get:[1,4,5,6,7,8,9,10,13,14],message_open:[12,4],html_bodi:[9,14],share_statu:5,push_offset:14,del_statu:5,tild:5,num_members_upd:8,simpl:0,chri:9,pizza:[7,8],map:0,autent:1,referenc:7,xxxx:6,sundai:0,jacqu:1,membership:13,taco:[7,5,8,9,13],mai:12,end:[2,8],associ:[1,8,9,4,5],grow:1,welcom:11,add_onli:8,"short":0,json_encod:[1,3],optout:[5,8,12,13],num_dupl:8,favorit:10,correspond:[0,1],greet:11,predic:[0,1],issu:[1,10],"12t11":[7,5,8,9,13],combin:7,allow:[0,7,8],some_zipcode_field:0,signed_up:5,order:[5,10],michel:[8,9],mailing_nam:5,checkbox:10,fields_upd:8,over:2,soon:1,buyer:[7,8,9,13],comma:[9,13],is_dis:14,vari:8,paramet:[2,4,5,7,8,9,10,13,14],widget_typ:10,style:[0,4,5,7,8,9,10,13,14],group:[0,1,3,4,7,8,9,12,13,14],curl_setopt:[1,6,3],how:[7,1,2,4],fix:1,import_start:8,better:[13,14],platform:1,pend:[1,9],mailing_list:9,onc:9,mail:[0,1,4,5,8,11,12,9,14],hidden:13,main:1,might:[1,4],link_nam:[5,9],them:[8,9],messag:[4,5,8,12,11,9,14],"return":[0,1,4,5,7,8,9,10,12,13,14],greater:[0,8],thei:[0,9],food:10,timestamp:[0,5,12,9,10],spell:4,nashvil:1,dai:0,auth:1,framework:1,instead:[12,2,8],now:5,down:5,term:[0,1],alex:9,name:[0,4,5,7,8,9,10,11,13,14],edit:[7,1,14,10],curl_getinfo:[1,6,3],authent:[1,6,4,3],successufulli:4,separ:[1,9,13],each:[1,2,5,9,12,11,13],found:[8,9,4,14],updat:[4,7,8,9,10,12,13,14],denni:1,status:[8,9],domain:0,weight:[4,5,7,8,9,10,13,14],resum:9,individu:[5,8],hard:[0,5],last_nam:[1,3,5,7,8,9,10,11,13,14],"05t15":5,birthdai:[10,14],connect:[1,6,3],doug:1,our:[1,11,12,4,14],happen:[1,4,5],commiss:1,short_display_nam:10,special:[0,7,8,13],out:[0,1,4,5,7,8,10,13],variabl:[1,6,3],message_shar:[12,4],network:[5,12],private_api_kei:[1,6,3],check_multipl:10,categori:1,rel:0,print:6,correct:10,integr:1,benjamin:[1,8],qualifi:11,insid:1,advanc:0,contain:[0,5,7,13,10,9],given:[0,8,9,4],standard:[5,9],status_from:8,base:[5,8],recipient_search:9,dictionari:8,put:[4,7,8,9,10,13,14],span:[4,5,7,8,9,10,13,14],"13t23":[7,5,8],refer:[5,7,8,13,10,9],visit:11,could:1,omit:5,success:[1,3,7,8,9,13],filter:[0,1,7],search_id:7,pagin:[1,2],member_id:[5,7,8,9,12,13],summari:[1,5],assign:9,first:[0,1,10,5],oper:[0,1,7,14],rang:5,notifi:12,directli:0,curlopt_ssl_verifyp:[1,6,3],curl_init:[1,6,3],number:[5,2,13,3,10],placehold:[1,11],date:[0,5,8,10,11,14],unlik:9,alreadi:[10,8,9,13],done:8,plaintext_pref:[7,8,9,13],oppos:8,open:[0,3,4,5,6,7,8,12],payload:4,fanci:5,size:2,differ:0,"long":10,script:1,data:[1,3,4,5,10,12],system:[8,12,4,14],wrapper:1,attach:11,easier:12,friend:11,curlinfo_http_cod:[1,6,3],shell:0,option:[0,5,7,8,9,10,13,14],especi:8,signup:[0,1,3,4,5,8,12,14],copi:[8,13],member_upd:[12,4],specifi:[0,2,7,8,10,11,9,14],curl_exec:[1,6,3],curlopt_httphead:[1,6,3],member_signup:[12,4],create_search:7,part:[0,9],enclos:11,than:[0,1,2,3,12,13],with_plaintext:9,"02t10":[5,8],"02t11":[5,8],"02t13":5,nathan:8,whenev:8,provid:[1,5,8,12,9,14],remov:[12,8,13,4],mailing_start:4,rate:2,structur:7,charact:9,greg:8,trackabl:11,were:5,minut:0,danc:1,error_count:[7,8,9,13],pre:[4,5,7,8,9,10,13,14],cleaner:1,sai:0,share_id:5,signup_form_id:[0,8,12,9,14],plaintext:[5,9,14],pass:[1,3],ani:[0,1,2,7,8,9],have:[0,1,5,8,12,9],tabl:5,need:1,seen:5,"null":[7,8,13,10,9,14],kevin:[9,14],signup_mail:0,caus:14,built:1,inform:[1,4,6,8,9,10,13],object_id:14,note:[1,8,9,4],also:[0,4,5,7,8,9,11,13],exampl:[0,1,3,5,6,7,11],take:[0,4],which:[0,1,4,8,10,12,9,14],some_number_field:0,singl:[0,1,3,4,5,8,10,12,13],excit:11,sure:1,delete_memb:13,normal:9,parent_mail:14,recipient_count:[5,9,14],previou:9,field_id:[10,12,14],last_run_at:7,most:14,pair:11,"class":[4,5,7,8,9,10,13,14],don:1,member_group_id:[8,9,13],mcconnel:[9,14],url:[1,3,4,5,6,12],mailing_finish:[12,4],clear:10,request:[1,2,3],doe:[0,5,7,8,9,10,13],member_status_upd:[12,4],declar:9,tech:4,determin:1,dataset:10,dow:0,recipi:9,"6db0cc7e6fdb2da589b65f29d90c96b6":9,show:[4,5,7,8,9,10,11,13,14],text:[10,11,12],radiu:0,syntax:[0,1,11,9],radio:10,font:[4,5,7,8,9,10,13,14],fine:9,find:[1,6,5],status_to:8,toast:[7,5,8,13],access:[1,5],giant:12,just:[0,1,9],pretti:8,column_ord:10,explain:[0,1],winner:9,activ:[1,5,7,8,13,9],figur:1,should:[1,2,3,7,8,11,9],templat:[11,14],share_count:5,count:[1,2,3,5],variou:[8,13],confirmed_opt_in:[7,8,9,13],familiar:1,express:0,account:[1,4,5,7,8,10,13,14],becaus:12,repo:1,cannot:[8,9,4],progress:9,report:[10,8],requir:[1,7,8,10,11,9],object:[1,13,5],favorite_food:[5,7,8,13,10,9],bar:0,organ:1,include_archiv:[5,9],"public":1,"default":[5,11,13,4,9],ref_member_id:5,message_share_click:[12,4],through:[1,8,4],where:[0,1,8,11,7],view:1,user:[0,8,9,13],set:[0,1,2,3,6,8,9,12,13],link_id:[0,5,12,9,14],see:[7,1,8],result:[0,1,2,5,8,9],respons:[0,1,2,4,5,7,8,9,10,13,14],fail:[5,9,4],themselv:2,member_field:[0,7],xxxxx:6,subject:[8,12,9,14],statu:[1,4,5,7,8,9,12,13],fancyonion:11,kei:[0,1,8,11,4],is_schedul:9,message_forward:[12,4],databas:8,someth:1,last_modified_at:[7,8,9,13],addresse:5,written:1,between:[0,7,2],clicked_uniqu:5,"import":[1,8,12,4,10],subscript:[1,3],entiti:1,curlopt_url:[1,6,3],email:[0,1,3,5,6,7,8,9,13],wide:14,extend:1,numer:10,http404:[4,5,7,8,9,10,13,14],job:13,entir:[0,8],share_click:5,to_group_id:13,come:1,curlopt_returntransf:[1,6,3],addit:[0,1,8,9,11,13],member_remove_from_group:[12,4],send_start:[0,9,14],protect:1,accident:2,last:[0,5,10],delimit:5,lentil:7,pertain:5,message_click:[12,4],curlopt_post:[1,3],audienc:[1,8,9],mang:0,improv:1,http500:14,seri:5,com:[4,5,6,7,8,9,11,13],zip_code_field:0,"03t15":[7,5,8,13],point:1,toni:[7,8],overview:[0,1,11,12,5],period:1,winner_id:9,colon:[7,11],optout_count:[7,8,9,13],suppli:9,cancel:9,tuesdai:0,duplic:5,quit:[5,8],user_id:4,recur:14,headsup:9,addition:[1,2],due:5,been:[1,8,10,5],mark:[8,9],whom:9,tshow:[4,5,7,8,9,10,13,14],trigger:[1,4,5,7,8,9,10,12,13,14],unsubscrib:0,treat:8,interest:[10,4],basic:[0,1,4,8,13,14],monthli:[7,8,13],member_delet:[12,4],"29t16":[7,14],hesit:1,blob:4,email_us:[0,5],mailing_mailing_id:5,mailing_id:[0,5,8,12,9,14],fire:[8,4,14],xxx:[1,3],rubi:1,argument:[0,5],link_ord:[5,9],input:1,extract:11,present:7,statist:8,"case":[1,8],look:[1,14,10],frozen:9,durat:9,email_error:[7,8,9,13],defin:[0,10,8,9],"while":0,smith:[7,5,8,9,13],outcom:5,abov:[0,1,8,7],error:[1,3,6,8,10,13],veen:1,loop:8,opt:[0,4,5,7,8,13],readi:9,deliv:5,recipient_group:9,equal:0,itself:0,new_statu:12,webhook_id:4,develop:1,recipient_memb:9,perform:8,make:[1,12,6,10],belong:[0,8,4],same:4,check:[8,6,9],member:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14],python:1,html:9,split:9,document:[1,11,12],complet:[1,3,4,6,8,9],week:0,finish:[5,12,4],http:[1,2,3,4,5,6,11,9],href:[4,5,7,8,9,10,13,14],nest:0,someon:4,rais:[4,5,7,8,9,10,13,14],initi:[10,9],php:[1,6,3],studi:1,recent:[1,8],kept:11,center:0,min:5,well:[1,5],inherit:9,person:9,mailing_typ:[9,14],without:[0,1],command:1,thi:[0,1,4,5,7,8,9,10,12,13,14],undefin:0,http_code:[1,6,3],latest:11,construct:[0,7,9],identifi:8,paus:9,execut:[1,3],less:0,resp:[4,5,7,8,9,10,13,14],"_post":[1,3],against:0,aspect:13,recipient_email:9,source_filenam:8,yet:5,languag:1,"12t09":[7,8],display_nam:10,easi:[1,12,10],"01t00":8,had:0,littl:1,blog:4,add:[12,1,8,13,3],other:[1,8,9,3,5],curlopt_userpwd:[1,6,3],import_finish:[8,12,4],schedul:9,els:[1,6,3],save:7,match:[0,7],build:1,sanit:1,applic:[1,6,3],account_id:[1,3,4,5,6,7,8,9,10,12,13,14],handl:1,disposit:1,crud:[8,13,14],print_r:[6,3],mailing_statu:[9,14],know:[1,4,5],background:13,parent_mailing_id:[9,14],bit:1,insert:11,emma:[1,5,7,8,9,12,13],like:1,onion:11,deprec:4,arbitrari:8,manual:9,integ:[1,8,14,10,5],collect:1,api:[1,2,3,6,8,12],either:[0,5,7],bunch:0,output:9,group_id:[1,8,12,3],soft:[0,5],manag:[0,1,13,4],import_id:[8,12],www:[5,9],old:7,deal:[8,13],captur:1,arrai:[0,1,3,5,6,7,8,9,10,12,13,14],some:[1,11,5],field_delet:[12,4],certain:12,intern:10,sampl:[1,4,5,7,8,9,10,13,14],elaps:[2,9],unless:1,deleted_at:[7,8,13,10,9,14],some_string_field:0,librari:11,woodcock:1,emmarubi:1,bounce_count:[7,8,9,13],emmapython:1,public_kei:4,deliveri:5,broad:12,per:5,send_finish:[9,14],larg:[0,2],condit:7,three:9,network_cod:12,localhost:9,emmaphp:1,with_html_bodi:9,who:[0,5,8],bold:[4,5,7,8,9,10,13,14],event_typ:14,inspect:1,usag:[1,8,12],monsewicz:1,num_members_ad:8,fulli:11,from:[1,4,8,9,12,13,14],post:[1,3,4,7,8,9,10,12,13,14],group_creat:[12,4],gladi:[7,5,8,13],hurst:1,actual:5,zip:0,groups_upd:8,column:10,page:2,includ:[1,5,7,8,9,10,13],webview:9,mean:0,disabl:[9,14],block:[1,2],yyyi:5,own:1,member_data:[1,3],glob:0,bounc:[0,5],within:[0,8],encod:[9,4],delivery_typ:[5,8],compos:0,webview_shar:5,field_typ:10,active_count:[7,8,9,13],public_webview_url:9,pivot:5,your:[1,4,5,7,8,9,10,13],websit:11,fast:8,van:1,wai:[1,12],area:1,overus:2,group_nam:[8,12,13,9],support:12,unique_click:5,json:[0,1,3,4,6,7],submit:1,custom:[5,8,11,10],avail:[0,11,4],start:[1,2,8,4],interfac:12,send_at:[9,14],exceed:2,"var":3,interv:[0,14],fork:1,head:[1,6,9,3],form:[1,3,4,6,8,10,14],enough:2,forc:1,forward:[0,4,5,8,12,9],"31st":0,group_typ:[8,9,13],push_offset_unit:14,link:[0,4,5,11,9,14],line:[1,5],realli:1,"true":[0,1,2,3,4,6,7,8,9,10,13,14],archived_t:[9,14],info:4,pull:[1,2],made:1,possibl:[5,8,12],whether:8,maximum:2,tell:12,http403:9,record:[0,7,8],below:[0,1,8,12],http400:[7,8,9],limit:[5,2,8,9],some_array_field:0,otherwis:[1,8,10],start_t:14,mta:5,expect:1,notif:9,creat:[4,5,7,9,10,12,13,14],"int":5,retriev:[7,1,2,8,9],year:[0,5,9,14],repres:5,exist:[0,4,5,7,8,10,13],behavior:11,bob:[7,5],curl:[1,6],portland:1,probabl:14,echo:[1,3],successfulli:[5,8,9],mailing_subject:12,grp:13,todo:11,when:[8,12,4,9],detail:[1,4,7,8,9,10,13],invalid:[7,8,9],event:[4,7,8,13,12,9,14],field:[0,1,3,4,5,7,8,9,10,11,12,13,14],valid:[5,8,9,13],futur:1,num_skip:8,test:[5,6,7,13,9,14],ignor:8,you:[0,1,2,4,5,7,8,9,10,11,12,13],emmasdk:1,member_status_id:[7,5,8,9,13],public_api_kei:[1,6,3],stat:[5,9],claus:[0,7],event_nam:[12,4],e2ma:[1,2,6,3],error_messag:8,param:[9,4],app_messag:[1,3],ella:8,bulk:[1,8],receiv:[0,2,5,8,12,9],heads_up_email:9,longer:9,home:11,confirm:8,descript:[4,14],ohmyemma:1,portion:0,opted_out:5,time:[1,2,8,13,5],reply_to:[9,14],resource_url:12,hello:[11,9,14]},objtypes:{"0":"http:get","1":"http:put","2":"http:post","3":"http:delete"},titles:["Search Syntax","Emma API","Pagination","PHP Signup Example","Webhooks","Response","PHP Get Member By Email Example","Searches","Members","Mailings","Fields","Placeholder Syntax","Webhook Usage","Groups","Triggers"],objnames:{"0":["http","get","HTTP get"],"1":["http","put","HTTP put"],"2":["http","post","HTTP post"],"3":["http","delete","HTTP delete"]},filenames:["member_search","index","pagination","php_signup_example","api/external/webhooks","api/external/response","php_get_member_example","api/external/searches","api/external/members","api/external/mailings","api/external/fields","placeholders","webhooks","api/external/groups","api/external/triggers"]}) \ No newline at end of file diff --git a/webhooks.html b/webhooks.html index ca56180..5474450 100644 --- a/webhooks.html +++ b/webhooks.html @@ -507,7 +507,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on May 22, 2013 at 03:11 PM. + Last updated on May 29, 2013 at 04:18 PM. </div> </body> </html> \ No newline at end of file From eac6bf72e36aec37cd738306e040ac75f75d7774 Mon Sep 17 00:00:00 2001 From: Sofia Karagadayeva <sofia@3442232.local> Date: Wed, 29 May 2013 17:21:13 -0500 Subject: [PATCH 045/219] Update audience documentation. --- api/external/fields.html | 2 +- api/external/groups.html | 2 +- api/external/mailings.html | 2 +- api/external/members.html | 2 +- api/external/response.html | 2 +- api/external/searches.html | 4 ++-- api/external/triggers.html | 8 ++++---- api/external/webhooks.html | 2 +- genindex.html | 2 +- http-routingtable.html | 2 +- index.html | 2 +- member_search.html | 2 +- pagination.html | 2 +- php_get_member_example.html | 2 +- php_signup_example.html | 2 +- placeholders.html | 2 +- search.html | 2 +- searchindex.js | 2 +- webhooks.html | 2 +- 19 files changed, 23 insertions(+), 23 deletions(-) diff --git a/api/external/fields.html b/api/external/fields.html index 0957778..f09e324 100644 --- a/api/external/fields.html +++ b/api/external/fields.html @@ -415,7 +415,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on May 29, 2013 at 04:18 PM. + Last updated on May 29, 2013 at 05:21 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/groups.html b/api/external/groups.html index 07e3c33..5604045 100644 --- a/api/external/groups.html +++ b/api/external/groups.html @@ -702,7 +702,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on May 29, 2013 at 04:18 PM. + Last updated on May 29, 2013 at 05:21 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/mailings.html b/api/external/mailings.html index e935fa6..9db30b7 100644 --- a/api/external/mailings.html +++ b/api/external/mailings.html @@ -810,7 +810,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on May 29, 2013 at 04:18 PM. + Last updated on May 29, 2013 at 05:21 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/members.html b/api/external/members.html index c33d159..0c2b818 100644 --- a/api/external/members.html +++ b/api/external/members.html @@ -1217,7 +1217,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on May 29, 2013 at 04:18 PM. + Last updated on May 29, 2013 at 05:21 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/response.html b/api/external/response.html index 92f9f1a..12df741 100644 --- a/api/external/response.html +++ b/api/external/response.html @@ -1019,7 +1019,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on May 29, 2013 at 04:18 PM. + Last updated on May 29, 2013 at 05:21 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/searches.html b/api/external/searches.html index c28117b..2047c61 100644 --- a/api/external/searches.html +++ b/api/external/searches.html @@ -199,7 +199,7 @@ <h1>Searches<a class="headerlink" href="#searches" title="Permalink to this head "name": "Test Search", "criteria": "[\"or\", [\"group\", \"eq\", \"Monthly Newsletter\"],[\"group\", \"eq\", \"Widget Buyers\"]]", "deleted_at": null, - "last_run_at": "@D:2013-05-29T16:18:48", + "last_run_at": "@D:2013-05-29T17:21:07", "active_count": 2, "account_id": 100 } @@ -511,7 +511,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on May 29, 2013 at 04:18 PM. + Last updated on May 29, 2013 at 05:21 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/triggers.html b/api/external/triggers.html index d18c28a..04e9fbe 100644 --- a/api/external/triggers.html +++ b/api/external/triggers.html @@ -148,7 +148,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": 203, "push_offset_units": "0:-14:0:0", - "start_ts": "@D:2013-05-29T16:18:45", + "start_ts": "@D:2013-05-29T17:21:04", "trigger_id": 100, "signups": null, "push_offset": "@I:-1209600.0", @@ -189,7 +189,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": null, "push_offset_units": "0:3:0:0", - "start_ts": "@D:2013-05-29T16:18:45", + "start_ts": "@D:2013-05-29T17:21:04", "trigger_id": 101, "signups": [ 1, @@ -326,7 +326,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": 203, "push_offset_units": "0:-14:0:0", - "start_ts": "@D:2013-05-29T16:18:45", + "start_ts": "@D:2013-05-29T17:21:04", "trigger_id": 100, "signups": null, "push_offset": "@I:-1209600.0", @@ -499,7 +499,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on May 29, 2013 at 04:18 PM. + Last updated on May 29, 2013 at 05:21 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/webhooks.html b/api/external/webhooks.html index 14b8bc8..a8d3b06 100644 --- a/api/external/webhooks.html +++ b/api/external/webhooks.html @@ -487,7 +487,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on May 29, 2013 at 04:18 PM. + Last updated on May 29, 2013 at 05:21 PM. </div> </body> </html> \ No newline at end of file diff --git a/genindex.html b/genindex.html index 2363bac..7fb7e02 100644 --- a/genindex.html +++ b/genindex.html @@ -146,7 +146,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on May 29, 2013 at 04:18 PM. + Last updated on May 29, 2013 at 05:21 PM. </div> </body> </html> \ No newline at end of file diff --git a/http-routingtable.html b/http-routingtable.html index bad7d85..e3b3cf2 100644 --- a/http-routingtable.html +++ b/http-routingtable.html @@ -607,7 +607,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on May 29, 2013 at 04:18 PM. + Last updated on May 29, 2013 at 05:21 PM. </div> </body> </html> \ No newline at end of file diff --git a/index.html b/index.html index 59f7a8b..58fa964 100644 --- a/index.html +++ b/index.html @@ -344,7 +344,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on May 29, 2013 at 04:18 PM. + Last updated on May 29, 2013 at 05:21 PM. </div> </body> </html> \ No newline at end of file diff --git a/member_search.html b/member_search.html index b5f41de..7db1923 100644 --- a/member_search.html +++ b/member_search.html @@ -256,7 +256,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on May 29, 2013 at 04:18 PM. + Last updated on May 29, 2013 at 05:21 PM. </div> </body> </html> \ No newline at end of file diff --git a/pagination.html b/pagination.html index 082957e..b1d4c48 100644 --- a/pagination.html +++ b/pagination.html @@ -168,7 +168,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on May 29, 2013 at 04:18 PM. + Last updated on May 29, 2013 at 05:21 PM. </div> </body> </html> \ No newline at end of file diff --git a/php_get_member_example.html b/php_get_member_example.html index fdb293a..acaf9f1 100644 --- a/php_get_member_example.html +++ b/php_get_member_example.html @@ -183,7 +183,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on May 29, 2013 at 04:18 PM. + Last updated on May 29, 2013 at 05:21 PM. </div> </body> </html> \ No newline at end of file diff --git a/php_signup_example.html b/php_signup_example.html index 2414c80..d02d75c 100644 --- a/php_signup_example.html +++ b/php_signup_example.html @@ -205,7 +205,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on May 29, 2013 at 04:18 PM. + Last updated on May 29, 2013 at 05:21 PM. </div> </body> </html> \ No newline at end of file diff --git a/placeholders.html b/placeholders.html index e414fb1..94f17c0 100644 --- a/placeholders.html +++ b/placeholders.html @@ -183,7 +183,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on May 29, 2013 at 04:18 PM. + Last updated on May 29, 2013 at 05:21 PM. </div> </body> </html> \ No newline at end of file diff --git a/search.html b/search.html index 5606418..f93ff49 100644 --- a/search.html +++ b/search.html @@ -153,7 +153,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on May 29, 2013 at 04:18 PM. + Last updated on May 29, 2013 at 05:21 PM. </div> </body> </html> \ No newline at end of file diff --git a/searchindex.js b/searchindex.js index 9063c49..33bfb55 100644 --- a/searchindex.js +++ b/searchindex.js @@ -1 +1 @@ -Search.setIndex({objects:{"":{"/#account_id/members/#member_id/groups/remove":[8,1,1,"put--#account_id-members-#member_id-groups-remove"],"/#account_id/mailings/#mailing_id/winner/#winner_id":[9,2,1,"post--#account_id-mailings-#mailing_id-winner-#winner_id"],"/#account_id/response/#mailing_id/in_progress":[5,0,1,"get--#account_id-response-#mailing_id-in_progress"],"/#account_id/members/groups/remove":[8,1,1,"put--#account_id-members-groups-remove"],"/#account_id/mailings/#mailing_id/searches":[9,0,1,"get--#account_id-mailings-#mailing_id-searches"],"/#account_id/fields":[10,2,1,"post--#account_id-fields"],"/#account_id/members/#group_id/copy":[8,1,1,"put--#account_id-members-#group_id-copy"],"/#account_id/members/status":[8,1,1,"put--#account_id-members-status"],"/#account_id/response/#mailing_id/shares/overview":[5,0,1,"get--#account_id-response-#mailing_id-shares-overview"],"/#account_id/webhooks/events":[4,0,1,"get--#account_id-webhooks-events"],"/#account_id/members/#member_id/optout":[8,0,1,"get--#account_id-members-#member_id-optout"],"/#account_id/webhooks":[4,3,1,"delete--#account_id-webhooks"],"/#account_id/fields/#field_id":[10,3,1,"delete--#account_id-fields-#field_id"],"/#account_id/response/#mailing_id":[5,0,1,"get--#account_id-response-#mailing_id"],"/#account_id/groups/#member_group_id/members/remove":[13,3,1,"delete--#account_id-groups-#member_group_id-members-remove"],"/#account_id/searches":[7,2,1,"post--#account_id-searches"],"/#account_id/members/imports":[8,0,1,"get--#account_id-members-imports"],"/#account_id/forwards/#mailing_id/#member_id":[9,2,1,"post--#account_id-forwards-#mailing_id-#member_id"],"/#account_id/response/#mailing_id/customer_share_clicks":[5,0,1,"get--#account_id-response-#mailing_id-customer_share_clicks"],"/#account_id/mailings/#mailing_id/messages/#member_id":[9,0,1,"get--#account_id-mailings-#mailing_id-messages-#member_id"],"/#account_id/members/#member_id/mailings":[8,0,1,"get--#account_id-members-#member_id-mailings"],"/#account_id/groups/#from_group_id/#to_group_id/members/copy":[13,1,1,"put--#account_id-groups-#from_group_id-#to_group_id-members-copy"],"/#account_id/triggers":[14,2,1,"post--#account_id-triggers"],"/#account_id/triggers/#trigger_id":[14,3,1,"delete--#account_id-triggers-#trigger_id"],"/#account_id/members/delete":[8,1,1,"put--#account_id-members-delete"],"/#account_id/mailings/#mailing_id/groups":[9,0,1,"get--#account_id-mailings-#mailing_id-groups"],"/#account_id/response/#mailing_id/forwards":[5,0,1,"get--#account_id-response-#mailing_id-forwards"],"/#account_id/members/#member_id":[8,3,1,"delete--#account_id-members-#member_id"],"/#account_id/triggers/#trigger_id/mailings":[14,0,1,"get--#account_id-triggers-#trigger_id-mailings"],"/#account_id/searches/#search_id/members":[7,0,1,"get--#account_id-searches-#search_id-members"],"/#account_id/members/status/:status_from/to/:status_to":[8,1,1,"put--#account_id-members-status--status_from-to--status_to"],"/#account_id/response/#mailing_id/sends":[5,0,1,"get--#account_id-response-#mailing_id-sends"],"/#account_id/members":[8,3,1,"delete--#account_id-members"],"/#account_id/members/email/:email":[8,0,1,"get--#account_id-members-email--email"],"/#account_id/response/#mailing_id/links":[5,0,1,"get--#account_id-response-#mailing_id-links"],"/#account_id/searches/#search_id":[7,3,1,"delete--#account_id-searches-#search_id"],"/#account_id/members/imports/#import_id/members":[8,0,1,"get--#account_id-members-imports-#import_id-members"],"/#account_id/fields/#field_id/clear":[10,2,1,"post--#account_id-fields-#field_id-clear"],"/#account_id/groups/#member_group_id/members":[13,3,1,"delete--#account_id-groups-#member_group_id-members"],"/#account_id/members/imports/#import_id":[8,0,1,"get--#account_id-members-imports-#import_id"],"/#account_id/response":[5,0,1,"get--#account_id-response"],"/#account_id/response/#mailing_id/opens":[5,0,1,"get--#account_id-response-#mailing_id-opens"],"/#account_id/members/imports/delete":[8,3,1,"delete--#account_id-members-imports-delete"],"/#account_id/mailings":[9,0,1,"get--#account_id-mailings"],"/#account_id/mailings/cancel/#mailing_id":[9,3,1,"delete--#account_id-mailings-cancel-#mailing_id"],"/#account_id/mailings/validate":[9,2,1,"post--#account_id-mailings-validate"],"/#account_id/response/#mailing_id/deliveries":[5,0,1,"get--#account_id-response-#mailing_id-deliveries"],"/#account_id/mailings/#mailing_id/members":[9,0,1,"get--#account_id-mailings-#mailing_id-members"],"/#account_id/response/#share_id/customer_share":[5,0,1,"get--#account_id-response-#share_id-customer_share"],"/#account_id/webhooks/#webhook_id":[4,3,1,"delete--#account_id-webhooks-#webhook_id"],"/#account_id/members/add":[8,2,1,"post--#account_id-members-add"],"/#account_id/members/email/optout/:email":[8,1,1,"put--#account_id-members-email-optout--email"],"/#account_id/response/#mailing_id/optouts":[5,0,1,"get--#account_id-response-#mailing_id-optouts"],"/#account_id/response/#mailing_id/shares":[5,0,1,"get--#account_id-response-#mailing_id-shares"],"/#account_id/groups/#member_group_id":[13,3,1,"delete--#account_id-groups-#member_group_id"],"/#account_id/mailings/#mailing_id":[9,3,1,"delete--#account_id-mailings-#mailing_id"],"/#account_id/members/#member_id/groups":[8,3,1,"delete--#account_id-members-#member_id-groups"],"/#account_id/groups":[13,2,1,"post--#account_id-groups"],"/#account_id/response/#mailing_id/clicks":[5,0,1,"get--#account_id-response-#mailing_id-clicks"],"/#account_id/mailings/#mailing_id/headsup":[9,0,1,"get--#account_id-mailings-#mailing_id-headsup"],"/#account_id/response/#mailing_id/signups":[5,0,1,"get--#account_id-response-#mailing_id-signups"],"/#account_id/response/#mailing_id/customer_shares":[5,0,1,"get--#account_id-response-#mailing_id-customer_shares"]}},terms:{all:[0,1,4,5,8,9,10,11,12,13,14],code:[0,1,6,3],change_typ:8,queri:[0,2,4],month:[0,5,9,14],four:[0,5],mile:0,least:0,follow:[0,1,4,5,7,9,11,13],link_target:[5,9],content:[1,11,6,9,3],privat:1,specif:[8,9,4],friendli:5,send:[1,9,4,3,5],program:1,customer_share_click:5,those:[1,12,5],group_upd:[12,4],sent:[5,8,12,9,14],curl_clos:[1,6,3],brown:[7,8],digit:5,everi:0,string:[0,4,5,7,8,9,10,12,13,14],fals:[1,3,4,5,6,7,8,9,10,13,14],webhook:[1,12,4],mailing_status:9,trigger_id:14,webview_share_click:5,affect:[7,8],member_add:[12,4],create_mail:9,new_boolean:10,foo:0,level:1,group_delet:[12,4],list:[0,1,2,4,5,7,8,9,10,11,12,13,14],upload:8,iter:2,"try":8,item:2,plaintext_onli:[9,14],div:[4,5,7,8,9,10,13,14],survey_id:14,setup:1,pleas:[1,8,11,9],prevent:2,work:[1,4],ten:0,sync:10,sign:[0,5,4],past:1,second:[0,7,14],field_creat:[12,4],further:1,shortcut_nam:10,click:[0,4,5,7,8,12,14],append:2,even:10,what:1,hide:[4,5,7,8,9,10,13,14],appear:[1,8],from_group_id:13,section:1,current:[1,8,12,9],delet:[1,4,7,8,9,10,12,13,14],"new":[1,4,5,7,8,9,10,11,13,14],net:[1,2,6,3],delivery_t:8,method:[5,8,13,4,9],can:[0,1,2,4,5,7,8,9,11,12,13],widget:[7,10,8,9,13],full:1,hash:0,datematch:0,displai:10,variat:9,gener:[0,8,12,14],onli:[5,8],here:[0,1,3,5,6,8],bodi:9,let:[1,4,10],address:[0,1,8,6,9],along:8,sinc:8,valu:[0,5,7,8,10,11],field_upd:[12,4],search:[0,1,8,9,7],survei:14,sender:[9,14],larger:2,queue:5,prior:9,action:[0,8],chang:[8,4],campaign:5,newbi:5,appli:[7,14],prefer:0,young:1,myemma:[4,5,7,8,9,13],filenam:8,customer_shar:5,"boolean":[0,1,5,7,8,9,10,13,14],curlopt_postfield:[1,3],total:5,jone:[7,5,8,13],select:[1,10],newslett:[7,8,13],describ:7,would:[0,1],commun:1,regist:4,two:[0,5],coverag:1,next:[0,1],create_webhook:4,few:[5,8],call:[1,2,3,4,6,8,12],criteria:7,member_add_to_group:[12,4],type:[1,3,4,5,6,7,10,9,14],until:2,more:[0,4,7,8,9,13],peopl:5,relat:[1,8,11,9],about:[10,8,12,4,9],notic:8,thide:[4,5,7,8,9,10,13,14],flag:[5,7,8,10,9,14],exce:2,indic:8,examin:1,particular:[1,4,5,8,10,12,9],in_progress:5,origin:9,must:[0,7,13,10],none:9,endpoint:[1,4,5,7,8,9,10,13,14],join:[0,7],hour:0,der:1,member_sinc:[0,5,7,8,9,13],uniqu:5,histori:8,soup:7,remain:[0,9],archiv:[5,9],member_optout:[12,4],drill:5,control:[1,11,9],quickstart:1,give:5,forward_mailing_id:5,email_domain:[0,5],share:[0,5,8,12,4],accept:[0,5,7,8,9,10,11,13,14],total_click:5,tag:[11,9],want:[1,12,13,5],occur:[7,12],some_numeric_field:0,delai:14,alwai:0,webhook_event_id:4,cours:1,multipl:[10,8],first_nam:[1,3,5,7,8,9,10,11,13,14],started_or_finish:[9,14],anoth:[9,13],get:[1,4,5,6,7,8,9,10,13,14],message_open:[12,4],html_bodi:[9,14],share_statu:5,push_offset:14,del_statu:5,tild:5,num_members_upd:8,simpl:0,chri:9,pizza:[7,8],map:0,autent:1,referenc:7,xxxx:6,sundai:0,jacqu:1,membership:13,taco:[7,5,8,9,13],mai:12,end:[2,8],associ:[1,8,9,4,5],grow:1,welcom:11,add_onli:8,"short":0,json_encod:[1,3],optout:[5,8,12,13],num_dupl:8,favorit:10,correspond:[0,1],greet:11,predic:[0,1],issu:[1,10],"12t11":[7,5,8,9,13],combin:7,allow:[0,7,8],some_zipcode_field:0,signed_up:5,order:[5,10],michel:[8,9],mailing_nam:5,checkbox:10,fields_upd:8,over:2,soon:1,buyer:[7,8,9,13],comma:[9,13],is_dis:14,vari:8,paramet:[2,4,5,7,8,9,10,13,14],widget_typ:10,style:[0,4,5,7,8,9,10,13,14],group:[0,1,3,4,7,8,9,12,13,14],curl_setopt:[1,6,3],how:[7,1,2,4],fix:1,import_start:8,better:[13,14],platform:1,pend:[1,9],mailing_list:9,onc:9,mail:[0,1,4,5,8,11,12,9,14],hidden:13,main:1,might:[1,4],link_nam:[5,9],them:[8,9],messag:[4,5,8,12,11,9,14],"return":[0,1,4,5,7,8,9,10,12,13,14],greater:[0,8],thei:[0,9],food:10,timestamp:[0,5,12,9,10],spell:4,nashvil:1,dai:0,auth:1,framework:1,instead:[12,2,8],now:5,down:5,term:[0,1],alex:9,name:[0,4,5,7,8,9,10,11,13,14],edit:[7,1,14,10],curl_getinfo:[1,6,3],authent:[1,6,4,3],successufulli:4,separ:[1,9,13],each:[1,2,5,9,12,11,13],found:[8,9,4,14],updat:[4,7,8,9,10,12,13,14],denni:1,status:[8,9],domain:0,weight:[4,5,7,8,9,10,13,14],resum:9,individu:[5,8],hard:[0,5],last_nam:[1,3,5,7,8,9,10,11,13,14],"05t15":5,birthdai:[10,14],connect:[1,6,3],doug:1,our:[1,11,12,4,14],happen:[1,4,5],commiss:1,short_display_nam:10,special:[0,7,8,13],out:[0,1,4,5,7,8,10,13],variabl:[1,6,3],message_shar:[12,4],network:[5,12],private_api_kei:[1,6,3],check_multipl:10,categori:1,rel:0,print:6,correct:10,integr:1,benjamin:[1,8],qualifi:11,insid:1,advanc:0,contain:[0,5,7,13,10,9],given:[0,8,9,4],standard:[5,9],status_from:8,base:[5,8],recipient_search:9,dictionari:8,put:[4,7,8,9,10,13,14],span:[4,5,7,8,9,10,13,14],"13t23":[7,5,8],refer:[5,7,8,13,10,9],visit:11,could:1,omit:5,success:[1,3,7,8,9,13],filter:[0,1,7],search_id:7,pagin:[1,2],member_id:[5,7,8,9,12,13],summari:[1,5],assign:9,first:[0,1,10,5],oper:[0,1,7,14],rang:5,notifi:12,directli:0,curlopt_ssl_verifyp:[1,6,3],curl_init:[1,6,3],number:[5,2,13,3,10],placehold:[1,11],date:[0,5,8,10,11,14],unlik:9,alreadi:[10,8,9,13],done:8,plaintext_pref:[7,8,9,13],oppos:8,open:[0,3,4,5,6,7,8,12],payload:4,fanci:5,size:2,differ:0,"long":10,script:1,data:[1,3,4,5,10,12],system:[8,12,4,14],wrapper:1,attach:11,easier:12,friend:11,curlinfo_http_cod:[1,6,3],shell:0,option:[0,5,7,8,9,10,13,14],especi:8,signup:[0,1,3,4,5,8,12,14],copi:[8,13],member_upd:[12,4],specifi:[0,2,7,8,10,11,9,14],curl_exec:[1,6,3],curlopt_httphead:[1,6,3],member_signup:[12,4],create_search:7,part:[0,9],enclos:11,than:[0,1,2,3,12,13],with_plaintext:9,"02t10":[5,8],"02t11":[5,8],"02t13":5,nathan:8,whenev:8,provid:[1,5,8,12,9,14],remov:[12,8,13,4],mailing_start:4,rate:2,structur:7,charact:9,greg:8,trackabl:11,were:5,minut:0,danc:1,error_count:[7,8,9,13],pre:[4,5,7,8,9,10,13,14],cleaner:1,sai:0,share_id:5,signup_form_id:[0,8,12,9,14],plaintext:[5,9,14],pass:[1,3],ani:[0,1,2,7,8,9],have:[0,1,5,8,12,9],tabl:5,need:1,seen:5,"null":[7,8,13,10,9,14],kevin:[9,14],signup_mail:0,caus:14,built:1,inform:[1,4,6,8,9,10,13],object_id:14,note:[1,8,9,4],also:[0,4,5,7,8,9,11,13],exampl:[0,1,3,5,6,7,11],take:[0,4],which:[0,1,4,8,10,12,9,14],some_number_field:0,singl:[0,1,3,4,5,8,10,12,13],excit:11,sure:1,delete_memb:13,normal:9,parent_mail:14,recipient_count:[5,9,14],previou:9,field_id:[10,12,14],last_run_at:7,most:14,pair:11,"class":[4,5,7,8,9,10,13,14],don:1,member_group_id:[8,9,13],mcconnel:[9,14],url:[1,3,4,5,6,12],mailing_finish:[12,4],clear:10,request:[1,2,3],doe:[0,5,7,8,9,10,13],member_status_upd:[12,4],declar:9,tech:4,determin:1,dataset:10,dow:0,recipi:9,"6db0cc7e6fdb2da589b65f29d90c96b6":9,show:[4,5,7,8,9,10,11,13,14],text:[10,11,12],radiu:0,syntax:[0,1,11,9],radio:10,font:[4,5,7,8,9,10,13,14],fine:9,find:[1,6,5],status_to:8,toast:[7,5,8,13],access:[1,5],giant:12,just:[0,1,9],pretti:8,column_ord:10,explain:[0,1],winner:9,activ:[1,5,7,8,13,9],figur:1,should:[1,2,3,7,8,11,9],templat:[11,14],share_count:5,count:[1,2,3,5],variou:[8,13],confirmed_opt_in:[7,8,9,13],familiar:1,express:0,account:[1,4,5,7,8,10,13,14],becaus:12,repo:1,cannot:[8,9,4],progress:9,report:[10,8],requir:[1,7,8,10,11,9],object:[1,13,5],favorite_food:[5,7,8,13,10,9],bar:0,organ:1,include_archiv:[5,9],"public":1,"default":[5,11,13,4,9],ref_member_id:5,message_share_click:[12,4],through:[1,8,4],where:[0,1,8,11,7],view:1,user:[0,8,9,13],set:[0,1,2,3,6,8,9,12,13],link_id:[0,5,12,9,14],see:[7,1,8],result:[0,1,2,5,8,9],respons:[0,1,2,4,5,7,8,9,10,13,14],fail:[5,9,4],themselv:2,member_field:[0,7],xxxxx:6,subject:[8,12,9,14],statu:[1,4,5,7,8,9,12,13],fancyonion:11,kei:[0,1,8,11,4],is_schedul:9,message_forward:[12,4],databas:8,someth:1,last_modified_at:[7,8,9,13],addresse:5,written:1,between:[0,7,2],clicked_uniqu:5,"import":[1,8,12,4,10],subscript:[1,3],entiti:1,curlopt_url:[1,6,3],email:[0,1,3,5,6,7,8,9,13],wide:14,extend:1,numer:10,http404:[4,5,7,8,9,10,13,14],job:13,entir:[0,8],share_click:5,to_group_id:13,come:1,curlopt_returntransf:[1,6,3],addit:[0,1,8,9,11,13],member_remove_from_group:[12,4],send_start:[0,9,14],protect:1,accident:2,last:[0,5,10],delimit:5,lentil:7,pertain:5,message_click:[12,4],curlopt_post:[1,3],audienc:[1,8,9],mang:0,improv:1,http500:14,seri:5,com:[4,5,6,7,8,9,11,13],zip_code_field:0,"03t15":[7,5,8,13],point:1,toni:[7,8],overview:[0,1,11,12,5],period:1,winner_id:9,colon:[7,11],optout_count:[7,8,9,13],suppli:9,cancel:9,tuesdai:0,duplic:5,quit:[5,8],user_id:4,recur:14,headsup:9,addition:[1,2],due:5,been:[1,8,10,5],mark:[8,9],whom:9,tshow:[4,5,7,8,9,10,13,14],trigger:[1,4,5,7,8,9,10,12,13,14],unsubscrib:0,treat:8,interest:[10,4],basic:[0,1,4,8,13,14],monthli:[7,8,13],member_delet:[12,4],"29t16":[7,14],hesit:1,blob:4,email_us:[0,5],mailing_mailing_id:5,mailing_id:[0,5,8,12,9,14],fire:[8,4,14],xxx:[1,3],rubi:1,argument:[0,5],link_ord:[5,9],input:1,extract:11,present:7,statist:8,"case":[1,8],look:[1,14,10],frozen:9,durat:9,email_error:[7,8,9,13],defin:[0,10,8,9],"while":0,smith:[7,5,8,9,13],outcom:5,abov:[0,1,8,7],error:[1,3,6,8,10,13],veen:1,loop:8,opt:[0,4,5,7,8,13],readi:9,deliv:5,recipient_group:9,equal:0,itself:0,new_statu:12,webhook_id:4,develop:1,recipient_memb:9,perform:8,make:[1,12,6,10],belong:[0,8,4],same:4,check:[8,6,9],member:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14],python:1,html:9,split:9,document:[1,11,12],complet:[1,3,4,6,8,9],week:0,finish:[5,12,4],http:[1,2,3,4,5,6,11,9],href:[4,5,7,8,9,10,13,14],nest:0,someon:4,rais:[4,5,7,8,9,10,13,14],initi:[10,9],php:[1,6,3],studi:1,recent:[1,8],kept:11,center:0,min:5,well:[1,5],inherit:9,person:9,mailing_typ:[9,14],without:[0,1],command:1,thi:[0,1,4,5,7,8,9,10,12,13,14],undefin:0,http_code:[1,6,3],latest:11,construct:[0,7,9],identifi:8,paus:9,execut:[1,3],less:0,resp:[4,5,7,8,9,10,13,14],"_post":[1,3],against:0,aspect:13,recipient_email:9,source_filenam:8,yet:5,languag:1,"12t09":[7,8],display_nam:10,easi:[1,12,10],"01t00":8,had:0,littl:1,blog:4,add:[12,1,8,13,3],other:[1,8,9,3,5],curlopt_userpwd:[1,6,3],import_finish:[8,12,4],schedul:9,els:[1,6,3],save:7,match:[0,7],build:1,sanit:1,applic:[1,6,3],account_id:[1,3,4,5,6,7,8,9,10,12,13,14],handl:1,disposit:1,crud:[8,13,14],print_r:[6,3],mailing_statu:[9,14],know:[1,4,5],background:13,parent_mailing_id:[9,14],bit:1,insert:11,emma:[1,5,7,8,9,12,13],like:1,onion:11,deprec:4,arbitrari:8,manual:9,integ:[1,8,14,10,5],collect:1,api:[1,2,3,6,8,12],either:[0,5,7],bunch:0,output:9,group_id:[1,8,12,3],soft:[0,5],manag:[0,1,13,4],import_id:[8,12],www:[5,9],old:7,deal:[8,13],captur:1,arrai:[0,1,3,5,6,7,8,9,10,12,13,14],some:[1,11,5],field_delet:[12,4],certain:12,intern:10,sampl:[1,4,5,7,8,9,10,13,14],elaps:[2,9],unless:1,deleted_at:[7,8,13,10,9,14],some_string_field:0,librari:11,woodcock:1,emmarubi:1,bounce_count:[7,8,9,13],emmapython:1,public_kei:4,deliveri:5,broad:12,per:5,send_finish:[9,14],larg:[0,2],condit:7,three:9,network_cod:12,localhost:9,emmaphp:1,with_html_bodi:9,who:[0,5,8],bold:[4,5,7,8,9,10,13,14],event_typ:14,inspect:1,usag:[1,8,12],monsewicz:1,num_members_ad:8,fulli:11,from:[1,4,8,9,12,13,14],post:[1,3,4,7,8,9,10,12,13,14],group_creat:[12,4],gladi:[7,5,8,13],hurst:1,actual:5,zip:0,groups_upd:8,column:10,page:2,includ:[1,5,7,8,9,10,13],webview:9,mean:0,disabl:[9,14],block:[1,2],yyyi:5,own:1,member_data:[1,3],glob:0,bounc:[0,5],within:[0,8],encod:[9,4],delivery_typ:[5,8],compos:0,webview_shar:5,field_typ:10,active_count:[7,8,9,13],public_webview_url:9,pivot:5,your:[1,4,5,7,8,9,10,13],websit:11,fast:8,van:1,wai:[1,12],area:1,overus:2,group_nam:[8,12,13,9],support:12,unique_click:5,json:[0,1,3,4,6,7],submit:1,custom:[5,8,11,10],avail:[0,11,4],start:[1,2,8,4],interfac:12,send_at:[9,14],exceed:2,"var":3,interv:[0,14],fork:1,head:[1,6,9,3],form:[1,3,4,6,8,10,14],enough:2,forc:1,forward:[0,4,5,8,12,9],"31st":0,group_typ:[8,9,13],push_offset_unit:14,link:[0,4,5,11,9,14],line:[1,5],realli:1,"true":[0,1,2,3,4,6,7,8,9,10,13,14],archived_t:[9,14],info:4,pull:[1,2],made:1,possibl:[5,8,12],whether:8,maximum:2,tell:12,http403:9,record:[0,7,8],below:[0,1,8,12],http400:[7,8,9],limit:[5,2,8,9],some_array_field:0,otherwis:[1,8,10],start_t:14,mta:5,expect:1,notif:9,creat:[4,5,7,9,10,12,13,14],"int":5,retriev:[7,1,2,8,9],year:[0,5,9,14],repres:5,exist:[0,4,5,7,8,10,13],behavior:11,bob:[7,5],curl:[1,6],portland:1,probabl:14,echo:[1,3],successfulli:[5,8,9],mailing_subject:12,grp:13,todo:11,when:[8,12,4,9],detail:[1,4,7,8,9,10,13],invalid:[7,8,9],event:[4,7,8,13,12,9,14],field:[0,1,3,4,5,7,8,9,10,11,12,13,14],valid:[5,8,9,13],futur:1,num_skip:8,test:[5,6,7,13,9,14],ignor:8,you:[0,1,2,4,5,7,8,9,10,11,12,13],emmasdk:1,member_status_id:[7,5,8,9,13],public_api_kei:[1,6,3],stat:[5,9],claus:[0,7],event_nam:[12,4],e2ma:[1,2,6,3],error_messag:8,param:[9,4],app_messag:[1,3],ella:8,bulk:[1,8],receiv:[0,2,5,8,12,9],heads_up_email:9,longer:9,home:11,confirm:8,descript:[4,14],ohmyemma:1,portion:0,opted_out:5,time:[1,2,8,13,5],reply_to:[9,14],resource_url:12,hello:[11,9,14]},objtypes:{"0":"http:get","1":"http:put","2":"http:post","3":"http:delete"},titles:["Search Syntax","Emma API","Pagination","PHP Signup Example","Webhooks","Response","PHP Get Member By Email Example","Searches","Members","Mailings","Fields","Placeholder Syntax","Webhook Usage","Groups","Triggers"],objnames:{"0":["http","get","HTTP get"],"1":["http","put","HTTP put"],"2":["http","post","HTTP post"],"3":["http","delete","HTTP delete"]},filenames:["member_search","index","pagination","php_signup_example","api/external/webhooks","api/external/response","php_get_member_example","api/external/searches","api/external/members","api/external/mailings","api/external/fields","placeholders","webhooks","api/external/groups","api/external/triggers"]}) \ No newline at end of file +Search.setIndex({objects:{"":{"/#account_id/members/#member_id/groups/remove":[8,1,1,"put--#account_id-members-#member_id-groups-remove"],"/#account_id/mailings/#mailing_id/winner/#winner_id":[9,2,1,"post--#account_id-mailings-#mailing_id-winner-#winner_id"],"/#account_id/response/#mailing_id/in_progress":[5,0,1,"get--#account_id-response-#mailing_id-in_progress"],"/#account_id/members/groups/remove":[8,1,1,"put--#account_id-members-groups-remove"],"/#account_id/mailings/#mailing_id/searches":[9,0,1,"get--#account_id-mailings-#mailing_id-searches"],"/#account_id/fields":[10,2,1,"post--#account_id-fields"],"/#account_id/members/#group_id/copy":[8,1,1,"put--#account_id-members-#group_id-copy"],"/#account_id/members/status":[8,1,1,"put--#account_id-members-status"],"/#account_id/response/#mailing_id/shares/overview":[5,0,1,"get--#account_id-response-#mailing_id-shares-overview"],"/#account_id/webhooks/events":[4,0,1,"get--#account_id-webhooks-events"],"/#account_id/members/#member_id/optout":[8,0,1,"get--#account_id-members-#member_id-optout"],"/#account_id/webhooks":[4,3,1,"delete--#account_id-webhooks"],"/#account_id/fields/#field_id":[10,3,1,"delete--#account_id-fields-#field_id"],"/#account_id/response/#mailing_id":[5,0,1,"get--#account_id-response-#mailing_id"],"/#account_id/groups/#member_group_id/members/remove":[13,3,1,"delete--#account_id-groups-#member_group_id-members-remove"],"/#account_id/searches":[7,2,1,"post--#account_id-searches"],"/#account_id/members/imports":[8,0,1,"get--#account_id-members-imports"],"/#account_id/forwards/#mailing_id/#member_id":[9,2,1,"post--#account_id-forwards-#mailing_id-#member_id"],"/#account_id/response/#mailing_id/customer_share_clicks":[5,0,1,"get--#account_id-response-#mailing_id-customer_share_clicks"],"/#account_id/mailings/#mailing_id/messages/#member_id":[9,0,1,"get--#account_id-mailings-#mailing_id-messages-#member_id"],"/#account_id/members/#member_id/mailings":[8,0,1,"get--#account_id-members-#member_id-mailings"],"/#account_id/groups/#from_group_id/#to_group_id/members/copy":[13,1,1,"put--#account_id-groups-#from_group_id-#to_group_id-members-copy"],"/#account_id/triggers":[14,2,1,"post--#account_id-triggers"],"/#account_id/triggers/#trigger_id":[14,3,1,"delete--#account_id-triggers-#trigger_id"],"/#account_id/members/delete":[8,1,1,"put--#account_id-members-delete"],"/#account_id/mailings/#mailing_id/groups":[9,0,1,"get--#account_id-mailings-#mailing_id-groups"],"/#account_id/response/#mailing_id/forwards":[5,0,1,"get--#account_id-response-#mailing_id-forwards"],"/#account_id/members/#member_id":[8,3,1,"delete--#account_id-members-#member_id"],"/#account_id/triggers/#trigger_id/mailings":[14,0,1,"get--#account_id-triggers-#trigger_id-mailings"],"/#account_id/searches/#search_id/members":[7,0,1,"get--#account_id-searches-#search_id-members"],"/#account_id/members/status/:status_from/to/:status_to":[8,1,1,"put--#account_id-members-status--status_from-to--status_to"],"/#account_id/response/#mailing_id/sends":[5,0,1,"get--#account_id-response-#mailing_id-sends"],"/#account_id/members":[8,3,1,"delete--#account_id-members"],"/#account_id/members/email/:email":[8,0,1,"get--#account_id-members-email--email"],"/#account_id/response/#mailing_id/links":[5,0,1,"get--#account_id-response-#mailing_id-links"],"/#account_id/searches/#search_id":[7,3,1,"delete--#account_id-searches-#search_id"],"/#account_id/members/imports/#import_id/members":[8,0,1,"get--#account_id-members-imports-#import_id-members"],"/#account_id/fields/#field_id/clear":[10,2,1,"post--#account_id-fields-#field_id-clear"],"/#account_id/groups/#member_group_id/members":[13,3,1,"delete--#account_id-groups-#member_group_id-members"],"/#account_id/members/imports/#import_id":[8,0,1,"get--#account_id-members-imports-#import_id"],"/#account_id/response":[5,0,1,"get--#account_id-response"],"/#account_id/response/#mailing_id/opens":[5,0,1,"get--#account_id-response-#mailing_id-opens"],"/#account_id/members/imports/delete":[8,3,1,"delete--#account_id-members-imports-delete"],"/#account_id/mailings":[9,0,1,"get--#account_id-mailings"],"/#account_id/mailings/cancel/#mailing_id":[9,3,1,"delete--#account_id-mailings-cancel-#mailing_id"],"/#account_id/mailings/validate":[9,2,1,"post--#account_id-mailings-validate"],"/#account_id/response/#mailing_id/deliveries":[5,0,1,"get--#account_id-response-#mailing_id-deliveries"],"/#account_id/mailings/#mailing_id/members":[9,0,1,"get--#account_id-mailings-#mailing_id-members"],"/#account_id/response/#share_id/customer_share":[5,0,1,"get--#account_id-response-#share_id-customer_share"],"/#account_id/webhooks/#webhook_id":[4,3,1,"delete--#account_id-webhooks-#webhook_id"],"/#account_id/members/add":[8,2,1,"post--#account_id-members-add"],"/#account_id/members/email/optout/:email":[8,1,1,"put--#account_id-members-email-optout--email"],"/#account_id/response/#mailing_id/optouts":[5,0,1,"get--#account_id-response-#mailing_id-optouts"],"/#account_id/response/#mailing_id/shares":[5,0,1,"get--#account_id-response-#mailing_id-shares"],"/#account_id/groups/#member_group_id":[13,3,1,"delete--#account_id-groups-#member_group_id"],"/#account_id/mailings/#mailing_id":[9,3,1,"delete--#account_id-mailings-#mailing_id"],"/#account_id/members/#member_id/groups":[8,3,1,"delete--#account_id-members-#member_id-groups"],"/#account_id/groups":[13,2,1,"post--#account_id-groups"],"/#account_id/response/#mailing_id/clicks":[5,0,1,"get--#account_id-response-#mailing_id-clicks"],"/#account_id/mailings/#mailing_id/headsup":[9,0,1,"get--#account_id-mailings-#mailing_id-headsup"],"/#account_id/response/#mailing_id/signups":[5,0,1,"get--#account_id-response-#mailing_id-signups"],"/#account_id/response/#mailing_id/customer_shares":[5,0,1,"get--#account_id-response-#mailing_id-customer_shares"]}},terms:{all:[0,1,4,5,8,9,10,11,12,13,14],code:[0,1,6,3],change_typ:8,queri:[0,2,4],month:[0,5,9,14],four:[0,5],mile:0,least:0,follow:[0,1,4,5,7,9,11,13],link_target:[5,9],content:[1,11,6,9,3],privat:1,specif:[8,9,4],friendli:5,send:[1,9,4,3,5],program:1,customer_share_click:5,those:[1,12,5],group_upd:[12,4],sent:[5,8,12,9,14],curl_clos:[1,6,3],brown:[7,8],digit:5,everi:0,string:[0,4,5,7,8,9,10,12,13,14],fals:[1,3,4,5,6,7,8,9,10,13,14],webhook:[1,12,4],mailing_status:9,trigger_id:14,webview_share_click:5,affect:[7,8],member_add:[12,4],create_mail:9,new_boolean:10,foo:0,level:1,group_delet:[12,4],list:[0,1,2,4,5,7,8,9,10,11,12,13,14],upload:8,iter:2,"try":8,item:2,plaintext_onli:[9,14],div:[4,5,7,8,9,10,13,14],survey_id:14,setup:1,pleas:[1,8,11,9],prevent:2,work:[1,4],ten:0,sync:10,sign:[0,5,4],past:1,second:[0,7,14],field_creat:[12,4],further:1,shortcut_nam:10,click:[0,4,5,7,8,12,14],append:2,even:10,what:1,hide:[4,5,7,8,9,10,13,14],appear:[1,8],from_group_id:13,section:1,current:[1,8,12,9],delet:[1,4,7,8,9,10,12,13,14],"new":[1,4,5,7,8,9,10,11,13,14],net:[1,2,6,3],delivery_t:8,method:[5,8,13,4,9],can:[0,1,2,4,5,7,8,9,11,12,13],widget:[7,10,8,9,13],full:1,hash:0,datematch:0,displai:10,variat:9,gener:[0,8,12,14],onli:[5,8],here:[0,1,3,5,6,8],bodi:9,let:[1,4,10],address:[0,1,8,6,9],along:8,sinc:8,valu:[0,5,7,8,10,11],field_upd:[12,4],search:[0,1,8,9,7],survei:14,sender:[9,14],larger:2,queue:5,prior:9,action:[0,8],chang:[8,4],campaign:5,newbi:5,appli:[7,14],prefer:0,young:1,myemma:[4,5,7,8,9,13],filenam:8,customer_shar:5,"boolean":[0,1,5,7,8,9,10,13,14],curlopt_postfield:[1,3],total:5,jone:[7,5,8,13],select:[1,10],newslett:[7,8,13],describ:7,would:[0,1],commun:1,regist:4,two:[0,5],coverag:1,next:[0,1],create_webhook:4,few:[5,8],call:[1,2,3,4,6,8,12],criteria:7,member_add_to_group:[12,4],type:[1,3,4,5,6,7,10,9,14],until:2,more:[0,4,7,8,9,13],peopl:5,relat:[1,8,11,9],about:[10,8,12,4,9],notic:8,thide:[4,5,7,8,9,10,13,14],flag:[5,7,8,10,9,14],exce:2,indic:8,examin:1,particular:[1,4,5,8,10,12,9],in_progress:5,origin:9,must:[0,7,13,10],none:9,endpoint:[1,4,5,7,8,9,10,13,14],join:[0,7],hour:0,der:1,member_sinc:[0,5,7,8,9,13],uniqu:5,histori:8,soup:7,remain:[0,9],archiv:[5,9],member_optout:[12,4],drill:5,control:[1,11,9],quickstart:1,give:5,forward_mailing_id:5,email_domain:[0,5],share:[0,5,8,12,4],accept:[0,5,7,8,9,10,11,13,14],total_click:5,tag:[11,9],want:[1,12,13,5],occur:[7,12],some_numeric_field:0,delai:14,alwai:0,webhook_event_id:4,cours:1,multipl:[10,8],first_nam:[1,3,5,7,8,9,10,11,13,14],started_or_finish:[9,14],anoth:[9,13],get:[1,4,5,6,7,8,9,10,13,14],message_open:[12,4],html_bodi:[9,14],share_statu:5,push_offset:14,del_statu:5,tild:5,num_members_upd:8,simpl:0,chri:9,pizza:[7,8],map:0,autent:1,referenc:7,xxxx:6,sundai:0,jacqu:1,membership:13,taco:[7,5,8,9,13],mai:12,end:[2,8],associ:[1,8,9,4,5],grow:1,welcom:11,add_onli:8,"short":0,json_encod:[1,3],optout:[5,8,12,13],num_dupl:8,favorit:10,correspond:[0,1],greet:11,predic:[0,1],issu:[1,10],"12t11":[7,5,8,9,13],combin:7,allow:[0,7,8],some_zipcode_field:0,signed_up:5,order:[5,10],michel:[8,9],mailing_nam:5,checkbox:10,fields_upd:8,over:2,soon:1,buyer:[7,8,9,13],comma:[9,13],is_dis:14,vari:8,paramet:[2,4,5,7,8,9,10,13,14],widget_typ:10,style:[0,4,5,7,8,9,10,13,14],group:[0,1,3,4,7,8,9,12,13,14],curl_setopt:[1,6,3],how:[7,1,2,4],fix:1,import_start:8,better:[13,14],platform:1,pend:[1,9],mailing_list:9,onc:9,mail:[0,1,4,5,8,11,12,9,14],hidden:13,main:1,might:[1,4],link_nam:[5,9],them:[8,9],messag:[4,5,8,12,11,9,14],"return":[0,1,4,5,7,8,9,10,12,13,14],greater:[0,8],thei:[0,9],food:10,timestamp:[0,5,12,9,10],spell:4,nashvil:1,dai:0,auth:1,framework:1,instead:[12,2,8],now:5,down:5,term:[0,1],alex:9,name:[0,4,5,7,8,9,10,11,13,14],edit:[7,1,14,10],curl_getinfo:[1,6,3],authent:[1,6,4,3],successufulli:4,separ:[1,9,13],each:[1,2,5,9,12,11,13],found:[8,9,4,14],updat:[4,7,8,9,10,12,13,14],denni:1,status:[8,9],domain:0,weight:[4,5,7,8,9,10,13,14],resum:9,individu:[5,8],hard:[0,5],last_nam:[1,3,5,7,8,9,10,11,13,14],"05t15":5,birthdai:[10,14],connect:[1,6,3],doug:1,our:[1,11,12,4,14],happen:[1,4,5],commiss:1,short_display_nam:10,special:[0,7,8,13],out:[0,1,4,5,7,8,10,13],variabl:[1,6,3],message_shar:[12,4],network:[5,12],private_api_kei:[1,6,3],check_multipl:10,categori:1,rel:0,print:6,correct:10,integr:1,benjamin:[1,8],qualifi:11,insid:1,advanc:0,contain:[0,5,7,13,10,9],given:[0,8,9,4],standard:[5,9],status_from:8,base:[5,8],recipient_search:9,dictionari:8,put:[4,7,8,9,10,13,14],span:[4,5,7,8,9,10,13,14],"13t23":[7,5,8],refer:[5,7,8,13,10,9],visit:11,could:1,omit:5,success:[1,3,7,8,9,13],filter:[0,1,7],search_id:7,pagin:[1,2],member_id:[5,7,8,9,12,13],summari:[1,5],assign:9,first:[0,1,10,5],oper:[0,1,7,14],rang:5,notifi:12,directli:0,curlopt_ssl_verifyp:[1,6,3],curl_init:[1,6,3],number:[5,2,13,3,10],placehold:[1,11],date:[0,5,8,10,11,14],unlik:9,alreadi:[10,8,9,13],done:8,plaintext_pref:[7,8,9,13],oppos:8,open:[0,3,4,5,6,7,8,12],payload:4,fanci:5,size:2,differ:0,"long":10,script:1,data:[1,3,4,5,10,12],system:[8,12,4,14],wrapper:1,attach:11,easier:12,friend:11,curlinfo_http_cod:[1,6,3],shell:0,option:[0,5,7,8,9,10,13,14],especi:8,signup:[0,1,3,4,5,8,12,14],copi:[8,13],member_upd:[12,4],specifi:[0,2,7,8,10,11,9,14],curl_exec:[1,6,3],curlopt_httphead:[1,6,3],member_signup:[12,4],create_search:7,part:[0,9],enclos:11,than:[0,1,2,3,12,13],with_plaintext:9,"02t10":[5,8],"02t11":[5,8],"02t13":5,nathan:8,whenev:8,provid:[1,5,8,12,9,14],remov:[12,8,13,4],mailing_start:4,rate:2,structur:7,charact:9,greg:8,trackabl:11,were:5,minut:0,danc:1,error_count:[7,8,9,13],pre:[4,5,7,8,9,10,13,14],cleaner:1,sai:0,share_id:5,signup_form_id:[0,8,12,9,14],plaintext:[5,9,14],pass:[1,3],ani:[0,1,2,7,8,9],have:[0,1,5,8,12,9],tabl:5,need:1,seen:5,"null":[7,8,13,10,9,14],kevin:[9,14],signup_mail:0,caus:14,built:1,inform:[1,4,6,8,9,10,13],object_id:14,note:[1,8,9,4],also:[0,4,5,7,8,9,11,13],exampl:[0,1,3,5,6,7,11],take:[0,4],which:[0,1,4,8,10,12,9,14],some_number_field:0,singl:[0,1,3,4,5,8,10,12,13],excit:11,sure:1,delete_memb:13,normal:9,parent_mail:14,recipient_count:[5,9,14],previou:9,field_id:[10,12,14],last_run_at:7,most:14,pair:11,"class":[4,5,7,8,9,10,13,14],don:1,member_group_id:[8,9,13],mcconnel:[9,14],url:[1,3,4,5,6,12],mailing_finish:[12,4],clear:10,request:[1,2,3],doe:[0,5,7,8,9,10,13],member_status_upd:[12,4],declar:9,tech:4,determin:1,dataset:10,dow:0,recipi:9,"6db0cc7e6fdb2da589b65f29d90c96b6":9,show:[4,5,7,8,9,10,11,13,14],text:[10,11,12],radiu:0,syntax:[0,1,11,9],radio:10,font:[4,5,7,8,9,10,13,14],fine:9,find:[1,6,5],status_to:8,toast:[7,5,8,13],access:[1,5],giant:12,just:[0,1,9],pretti:8,column_ord:10,explain:[0,1],winner:9,activ:[1,5,7,8,13,9],figur:1,should:[1,2,3,7,8,11,9],templat:[11,14],share_count:5,count:[1,2,3,5],variou:[8,13],confirmed_opt_in:[7,8,9,13],familiar:1,express:0,account:[1,4,5,7,8,10,13,14],becaus:12,repo:1,cannot:[8,9,4],progress:9,report:[10,8],requir:[1,7,8,10,11,9],object:[1,13,5],favorite_food:[5,7,8,13,10,9],bar:0,organ:1,include_archiv:[5,9],"public":1,"default":[5,11,13,4,9],ref_member_id:5,message_share_click:[12,4],through:[1,8,4],where:[0,1,8,11,7],view:1,user:[0,8,9,13],set:[0,1,2,3,6,8,9,12,13],link_id:[0,5,12,9,14],see:[7,1,8],result:[0,1,2,5,8,9],respons:[0,1,2,4,5,7,8,9,10,13,14],fail:[5,9,4],themselv:2,member_field:[0,7],xxxxx:6,subject:[8,12,9,14],statu:[1,4,5,7,8,9,12,13],fancyonion:11,kei:[0,1,8,11,4],is_schedul:9,message_forward:[12,4],databas:8,someth:1,last_modified_at:[7,8,9,13],addresse:5,written:1,between:[0,7,2],clicked_uniqu:5,"import":[1,8,12,4,10],subscript:[1,3],entiti:1,curlopt_url:[1,6,3],email:[0,1,3,5,6,7,8,9,13],wide:14,extend:1,numer:10,http404:[4,5,7,8,9,10,13,14],job:13,entir:[0,8],share_click:5,to_group_id:13,come:1,curlopt_returntransf:[1,6,3],addit:[0,1,8,9,11,13],member_remove_from_group:[12,4],send_start:[0,9,14],protect:1,accident:2,last:[0,5,10],delimit:5,lentil:7,pertain:5,message_click:[12,4],curlopt_post:[1,3],audienc:[1,8,9],mang:0,improv:1,http500:14,seri:5,com:[4,5,6,7,8,9,11,13],zip_code_field:0,"03t15":[7,5,8,13],point:1,toni:[7,8],overview:[0,1,11,12,5],period:1,winner_id:9,colon:[7,11],optout_count:[7,8,9,13],suppli:9,cancel:9,tuesdai:0,duplic:5,quit:[5,8],user_id:4,recur:14,headsup:9,addition:[1,2],due:5,been:[1,8,10,5],mark:[8,9],whom:9,tshow:[4,5,7,8,9,10,13,14],trigger:[1,4,5,7,8,9,10,12,13,14],unsubscrib:0,treat:8,interest:[10,4],basic:[0,1,4,8,13,14],monthli:[7,8,13],"29t17":[7,14],hesit:1,blob:4,email_us:[0,5],mailing_mailing_id:5,mailing_id:[0,5,8,12,9,14],fire:[8,4,14],xxx:[1,3],rubi:1,argument:[0,5],link_ord:[5,9],input:1,extract:11,present:7,statist:8,"case":[1,8],look:[1,14,10],frozen:9,durat:9,email_error:[7,8,9,13],defin:[0,10,8,9],"while":0,smith:[7,5,8,9,13],outcom:5,abov:[0,1,8,7],error:[1,3,6,8,10,13],veen:1,loop:8,opt:[0,4,5,7,8,13],readi:9,deliv:5,recipient_group:9,equal:0,itself:0,new_statu:12,webhook_id:4,develop:1,recipient_memb:9,perform:8,make:[1,12,6,10],belong:[0,8,4],same:4,check:[8,6,9],member:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14],python:1,html:9,split:9,document:[1,11,12],complet:[1,3,4,6,8,9],week:0,finish:[5,12,4],http:[1,2,3,4,5,6,11,9],href:[4,5,7,8,9,10,13,14],nest:0,someon:4,rais:[4,5,7,8,9,10,13,14],initi:[10,9],php:[1,6,3],studi:1,recent:[1,8],kept:11,center:0,min:5,well:[1,5],inherit:9,person:9,mailing_typ:[9,14],without:[0,1],command:1,thi:[0,1,4,5,7,8,9,10,12,13,14],undefin:0,http_code:[1,6,3],latest:11,construct:[0,7,9],identifi:8,paus:9,execut:[1,3],less:0,resp:[4,5,7,8,9,10,13,14],"_post":[1,3],against:0,aspect:13,recipient_email:9,source_filenam:8,yet:5,languag:1,"12t09":[7,8],display_nam:10,easi:[1,12,10],"01t00":8,had:0,littl:1,blog:4,add:[12,1,8,13,3],other:[1,8,9,3,5],curlopt_userpwd:[1,6,3],import_finish:[8,12,4],schedul:9,els:[1,6,3],save:7,match:[0,7],build:1,sanit:1,applic:[1,6,3],account_id:[1,3,4,5,6,7,8,9,10,12,13,14],handl:1,disposit:1,crud:[8,13,14],print_r:[6,3],mailing_statu:[9,14],know:[1,4,5],background:13,parent_mailing_id:[9,14],bit:1,insert:11,emma:[1,5,7,8,9,12,13],like:1,onion:11,deprec:4,arbitrari:8,manual:9,integ:[1,8,14,10,5],collect:1,api:[1,2,3,6,8,12],either:[0,5,7],bunch:0,output:9,group_id:[1,8,12,3],soft:[0,5],manag:[0,1,13,4],import_id:[8,12],www:[5,9],old:7,deal:[8,13],captur:1,arrai:[0,1,3,5,6,7,8,9,10,12,13,14],some:[1,11,5],field_delet:[12,4],certain:12,intern:10,sampl:[1,4,5,7,8,9,10,13,14],elaps:[2,9],unless:1,deleted_at:[7,8,13,10,9,14],some_string_field:0,librari:11,woodcock:1,emmarubi:1,bounce_count:[7,8,9,13],emmapython:1,public_kei:4,deliveri:5,broad:12,per:5,send_finish:[9,14],larg:[0,2],condit:7,three:9,network_cod:12,localhost:9,emmaphp:1,with_html_bodi:9,who:[0,5,8],bold:[4,5,7,8,9,10,13,14],event_typ:14,inspect:1,usag:[1,8,12],monsewicz:1,num_members_ad:8,fulli:11,from:[1,4,8,9,12,13,14],post:[1,3,4,7,8,9,10,12,13,14],group_creat:[12,4],gladi:[7,5,8,13],hurst:1,actual:5,zip:0,groups_upd:8,column:10,page:2,includ:[1,5,7,8,9,10,13],webview:9,mean:0,disabl:[9,14],block:[1,2],yyyi:5,own:1,member_data:[1,3],glob:0,bounc:[0,5],within:[0,8],encod:[9,4],delivery_typ:[5,8],compos:0,webview_shar:5,field_typ:10,active_count:[7,8,9,13],public_webview_url:9,pivot:5,your:[1,4,5,7,8,9,10,13],websit:11,fast:8,van:1,wai:[1,12],area:1,overus:2,group_nam:[8,12,13,9],support:12,unique_click:5,json:[0,1,3,4,6,7],submit:1,custom:[5,8,11,10],avail:[0,11,4],start:[1,2,8,4],interfac:12,send_at:[9,14],exceed:2,"var":3,interv:[0,14],fork:1,head:[1,6,9,3],form:[1,3,4,6,8,10,14],enough:2,forc:1,forward:[0,4,5,8,12,9],"31st":0,group_typ:[8,9,13],push_offset_unit:14,link:[0,4,5,11,9,14],line:[1,5],realli:1,"true":[0,1,2,3,4,6,7,8,9,10,13,14],archived_t:[9,14],info:4,pull:[1,2],made:1,possibl:[5,8,12],whether:8,maximum:2,tell:12,http403:9,record:[0,7,8],below:[0,1,8,12],http400:[7,8,9],limit:[5,2,8,9],some_array_field:0,otherwis:[1,8,10],start_t:14,mta:5,member_delet:[12,4],expect:1,notif:9,creat:[4,5,7,9,10,12,13,14],"int":5,retriev:[7,1,2,8,9],year:[0,5,9,14],repres:5,exist:[0,4,5,7,8,10,13],behavior:11,bob:[7,5],curl:[1,6],portland:1,probabl:14,echo:[1,3],successfulli:[5,8,9],mailing_subject:12,grp:13,todo:11,when:[8,12,4,9],detail:[1,4,7,8,9,10,13],invalid:[7,8,9],event:[4,7,8,13,12,9,14],field:[0,1,3,4,5,7,8,9,10,11,12,13,14],valid:[5,8,9,13],futur:1,num_skip:8,test:[5,6,7,13,9,14],ignor:8,you:[0,1,2,4,5,7,8,9,10,11,12,13],emmasdk:1,member_status_id:[7,5,8,9,13],public_api_kei:[1,6,3],stat:[5,9],claus:[0,7],event_nam:[12,4],e2ma:[1,2,6,3],error_messag:8,param:[9,4],app_messag:[1,3],ella:8,bulk:[1,8],receiv:[0,2,5,8,12,9],heads_up_email:9,longer:9,home:11,confirm:8,descript:[4,14],ohmyemma:1,portion:0,opted_out:5,time:[1,2,8,13,5],reply_to:[9,14],resource_url:12,hello:[11,9,14]},objtypes:{"0":"http:get","1":"http:put","2":"http:post","3":"http:delete"},titles:["Search Syntax","Emma API","Pagination","PHP Signup Example","Webhooks","Response","PHP Get Member By Email Example","Searches","Members","Mailings","Fields","Placeholder Syntax","Webhook Usage","Groups","Triggers"],objnames:{"0":["http","get","HTTP get"],"1":["http","put","HTTP put"],"2":["http","post","HTTP post"],"3":["http","delete","HTTP delete"]},filenames:["member_search","index","pagination","php_signup_example","api/external/webhooks","api/external/response","php_get_member_example","api/external/searches","api/external/members","api/external/mailings","api/external/fields","placeholders","webhooks","api/external/groups","api/external/triggers"]}) \ No newline at end of file diff --git a/webhooks.html b/webhooks.html index 5474450..b6a151f 100644 --- a/webhooks.html +++ b/webhooks.html @@ -507,7 +507,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on May 29, 2013 at 04:18 PM. + Last updated on May 29, 2013 at 05:21 PM. </div> </body> </html> \ No newline at end of file From 2df4387478be644d1de2a59ca396a1dc3bbf6624 Mon Sep 17 00:00:00 2001 From: Doug Hurst <doug.hurst@myemma.com> Date: Thu, 27 Jun 2013 09:13:09 -0500 Subject: [PATCH 046/219] Update audience documentation. --- _sources/index.txt | 6 +- _static/basic.css | 2 +- _static/doctools.js | 16 +- _static/jquery.js | 158 +--------------- _static/searchtools.js | 358 +++++++++++++++++++++--------------- _static/underscore.js | 50 ++--- _static/websupport.js | 2 +- api/external/fields.html | 3 +- api/external/groups.html | 3 +- api/external/mailings.html | 3 +- api/external/members.html | 3 +- api/external/response.html | 3 +- api/external/searches.html | 5 +- api/external/triggers.html | 9 +- api/external/webhooks.html | 3 +- genindex.html | 6 +- http-routingtable.html | 5 +- index.html | 9 +- member_search.html | 5 +- pagination.html | 5 +- php_get_member_example.html | 5 +- php_signup_example.html | 5 +- placeholders.html | 5 +- search.html | 7 +- searchindex.js | 2 +- webhooks.html | 5 +- 26 files changed, 284 insertions(+), 399 deletions(-) diff --git a/_sources/index.txt b/_sources/index.txt index bed278d..ef2a084 100644 --- a/_sources/index.txt +++ b/_sources/index.txt @@ -39,17 +39,13 @@ This collection is young, but growing, and includes wrappers commissioned by Emm **Objective-C** `EmmaSDK <https://github.com/myemma/EmmaSDK>`_: Commissioned by Emma and built by Portland developer `Benjamin Van Der Veen <https://github.com/bvanderveen>`_. -**.NET Framework** - Coming Soon! - - Quickstart ---------- Let's start by building some PHP code that will add a member to our audience. First, you'll want to figure out how to authenticate. All calls require HTTP -Basic Auth autentication. Inside your Emma account, in the "Account Settings" +Basic Auth authentication. Inside your Emma account, in the "Account Settings" section, you'll find your API keys. There's a public key and a private key and an account ID. It should look like this. diff --git a/_static/basic.css b/_static/basic.css index 43e8baf..a04c8e1 100644 --- a/_static/basic.css +++ b/_static/basic.css @@ -4,7 +4,7 @@ * * Sphinx stylesheet -- basic theme. * - * :copyright: Copyright 2007-2011 by the Sphinx team, see AUTHORS. + * :copyright: Copyright 2007-2013 by the Sphinx team, see AUTHORS. * :license: BSD, see LICENSE for details. * */ diff --git a/_static/doctools.js b/_static/doctools.js index d4619fd..8614442 100644 --- a/_static/doctools.js +++ b/_static/doctools.js @@ -4,7 +4,7 @@ * * Sphinx JavaScript utilities for all documentation. * - * :copyright: Copyright 2007-2011 by the Sphinx team, see AUTHORS. + * :copyright: Copyright 2007-2013 by the Sphinx team, see AUTHORS. * :license: BSD, see LICENSE for details. * */ @@ -32,7 +32,7 @@ if (!window.console || !console.firebug) { */ jQuery.urldecode = function(x) { return decodeURIComponent(x).replace(/\+/g, ' '); -} +}; /** * small helper function to urlencode strings @@ -61,18 +61,6 @@ jQuery.getQueryParameters = function(s) { return result; }; -/** - * small function to check if an array contains - * a given item. - */ -jQuery.contains = function(arr, item) { - for (var i = 0; i < arr.length; i++) { - if (arr[i] == item) - return true; - } - return false; -}; - /** * highlight a given string on a jquery object by wrapping it in * span elements with the given class name. diff --git a/_static/jquery.js b/_static/jquery.js index 7c24308..198b3ff 100644 --- a/_static/jquery.js +++ b/_static/jquery.js @@ -1,154 +1,4 @@ -/*! - * jQuery JavaScript Library v1.4.2 - * http://jquery.com/ - * - * Copyright 2010, John Resig - * Dual licensed under the MIT or GPL Version 2 licenses. - * http://jquery.org/license - * - * Includes Sizzle.js - * http://sizzlejs.com/ - * Copyright 2010, The Dojo Foundation - * Released under the MIT, BSD, and GPL Licenses. - * - * Date: Sat Feb 13 22:33:48 2010 -0500 - */ -(function(A,w){function ma(){if(!c.isReady){try{s.documentElement.doScroll("left")}catch(a){setTimeout(ma,1);return}c.ready()}}function Qa(a,b){b.src?c.ajax({url:b.src,async:false,dataType:"script"}):c.globalEval(b.text||b.textContent||b.innerHTML||"");b.parentNode&&b.parentNode.removeChild(b)}function X(a,b,d,f,e,j){var i=a.length;if(typeof b==="object"){for(var o in b)X(a,o,b[o],f,e,d);return a}if(d!==w){f=!j&&f&&c.isFunction(d);for(o=0;o<i;o++)e(a[o],b,f?d.call(a[o],o,e(a[o],b)):d,j);return a}return i? -e(a[0],b):w}function J(){return(new Date).getTime()}function Y(){return false}function Z(){return true}function na(a,b,d){d[0].type=a;return c.event.handle.apply(b,d)}function oa(a){var b,d=[],f=[],e=arguments,j,i,o,k,n,r;i=c.data(this,"events");if(!(a.liveFired===this||!i||!i.live||a.button&&a.type==="click")){a.liveFired=this;var u=i.live.slice(0);for(k=0;k<u.length;k++){i=u[k];i.origType.replace(O,"")===a.type?f.push(i.selector):u.splice(k--,1)}j=c(a.target).closest(f,a.currentTarget);n=0;for(r= -j.length;n<r;n++)for(k=0;k<u.length;k++){i=u[k];if(j[n].selector===i.selector){o=j[n].elem;f=null;if(i.preType==="mouseenter"||i.preType==="mouseleave")f=c(a.relatedTarget).closest(i.selector)[0];if(!f||f!==o)d.push({elem:o,handleObj:i})}}n=0;for(r=d.length;n<r;n++){j=d[n];a.currentTarget=j.elem;a.data=j.handleObj.data;a.handleObj=j.handleObj;if(j.handleObj.origHandler.apply(j.elem,e)===false){b=false;break}}return b}}function pa(a,b){return"live."+(a&&a!=="*"?a+".":"")+b.replace(/\./g,"`").replace(/ /g, -"&")}function qa(a){return!a||!a.parentNode||a.parentNode.nodeType===11}function ra(a,b){var d=0;b.each(function(){if(this.nodeName===(a[d]&&a[d].nodeName)){var f=c.data(a[d++]),e=c.data(this,f);if(f=f&&f.events){delete e.handle;e.events={};for(var j in f)for(var i in f[j])c.event.add(this,j,f[j][i],f[j][i].data)}}})}function sa(a,b,d){var f,e,j;b=b&&b[0]?b[0].ownerDocument||b[0]:s;if(a.length===1&&typeof a[0]==="string"&&a[0].length<512&&b===s&&!ta.test(a[0])&&(c.support.checkClone||!ua.test(a[0]))){e= -true;if(j=c.fragments[a[0]])if(j!==1)f=j}if(!f){f=b.createDocumentFragment();c.clean(a,b,f,d)}if(e)c.fragments[a[0]]=j?f:1;return{fragment:f,cacheable:e}}function K(a,b){var d={};c.each(va.concat.apply([],va.slice(0,b)),function(){d[this]=a});return d}function wa(a){return"scrollTo"in a&&a.document?a:a.nodeType===9?a.defaultView||a.parentWindow:false}var c=function(a,b){return new c.fn.init(a,b)},Ra=A.jQuery,Sa=A.$,s=A.document,T,Ta=/^[^<]*(<[\w\W]+>)[^>]*$|^#([\w-]+)$/,Ua=/^.[^:#\[\.,]*$/,Va=/\S/, -Wa=/^(\s|\u00A0)+|(\s|\u00A0)+$/g,Xa=/^<(\w+)\s*\/?>(?:<\/\1>)?$/,P=navigator.userAgent,xa=false,Q=[],L,$=Object.prototype.toString,aa=Object.prototype.hasOwnProperty,ba=Array.prototype.push,R=Array.prototype.slice,ya=Array.prototype.indexOf;c.fn=c.prototype={init:function(a,b){var d,f;if(!a)return this;if(a.nodeType){this.context=this[0]=a;this.length=1;return this}if(a==="body"&&!b){this.context=s;this[0]=s.body;this.selector="body";this.length=1;return this}if(typeof a==="string")if((d=Ta.exec(a))&& -(d[1]||!b))if(d[1]){f=b?b.ownerDocument||b:s;if(a=Xa.exec(a))if(c.isPlainObject(b)){a=[s.createElement(a[1])];c.fn.attr.call(a,b,true)}else a=[f.createElement(a[1])];else{a=sa([d[1]],[f]);a=(a.cacheable?a.fragment.cloneNode(true):a.fragment).childNodes}return c.merge(this,a)}else{if(b=s.getElementById(d[2])){if(b.id!==d[2])return T.find(a);this.length=1;this[0]=b}this.context=s;this.selector=a;return this}else if(!b&&/^\w+$/.test(a)){this.selector=a;this.context=s;a=s.getElementsByTagName(a);return c.merge(this, -a)}else return!b||b.jquery?(b||T).find(a):c(b).find(a);else if(c.isFunction(a))return T.ready(a);if(a.selector!==w){this.selector=a.selector;this.context=a.context}return c.makeArray(a,this)},selector:"",jquery:"1.4.2",length:0,size:function(){return this.length},toArray:function(){return R.call(this,0)},get:function(a){return a==null?this.toArray():a<0?this.slice(a)[0]:this[a]},pushStack:function(a,b,d){var f=c();c.isArray(a)?ba.apply(f,a):c.merge(f,a);f.prevObject=this;f.context=this.context;if(b=== -"find")f.selector=this.selector+(this.selector?" ":"")+d;else if(b)f.selector=this.selector+"."+b+"("+d+")";return f},each:function(a,b){return c.each(this,a,b)},ready:function(a){c.bindReady();if(c.isReady)a.call(s,c);else Q&&Q.push(a);return this},eq:function(a){return a===-1?this.slice(a):this.slice(a,+a+1)},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},slice:function(){return this.pushStack(R.apply(this,arguments),"slice",R.call(arguments).join(","))},map:function(a){return this.pushStack(c.map(this, -function(b,d){return a.call(b,d,b)}))},end:function(){return this.prevObject||c(null)},push:ba,sort:[].sort,splice:[].splice};c.fn.init.prototype=c.fn;c.extend=c.fn.extend=function(){var a=arguments[0]||{},b=1,d=arguments.length,f=false,e,j,i,o;if(typeof a==="boolean"){f=a;a=arguments[1]||{};b=2}if(typeof a!=="object"&&!c.isFunction(a))a={};if(d===b){a=this;--b}for(;b<d;b++)if((e=arguments[b])!=null)for(j in e){i=a[j];o=e[j];if(a!==o)if(f&&o&&(c.isPlainObject(o)||c.isArray(o))){i=i&&(c.isPlainObject(i)|| -c.isArray(i))?i:c.isArray(o)?[]:{};a[j]=c.extend(f,i,o)}else if(o!==w)a[j]=o}return a};c.extend({noConflict:function(a){A.$=Sa;if(a)A.jQuery=Ra;return c},isReady:false,ready:function(){if(!c.isReady){if(!s.body)return setTimeout(c.ready,13);c.isReady=true;if(Q){for(var a,b=0;a=Q[b++];)a.call(s,c);Q=null}c.fn.triggerHandler&&c(s).triggerHandler("ready")}},bindReady:function(){if(!xa){xa=true;if(s.readyState==="complete")return c.ready();if(s.addEventListener){s.addEventListener("DOMContentLoaded", -L,false);A.addEventListener("load",c.ready,false)}else if(s.attachEvent){s.attachEvent("onreadystatechange",L);A.attachEvent("onload",c.ready);var a=false;try{a=A.frameElement==null}catch(b){}s.documentElement.doScroll&&a&&ma()}}},isFunction:function(a){return $.call(a)==="[object Function]"},isArray:function(a){return $.call(a)==="[object Array]"},isPlainObject:function(a){if(!a||$.call(a)!=="[object Object]"||a.nodeType||a.setInterval)return false;if(a.constructor&&!aa.call(a,"constructor")&&!aa.call(a.constructor.prototype, -"isPrototypeOf"))return false;var b;for(b in a);return b===w||aa.call(a,b)},isEmptyObject:function(a){for(var b in a)return false;return true},error:function(a){throw a;},parseJSON:function(a){if(typeof a!=="string"||!a)return null;a=c.trim(a);if(/^[\],:{}\s]*$/.test(a.replace(/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g,"@").replace(/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,"]").replace(/(?:^|:|,)(?:\s*\[)+/g,"")))return A.JSON&&A.JSON.parse?A.JSON.parse(a):(new Function("return "+ -a))();else c.error("Invalid JSON: "+a)},noop:function(){},globalEval:function(a){if(a&&Va.test(a)){var b=s.getElementsByTagName("head")[0]||s.documentElement,d=s.createElement("script");d.type="text/javascript";if(c.support.scriptEval)d.appendChild(s.createTextNode(a));else d.text=a;b.insertBefore(d,b.firstChild);b.removeChild(d)}},nodeName:function(a,b){return a.nodeName&&a.nodeName.toUpperCase()===b.toUpperCase()},each:function(a,b,d){var f,e=0,j=a.length,i=j===w||c.isFunction(a);if(d)if(i)for(f in a){if(b.apply(a[f], -d)===false)break}else for(;e<j;){if(b.apply(a[e++],d)===false)break}else if(i)for(f in a){if(b.call(a[f],f,a[f])===false)break}else for(d=a[0];e<j&&b.call(d,e,d)!==false;d=a[++e]);return a},trim:function(a){return(a||"").replace(Wa,"")},makeArray:function(a,b){b=b||[];if(a!=null)a.length==null||typeof a==="string"||c.isFunction(a)||typeof a!=="function"&&a.setInterval?ba.call(b,a):c.merge(b,a);return b},inArray:function(a,b){if(b.indexOf)return b.indexOf(a);for(var d=0,f=b.length;d<f;d++)if(b[d]=== -a)return d;return-1},merge:function(a,b){var d=a.length,f=0;if(typeof b.length==="number")for(var e=b.length;f<e;f++)a[d++]=b[f];else for(;b[f]!==w;)a[d++]=b[f++];a.length=d;return a},grep:function(a,b,d){for(var f=[],e=0,j=a.length;e<j;e++)!d!==!b(a[e],e)&&f.push(a[e]);return f},map:function(a,b,d){for(var f=[],e,j=0,i=a.length;j<i;j++){e=b(a[j],j,d);if(e!=null)f[f.length]=e}return f.concat.apply([],f)},guid:1,proxy:function(a,b,d){if(arguments.length===2)if(typeof b==="string"){d=a;a=d[b];b=w}else if(b&& -!c.isFunction(b)){d=b;b=w}if(!b&&a)b=function(){return a.apply(d||this,arguments)};if(a)b.guid=a.guid=a.guid||b.guid||c.guid++;return b},uaMatch:function(a){a=a.toLowerCase();a=/(webkit)[ \/]([\w.]+)/.exec(a)||/(opera)(?:.*version)?[ \/]([\w.]+)/.exec(a)||/(msie) ([\w.]+)/.exec(a)||!/compatible/.test(a)&&/(mozilla)(?:.*? rv:([\w.]+))?/.exec(a)||[];return{browser:a[1]||"",version:a[2]||"0"}},browser:{}});P=c.uaMatch(P);if(P.browser){c.browser[P.browser]=true;c.browser.version=P.version}if(c.browser.webkit)c.browser.safari= -true;if(ya)c.inArray=function(a,b){return ya.call(b,a)};T=c(s);if(s.addEventListener)L=function(){s.removeEventListener("DOMContentLoaded",L,false);c.ready()};else if(s.attachEvent)L=function(){if(s.readyState==="complete"){s.detachEvent("onreadystatechange",L);c.ready()}};(function(){c.support={};var a=s.documentElement,b=s.createElement("script"),d=s.createElement("div"),f="script"+J();d.style.display="none";d.innerHTML=" <link/><table></table><a href='/a' style='color:red;float:left;opacity:.55;'>a</a><input type='checkbox'/>"; -var e=d.getElementsByTagName("*"),j=d.getElementsByTagName("a")[0];if(!(!e||!e.length||!j)){c.support={leadingWhitespace:d.firstChild.nodeType===3,tbody:!d.getElementsByTagName("tbody").length,htmlSerialize:!!d.getElementsByTagName("link").length,style:/red/.test(j.getAttribute("style")),hrefNormalized:j.getAttribute("href")==="/a",opacity:/^0.55$/.test(j.style.opacity),cssFloat:!!j.style.cssFloat,checkOn:d.getElementsByTagName("input")[0].value==="on",optSelected:s.createElement("select").appendChild(s.createElement("option")).selected, -parentNode:d.removeChild(d.appendChild(s.createElement("div"))).parentNode===null,deleteExpando:true,checkClone:false,scriptEval:false,noCloneEvent:true,boxModel:null};b.type="text/javascript";try{b.appendChild(s.createTextNode("window."+f+"=1;"))}catch(i){}a.insertBefore(b,a.firstChild);if(A[f]){c.support.scriptEval=true;delete A[f]}try{delete b.test}catch(o){c.support.deleteExpando=false}a.removeChild(b);if(d.attachEvent&&d.fireEvent){d.attachEvent("onclick",function k(){c.support.noCloneEvent= -false;d.detachEvent("onclick",k)});d.cloneNode(true).fireEvent("onclick")}d=s.createElement("div");d.innerHTML="<input type='radio' name='radiotest' checked='checked'/>";a=s.createDocumentFragment();a.appendChild(d.firstChild);c.support.checkClone=a.cloneNode(true).cloneNode(true).lastChild.checked;c(function(){var k=s.createElement("div");k.style.width=k.style.paddingLeft="1px";s.body.appendChild(k);c.boxModel=c.support.boxModel=k.offsetWidth===2;s.body.removeChild(k).style.display="none"});a=function(k){var n= -s.createElement("div");k="on"+k;var r=k in n;if(!r){n.setAttribute(k,"return;");r=typeof n[k]==="function"}return r};c.support.submitBubbles=a("submit");c.support.changeBubbles=a("change");a=b=d=e=j=null}})();c.props={"for":"htmlFor","class":"className",readonly:"readOnly",maxlength:"maxLength",cellspacing:"cellSpacing",rowspan:"rowSpan",colspan:"colSpan",tabindex:"tabIndex",usemap:"useMap",frameborder:"frameBorder"};var G="jQuery"+J(),Ya=0,za={};c.extend({cache:{},expando:G,noData:{embed:true,object:true, -applet:true},data:function(a,b,d){if(!(a.nodeName&&c.noData[a.nodeName.toLowerCase()])){a=a==A?za:a;var f=a[G],e=c.cache;if(!f&&typeof b==="string"&&d===w)return null;f||(f=++Ya);if(typeof b==="object"){a[G]=f;e[f]=c.extend(true,{},b)}else if(!e[f]){a[G]=f;e[f]={}}a=e[f];if(d!==w)a[b]=d;return typeof b==="string"?a[b]:a}},removeData:function(a,b){if(!(a.nodeName&&c.noData[a.nodeName.toLowerCase()])){a=a==A?za:a;var d=a[G],f=c.cache,e=f[d];if(b){if(e){delete e[b];c.isEmptyObject(e)&&c.removeData(a)}}else{if(c.support.deleteExpando)delete a[c.expando]; -else a.removeAttribute&&a.removeAttribute(c.expando);delete f[d]}}}});c.fn.extend({data:function(a,b){if(typeof a==="undefined"&&this.length)return c.data(this[0]);else if(typeof a==="object")return this.each(function(){c.data(this,a)});var d=a.split(".");d[1]=d[1]?"."+d[1]:"";if(b===w){var f=this.triggerHandler("getData"+d[1]+"!",[d[0]]);if(f===w&&this.length)f=c.data(this[0],a);return f===w&&d[1]?this.data(d[0]):f}else return this.trigger("setData"+d[1]+"!",[d[0],b]).each(function(){c.data(this, -a,b)})},removeData:function(a){return this.each(function(){c.removeData(this,a)})}});c.extend({queue:function(a,b,d){if(a){b=(b||"fx")+"queue";var f=c.data(a,b);if(!d)return f||[];if(!f||c.isArray(d))f=c.data(a,b,c.makeArray(d));else f.push(d);return f}},dequeue:function(a,b){b=b||"fx";var d=c.queue(a,b),f=d.shift();if(f==="inprogress")f=d.shift();if(f){b==="fx"&&d.unshift("inprogress");f.call(a,function(){c.dequeue(a,b)})}}});c.fn.extend({queue:function(a,b){if(typeof a!=="string"){b=a;a="fx"}if(b=== -w)return c.queue(this[0],a);return this.each(function(){var d=c.queue(this,a,b);a==="fx"&&d[0]!=="inprogress"&&c.dequeue(this,a)})},dequeue:function(a){return this.each(function(){c.dequeue(this,a)})},delay:function(a,b){a=c.fx?c.fx.speeds[a]||a:a;b=b||"fx";return this.queue(b,function(){var d=this;setTimeout(function(){c.dequeue(d,b)},a)})},clearQueue:function(a){return this.queue(a||"fx",[])}});var Aa=/[\n\t]/g,ca=/\s+/,Za=/\r/g,$a=/href|src|style/,ab=/(button|input)/i,bb=/(button|input|object|select|textarea)/i, -cb=/^(a|area)$/i,Ba=/radio|checkbox/;c.fn.extend({attr:function(a,b){return X(this,a,b,true,c.attr)},removeAttr:function(a){return this.each(function(){c.attr(this,a,"");this.nodeType===1&&this.removeAttribute(a)})},addClass:function(a){if(c.isFunction(a))return this.each(function(n){var r=c(this);r.addClass(a.call(this,n,r.attr("class")))});if(a&&typeof a==="string")for(var b=(a||"").split(ca),d=0,f=this.length;d<f;d++){var e=this[d];if(e.nodeType===1)if(e.className){for(var j=" "+e.className+" ", -i=e.className,o=0,k=b.length;o<k;o++)if(j.indexOf(" "+b[o]+" ")<0)i+=" "+b[o];e.className=c.trim(i)}else e.className=a}return this},removeClass:function(a){if(c.isFunction(a))return this.each(function(k){var n=c(this);n.removeClass(a.call(this,k,n.attr("class")))});if(a&&typeof a==="string"||a===w)for(var b=(a||"").split(ca),d=0,f=this.length;d<f;d++){var e=this[d];if(e.nodeType===1&&e.className)if(a){for(var j=(" "+e.className+" ").replace(Aa," "),i=0,o=b.length;i<o;i++)j=j.replace(" "+b[i]+" ", -" ");e.className=c.trim(j)}else e.className=""}return this},toggleClass:function(a,b){var d=typeof a,f=typeof b==="boolean";if(c.isFunction(a))return this.each(function(e){var j=c(this);j.toggleClass(a.call(this,e,j.attr("class"),b),b)});return this.each(function(){if(d==="string")for(var e,j=0,i=c(this),o=b,k=a.split(ca);e=k[j++];){o=f?o:!i.hasClass(e);i[o?"addClass":"removeClass"](e)}else if(d==="undefined"||d==="boolean"){this.className&&c.data(this,"__className__",this.className);this.className= -this.className||a===false?"":c.data(this,"__className__")||""}})},hasClass:function(a){a=" "+a+" ";for(var b=0,d=this.length;b<d;b++)if((" "+this[b].className+" ").replace(Aa," ").indexOf(a)>-1)return true;return false},val:function(a){if(a===w){var b=this[0];if(b){if(c.nodeName(b,"option"))return(b.attributes.value||{}).specified?b.value:b.text;if(c.nodeName(b,"select")){var d=b.selectedIndex,f=[],e=b.options;b=b.type==="select-one";if(d<0)return null;var j=b?d:0;for(d=b?d+1:e.length;j<d;j++){var i= -e[j];if(i.selected){a=c(i).val();if(b)return a;f.push(a)}}return f}if(Ba.test(b.type)&&!c.support.checkOn)return b.getAttribute("value")===null?"on":b.value;return(b.value||"").replace(Za,"")}return w}var o=c.isFunction(a);return this.each(function(k){var n=c(this),r=a;if(this.nodeType===1){if(o)r=a.call(this,k,n.val());if(typeof r==="number")r+="";if(c.isArray(r)&&Ba.test(this.type))this.checked=c.inArray(n.val(),r)>=0;else if(c.nodeName(this,"select")){var u=c.makeArray(r);c("option",this).each(function(){this.selected= -c.inArray(c(this).val(),u)>=0});if(!u.length)this.selectedIndex=-1}else this.value=r}})}});c.extend({attrFn:{val:true,css:true,html:true,text:true,data:true,width:true,height:true,offset:true},attr:function(a,b,d,f){if(!a||a.nodeType===3||a.nodeType===8)return w;if(f&&b in c.attrFn)return c(a)[b](d);f=a.nodeType!==1||!c.isXMLDoc(a);var e=d!==w;b=f&&c.props[b]||b;if(a.nodeType===1){var j=$a.test(b);if(b in a&&f&&!j){if(e){b==="type"&&ab.test(a.nodeName)&&a.parentNode&&c.error("type property can't be changed"); -a[b]=d}if(c.nodeName(a,"form")&&a.getAttributeNode(b))return a.getAttributeNode(b).nodeValue;if(b==="tabIndex")return(b=a.getAttributeNode("tabIndex"))&&b.specified?b.value:bb.test(a.nodeName)||cb.test(a.nodeName)&&a.href?0:w;return a[b]}if(!c.support.style&&f&&b==="style"){if(e)a.style.cssText=""+d;return a.style.cssText}e&&a.setAttribute(b,""+d);a=!c.support.hrefNormalized&&f&&j?a.getAttribute(b,2):a.getAttribute(b);return a===null?w:a}return c.style(a,b,d)}});var O=/\.(.*)$/,db=function(a){return a.replace(/[^\w\s\.\|`]/g, -function(b){return"\\"+b})};c.event={add:function(a,b,d,f){if(!(a.nodeType===3||a.nodeType===8)){if(a.setInterval&&a!==A&&!a.frameElement)a=A;var e,j;if(d.handler){e=d;d=e.handler}if(!d.guid)d.guid=c.guid++;if(j=c.data(a)){var i=j.events=j.events||{},o=j.handle;if(!o)j.handle=o=function(){return typeof c!=="undefined"&&!c.event.triggered?c.event.handle.apply(o.elem,arguments):w};o.elem=a;b=b.split(" ");for(var k,n=0,r;k=b[n++];){j=e?c.extend({},e):{handler:d,data:f};if(k.indexOf(".")>-1){r=k.split("."); -k=r.shift();j.namespace=r.slice(0).sort().join(".")}else{r=[];j.namespace=""}j.type=k;j.guid=d.guid;var u=i[k],z=c.event.special[k]||{};if(!u){u=i[k]=[];if(!z.setup||z.setup.call(a,f,r,o)===false)if(a.addEventListener)a.addEventListener(k,o,false);else a.attachEvent&&a.attachEvent("on"+k,o)}if(z.add){z.add.call(a,j);if(!j.handler.guid)j.handler.guid=d.guid}u.push(j);c.event.global[k]=true}a=null}}},global:{},remove:function(a,b,d,f){if(!(a.nodeType===3||a.nodeType===8)){var e,j=0,i,o,k,n,r,u,z=c.data(a), -C=z&&z.events;if(z&&C){if(b&&b.type){d=b.handler;b=b.type}if(!b||typeof b==="string"&&b.charAt(0)==="."){b=b||"";for(e in C)c.event.remove(a,e+b)}else{for(b=b.split(" ");e=b[j++];){n=e;i=e.indexOf(".")<0;o=[];if(!i){o=e.split(".");e=o.shift();k=new RegExp("(^|\\.)"+c.map(o.slice(0).sort(),db).join("\\.(?:.*\\.)?")+"(\\.|$)")}if(r=C[e])if(d){n=c.event.special[e]||{};for(B=f||0;B<r.length;B++){u=r[B];if(d.guid===u.guid){if(i||k.test(u.namespace)){f==null&&r.splice(B--,1);n.remove&&n.remove.call(a,u)}if(f!= -null)break}}if(r.length===0||f!=null&&r.length===1){if(!n.teardown||n.teardown.call(a,o)===false)Ca(a,e,z.handle);delete C[e]}}else for(var B=0;B<r.length;B++){u=r[B];if(i||k.test(u.namespace)){c.event.remove(a,n,u.handler,B);r.splice(B--,1)}}}if(c.isEmptyObject(C)){if(b=z.handle)b.elem=null;delete z.events;delete z.handle;c.isEmptyObject(z)&&c.removeData(a)}}}}},trigger:function(a,b,d,f){var e=a.type||a;if(!f){a=typeof a==="object"?a[G]?a:c.extend(c.Event(e),a):c.Event(e);if(e.indexOf("!")>=0){a.type= -e=e.slice(0,-1);a.exclusive=true}if(!d){a.stopPropagation();c.event.global[e]&&c.each(c.cache,function(){this.events&&this.events[e]&&c.event.trigger(a,b,this.handle.elem)})}if(!d||d.nodeType===3||d.nodeType===8)return w;a.result=w;a.target=d;b=c.makeArray(b);b.unshift(a)}a.currentTarget=d;(f=c.data(d,"handle"))&&f.apply(d,b);f=d.parentNode||d.ownerDocument;try{if(!(d&&d.nodeName&&c.noData[d.nodeName.toLowerCase()]))if(d["on"+e]&&d["on"+e].apply(d,b)===false)a.result=false}catch(j){}if(!a.isPropagationStopped()&& -f)c.event.trigger(a,b,f,true);else if(!a.isDefaultPrevented()){f=a.target;var i,o=c.nodeName(f,"a")&&e==="click",k=c.event.special[e]||{};if((!k._default||k._default.call(d,a)===false)&&!o&&!(f&&f.nodeName&&c.noData[f.nodeName.toLowerCase()])){try{if(f[e]){if(i=f["on"+e])f["on"+e]=null;c.event.triggered=true;f[e]()}}catch(n){}if(i)f["on"+e]=i;c.event.triggered=false}}},handle:function(a){var b,d,f,e;a=arguments[0]=c.event.fix(a||A.event);a.currentTarget=this;b=a.type.indexOf(".")<0&&!a.exclusive; -if(!b){d=a.type.split(".");a.type=d.shift();f=new RegExp("(^|\\.)"+d.slice(0).sort().join("\\.(?:.*\\.)?")+"(\\.|$)")}e=c.data(this,"events");d=e[a.type];if(e&&d){d=d.slice(0);e=0;for(var j=d.length;e<j;e++){var i=d[e];if(b||f.test(i.namespace)){a.handler=i.handler;a.data=i.data;a.handleObj=i;i=i.handler.apply(this,arguments);if(i!==w){a.result=i;if(i===false){a.preventDefault();a.stopPropagation()}}if(a.isImmediatePropagationStopped())break}}}return a.result},props:"altKey attrChange attrName bubbles button cancelable charCode clientX clientY ctrlKey currentTarget data detail eventPhase fromElement handler keyCode layerX layerY metaKey newValue offsetX offsetY originalTarget pageX pageY prevValue relatedNode relatedTarget screenX screenY shiftKey srcElement target toElement view wheelDelta which".split(" "), -fix:function(a){if(a[G])return a;var b=a;a=c.Event(b);for(var d=this.props.length,f;d;){f=this.props[--d];a[f]=b[f]}if(!a.target)a.target=a.srcElement||s;if(a.target.nodeType===3)a.target=a.target.parentNode;if(!a.relatedTarget&&a.fromElement)a.relatedTarget=a.fromElement===a.target?a.toElement:a.fromElement;if(a.pageX==null&&a.clientX!=null){b=s.documentElement;d=s.body;a.pageX=a.clientX+(b&&b.scrollLeft||d&&d.scrollLeft||0)-(b&&b.clientLeft||d&&d.clientLeft||0);a.pageY=a.clientY+(b&&b.scrollTop|| -d&&d.scrollTop||0)-(b&&b.clientTop||d&&d.clientTop||0)}if(!a.which&&(a.charCode||a.charCode===0?a.charCode:a.keyCode))a.which=a.charCode||a.keyCode;if(!a.metaKey&&a.ctrlKey)a.metaKey=a.ctrlKey;if(!a.which&&a.button!==w)a.which=a.button&1?1:a.button&2?3:a.button&4?2:0;return a},guid:1E8,proxy:c.proxy,special:{ready:{setup:c.bindReady,teardown:c.noop},live:{add:function(a){c.event.add(this,a.origType,c.extend({},a,{handler:oa}))},remove:function(a){var b=true,d=a.origType.replace(O,"");c.each(c.data(this, -"events").live||[],function(){if(d===this.origType.replace(O,""))return b=false});b&&c.event.remove(this,a.origType,oa)}},beforeunload:{setup:function(a,b,d){if(this.setInterval)this.onbeforeunload=d;return false},teardown:function(a,b){if(this.onbeforeunload===b)this.onbeforeunload=null}}}};var Ca=s.removeEventListener?function(a,b,d){a.removeEventListener(b,d,false)}:function(a,b,d){a.detachEvent("on"+b,d)};c.Event=function(a){if(!this.preventDefault)return new c.Event(a);if(a&&a.type){this.originalEvent= -a;this.type=a.type}else this.type=a;this.timeStamp=J();this[G]=true};c.Event.prototype={preventDefault:function(){this.isDefaultPrevented=Z;var a=this.originalEvent;if(a){a.preventDefault&&a.preventDefault();a.returnValue=false}},stopPropagation:function(){this.isPropagationStopped=Z;var a=this.originalEvent;if(a){a.stopPropagation&&a.stopPropagation();a.cancelBubble=true}},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=Z;this.stopPropagation()},isDefaultPrevented:Y,isPropagationStopped:Y, -isImmediatePropagationStopped:Y};var Da=function(a){var b=a.relatedTarget;try{for(;b&&b!==this;)b=b.parentNode;if(b!==this){a.type=a.data;c.event.handle.apply(this,arguments)}}catch(d){}},Ea=function(a){a.type=a.data;c.event.handle.apply(this,arguments)};c.each({mouseenter:"mouseover",mouseleave:"mouseout"},function(a,b){c.event.special[a]={setup:function(d){c.event.add(this,b,d&&d.selector?Ea:Da,a)},teardown:function(d){c.event.remove(this,b,d&&d.selector?Ea:Da)}}});if(!c.support.submitBubbles)c.event.special.submit= -{setup:function(){if(this.nodeName.toLowerCase()!=="form"){c.event.add(this,"click.specialSubmit",function(a){var b=a.target,d=b.type;if((d==="submit"||d==="image")&&c(b).closest("form").length)return na("submit",this,arguments)});c.event.add(this,"keypress.specialSubmit",function(a){var b=a.target,d=b.type;if((d==="text"||d==="password")&&c(b).closest("form").length&&a.keyCode===13)return na("submit",this,arguments)})}else return false},teardown:function(){c.event.remove(this,".specialSubmit")}}; -if(!c.support.changeBubbles){var da=/textarea|input|select/i,ea,Fa=function(a){var b=a.type,d=a.value;if(b==="radio"||b==="checkbox")d=a.checked;else if(b==="select-multiple")d=a.selectedIndex>-1?c.map(a.options,function(f){return f.selected}).join("-"):"";else if(a.nodeName.toLowerCase()==="select")d=a.selectedIndex;return d},fa=function(a,b){var d=a.target,f,e;if(!(!da.test(d.nodeName)||d.readOnly)){f=c.data(d,"_change_data");e=Fa(d);if(a.type!=="focusout"||d.type!=="radio")c.data(d,"_change_data", -e);if(!(f===w||e===f))if(f!=null||e){a.type="change";return c.event.trigger(a,b,d)}}};c.event.special.change={filters:{focusout:fa,click:function(a){var b=a.target,d=b.type;if(d==="radio"||d==="checkbox"||b.nodeName.toLowerCase()==="select")return fa.call(this,a)},keydown:function(a){var b=a.target,d=b.type;if(a.keyCode===13&&b.nodeName.toLowerCase()!=="textarea"||a.keyCode===32&&(d==="checkbox"||d==="radio")||d==="select-multiple")return fa.call(this,a)},beforeactivate:function(a){a=a.target;c.data(a, -"_change_data",Fa(a))}},setup:function(){if(this.type==="file")return false;for(var a in ea)c.event.add(this,a+".specialChange",ea[a]);return da.test(this.nodeName)},teardown:function(){c.event.remove(this,".specialChange");return da.test(this.nodeName)}};ea=c.event.special.change.filters}s.addEventListener&&c.each({focus:"focusin",blur:"focusout"},function(a,b){function d(f){f=c.event.fix(f);f.type=b;return c.event.handle.call(this,f)}c.event.special[b]={setup:function(){this.addEventListener(a, -d,true)},teardown:function(){this.removeEventListener(a,d,true)}}});c.each(["bind","one"],function(a,b){c.fn[b]=function(d,f,e){if(typeof d==="object"){for(var j in d)this[b](j,f,d[j],e);return this}if(c.isFunction(f)){e=f;f=w}var i=b==="one"?c.proxy(e,function(k){c(this).unbind(k,i);return e.apply(this,arguments)}):e;if(d==="unload"&&b!=="one")this.one(d,f,e);else{j=0;for(var o=this.length;j<o;j++)c.event.add(this[j],d,i,f)}return this}});c.fn.extend({unbind:function(a,b){if(typeof a==="object"&& -!a.preventDefault)for(var d in a)this.unbind(d,a[d]);else{d=0;for(var f=this.length;d<f;d++)c.event.remove(this[d],a,b)}return this},delegate:function(a,b,d,f){return this.live(b,d,f,a)},undelegate:function(a,b,d){return arguments.length===0?this.unbind("live"):this.die(b,null,d,a)},trigger:function(a,b){return this.each(function(){c.event.trigger(a,b,this)})},triggerHandler:function(a,b){if(this[0]){a=c.Event(a);a.preventDefault();a.stopPropagation();c.event.trigger(a,b,this[0]);return a.result}}, -toggle:function(a){for(var b=arguments,d=1;d<b.length;)c.proxy(a,b[d++]);return this.click(c.proxy(a,function(f){var e=(c.data(this,"lastToggle"+a.guid)||0)%d;c.data(this,"lastToggle"+a.guid,e+1);f.preventDefault();return b[e].apply(this,arguments)||false}))},hover:function(a,b){return this.mouseenter(a).mouseleave(b||a)}});var Ga={focus:"focusin",blur:"focusout",mouseenter:"mouseover",mouseleave:"mouseout"};c.each(["live","die"],function(a,b){c.fn[b]=function(d,f,e,j){var i,o=0,k,n,r=j||this.selector, -u=j?this:c(this.context);if(c.isFunction(f)){e=f;f=w}for(d=(d||"").split(" ");(i=d[o++])!=null;){j=O.exec(i);k="";if(j){k=j[0];i=i.replace(O,"")}if(i==="hover")d.push("mouseenter"+k,"mouseleave"+k);else{n=i;if(i==="focus"||i==="blur"){d.push(Ga[i]+k);i+=k}else i=(Ga[i]||i)+k;b==="live"?u.each(function(){c.event.add(this,pa(i,r),{data:f,selector:r,handler:e,origType:i,origHandler:e,preType:n})}):u.unbind(pa(i,r),e)}}return this}});c.each("blur focus focusin focusout load resize scroll unload click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup error".split(" "), -function(a,b){c.fn[b]=function(d){return d?this.bind(b,d):this.trigger(b)};if(c.attrFn)c.attrFn[b]=true});A.attachEvent&&!A.addEventListener&&A.attachEvent("onunload",function(){for(var a in c.cache)if(c.cache[a].handle)try{c.event.remove(c.cache[a].handle.elem)}catch(b){}});(function(){function a(g){for(var h="",l,m=0;g[m];m++){l=g[m];if(l.nodeType===3||l.nodeType===4)h+=l.nodeValue;else if(l.nodeType!==8)h+=a(l.childNodes)}return h}function b(g,h,l,m,q,p){q=0;for(var v=m.length;q<v;q++){var t=m[q]; -if(t){t=t[g];for(var y=false;t;){if(t.sizcache===l){y=m[t.sizset];break}if(t.nodeType===1&&!p){t.sizcache=l;t.sizset=q}if(t.nodeName.toLowerCase()===h){y=t;break}t=t[g]}m[q]=y}}}function d(g,h,l,m,q,p){q=0;for(var v=m.length;q<v;q++){var t=m[q];if(t){t=t[g];for(var y=false;t;){if(t.sizcache===l){y=m[t.sizset];break}if(t.nodeType===1){if(!p){t.sizcache=l;t.sizset=q}if(typeof h!=="string"){if(t===h){y=true;break}}else if(k.filter(h,[t]).length>0){y=t;break}}t=t[g]}m[q]=y}}}var f=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^[\]]*\]|['"][^'"]*['"]|[^[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g, -e=0,j=Object.prototype.toString,i=false,o=true;[0,0].sort(function(){o=false;return 0});var k=function(g,h,l,m){l=l||[];var q=h=h||s;if(h.nodeType!==1&&h.nodeType!==9)return[];if(!g||typeof g!=="string")return l;for(var p=[],v,t,y,S,H=true,M=x(h),I=g;(f.exec(""),v=f.exec(I))!==null;){I=v[3];p.push(v[1]);if(v[2]){S=v[3];break}}if(p.length>1&&r.exec(g))if(p.length===2&&n.relative[p[0]])t=ga(p[0]+p[1],h);else for(t=n.relative[p[0]]?[h]:k(p.shift(),h);p.length;){g=p.shift();if(n.relative[g])g+=p.shift(); -t=ga(g,t)}else{if(!m&&p.length>1&&h.nodeType===9&&!M&&n.match.ID.test(p[0])&&!n.match.ID.test(p[p.length-1])){v=k.find(p.shift(),h,M);h=v.expr?k.filter(v.expr,v.set)[0]:v.set[0]}if(h){v=m?{expr:p.pop(),set:z(m)}:k.find(p.pop(),p.length===1&&(p[0]==="~"||p[0]==="+")&&h.parentNode?h.parentNode:h,M);t=v.expr?k.filter(v.expr,v.set):v.set;if(p.length>0)y=z(t);else H=false;for(;p.length;){var D=p.pop();v=D;if(n.relative[D])v=p.pop();else D="";if(v==null)v=h;n.relative[D](y,v,M)}}else y=[]}y||(y=t);y||k.error(D|| -g);if(j.call(y)==="[object Array]")if(H)if(h&&h.nodeType===1)for(g=0;y[g]!=null;g++){if(y[g]&&(y[g]===true||y[g].nodeType===1&&E(h,y[g])))l.push(t[g])}else for(g=0;y[g]!=null;g++)y[g]&&y[g].nodeType===1&&l.push(t[g]);else l.push.apply(l,y);else z(y,l);if(S){k(S,q,l,m);k.uniqueSort(l)}return l};k.uniqueSort=function(g){if(B){i=o;g.sort(B);if(i)for(var h=1;h<g.length;h++)g[h]===g[h-1]&&g.splice(h--,1)}return g};k.matches=function(g,h){return k(g,null,null,h)};k.find=function(g,h,l){var m,q;if(!g)return[]; -for(var p=0,v=n.order.length;p<v;p++){var t=n.order[p];if(q=n.leftMatch[t].exec(g)){var y=q[1];q.splice(1,1);if(y.substr(y.length-1)!=="\\"){q[1]=(q[1]||"").replace(/\\/g,"");m=n.find[t](q,h,l);if(m!=null){g=g.replace(n.match[t],"");break}}}}m||(m=h.getElementsByTagName("*"));return{set:m,expr:g}};k.filter=function(g,h,l,m){for(var q=g,p=[],v=h,t,y,S=h&&h[0]&&x(h[0]);g&&h.length;){for(var H in n.filter)if((t=n.leftMatch[H].exec(g))!=null&&t[2]){var M=n.filter[H],I,D;D=t[1];y=false;t.splice(1,1);if(D.substr(D.length- -1)!=="\\"){if(v===p)p=[];if(n.preFilter[H])if(t=n.preFilter[H](t,v,l,p,m,S)){if(t===true)continue}else y=I=true;if(t)for(var U=0;(D=v[U])!=null;U++)if(D){I=M(D,t,U,v);var Ha=m^!!I;if(l&&I!=null)if(Ha)y=true;else v[U]=false;else if(Ha){p.push(D);y=true}}if(I!==w){l||(v=p);g=g.replace(n.match[H],"");if(!y)return[];break}}}if(g===q)if(y==null)k.error(g);else break;q=g}return v};k.error=function(g){throw"Syntax error, unrecognized expression: "+g;};var n=k.selectors={order:["ID","NAME","TAG"],match:{ID:/#((?:[\w\u00c0-\uFFFF-]|\\.)+)/, -CLASS:/\.((?:[\w\u00c0-\uFFFF-]|\\.)+)/,NAME:/\[name=['"]*((?:[\w\u00c0-\uFFFF-]|\\.)+)['"]*\]/,ATTR:/\[\s*((?:[\w\u00c0-\uFFFF-]|\\.)+)\s*(?:(\S?=)\s*(['"]*)(.*?)\3|)\s*\]/,TAG:/^((?:[\w\u00c0-\uFFFF\*-]|\\.)+)/,CHILD:/:(only|nth|last|first)-child(?:\((even|odd|[\dn+-]*)\))?/,POS:/:(nth|eq|gt|lt|first|last|even|odd)(?:\((\d*)\))?(?=[^-]|$)/,PSEUDO:/:((?:[\w\u00c0-\uFFFF-]|\\.)+)(?:\((['"]?)((?:\([^\)]+\)|[^\(\)]*)+)\2\))?/},leftMatch:{},attrMap:{"class":"className","for":"htmlFor"},attrHandle:{href:function(g){return g.getAttribute("href")}}, -relative:{"+":function(g,h){var l=typeof h==="string",m=l&&!/\W/.test(h);l=l&&!m;if(m)h=h.toLowerCase();m=0;for(var q=g.length,p;m<q;m++)if(p=g[m]){for(;(p=p.previousSibling)&&p.nodeType!==1;);g[m]=l||p&&p.nodeName.toLowerCase()===h?p||false:p===h}l&&k.filter(h,g,true)},">":function(g,h){var l=typeof h==="string";if(l&&!/\W/.test(h)){h=h.toLowerCase();for(var m=0,q=g.length;m<q;m++){var p=g[m];if(p){l=p.parentNode;g[m]=l.nodeName.toLowerCase()===h?l:false}}}else{m=0;for(q=g.length;m<q;m++)if(p=g[m])g[m]= -l?p.parentNode:p.parentNode===h;l&&k.filter(h,g,true)}},"":function(g,h,l){var m=e++,q=d;if(typeof h==="string"&&!/\W/.test(h)){var p=h=h.toLowerCase();q=b}q("parentNode",h,m,g,p,l)},"~":function(g,h,l){var m=e++,q=d;if(typeof h==="string"&&!/\W/.test(h)){var p=h=h.toLowerCase();q=b}q("previousSibling",h,m,g,p,l)}},find:{ID:function(g,h,l){if(typeof h.getElementById!=="undefined"&&!l)return(g=h.getElementById(g[1]))?[g]:[]},NAME:function(g,h){if(typeof h.getElementsByName!=="undefined"){var l=[]; -h=h.getElementsByName(g[1]);for(var m=0,q=h.length;m<q;m++)h[m].getAttribute("name")===g[1]&&l.push(h[m]);return l.length===0?null:l}},TAG:function(g,h){return h.getElementsByTagName(g[1])}},preFilter:{CLASS:function(g,h,l,m,q,p){g=" "+g[1].replace(/\\/g,"")+" ";if(p)return g;p=0;for(var v;(v=h[p])!=null;p++)if(v)if(q^(v.className&&(" "+v.className+" ").replace(/[\t\n]/g," ").indexOf(g)>=0))l||m.push(v);else if(l)h[p]=false;return false},ID:function(g){return g[1].replace(/\\/g,"")},TAG:function(g){return g[1].toLowerCase()}, -CHILD:function(g){if(g[1]==="nth"){var h=/(-?)(\d*)n((?:\+|-)?\d*)/.exec(g[2]==="even"&&"2n"||g[2]==="odd"&&"2n+1"||!/\D/.test(g[2])&&"0n+"+g[2]||g[2]);g[2]=h[1]+(h[2]||1)-0;g[3]=h[3]-0}g[0]=e++;return g},ATTR:function(g,h,l,m,q,p){h=g[1].replace(/\\/g,"");if(!p&&n.attrMap[h])g[1]=n.attrMap[h];if(g[2]==="~=")g[4]=" "+g[4]+" ";return g},PSEUDO:function(g,h,l,m,q){if(g[1]==="not")if((f.exec(g[3])||"").length>1||/^\w/.test(g[3]))g[3]=k(g[3],null,null,h);else{g=k.filter(g[3],h,l,true^q);l||m.push.apply(m, -g);return false}else if(n.match.POS.test(g[0])||n.match.CHILD.test(g[0]))return true;return g},POS:function(g){g.unshift(true);return g}},filters:{enabled:function(g){return g.disabled===false&&g.type!=="hidden"},disabled:function(g){return g.disabled===true},checked:function(g){return g.checked===true},selected:function(g){return g.selected===true},parent:function(g){return!!g.firstChild},empty:function(g){return!g.firstChild},has:function(g,h,l){return!!k(l[3],g).length},header:function(g){return/h\d/i.test(g.nodeName)}, -text:function(g){return"text"===g.type},radio:function(g){return"radio"===g.type},checkbox:function(g){return"checkbox"===g.type},file:function(g){return"file"===g.type},password:function(g){return"password"===g.type},submit:function(g){return"submit"===g.type},image:function(g){return"image"===g.type},reset:function(g){return"reset"===g.type},button:function(g){return"button"===g.type||g.nodeName.toLowerCase()==="button"},input:function(g){return/input|select|textarea|button/i.test(g.nodeName)}}, -setFilters:{first:function(g,h){return h===0},last:function(g,h,l,m){return h===m.length-1},even:function(g,h){return h%2===0},odd:function(g,h){return h%2===1},lt:function(g,h,l){return h<l[3]-0},gt:function(g,h,l){return h>l[3]-0},nth:function(g,h,l){return l[3]-0===h},eq:function(g,h,l){return l[3]-0===h}},filter:{PSEUDO:function(g,h,l,m){var q=h[1],p=n.filters[q];if(p)return p(g,l,h,m);else if(q==="contains")return(g.textContent||g.innerText||a([g])||"").indexOf(h[3])>=0;else if(q==="not"){h= -h[3];l=0;for(m=h.length;l<m;l++)if(h[l]===g)return false;return true}else k.error("Syntax error, unrecognized expression: "+q)},CHILD:function(g,h){var l=h[1],m=g;switch(l){case "only":case "first":for(;m=m.previousSibling;)if(m.nodeType===1)return false;if(l==="first")return true;m=g;case "last":for(;m=m.nextSibling;)if(m.nodeType===1)return false;return true;case "nth":l=h[2];var q=h[3];if(l===1&&q===0)return true;h=h[0];var p=g.parentNode;if(p&&(p.sizcache!==h||!g.nodeIndex)){var v=0;for(m=p.firstChild;m;m= -m.nextSibling)if(m.nodeType===1)m.nodeIndex=++v;p.sizcache=h}g=g.nodeIndex-q;return l===0?g===0:g%l===0&&g/l>=0}},ID:function(g,h){return g.nodeType===1&&g.getAttribute("id")===h},TAG:function(g,h){return h==="*"&&g.nodeType===1||g.nodeName.toLowerCase()===h},CLASS:function(g,h){return(" "+(g.className||g.getAttribute("class"))+" ").indexOf(h)>-1},ATTR:function(g,h){var l=h[1];g=n.attrHandle[l]?n.attrHandle[l](g):g[l]!=null?g[l]:g.getAttribute(l);l=g+"";var m=h[2];h=h[4];return g==null?m==="!=":m=== -"="?l===h:m==="*="?l.indexOf(h)>=0:m==="~="?(" "+l+" ").indexOf(h)>=0:!h?l&&g!==false:m==="!="?l!==h:m==="^="?l.indexOf(h)===0:m==="$="?l.substr(l.length-h.length)===h:m==="|="?l===h||l.substr(0,h.length+1)===h+"-":false},POS:function(g,h,l,m){var q=n.setFilters[h[2]];if(q)return q(g,l,h,m)}}},r=n.match.POS;for(var u in n.match){n.match[u]=new RegExp(n.match[u].source+/(?![^\[]*\])(?![^\(]*\))/.source);n.leftMatch[u]=new RegExp(/(^(?:.|\r|\n)*?)/.source+n.match[u].source.replace(/\\(\d+)/g,function(g, -h){return"\\"+(h-0+1)}))}var z=function(g,h){g=Array.prototype.slice.call(g,0);if(h){h.push.apply(h,g);return h}return g};try{Array.prototype.slice.call(s.documentElement.childNodes,0)}catch(C){z=function(g,h){h=h||[];if(j.call(g)==="[object Array]")Array.prototype.push.apply(h,g);else if(typeof g.length==="number")for(var l=0,m=g.length;l<m;l++)h.push(g[l]);else for(l=0;g[l];l++)h.push(g[l]);return h}}var B;if(s.documentElement.compareDocumentPosition)B=function(g,h){if(!g.compareDocumentPosition|| -!h.compareDocumentPosition){if(g==h)i=true;return g.compareDocumentPosition?-1:1}g=g.compareDocumentPosition(h)&4?-1:g===h?0:1;if(g===0)i=true;return g};else if("sourceIndex"in s.documentElement)B=function(g,h){if(!g.sourceIndex||!h.sourceIndex){if(g==h)i=true;return g.sourceIndex?-1:1}g=g.sourceIndex-h.sourceIndex;if(g===0)i=true;return g};else if(s.createRange)B=function(g,h){if(!g.ownerDocument||!h.ownerDocument){if(g==h)i=true;return g.ownerDocument?-1:1}var l=g.ownerDocument.createRange(),m= -h.ownerDocument.createRange();l.setStart(g,0);l.setEnd(g,0);m.setStart(h,0);m.setEnd(h,0);g=l.compareBoundaryPoints(Range.START_TO_END,m);if(g===0)i=true;return g};(function(){var g=s.createElement("div"),h="script"+(new Date).getTime();g.innerHTML="<a name='"+h+"'/>";var l=s.documentElement;l.insertBefore(g,l.firstChild);if(s.getElementById(h)){n.find.ID=function(m,q,p){if(typeof q.getElementById!=="undefined"&&!p)return(q=q.getElementById(m[1]))?q.id===m[1]||typeof q.getAttributeNode!=="undefined"&& -q.getAttributeNode("id").nodeValue===m[1]?[q]:w:[]};n.filter.ID=function(m,q){var p=typeof m.getAttributeNode!=="undefined"&&m.getAttributeNode("id");return m.nodeType===1&&p&&p.nodeValue===q}}l.removeChild(g);l=g=null})();(function(){var g=s.createElement("div");g.appendChild(s.createComment(""));if(g.getElementsByTagName("*").length>0)n.find.TAG=function(h,l){l=l.getElementsByTagName(h[1]);if(h[1]==="*"){h=[];for(var m=0;l[m];m++)l[m].nodeType===1&&h.push(l[m]);l=h}return l};g.innerHTML="<a href='#'></a>"; -if(g.firstChild&&typeof g.firstChild.getAttribute!=="undefined"&&g.firstChild.getAttribute("href")!=="#")n.attrHandle.href=function(h){return h.getAttribute("href",2)};g=null})();s.querySelectorAll&&function(){var g=k,h=s.createElement("div");h.innerHTML="<p class='TEST'></p>";if(!(h.querySelectorAll&&h.querySelectorAll(".TEST").length===0)){k=function(m,q,p,v){q=q||s;if(!v&&q.nodeType===9&&!x(q))try{return z(q.querySelectorAll(m),p)}catch(t){}return g(m,q,p,v)};for(var l in g)k[l]=g[l];h=null}}(); -(function(){var g=s.createElement("div");g.innerHTML="<div class='test e'></div><div class='test'></div>";if(!(!g.getElementsByClassName||g.getElementsByClassName("e").length===0)){g.lastChild.className="e";if(g.getElementsByClassName("e").length!==1){n.order.splice(1,0,"CLASS");n.find.CLASS=function(h,l,m){if(typeof l.getElementsByClassName!=="undefined"&&!m)return l.getElementsByClassName(h[1])};g=null}}})();var E=s.compareDocumentPosition?function(g,h){return!!(g.compareDocumentPosition(h)&16)}: -function(g,h){return g!==h&&(g.contains?g.contains(h):true)},x=function(g){return(g=(g?g.ownerDocument||g:0).documentElement)?g.nodeName!=="HTML":false},ga=function(g,h){var l=[],m="",q;for(h=h.nodeType?[h]:h;q=n.match.PSEUDO.exec(g);){m+=q[0];g=g.replace(n.match.PSEUDO,"")}g=n.relative[g]?g+"*":g;q=0;for(var p=h.length;q<p;q++)k(g,h[q],l);return k.filter(m,l)};c.find=k;c.expr=k.selectors;c.expr[":"]=c.expr.filters;c.unique=k.uniqueSort;c.text=a;c.isXMLDoc=x;c.contains=E})();var eb=/Until$/,fb=/^(?:parents|prevUntil|prevAll)/, -gb=/,/;R=Array.prototype.slice;var Ia=function(a,b,d){if(c.isFunction(b))return c.grep(a,function(e,j){return!!b.call(e,j,e)===d});else if(b.nodeType)return c.grep(a,function(e){return e===b===d});else if(typeof b==="string"){var f=c.grep(a,function(e){return e.nodeType===1});if(Ua.test(b))return c.filter(b,f,!d);else b=c.filter(b,f)}return c.grep(a,function(e){return c.inArray(e,b)>=0===d})};c.fn.extend({find:function(a){for(var b=this.pushStack("","find",a),d=0,f=0,e=this.length;f<e;f++){d=b.length; -c.find(a,this[f],b);if(f>0)for(var j=d;j<b.length;j++)for(var i=0;i<d;i++)if(b[i]===b[j]){b.splice(j--,1);break}}return b},has:function(a){var b=c(a);return this.filter(function(){for(var d=0,f=b.length;d<f;d++)if(c.contains(this,b[d]))return true})},not:function(a){return this.pushStack(Ia(this,a,false),"not",a)},filter:function(a){return this.pushStack(Ia(this,a,true),"filter",a)},is:function(a){return!!a&&c.filter(a,this).length>0},closest:function(a,b){if(c.isArray(a)){var d=[],f=this[0],e,j= -{},i;if(f&&a.length){e=0;for(var o=a.length;e<o;e++){i=a[e];j[i]||(j[i]=c.expr.match.POS.test(i)?c(i,b||this.context):i)}for(;f&&f.ownerDocument&&f!==b;){for(i in j){e=j[i];if(e.jquery?e.index(f)>-1:c(f).is(e)){d.push({selector:i,elem:f});delete j[i]}}f=f.parentNode}}return d}var k=c.expr.match.POS.test(a)?c(a,b||this.context):null;return this.map(function(n,r){for(;r&&r.ownerDocument&&r!==b;){if(k?k.index(r)>-1:c(r).is(a))return r;r=r.parentNode}return null})},index:function(a){if(!a||typeof a=== -"string")return c.inArray(this[0],a?c(a):this.parent().children());return c.inArray(a.jquery?a[0]:a,this)},add:function(a,b){a=typeof a==="string"?c(a,b||this.context):c.makeArray(a);b=c.merge(this.get(),a);return this.pushStack(qa(a[0])||qa(b[0])?b:c.unique(b))},andSelf:function(){return this.add(this.prevObject)}});c.each({parent:function(a){return(a=a.parentNode)&&a.nodeType!==11?a:null},parents:function(a){return c.dir(a,"parentNode")},parentsUntil:function(a,b,d){return c.dir(a,"parentNode", -d)},next:function(a){return c.nth(a,2,"nextSibling")},prev:function(a){return c.nth(a,2,"previousSibling")},nextAll:function(a){return c.dir(a,"nextSibling")},prevAll:function(a){return c.dir(a,"previousSibling")},nextUntil:function(a,b,d){return c.dir(a,"nextSibling",d)},prevUntil:function(a,b,d){return c.dir(a,"previousSibling",d)},siblings:function(a){return c.sibling(a.parentNode.firstChild,a)},children:function(a){return c.sibling(a.firstChild)},contents:function(a){return c.nodeName(a,"iframe")? -a.contentDocument||a.contentWindow.document:c.makeArray(a.childNodes)}},function(a,b){c.fn[a]=function(d,f){var e=c.map(this,b,d);eb.test(a)||(f=d);if(f&&typeof f==="string")e=c.filter(f,e);e=this.length>1?c.unique(e):e;if((this.length>1||gb.test(f))&&fb.test(a))e=e.reverse();return this.pushStack(e,a,R.call(arguments).join(","))}});c.extend({filter:function(a,b,d){if(d)a=":not("+a+")";return c.find.matches(a,b)},dir:function(a,b,d){var f=[];for(a=a[b];a&&a.nodeType!==9&&(d===w||a.nodeType!==1||!c(a).is(d));){a.nodeType=== -1&&f.push(a);a=a[b]}return f},nth:function(a,b,d){b=b||1;for(var f=0;a;a=a[d])if(a.nodeType===1&&++f===b)break;return a},sibling:function(a,b){for(var d=[];a;a=a.nextSibling)a.nodeType===1&&a!==b&&d.push(a);return d}});var Ja=/ jQuery\d+="(?:\d+|null)"/g,V=/^\s+/,Ka=/(<([\w:]+)[^>]*?)\/>/g,hb=/^(?:area|br|col|embed|hr|img|input|link|meta|param)$/i,La=/<([\w:]+)/,ib=/<tbody/i,jb=/<|&#?\w+;/,ta=/<script|<object|<embed|<option|<style/i,ua=/checked\s*(?:[^=]|=\s*.checked.)/i,Ma=function(a,b,d){return hb.test(d)? -a:b+"></"+d+">"},F={option:[1,"<select multiple='multiple'>","</select>"],legend:[1,"<fieldset>","</fieldset>"],thead:[1,"<table>","</table>"],tr:[2,"<table><tbody>","</tbody></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],col:[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"],area:[1,"<map>","</map>"],_default:[0,"",""]};F.optgroup=F.option;F.tbody=F.tfoot=F.colgroup=F.caption=F.thead;F.th=F.td;if(!c.support.htmlSerialize)F._default=[1,"div<div>","</div>"];c.fn.extend({text:function(a){if(c.isFunction(a))return this.each(function(b){var d= -c(this);d.text(a.call(this,b,d.text()))});if(typeof a!=="object"&&a!==w)return this.empty().append((this[0]&&this[0].ownerDocument||s).createTextNode(a));return c.text(this)},wrapAll:function(a){if(c.isFunction(a))return this.each(function(d){c(this).wrapAll(a.call(this,d))});if(this[0]){var b=c(a,this[0].ownerDocument).eq(0).clone(true);this[0].parentNode&&b.insertBefore(this[0]);b.map(function(){for(var d=this;d.firstChild&&d.firstChild.nodeType===1;)d=d.firstChild;return d}).append(this)}return this}, -wrapInner:function(a){if(c.isFunction(a))return this.each(function(b){c(this).wrapInner(a.call(this,b))});return this.each(function(){var b=c(this),d=b.contents();d.length?d.wrapAll(a):b.append(a)})},wrap:function(a){return this.each(function(){c(this).wrapAll(a)})},unwrap:function(){return this.parent().each(function(){c.nodeName(this,"body")||c(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,true,function(a){this.nodeType===1&&this.appendChild(a)})}, -prepend:function(){return this.domManip(arguments,true,function(a){this.nodeType===1&&this.insertBefore(a,this.firstChild)})},before:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,false,function(b){this.parentNode.insertBefore(b,this)});else if(arguments.length){var a=c(arguments[0]);a.push.apply(a,this.toArray());return this.pushStack(a,"before",arguments)}},after:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,false,function(b){this.parentNode.insertBefore(b, -this.nextSibling)});else if(arguments.length){var a=this.pushStack(this,"after",arguments);a.push.apply(a,c(arguments[0]).toArray());return a}},remove:function(a,b){for(var d=0,f;(f=this[d])!=null;d++)if(!a||c.filter(a,[f]).length){if(!b&&f.nodeType===1){c.cleanData(f.getElementsByTagName("*"));c.cleanData([f])}f.parentNode&&f.parentNode.removeChild(f)}return this},empty:function(){for(var a=0,b;(b=this[a])!=null;a++)for(b.nodeType===1&&c.cleanData(b.getElementsByTagName("*"));b.firstChild;)b.removeChild(b.firstChild); -return this},clone:function(a){var b=this.map(function(){if(!c.support.noCloneEvent&&!c.isXMLDoc(this)){var d=this.outerHTML,f=this.ownerDocument;if(!d){d=f.createElement("div");d.appendChild(this.cloneNode(true));d=d.innerHTML}return c.clean([d.replace(Ja,"").replace(/=([^="'>\s]+\/)>/g,'="$1">').replace(V,"")],f)[0]}else return this.cloneNode(true)});if(a===true){ra(this,b);ra(this.find("*"),b.find("*"))}return b},html:function(a){if(a===w)return this[0]&&this[0].nodeType===1?this[0].innerHTML.replace(Ja, -""):null;else if(typeof a==="string"&&!ta.test(a)&&(c.support.leadingWhitespace||!V.test(a))&&!F[(La.exec(a)||["",""])[1].toLowerCase()]){a=a.replace(Ka,Ma);try{for(var b=0,d=this.length;b<d;b++)if(this[b].nodeType===1){c.cleanData(this[b].getElementsByTagName("*"));this[b].innerHTML=a}}catch(f){this.empty().append(a)}}else c.isFunction(a)?this.each(function(e){var j=c(this),i=j.html();j.empty().append(function(){return a.call(this,e,i)})}):this.empty().append(a);return this},replaceWith:function(a){if(this[0]&& -this[0].parentNode){if(c.isFunction(a))return this.each(function(b){var d=c(this),f=d.html();d.replaceWith(a.call(this,b,f))});if(typeof a!=="string")a=c(a).detach();return this.each(function(){var b=this.nextSibling,d=this.parentNode;c(this).remove();b?c(b).before(a):c(d).append(a)})}else return this.pushStack(c(c.isFunction(a)?a():a),"replaceWith",a)},detach:function(a){return this.remove(a,true)},domManip:function(a,b,d){function f(u){return c.nodeName(u,"table")?u.getElementsByTagName("tbody")[0]|| -u.appendChild(u.ownerDocument.createElement("tbody")):u}var e,j,i=a[0],o=[],k;if(!c.support.checkClone&&arguments.length===3&&typeof i==="string"&&ua.test(i))return this.each(function(){c(this).domManip(a,b,d,true)});if(c.isFunction(i))return this.each(function(u){var z=c(this);a[0]=i.call(this,u,b?z.html():w);z.domManip(a,b,d)});if(this[0]){e=i&&i.parentNode;e=c.support.parentNode&&e&&e.nodeType===11&&e.childNodes.length===this.length?{fragment:e}:sa(a,this,o);k=e.fragment;if(j=k.childNodes.length=== -1?(k=k.firstChild):k.firstChild){b=b&&c.nodeName(j,"tr");for(var n=0,r=this.length;n<r;n++)d.call(b?f(this[n],j):this[n],n>0||e.cacheable||this.length>1?k.cloneNode(true):k)}o.length&&c.each(o,Qa)}return this}});c.fragments={};c.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b){c.fn[a]=function(d){var f=[];d=c(d);var e=this.length===1&&this[0].parentNode;if(e&&e.nodeType===11&&e.childNodes.length===1&&d.length===1){d[b](this[0]); -return this}else{e=0;for(var j=d.length;e<j;e++){var i=(e>0?this.clone(true):this).get();c.fn[b].apply(c(d[e]),i);f=f.concat(i)}return this.pushStack(f,a,d.selector)}}});c.extend({clean:function(a,b,d,f){b=b||s;if(typeof b.createElement==="undefined")b=b.ownerDocument||b[0]&&b[0].ownerDocument||s;for(var e=[],j=0,i;(i=a[j])!=null;j++){if(typeof i==="number")i+="";if(i){if(typeof i==="string"&&!jb.test(i))i=b.createTextNode(i);else if(typeof i==="string"){i=i.replace(Ka,Ma);var o=(La.exec(i)||["", -""])[1].toLowerCase(),k=F[o]||F._default,n=k[0],r=b.createElement("div");for(r.innerHTML=k[1]+i+k[2];n--;)r=r.lastChild;if(!c.support.tbody){n=ib.test(i);o=o==="table"&&!n?r.firstChild&&r.firstChild.childNodes:k[1]==="<table>"&&!n?r.childNodes:[];for(k=o.length-1;k>=0;--k)c.nodeName(o[k],"tbody")&&!o[k].childNodes.length&&o[k].parentNode.removeChild(o[k])}!c.support.leadingWhitespace&&V.test(i)&&r.insertBefore(b.createTextNode(V.exec(i)[0]),r.firstChild);i=r.childNodes}if(i.nodeType)e.push(i);else e= -c.merge(e,i)}}if(d)for(j=0;e[j];j++)if(f&&c.nodeName(e[j],"script")&&(!e[j].type||e[j].type.toLowerCase()==="text/javascript"))f.push(e[j].parentNode?e[j].parentNode.removeChild(e[j]):e[j]);else{e[j].nodeType===1&&e.splice.apply(e,[j+1,0].concat(c.makeArray(e[j].getElementsByTagName("script"))));d.appendChild(e[j])}return e},cleanData:function(a){for(var b,d,f=c.cache,e=c.event.special,j=c.support.deleteExpando,i=0,o;(o=a[i])!=null;i++)if(d=o[c.expando]){b=f[d];if(b.events)for(var k in b.events)e[k]? -c.event.remove(o,k):Ca(o,k,b.handle);if(j)delete o[c.expando];else o.removeAttribute&&o.removeAttribute(c.expando);delete f[d]}}});var kb=/z-?index|font-?weight|opacity|zoom|line-?height/i,Na=/alpha\([^)]*\)/,Oa=/opacity=([^)]*)/,ha=/float/i,ia=/-([a-z])/ig,lb=/([A-Z])/g,mb=/^-?\d+(?:px)?$/i,nb=/^-?\d/,ob={position:"absolute",visibility:"hidden",display:"block"},pb=["Left","Right"],qb=["Top","Bottom"],rb=s.defaultView&&s.defaultView.getComputedStyle,Pa=c.support.cssFloat?"cssFloat":"styleFloat",ja= -function(a,b){return b.toUpperCase()};c.fn.css=function(a,b){return X(this,a,b,true,function(d,f,e){if(e===w)return c.curCSS(d,f);if(typeof e==="number"&&!kb.test(f))e+="px";c.style(d,f,e)})};c.extend({style:function(a,b,d){if(!a||a.nodeType===3||a.nodeType===8)return w;if((b==="width"||b==="height")&&parseFloat(d)<0)d=w;var f=a.style||a,e=d!==w;if(!c.support.opacity&&b==="opacity"){if(e){f.zoom=1;b=parseInt(d,10)+""==="NaN"?"":"alpha(opacity="+d*100+")";a=f.filter||c.curCSS(a,"filter")||"";f.filter= -Na.test(a)?a.replace(Na,b):b}return f.filter&&f.filter.indexOf("opacity=")>=0?parseFloat(Oa.exec(f.filter)[1])/100+"":""}if(ha.test(b))b=Pa;b=b.replace(ia,ja);if(e)f[b]=d;return f[b]},css:function(a,b,d,f){if(b==="width"||b==="height"){var e,j=b==="width"?pb:qb;function i(){e=b==="width"?a.offsetWidth:a.offsetHeight;f!=="border"&&c.each(j,function(){f||(e-=parseFloat(c.curCSS(a,"padding"+this,true))||0);if(f==="margin")e+=parseFloat(c.curCSS(a,"margin"+this,true))||0;else e-=parseFloat(c.curCSS(a, -"border"+this+"Width",true))||0})}a.offsetWidth!==0?i():c.swap(a,ob,i);return Math.max(0,Math.round(e))}return c.curCSS(a,b,d)},curCSS:function(a,b,d){var f,e=a.style;if(!c.support.opacity&&b==="opacity"&&a.currentStyle){f=Oa.test(a.currentStyle.filter||"")?parseFloat(RegExp.$1)/100+"":"";return f===""?"1":f}if(ha.test(b))b=Pa;if(!d&&e&&e[b])f=e[b];else if(rb){if(ha.test(b))b="float";b=b.replace(lb,"-$1").toLowerCase();e=a.ownerDocument.defaultView;if(!e)return null;if(a=e.getComputedStyle(a,null))f= -a.getPropertyValue(b);if(b==="opacity"&&f==="")f="1"}else if(a.currentStyle){d=b.replace(ia,ja);f=a.currentStyle[b]||a.currentStyle[d];if(!mb.test(f)&&nb.test(f)){b=e.left;var j=a.runtimeStyle.left;a.runtimeStyle.left=a.currentStyle.left;e.left=d==="fontSize"?"1em":f||0;f=e.pixelLeft+"px";e.left=b;a.runtimeStyle.left=j}}return f},swap:function(a,b,d){var f={};for(var e in b){f[e]=a.style[e];a.style[e]=b[e]}d.call(a);for(e in b)a.style[e]=f[e]}});if(c.expr&&c.expr.filters){c.expr.filters.hidden=function(a){var b= -a.offsetWidth,d=a.offsetHeight,f=a.nodeName.toLowerCase()==="tr";return b===0&&d===0&&!f?true:b>0&&d>0&&!f?false:c.curCSS(a,"display")==="none"};c.expr.filters.visible=function(a){return!c.expr.filters.hidden(a)}}var sb=J(),tb=/<script(.|\s)*?\/script>/gi,ub=/select|textarea/i,vb=/color|date|datetime|email|hidden|month|number|password|range|search|tel|text|time|url|week/i,N=/=\?(&|$)/,ka=/\?/,wb=/(\?|&)_=.*?(&|$)/,xb=/^(\w+:)?\/\/([^\/?#]+)/,yb=/%20/g,zb=c.fn.load;c.fn.extend({load:function(a,b,d){if(typeof a!== -"string")return zb.call(this,a);else if(!this.length)return this;var f=a.indexOf(" ");if(f>=0){var e=a.slice(f,a.length);a=a.slice(0,f)}f="GET";if(b)if(c.isFunction(b)){d=b;b=null}else if(typeof b==="object"){b=c.param(b,c.ajaxSettings.traditional);f="POST"}var j=this;c.ajax({url:a,type:f,dataType:"html",data:b,complete:function(i,o){if(o==="success"||o==="notmodified")j.html(e?c("<div />").append(i.responseText.replace(tb,"")).find(e):i.responseText);d&&j.each(d,[i.responseText,o,i])}});return this}, -serialize:function(){return c.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?c.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||ub.test(this.nodeName)||vb.test(this.type))}).map(function(a,b){a=c(this).val();return a==null?null:c.isArray(a)?c.map(a,function(d){return{name:b.name,value:d}}):{name:b.name,value:a}}).get()}});c.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "), -function(a,b){c.fn[b]=function(d){return this.bind(b,d)}});c.extend({get:function(a,b,d,f){if(c.isFunction(b)){f=f||d;d=b;b=null}return c.ajax({type:"GET",url:a,data:b,success:d,dataType:f})},getScript:function(a,b){return c.get(a,null,b,"script")},getJSON:function(a,b,d){return c.get(a,b,d,"json")},post:function(a,b,d,f){if(c.isFunction(b)){f=f||d;d=b;b={}}return c.ajax({type:"POST",url:a,data:b,success:d,dataType:f})},ajaxSetup:function(a){c.extend(c.ajaxSettings,a)},ajaxSettings:{url:location.href, -global:true,type:"GET",contentType:"application/x-www-form-urlencoded",processData:true,async:true,xhr:A.XMLHttpRequest&&(A.location.protocol!=="file:"||!A.ActiveXObject)?function(){return new A.XMLHttpRequest}:function(){try{return new A.ActiveXObject("Microsoft.XMLHTTP")}catch(a){}},accepts:{xml:"application/xml, text/xml",html:"text/html",script:"text/javascript, application/javascript",json:"application/json, text/javascript",text:"text/plain",_default:"*/*"}},lastModified:{},etag:{},ajax:function(a){function b(){e.success&& -e.success.call(k,o,i,x);e.global&&f("ajaxSuccess",[x,e])}function d(){e.complete&&e.complete.call(k,x,i);e.global&&f("ajaxComplete",[x,e]);e.global&&!--c.active&&c.event.trigger("ajaxStop")}function f(q,p){(e.context?c(e.context):c.event).trigger(q,p)}var e=c.extend(true,{},c.ajaxSettings,a),j,i,o,k=a&&a.context||e,n=e.type.toUpperCase();if(e.data&&e.processData&&typeof e.data!=="string")e.data=c.param(e.data,e.traditional);if(e.dataType==="jsonp"){if(n==="GET")N.test(e.url)||(e.url+=(ka.test(e.url)? -"&":"?")+(e.jsonp||"callback")+"=?");else if(!e.data||!N.test(e.data))e.data=(e.data?e.data+"&":"")+(e.jsonp||"callback")+"=?";e.dataType="json"}if(e.dataType==="json"&&(e.data&&N.test(e.data)||N.test(e.url))){j=e.jsonpCallback||"jsonp"+sb++;if(e.data)e.data=(e.data+"").replace(N,"="+j+"$1");e.url=e.url.replace(N,"="+j+"$1");e.dataType="script";A[j]=A[j]||function(q){o=q;b();d();A[j]=w;try{delete A[j]}catch(p){}z&&z.removeChild(C)}}if(e.dataType==="script"&&e.cache===null)e.cache=false;if(e.cache=== -false&&n==="GET"){var r=J(),u=e.url.replace(wb,"$1_="+r+"$2");e.url=u+(u===e.url?(ka.test(e.url)?"&":"?")+"_="+r:"")}if(e.data&&n==="GET")e.url+=(ka.test(e.url)?"&":"?")+e.data;e.global&&!c.active++&&c.event.trigger("ajaxStart");r=(r=xb.exec(e.url))&&(r[1]&&r[1]!==location.protocol||r[2]!==location.host);if(e.dataType==="script"&&n==="GET"&&r){var z=s.getElementsByTagName("head")[0]||s.documentElement,C=s.createElement("script");C.src=e.url;if(e.scriptCharset)C.charset=e.scriptCharset;if(!j){var B= -false;C.onload=C.onreadystatechange=function(){if(!B&&(!this.readyState||this.readyState==="loaded"||this.readyState==="complete")){B=true;b();d();C.onload=C.onreadystatechange=null;z&&C.parentNode&&z.removeChild(C)}}}z.insertBefore(C,z.firstChild);return w}var E=false,x=e.xhr();if(x){e.username?x.open(n,e.url,e.async,e.username,e.password):x.open(n,e.url,e.async);try{if(e.data||a&&a.contentType)x.setRequestHeader("Content-Type",e.contentType);if(e.ifModified){c.lastModified[e.url]&&x.setRequestHeader("If-Modified-Since", -c.lastModified[e.url]);c.etag[e.url]&&x.setRequestHeader("If-None-Match",c.etag[e.url])}r||x.setRequestHeader("X-Requested-With","XMLHttpRequest");x.setRequestHeader("Accept",e.dataType&&e.accepts[e.dataType]?e.accepts[e.dataType]+", */*":e.accepts._default)}catch(ga){}if(e.beforeSend&&e.beforeSend.call(k,x,e)===false){e.global&&!--c.active&&c.event.trigger("ajaxStop");x.abort();return false}e.global&&f("ajaxSend",[x,e]);var g=x.onreadystatechange=function(q){if(!x||x.readyState===0||q==="abort"){E|| -d();E=true;if(x)x.onreadystatechange=c.noop}else if(!E&&x&&(x.readyState===4||q==="timeout")){E=true;x.onreadystatechange=c.noop;i=q==="timeout"?"timeout":!c.httpSuccess(x)?"error":e.ifModified&&c.httpNotModified(x,e.url)?"notmodified":"success";var p;if(i==="success")try{o=c.httpData(x,e.dataType,e)}catch(v){i="parsererror";p=v}if(i==="success"||i==="notmodified")j||b();else c.handleError(e,x,i,p);d();q==="timeout"&&x.abort();if(e.async)x=null}};try{var h=x.abort;x.abort=function(){x&&h.call(x); -g("abort")}}catch(l){}e.async&&e.timeout>0&&setTimeout(function(){x&&!E&&g("timeout")},e.timeout);try{x.send(n==="POST"||n==="PUT"||n==="DELETE"?e.data:null)}catch(m){c.handleError(e,x,null,m);d()}e.async||g();return x}},handleError:function(a,b,d,f){if(a.error)a.error.call(a.context||a,b,d,f);if(a.global)(a.context?c(a.context):c.event).trigger("ajaxError",[b,a,f])},active:0,httpSuccess:function(a){try{return!a.status&&location.protocol==="file:"||a.status>=200&&a.status<300||a.status===304||a.status=== -1223||a.status===0}catch(b){}return false},httpNotModified:function(a,b){var d=a.getResponseHeader("Last-Modified"),f=a.getResponseHeader("Etag");if(d)c.lastModified[b]=d;if(f)c.etag[b]=f;return a.status===304||a.status===0},httpData:function(a,b,d){var f=a.getResponseHeader("content-type")||"",e=b==="xml"||!b&&f.indexOf("xml")>=0;a=e?a.responseXML:a.responseText;e&&a.documentElement.nodeName==="parsererror"&&c.error("parsererror");if(d&&d.dataFilter)a=d.dataFilter(a,b);if(typeof a==="string")if(b=== -"json"||!b&&f.indexOf("json")>=0)a=c.parseJSON(a);else if(b==="script"||!b&&f.indexOf("javascript")>=0)c.globalEval(a);return a},param:function(a,b){function d(i,o){if(c.isArray(o))c.each(o,function(k,n){b||/\[\]$/.test(i)?f(i,n):d(i+"["+(typeof n==="object"||c.isArray(n)?k:"")+"]",n)});else!b&&o!=null&&typeof o==="object"?c.each(o,function(k,n){d(i+"["+k+"]",n)}):f(i,o)}function f(i,o){o=c.isFunction(o)?o():o;e[e.length]=encodeURIComponent(i)+"="+encodeURIComponent(o)}var e=[];if(b===w)b=c.ajaxSettings.traditional; -if(c.isArray(a)||a.jquery)c.each(a,function(){f(this.name,this.value)});else for(var j in a)d(j,a[j]);return e.join("&").replace(yb,"+")}});var la={},Ab=/toggle|show|hide/,Bb=/^([+-]=)?([\d+-.]+)(.*)$/,W,va=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]];c.fn.extend({show:function(a,b){if(a||a===0)return this.animate(K("show",3),a,b);else{a=0;for(b=this.length;a<b;a++){var d=c.data(this[a],"olddisplay"); -this[a].style.display=d||"";if(c.css(this[a],"display")==="none"){d=this[a].nodeName;var f;if(la[d])f=la[d];else{var e=c("<"+d+" />").appendTo("body");f=e.css("display");if(f==="none")f="block";e.remove();la[d]=f}c.data(this[a],"olddisplay",f)}}a=0;for(b=this.length;a<b;a++)this[a].style.display=c.data(this[a],"olddisplay")||"";return this}},hide:function(a,b){if(a||a===0)return this.animate(K("hide",3),a,b);else{a=0;for(b=this.length;a<b;a++){var d=c.data(this[a],"olddisplay");!d&&d!=="none"&&c.data(this[a], -"olddisplay",c.css(this[a],"display"))}a=0;for(b=this.length;a<b;a++)this[a].style.display="none";return this}},_toggle:c.fn.toggle,toggle:function(a,b){var d=typeof a==="boolean";if(c.isFunction(a)&&c.isFunction(b))this._toggle.apply(this,arguments);else a==null||d?this.each(function(){var f=d?a:c(this).is(":hidden");c(this)[f?"show":"hide"]()}):this.animate(K("toggle",3),a,b);return this},fadeTo:function(a,b,d){return this.filter(":hidden").css("opacity",0).show().end().animate({opacity:b},a,d)}, -animate:function(a,b,d,f){var e=c.speed(b,d,f);if(c.isEmptyObject(a))return this.each(e.complete);return this[e.queue===false?"each":"queue"](function(){var j=c.extend({},e),i,o=this.nodeType===1&&c(this).is(":hidden"),k=this;for(i in a){var n=i.replace(ia,ja);if(i!==n){a[n]=a[i];delete a[i];i=n}if(a[i]==="hide"&&o||a[i]==="show"&&!o)return j.complete.call(this);if((i==="height"||i==="width")&&this.style){j.display=c.css(this,"display");j.overflow=this.style.overflow}if(c.isArray(a[i])){(j.specialEasing= -j.specialEasing||{})[i]=a[i][1];a[i]=a[i][0]}}if(j.overflow!=null)this.style.overflow="hidden";j.curAnim=c.extend({},a);c.each(a,function(r,u){var z=new c.fx(k,j,r);if(Ab.test(u))z[u==="toggle"?o?"show":"hide":u](a);else{var C=Bb.exec(u),B=z.cur(true)||0;if(C){u=parseFloat(C[2]);var E=C[3]||"px";if(E!=="px"){k.style[r]=(u||1)+E;B=(u||1)/z.cur(true)*B;k.style[r]=B+E}if(C[1])u=(C[1]==="-="?-1:1)*u+B;z.custom(B,u,E)}else z.custom(B,u,"")}});return true})},stop:function(a,b){var d=c.timers;a&&this.queue([]); -this.each(function(){for(var f=d.length-1;f>=0;f--)if(d[f].elem===this){b&&d[f](true);d.splice(f,1)}});b||this.dequeue();return this}});c.each({slideDown:K("show",1),slideUp:K("hide",1),slideToggle:K("toggle",1),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"}},function(a,b){c.fn[a]=function(d,f){return this.animate(b,d,f)}});c.extend({speed:function(a,b,d){var f=a&&typeof a==="object"?a:{complete:d||!d&&b||c.isFunction(a)&&a,duration:a,easing:d&&b||b&&!c.isFunction(b)&&b};f.duration=c.fx.off?0:typeof f.duration=== -"number"?f.duration:c.fx.speeds[f.duration]||c.fx.speeds._default;f.old=f.complete;f.complete=function(){f.queue!==false&&c(this).dequeue();c.isFunction(f.old)&&f.old.call(this)};return f},easing:{linear:function(a,b,d,f){return d+f*a},swing:function(a,b,d,f){return(-Math.cos(a*Math.PI)/2+0.5)*f+d}},timers:[],fx:function(a,b,d){this.options=b;this.elem=a;this.prop=d;if(!b.orig)b.orig={}}});c.fx.prototype={update:function(){this.options.step&&this.options.step.call(this.elem,this.now,this);(c.fx.step[this.prop]|| -c.fx.step._default)(this);if((this.prop==="height"||this.prop==="width")&&this.elem.style)this.elem.style.display="block"},cur:function(a){if(this.elem[this.prop]!=null&&(!this.elem.style||this.elem.style[this.prop]==null))return this.elem[this.prop];return(a=parseFloat(c.css(this.elem,this.prop,a)))&&a>-10000?a:parseFloat(c.curCSS(this.elem,this.prop))||0},custom:function(a,b,d){function f(j){return e.step(j)}this.startTime=J();this.start=a;this.end=b;this.unit=d||this.unit||"px";this.now=this.start; -this.pos=this.state=0;var e=this;f.elem=this.elem;if(f()&&c.timers.push(f)&&!W)W=setInterval(c.fx.tick,13)},show:function(){this.options.orig[this.prop]=c.style(this.elem,this.prop);this.options.show=true;this.custom(this.prop==="width"||this.prop==="height"?1:0,this.cur());c(this.elem).show()},hide:function(){this.options.orig[this.prop]=c.style(this.elem,this.prop);this.options.hide=true;this.custom(this.cur(),0)},step:function(a){var b=J(),d=true;if(a||b>=this.options.duration+this.startTime){this.now= -this.end;this.pos=this.state=1;this.update();this.options.curAnim[this.prop]=true;for(var f in this.options.curAnim)if(this.options.curAnim[f]!==true)d=false;if(d){if(this.options.display!=null){this.elem.style.overflow=this.options.overflow;a=c.data(this.elem,"olddisplay");this.elem.style.display=a?a:this.options.display;if(c.css(this.elem,"display")==="none")this.elem.style.display="block"}this.options.hide&&c(this.elem).hide();if(this.options.hide||this.options.show)for(var e in this.options.curAnim)c.style(this.elem, -e,this.options.orig[e]);this.options.complete.call(this.elem)}return false}else{e=b-this.startTime;this.state=e/this.options.duration;a=this.options.easing||(c.easing.swing?"swing":"linear");this.pos=c.easing[this.options.specialEasing&&this.options.specialEasing[this.prop]||a](this.state,e,0,1,this.options.duration);this.now=this.start+(this.end-this.start)*this.pos;this.update()}return true}};c.extend(c.fx,{tick:function(){for(var a=c.timers,b=0;b<a.length;b++)a[b]()||a.splice(b--,1);a.length|| -c.fx.stop()},stop:function(){clearInterval(W);W=null},speeds:{slow:600,fast:200,_default:400},step:{opacity:function(a){c.style(a.elem,"opacity",a.now)},_default:function(a){if(a.elem.style&&a.elem.style[a.prop]!=null)a.elem.style[a.prop]=(a.prop==="width"||a.prop==="height"?Math.max(0,a.now):a.now)+a.unit;else a.elem[a.prop]=a.now}}});if(c.expr&&c.expr.filters)c.expr.filters.animated=function(a){return c.grep(c.timers,function(b){return a===b.elem}).length};c.fn.offset="getBoundingClientRect"in s.documentElement? -function(a){var b=this[0];if(a)return this.each(function(e){c.offset.setOffset(this,a,e)});if(!b||!b.ownerDocument)return null;if(b===b.ownerDocument.body)return c.offset.bodyOffset(b);var d=b.getBoundingClientRect(),f=b.ownerDocument;b=f.body;f=f.documentElement;return{top:d.top+(self.pageYOffset||c.support.boxModel&&f.scrollTop||b.scrollTop)-(f.clientTop||b.clientTop||0),left:d.left+(self.pageXOffset||c.support.boxModel&&f.scrollLeft||b.scrollLeft)-(f.clientLeft||b.clientLeft||0)}}:function(a){var b= -this[0];if(a)return this.each(function(r){c.offset.setOffset(this,a,r)});if(!b||!b.ownerDocument)return null;if(b===b.ownerDocument.body)return c.offset.bodyOffset(b);c.offset.initialize();var d=b.offsetParent,f=b,e=b.ownerDocument,j,i=e.documentElement,o=e.body;f=(e=e.defaultView)?e.getComputedStyle(b,null):b.currentStyle;for(var k=b.offsetTop,n=b.offsetLeft;(b=b.parentNode)&&b!==o&&b!==i;){if(c.offset.supportsFixedPosition&&f.position==="fixed")break;j=e?e.getComputedStyle(b,null):b.currentStyle; -k-=b.scrollTop;n-=b.scrollLeft;if(b===d){k+=b.offsetTop;n+=b.offsetLeft;if(c.offset.doesNotAddBorder&&!(c.offset.doesAddBorderForTableAndCells&&/^t(able|d|h)$/i.test(b.nodeName))){k+=parseFloat(j.borderTopWidth)||0;n+=parseFloat(j.borderLeftWidth)||0}f=d;d=b.offsetParent}if(c.offset.subtractsBorderForOverflowNotVisible&&j.overflow!=="visible"){k+=parseFloat(j.borderTopWidth)||0;n+=parseFloat(j.borderLeftWidth)||0}f=j}if(f.position==="relative"||f.position==="static"){k+=o.offsetTop;n+=o.offsetLeft}if(c.offset.supportsFixedPosition&& -f.position==="fixed"){k+=Math.max(i.scrollTop,o.scrollTop);n+=Math.max(i.scrollLeft,o.scrollLeft)}return{top:k,left:n}};c.offset={initialize:function(){var a=s.body,b=s.createElement("div"),d,f,e,j=parseFloat(c.curCSS(a,"marginTop",true))||0;c.extend(b.style,{position:"absolute",top:0,left:0,margin:0,border:0,width:"1px",height:"1px",visibility:"hidden"});b.innerHTML="<div style='position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;'><div></div></div><table style='position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;' cellpadding='0' cellspacing='0'><tr><td></td></tr></table>"; -a.insertBefore(b,a.firstChild);d=b.firstChild;f=d.firstChild;e=d.nextSibling.firstChild.firstChild;this.doesNotAddBorder=f.offsetTop!==5;this.doesAddBorderForTableAndCells=e.offsetTop===5;f.style.position="fixed";f.style.top="20px";this.supportsFixedPosition=f.offsetTop===20||f.offsetTop===15;f.style.position=f.style.top="";d.style.overflow="hidden";d.style.position="relative";this.subtractsBorderForOverflowNotVisible=f.offsetTop===-5;this.doesNotIncludeMarginInBodyOffset=a.offsetTop!==j;a.removeChild(b); -c.offset.initialize=c.noop},bodyOffset:function(a){var b=a.offsetTop,d=a.offsetLeft;c.offset.initialize();if(c.offset.doesNotIncludeMarginInBodyOffset){b+=parseFloat(c.curCSS(a,"marginTop",true))||0;d+=parseFloat(c.curCSS(a,"marginLeft",true))||0}return{top:b,left:d}},setOffset:function(a,b,d){if(/static/.test(c.curCSS(a,"position")))a.style.position="relative";var f=c(a),e=f.offset(),j=parseInt(c.curCSS(a,"top",true),10)||0,i=parseInt(c.curCSS(a,"left",true),10)||0;if(c.isFunction(b))b=b.call(a, -d,e);d={top:b.top-e.top+j,left:b.left-e.left+i};"using"in b?b.using.call(a,d):f.css(d)}};c.fn.extend({position:function(){if(!this[0])return null;var a=this[0],b=this.offsetParent(),d=this.offset(),f=/^body|html$/i.test(b[0].nodeName)?{top:0,left:0}:b.offset();d.top-=parseFloat(c.curCSS(a,"marginTop",true))||0;d.left-=parseFloat(c.curCSS(a,"marginLeft",true))||0;f.top+=parseFloat(c.curCSS(b[0],"borderTopWidth",true))||0;f.left+=parseFloat(c.curCSS(b[0],"borderLeftWidth",true))||0;return{top:d.top- -f.top,left:d.left-f.left}},offsetParent:function(){return this.map(function(){for(var a=this.offsetParent||s.body;a&&!/^body|html$/i.test(a.nodeName)&&c.css(a,"position")==="static";)a=a.offsetParent;return a})}});c.each(["Left","Top"],function(a,b){var d="scroll"+b;c.fn[d]=function(f){var e=this[0],j;if(!e)return null;if(f!==w)return this.each(function(){if(j=wa(this))j.scrollTo(!a?f:c(j).scrollLeft(),a?f:c(j).scrollTop());else this[d]=f});else return(j=wa(e))?"pageXOffset"in j?j[a?"pageYOffset": -"pageXOffset"]:c.support.boxModel&&j.document.documentElement[d]||j.document.body[d]:e[d]}});c.each(["Height","Width"],function(a,b){var d=b.toLowerCase();c.fn["inner"+b]=function(){return this[0]?c.css(this[0],d,false,"padding"):null};c.fn["outer"+b]=function(f){return this[0]?c.css(this[0],d,false,f?"margin":"border"):null};c.fn[d]=function(f){var e=this[0];if(!e)return f==null?null:this;if(c.isFunction(f))return this.each(function(j){var i=c(this);i[d](f.call(this,j,i[d]()))});return"scrollTo"in -e&&e.document?e.document.compatMode==="CSS1Compat"&&e.document.documentElement["client"+b]||e.document.body["client"+b]:e.nodeType===9?Math.max(e.documentElement["client"+b],e.body["scroll"+b],e.documentElement["scroll"+b],e.body["offset"+b],e.documentElement["offset"+b]):f===w?c.css(e,d):this.css(d,typeof f==="string"?f:f+"px")}});A.jQuery=A.$=c})(window); +/*! jQuery v1.7.1 jquery.com | jquery.org/license */ +(function(a,b){function cy(a){return f.isWindow(a)?a:a.nodeType===9?a.defaultView||a.parentWindow:!1}function cv(a){if(!ck[a]){var b=c.body,d=f("<"+a+">").appendTo(b),e=d.css("display");d.remove();if(e==="none"||e===""){cl||(cl=c.createElement("iframe"),cl.frameBorder=cl.width=cl.height=0),b.appendChild(cl);if(!cm||!cl.createElement)cm=(cl.contentWindow||cl.contentDocument).document,cm.write((c.compatMode==="CSS1Compat"?"<!doctype html>":"")+"<html><body>"),cm.close();d=cm.createElement(a),cm.body.appendChild(d),e=f.css(d,"display"),b.removeChild(cl)}ck[a]=e}return ck[a]}function cu(a,b){var c={};f.each(cq.concat.apply([],cq.slice(0,b)),function(){c[this]=a});return c}function ct(){cr=b}function cs(){setTimeout(ct,0);return cr=f.now()}function cj(){try{return new a.ActiveXObject("Microsoft.XMLHTTP")}catch(b){}}function ci(){try{return new a.XMLHttpRequest}catch(b){}}function cc(a,c){a.dataFilter&&(c=a.dataFilter(c,a.dataType));var d=a.dataTypes,e={},g,h,i=d.length,j,k=d[0],l,m,n,o,p;for(g=1;g<i;g++){if(g===1)for(h in a.converters)typeof h=="string"&&(e[h.toLowerCase()]=a.converters[h]);l=k,k=d[g];if(k==="*")k=l;else if(l!=="*"&&l!==k){m=l+" "+k,n=e[m]||e["* "+k];if(!n){p=b;for(o in e){j=o.split(" ");if(j[0]===l||j[0]==="*"){p=e[j[1]+" "+k];if(p){o=e[o],o===!0?n=p:p===!0&&(n=o);break}}}}!n&&!p&&f.error("No conversion from "+m.replace(" "," to ")),n!==!0&&(c=n?n(c):p(o(c)))}}return c}function cb(a,c,d){var e=a.contents,f=a.dataTypes,g=a.responseFields,h,i,j,k;for(i in g)i in d&&(c[g[i]]=d[i]);while(f[0]==="*")f.shift(),h===b&&(h=a.mimeType||c.getResponseHeader("content-type"));if(h)for(i in e)if(e[i]&&e[i].test(h)){f.unshift(i);break}if(f[0]in d)j=f[0];else{for(i in d){if(!f[0]||a.converters[i+" "+f[0]]){j=i;break}k||(k=i)}j=j||k}if(j){j!==f[0]&&f.unshift(j);return d[j]}}function ca(a,b,c,d){if(f.isArray(b))f.each(b,function(b,e){c||bE.test(a)?d(a,e):ca(a+"["+(typeof e=="object"||f.isArray(e)?b:"")+"]",e,c,d)});else if(!c&&b!=null&&typeof b=="object")for(var e in b)ca(a+"["+e+"]",b[e],c,d);else d(a,b)}function b_(a,c){var d,e,g=f.ajaxSettings.flatOptions||{};for(d in c)c[d]!==b&&((g[d]?a:e||(e={}))[d]=c[d]);e&&f.extend(!0,a,e)}function b$(a,c,d,e,f,g){f=f||c.dataTypes[0],g=g||{},g[f]=!0;var h=a[f],i=0,j=h?h.length:0,k=a===bT,l;for(;i<j&&(k||!l);i++)l=h[i](c,d,e),typeof l=="string"&&(!k||g[l]?l=b:(c.dataTypes.unshift(l),l=b$(a,c,d,e,l,g)));(k||!l)&&!g["*"]&&(l=b$(a,c,d,e,"*",g));return l}function bZ(a){return function(b,c){typeof b!="string"&&(c=b,b="*");if(f.isFunction(c)){var d=b.toLowerCase().split(bP),e=0,g=d.length,h,i,j;for(;e<g;e++)h=d[e],j=/^\+/.test(h),j&&(h=h.substr(1)||"*"),i=a[h]=a[h]||[],i[j?"unshift":"push"](c)}}}function bC(a,b,c){var d=b==="width"?a.offsetWidth:a.offsetHeight,e=b==="width"?bx:by,g=0,h=e.length;if(d>0){if(c!=="border")for(;g<h;g++)c||(d-=parseFloat(f.css(a,"padding"+e[g]))||0),c==="margin"?d+=parseFloat(f.css(a,c+e[g]))||0:d-=parseFloat(f.css(a,"border"+e[g]+"Width"))||0;return d+"px"}d=bz(a,b,b);if(d<0||d==null)d=a.style[b]||0;d=parseFloat(d)||0;if(c)for(;g<h;g++)d+=parseFloat(f.css(a,"padding"+e[g]))||0,c!=="padding"&&(d+=parseFloat(f.css(a,"border"+e[g]+"Width"))||0),c==="margin"&&(d+=parseFloat(f.css(a,c+e[g]))||0);return d+"px"}function bp(a,b){b.src?f.ajax({url:b.src,async:!1,dataType:"script"}):f.globalEval((b.text||b.textContent||b.innerHTML||"").replace(bf,"/*$0*/")),b.parentNode&&b.parentNode.removeChild(b)}function bo(a){var b=c.createElement("div");bh.appendChild(b),b.innerHTML=a.outerHTML;return b.firstChild}function bn(a){var b=(a.nodeName||"").toLowerCase();b==="input"?bm(a):b!=="script"&&typeof a.getElementsByTagName!="undefined"&&f.grep(a.getElementsByTagName("input"),bm)}function bm(a){if(a.type==="checkbox"||a.type==="radio")a.defaultChecked=a.checked}function bl(a){return typeof a.getElementsByTagName!="undefined"?a.getElementsByTagName("*"):typeof a.querySelectorAll!="undefined"?a.querySelectorAll("*"):[]}function bk(a,b){var c;if(b.nodeType===1){b.clearAttributes&&b.clearAttributes(),b.mergeAttributes&&b.mergeAttributes(a),c=b.nodeName.toLowerCase();if(c==="object")b.outerHTML=a.outerHTML;else if(c!=="input"||a.type!=="checkbox"&&a.type!=="radio"){if(c==="option")b.selected=a.defaultSelected;else if(c==="input"||c==="textarea")b.defaultValue=a.defaultValue}else a.checked&&(b.defaultChecked=b.checked=a.checked),b.value!==a.value&&(b.value=a.value);b.removeAttribute(f.expando)}}function bj(a,b){if(b.nodeType===1&&!!f.hasData(a)){var c,d,e,g=f._data(a),h=f._data(b,g),i=g.events;if(i){delete h.handle,h.events={};for(c in i)for(d=0,e=i[c].length;d<e;d++)f.event.add(b,c+(i[c][d].namespace?".":"")+i[c][d].namespace,i[c][d],i[c][d].data)}h.data&&(h.data=f.extend({},h.data))}}function bi(a,b){return f.nodeName(a,"table")?a.getElementsByTagName("tbody")[0]||a.appendChild(a.ownerDocument.createElement("tbody")):a}function U(a){var b=V.split("|"),c=a.createDocumentFragment();if(c.createElement)while(b.length)c.createElement(b.pop());return c}function T(a,b,c){b=b||0;if(f.isFunction(b))return f.grep(a,function(a,d){var e=!!b.call(a,d,a);return e===c});if(b.nodeType)return f.grep(a,function(a,d){return a===b===c});if(typeof b=="string"){var d=f.grep(a,function(a){return a.nodeType===1});if(O.test(b))return f.filter(b,d,!c);b=f.filter(b,d)}return f.grep(a,function(a,d){return f.inArray(a,b)>=0===c})}function S(a){return!a||!a.parentNode||a.parentNode.nodeType===11}function K(){return!0}function J(){return!1}function n(a,b,c){var d=b+"defer",e=b+"queue",g=b+"mark",h=f._data(a,d);h&&(c==="queue"||!f._data(a,e))&&(c==="mark"||!f._data(a,g))&&setTimeout(function(){!f._data(a,e)&&!f._data(a,g)&&(f.removeData(a,d,!0),h.fire())},0)}function m(a){for(var b in a){if(b==="data"&&f.isEmptyObject(a[b]))continue;if(b!=="toJSON")return!1}return!0}function l(a,c,d){if(d===b&&a.nodeType===1){var e="data-"+c.replace(k,"-$1").toLowerCase();d=a.getAttribute(e);if(typeof d=="string"){try{d=d==="true"?!0:d==="false"?!1:d==="null"?null:f.isNumeric(d)?parseFloat(d):j.test(d)?f.parseJSON(d):d}catch(g){}f.data(a,c,d)}else d=b}return d}function h(a){var b=g[a]={},c,d;a=a.split(/\s+/);for(c=0,d=a.length;c<d;c++)b[a[c]]=!0;return b}var c=a.document,d=a.navigator,e=a.location,f=function(){function J(){if(!e.isReady){try{c.documentElement.doScroll("left")}catch(a){setTimeout(J,1);return}e.ready()}}var e=function(a,b){return new e.fn.init(a,b,h)},f=a.jQuery,g=a.$,h,i=/^(?:[^#<]*(<[\w\W]+>)[^>]*$|#([\w\-]*)$)/,j=/\S/,k=/^\s+/,l=/\s+$/,m=/^<(\w+)\s*\/?>(?:<\/\1>)?$/,n=/^[\],:{}\s]*$/,o=/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g,p=/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,q=/(?:^|:|,)(?:\s*\[)+/g,r=/(webkit)[ \/]([\w.]+)/,s=/(opera)(?:.*version)?[ \/]([\w.]+)/,t=/(msie) ([\w.]+)/,u=/(mozilla)(?:.*? rv:([\w.]+))?/,v=/-([a-z]|[0-9])/ig,w=/^-ms-/,x=function(a,b){return(b+"").toUpperCase()},y=d.userAgent,z,A,B,C=Object.prototype.toString,D=Object.prototype.hasOwnProperty,E=Array.prototype.push,F=Array.prototype.slice,G=String.prototype.trim,H=Array.prototype.indexOf,I={};e.fn=e.prototype={constructor:e,init:function(a,d,f){var g,h,j,k;if(!a)return this;if(a.nodeType){this.context=this[0]=a,this.length=1;return this}if(a==="body"&&!d&&c.body){this.context=c,this[0]=c.body,this.selector=a,this.length=1;return this}if(typeof a=="string"){a.charAt(0)!=="<"||a.charAt(a.length-1)!==">"||a.length<3?g=i.exec(a):g=[null,a,null];if(g&&(g[1]||!d)){if(g[1]){d=d instanceof e?d[0]:d,k=d?d.ownerDocument||d:c,j=m.exec(a),j?e.isPlainObject(d)?(a=[c.createElement(j[1])],e.fn.attr.call(a,d,!0)):a=[k.createElement(j[1])]:(j=e.buildFragment([g[1]],[k]),a=(j.cacheable?e.clone(j.fragment):j.fragment).childNodes);return e.merge(this,a)}h=c.getElementById(g[2]);if(h&&h.parentNode){if(h.id!==g[2])return f.find(a);this.length=1,this[0]=h}this.context=c,this.selector=a;return this}return!d||d.jquery?(d||f).find(a):this.constructor(d).find(a)}if(e.isFunction(a))return f.ready(a);a.selector!==b&&(this.selector=a.selector,this.context=a.context);return e.makeArray(a,this)},selector:"",jquery:"1.7.1",length:0,size:function(){return this.length},toArray:function(){return F.call(this,0)},get:function(a){return a==null?this.toArray():a<0?this[this.length+a]:this[a]},pushStack:function(a,b,c){var d=this.constructor();e.isArray(a)?E.apply(d,a):e.merge(d,a),d.prevObject=this,d.context=this.context,b==="find"?d.selector=this.selector+(this.selector?" ":"")+c:b&&(d.selector=this.selector+"."+b+"("+c+")");return d},each:function(a,b){return e.each(this,a,b)},ready:function(a){e.bindReady(),A.add(a);return this},eq:function(a){a=+a;return a===-1?this.slice(a):this.slice(a,a+1)},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},slice:function(){return this.pushStack(F.apply(this,arguments),"slice",F.call(arguments).join(","))},map:function(a){return this.pushStack(e.map(this,function(b,c){return a.call(b,c,b)}))},end:function(){return this.prevObject||this.constructor(null)},push:E,sort:[].sort,splice:[].splice},e.fn.init.prototype=e.fn,e.extend=e.fn.extend=function(){var a,c,d,f,g,h,i=arguments[0]||{},j=1,k=arguments.length,l=!1;typeof i=="boolean"&&(l=i,i=arguments[1]||{},j=2),typeof i!="object"&&!e.isFunction(i)&&(i={}),k===j&&(i=this,--j);for(;j<k;j++)if((a=arguments[j])!=null)for(c in a){d=i[c],f=a[c];if(i===f)continue;l&&f&&(e.isPlainObject(f)||(g=e.isArray(f)))?(g?(g=!1,h=d&&e.isArray(d)?d:[]):h=d&&e.isPlainObject(d)?d:{},i[c]=e.extend(l,h,f)):f!==b&&(i[c]=f)}return i},e.extend({noConflict:function(b){a.$===e&&(a.$=g),b&&a.jQuery===e&&(a.jQuery=f);return e},isReady:!1,readyWait:1,holdReady:function(a){a?e.readyWait++:e.ready(!0)},ready:function(a){if(a===!0&&!--e.readyWait||a!==!0&&!e.isReady){if(!c.body)return setTimeout(e.ready,1);e.isReady=!0;if(a!==!0&&--e.readyWait>0)return;A.fireWith(c,[e]),e.fn.trigger&&e(c).trigger("ready").off("ready")}},bindReady:function(){if(!A){A=e.Callbacks("once memory");if(c.readyState==="complete")return setTimeout(e.ready,1);if(c.addEventListener)c.addEventListener("DOMContentLoaded",B,!1),a.addEventListener("load",e.ready,!1);else if(c.attachEvent){c.attachEvent("onreadystatechange",B),a.attachEvent("onload",e.ready);var b=!1;try{b=a.frameElement==null}catch(d){}c.documentElement.doScroll&&b&&J()}}},isFunction:function(a){return e.type(a)==="function"},isArray:Array.isArray||function(a){return e.type(a)==="array"},isWindow:function(a){return a&&typeof a=="object"&&"setInterval"in a},isNumeric:function(a){return!isNaN(parseFloat(a))&&isFinite(a)},type:function(a){return a==null?String(a):I[C.call(a)]||"object"},isPlainObject:function(a){if(!a||e.type(a)!=="object"||a.nodeType||e.isWindow(a))return!1;try{if(a.constructor&&!D.call(a,"constructor")&&!D.call(a.constructor.prototype,"isPrototypeOf"))return!1}catch(c){return!1}var d;for(d in a);return d===b||D.call(a,d)},isEmptyObject:function(a){for(var b in a)return!1;return!0},error:function(a){throw new Error(a)},parseJSON:function(b){if(typeof b!="string"||!b)return null;b=e.trim(b);if(a.JSON&&a.JSON.parse)return a.JSON.parse(b);if(n.test(b.replace(o,"@").replace(p,"]").replace(q,"")))return(new Function("return "+b))();e.error("Invalid JSON: "+b)},parseXML:function(c){var d,f;try{a.DOMParser?(f=new DOMParser,d=f.parseFromString(c,"text/xml")):(d=new ActiveXObject("Microsoft.XMLDOM"),d.async="false",d.loadXML(c))}catch(g){d=b}(!d||!d.documentElement||d.getElementsByTagName("parsererror").length)&&e.error("Invalid XML: "+c);return d},noop:function(){},globalEval:function(b){b&&j.test(b)&&(a.execScript||function(b){a.eval.call(a,b)})(b)},camelCase:function(a){return a.replace(w,"ms-").replace(v,x)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toUpperCase()===b.toUpperCase()},each:function(a,c,d){var f,g=0,h=a.length,i=h===b||e.isFunction(a);if(d){if(i){for(f in a)if(c.apply(a[f],d)===!1)break}else for(;g<h;)if(c.apply(a[g++],d)===!1)break}else if(i){for(f in a)if(c.call(a[f],f,a[f])===!1)break}else for(;g<h;)if(c.call(a[g],g,a[g++])===!1)break;return a},trim:G?function(a){return a==null?"":G.call(a)}:function(a){return a==null?"":(a+"").replace(k,"").replace(l,"")},makeArray:function(a,b){var c=b||[];if(a!=null){var d=e.type(a);a.length==null||d==="string"||d==="function"||d==="regexp"||e.isWindow(a)?E.call(c,a):e.merge(c,a)}return c},inArray:function(a,b,c){var d;if(b){if(H)return H.call(b,a,c);d=b.length,c=c?c<0?Math.max(0,d+c):c:0;for(;c<d;c++)if(c in b&&b[c]===a)return c}return-1},merge:function(a,c){var d=a.length,e=0;if(typeof c.length=="number")for(var f=c.length;e<f;e++)a[d++]=c[e];else while(c[e]!==b)a[d++]=c[e++];a.length=d;return a},grep:function(a,b,c){var d=[],e;c=!!c;for(var f=0,g=a.length;f<g;f++)e=!!b(a[f],f),c!==e&&d.push(a[f]);return d},map:function(a,c,d){var f,g,h=[],i=0,j=a.length,k=a instanceof e||j!==b&&typeof j=="number"&&(j>0&&a[0]&&a[j-1]||j===0||e.isArray(a));if(k)for(;i<j;i++)f=c(a[i],i,d),f!=null&&(h[h.length]=f);else for(g in a)f=c(a[g],g,d),f!=null&&(h[h.length]=f);return h.concat.apply([],h)},guid:1,proxy:function(a,c){if(typeof c=="string"){var d=a[c];c=a,a=d}if(!e.isFunction(a))return b;var f=F.call(arguments,2),g=function(){return a.apply(c,f.concat(F.call(arguments)))};g.guid=a.guid=a.guid||g.guid||e.guid++;return g},access:function(a,c,d,f,g,h){var i=a.length;if(typeof c=="object"){for(var j in c)e.access(a,j,c[j],f,g,d);return a}if(d!==b){f=!h&&f&&e.isFunction(d);for(var k=0;k<i;k++)g(a[k],c,f?d.call(a[k],k,g(a[k],c)):d,h);return a}return i?g(a[0],c):b},now:function(){return(new Date).getTime()},uaMatch:function(a){a=a.toLowerCase();var b=r.exec(a)||s.exec(a)||t.exec(a)||a.indexOf("compatible")<0&&u.exec(a)||[];return{browser:b[1]||"",version:b[2]||"0"}},sub:function(){function a(b,c){return new a.fn.init(b,c)}e.extend(!0,a,this),a.superclass=this,a.fn=a.prototype=this(),a.fn.constructor=a,a.sub=this.sub,a.fn.init=function(d,f){f&&f instanceof e&&!(f instanceof a)&&(f=a(f));return e.fn.init.call(this,d,f,b)},a.fn.init.prototype=a.fn;var b=a(c);return a},browser:{}}),e.each("Boolean Number String Function Array Date RegExp Object".split(" "),function(a,b){I["[object "+b+"]"]=b.toLowerCase()}),z=e.uaMatch(y),z.browser&&(e.browser[z.browser]=!0,e.browser.version=z.version),e.browser.webkit&&(e.browser.safari=!0),j.test(" ")&&(k=/^[\s\xA0]+/,l=/[\s\xA0]+$/),h=e(c),c.addEventListener?B=function(){c.removeEventListener("DOMContentLoaded",B,!1),e.ready()}:c.attachEvent&&(B=function(){c.readyState==="complete"&&(c.detachEvent("onreadystatechange",B),e.ready())});return e}(),g={};f.Callbacks=function(a){a=a?g[a]||h(a):{};var c=[],d=[],e,i,j,k,l,m=function(b){var d,e,g,h,i;for(d=0,e=b.length;d<e;d++)g=b[d],h=f.type(g),h==="array"?m(g):h==="function"&&(!a.unique||!o.has(g))&&c.push(g)},n=function(b,f){f=f||[],e=!a.memory||[b,f],i=!0,l=j||0,j=0,k=c.length;for(;c&&l<k;l++)if(c[l].apply(b,f)===!1&&a.stopOnFalse){e=!0;break}i=!1,c&&(a.once?e===!0?o.disable():c=[]:d&&d.length&&(e=d.shift(),o.fireWith(e[0],e[1])))},o={add:function(){if(c){var a=c.length;m(arguments),i?k=c.length:e&&e!==!0&&(j=a,n(e[0],e[1]))}return this},remove:function(){if(c){var b=arguments,d=0,e=b.length;for(;d<e;d++)for(var f=0;f<c.length;f++)if(b[d]===c[f]){i&&f<=k&&(k--,f<=l&&l--),c.splice(f--,1);if(a.unique)break}}return this},has:function(a){if(c){var b=0,d=c.length;for(;b<d;b++)if(a===c[b])return!0}return!1},empty:function(){c=[];return this},disable:function(){c=d=e=b;return this},disabled:function(){return!c},lock:function(){d=b,(!e||e===!0)&&o.disable();return this},locked:function(){return!d},fireWith:function(b,c){d&&(i?a.once||d.push([b,c]):(!a.once||!e)&&n(b,c));return this},fire:function(){o.fireWith(this,arguments);return this},fired:function(){return!!e}};return o};var i=[].slice;f.extend({Deferred:function(a){var b=f.Callbacks("once memory"),c=f.Callbacks("once memory"),d=f.Callbacks("memory"),e="pending",g={resolve:b,reject:c,notify:d},h={done:b.add,fail:c.add,progress:d.add,state:function(){return e},isResolved:b.fired,isRejected:c.fired,then:function(a,b,c){i.done(a).fail(b).progress(c);return this},always:function(){i.done.apply(i,arguments).fail.apply(i,arguments);return this},pipe:function(a,b,c){return f.Deferred(function(d){f.each({done:[a,"resolve"],fail:[b,"reject"],progress:[c,"notify"]},function(a,b){var c=b[0],e=b[1],g;f.isFunction(c)?i[a](function(){g=c.apply(this,arguments),g&&f.isFunction(g.promise)?g.promise().then(d.resolve,d.reject,d.notify):d[e+"With"](this===i?d:this,[g])}):i[a](d[e])})}).promise()},promise:function(a){if(a==null)a=h;else for(var b in h)a[b]=h[b];return a}},i=h.promise({}),j;for(j in g)i[j]=g[j].fire,i[j+"With"]=g[j].fireWith;i.done(function(){e="resolved"},c.disable,d.lock).fail(function(){e="rejected"},b.disable,d.lock),a&&a.call(i,i);return i},when:function(a){function m(a){return function(b){e[a]=arguments.length>1?i.call(arguments,0):b,j.notifyWith(k,e)}}function l(a){return function(c){b[a]=arguments.length>1?i.call(arguments,0):c,--g||j.resolveWith(j,b)}}var b=i.call(arguments,0),c=0,d=b.length,e=Array(d),g=d,h=d,j=d<=1&&a&&f.isFunction(a.promise)?a:f.Deferred(),k=j.promise();if(d>1){for(;c<d;c++)b[c]&&b[c].promise&&f.isFunction(b[c].promise)?b[c].promise().then(l(c),j.reject,m(c)):--g;g||j.resolveWith(j,b)}else j!==a&&j.resolveWith(j,d?[a]:[]);return k}}),f.support=function(){var b,d,e,g,h,i,j,k,l,m,n,o,p,q=c.createElement("div"),r=c.documentElement;q.setAttribute("className","t"),q.innerHTML=" <link/><table></table><a href='/a' style='top:1px;float:left;opacity:.55;'>a</a><input type='checkbox'/>",d=q.getElementsByTagName("*"),e=q.getElementsByTagName("a")[0];if(!d||!d.length||!e)return{};g=c.createElement("select"),h=g.appendChild(c.createElement("option")),i=q.getElementsByTagName("input")[0],b={leadingWhitespace:q.firstChild.nodeType===3,tbody:!q.getElementsByTagName("tbody").length,htmlSerialize:!!q.getElementsByTagName("link").length,style:/top/.test(e.getAttribute("style")),hrefNormalized:e.getAttribute("href")==="/a",opacity:/^0.55/.test(e.style.opacity),cssFloat:!!e.style.cssFloat,checkOn:i.value==="on",optSelected:h.selected,getSetAttribute:q.className!=="t",enctype:!!c.createElement("form").enctype,html5Clone:c.createElement("nav").cloneNode(!0).outerHTML!=="<:nav></:nav>",submitBubbles:!0,changeBubbles:!0,focusinBubbles:!1,deleteExpando:!0,noCloneEvent:!0,inlineBlockNeedsLayout:!1,shrinkWrapBlocks:!1,reliableMarginRight:!0},i.checked=!0,b.noCloneChecked=i.cloneNode(!0).checked,g.disabled=!0,b.optDisabled=!h.disabled;try{delete q.test}catch(s){b.deleteExpando=!1}!q.addEventListener&&q.attachEvent&&q.fireEvent&&(q.attachEvent("onclick",function(){b.noCloneEvent=!1}),q.cloneNode(!0).fireEvent("onclick")),i=c.createElement("input"),i.value="t",i.setAttribute("type","radio"),b.radioValue=i.value==="t",i.setAttribute("checked","checked"),q.appendChild(i),k=c.createDocumentFragment(),k.appendChild(q.lastChild),b.checkClone=k.cloneNode(!0).cloneNode(!0).lastChild.checked,b.appendChecked=i.checked,k.removeChild(i),k.appendChild(q),q.innerHTML="",a.getComputedStyle&&(j=c.createElement("div"),j.style.width="0",j.style.marginRight="0",q.style.width="2px",q.appendChild(j),b.reliableMarginRight=(parseInt((a.getComputedStyle(j,null)||{marginRight:0}).marginRight,10)||0)===0);if(q.attachEvent)for(o in{submit:1,change:1,focusin:1})n="on"+o,p=n in q,p||(q.setAttribute(n,"return;"),p=typeof q[n]=="function"),b[o+"Bubbles"]=p;k.removeChild(q),k=g=h=j=q=i=null,f(function(){var a,d,e,g,h,i,j,k,m,n,o,r=c.getElementsByTagName("body")[0];!r||(j=1,k="position:absolute;top:0;left:0;width:1px;height:1px;margin:0;",m="visibility:hidden;border:0;",n="style='"+k+"border:5px solid #000;padding:0;'",o="<div "+n+"><div></div></div>"+"<table "+n+" cellpadding='0' cellspacing='0'>"+"<tr><td></td></tr></table>",a=c.createElement("div"),a.style.cssText=m+"width:0;height:0;position:static;top:0;margin-top:"+j+"px",r.insertBefore(a,r.firstChild),q=c.createElement("div"),a.appendChild(q),q.innerHTML="<table><tr><td style='padding:0;border:0;display:none'></td><td>t</td></tr></table>",l=q.getElementsByTagName("td"),p=l[0].offsetHeight===0,l[0].style.display="",l[1].style.display="none",b.reliableHiddenOffsets=p&&l[0].offsetHeight===0,q.innerHTML="",q.style.width=q.style.paddingLeft="1px",f.boxModel=b.boxModel=q.offsetWidth===2,typeof q.style.zoom!="undefined"&&(q.style.display="inline",q.style.zoom=1,b.inlineBlockNeedsLayout=q.offsetWidth===2,q.style.display="",q.innerHTML="<div style='width:4px;'></div>",b.shrinkWrapBlocks=q.offsetWidth!==2),q.style.cssText=k+m,q.innerHTML=o,d=q.firstChild,e=d.firstChild,h=d.nextSibling.firstChild.firstChild,i={doesNotAddBorder:e.offsetTop!==5,doesAddBorderForTableAndCells:h.offsetTop===5},e.style.position="fixed",e.style.top="20px",i.fixedPosition=e.offsetTop===20||e.offsetTop===15,e.style.position=e.style.top="",d.style.overflow="hidden",d.style.position="relative",i.subtractsBorderForOverflowNotVisible=e.offsetTop===-5,i.doesNotIncludeMarginInBodyOffset=r.offsetTop!==j,r.removeChild(a),q=a=null,f.extend(b,i))});return b}();var j=/^(?:\{.*\}|\[.*\])$/,k=/([A-Z])/g;f.extend({cache:{},uuid:0,expando:"jQuery"+(f.fn.jquery+Math.random()).replace(/\D/g,""),noData:{embed:!0,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000",applet:!0},hasData:function(a){a=a.nodeType?f.cache[a[f.expando]]:a[f.expando];return!!a&&!m(a)},data:function(a,c,d,e){if(!!f.acceptData(a)){var g,h,i,j=f.expando,k=typeof c=="string",l=a.nodeType,m=l?f.cache:a,n=l?a[j]:a[j]&&j,o=c==="events";if((!n||!m[n]||!o&&!e&&!m[n].data)&&k&&d===b)return;n||(l?a[j]=n=++f.uuid:n=j),m[n]||(m[n]={},l||(m[n].toJSON=f.noop));if(typeof c=="object"||typeof c=="function")e?m[n]=f.extend(m[n],c):m[n].data=f.extend(m[n].data,c);g=h=m[n],e||(h.data||(h.data={}),h=h.data),d!==b&&(h[f.camelCase(c)]=d);if(o&&!h[c])return g.events;k?(i=h[c],i==null&&(i=h[f.camelCase(c)])):i=h;return i}},removeData:function(a,b,c){if(!!f.acceptData(a)){var d,e,g,h=f.expando,i=a.nodeType,j=i?f.cache:a,k=i?a[h]:h;if(!j[k])return;if(b){d=c?j[k]:j[k].data;if(d){f.isArray(b)||(b in d?b=[b]:(b=f.camelCase(b),b in d?b=[b]:b=b.split(" ")));for(e=0,g=b.length;e<g;e++)delete d[b[e]];if(!(c?m:f.isEmptyObject)(d))return}}if(!c){delete j[k].data;if(!m(j[k]))return}f.support.deleteExpando||!j.setInterval?delete j[k]:j[k]=null,i&&(f.support.deleteExpando?delete a[h]:a.removeAttribute?a.removeAttribute(h):a[h]=null)}},_data:function(a,b,c){return f.data(a,b,c,!0)},acceptData:function(a){if(a.nodeName){var b=f.noData[a.nodeName.toLowerCase()];if(b)return b!==!0&&a.getAttribute("classid")===b}return!0}}),f.fn.extend({data:function(a,c){var d,e,g,h=null;if(typeof a=="undefined"){if(this.length){h=f.data(this[0]);if(this[0].nodeType===1&&!f._data(this[0],"parsedAttrs")){e=this[0].attributes;for(var i=0,j=e.length;i<j;i++)g=e[i].name,g.indexOf("data-")===0&&(g=f.camelCase(g.substring(5)),l(this[0],g,h[g]));f._data(this[0],"parsedAttrs",!0)}}return h}if(typeof a=="object")return this.each(function(){f.data(this,a)});d=a.split("."),d[1]=d[1]?"."+d[1]:"";if(c===b){h=this.triggerHandler("getData"+d[1]+"!",[d[0]]),h===b&&this.length&&(h=f.data(this[0],a),h=l(this[0],a,h));return h===b&&d[1]?this.data(d[0]):h}return this.each(function(){var b=f(this),e=[d[0],c];b.triggerHandler("setData"+d[1]+"!",e),f.data(this,a,c),b.triggerHandler("changeData"+d[1]+"!",e)})},removeData:function(a){return this.each(function(){f.removeData(this,a)})}}),f.extend({_mark:function(a,b){a&&(b=(b||"fx")+"mark",f._data(a,b,(f._data(a,b)||0)+1))},_unmark:function(a,b,c){a!==!0&&(c=b,b=a,a=!1);if(b){c=c||"fx";var d=c+"mark",e=a?0:(f._data(b,d)||1)-1;e?f._data(b,d,e):(f.removeData(b,d,!0),n(b,c,"mark"))}},queue:function(a,b,c){var d;if(a){b=(b||"fx")+"queue",d=f._data(a,b),c&&(!d||f.isArray(c)?d=f._data(a,b,f.makeArray(c)):d.push(c));return d||[]}},dequeue:function(a,b){b=b||"fx";var c=f.queue(a,b),d=c.shift(),e={};d==="inprogress"&&(d=c.shift()),d&&(b==="fx"&&c.unshift("inprogress"),f._data(a,b+".run",e),d.call(a,function(){f.dequeue(a,b)},e)),c.length||(f.removeData(a,b+"queue "+b+".run",!0),n(a,b,"queue"))}}),f.fn.extend({queue:function(a,c){typeof a!="string"&&(c=a,a="fx");if(c===b)return f.queue(this[0],a);return this.each(function(){var b=f.queue(this,a,c);a==="fx"&&b[0]!=="inprogress"&&f.dequeue(this,a)})},dequeue:function(a){return this.each(function(){f.dequeue(this,a)})},delay:function(a,b){a=f.fx?f.fx.speeds[a]||a:a,b=b||"fx";return this.queue(b,function(b,c){var d=setTimeout(b,a);c.stop=function(){clearTimeout(d)}})},clearQueue:function(a){return this.queue(a||"fx",[])},promise:function(a,c){function m(){--h||d.resolveWith(e,[e])}typeof a!="string"&&(c=a,a=b),a=a||"fx";var d=f.Deferred(),e=this,g=e.length,h=1,i=a+"defer",j=a+"queue",k=a+"mark",l;while(g--)if(l=f.data(e[g],i,b,!0)||(f.data(e[g],j,b,!0)||f.data(e[g],k,b,!0))&&f.data(e[g],i,f.Callbacks("once memory"),!0))h++,l.add(m);m();return d.promise()}});var o=/[\n\t\r]/g,p=/\s+/,q=/\r/g,r=/^(?:button|input)$/i,s=/^(?:button|input|object|select|textarea)$/i,t=/^a(?:rea)?$/i,u=/^(?:autofocus|autoplay|async|checked|controls|defer|disabled|hidden|loop|multiple|open|readonly|required|scoped|selected)$/i,v=f.support.getSetAttribute,w,x,y;f.fn.extend({attr:function(a,b){return f.access(this,a,b,!0,f.attr)},removeAttr:function(a){return this.each(function(){f.removeAttr(this,a)})},prop:function(a,b){return f.access(this,a,b,!0,f.prop)},removeProp:function(a){a=f.propFix[a]||a;return this.each(function(){try{this[a]=b,delete this[a]}catch(c){}})},addClass:function(a){var b,c,d,e,g,h,i;if(f.isFunction(a))return this.each(function(b){f(this).addClass(a.call(this,b,this.className))});if(a&&typeof a=="string"){b=a.split(p);for(c=0,d=this.length;c<d;c++){e=this[c];if(e.nodeType===1)if(!e.className&&b.length===1)e.className=a;else{g=" "+e.className+" ";for(h=0,i=b.length;h<i;h++)~g.indexOf(" "+b[h]+" ")||(g+=b[h]+" ");e.className=f.trim(g)}}}return this},removeClass:function(a){var c,d,e,g,h,i,j;if(f.isFunction(a))return this.each(function(b){f(this).removeClass(a.call(this,b,this.className))});if(a&&typeof a=="string"||a===b){c=(a||"").split(p);for(d=0,e=this.length;d<e;d++){g=this[d];if(g.nodeType===1&&g.className)if(a){h=(" "+g.className+" ").replace(o," ");for(i=0,j=c.length;i<j;i++)h=h.replace(" "+c[i]+" "," ");g.className=f.trim(h)}else g.className=""}}return this},toggleClass:function(a,b){var c=typeof a,d=typeof b=="boolean";if(f.isFunction(a))return this.each(function(c){f(this).toggleClass(a.call(this,c,this.className,b),b)});return this.each(function(){if(c==="string"){var e,g=0,h=f(this),i=b,j=a.split(p);while(e=j[g++])i=d?i:!h.hasClass(e),h[i?"addClass":"removeClass"](e)}else if(c==="undefined"||c==="boolean")this.className&&f._data(this,"__className__",this.className),this.className=this.className||a===!1?"":f._data(this,"__className__")||""})},hasClass:function(a){var b=" "+a+" ",c=0,d=this.length;for(;c<d;c++)if(this[c].nodeType===1&&(" "+this[c].className+" ").replace(o," ").indexOf(b)>-1)return!0;return!1},val:function(a){var c,d,e,g=this[0];{if(!!arguments.length){e=f.isFunction(a);return this.each(function(d){var g=f(this),h;if(this.nodeType===1){e?h=a.call(this,d,g.val()):h=a,h==null?h="":typeof h=="number"?h+="":f.isArray(h)&&(h=f.map(h,function(a){return a==null?"":a+""})),c=f.valHooks[this.nodeName.toLowerCase()]||f.valHooks[this.type];if(!c||!("set"in c)||c.set(this,h,"value")===b)this.value=h}})}if(g){c=f.valHooks[g.nodeName.toLowerCase()]||f.valHooks[g.type];if(c&&"get"in c&&(d=c.get(g,"value"))!==b)return d;d=g.value;return typeof d=="string"?d.replace(q,""):d==null?"":d}}}}),f.extend({valHooks:{option:{get:function(a){var b=a.attributes.value;return!b||b.specified?a.value:a.text}},select:{get:function(a){var b,c,d,e,g=a.selectedIndex,h=[],i=a.options,j=a.type==="select-one";if(g<0)return null;c=j?g:0,d=j?g+1:i.length;for(;c<d;c++){e=i[c];if(e.selected&&(f.support.optDisabled?!e.disabled:e.getAttribute("disabled")===null)&&(!e.parentNode.disabled||!f.nodeName(e.parentNode,"optgroup"))){b=f(e).val();if(j)return b;h.push(b)}}if(j&&!h.length&&i.length)return f(i[g]).val();return h},set:function(a,b){var c=f.makeArray(b);f(a).find("option").each(function(){this.selected=f.inArray(f(this).val(),c)>=0}),c.length||(a.selectedIndex=-1);return c}}},attrFn:{val:!0,css:!0,html:!0,text:!0,data:!0,width:!0,height:!0,offset:!0},attr:function(a,c,d,e){var g,h,i,j=a.nodeType;if(!!a&&j!==3&&j!==8&&j!==2){if(e&&c in f.attrFn)return f(a)[c](d);if(typeof a.getAttribute=="undefined")return f.prop(a,c,d);i=j!==1||!f.isXMLDoc(a),i&&(c=c.toLowerCase(),h=f.attrHooks[c]||(u.test(c)?x:w));if(d!==b){if(d===null){f.removeAttr(a,c);return}if(h&&"set"in h&&i&&(g=h.set(a,d,c))!==b)return g;a.setAttribute(c,""+d);return d}if(h&&"get"in h&&i&&(g=h.get(a,c))!==null)return g;g=a.getAttribute(c);return g===null?b:g}},removeAttr:function(a,b){var c,d,e,g,h=0;if(b&&a.nodeType===1){d=b.toLowerCase().split(p),g=d.length;for(;h<g;h++)e=d[h],e&&(c=f.propFix[e]||e,f.attr(a,e,""),a.removeAttribute(v?e:c),u.test(e)&&c in a&&(a[c]=!1))}},attrHooks:{type:{set:function(a,b){if(r.test(a.nodeName)&&a.parentNode)f.error("type property can't be changed");else if(!f.support.radioValue&&b==="radio"&&f.nodeName(a,"input")){var c=a.value;a.setAttribute("type",b),c&&(a.value=c);return b}}},value:{get:function(a,b){if(w&&f.nodeName(a,"button"))return w.get(a,b);return b in a?a.value:null},set:function(a,b,c){if(w&&f.nodeName(a,"button"))return w.set(a,b,c);a.value=b}}},propFix:{tabindex:"tabIndex",readonly:"readOnly","for":"htmlFor","class":"className",maxlength:"maxLength",cellspacing:"cellSpacing",cellpadding:"cellPadding",rowspan:"rowSpan",colspan:"colSpan",usemap:"useMap",frameborder:"frameBorder",contenteditable:"contentEditable"},prop:function(a,c,d){var e,g,h,i=a.nodeType;if(!!a&&i!==3&&i!==8&&i!==2){h=i!==1||!f.isXMLDoc(a),h&&(c=f.propFix[c]||c,g=f.propHooks[c]);return d!==b?g&&"set"in g&&(e=g.set(a,d,c))!==b?e:a[c]=d:g&&"get"in g&&(e=g.get(a,c))!==null?e:a[c]}},propHooks:{tabIndex:{get:function(a){var c=a.getAttributeNode("tabindex");return c&&c.specified?parseInt(c.value,10):s.test(a.nodeName)||t.test(a.nodeName)&&a.href?0:b}}}}),f.attrHooks.tabindex=f.propHooks.tabIndex,x={get:function(a,c){var d,e=f.prop(a,c);return e===!0||typeof e!="boolean"&&(d=a.getAttributeNode(c))&&d.nodeValue!==!1?c.toLowerCase():b},set:function(a,b,c){var d;b===!1?f.removeAttr(a,c):(d=f.propFix[c]||c,d in a&&(a[d]=!0),a.setAttribute(c,c.toLowerCase()));return c}},v||(y={name:!0,id:!0},w=f.valHooks.button={get:function(a,c){var d;d=a.getAttributeNode(c);return d&&(y[c]?d.nodeValue!=="":d.specified)?d.nodeValue:b},set:function(a,b,d){var e=a.getAttributeNode(d);e||(e=c.createAttribute(d),a.setAttributeNode(e));return e.nodeValue=b+""}},f.attrHooks.tabindex.set=w.set,f.each(["width","height"],function(a,b){f.attrHooks[b]=f.extend(f.attrHooks[b],{set:function(a,c){if(c===""){a.setAttribute(b,"auto");return c}}})}),f.attrHooks.contenteditable={get:w.get,set:function(a,b,c){b===""&&(b="false"),w.set(a,b,c)}}),f.support.hrefNormalized||f.each(["href","src","width","height"],function(a,c){f.attrHooks[c]=f.extend(f.attrHooks[c],{get:function(a){var d=a.getAttribute(c,2);return d===null?b:d}})}),f.support.style||(f.attrHooks.style={get:function(a){return a.style.cssText.toLowerCase()||b},set:function(a,b){return a.style.cssText=""+b}}),f.support.optSelected||(f.propHooks.selected=f.extend(f.propHooks.selected,{get:function(a){var b=a.parentNode;b&&(b.selectedIndex,b.parentNode&&b.parentNode.selectedIndex);return null}})),f.support.enctype||(f.propFix.enctype="encoding"),f.support.checkOn||f.each(["radio","checkbox"],function(){f.valHooks[this]={get:function(a){return a.getAttribute("value")===null?"on":a.value}}}),f.each(["radio","checkbox"],function(){f.valHooks[this]=f.extend(f.valHooks[this],{set:function(a,b){if(f.isArray(b))return a.checked=f.inArray(f(a).val(),b)>=0}})});var z=/^(?:textarea|input|select)$/i,A=/^([^\.]*)?(?:\.(.+))?$/,B=/\bhover(\.\S+)?\b/,C=/^key/,D=/^(?:mouse|contextmenu)|click/,E=/^(?:focusinfocus|focusoutblur)$/,F=/^(\w*)(?:#([\w\-]+))?(?:\.([\w\-]+))?$/,G=function(a){var b=F.exec(a);b&&(b[1]=(b[1]||"").toLowerCase(),b[3]=b[3]&&new RegExp("(?:^|\\s)"+b[3]+"(?:\\s|$)"));return b},H=function(a,b){var c=a.attributes||{};return(!b[1]||a.nodeName.toLowerCase()===b[1])&&(!b[2]||(c.id||{}).value===b[2])&&(!b[3]||b[3].test((c["class"]||{}).value))},I=function(a){return f.event.special.hover?a:a.replace(B,"mouseenter$1 mouseleave$1")}; +f.event={add:function(a,c,d,e,g){var h,i,j,k,l,m,n,o,p,q,r,s;if(!(a.nodeType===3||a.nodeType===8||!c||!d||!(h=f._data(a)))){d.handler&&(p=d,d=p.handler),d.guid||(d.guid=f.guid++),j=h.events,j||(h.events=j={}),i=h.handle,i||(h.handle=i=function(a){return typeof f!="undefined"&&(!a||f.event.triggered!==a.type)?f.event.dispatch.apply(i.elem,arguments):b},i.elem=a),c=f.trim(I(c)).split(" ");for(k=0;k<c.length;k++){l=A.exec(c[k])||[],m=l[1],n=(l[2]||"").split(".").sort(),s=f.event.special[m]||{},m=(g?s.delegateType:s.bindType)||m,s=f.event.special[m]||{},o=f.extend({type:m,origType:l[1],data:e,handler:d,guid:d.guid,selector:g,quick:G(g),namespace:n.join(".")},p),r=j[m];if(!r){r=j[m]=[],r.delegateCount=0;if(!s.setup||s.setup.call(a,e,n,i)===!1)a.addEventListener?a.addEventListener(m,i,!1):a.attachEvent&&a.attachEvent("on"+m,i)}s.add&&(s.add.call(a,o),o.handler.guid||(o.handler.guid=d.guid)),g?r.splice(r.delegateCount++,0,o):r.push(o),f.event.global[m]=!0}a=null}},global:{},remove:function(a,b,c,d,e){var g=f.hasData(a)&&f._data(a),h,i,j,k,l,m,n,o,p,q,r,s;if(!!g&&!!(o=g.events)){b=f.trim(I(b||"")).split(" ");for(h=0;h<b.length;h++){i=A.exec(b[h])||[],j=k=i[1],l=i[2];if(!j){for(j in o)f.event.remove(a,j+b[h],c,d,!0);continue}p=f.event.special[j]||{},j=(d?p.delegateType:p.bindType)||j,r=o[j]||[],m=r.length,l=l?new RegExp("(^|\\.)"+l.split(".").sort().join("\\.(?:.*\\.)?")+"(\\.|$)"):null;for(n=0;n<r.length;n++)s=r[n],(e||k===s.origType)&&(!c||c.guid===s.guid)&&(!l||l.test(s.namespace))&&(!d||d===s.selector||d==="**"&&s.selector)&&(r.splice(n--,1),s.selector&&r.delegateCount--,p.remove&&p.remove.call(a,s));r.length===0&&m!==r.length&&((!p.teardown||p.teardown.call(a,l)===!1)&&f.removeEvent(a,j,g.handle),delete o[j])}f.isEmptyObject(o)&&(q=g.handle,q&&(q.elem=null),f.removeData(a,["events","handle"],!0))}},customEvent:{getData:!0,setData:!0,changeData:!0},trigger:function(c,d,e,g){if(!e||e.nodeType!==3&&e.nodeType!==8){var h=c.type||c,i=[],j,k,l,m,n,o,p,q,r,s;if(E.test(h+f.event.triggered))return;h.indexOf("!")>=0&&(h=h.slice(0,-1),k=!0),h.indexOf(".")>=0&&(i=h.split("."),h=i.shift(),i.sort());if((!e||f.event.customEvent[h])&&!f.event.global[h])return;c=typeof c=="object"?c[f.expando]?c:new f.Event(h,c):new f.Event(h),c.type=h,c.isTrigger=!0,c.exclusive=k,c.namespace=i.join("."),c.namespace_re=c.namespace?new RegExp("(^|\\.)"+i.join("\\.(?:.*\\.)?")+"(\\.|$)"):null,o=h.indexOf(":")<0?"on"+h:"";if(!e){j=f.cache;for(l in j)j[l].events&&j[l].events[h]&&f.event.trigger(c,d,j[l].handle.elem,!0);return}c.result=b,c.target||(c.target=e),d=d!=null?f.makeArray(d):[],d.unshift(c),p=f.event.special[h]||{};if(p.trigger&&p.trigger.apply(e,d)===!1)return;r=[[e,p.bindType||h]];if(!g&&!p.noBubble&&!f.isWindow(e)){s=p.delegateType||h,m=E.test(s+h)?e:e.parentNode,n=null;for(;m;m=m.parentNode)r.push([m,s]),n=m;n&&n===e.ownerDocument&&r.push([n.defaultView||n.parentWindow||a,s])}for(l=0;l<r.length&&!c.isPropagationStopped();l++)m=r[l][0],c.type=r[l][1],q=(f._data(m,"events")||{})[c.type]&&f._data(m,"handle"),q&&q.apply(m,d),q=o&&m[o],q&&f.acceptData(m)&&q.apply(m,d)===!1&&c.preventDefault();c.type=h,!g&&!c.isDefaultPrevented()&&(!p._default||p._default.apply(e.ownerDocument,d)===!1)&&(h!=="click"||!f.nodeName(e,"a"))&&f.acceptData(e)&&o&&e[h]&&(h!=="focus"&&h!=="blur"||c.target.offsetWidth!==0)&&!f.isWindow(e)&&(n=e[o],n&&(e[o]=null),f.event.triggered=h,e[h](),f.event.triggered=b,n&&(e[o]=n));return c.result}},dispatch:function(c){c=f.event.fix(c||a.event);var d=(f._data(this,"events")||{})[c.type]||[],e=d.delegateCount,g=[].slice.call(arguments,0),h=!c.exclusive&&!c.namespace,i=[],j,k,l,m,n,o,p,q,r,s,t;g[0]=c,c.delegateTarget=this;if(e&&!c.target.disabled&&(!c.button||c.type!=="click")){m=f(this),m.context=this.ownerDocument||this;for(l=c.target;l!=this;l=l.parentNode||this){o={},q=[],m[0]=l;for(j=0;j<e;j++)r=d[j],s=r.selector,o[s]===b&&(o[s]=r.quick?H(l,r.quick):m.is(s)),o[s]&&q.push(r);q.length&&i.push({elem:l,matches:q})}}d.length>e&&i.push({elem:this,matches:d.slice(e)});for(j=0;j<i.length&&!c.isPropagationStopped();j++){p=i[j],c.currentTarget=p.elem;for(k=0;k<p.matches.length&&!c.isImmediatePropagationStopped();k++){r=p.matches[k];if(h||!c.namespace&&!r.namespace||c.namespace_re&&c.namespace_re.test(r.namespace))c.data=r.data,c.handleObj=r,n=((f.event.special[r.origType]||{}).handle||r.handler).apply(p.elem,g),n!==b&&(c.result=n,n===!1&&(c.preventDefault(),c.stopPropagation()))}}return c.result},props:"attrChange attrName relatedNode srcElement altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "),fixHooks:{},keyHooks:{props:"char charCode key keyCode".split(" "),filter:function(a,b){a.which==null&&(a.which=b.charCode!=null?b.charCode:b.keyCode);return a}},mouseHooks:{props:"button buttons clientX clientY fromElement offsetX offsetY pageX pageY screenX screenY toElement".split(" "),filter:function(a,d){var e,f,g,h=d.button,i=d.fromElement;a.pageX==null&&d.clientX!=null&&(e=a.target.ownerDocument||c,f=e.documentElement,g=e.body,a.pageX=d.clientX+(f&&f.scrollLeft||g&&g.scrollLeft||0)-(f&&f.clientLeft||g&&g.clientLeft||0),a.pageY=d.clientY+(f&&f.scrollTop||g&&g.scrollTop||0)-(f&&f.clientTop||g&&g.clientTop||0)),!a.relatedTarget&&i&&(a.relatedTarget=i===a.target?d.toElement:i),!a.which&&h!==b&&(a.which=h&1?1:h&2?3:h&4?2:0);return a}},fix:function(a){if(a[f.expando])return a;var d,e,g=a,h=f.event.fixHooks[a.type]||{},i=h.props?this.props.concat(h.props):this.props;a=f.Event(g);for(d=i.length;d;)e=i[--d],a[e]=g[e];a.target||(a.target=g.srcElement||c),a.target.nodeType===3&&(a.target=a.target.parentNode),a.metaKey===b&&(a.metaKey=a.ctrlKey);return h.filter?h.filter(a,g):a},special:{ready:{setup:f.bindReady},load:{noBubble:!0},focus:{delegateType:"focusin"},blur:{delegateType:"focusout"},beforeunload:{setup:function(a,b,c){f.isWindow(this)&&(this.onbeforeunload=c)},teardown:function(a,b){this.onbeforeunload===b&&(this.onbeforeunload=null)}}},simulate:function(a,b,c,d){var e=f.extend(new f.Event,c,{type:a,isSimulated:!0,originalEvent:{}});d?f.event.trigger(e,null,b):f.event.dispatch.call(b,e),e.isDefaultPrevented()&&c.preventDefault()}},f.event.handle=f.event.dispatch,f.removeEvent=c.removeEventListener?function(a,b,c){a.removeEventListener&&a.removeEventListener(b,c,!1)}:function(a,b,c){a.detachEvent&&a.detachEvent("on"+b,c)},f.Event=function(a,b){if(!(this instanceof f.Event))return new f.Event(a,b);a&&a.type?(this.originalEvent=a,this.type=a.type,this.isDefaultPrevented=a.defaultPrevented||a.returnValue===!1||a.getPreventDefault&&a.getPreventDefault()?K:J):this.type=a,b&&f.extend(this,b),this.timeStamp=a&&a.timeStamp||f.now(),this[f.expando]=!0},f.Event.prototype={preventDefault:function(){this.isDefaultPrevented=K;var a=this.originalEvent;!a||(a.preventDefault?a.preventDefault():a.returnValue=!1)},stopPropagation:function(){this.isPropagationStopped=K;var a=this.originalEvent;!a||(a.stopPropagation&&a.stopPropagation(),a.cancelBubble=!0)},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=K,this.stopPropagation()},isDefaultPrevented:J,isPropagationStopped:J,isImmediatePropagationStopped:J},f.each({mouseenter:"mouseover",mouseleave:"mouseout"},function(a,b){f.event.special[a]={delegateType:b,bindType:b,handle:function(a){var c=this,d=a.relatedTarget,e=a.handleObj,g=e.selector,h;if(!d||d!==c&&!f.contains(c,d))a.type=e.origType,h=e.handler.apply(this,arguments),a.type=b;return h}}}),f.support.submitBubbles||(f.event.special.submit={setup:function(){if(f.nodeName(this,"form"))return!1;f.event.add(this,"click._submit keypress._submit",function(a){var c=a.target,d=f.nodeName(c,"input")||f.nodeName(c,"button")?c.form:b;d&&!d._submit_attached&&(f.event.add(d,"submit._submit",function(a){this.parentNode&&!a.isTrigger&&f.event.simulate("submit",this.parentNode,a,!0)}),d._submit_attached=!0)})},teardown:function(){if(f.nodeName(this,"form"))return!1;f.event.remove(this,"._submit")}}),f.support.changeBubbles||(f.event.special.change={setup:function(){if(z.test(this.nodeName)){if(this.type==="checkbox"||this.type==="radio")f.event.add(this,"propertychange._change",function(a){a.originalEvent.propertyName==="checked"&&(this._just_changed=!0)}),f.event.add(this,"click._change",function(a){this._just_changed&&!a.isTrigger&&(this._just_changed=!1,f.event.simulate("change",this,a,!0))});return!1}f.event.add(this,"beforeactivate._change",function(a){var b=a.target;z.test(b.nodeName)&&!b._change_attached&&(f.event.add(b,"change._change",function(a){this.parentNode&&!a.isSimulated&&!a.isTrigger&&f.event.simulate("change",this.parentNode,a,!0)}),b._change_attached=!0)})},handle:function(a){var b=a.target;if(this!==b||a.isSimulated||a.isTrigger||b.type!=="radio"&&b.type!=="checkbox")return a.handleObj.handler.apply(this,arguments)},teardown:function(){f.event.remove(this,"._change");return z.test(this.nodeName)}}),f.support.focusinBubbles||f.each({focus:"focusin",blur:"focusout"},function(a,b){var d=0,e=function(a){f.event.simulate(b,a.target,f.event.fix(a),!0)};f.event.special[b]={setup:function(){d++===0&&c.addEventListener(a,e,!0)},teardown:function(){--d===0&&c.removeEventListener(a,e,!0)}}}),f.fn.extend({on:function(a,c,d,e,g){var h,i;if(typeof a=="object"){typeof c!="string"&&(d=c,c=b);for(i in a)this.on(i,c,d,a[i],g);return this}d==null&&e==null?(e=c,d=c=b):e==null&&(typeof c=="string"?(e=d,d=b):(e=d,d=c,c=b));if(e===!1)e=J;else if(!e)return this;g===1&&(h=e,e=function(a){f().off(a);return h.apply(this,arguments)},e.guid=h.guid||(h.guid=f.guid++));return this.each(function(){f.event.add(this,a,e,d,c)})},one:function(a,b,c,d){return this.on.call(this,a,b,c,d,1)},off:function(a,c,d){if(a&&a.preventDefault&&a.handleObj){var e=a.handleObj;f(a.delegateTarget).off(e.namespace?e.type+"."+e.namespace:e.type,e.selector,e.handler);return this}if(typeof a=="object"){for(var g in a)this.off(g,c,a[g]);return this}if(c===!1||typeof c=="function")d=c,c=b;d===!1&&(d=J);return this.each(function(){f.event.remove(this,a,d,c)})},bind:function(a,b,c){return this.on(a,null,b,c)},unbind:function(a,b){return this.off(a,null,b)},live:function(a,b,c){f(this.context).on(a,this.selector,b,c);return this},die:function(a,b){f(this.context).off(a,this.selector||"**",b);return this},delegate:function(a,b,c,d){return this.on(b,a,c,d)},undelegate:function(a,b,c){return arguments.length==1?this.off(a,"**"):this.off(b,a,c)},trigger:function(a,b){return this.each(function(){f.event.trigger(a,b,this)})},triggerHandler:function(a,b){if(this[0])return f.event.trigger(a,b,this[0],!0)},toggle:function(a){var b=arguments,c=a.guid||f.guid++,d=0,e=function(c){var e=(f._data(this,"lastToggle"+a.guid)||0)%d;f._data(this,"lastToggle"+a.guid,e+1),c.preventDefault();return b[e].apply(this,arguments)||!1};e.guid=c;while(d<b.length)b[d++].guid=c;return this.click(e)},hover:function(a,b){return this.mouseenter(a).mouseleave(b||a)}}),f.each("blur focus focusin focusout load resize scroll unload click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup error contextmenu".split(" "),function(a,b){f.fn[b]=function(a,c){c==null&&(c=a,a=null);return arguments.length>0?this.on(b,null,a,c):this.trigger(b)},f.attrFn&&(f.attrFn[b]=!0),C.test(b)&&(f.event.fixHooks[b]=f.event.keyHooks),D.test(b)&&(f.event.fixHooks[b]=f.event.mouseHooks)}),function(){function x(a,b,c,e,f,g){for(var h=0,i=e.length;h<i;h++){var j=e[h];if(j){var k=!1;j=j[a];while(j){if(j[d]===c){k=e[j.sizset];break}if(j.nodeType===1){g||(j[d]=c,j.sizset=h);if(typeof b!="string"){if(j===b){k=!0;break}}else if(m.filter(b,[j]).length>0){k=j;break}}j=j[a]}e[h]=k}}}function w(a,b,c,e,f,g){for(var h=0,i=e.length;h<i;h++){var j=e[h];if(j){var k=!1;j=j[a];while(j){if(j[d]===c){k=e[j.sizset];break}j.nodeType===1&&!g&&(j[d]=c,j.sizset=h);if(j.nodeName.toLowerCase()===b){k=j;break}j=j[a]}e[h]=k}}}var a=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^\[\]]*\]|['"][^'"]*['"]|[^\[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g,d="sizcache"+(Math.random()+"").replace(".",""),e=0,g=Object.prototype.toString,h=!1,i=!0,j=/\\/g,k=/\r\n/g,l=/\W/;[0,0].sort(function(){i=!1;return 0});var m=function(b,d,e,f){e=e||[],d=d||c;var h=d;if(d.nodeType!==1&&d.nodeType!==9)return[];if(!b||typeof b!="string")return e;var i,j,k,l,n,q,r,t,u=!0,v=m.isXML(d),w=[],x=b;do{a.exec(""),i=a.exec(x);if(i){x=i[3],w.push(i[1]);if(i[2]){l=i[3];break}}}while(i);if(w.length>1&&p.exec(b))if(w.length===2&&o.relative[w[0]])j=y(w[0]+w[1],d,f);else{j=o.relative[w[0]]?[d]:m(w.shift(),d);while(w.length)b=w.shift(),o.relative[b]&&(b+=w.shift()),j=y(b,j,f)}else{!f&&w.length>1&&d.nodeType===9&&!v&&o.match.ID.test(w[0])&&!o.match.ID.test(w[w.length-1])&&(n=m.find(w.shift(),d,v),d=n.expr?m.filter(n.expr,n.set)[0]:n.set[0]);if(d){n=f?{expr:w.pop(),set:s(f)}:m.find(w.pop(),w.length===1&&(w[0]==="~"||w[0]==="+")&&d.parentNode?d.parentNode:d,v),j=n.expr?m.filter(n.expr,n.set):n.set,w.length>0?k=s(j):u=!1;while(w.length)q=w.pop(),r=q,o.relative[q]?r=w.pop():q="",r==null&&(r=d),o.relative[q](k,r,v)}else k=w=[]}k||(k=j),k||m.error(q||b);if(g.call(k)==="[object Array]")if(!u)e.push.apply(e,k);else if(d&&d.nodeType===1)for(t=0;k[t]!=null;t++)k[t]&&(k[t]===!0||k[t].nodeType===1&&m.contains(d,k[t]))&&e.push(j[t]);else for(t=0;k[t]!=null;t++)k[t]&&k[t].nodeType===1&&e.push(j[t]);else s(k,e);l&&(m(l,h,e,f),m.uniqueSort(e));return e};m.uniqueSort=function(a){if(u){h=i,a.sort(u);if(h)for(var b=1;b<a.length;b++)a[b]===a[b-1]&&a.splice(b--,1)}return a},m.matches=function(a,b){return m(a,null,null,b)},m.matchesSelector=function(a,b){return m(b,null,null,[a]).length>0},m.find=function(a,b,c){var d,e,f,g,h,i;if(!a)return[];for(e=0,f=o.order.length;e<f;e++){h=o.order[e];if(g=o.leftMatch[h].exec(a)){i=g[1],g.splice(1,1);if(i.substr(i.length-1)!=="\\"){g[1]=(g[1]||"").replace(j,""),d=o.find[h](g,b,c);if(d!=null){a=a.replace(o.match[h],"");break}}}}d||(d=typeof b.getElementsByTagName!="undefined"?b.getElementsByTagName("*"):[]);return{set:d,expr:a}},m.filter=function(a,c,d,e){var f,g,h,i,j,k,l,n,p,q=a,r=[],s=c,t=c&&c[0]&&m.isXML(c[0]);while(a&&c.length){for(h in o.filter)if((f=o.leftMatch[h].exec(a))!=null&&f[2]){k=o.filter[h],l=f[1],g=!1,f.splice(1,1);if(l.substr(l.length-1)==="\\")continue;s===r&&(r=[]);if(o.preFilter[h]){f=o.preFilter[h](f,s,d,r,e,t);if(!f)g=i=!0;else if(f===!0)continue}if(f)for(n=0;(j=s[n])!=null;n++)j&&(i=k(j,f,n,s),p=e^i,d&&i!=null?p?g=!0:s[n]=!1:p&&(r.push(j),g=!0));if(i!==b){d||(s=r),a=a.replace(o.match[h],"");if(!g)return[];break}}if(a===q)if(g==null)m.error(a);else break;q=a}return s},m.error=function(a){throw new Error("Syntax error, unrecognized expression: "+a)};var n=m.getText=function(a){var b,c,d=a.nodeType,e="";if(d){if(d===1||d===9){if(typeof a.textContent=="string")return a.textContent;if(typeof a.innerText=="string")return a.innerText.replace(k,"");for(a=a.firstChild;a;a=a.nextSibling)e+=n(a)}else if(d===3||d===4)return a.nodeValue}else for(b=0;c=a[b];b++)c.nodeType!==8&&(e+=n(c));return e},o=m.selectors={order:["ID","NAME","TAG"],match:{ID:/#((?:[\w\u00c0-\uFFFF\-]|\\.)+)/,CLASS:/\.((?:[\w\u00c0-\uFFFF\-]|\\.)+)/,NAME:/\[name=['"]*((?:[\w\u00c0-\uFFFF\-]|\\.)+)['"]*\]/,ATTR:/\[\s*((?:[\w\u00c0-\uFFFF\-]|\\.)+)\s*(?:(\S?=)\s*(?:(['"])(.*?)\3|(#?(?:[\w\u00c0-\uFFFF\-]|\\.)*)|)|)\s*\]/,TAG:/^((?:[\w\u00c0-\uFFFF\*\-]|\\.)+)/,CHILD:/:(only|nth|last|first)-child(?:\(\s*(even|odd|(?:[+\-]?\d+|(?:[+\-]?\d*)?n\s*(?:[+\-]\s*\d+)?))\s*\))?/,POS:/:(nth|eq|gt|lt|first|last|even|odd)(?:\((\d*)\))?(?=[^\-]|$)/,PSEUDO:/:((?:[\w\u00c0-\uFFFF\-]|\\.)+)(?:\((['"]?)((?:\([^\)]+\)|[^\(\)]*)+)\2\))?/},leftMatch:{},attrMap:{"class":"className","for":"htmlFor"},attrHandle:{href:function(a){return a.getAttribute("href")},type:function(a){return a.getAttribute("type")}},relative:{"+":function(a,b){var c=typeof b=="string",d=c&&!l.test(b),e=c&&!d;d&&(b=b.toLowerCase());for(var f=0,g=a.length,h;f<g;f++)if(h=a[f]){while((h=h.previousSibling)&&h.nodeType!==1);a[f]=e||h&&h.nodeName.toLowerCase()===b?h||!1:h===b}e&&m.filter(b,a,!0)},">":function(a,b){var c,d=typeof b=="string",e=0,f=a.length;if(d&&!l.test(b)){b=b.toLowerCase();for(;e<f;e++){c=a[e];if(c){var g=c.parentNode;a[e]=g.nodeName.toLowerCase()===b?g:!1}}}else{for(;e<f;e++)c=a[e],c&&(a[e]=d?c.parentNode:c.parentNode===b);d&&m.filter(b,a,!0)}},"":function(a,b,c){var d,f=e++,g=x;typeof b=="string"&&!l.test(b)&&(b=b.toLowerCase(),d=b,g=w),g("parentNode",b,f,a,d,c)},"~":function(a,b,c){var d,f=e++,g=x;typeof b=="string"&&!l.test(b)&&(b=b.toLowerCase(),d=b,g=w),g("previousSibling",b,f,a,d,c)}},find:{ID:function(a,b,c){if(typeof b.getElementById!="undefined"&&!c){var d=b.getElementById(a[1]);return d&&d.parentNode?[d]:[]}},NAME:function(a,b){if(typeof b.getElementsByName!="undefined"){var c=[],d=b.getElementsByName(a[1]);for(var e=0,f=d.length;e<f;e++)d[e].getAttribute("name")===a[1]&&c.push(d[e]);return c.length===0?null:c}},TAG:function(a,b){if(typeof b.getElementsByTagName!="undefined")return b.getElementsByTagName(a[1])}},preFilter:{CLASS:function(a,b,c,d,e,f){a=" "+a[1].replace(j,"")+" ";if(f)return a;for(var g=0,h;(h=b[g])!=null;g++)h&&(e^(h.className&&(" "+h.className+" ").replace(/[\t\n\r]/g," ").indexOf(a)>=0)?c||d.push(h):c&&(b[g]=!1));return!1},ID:function(a){return a[1].replace(j,"")},TAG:function(a,b){return a[1].replace(j,"").toLowerCase()},CHILD:function(a){if(a[1]==="nth"){a[2]||m.error(a[0]),a[2]=a[2].replace(/^\+|\s*/g,"");var b=/(-?)(\d*)(?:n([+\-]?\d*))?/.exec(a[2]==="even"&&"2n"||a[2]==="odd"&&"2n+1"||!/\D/.test(a[2])&&"0n+"+a[2]||a[2]);a[2]=b[1]+(b[2]||1)-0,a[3]=b[3]-0}else a[2]&&m.error(a[0]);a[0]=e++;return a},ATTR:function(a,b,c,d,e,f){var g=a[1]=a[1].replace(j,"");!f&&o.attrMap[g]&&(a[1]=o.attrMap[g]),a[4]=(a[4]||a[5]||"").replace(j,""),a[2]==="~="&&(a[4]=" "+a[4]+" ");return a},PSEUDO:function(b,c,d,e,f){if(b[1]==="not")if((a.exec(b[3])||"").length>1||/^\w/.test(b[3]))b[3]=m(b[3],null,null,c);else{var g=m.filter(b[3],c,d,!0^f);d||e.push.apply(e,g);return!1}else if(o.match.POS.test(b[0])||o.match.CHILD.test(b[0]))return!0;return b},POS:function(a){a.unshift(!0);return a}},filters:{enabled:function(a){return a.disabled===!1&&a.type!=="hidden"},disabled:function(a){return a.disabled===!0},checked:function(a){return a.checked===!0},selected:function(a){a.parentNode&&a.parentNode.selectedIndex;return a.selected===!0},parent:function(a){return!!a.firstChild},empty:function(a){return!a.firstChild},has:function(a,b,c){return!!m(c[3],a).length},header:function(a){return/h\d/i.test(a.nodeName)},text:function(a){var b=a.getAttribute("type"),c=a.type;return a.nodeName.toLowerCase()==="input"&&"text"===c&&(b===c||b===null)},radio:function(a){return a.nodeName.toLowerCase()==="input"&&"radio"===a.type},checkbox:function(a){return a.nodeName.toLowerCase()==="input"&&"checkbox"===a.type},file:function(a){return a.nodeName.toLowerCase()==="input"&&"file"===a.type},password:function(a){return a.nodeName.toLowerCase()==="input"&&"password"===a.type},submit:function(a){var b=a.nodeName.toLowerCase();return(b==="input"||b==="button")&&"submit"===a.type},image:function(a){return a.nodeName.toLowerCase()==="input"&&"image"===a.type},reset:function(a){var b=a.nodeName.toLowerCase();return(b==="input"||b==="button")&&"reset"===a.type},button:function(a){var b=a.nodeName.toLowerCase();return b==="input"&&"button"===a.type||b==="button"},input:function(a){return/input|select|textarea|button/i.test(a.nodeName)},focus:function(a){return a===a.ownerDocument.activeElement}},setFilters:{first:function(a,b){return b===0},last:function(a,b,c,d){return b===d.length-1},even:function(a,b){return b%2===0},odd:function(a,b){return b%2===1},lt:function(a,b,c){return b<c[3]-0},gt:function(a,b,c){return b>c[3]-0},nth:function(a,b,c){return c[3]-0===b},eq:function(a,b,c){return c[3]-0===b}},filter:{PSEUDO:function(a,b,c,d){var e=b[1],f=o.filters[e];if(f)return f(a,c,b,d);if(e==="contains")return(a.textContent||a.innerText||n([a])||"").indexOf(b[3])>=0;if(e==="not"){var g=b[3];for(var h=0,i=g.length;h<i;h++)if(g[h]===a)return!1;return!0}m.error(e)},CHILD:function(a,b){var c,e,f,g,h,i,j,k=b[1],l=a;switch(k){case"only":case"first":while(l=l.previousSibling)if(l.nodeType===1)return!1;if(k==="first")return!0;l=a;case"last":while(l=l.nextSibling)if(l.nodeType===1)return!1;return!0;case"nth":c=b[2],e=b[3];if(c===1&&e===0)return!0;f=b[0],g=a.parentNode;if(g&&(g[d]!==f||!a.nodeIndex)){i=0;for(l=g.firstChild;l;l=l.nextSibling)l.nodeType===1&&(l.nodeIndex=++i);g[d]=f}j=a.nodeIndex-e;return c===0?j===0:j%c===0&&j/c>=0}},ID:function(a,b){return a.nodeType===1&&a.getAttribute("id")===b},TAG:function(a,b){return b==="*"&&a.nodeType===1||!!a.nodeName&&a.nodeName.toLowerCase()===b},CLASS:function(a,b){return(" "+(a.className||a.getAttribute("class"))+" ").indexOf(b)>-1},ATTR:function(a,b){var c=b[1],d=m.attr?m.attr(a,c):o.attrHandle[c]?o.attrHandle[c](a):a[c]!=null?a[c]:a.getAttribute(c),e=d+"",f=b[2],g=b[4];return d==null?f==="!=":!f&&m.attr?d!=null:f==="="?e===g:f==="*="?e.indexOf(g)>=0:f==="~="?(" "+e+" ").indexOf(g)>=0:g?f==="!="?e!==g:f==="^="?e.indexOf(g)===0:f==="$="?e.substr(e.length-g.length)===g:f==="|="?e===g||e.substr(0,g.length+1)===g+"-":!1:e&&d!==!1},POS:function(a,b,c,d){var e=b[2],f=o.setFilters[e];if(f)return f(a,c,b,d)}}},p=o.match.POS,q=function(a,b){return"\\"+(b-0+1)};for(var r in o.match)o.match[r]=new RegExp(o.match[r].source+/(?![^\[]*\])(?![^\(]*\))/.source),o.leftMatch[r]=new RegExp(/(^(?:.|\r|\n)*?)/.source+o.match[r].source.replace(/\\(\d+)/g,q));var s=function(a,b){a=Array.prototype.slice.call(a,0);if(b){b.push.apply(b,a);return b}return a};try{Array.prototype.slice.call(c.documentElement.childNodes,0)[0].nodeType}catch(t){s=function(a,b){var c=0,d=b||[];if(g.call(a)==="[object Array]")Array.prototype.push.apply(d,a);else if(typeof a.length=="number")for(var e=a.length;c<e;c++)d.push(a[c]);else for(;a[c];c++)d.push(a[c]);return d}}var u,v;c.documentElement.compareDocumentPosition?u=function(a,b){if(a===b){h=!0;return 0}if(!a.compareDocumentPosition||!b.compareDocumentPosition)return a.compareDocumentPosition?-1:1;return a.compareDocumentPosition(b)&4?-1:1}:(u=function(a,b){if(a===b){h=!0;return 0}if(a.sourceIndex&&b.sourceIndex)return a.sourceIndex-b.sourceIndex;var c,d,e=[],f=[],g=a.parentNode,i=b.parentNode,j=g;if(g===i)return v(a,b);if(!g)return-1;if(!i)return 1;while(j)e.unshift(j),j=j.parentNode;j=i;while(j)f.unshift(j),j=j.parentNode;c=e.length,d=f.length;for(var k=0;k<c&&k<d;k++)if(e[k]!==f[k])return v(e[k],f[k]);return k===c?v(a,f[k],-1):v(e[k],b,1)},v=function(a,b,c){if(a===b)return c;var d=a.nextSibling;while(d){if(d===b)return-1;d=d.nextSibling}return 1}),function(){var a=c.createElement("div"),d="script"+(new Date).getTime(),e=c.documentElement;a.innerHTML="<a name='"+d+"'/>",e.insertBefore(a,e.firstChild),c.getElementById(d)&&(o.find.ID=function(a,c,d){if(typeof c.getElementById!="undefined"&&!d){var e=c.getElementById(a[1]);return e?e.id===a[1]||typeof e.getAttributeNode!="undefined"&&e.getAttributeNode("id").nodeValue===a[1]?[e]:b:[]}},o.filter.ID=function(a,b){var c=typeof a.getAttributeNode!="undefined"&&a.getAttributeNode("id");return a.nodeType===1&&c&&c.nodeValue===b}),e.removeChild(a),e=a=null}(),function(){var a=c.createElement("div");a.appendChild(c.createComment("")),a.getElementsByTagName("*").length>0&&(o.find.TAG=function(a,b){var c=b.getElementsByTagName(a[1]);if(a[1]==="*"){var d=[];for(var e=0;c[e];e++)c[e].nodeType===1&&d.push(c[e]);c=d}return c}),a.innerHTML="<a href='#'></a>",a.firstChild&&typeof a.firstChild.getAttribute!="undefined"&&a.firstChild.getAttribute("href")!=="#"&&(o.attrHandle.href=function(a){return a.getAttribute("href",2)}),a=null}(),c.querySelectorAll&&function(){var a=m,b=c.createElement("div"),d="__sizzle__";b.innerHTML="<p class='TEST'></p>";if(!b.querySelectorAll||b.querySelectorAll(".TEST").length!==0){m=function(b,e,f,g){e=e||c;if(!g&&!m.isXML(e)){var h=/^(\w+$)|^\.([\w\-]+$)|^#([\w\-]+$)/.exec(b);if(h&&(e.nodeType===1||e.nodeType===9)){if(h[1])return s(e.getElementsByTagName(b),f);if(h[2]&&o.find.CLASS&&e.getElementsByClassName)return s(e.getElementsByClassName(h[2]),f)}if(e.nodeType===9){if(b==="body"&&e.body)return s([e.body],f);if(h&&h[3]){var i=e.getElementById(h[3]);if(!i||!i.parentNode)return s([],f);if(i.id===h[3])return s([i],f)}try{return s(e.querySelectorAll(b),f)}catch(j){}}else if(e.nodeType===1&&e.nodeName.toLowerCase()!=="object"){var k=e,l=e.getAttribute("id"),n=l||d,p=e.parentNode,q=/^\s*[+~]/.test(b);l?n=n.replace(/'/g,"\\$&"):e.setAttribute("id",n),q&&p&&(e=e.parentNode);try{if(!q||p)return s(e.querySelectorAll("[id='"+n+"'] "+b),f)}catch(r){}finally{l||k.removeAttribute("id")}}}return a(b,e,f,g)};for(var e in a)m[e]=a[e];b=null}}(),function(){var a=c.documentElement,b=a.matchesSelector||a.mozMatchesSelector||a.webkitMatchesSelector||a.msMatchesSelector;if(b){var d=!b.call(c.createElement("div"),"div"),e=!1;try{b.call(c.documentElement,"[test!='']:sizzle")}catch(f){e=!0}m.matchesSelector=function(a,c){c=c.replace(/\=\s*([^'"\]]*)\s*\]/g,"='$1']");if(!m.isXML(a))try{if(e||!o.match.PSEUDO.test(c)&&!/!=/.test(c)){var f=b.call(a,c);if(f||!d||a.document&&a.document.nodeType!==11)return f}}catch(g){}return m(c,null,null,[a]).length>0}}}(),function(){var a=c.createElement("div");a.innerHTML="<div class='test e'></div><div class='test'></div>";if(!!a.getElementsByClassName&&a.getElementsByClassName("e").length!==0){a.lastChild.className="e";if(a.getElementsByClassName("e").length===1)return;o.order.splice(1,0,"CLASS"),o.find.CLASS=function(a,b,c){if(typeof b.getElementsByClassName!="undefined"&&!c)return b.getElementsByClassName(a[1])},a=null}}(),c.documentElement.contains?m.contains=function(a,b){return a!==b&&(a.contains?a.contains(b):!0)}:c.documentElement.compareDocumentPosition?m.contains=function(a,b){return!!(a.compareDocumentPosition(b)&16)}:m.contains=function(){return!1},m.isXML=function(a){var b=(a?a.ownerDocument||a:0).documentElement;return b?b.nodeName!=="HTML":!1};var y=function(a,b,c){var d,e=[],f="",g=b.nodeType?[b]:b;while(d=o.match.PSEUDO.exec(a))f+=d[0],a=a.replace(o.match.PSEUDO,"");a=o.relative[a]?a+"*":a;for(var h=0,i=g.length;h<i;h++)m(a,g[h],e,c);return m.filter(f,e)};m.attr=f.attr,m.selectors.attrMap={},f.find=m,f.expr=m.selectors,f.expr[":"]=f.expr.filters,f.unique=m.uniqueSort,f.text=m.getText,f.isXMLDoc=m.isXML,f.contains=m.contains}();var L=/Until$/,M=/^(?:parents|prevUntil|prevAll)/,N=/,/,O=/^.[^:#\[\.,]*$/,P=Array.prototype.slice,Q=f.expr.match.POS,R={children:!0,contents:!0,next:!0,prev:!0};f.fn.extend({find:function(a){var b=this,c,d;if(typeof a!="string")return f(a).filter(function(){for(c=0,d=b.length;c<d;c++)if(f.contains(b[c],this))return!0});var e=this.pushStack("","find",a),g,h,i;for(c=0,d=this.length;c<d;c++){g=e.length,f.find(a,this[c],e);if(c>0)for(h=g;h<e.length;h++)for(i=0;i<g;i++)if(e[i]===e[h]){e.splice(h--,1);break}}return e},has:function(a){var b=f(a);return this.filter(function(){for(var a=0,c=b.length;a<c;a++)if(f.contains(this,b[a]))return!0})},not:function(a){return this.pushStack(T(this,a,!1),"not",a)},filter:function(a){return this.pushStack(T(this,a,!0),"filter",a)},is:function(a){return!!a&&(typeof a=="string"?Q.test(a)?f(a,this.context).index(this[0])>=0:f.filter(a,this).length>0:this.filter(a).length>0)},closest:function(a,b){var c=[],d,e,g=this[0];if(f.isArray(a)){var h=1;while(g&&g.ownerDocument&&g!==b){for(d=0;d<a.length;d++)f(g).is(a[d])&&c.push({selector:a[d],elem:g,level:h});g=g.parentNode,h++}return c}var i=Q.test(a)||typeof a!="string"?f(a,b||this.context):0;for(d=0,e=this.length;d<e;d++){g=this[d];while(g){if(i?i.index(g)>-1:f.find.matchesSelector(g,a)){c.push(g);break}g=g.parentNode;if(!g||!g.ownerDocument||g===b||g.nodeType===11)break}}c=c.length>1?f.unique(c):c;return this.pushStack(c,"closest",a)},index:function(a){if(!a)return this[0]&&this[0].parentNode?this.prevAll().length:-1;if(typeof a=="string")return f.inArray(this[0],f(a));return f.inArray(a.jquery?a[0]:a,this)},add:function(a,b){var c=typeof a=="string"?f(a,b):f.makeArray(a&&a.nodeType?[a]:a),d=f.merge(this.get(),c);return this.pushStack(S(c[0])||S(d[0])?d:f.unique(d))},andSelf:function(){return this.add(this.prevObject)}}),f.each({parent:function(a){var b=a.parentNode;return b&&b.nodeType!==11?b:null},parents:function(a){return f.dir(a,"parentNode")},parentsUntil:function(a,b,c){return f.dir(a,"parentNode",c)},next:function(a){return f.nth(a,2,"nextSibling")},prev:function(a){return f.nth(a,2,"previousSibling")},nextAll:function(a){return f.dir(a,"nextSibling")},prevAll:function(a){return f.dir(a,"previousSibling")},nextUntil:function(a,b,c){return f.dir(a,"nextSibling",c)},prevUntil:function(a,b,c){return f.dir(a,"previousSibling",c)},siblings:function(a){return f.sibling(a.parentNode.firstChild,a)},children:function(a){return f.sibling(a.firstChild)},contents:function(a){return f.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:f.makeArray(a.childNodes)}},function(a,b){f.fn[a]=function(c,d){var e=f.map(this,b,c);L.test(a)||(d=c),d&&typeof d=="string"&&(e=f.filter(d,e)),e=this.length>1&&!R[a]?f.unique(e):e,(this.length>1||N.test(d))&&M.test(a)&&(e=e.reverse());return this.pushStack(e,a,P.call(arguments).join(","))}}),f.extend({filter:function(a,b,c){c&&(a=":not("+a+")");return b.length===1?f.find.matchesSelector(b[0],a)?[b[0]]:[]:f.find.matches(a,b)},dir:function(a,c,d){var e=[],g=a[c];while(g&&g.nodeType!==9&&(d===b||g.nodeType!==1||!f(g).is(d)))g.nodeType===1&&e.push(g),g=g[c];return e},nth:function(a,b,c,d){b=b||1;var e=0;for(;a;a=a[c])if(a.nodeType===1&&++e===b)break;return a},sibling:function(a,b){var c=[];for(;a;a=a.nextSibling)a.nodeType===1&&a!==b&&c.push(a);return c}});var V="abbr|article|aside|audio|canvas|datalist|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",W=/ jQuery\d+="(?:\d+|null)"/g,X=/^\s+/,Y=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/ig,Z=/<([\w:]+)/,$=/<tbody/i,_=/<|&#?\w+;/,ba=/<(?:script|style)/i,bb=/<(?:script|object|embed|option|style)/i,bc=new RegExp("<(?:"+V+")","i"),bd=/checked\s*(?:[^=]|=\s*.checked.)/i,be=/\/(java|ecma)script/i,bf=/^\s*<!(?:\[CDATA\[|\-\-)/,bg={option:[1,"<select multiple='multiple'>","</select>"],legend:[1,"<fieldset>","</fieldset>"],thead:[1,"<table>","</table>"],tr:[2,"<table><tbody>","</tbody></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],col:[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"],area:[1,"<map>","</map>"],_default:[0,"",""]},bh=U(c);bg.optgroup=bg.option,bg.tbody=bg.tfoot=bg.colgroup=bg.caption=bg.thead,bg.th=bg.td,f.support.htmlSerialize||(bg._default=[1,"div<div>","</div>"]),f.fn.extend({text:function(a){if(f.isFunction(a))return this.each(function(b){var c=f(this);c.text(a.call(this,b,c.text()))});if(typeof a!="object"&&a!==b)return this.empty().append((this[0]&&this[0].ownerDocument||c).createTextNode(a));return f.text(this)},wrapAll:function(a){if(f.isFunction(a))return this.each(function(b){f(this).wrapAll(a.call(this,b))});if(this[0]){var b=f(a,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&b.insertBefore(this[0]),b.map(function(){var a=this;while(a.firstChild&&a.firstChild.nodeType===1)a=a.firstChild;return a}).append(this)}return this},wrapInner:function(a){if(f.isFunction(a))return this.each(function(b){f(this).wrapInner(a.call(this,b))});return this.each(function(){var b=f(this),c=b.contents();c.length?c.wrapAll(a):b.append(a)})},wrap:function(a){var b=f.isFunction(a);return this.each(function(c){f(this).wrapAll(b?a.call(this,c):a)})},unwrap:function(){return this.parent().each(function(){f.nodeName(this,"body")||f(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,!0,function(a){this.nodeType===1&&this.appendChild(a)})},prepend:function(){return this.domManip(arguments,!0,function(a){this.nodeType===1&&this.insertBefore(a,this.firstChild)})},before:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this)});if(arguments.length){var a=f.clean(arguments);a.push.apply(a,this.toArray());return this.pushStack(a,"before",arguments)}},after:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this.nextSibling)});if(arguments.length){var a=this.pushStack(this,"after",arguments);a.push.apply(a,f.clean(arguments));return a}},remove:function(a,b){for(var c=0,d;(d=this[c])!=null;c++)if(!a||f.filter(a,[d]).length)!b&&d.nodeType===1&&(f.cleanData(d.getElementsByTagName("*")),f.cleanData([d])),d.parentNode&&d.parentNode.removeChild(d);return this},empty:function() +{for(var a=0,b;(b=this[a])!=null;a++){b.nodeType===1&&f.cleanData(b.getElementsByTagName("*"));while(b.firstChild)b.removeChild(b.firstChild)}return this},clone:function(a,b){a=a==null?!1:a,b=b==null?a:b;return this.map(function(){return f.clone(this,a,b)})},html:function(a){if(a===b)return this[0]&&this[0].nodeType===1?this[0].innerHTML.replace(W,""):null;if(typeof a=="string"&&!ba.test(a)&&(f.support.leadingWhitespace||!X.test(a))&&!bg[(Z.exec(a)||["",""])[1].toLowerCase()]){a=a.replace(Y,"<$1></$2>");try{for(var c=0,d=this.length;c<d;c++)this[c].nodeType===1&&(f.cleanData(this[c].getElementsByTagName("*")),this[c].innerHTML=a)}catch(e){this.empty().append(a)}}else f.isFunction(a)?this.each(function(b){var c=f(this);c.html(a.call(this,b,c.html()))}):this.empty().append(a);return this},replaceWith:function(a){if(this[0]&&this[0].parentNode){if(f.isFunction(a))return this.each(function(b){var c=f(this),d=c.html();c.replaceWith(a.call(this,b,d))});typeof a!="string"&&(a=f(a).detach());return this.each(function(){var b=this.nextSibling,c=this.parentNode;f(this).remove(),b?f(b).before(a):f(c).append(a)})}return this.length?this.pushStack(f(f.isFunction(a)?a():a),"replaceWith",a):this},detach:function(a){return this.remove(a,!0)},domManip:function(a,c,d){var e,g,h,i,j=a[0],k=[];if(!f.support.checkClone&&arguments.length===3&&typeof j=="string"&&bd.test(j))return this.each(function(){f(this).domManip(a,c,d,!0)});if(f.isFunction(j))return this.each(function(e){var g=f(this);a[0]=j.call(this,e,c?g.html():b),g.domManip(a,c,d)});if(this[0]){i=j&&j.parentNode,f.support.parentNode&&i&&i.nodeType===11&&i.childNodes.length===this.length?e={fragment:i}:e=f.buildFragment(a,this,k),h=e.fragment,h.childNodes.length===1?g=h=h.firstChild:g=h.firstChild;if(g){c=c&&f.nodeName(g,"tr");for(var l=0,m=this.length,n=m-1;l<m;l++)d.call(c?bi(this[l],g):this[l],e.cacheable||m>1&&l<n?f.clone(h,!0,!0):h)}k.length&&f.each(k,bp)}return this}}),f.buildFragment=function(a,b,d){var e,g,h,i,j=a[0];b&&b[0]&&(i=b[0].ownerDocument||b[0]),i.createDocumentFragment||(i=c),a.length===1&&typeof j=="string"&&j.length<512&&i===c&&j.charAt(0)==="<"&&!bb.test(j)&&(f.support.checkClone||!bd.test(j))&&(f.support.html5Clone||!bc.test(j))&&(g=!0,h=f.fragments[j],h&&h!==1&&(e=h)),e||(e=i.createDocumentFragment(),f.clean(a,i,e,d)),g&&(f.fragments[j]=h?e:1);return{fragment:e,cacheable:g}},f.fragments={},f.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b){f.fn[a]=function(c){var d=[],e=f(c),g=this.length===1&&this[0].parentNode;if(g&&g.nodeType===11&&g.childNodes.length===1&&e.length===1){e[b](this[0]);return this}for(var h=0,i=e.length;h<i;h++){var j=(h>0?this.clone(!0):this).get();f(e[h])[b](j),d=d.concat(j)}return this.pushStack(d,a,e.selector)}}),f.extend({clone:function(a,b,c){var d,e,g,h=f.support.html5Clone||!bc.test("<"+a.nodeName)?a.cloneNode(!0):bo(a);if((!f.support.noCloneEvent||!f.support.noCloneChecked)&&(a.nodeType===1||a.nodeType===11)&&!f.isXMLDoc(a)){bk(a,h),d=bl(a),e=bl(h);for(g=0;d[g];++g)e[g]&&bk(d[g],e[g])}if(b){bj(a,h);if(c){d=bl(a),e=bl(h);for(g=0;d[g];++g)bj(d[g],e[g])}}d=e=null;return h},clean:function(a,b,d,e){var g;b=b||c,typeof b.createElement=="undefined"&&(b=b.ownerDocument||b[0]&&b[0].ownerDocument||c);var h=[],i;for(var j=0,k;(k=a[j])!=null;j++){typeof k=="number"&&(k+="");if(!k)continue;if(typeof k=="string")if(!_.test(k))k=b.createTextNode(k);else{k=k.replace(Y,"<$1></$2>");var l=(Z.exec(k)||["",""])[1].toLowerCase(),m=bg[l]||bg._default,n=m[0],o=b.createElement("div");b===c?bh.appendChild(o):U(b).appendChild(o),o.innerHTML=m[1]+k+m[2];while(n--)o=o.lastChild;if(!f.support.tbody){var p=$.test(k),q=l==="table"&&!p?o.firstChild&&o.firstChild.childNodes:m[1]==="<table>"&&!p?o.childNodes:[];for(i=q.length-1;i>=0;--i)f.nodeName(q[i],"tbody")&&!q[i].childNodes.length&&q[i].parentNode.removeChild(q[i])}!f.support.leadingWhitespace&&X.test(k)&&o.insertBefore(b.createTextNode(X.exec(k)[0]),o.firstChild),k=o.childNodes}var r;if(!f.support.appendChecked)if(k[0]&&typeof (r=k.length)=="number")for(i=0;i<r;i++)bn(k[i]);else bn(k);k.nodeType?h.push(k):h=f.merge(h,k)}if(d){g=function(a){return!a.type||be.test(a.type)};for(j=0;h[j];j++)if(e&&f.nodeName(h[j],"script")&&(!h[j].type||h[j].type.toLowerCase()==="text/javascript"))e.push(h[j].parentNode?h[j].parentNode.removeChild(h[j]):h[j]);else{if(h[j].nodeType===1){var s=f.grep(h[j].getElementsByTagName("script"),g);h.splice.apply(h,[j+1,0].concat(s))}d.appendChild(h[j])}}return h},cleanData:function(a){var b,c,d=f.cache,e=f.event.special,g=f.support.deleteExpando;for(var h=0,i;(i=a[h])!=null;h++){if(i.nodeName&&f.noData[i.nodeName.toLowerCase()])continue;c=i[f.expando];if(c){b=d[c];if(b&&b.events){for(var j in b.events)e[j]?f.event.remove(i,j):f.removeEvent(i,j,b.handle);b.handle&&(b.handle.elem=null)}g?delete i[f.expando]:i.removeAttribute&&i.removeAttribute(f.expando),delete d[c]}}}});var bq=/alpha\([^)]*\)/i,br=/opacity=([^)]*)/,bs=/([A-Z]|^ms)/g,bt=/^-?\d+(?:px)?$/i,bu=/^-?\d/,bv=/^([\-+])=([\-+.\de]+)/,bw={position:"absolute",visibility:"hidden",display:"block"},bx=["Left","Right"],by=["Top","Bottom"],bz,bA,bB;f.fn.css=function(a,c){if(arguments.length===2&&c===b)return this;return f.access(this,a,c,!0,function(a,c,d){return d!==b?f.style(a,c,d):f.css(a,c)})},f.extend({cssHooks:{opacity:{get:function(a,b){if(b){var c=bz(a,"opacity","opacity");return c===""?"1":c}return a.style.opacity}}},cssNumber:{fillOpacity:!0,fontWeight:!0,lineHeight:!0,opacity:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{"float":f.support.cssFloat?"cssFloat":"styleFloat"},style:function(a,c,d,e){if(!!a&&a.nodeType!==3&&a.nodeType!==8&&!!a.style){var g,h,i=f.camelCase(c),j=a.style,k=f.cssHooks[i];c=f.cssProps[i]||i;if(d===b){if(k&&"get"in k&&(g=k.get(a,!1,e))!==b)return g;return j[c]}h=typeof d,h==="string"&&(g=bv.exec(d))&&(d=+(g[1]+1)*+g[2]+parseFloat(f.css(a,c)),h="number");if(d==null||h==="number"&&isNaN(d))return;h==="number"&&!f.cssNumber[i]&&(d+="px");if(!k||!("set"in k)||(d=k.set(a,d))!==b)try{j[c]=d}catch(l){}}},css:function(a,c,d){var e,g;c=f.camelCase(c),g=f.cssHooks[c],c=f.cssProps[c]||c,c==="cssFloat"&&(c="float");if(g&&"get"in g&&(e=g.get(a,!0,d))!==b)return e;if(bz)return bz(a,c)},swap:function(a,b,c){var d={};for(var e in b)d[e]=a.style[e],a.style[e]=b[e];c.call(a);for(e in b)a.style[e]=d[e]}}),f.curCSS=f.css,f.each(["height","width"],function(a,b){f.cssHooks[b]={get:function(a,c,d){var e;if(c){if(a.offsetWidth!==0)return bC(a,b,d);f.swap(a,bw,function(){e=bC(a,b,d)});return e}},set:function(a,b){if(!bt.test(b))return b;b=parseFloat(b);if(b>=0)return b+"px"}}}),f.support.opacity||(f.cssHooks.opacity={get:function(a,b){return br.test((b&&a.currentStyle?a.currentStyle.filter:a.style.filter)||"")?parseFloat(RegExp.$1)/100+"":b?"1":""},set:function(a,b){var c=a.style,d=a.currentStyle,e=f.isNumeric(b)?"alpha(opacity="+b*100+")":"",g=d&&d.filter||c.filter||"";c.zoom=1;if(b>=1&&f.trim(g.replace(bq,""))===""){c.removeAttribute("filter");if(d&&!d.filter)return}c.filter=bq.test(g)?g.replace(bq,e):g+" "+e}}),f(function(){f.support.reliableMarginRight||(f.cssHooks.marginRight={get:function(a,b){var c;f.swap(a,{display:"inline-block"},function(){b?c=bz(a,"margin-right","marginRight"):c=a.style.marginRight});return c}})}),c.defaultView&&c.defaultView.getComputedStyle&&(bA=function(a,b){var c,d,e;b=b.replace(bs,"-$1").toLowerCase(),(d=a.ownerDocument.defaultView)&&(e=d.getComputedStyle(a,null))&&(c=e.getPropertyValue(b),c===""&&!f.contains(a.ownerDocument.documentElement,a)&&(c=f.style(a,b)));return c}),c.documentElement.currentStyle&&(bB=function(a,b){var c,d,e,f=a.currentStyle&&a.currentStyle[b],g=a.style;f===null&&g&&(e=g[b])&&(f=e),!bt.test(f)&&bu.test(f)&&(c=g.left,d=a.runtimeStyle&&a.runtimeStyle.left,d&&(a.runtimeStyle.left=a.currentStyle.left),g.left=b==="fontSize"?"1em":f||0,f=g.pixelLeft+"px",g.left=c,d&&(a.runtimeStyle.left=d));return f===""?"auto":f}),bz=bA||bB,f.expr&&f.expr.filters&&(f.expr.filters.hidden=function(a){var b=a.offsetWidth,c=a.offsetHeight;return b===0&&c===0||!f.support.reliableHiddenOffsets&&(a.style&&a.style.display||f.css(a,"display"))==="none"},f.expr.filters.visible=function(a){return!f.expr.filters.hidden(a)});var bD=/%20/g,bE=/\[\]$/,bF=/\r?\n/g,bG=/#.*$/,bH=/^(.*?):[ \t]*([^\r\n]*)\r?$/mg,bI=/^(?:color|date|datetime|datetime-local|email|hidden|month|number|password|range|search|tel|text|time|url|week)$/i,bJ=/^(?:about|app|app\-storage|.+\-extension|file|res|widget):$/,bK=/^(?:GET|HEAD)$/,bL=/^\/\//,bM=/\?/,bN=/<script\b[^<]*(?:(?!<\/script>)<[^<]*)*<\/script>/gi,bO=/^(?:select|textarea)/i,bP=/\s+/,bQ=/([?&])_=[^&]*/,bR=/^([\w\+\.\-]+:)(?:\/\/([^\/?#:]*)(?::(\d+))?)?/,bS=f.fn.load,bT={},bU={},bV,bW,bX=["*/"]+["*"];try{bV=e.href}catch(bY){bV=c.createElement("a"),bV.href="",bV=bV.href}bW=bR.exec(bV.toLowerCase())||[],f.fn.extend({load:function(a,c,d){if(typeof a!="string"&&bS)return bS.apply(this,arguments);if(!this.length)return this;var e=a.indexOf(" ");if(e>=0){var g=a.slice(e,a.length);a=a.slice(0,e)}var h="GET";c&&(f.isFunction(c)?(d=c,c=b):typeof c=="object"&&(c=f.param(c,f.ajaxSettings.traditional),h="POST"));var i=this;f.ajax({url:a,type:h,dataType:"html",data:c,complete:function(a,b,c){c=a.responseText,a.isResolved()&&(a.done(function(a){c=a}),i.html(g?f("<div>").append(c.replace(bN,"")).find(g):c)),d&&i.each(d,[c,b,a])}});return this},serialize:function(){return f.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?f.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||bO.test(this.nodeName)||bI.test(this.type))}).map(function(a,b){var c=f(this).val();return c==null?null:f.isArray(c)?f.map(c,function(a,c){return{name:b.name,value:a.replace(bF,"\r\n")}}):{name:b.name,value:c.replace(bF,"\r\n")}}).get()}}),f.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "),function(a,b){f.fn[b]=function(a){return this.on(b,a)}}),f.each(["get","post"],function(a,c){f[c]=function(a,d,e,g){f.isFunction(d)&&(g=g||e,e=d,d=b);return f.ajax({type:c,url:a,data:d,success:e,dataType:g})}}),f.extend({getScript:function(a,c){return f.get(a,b,c,"script")},getJSON:function(a,b,c){return f.get(a,b,c,"json")},ajaxSetup:function(a,b){b?b_(a,f.ajaxSettings):(b=a,a=f.ajaxSettings),b_(a,b);return a},ajaxSettings:{url:bV,isLocal:bJ.test(bW[1]),global:!0,type:"GET",contentType:"application/x-www-form-urlencoded",processData:!0,async:!0,accepts:{xml:"application/xml, text/xml",html:"text/html",text:"text/plain",json:"application/json, text/javascript","*":bX},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText"},converters:{"* text":a.String,"text html":!0,"text json":f.parseJSON,"text xml":f.parseXML},flatOptions:{context:!0,url:!0}},ajaxPrefilter:bZ(bT),ajaxTransport:bZ(bU),ajax:function(a,c){function w(a,c,l,m){if(s!==2){s=2,q&&clearTimeout(q),p=b,n=m||"",v.readyState=a>0?4:0;var o,r,u,w=c,x=l?cb(d,v,l):b,y,z;if(a>=200&&a<300||a===304){if(d.ifModified){if(y=v.getResponseHeader("Last-Modified"))f.lastModified[k]=y;if(z=v.getResponseHeader("Etag"))f.etag[k]=z}if(a===304)w="notmodified",o=!0;else try{r=cc(d,x),w="success",o=!0}catch(A){w="parsererror",u=A}}else{u=w;if(!w||a)w="error",a<0&&(a=0)}v.status=a,v.statusText=""+(c||w),o?h.resolveWith(e,[r,w,v]):h.rejectWith(e,[v,w,u]),v.statusCode(j),j=b,t&&g.trigger("ajax"+(o?"Success":"Error"),[v,d,o?r:u]),i.fireWith(e,[v,w]),t&&(g.trigger("ajaxComplete",[v,d]),--f.active||f.event.trigger("ajaxStop"))}}typeof a=="object"&&(c=a,a=b),c=c||{};var d=f.ajaxSetup({},c),e=d.context||d,g=e!==d&&(e.nodeType||e instanceof f)?f(e):f.event,h=f.Deferred(),i=f.Callbacks("once memory"),j=d.statusCode||{},k,l={},m={},n,o,p,q,r,s=0,t,u,v={readyState:0,setRequestHeader:function(a,b){if(!s){var c=a.toLowerCase();a=m[c]=m[c]||a,l[a]=b}return this},getAllResponseHeaders:function(){return s===2?n:null},getResponseHeader:function(a){var c;if(s===2){if(!o){o={};while(c=bH.exec(n))o[c[1].toLowerCase()]=c[2]}c=o[a.toLowerCase()]}return c===b?null:c},overrideMimeType:function(a){s||(d.mimeType=a);return this},abort:function(a){a=a||"abort",p&&p.abort(a),w(0,a);return this}};h.promise(v),v.success=v.done,v.error=v.fail,v.complete=i.add,v.statusCode=function(a){if(a){var b;if(s<2)for(b in a)j[b]=[j[b],a[b]];else b=a[v.status],v.then(b,b)}return this},d.url=((a||d.url)+"").replace(bG,"").replace(bL,bW[1]+"//"),d.dataTypes=f.trim(d.dataType||"*").toLowerCase().split(bP),d.crossDomain==null&&(r=bR.exec(d.url.toLowerCase()),d.crossDomain=!(!r||r[1]==bW[1]&&r[2]==bW[2]&&(r[3]||(r[1]==="http:"?80:443))==(bW[3]||(bW[1]==="http:"?80:443)))),d.data&&d.processData&&typeof d.data!="string"&&(d.data=f.param(d.data,d.traditional)),b$(bT,d,c,v);if(s===2)return!1;t=d.global,d.type=d.type.toUpperCase(),d.hasContent=!bK.test(d.type),t&&f.active++===0&&f.event.trigger("ajaxStart");if(!d.hasContent){d.data&&(d.url+=(bM.test(d.url)?"&":"?")+d.data,delete d.data),k=d.url;if(d.cache===!1){var x=f.now(),y=d.url.replace(bQ,"$1_="+x);d.url=y+(y===d.url?(bM.test(d.url)?"&":"?")+"_="+x:"")}}(d.data&&d.hasContent&&d.contentType!==!1||c.contentType)&&v.setRequestHeader("Content-Type",d.contentType),d.ifModified&&(k=k||d.url,f.lastModified[k]&&v.setRequestHeader("If-Modified-Since",f.lastModified[k]),f.etag[k]&&v.setRequestHeader("If-None-Match",f.etag[k])),v.setRequestHeader("Accept",d.dataTypes[0]&&d.accepts[d.dataTypes[0]]?d.accepts[d.dataTypes[0]]+(d.dataTypes[0]!=="*"?", "+bX+"; q=0.01":""):d.accepts["*"]);for(u in d.headers)v.setRequestHeader(u,d.headers[u]);if(d.beforeSend&&(d.beforeSend.call(e,v,d)===!1||s===2)){v.abort();return!1}for(u in{success:1,error:1,complete:1})v[u](d[u]);p=b$(bU,d,c,v);if(!p)w(-1,"No Transport");else{v.readyState=1,t&&g.trigger("ajaxSend",[v,d]),d.async&&d.timeout>0&&(q=setTimeout(function(){v.abort("timeout")},d.timeout));try{s=1,p.send(l,w)}catch(z){if(s<2)w(-1,z);else throw z}}return v},param:function(a,c){var d=[],e=function(a,b){b=f.isFunction(b)?b():b,d[d.length]=encodeURIComponent(a)+"="+encodeURIComponent(b)};c===b&&(c=f.ajaxSettings.traditional);if(f.isArray(a)||a.jquery&&!f.isPlainObject(a))f.each(a,function(){e(this.name,this.value)});else for(var g in a)ca(g,a[g],c,e);return d.join("&").replace(bD,"+")}}),f.extend({active:0,lastModified:{},etag:{}});var cd=f.now(),ce=/(\=)\?(&|$)|\?\?/i;f.ajaxSetup({jsonp:"callback",jsonpCallback:function(){return f.expando+"_"+cd++}}),f.ajaxPrefilter("json jsonp",function(b,c,d){var e=b.contentType==="application/x-www-form-urlencoded"&&typeof b.data=="string";if(b.dataTypes[0]==="jsonp"||b.jsonp!==!1&&(ce.test(b.url)||e&&ce.test(b.data))){var g,h=b.jsonpCallback=f.isFunction(b.jsonpCallback)?b.jsonpCallback():b.jsonpCallback,i=a[h],j=b.url,k=b.data,l="$1"+h+"$2";b.jsonp!==!1&&(j=j.replace(ce,l),b.url===j&&(e&&(k=k.replace(ce,l)),b.data===k&&(j+=(/\?/.test(j)?"&":"?")+b.jsonp+"="+h))),b.url=j,b.data=k,a[h]=function(a){g=[a]},d.always(function(){a[h]=i,g&&f.isFunction(i)&&a[h](g[0])}),b.converters["script json"]=function(){g||f.error(h+" was not called");return g[0]},b.dataTypes[0]="json";return"script"}}),f.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/javascript|ecmascript/},converters:{"text script":function(a){f.globalEval(a);return a}}}),f.ajaxPrefilter("script",function(a){a.cache===b&&(a.cache=!1),a.crossDomain&&(a.type="GET",a.global=!1)}),f.ajaxTransport("script",function(a){if(a.crossDomain){var d,e=c.head||c.getElementsByTagName("head")[0]||c.documentElement;return{send:function(f,g){d=c.createElement("script"),d.async="async",a.scriptCharset&&(d.charset=a.scriptCharset),d.src=a.url,d.onload=d.onreadystatechange=function(a,c){if(c||!d.readyState||/loaded|complete/.test(d.readyState))d.onload=d.onreadystatechange=null,e&&d.parentNode&&e.removeChild(d),d=b,c||g(200,"success")},e.insertBefore(d,e.firstChild)},abort:function(){d&&d.onload(0,1)}}}});var cf=a.ActiveXObject?function(){for(var a in ch)ch[a](0,1)}:!1,cg=0,ch;f.ajaxSettings.xhr=a.ActiveXObject?function(){return!this.isLocal&&ci()||cj()}:ci,function(a){f.extend(f.support,{ajax:!!a,cors:!!a&&"withCredentials"in a})}(f.ajaxSettings.xhr()),f.support.ajax&&f.ajaxTransport(function(c){if(!c.crossDomain||f.support.cors){var d;return{send:function(e,g){var h=c.xhr(),i,j;c.username?h.open(c.type,c.url,c.async,c.username,c.password):h.open(c.type,c.url,c.async);if(c.xhrFields)for(j in c.xhrFields)h[j]=c.xhrFields[j];c.mimeType&&h.overrideMimeType&&h.overrideMimeType(c.mimeType),!c.crossDomain&&!e["X-Requested-With"]&&(e["X-Requested-With"]="XMLHttpRequest");try{for(j in e)h.setRequestHeader(j,e[j])}catch(k){}h.send(c.hasContent&&c.data||null),d=function(a,e){var j,k,l,m,n;try{if(d&&(e||h.readyState===4)){d=b,i&&(h.onreadystatechange=f.noop,cf&&delete ch[i]);if(e)h.readyState!==4&&h.abort();else{j=h.status,l=h.getAllResponseHeaders(),m={},n=h.responseXML,n&&n.documentElement&&(m.xml=n),m.text=h.responseText;try{k=h.statusText}catch(o){k=""}!j&&c.isLocal&&!c.crossDomain?j=m.text?200:404:j===1223&&(j=204)}}}catch(p){e||g(-1,p)}m&&g(j,k,m,l)},!c.async||h.readyState===4?d():(i=++cg,cf&&(ch||(ch={},f(a).unload(cf)),ch[i]=d),h.onreadystatechange=d)},abort:function(){d&&d(0,1)}}}});var ck={},cl,cm,cn=/^(?:toggle|show|hide)$/,co=/^([+\-]=)?([\d+.\-]+)([a-z%]*)$/i,cp,cq=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]],cr;f.fn.extend({show:function(a,b,c){var d,e;if(a||a===0)return this.animate(cu("show",3),a,b,c);for(var g=0,h=this.length;g<h;g++)d=this[g],d.style&&(e=d.style.display,!f._data(d,"olddisplay")&&e==="none"&&(e=d.style.display=""),e===""&&f.css(d,"display")==="none"&&f._data(d,"olddisplay",cv(d.nodeName)));for(g=0;g<h;g++){d=this[g];if(d.style){e=d.style.display;if(e===""||e==="none")d.style.display=f._data(d,"olddisplay")||""}}return this},hide:function(a,b,c){if(a||a===0)return this.animate(cu("hide",3),a,b,c);var d,e,g=0,h=this.length;for(;g<h;g++)d=this[g],d.style&&(e=f.css(d,"display"),e!=="none"&&!f._data(d,"olddisplay")&&f._data(d,"olddisplay",e));for(g=0;g<h;g++)this[g].style&&(this[g].style.display="none");return this},_toggle:f.fn.toggle,toggle:function(a,b,c){var d=typeof a=="boolean";f.isFunction(a)&&f.isFunction(b)?this._toggle.apply(this,arguments):a==null||d?this.each(function(){var b=d?a:f(this).is(":hidden");f(this)[b?"show":"hide"]()}):this.animate(cu("toggle",3),a,b,c);return this},fadeTo:function(a,b,c,d){return this.filter(":hidden").css("opacity",0).show().end().animate({opacity:b},a,c,d)},animate:function(a,b,c,d){function g(){e.queue===!1&&f._mark(this);var b=f.extend({},e),c=this.nodeType===1,d=c&&f(this).is(":hidden"),g,h,i,j,k,l,m,n,o;b.animatedProperties={};for(i in a){g=f.camelCase(i),i!==g&&(a[g]=a[i],delete a[i]),h=a[g],f.isArray(h)?(b.animatedProperties[g]=h[1],h=a[g]=h[0]):b.animatedProperties[g]=b.specialEasing&&b.specialEasing[g]||b.easing||"swing";if(h==="hide"&&d||h==="show"&&!d)return b.complete.call(this);c&&(g==="height"||g==="width")&&(b.overflow=[this.style.overflow,this.style.overflowX,this.style.overflowY],f.css(this,"display")==="inline"&&f.css(this,"float")==="none"&&(!f.support.inlineBlockNeedsLayout||cv(this.nodeName)==="inline"?this.style.display="inline-block":this.style.zoom=1))}b.overflow!=null&&(this.style.overflow="hidden");for(i in a)j=new f.fx(this,b,i),h=a[i],cn.test(h)?(o=f._data(this,"toggle"+i)||(h==="toggle"?d?"show":"hide":0),o?(f._data(this,"toggle"+i,o==="show"?"hide":"show"),j[o]()):j[h]()):(k=co.exec(h),l=j.cur(),k?(m=parseFloat(k[2]),n=k[3]||(f.cssNumber[i]?"":"px"),n!=="px"&&(f.style(this,i,(m||1)+n),l=(m||1)/j.cur()*l,f.style(this,i,l+n)),k[1]&&(m=(k[1]==="-="?-1:1)*m+l),j.custom(l,m,n)):j.custom(l,h,""));return!0}var e=f.speed(b,c,d);if(f.isEmptyObject(a))return this.each(e.complete,[!1]);a=f.extend({},a);return e.queue===!1?this.each(g):this.queue(e.queue,g)},stop:function(a,c,d){typeof a!="string"&&(d=c,c=a,a=b),c&&a!==!1&&this.queue(a||"fx",[]);return this.each(function(){function h(a,b,c){var e=b[c];f.removeData(a,c,!0),e.stop(d)}var b,c=!1,e=f.timers,g=f._data(this);d||f._unmark(!0,this);if(a==null)for(b in g)g[b]&&g[b].stop&&b.indexOf(".run")===b.length-4&&h(this,g,b);else g[b=a+".run"]&&g[b].stop&&h(this,g,b);for(b=e.length;b--;)e[b].elem===this&&(a==null||e[b].queue===a)&&(d?e[b](!0):e[b].saveState(),c=!0,e.splice(b,1));(!d||!c)&&f.dequeue(this,a)})}}),f.each({slideDown:cu("show",1),slideUp:cu("hide",1),slideToggle:cu("toggle",1),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(a,b){f.fn[a]=function(a,c,d){return this.animate(b,a,c,d)}}),f.extend({speed:function(a,b,c){var d=a&&typeof a=="object"?f.extend({},a):{complete:c||!c&&b||f.isFunction(a)&&a,duration:a,easing:c&&b||b&&!f.isFunction(b)&&b};d.duration=f.fx.off?0:typeof d.duration=="number"?d.duration:d.duration in f.fx.speeds?f.fx.speeds[d.duration]:f.fx.speeds._default;if(d.queue==null||d.queue===!0)d.queue="fx";d.old=d.complete,d.complete=function(a){f.isFunction(d.old)&&d.old.call(this),d.queue?f.dequeue(this,d.queue):a!==!1&&f._unmark(this)};return d},easing:{linear:function(a,b,c,d){return c+d*a},swing:function(a,b,c,d){return(-Math.cos(a*Math.PI)/2+.5)*d+c}},timers:[],fx:function(a,b,c){this.options=b,this.elem=a,this.prop=c,b.orig=b.orig||{}}}),f.fx.prototype={update:function(){this.options.step&&this.options.step.call(this.elem,this.now,this),(f.fx.step[this.prop]||f.fx.step._default)(this)},cur:function(){if(this.elem[this.prop]!=null&&(!this.elem.style||this.elem.style[this.prop]==null))return this.elem[this.prop];var a,b=f.css(this.elem,this.prop);return isNaN(a=parseFloat(b))?!b||b==="auto"?0:b:a},custom:function(a,c,d){function h(a){return e.step(a)}var e=this,g=f.fx;this.startTime=cr||cs(),this.end=c,this.now=this.start=a,this.pos=this.state=0,this.unit=d||this.unit||(f.cssNumber[this.prop]?"":"px"),h.queue=this.options.queue,h.elem=this.elem,h.saveState=function(){e.options.hide&&f._data(e.elem,"fxshow"+e.prop)===b&&f._data(e.elem,"fxshow"+e.prop,e.start)},h()&&f.timers.push(h)&&!cp&&(cp=setInterval(g.tick,g.interval))},show:function(){var a=f._data(this.elem,"fxshow"+this.prop);this.options.orig[this.prop]=a||f.style(this.elem,this.prop),this.options.show=!0,a!==b?this.custom(this.cur(),a):this.custom(this.prop==="width"||this.prop==="height"?1:0,this.cur()),f(this.elem).show()},hide:function(){this.options.orig[this.prop]=f._data(this.elem,"fxshow"+this.prop)||f.style(this.elem,this.prop),this.options.hide=!0,this.custom(this.cur(),0)},step:function(a){var b,c,d,e=cr||cs(),g=!0,h=this.elem,i=this.options;if(a||e>=i.duration+this.startTime){this.now=this.end,this.pos=this.state=1,this.update(),i.animatedProperties[this.prop]=!0;for(b in i.animatedProperties)i.animatedProperties[b]!==!0&&(g=!1);if(g){i.overflow!=null&&!f.support.shrinkWrapBlocks&&f.each(["","X","Y"],function(a,b){h.style["overflow"+b]=i.overflow[a]}),i.hide&&f(h).hide();if(i.hide||i.show)for(b in i.animatedProperties)f.style(h,b,i.orig[b]),f.removeData(h,"fxshow"+b,!0),f.removeData(h,"toggle"+b,!0);d=i.complete,d&&(i.complete=!1,d.call(h))}return!1}i.duration==Infinity?this.now=e:(c=e-this.startTime,this.state=c/i.duration,this.pos=f.easing[i.animatedProperties[this.prop]](this.state,c,0,1,i.duration),this.now=this.start+(this.end-this.start)*this.pos),this.update();return!0}},f.extend(f.fx,{tick:function(){var a,b=f.timers,c=0;for(;c<b.length;c++)a=b[c],!a()&&b[c]===a&&b.splice(c--,1);b.length||f.fx.stop()},interval:13,stop:function(){clearInterval(cp),cp=null},speeds:{slow:600,fast:200,_default:400},step:{opacity:function(a){f.style(a.elem,"opacity",a.now)},_default:function(a){a.elem.style&&a.elem.style[a.prop]!=null?a.elem.style[a.prop]=a.now+a.unit:a.elem[a.prop]=a.now}}}),f.each(["width","height"],function(a,b){f.fx.step[b]=function(a){f.style(a.elem,b,Math.max(0,a.now)+a.unit)}}),f.expr&&f.expr.filters&&(f.expr.filters.animated=function(a){return f.grep(f.timers,function(b){return a===b.elem}).length});var cw=/^t(?:able|d|h)$/i,cx=/^(?:body|html)$/i;"getBoundingClientRect"in c.documentElement?f.fn.offset=function(a){var b=this[0],c;if(a)return this.each(function(b){f.offset.setOffset(this,a,b)});if(!b||!b.ownerDocument)return null;if(b===b.ownerDocument.body)return f.offset.bodyOffset(b);try{c=b.getBoundingClientRect()}catch(d){}var e=b.ownerDocument,g=e.documentElement;if(!c||!f.contains(g,b))return c?{top:c.top,left:c.left}:{top:0,left:0};var h=e.body,i=cy(e),j=g.clientTop||h.clientTop||0,k=g.clientLeft||h.clientLeft||0,l=i.pageYOffset||f.support.boxModel&&g.scrollTop||h.scrollTop,m=i.pageXOffset||f.support.boxModel&&g.scrollLeft||h.scrollLeft,n=c.top+l-j,o=c.left+m-k;return{top:n,left:o}}:f.fn.offset=function(a){var b=this[0];if(a)return this.each(function(b){f.offset.setOffset(this,a,b)});if(!b||!b.ownerDocument)return null;if(b===b.ownerDocument.body)return f.offset.bodyOffset(b);var c,d=b.offsetParent,e=b,g=b.ownerDocument,h=g.documentElement,i=g.body,j=g.defaultView,k=j?j.getComputedStyle(b,null):b.currentStyle,l=b.offsetTop,m=b.offsetLeft;while((b=b.parentNode)&&b!==i&&b!==h){if(f.support.fixedPosition&&k.position==="fixed")break;c=j?j.getComputedStyle(b,null):b.currentStyle,l-=b.scrollTop,m-=b.scrollLeft,b===d&&(l+=b.offsetTop,m+=b.offsetLeft,f.support.doesNotAddBorder&&(!f.support.doesAddBorderForTableAndCells||!cw.test(b.nodeName))&&(l+=parseFloat(c.borderTopWidth)||0,m+=parseFloat(c.borderLeftWidth)||0),e=d,d=b.offsetParent),f.support.subtractsBorderForOverflowNotVisible&&c.overflow!=="visible"&&(l+=parseFloat(c.borderTopWidth)||0,m+=parseFloat(c.borderLeftWidth)||0),k=c}if(k.position==="relative"||k.position==="static")l+=i.offsetTop,m+=i.offsetLeft;f.support.fixedPosition&&k.position==="fixed"&&(l+=Math.max(h.scrollTop,i.scrollTop),m+=Math.max(h.scrollLeft,i.scrollLeft));return{top:l,left:m}},f.offset={bodyOffset:function(a){var b=a.offsetTop,c=a.offsetLeft;f.support.doesNotIncludeMarginInBodyOffset&&(b+=parseFloat(f.css(a,"marginTop"))||0,c+=parseFloat(f.css(a,"marginLeft"))||0);return{top:b,left:c}},setOffset:function(a,b,c){var d=f.css(a,"position");d==="static"&&(a.style.position="relative");var e=f(a),g=e.offset(),h=f.css(a,"top"),i=f.css(a,"left"),j=(d==="absolute"||d==="fixed")&&f.inArray("auto",[h,i])>-1,k={},l={},m,n;j?(l=e.position(),m=l.top,n=l.left):(m=parseFloat(h)||0,n=parseFloat(i)||0),f.isFunction(b)&&(b=b.call(a,c,g)),b.top!=null&&(k.top=b.top-g.top+m),b.left!=null&&(k.left=b.left-g.left+n),"using"in b?b.using.call(a,k):e.css(k)}},f.fn.extend({position:function(){if(!this[0])return null;var a=this[0],b=this.offsetParent(),c=this.offset(),d=cx.test(b[0].nodeName)?{top:0,left:0}:b.offset();c.top-=parseFloat(f.css(a,"marginTop"))||0,c.left-=parseFloat(f.css(a,"marginLeft"))||0,d.top+=parseFloat(f.css(b[0],"borderTopWidth"))||0,d.left+=parseFloat(f.css(b[0],"borderLeftWidth"))||0;return{top:c.top-d.top,left:c.left-d.left}},offsetParent:function(){return this.map(function(){var a=this.offsetParent||c.body;while(a&&!cx.test(a.nodeName)&&f.css(a,"position")==="static")a=a.offsetParent;return a})}}),f.each(["Left","Top"],function(a,c){var d="scroll"+c;f.fn[d]=function(c){var e,g;if(c===b){e=this[0];if(!e)return null;g=cy(e);return g?"pageXOffset"in g?g[a?"pageYOffset":"pageXOffset"]:f.support.boxModel&&g.document.documentElement[d]||g.document.body[d]:e[d]}return this.each(function(){g=cy(this),g?g.scrollTo(a?f(g).scrollLeft():c,a?c:f(g).scrollTop()):this[d]=c})}}),f.each(["Height","Width"],function(a,c){var d=c.toLowerCase();f.fn["inner"+c]=function(){var a=this[0];return a?a.style?parseFloat(f.css(a,d,"padding")):this[d]():null},f.fn["outer"+c]=function(a){var b=this[0];return b?b.style?parseFloat(f.css(b,d,a?"margin":"border")):this[d]():null},f.fn[d]=function(a){var e=this[0];if(!e)return a==null?null:this;if(f.isFunction(a))return this.each(function(b){var c=f(this);c[d](a.call(this,b,c[d]()))});if(f.isWindow(e)){var g=e.document.documentElement["client"+c],h=e.document.body;return e.document.compatMode==="CSS1Compat"&&g||h&&h["client"+c]||g}if(e.nodeType===9)return Math.max(e.documentElement["client"+c],e.body["scroll"+c],e.documentElement["scroll"+c],e.body["offset"+c],e.documentElement["offset"+c]);if(a===b){var i=f.css(e,d),j=parseFloat(i);return f.isNumeric(j)?j:i}return this.css(d,typeof a=="string"?a:a+"px")}}),a.jQuery=a.$=f,typeof define=="function"&&define.amd&&define.amd.jQuery&&define("jquery",[],function(){return f})})(window); \ No newline at end of file diff --git a/_static/searchtools.js b/_static/searchtools.js index 663be4c..56676b2 100644 --- a/_static/searchtools.js +++ b/_static/searchtools.js @@ -4,38 +4,11 @@ * * Sphinx JavaScript utilties for the full-text search. * - * :copyright: Copyright 2007-2011 by the Sphinx team, see AUTHORS. + * :copyright: Copyright 2007-2013 by the Sphinx team, see AUTHORS. * :license: BSD, see LICENSE for details. * */ -/** - * helper function to return a node containing the - * search summary for a given text. keywords is a list - * of stemmed words, hlwords is the list of normal, unstemmed - * words. the first one is used to find the occurance, the - * latter for highlighting it. - */ - -jQuery.makeSearchSummary = function(text, keywords, hlwords) { - var textLower = text.toLowerCase(); - var start = 0; - $.each(keywords, function() { - var i = textLower.indexOf(this.toLowerCase()); - if (i > -1) - start = i; - }); - start = Math.max(start - 120, 0); - var excerpt = ((start > 0) ? '...' : '') + - $.trim(text.substr(start, 240)) + - ((start + 240 - text.length) ? '...' : ''); - var rv = $('<div class="context"></div>').text(excerpt); - $.each(hlwords, function() { - rv = rv.highlightText(this, 'highlighted'); - }); - return rv; -} - /** * Porter Stemmer @@ -220,6 +193,38 @@ var Stemmer = function() { } + +/** + * Simple result scoring code. + */ +var Scorer = { + // Implement the following function to further tweak the score for each result + // The function takes a result array [filename, title, anchor, descr, score] + // and returns the new score. + /* + score: function(result) { + return result[4]; + }, + */ + + // query matches the full name of an object + objNameMatch: 11, + // or matches in the last dotted part of the object name + objPartialMatch: 6, + // Additive scores depending on the priority of the object + objPrio: {0: 15, // used to be importantResults + 1: 5, // used to be objectResults + 2: -5}, // used to be unimportantResults + // Used when the priority is not in the mapping. + objPrioDefault: 0, + + // query found in title + title: 15, + // query found in terms + term: 5 +}; + + /** * Search Module */ @@ -239,8 +244,13 @@ var Search = { }, loadIndex : function(url) { - $.ajax({type: "GET", url: url, data: null, success: null, - dataType: "script", cache: true}); + $.ajax({type: "GET", url: url, data: null, + dataType: "script", cache: true, + complete: function(jqxhr, textstatus) { + if (textstatus != "success") { + document.getElementById("searchindexloader").src = url; + } + }}); }, setIndex : function(index) { @@ -268,19 +278,20 @@ var Search = { if (this._pulse_status >= 0) return; function pulse() { + var i; Search._pulse_status = (Search._pulse_status + 1) % 4; var dotString = ''; - for (var i = 0; i < Search._pulse_status; i++) + for (i = 0; i < Search._pulse_status; i++) dotString += '.'; Search.dots.text(dotString); if (Search._pulse_status > -1) window.setTimeout(pulse, 500); - }; + } pulse(); }, /** - * perform a search for something + * perform a search for something (or wait until index is loaded) */ performSearch : function(query) { // create the required interface elements @@ -300,41 +311,46 @@ var Search = { this.deferQuery(query); }, + /** + * execute search (requires search index to be loaded) + */ query : function(query) { - var stopwords = ["and","then","into","it","as","are","in","if","for","no","there","their","was","is","be","to","that","but","they","not","such","with","by","a","on","these","of","will","this","near","the","or","at"]; + var i; + var stopwords = ["a","and","are","as","at","be","but","by","for","if","in","into","is","it","near","no","not","of","on","or","such","that","the","their","then","there","these","they","this","to","was","will","with"]; - // Stem the searchterms and add them to the correct list + // stem the searchterms and add them to the correct list var stemmer = new Stemmer(); var searchterms = []; var excluded = []; var hlterms = []; var tmp = query.split(/\s+/); var objectterms = []; - for (var i = 0; i < tmp.length; i++) { - if (tmp[i] != "") { + for (i = 0; i < tmp.length; i++) { + if (tmp[i] !== "") { objectterms.push(tmp[i].toLowerCase()); } if ($u.indexOf(stopwords, tmp[i]) != -1 || tmp[i].match(/^\d+$/) || - tmp[i] == "") { + tmp[i] === "") { // skip this "word" continue; } // stem the word var word = stemmer.stemWord(tmp[i]).toLowerCase(); + var toAppend; // select the correct list if (word[0] == '-') { - var toAppend = excluded; + toAppend = excluded; word = word.substr(1); } else { - var toAppend = searchterms; + toAppend = searchterms; hlterms.push(tmp[i].toLowerCase()); } // only add if not already in the list - if (!$.contains(toAppend, word)) + if (!$u.contains(toAppend, word)) toAppend.push(word); - }; + } var highlightstring = '?highlight=' + $.urlencode(hlterms.join(" ")); // console.debug('SEARCH: searching for:'); @@ -342,89 +358,51 @@ var Search = { // console.info('excluded: ', excluded); // prepare search - var filenames = this._index.filenames; - var titles = this._index.titles; var terms = this._index.terms; - var fileMap = {}; - var files = null; - // different result priorities - var importantResults = []; - var objectResults = []; - var regularResults = []; - var unimportantResults = []; + var titleterms = this._index.titleterms; + + // array of [filename, title, anchor, descr, score] + var results = []; $('#search-progress').empty(); // lookup as object - for (var i = 0; i < objectterms.length; i++) { - var others = [].concat(objectterms.slice(0,i), - objectterms.slice(i+1, objectterms.length)) - var results = this.performObjectSearch(objectterms[i], others); - // Assume first word is most likely to be the object, - // other words more likely to be in description. - // Therefore put matches for earlier words first. - // (Results are eventually used in reverse order). - objectResults = results[0].concat(objectResults); - importantResults = results[1].concat(importantResults); - unimportantResults = results[2].concat(unimportantResults); + for (i = 0; i < objectterms.length; i++) { + var others = [].concat(objectterms.slice(0, i), + objectterms.slice(i+1, objectterms.length)); + results = results.concat(this.performObjectSearch(objectterms[i], others)); } - // perform the search on the required terms - for (var i = 0; i < searchterms.length; i++) { - var word = searchterms[i]; - // no match but word was a required one - if ((files = terms[word]) == null) - break; - if (files.length == undefined) { - files = [files]; - } - // create the mapping - for (var j = 0; j < files.length; j++) { - var file = files[j]; - if (file in fileMap) - fileMap[file].push(word); - else - fileMap[file] = [word]; - } - } - - // now check if the files don't contain excluded terms - for (var file in fileMap) { - var valid = true; - - // check if all requirements are matched - if (fileMap[file].length != searchterms.length) - continue; - - // ensure that none of the excluded terms is in the - // search result. - for (var i = 0; i < excluded.length; i++) { - if (terms[excluded[i]] == file || - $.contains(terms[excluded[i]] || [], file)) { - valid = false; - break; - } - } + // lookup as search terms in fulltext + results = results.concat(this.performTermsSearch(searchterms, excluded, terms, Scorer.term)) + .concat(this.performTermsSearch(searchterms, excluded, titleterms, Scorer.title)); - // if we have still a valid result we can add it - // to the result list - if (valid) - regularResults.push([filenames[file], titles[file], '', null]); + // let the scorer override scores with a custom scoring function + if (Scorer.score) { + for (i = 0; i < results.length; i++) + results[i][4] = Scorer.score(results[i]); } - // delete unused variables in order to not waste - // memory until list is retrieved completely - delete filenames, titles, terms; - - // now sort the regular results descending by title - regularResults.sort(function(a, b) { - var left = a[1].toLowerCase(); - var right = b[1].toLowerCase(); - return (left > right) ? -1 : ((left < right) ? 1 : 0); + // now sort the results by score (in opposite order of appearance, since the + // display function below uses pop() to retrieve items) and then + // alphabetically + results.sort(function(a, b) { + var left = a[4]; + var right = b[4]; + if (left > right) { + return 1; + } else if (left < right) { + return -1; + } else { + // same score: sort alphabetically + left = a[1].toLowerCase(); + right = b[1].toLowerCase(); + return (left > right) ? -1 : ((left < right) ? 1 : 0); + } }); - // combine all results - var results = unimportantResults.concat(regularResults) - .concat(objectResults).concat(importantResults); + // for debugging + //Search.lastresults = results.slice(); // a copy + //console.info('search results:', Search.lastresults); // print the results var resultCount = results.length; @@ -433,7 +411,7 @@ var Search = { if (results.length) { var item = results.pop(); var listItem = $('<li style="display:none"></li>'); - if (DOCUMENTATION_OPTIONS.FILE_SUFFIX == '') { + if (DOCUMENTATION_OPTIONS.FILE_SUFFIX === '') { // dirhtml builder var dirname = item[0] + '/'; if (dirname.match(/\/index\/$/)) { @@ -457,16 +435,18 @@ var Search = { displayNextItem(); }); } else if (DOCUMENTATION_OPTIONS.HAS_SOURCE) { - $.get(DOCUMENTATION_OPTIONS.URL_ROOT + '_sources/' + - item[0] + '.txt', function(data) { - if (data != '') { - listItem.append($.makeSearchSummary(data, searchterms, hlterms)); - Search.output.append(listItem); - } - listItem.slideDown(5, function() { - displayNextItem(); - }); - }, "text"); + $.ajax({url: DOCUMENTATION_OPTIONS.URL_ROOT + '_sources/' + item[0] + '.txt', + dataType: "text", + complete: function(jqxhr, textstatus) { + var data = jqxhr.responseText; + if (data !== '') { + listItem.append(Search.makeSearchSummary(data, searchterms, hlterms)); + } + Search.output.append(listItem); + listItem.slideDown(5, function() { + displayNextItem(); + }); + }}); } else { // no source available, just display title Search.output.append(listItem); @@ -489,20 +469,32 @@ var Search = { displayNextItem(); }, + /** + * search for object names + */ performObjectSearch : function(object, otherterms) { var filenames = this._index.filenames; var objects = this._index.objects; var objnames = this._index.objnames; var titles = this._index.titles; - var importantResults = []; - var objectResults = []; - var unimportantResults = []; + var i; + var results = []; for (var prefix in objects) { for (var name in objects[prefix]) { var fullname = (prefix ? prefix + '.' : '') + name; if (fullname.toLowerCase().indexOf(object) > -1) { + var score = 0; + var parts = fullname.split('.'); + // check for different match types: exact matches of full name or + // "last name" (i.e. last dotted part) + if (fullname == object || parts[parts.length - 1] == object) { + score += Scorer.objNameMatch; + // matches in last name + } else if (parts[parts.length - 1].indexOf(object) > -1) { + score += Scorer.objPartialMatch; + } var match = objects[prefix][name]; var objname = objnames[match[1]][2]; var title = titles[match[0]]; @@ -512,7 +504,7 @@ var Search = { var haystack = (prefix + ' ' + name + ' ' + objname + ' ' + title).toLowerCase(); var allfound = true; - for (var i = 0; i < otherterms.length; i++) { + for (i = 0; i < otherterms.length; i++) { if (haystack.indexOf(otherterms[i]) == -1) { allfound = false; break; @@ -523,37 +515,107 @@ var Search = { } } var descr = objname + _(', in ') + title; - anchor = match[3]; - if (anchor == '') + + var anchor = match[3]; + if (anchor === '') anchor = fullname; else if (anchor == '-') anchor = objnames[match[1]][1] + '-' + fullname; - result = [filenames[match[0]], fullname, '#'+anchor, descr]; - switch (match[2]) { - case 1: objectResults.push(result); break; - case 0: importantResults.push(result); break; - case 2: unimportantResults.push(result); break; + // add custom score for some objects according to scorer + if (Scorer.objPrio.hasOwnProperty(match[2])) { + score += Scorer.objPrio[match[2]]; + } else { + score += Scorer.objPrioDefault; } + results.push([filenames[match[0]], fullname, '#'+anchor, descr, score]); } } } - // sort results descending - objectResults.sort(function(a, b) { - return (a[1] > b[1]) ? -1 : ((a[1] < b[1]) ? 1 : 0); - }); + return results; + }, - importantResults.sort(function(a, b) { - return (a[1] > b[1]) ? -1 : ((a[1] < b[1]) ? 1 : 0); - }); + /** + * search for full-text terms in the index + */ + performTermsSearch : function(searchterms, excluded, terms, score) { + var filenames = this._index.filenames; + var titles = this._index.titles; - unimportantResults.sort(function(a, b) { - return (a[1] > b[1]) ? -1 : ((a[1] < b[1]) ? 1 : 0); - }); + var i, j, file, files; + var fileMap = {}; + var results = []; + + // perform the search on the required terms + for (i = 0; i < searchterms.length; i++) { + var word = searchterms[i]; + // no match but word was a required one + if (!(files = terms[word])) + break; + if (files.length === undefined) { + files = [files]; + } + // create the mapping + for (j = 0; j < files.length; j++) { + file = files[j]; + if (file in fileMap) + fileMap[file].push(word); + else + fileMap[file] = [word]; + } + } + + // now check if the files don't contain excluded terms + for (file in fileMap) { + var valid = true; + + // check if all requirements are matched + if (fileMap[file].length != searchterms.length) + continue; + + // ensure that none of the excluded terms is in the search result + for (i = 0; i < excluded.length; i++) { + if (terms[excluded[i]] == file || + $u.contains(terms[excluded[i]] || [], file)) { + valid = false; + break; + } + } + + // if we have still a valid result we can add it to the result list + if (valid) { + results.push([filenames[file], titles[file], '', null, score]); + } + } + return results; + }, - return [importantResults, objectResults, unimportantResults] + /** + * helper function to return a node containing the + * search summary for a given text. keywords is a list + * of stemmed words, hlwords is the list of normal, unstemmed + * words. the first one is used to find the occurance, the + * latter for highlighting it. + */ + makeSearchSummary : function(text, keywords, hlwords) { + var textLower = text.toLowerCase(); + var start = 0; + $.each(keywords, function() { + var i = textLower.indexOf(this.toLowerCase()); + if (i > -1) + start = i; + }); + start = Math.max(start - 120, 0); + var excerpt = ((start > 0) ? '...' : '') + + $.trim(text.substr(start, 240)) + + ((start + 240 - text.length) ? '...' : ''); + var rv = $('<div class="context"></div>').text(excerpt); + $.each(hlwords, function() { + rv = rv.highlightText(this, 'highlighted'); + }); + return rv; } -} +}; $(document).ready(function() { Search.init(); diff --git a/_static/underscore.js b/_static/underscore.js index 5d89914..5b55f32 100644 --- a/_static/underscore.js +++ b/_static/underscore.js @@ -1,23 +1,31 @@ -// Underscore.js 0.5.5 -// (c) 2009 Jeremy Ashkenas, DocumentCloud Inc. -// Underscore is freely distributable under the terms of the MIT license. -// Portions of Underscore are inspired by or borrowed from Prototype.js, +// Underscore.js 1.3.1 +// (c) 2009-2012 Jeremy Ashkenas, DocumentCloud Inc. +// Underscore is freely distributable under the MIT license. +// Portions of Underscore are inspired or borrowed from Prototype, // Oliver Steele's Functional, and John Resig's Micro-Templating. // For all details and documentation: -// http://documentcloud.github.com/underscore/ -(function(){var j=this,n=j._,i=function(a){this._wrapped=a},m=typeof StopIteration!=="undefined"?StopIteration:"__break__",b=j._=function(a){return new i(a)};if(typeof exports!=="undefined")exports._=b;var k=Array.prototype.slice,o=Array.prototype.unshift,p=Object.prototype.toString,q=Object.prototype.hasOwnProperty,r=Object.prototype.propertyIsEnumerable;b.VERSION="0.5.5";b.each=function(a,c,d){try{if(a.forEach)a.forEach(c,d);else if(b.isArray(a)||b.isArguments(a))for(var e=0,f=a.length;e<f;e++)c.call(d, -a[e],e,a);else{var g=b.keys(a);f=g.length;for(e=0;e<f;e++)c.call(d,a[g[e]],g[e],a)}}catch(h){if(h!=m)throw h;}return a};b.map=function(a,c,d){if(a&&b.isFunction(a.map))return a.map(c,d);var e=[];b.each(a,function(f,g,h){e.push(c.call(d,f,g,h))});return e};b.reduce=function(a,c,d,e){if(a&&b.isFunction(a.reduce))return a.reduce(b.bind(d,e),c);b.each(a,function(f,g,h){c=d.call(e,c,f,g,h)});return c};b.reduceRight=function(a,c,d,e){if(a&&b.isFunction(a.reduceRight))return a.reduceRight(b.bind(d,e),c); -var f=b.clone(b.toArray(a)).reverse();b.each(f,function(g,h){c=d.call(e,c,g,h,a)});return c};b.detect=function(a,c,d){var e;b.each(a,function(f,g,h){if(c.call(d,f,g,h)){e=f;b.breakLoop()}});return e};b.select=function(a,c,d){if(a&&b.isFunction(a.filter))return a.filter(c,d);var e=[];b.each(a,function(f,g,h){c.call(d,f,g,h)&&e.push(f)});return e};b.reject=function(a,c,d){var e=[];b.each(a,function(f,g,h){!c.call(d,f,g,h)&&e.push(f)});return e};b.all=function(a,c,d){c=c||b.identity;if(a&&b.isFunction(a.every))return a.every(c, -d);var e=true;b.each(a,function(f,g,h){(e=e&&c.call(d,f,g,h))||b.breakLoop()});return e};b.any=function(a,c,d){c=c||b.identity;if(a&&b.isFunction(a.some))return a.some(c,d);var e=false;b.each(a,function(f,g,h){if(e=c.call(d,f,g,h))b.breakLoop()});return e};b.include=function(a,c){if(b.isArray(a))return b.indexOf(a,c)!=-1;var d=false;b.each(a,function(e){if(d=e===c)b.breakLoop()});return d};b.invoke=function(a,c){var d=b.rest(arguments,2);return b.map(a,function(e){return(c?e[c]:e).apply(e,d)})};b.pluck= -function(a,c){return b.map(a,function(d){return d[c]})};b.max=function(a,c,d){if(!c&&b.isArray(a))return Math.max.apply(Math,a);var e={computed:-Infinity};b.each(a,function(f,g,h){g=c?c.call(d,f,g,h):f;g>=e.computed&&(e={value:f,computed:g})});return e.value};b.min=function(a,c,d){if(!c&&b.isArray(a))return Math.min.apply(Math,a);var e={computed:Infinity};b.each(a,function(f,g,h){g=c?c.call(d,f,g,h):f;g<e.computed&&(e={value:f,computed:g})});return e.value};b.sortBy=function(a,c,d){return b.pluck(b.map(a, -function(e,f,g){return{value:e,criteria:c.call(d,e,f,g)}}).sort(function(e,f){e=e.criteria;f=f.criteria;return e<f?-1:e>f?1:0}),"value")};b.sortedIndex=function(a,c,d){d=d||b.identity;for(var e=0,f=a.length;e<f;){var g=e+f>>1;d(a[g])<d(c)?(e=g+1):(f=g)}return e};b.toArray=function(a){if(!a)return[];if(a.toArray)return a.toArray();if(b.isArray(a))return a;if(b.isArguments(a))return k.call(a);return b.values(a)};b.size=function(a){return b.toArray(a).length};b.first=function(a,c,d){return c&&!d?k.call(a, -0,c):a[0]};b.rest=function(a,c,d){return k.call(a,b.isUndefined(c)||d?1:c)};b.last=function(a){return a[a.length-1]};b.compact=function(a){return b.select(a,function(c){return!!c})};b.flatten=function(a){return b.reduce(a,[],function(c,d){if(b.isArray(d))return c.concat(b.flatten(d));c.push(d);return c})};b.without=function(a){var c=b.rest(arguments);return b.select(a,function(d){return!b.include(c,d)})};b.uniq=function(a,c){return b.reduce(a,[],function(d,e,f){if(0==f||(c===true?b.last(d)!=e:!b.include(d, -e)))d.push(e);return d})};b.intersect=function(a){var c=b.rest(arguments);return b.select(b.uniq(a),function(d){return b.all(c,function(e){return b.indexOf(e,d)>=0})})};b.zip=function(){for(var a=b.toArray(arguments),c=b.max(b.pluck(a,"length")),d=new Array(c),e=0;e<c;e++)d[e]=b.pluck(a,String(e));return d};b.indexOf=function(a,c){if(a.indexOf)return a.indexOf(c);for(var d=0,e=a.length;d<e;d++)if(a[d]===c)return d;return-1};b.lastIndexOf=function(a,c){if(a.lastIndexOf)return a.lastIndexOf(c);for(var d= -a.length;d--;)if(a[d]===c)return d;return-1};b.range=function(a,c,d){var e=b.toArray(arguments),f=e.length<=1;a=f?0:e[0];c=f?e[0]:e[1];d=e[2]||1;e=Math.ceil((c-a)/d);if(e<=0)return[];e=new Array(e);f=a;for(var g=0;1;f+=d){if((d>0?f-c:c-f)>=0)return e;e[g++]=f}};b.bind=function(a,c){var d=b.rest(arguments,2);return function(){return a.apply(c||j,d.concat(b.toArray(arguments)))}};b.bindAll=function(a){var c=b.rest(arguments);if(c.length==0)c=b.functions(a);b.each(c,function(d){a[d]=b.bind(a[d],a)}); -return a};b.delay=function(a,c){var d=b.rest(arguments,2);return setTimeout(function(){return a.apply(a,d)},c)};b.defer=function(a){return b.delay.apply(b,[a,1].concat(b.rest(arguments)))};b.wrap=function(a,c){return function(){var d=[a].concat(b.toArray(arguments));return c.apply(c,d)}};b.compose=function(){var a=b.toArray(arguments);return function(){for(var c=b.toArray(arguments),d=a.length-1;d>=0;d--)c=[a[d].apply(this,c)];return c[0]}};b.keys=function(a){if(b.isArray(a))return b.range(0,a.length); -var c=[];for(var d in a)q.call(a,d)&&c.push(d);return c};b.values=function(a){return b.map(a,b.identity)};b.functions=function(a){return b.select(b.keys(a),function(c){return b.isFunction(a[c])}).sort()};b.extend=function(a,c){for(var d in c)a[d]=c[d];return a};b.clone=function(a){if(b.isArray(a))return a.slice(0);return b.extend({},a)};b.tap=function(a,c){c(a);return a};b.isEqual=function(a,c){if(a===c)return true;var d=typeof a;if(d!=typeof c)return false;if(a==c)return true;if(!a&&c||a&&!c)return false; -if(a.isEqual)return a.isEqual(c);if(b.isDate(a)&&b.isDate(c))return a.getTime()===c.getTime();if(b.isNaN(a)&&b.isNaN(c))return true;if(b.isRegExp(a)&&b.isRegExp(c))return a.source===c.source&&a.global===c.global&&a.ignoreCase===c.ignoreCase&&a.multiline===c.multiline;if(d!=="object")return false;if(a.length&&a.length!==c.length)return false;d=b.keys(a);var e=b.keys(c);if(d.length!=e.length)return false;for(var f in a)if(!b.isEqual(a[f],c[f]))return false;return true};b.isEmpty=function(a){return b.keys(a).length== -0};b.isElement=function(a){return!!(a&&a.nodeType==1)};b.isArray=function(a){return!!(a&&a.concat&&a.unshift)};b.isArguments=function(a){return a&&b.isNumber(a.length)&&!b.isArray(a)&&!r.call(a,"length")};b.isFunction=function(a){return!!(a&&a.constructor&&a.call&&a.apply)};b.isString=function(a){return!!(a===""||a&&a.charCodeAt&&a.substr)};b.isNumber=function(a){return p.call(a)==="[object Number]"};b.isDate=function(a){return!!(a&&a.getTimezoneOffset&&a.setUTCFullYear)};b.isRegExp=function(a){return!!(a&& -a.test&&a.exec&&(a.ignoreCase||a.ignoreCase===false))};b.isNaN=function(a){return b.isNumber(a)&&isNaN(a)};b.isNull=function(a){return a===null};b.isUndefined=function(a){return typeof a=="undefined"};b.noConflict=function(){j._=n;return this};b.identity=function(a){return a};b.breakLoop=function(){throw m;};var s=0;b.uniqueId=function(a){var c=s++;return a?a+c:c};b.template=function(a,c){a=new Function("obj","var p=[],print=function(){p.push.apply(p,arguments);};with(obj){p.push('"+a.replace(/[\r\t\n]/g, -" ").replace(/'(?=[^%]*%>)/g,"\t").split("'").join("\\'").split("\t").join("'").replace(/<%=(.+?)%>/g,"',$1,'").split("<%").join("');").split("%>").join("p.push('")+"');}return p.join('');");return c?a(c):a};b.forEach=b.each;b.foldl=b.inject=b.reduce;b.foldr=b.reduceRight;b.filter=b.select;b.every=b.all;b.some=b.any;b.head=b.first;b.tail=b.rest;b.methods=b.functions;var l=function(a,c){return c?b(a).chain():a};b.each(b.functions(b),function(a){var c=b[a];i.prototype[a]=function(){var d=b.toArray(arguments); -o.call(d,this._wrapped);return l(c.apply(b,d),this._chain)}});b.each(["pop","push","reverse","shift","sort","splice","unshift"],function(a){var c=Array.prototype[a];i.prototype[a]=function(){c.apply(this._wrapped,arguments);return l(this._wrapped,this._chain)}});b.each(["concat","join","slice"],function(a){var c=Array.prototype[a];i.prototype[a]=function(){return l(c.apply(this._wrapped,arguments),this._chain)}});i.prototype.chain=function(){this._chain=true;return this};i.prototype.value=function(){return this._wrapped}})(); +// http://documentcloud.github.com/underscore +(function(){function q(a,c,d){if(a===c)return a!==0||1/a==1/c;if(a==null||c==null)return a===c;if(a._chain)a=a._wrapped;if(c._chain)c=c._wrapped;if(a.isEqual&&b.isFunction(a.isEqual))return a.isEqual(c);if(c.isEqual&&b.isFunction(c.isEqual))return c.isEqual(a);var e=l.call(a);if(e!=l.call(c))return false;switch(e){case "[object String]":return a==String(c);case "[object Number]":return a!=+a?c!=+c:a==0?1/a==1/c:a==+c;case "[object Date]":case "[object Boolean]":return+a==+c;case "[object RegExp]":return a.source== +c.source&&a.global==c.global&&a.multiline==c.multiline&&a.ignoreCase==c.ignoreCase}if(typeof a!="object"||typeof c!="object")return false;for(var f=d.length;f--;)if(d[f]==a)return true;d.push(a);var f=0,g=true;if(e=="[object Array]"){if(f=a.length,g=f==c.length)for(;f--;)if(!(g=f in a==f in c&&q(a[f],c[f],d)))break}else{if("constructor"in a!="constructor"in c||a.constructor!=c.constructor)return false;for(var h in a)if(b.has(a,h)&&(f++,!(g=b.has(c,h)&&q(a[h],c[h],d))))break;if(g){for(h in c)if(b.has(c, +h)&&!f--)break;g=!f}}d.pop();return g}var r=this,G=r._,n={},k=Array.prototype,o=Object.prototype,i=k.slice,H=k.unshift,l=o.toString,I=o.hasOwnProperty,w=k.forEach,x=k.map,y=k.reduce,z=k.reduceRight,A=k.filter,B=k.every,C=k.some,p=k.indexOf,D=k.lastIndexOf,o=Array.isArray,J=Object.keys,s=Function.prototype.bind,b=function(a){return new m(a)};if(typeof exports!=="undefined"){if(typeof module!=="undefined"&&module.exports)exports=module.exports=b;exports._=b}else r._=b;b.VERSION="1.3.1";var j=b.each= +b.forEach=function(a,c,d){if(a!=null)if(w&&a.forEach===w)a.forEach(c,d);else if(a.length===+a.length)for(var e=0,f=a.length;e<f;e++){if(e in a&&c.call(d,a[e],e,a)===n)break}else for(e in a)if(b.has(a,e)&&c.call(d,a[e],e,a)===n)break};b.map=b.collect=function(a,c,b){var e=[];if(a==null)return e;if(x&&a.map===x)return a.map(c,b);j(a,function(a,g,h){e[e.length]=c.call(b,a,g,h)});if(a.length===+a.length)e.length=a.length;return e};b.reduce=b.foldl=b.inject=function(a,c,d,e){var f=arguments.length>2;a== +null&&(a=[]);if(y&&a.reduce===y)return e&&(c=b.bind(c,e)),f?a.reduce(c,d):a.reduce(c);j(a,function(a,b,i){f?d=c.call(e,d,a,b,i):(d=a,f=true)});if(!f)throw new TypeError("Reduce of empty array with no initial value");return d};b.reduceRight=b.foldr=function(a,c,d,e){var f=arguments.length>2;a==null&&(a=[]);if(z&&a.reduceRight===z)return e&&(c=b.bind(c,e)),f?a.reduceRight(c,d):a.reduceRight(c);var g=b.toArray(a).reverse();e&&!f&&(c=b.bind(c,e));return f?b.reduce(g,c,d,e):b.reduce(g,c)};b.find=b.detect= +function(a,c,b){var e;E(a,function(a,g,h){if(c.call(b,a,g,h))return e=a,true});return e};b.filter=b.select=function(a,c,b){var e=[];if(a==null)return e;if(A&&a.filter===A)return a.filter(c,b);j(a,function(a,g,h){c.call(b,a,g,h)&&(e[e.length]=a)});return e};b.reject=function(a,c,b){var e=[];if(a==null)return e;j(a,function(a,g,h){c.call(b,a,g,h)||(e[e.length]=a)});return e};b.every=b.all=function(a,c,b){var e=true;if(a==null)return e;if(B&&a.every===B)return a.every(c,b);j(a,function(a,g,h){if(!(e= +e&&c.call(b,a,g,h)))return n});return e};var E=b.some=b.any=function(a,c,d){c||(c=b.identity);var e=false;if(a==null)return e;if(C&&a.some===C)return a.some(c,d);j(a,function(a,b,h){if(e||(e=c.call(d,a,b,h)))return n});return!!e};b.include=b.contains=function(a,c){var b=false;if(a==null)return b;return p&&a.indexOf===p?a.indexOf(c)!=-1:b=E(a,function(a){return a===c})};b.invoke=function(a,c){var d=i.call(arguments,2);return b.map(a,function(a){return(b.isFunction(c)?c||a:a[c]).apply(a,d)})};b.pluck= +function(a,c){return b.map(a,function(a){return a[c]})};b.max=function(a,c,d){if(!c&&b.isArray(a))return Math.max.apply(Math,a);if(!c&&b.isEmpty(a))return-Infinity;var e={computed:-Infinity};j(a,function(a,b,h){b=c?c.call(d,a,b,h):a;b>=e.computed&&(e={value:a,computed:b})});return e.value};b.min=function(a,c,d){if(!c&&b.isArray(a))return Math.min.apply(Math,a);if(!c&&b.isEmpty(a))return Infinity;var e={computed:Infinity};j(a,function(a,b,h){b=c?c.call(d,a,b,h):a;b<e.computed&&(e={value:a,computed:b})}); +return e.value};b.shuffle=function(a){var b=[],d;j(a,function(a,f){f==0?b[0]=a:(d=Math.floor(Math.random()*(f+1)),b[f]=b[d],b[d]=a)});return b};b.sortBy=function(a,c,d){return b.pluck(b.map(a,function(a,b,g){return{value:a,criteria:c.call(d,a,b,g)}}).sort(function(a,b){var c=a.criteria,d=b.criteria;return c<d?-1:c>d?1:0}),"value")};b.groupBy=function(a,c){var d={},e=b.isFunction(c)?c:function(a){return a[c]};j(a,function(a,b){var c=e(a,b);(d[c]||(d[c]=[])).push(a)});return d};b.sortedIndex=function(a, +c,d){d||(d=b.identity);for(var e=0,f=a.length;e<f;){var g=e+f>>1;d(a[g])<d(c)?e=g+1:f=g}return e};b.toArray=function(a){return!a?[]:a.toArray?a.toArray():b.isArray(a)?i.call(a):b.isArguments(a)?i.call(a):b.values(a)};b.size=function(a){return b.toArray(a).length};b.first=b.head=function(a,b,d){return b!=null&&!d?i.call(a,0,b):a[0]};b.initial=function(a,b,d){return i.call(a,0,a.length-(b==null||d?1:b))};b.last=function(a,b,d){return b!=null&&!d?i.call(a,Math.max(a.length-b,0)):a[a.length-1]};b.rest= +b.tail=function(a,b,d){return i.call(a,b==null||d?1:b)};b.compact=function(a){return b.filter(a,function(a){return!!a})};b.flatten=function(a,c){return b.reduce(a,function(a,e){if(b.isArray(e))return a.concat(c?e:b.flatten(e));a[a.length]=e;return a},[])};b.without=function(a){return b.difference(a,i.call(arguments,1))};b.uniq=b.unique=function(a,c,d){var d=d?b.map(a,d):a,e=[];b.reduce(d,function(d,g,h){if(0==h||(c===true?b.last(d)!=g:!b.include(d,g)))d[d.length]=g,e[e.length]=a[h];return d},[]); +return e};b.union=function(){return b.uniq(b.flatten(arguments,true))};b.intersection=b.intersect=function(a){var c=i.call(arguments,1);return b.filter(b.uniq(a),function(a){return b.every(c,function(c){return b.indexOf(c,a)>=0})})};b.difference=function(a){var c=b.flatten(i.call(arguments,1));return b.filter(a,function(a){return!b.include(c,a)})};b.zip=function(){for(var a=i.call(arguments),c=b.max(b.pluck(a,"length")),d=Array(c),e=0;e<c;e++)d[e]=b.pluck(a,""+e);return d};b.indexOf=function(a,c, +d){if(a==null)return-1;var e;if(d)return d=b.sortedIndex(a,c),a[d]===c?d:-1;if(p&&a.indexOf===p)return a.indexOf(c);for(d=0,e=a.length;d<e;d++)if(d in a&&a[d]===c)return d;return-1};b.lastIndexOf=function(a,b){if(a==null)return-1;if(D&&a.lastIndexOf===D)return a.lastIndexOf(b);for(var d=a.length;d--;)if(d in a&&a[d]===b)return d;return-1};b.range=function(a,b,d){arguments.length<=1&&(b=a||0,a=0);for(var d=arguments[2]||1,e=Math.max(Math.ceil((b-a)/d),0),f=0,g=Array(e);f<e;)g[f++]=a,a+=d;return g}; +var F=function(){};b.bind=function(a,c){var d,e;if(a.bind===s&&s)return s.apply(a,i.call(arguments,1));if(!b.isFunction(a))throw new TypeError;e=i.call(arguments,2);return d=function(){if(!(this instanceof d))return a.apply(c,e.concat(i.call(arguments)));F.prototype=a.prototype;var b=new F,g=a.apply(b,e.concat(i.call(arguments)));return Object(g)===g?g:b}};b.bindAll=function(a){var c=i.call(arguments,1);c.length==0&&(c=b.functions(a));j(c,function(c){a[c]=b.bind(a[c],a)});return a};b.memoize=function(a, +c){var d={};c||(c=b.identity);return function(){var e=c.apply(this,arguments);return b.has(d,e)?d[e]:d[e]=a.apply(this,arguments)}};b.delay=function(a,b){var d=i.call(arguments,2);return setTimeout(function(){return a.apply(a,d)},b)};b.defer=function(a){return b.delay.apply(b,[a,1].concat(i.call(arguments,1)))};b.throttle=function(a,c){var d,e,f,g,h,i=b.debounce(function(){h=g=false},c);return function(){d=this;e=arguments;var b;f||(f=setTimeout(function(){f=null;h&&a.apply(d,e);i()},c));g?h=true: +a.apply(d,e);i();g=true}};b.debounce=function(a,b){var d;return function(){var e=this,f=arguments;clearTimeout(d);d=setTimeout(function(){d=null;a.apply(e,f)},b)}};b.once=function(a){var b=false,d;return function(){if(b)return d;b=true;return d=a.apply(this,arguments)}};b.wrap=function(a,b){return function(){var d=[a].concat(i.call(arguments,0));return b.apply(this,d)}};b.compose=function(){var a=arguments;return function(){for(var b=arguments,d=a.length-1;d>=0;d--)b=[a[d].apply(this,b)];return b[0]}}; +b.after=function(a,b){return a<=0?b():function(){if(--a<1)return b.apply(this,arguments)}};b.keys=J||function(a){if(a!==Object(a))throw new TypeError("Invalid object");var c=[],d;for(d in a)b.has(a,d)&&(c[c.length]=d);return c};b.values=function(a){return b.map(a,b.identity)};b.functions=b.methods=function(a){var c=[],d;for(d in a)b.isFunction(a[d])&&c.push(d);return c.sort()};b.extend=function(a){j(i.call(arguments,1),function(b){for(var d in b)a[d]=b[d]});return a};b.defaults=function(a){j(i.call(arguments, +1),function(b){for(var d in b)a[d]==null&&(a[d]=b[d])});return a};b.clone=function(a){return!b.isObject(a)?a:b.isArray(a)?a.slice():b.extend({},a)};b.tap=function(a,b){b(a);return a};b.isEqual=function(a,b){return q(a,b,[])};b.isEmpty=function(a){if(b.isArray(a)||b.isString(a))return a.length===0;for(var c in a)if(b.has(a,c))return false;return true};b.isElement=function(a){return!!(a&&a.nodeType==1)};b.isArray=o||function(a){return l.call(a)=="[object Array]"};b.isObject=function(a){return a===Object(a)}; +b.isArguments=function(a){return l.call(a)=="[object Arguments]"};if(!b.isArguments(arguments))b.isArguments=function(a){return!(!a||!b.has(a,"callee"))};b.isFunction=function(a){return l.call(a)=="[object Function]"};b.isString=function(a){return l.call(a)=="[object String]"};b.isNumber=function(a){return l.call(a)=="[object Number]"};b.isNaN=function(a){return a!==a};b.isBoolean=function(a){return a===true||a===false||l.call(a)=="[object Boolean]"};b.isDate=function(a){return l.call(a)=="[object Date]"}; +b.isRegExp=function(a){return l.call(a)=="[object RegExp]"};b.isNull=function(a){return a===null};b.isUndefined=function(a){return a===void 0};b.has=function(a,b){return I.call(a,b)};b.noConflict=function(){r._=G;return this};b.identity=function(a){return a};b.times=function(a,b,d){for(var e=0;e<a;e++)b.call(d,e)};b.escape=function(a){return(""+a).replace(/&/g,"&").replace(/</g,"<").replace(/>/g,">").replace(/"/g,""").replace(/'/g,"'").replace(/\//g,"/")};b.mixin=function(a){j(b.functions(a), +function(c){K(c,b[c]=a[c])})};var L=0;b.uniqueId=function(a){var b=L++;return a?a+b:b};b.templateSettings={evaluate:/<%([\s\S]+?)%>/g,interpolate:/<%=([\s\S]+?)%>/g,escape:/<%-([\s\S]+?)%>/g};var t=/.^/,u=function(a){return a.replace(/\\\\/g,"\\").replace(/\\'/g,"'")};b.template=function(a,c){var d=b.templateSettings,d="var __p=[],print=function(){__p.push.apply(__p,arguments);};with(obj||{}){__p.push('"+a.replace(/\\/g,"\\\\").replace(/'/g,"\\'").replace(d.escape||t,function(a,b){return"',_.escape("+ +u(b)+"),'"}).replace(d.interpolate||t,function(a,b){return"',"+u(b)+",'"}).replace(d.evaluate||t,function(a,b){return"');"+u(b).replace(/[\r\n\t]/g," ")+";__p.push('"}).replace(/\r/g,"\\r").replace(/\n/g,"\\n").replace(/\t/g,"\\t")+"');}return __p.join('');",e=new Function("obj","_",d);return c?e(c,b):function(a){return e.call(this,a,b)}};b.chain=function(a){return b(a).chain()};var m=function(a){this._wrapped=a};b.prototype=m.prototype;var v=function(a,c){return c?b(a).chain():a},K=function(a,c){m.prototype[a]= +function(){var a=i.call(arguments);H.call(a,this._wrapped);return v(c.apply(b,a),this._chain)}};b.mixin(b);j("pop,push,reverse,shift,sort,splice,unshift".split(","),function(a){var b=k[a];m.prototype[a]=function(){var d=this._wrapped;b.apply(d,arguments);var e=d.length;(a=="shift"||a=="splice")&&e===0&&delete d[0];return v(d,this._chain)}});j(["concat","join","slice"],function(a){var b=k[a];m.prototype[a]=function(){return v(b.apply(this._wrapped,arguments),this._chain)}});m.prototype.chain=function(){this._chain= +true;return this};m.prototype.value=function(){return this._wrapped}}).call(this); diff --git a/_static/websupport.js b/_static/websupport.js index e9bd1b8..19fcda5 100644 --- a/_static/websupport.js +++ b/_static/websupport.js @@ -4,7 +4,7 @@ * * sphinx.websupport utilties for all documentation. * - * :copyright: Copyright 2007-2011 by the Sphinx team, see AUTHORS. + * :copyright: Copyright 2007-2013 by the Sphinx team, see AUTHORS. * :license: BSD, see LICENSE for details. * */ diff --git a/api/external/fields.html b/api/external/fields.html index f09e324..ee557e7 100644 --- a/api/external/fields.html +++ b/api/external/fields.html @@ -1,5 +1,4 @@ - <!doctype html> @@ -415,7 +414,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on May 29, 2013 at 05:21 PM. + Last updated on Jun 27, 2013 at 09:13 AM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/groups.html b/api/external/groups.html index 5604045..f624b3b 100644 --- a/api/external/groups.html +++ b/api/external/groups.html @@ -1,5 +1,4 @@ - <!doctype html> @@ -702,7 +701,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on May 29, 2013 at 05:21 PM. + Last updated on Jun 27, 2013 at 09:13 AM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/mailings.html b/api/external/mailings.html index 9db30b7..6da9a5c 100644 --- a/api/external/mailings.html +++ b/api/external/mailings.html @@ -1,5 +1,4 @@ - <!doctype html> @@ -810,7 +809,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on May 29, 2013 at 05:21 PM. + Last updated on Jun 27, 2013 at 09:13 AM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/members.html b/api/external/members.html index 0c2b818..9d2eeb7 100644 --- a/api/external/members.html +++ b/api/external/members.html @@ -1,5 +1,4 @@ - <!doctype html> @@ -1217,7 +1216,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on May 29, 2013 at 05:21 PM. + Last updated on Jun 27, 2013 at 09:13 AM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/response.html b/api/external/response.html index 12df741..2916587 100644 --- a/api/external/response.html +++ b/api/external/response.html @@ -1,5 +1,4 @@ - <!doctype html> @@ -1019,7 +1018,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on May 29, 2013 at 05:21 PM. + Last updated on Jun 27, 2013 at 09:13 AM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/searches.html b/api/external/searches.html index 2047c61..7ed1b84 100644 --- a/api/external/searches.html +++ b/api/external/searches.html @@ -1,5 +1,4 @@ - <!doctype html> @@ -199,7 +198,7 @@ <h1>Searches<a class="headerlink" href="#searches" title="Permalink to this head "name": "Test Search", "criteria": "[\"or\", [\"group\", \"eq\", \"Monthly Newsletter\"],[\"group\", \"eq\", \"Widget Buyers\"]]", "deleted_at": null, - "last_run_at": "@D:2013-05-29T17:21:07", + "last_run_at": "@D:2013-06-27T09:13:04", "active_count": 2, "account_id": 100 } @@ -511,7 +510,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on May 29, 2013 at 05:21 PM. + Last updated on Jun 27, 2013 at 09:13 AM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/triggers.html b/api/external/triggers.html index 04e9fbe..c771b6a 100644 --- a/api/external/triggers.html +++ b/api/external/triggers.html @@ -1,5 +1,4 @@ - <!doctype html> @@ -148,7 +147,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": 203, "push_offset_units": "0:-14:0:0", - "start_ts": "@D:2013-05-29T17:21:04", + "start_ts": "@D:2013-06-27T09:13:00", "trigger_id": 100, "signups": null, "push_offset": "@I:-1209600.0", @@ -189,7 +188,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": null, "push_offset_units": "0:3:0:0", - "start_ts": "@D:2013-05-29T17:21:04", + "start_ts": "@D:2013-06-27T09:13:00", "trigger_id": 101, "signups": [ 1, @@ -326,7 +325,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": 203, "push_offset_units": "0:-14:0:0", - "start_ts": "@D:2013-05-29T17:21:04", + "start_ts": "@D:2013-06-27T09:13:00", "trigger_id": 100, "signups": null, "push_offset": "@I:-1209600.0", @@ -499,7 +498,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on May 29, 2013 at 05:21 PM. + Last updated on Jun 27, 2013 at 09:13 AM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/webhooks.html b/api/external/webhooks.html index a8d3b06..9aa6cef 100644 --- a/api/external/webhooks.html +++ b/api/external/webhooks.html @@ -1,5 +1,4 @@ - <!doctype html> @@ -487,7 +486,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on May 29, 2013 at 05:21 PM. + Last updated on Jun 27, 2013 at 09:13 AM. </div> </body> </html> \ No newline at end of file diff --git a/genindex.html b/genindex.html index 7fb7e02..6178572 100644 --- a/genindex.html +++ b/genindex.html @@ -1,7 +1,5 @@ - - <!doctype html> @@ -17,7 +15,7 @@ <script type="text/javascript"> var DOCUMENTATION_OPTIONS = { - URL_ROOT: '', + URL_ROOT: './', VERSION: '0.1', COLLAPSE_INDEX: false, FILE_SUFFIX: '.html', @@ -146,7 +144,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on May 29, 2013 at 05:21 PM. + Last updated on Jun 27, 2013 at 09:13 AM. </div> </body> </html> \ No newline at end of file diff --git a/http-routingtable.html b/http-routingtable.html index e3b3cf2..1eecdca 100644 --- a/http-routingtable.html +++ b/http-routingtable.html @@ -1,5 +1,4 @@ - <!doctype html> @@ -15,7 +14,7 @@ <script type="text/javascript"> var DOCUMENTATION_OPTIONS = { - URL_ROOT: '', + URL_ROOT: './', VERSION: '0.1', COLLAPSE_INDEX: false, FILE_SUFFIX: '.html', @@ -607,7 +606,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on May 29, 2013 at 05:21 PM. + Last updated on Jun 27, 2013 at 09:13 AM. </div> </body> </html> \ No newline at end of file diff --git a/index.html b/index.html index 58fa964..099638d 100644 --- a/index.html +++ b/index.html @@ -1,5 +1,4 @@ - <!doctype html> @@ -15,7 +14,7 @@ <script type="text/javascript"> var DOCUMENTATION_OPTIONS = { - URL_ROOT: '', + URL_ROOT: './', VERSION: '0.1', COLLAPSE_INDEX: false, FILE_SUFFIX: '.html', @@ -150,15 +149,13 @@ <h2>API Wrappers<a class="headerlink" href="#api-wrappers" title="Permalink to t <dd><a class="reference external" href="https://github.com/myemma/EmmaRuby">EmmaRuby</a>: Commissioned by Emma and built by Nashville developer <a class="reference external" href="https://github.com/dennismonsewicz">Dennis Monsewicz</a>.</dd> <dt><strong>Objective-C</strong></dt> <dd><a class="reference external" href="https://github.com/myemma/EmmaSDK">EmmaSDK</a>: Commissioned by Emma and built by Portland developer <a class="reference external" href="https://github.com/bvanderveen">Benjamin Van Der Veen</a>.</dd> -<dt><strong>.NET Framework</strong></dt> -<dd>Coming Soon!</dd> </dl> </div> <div class="section" id="quickstart"> <h2>Quickstart<a class="headerlink" href="#quickstart" title="Permalink to this headline">¶</a></h2> <p>Let’s start by building some PHP code that will add a member to our audience.</p> <p>First, you’ll want to figure out how to authenticate. All calls require HTTP -Basic Auth autentication. Inside your Emma account, in the “Account Settings” +Basic Auth authentication. Inside your Emma account, in the “Account Settings” section, you’ll find your API keys. There’s a public key and a private key and an account ID. It should look like this.</p> <img alt="_images/api_keys.jpg" src="_images/api_keys.jpg" /> @@ -344,7 +341,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on May 29, 2013 at 05:21 PM. + Last updated on Jun 27, 2013 at 09:13 AM. </div> </body> </html> \ No newline at end of file diff --git a/member_search.html b/member_search.html index 7db1923..2c6f455 100644 --- a/member_search.html +++ b/member_search.html @@ -1,5 +1,4 @@ - <!doctype html> @@ -15,7 +14,7 @@ <script type="text/javascript"> var DOCUMENTATION_OPTIONS = { - URL_ROOT: '', + URL_ROOT: './', VERSION: '0.1', COLLAPSE_INDEX: false, FILE_SUFFIX: '.html', @@ -256,7 +255,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on May 29, 2013 at 05:21 PM. + Last updated on Jun 27, 2013 at 09:13 AM. </div> </body> </html> \ No newline at end of file diff --git a/pagination.html b/pagination.html index b1d4c48..c06a0a6 100644 --- a/pagination.html +++ b/pagination.html @@ -1,5 +1,4 @@ - <!doctype html> @@ -15,7 +14,7 @@ <script type="text/javascript"> var DOCUMENTATION_OPTIONS = { - URL_ROOT: '', + URL_ROOT: './', VERSION: '0.1', COLLAPSE_INDEX: false, FILE_SUFFIX: '.html', @@ -168,7 +167,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on May 29, 2013 at 05:21 PM. + Last updated on Jun 27, 2013 at 09:13 AM. </div> </body> </html> \ No newline at end of file diff --git a/php_get_member_example.html b/php_get_member_example.html index acaf9f1..7795ced 100644 --- a/php_get_member_example.html +++ b/php_get_member_example.html @@ -1,5 +1,4 @@ - <!doctype html> @@ -15,7 +14,7 @@ <script type="text/javascript"> var DOCUMENTATION_OPTIONS = { - URL_ROOT: '', + URL_ROOT: './', VERSION: '0.1', COLLAPSE_INDEX: false, FILE_SUFFIX: '.html', @@ -183,7 +182,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on May 29, 2013 at 05:21 PM. + Last updated on Jun 27, 2013 at 09:13 AM. </div> </body> </html> \ No newline at end of file diff --git a/php_signup_example.html b/php_signup_example.html index d02d75c..c1960fb 100644 --- a/php_signup_example.html +++ b/php_signup_example.html @@ -1,5 +1,4 @@ - <!doctype html> @@ -15,7 +14,7 @@ <script type="text/javascript"> var DOCUMENTATION_OPTIONS = { - URL_ROOT: '', + URL_ROOT: './', VERSION: '0.1', COLLAPSE_INDEX: false, FILE_SUFFIX: '.html', @@ -205,7 +204,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on May 29, 2013 at 05:21 PM. + Last updated on Jun 27, 2013 at 09:13 AM. </div> </body> </html> \ No newline at end of file diff --git a/placeholders.html b/placeholders.html index 94f17c0..bd0c8c4 100644 --- a/placeholders.html +++ b/placeholders.html @@ -1,5 +1,4 @@ - <!doctype html> @@ -15,7 +14,7 @@ <script type="text/javascript"> var DOCUMENTATION_OPTIONS = { - URL_ROOT: '', + URL_ROOT: './', VERSION: '0.1', COLLAPSE_INDEX: false, FILE_SUFFIX: '.html', @@ -183,7 +182,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on May 29, 2013 at 05:21 PM. + Last updated on Jun 27, 2013 at 09:13 AM. </div> </body> </html> \ No newline at end of file diff --git a/search.html b/search.html index f93ff49..5efd59f 100644 --- a/search.html +++ b/search.html @@ -1,5 +1,4 @@ - <!doctype html> @@ -15,7 +14,7 @@ <script type="text/javascript"> var DOCUMENTATION_OPTIONS = { - URL_ROOT: '', + URL_ROOT: './', VERSION: '0.1', COLLAPSE_INDEX: false, FILE_SUFFIX: '.html', @@ -36,6 +35,8 @@ jQuery(function() { Search.loadIndex("searchindex.js"); }); </script> + <script type="text/javascript" id="searchindexloader"></script> + <link rel="icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> <link rel="shortcut icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> <link rel="apple-touch-icon-precomposed" href="http://myemma.com/static/global/favicons/apple-iphone.png" /> @@ -153,7 +154,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on May 29, 2013 at 05:21 PM. + Last updated on Jun 27, 2013 at 09:13 AM. </div> </body> </html> \ No newline at end of file diff --git a/searchindex.js b/searchindex.js index 33bfb55..e807e1a 100644 --- a/searchindex.js +++ b/searchindex.js @@ -1 +1 @@ -Search.setIndex({objects:{"":{"/#account_id/members/#member_id/groups/remove":[8,1,1,"put--#account_id-members-#member_id-groups-remove"],"/#account_id/mailings/#mailing_id/winner/#winner_id":[9,2,1,"post--#account_id-mailings-#mailing_id-winner-#winner_id"],"/#account_id/response/#mailing_id/in_progress":[5,0,1,"get--#account_id-response-#mailing_id-in_progress"],"/#account_id/members/groups/remove":[8,1,1,"put--#account_id-members-groups-remove"],"/#account_id/mailings/#mailing_id/searches":[9,0,1,"get--#account_id-mailings-#mailing_id-searches"],"/#account_id/fields":[10,2,1,"post--#account_id-fields"],"/#account_id/members/#group_id/copy":[8,1,1,"put--#account_id-members-#group_id-copy"],"/#account_id/members/status":[8,1,1,"put--#account_id-members-status"],"/#account_id/response/#mailing_id/shares/overview":[5,0,1,"get--#account_id-response-#mailing_id-shares-overview"],"/#account_id/webhooks/events":[4,0,1,"get--#account_id-webhooks-events"],"/#account_id/members/#member_id/optout":[8,0,1,"get--#account_id-members-#member_id-optout"],"/#account_id/webhooks":[4,3,1,"delete--#account_id-webhooks"],"/#account_id/fields/#field_id":[10,3,1,"delete--#account_id-fields-#field_id"],"/#account_id/response/#mailing_id":[5,0,1,"get--#account_id-response-#mailing_id"],"/#account_id/groups/#member_group_id/members/remove":[13,3,1,"delete--#account_id-groups-#member_group_id-members-remove"],"/#account_id/searches":[7,2,1,"post--#account_id-searches"],"/#account_id/members/imports":[8,0,1,"get--#account_id-members-imports"],"/#account_id/forwards/#mailing_id/#member_id":[9,2,1,"post--#account_id-forwards-#mailing_id-#member_id"],"/#account_id/response/#mailing_id/customer_share_clicks":[5,0,1,"get--#account_id-response-#mailing_id-customer_share_clicks"],"/#account_id/mailings/#mailing_id/messages/#member_id":[9,0,1,"get--#account_id-mailings-#mailing_id-messages-#member_id"],"/#account_id/members/#member_id/mailings":[8,0,1,"get--#account_id-members-#member_id-mailings"],"/#account_id/groups/#from_group_id/#to_group_id/members/copy":[13,1,1,"put--#account_id-groups-#from_group_id-#to_group_id-members-copy"],"/#account_id/triggers":[14,2,1,"post--#account_id-triggers"],"/#account_id/triggers/#trigger_id":[14,3,1,"delete--#account_id-triggers-#trigger_id"],"/#account_id/members/delete":[8,1,1,"put--#account_id-members-delete"],"/#account_id/mailings/#mailing_id/groups":[9,0,1,"get--#account_id-mailings-#mailing_id-groups"],"/#account_id/response/#mailing_id/forwards":[5,0,1,"get--#account_id-response-#mailing_id-forwards"],"/#account_id/members/#member_id":[8,3,1,"delete--#account_id-members-#member_id"],"/#account_id/triggers/#trigger_id/mailings":[14,0,1,"get--#account_id-triggers-#trigger_id-mailings"],"/#account_id/searches/#search_id/members":[7,0,1,"get--#account_id-searches-#search_id-members"],"/#account_id/members/status/:status_from/to/:status_to":[8,1,1,"put--#account_id-members-status--status_from-to--status_to"],"/#account_id/response/#mailing_id/sends":[5,0,1,"get--#account_id-response-#mailing_id-sends"],"/#account_id/members":[8,3,1,"delete--#account_id-members"],"/#account_id/members/email/:email":[8,0,1,"get--#account_id-members-email--email"],"/#account_id/response/#mailing_id/links":[5,0,1,"get--#account_id-response-#mailing_id-links"],"/#account_id/searches/#search_id":[7,3,1,"delete--#account_id-searches-#search_id"],"/#account_id/members/imports/#import_id/members":[8,0,1,"get--#account_id-members-imports-#import_id-members"],"/#account_id/fields/#field_id/clear":[10,2,1,"post--#account_id-fields-#field_id-clear"],"/#account_id/groups/#member_group_id/members":[13,3,1,"delete--#account_id-groups-#member_group_id-members"],"/#account_id/members/imports/#import_id":[8,0,1,"get--#account_id-members-imports-#import_id"],"/#account_id/response":[5,0,1,"get--#account_id-response"],"/#account_id/response/#mailing_id/opens":[5,0,1,"get--#account_id-response-#mailing_id-opens"],"/#account_id/members/imports/delete":[8,3,1,"delete--#account_id-members-imports-delete"],"/#account_id/mailings":[9,0,1,"get--#account_id-mailings"],"/#account_id/mailings/cancel/#mailing_id":[9,3,1,"delete--#account_id-mailings-cancel-#mailing_id"],"/#account_id/mailings/validate":[9,2,1,"post--#account_id-mailings-validate"],"/#account_id/response/#mailing_id/deliveries":[5,0,1,"get--#account_id-response-#mailing_id-deliveries"],"/#account_id/mailings/#mailing_id/members":[9,0,1,"get--#account_id-mailings-#mailing_id-members"],"/#account_id/response/#share_id/customer_share":[5,0,1,"get--#account_id-response-#share_id-customer_share"],"/#account_id/webhooks/#webhook_id":[4,3,1,"delete--#account_id-webhooks-#webhook_id"],"/#account_id/members/add":[8,2,1,"post--#account_id-members-add"],"/#account_id/members/email/optout/:email":[8,1,1,"put--#account_id-members-email-optout--email"],"/#account_id/response/#mailing_id/optouts":[5,0,1,"get--#account_id-response-#mailing_id-optouts"],"/#account_id/response/#mailing_id/shares":[5,0,1,"get--#account_id-response-#mailing_id-shares"],"/#account_id/groups/#member_group_id":[13,3,1,"delete--#account_id-groups-#member_group_id"],"/#account_id/mailings/#mailing_id":[9,3,1,"delete--#account_id-mailings-#mailing_id"],"/#account_id/members/#member_id/groups":[8,3,1,"delete--#account_id-members-#member_id-groups"],"/#account_id/groups":[13,2,1,"post--#account_id-groups"],"/#account_id/response/#mailing_id/clicks":[5,0,1,"get--#account_id-response-#mailing_id-clicks"],"/#account_id/mailings/#mailing_id/headsup":[9,0,1,"get--#account_id-mailings-#mailing_id-headsup"],"/#account_id/response/#mailing_id/signups":[5,0,1,"get--#account_id-response-#mailing_id-signups"],"/#account_id/response/#mailing_id/customer_shares":[5,0,1,"get--#account_id-response-#mailing_id-customer_shares"]}},terms:{all:[0,1,4,5,8,9,10,11,12,13,14],code:[0,1,6,3],change_typ:8,queri:[0,2,4],month:[0,5,9,14],four:[0,5],mile:0,least:0,follow:[0,1,4,5,7,9,11,13],link_target:[5,9],content:[1,11,6,9,3],privat:1,specif:[8,9,4],friendli:5,send:[1,9,4,3,5],program:1,customer_share_click:5,those:[1,12,5],group_upd:[12,4],sent:[5,8,12,9,14],curl_clos:[1,6,3],brown:[7,8],digit:5,everi:0,string:[0,4,5,7,8,9,10,12,13,14],fals:[1,3,4,5,6,7,8,9,10,13,14],webhook:[1,12,4],mailing_status:9,trigger_id:14,webview_share_click:5,affect:[7,8],member_add:[12,4],create_mail:9,new_boolean:10,foo:0,level:1,group_delet:[12,4],list:[0,1,2,4,5,7,8,9,10,11,12,13,14],upload:8,iter:2,"try":8,item:2,plaintext_onli:[9,14],div:[4,5,7,8,9,10,13,14],survey_id:14,setup:1,pleas:[1,8,11,9],prevent:2,work:[1,4],ten:0,sync:10,sign:[0,5,4],past:1,second:[0,7,14],field_creat:[12,4],further:1,shortcut_nam:10,click:[0,4,5,7,8,12,14],append:2,even:10,what:1,hide:[4,5,7,8,9,10,13,14],appear:[1,8],from_group_id:13,section:1,current:[1,8,12,9],delet:[1,4,7,8,9,10,12,13,14],"new":[1,4,5,7,8,9,10,11,13,14],net:[1,2,6,3],delivery_t:8,method:[5,8,13,4,9],can:[0,1,2,4,5,7,8,9,11,12,13],widget:[7,10,8,9,13],full:1,hash:0,datematch:0,displai:10,variat:9,gener:[0,8,12,14],onli:[5,8],here:[0,1,3,5,6,8],bodi:9,let:[1,4,10],address:[0,1,8,6,9],along:8,sinc:8,valu:[0,5,7,8,10,11],field_upd:[12,4],search:[0,1,8,9,7],survei:14,sender:[9,14],larger:2,queue:5,prior:9,action:[0,8],chang:[8,4],campaign:5,newbi:5,appli:[7,14],prefer:0,young:1,myemma:[4,5,7,8,9,13],filenam:8,customer_shar:5,"boolean":[0,1,5,7,8,9,10,13,14],curlopt_postfield:[1,3],total:5,jone:[7,5,8,13],select:[1,10],newslett:[7,8,13],describ:7,would:[0,1],commun:1,regist:4,two:[0,5],coverag:1,next:[0,1],create_webhook:4,few:[5,8],call:[1,2,3,4,6,8,12],criteria:7,member_add_to_group:[12,4],type:[1,3,4,5,6,7,10,9,14],until:2,more:[0,4,7,8,9,13],peopl:5,relat:[1,8,11,9],about:[10,8,12,4,9],notic:8,thide:[4,5,7,8,9,10,13,14],flag:[5,7,8,10,9,14],exce:2,indic:8,examin:1,particular:[1,4,5,8,10,12,9],in_progress:5,origin:9,must:[0,7,13,10],none:9,endpoint:[1,4,5,7,8,9,10,13,14],join:[0,7],hour:0,der:1,member_sinc:[0,5,7,8,9,13],uniqu:5,histori:8,soup:7,remain:[0,9],archiv:[5,9],member_optout:[12,4],drill:5,control:[1,11,9],quickstart:1,give:5,forward_mailing_id:5,email_domain:[0,5],share:[0,5,8,12,4],accept:[0,5,7,8,9,10,11,13,14],total_click:5,tag:[11,9],want:[1,12,13,5],occur:[7,12],some_numeric_field:0,delai:14,alwai:0,webhook_event_id:4,cours:1,multipl:[10,8],first_nam:[1,3,5,7,8,9,10,11,13,14],started_or_finish:[9,14],anoth:[9,13],get:[1,4,5,6,7,8,9,10,13,14],message_open:[12,4],html_bodi:[9,14],share_statu:5,push_offset:14,del_statu:5,tild:5,num_members_upd:8,simpl:0,chri:9,pizza:[7,8],map:0,autent:1,referenc:7,xxxx:6,sundai:0,jacqu:1,membership:13,taco:[7,5,8,9,13],mai:12,end:[2,8],associ:[1,8,9,4,5],grow:1,welcom:11,add_onli:8,"short":0,json_encod:[1,3],optout:[5,8,12,13],num_dupl:8,favorit:10,correspond:[0,1],greet:11,predic:[0,1],issu:[1,10],"12t11":[7,5,8,9,13],combin:7,allow:[0,7,8],some_zipcode_field:0,signed_up:5,order:[5,10],michel:[8,9],mailing_nam:5,checkbox:10,fields_upd:8,over:2,soon:1,buyer:[7,8,9,13],comma:[9,13],is_dis:14,vari:8,paramet:[2,4,5,7,8,9,10,13,14],widget_typ:10,style:[0,4,5,7,8,9,10,13,14],group:[0,1,3,4,7,8,9,12,13,14],curl_setopt:[1,6,3],how:[7,1,2,4],fix:1,import_start:8,better:[13,14],platform:1,pend:[1,9],mailing_list:9,onc:9,mail:[0,1,4,5,8,11,12,9,14],hidden:13,main:1,might:[1,4],link_nam:[5,9],them:[8,9],messag:[4,5,8,12,11,9,14],"return":[0,1,4,5,7,8,9,10,12,13,14],greater:[0,8],thei:[0,9],food:10,timestamp:[0,5,12,9,10],spell:4,nashvil:1,dai:0,auth:1,framework:1,instead:[12,2,8],now:5,down:5,term:[0,1],alex:9,name:[0,4,5,7,8,9,10,11,13,14],edit:[7,1,14,10],curl_getinfo:[1,6,3],authent:[1,6,4,3],successufulli:4,separ:[1,9,13],each:[1,2,5,9,12,11,13],found:[8,9,4,14],updat:[4,7,8,9,10,12,13,14],denni:1,status:[8,9],domain:0,weight:[4,5,7,8,9,10,13,14],resum:9,individu:[5,8],hard:[0,5],last_nam:[1,3,5,7,8,9,10,11,13,14],"05t15":5,birthdai:[10,14],connect:[1,6,3],doug:1,our:[1,11,12,4,14],happen:[1,4,5],commiss:1,short_display_nam:10,special:[0,7,8,13],out:[0,1,4,5,7,8,10,13],variabl:[1,6,3],message_shar:[12,4],network:[5,12],private_api_kei:[1,6,3],check_multipl:10,categori:1,rel:0,print:6,correct:10,integr:1,benjamin:[1,8],qualifi:11,insid:1,advanc:0,contain:[0,5,7,13,10,9],given:[0,8,9,4],standard:[5,9],status_from:8,base:[5,8],recipient_search:9,dictionari:8,put:[4,7,8,9,10,13,14],span:[4,5,7,8,9,10,13,14],"13t23":[7,5,8],refer:[5,7,8,13,10,9],visit:11,could:1,omit:5,success:[1,3,7,8,9,13],filter:[0,1,7],search_id:7,pagin:[1,2],member_id:[5,7,8,9,12,13],summari:[1,5],assign:9,first:[0,1,10,5],oper:[0,1,7,14],rang:5,notifi:12,directli:0,curlopt_ssl_verifyp:[1,6,3],curl_init:[1,6,3],number:[5,2,13,3,10],placehold:[1,11],date:[0,5,8,10,11,14],unlik:9,alreadi:[10,8,9,13],done:8,plaintext_pref:[7,8,9,13],oppos:8,open:[0,3,4,5,6,7,8,12],payload:4,fanci:5,size:2,differ:0,"long":10,script:1,data:[1,3,4,5,10,12],system:[8,12,4,14],wrapper:1,attach:11,easier:12,friend:11,curlinfo_http_cod:[1,6,3],shell:0,option:[0,5,7,8,9,10,13,14],especi:8,signup:[0,1,3,4,5,8,12,14],copi:[8,13],member_upd:[12,4],specifi:[0,2,7,8,10,11,9,14],curl_exec:[1,6,3],curlopt_httphead:[1,6,3],member_signup:[12,4],create_search:7,part:[0,9],enclos:11,than:[0,1,2,3,12,13],with_plaintext:9,"02t10":[5,8],"02t11":[5,8],"02t13":5,nathan:8,whenev:8,provid:[1,5,8,12,9,14],remov:[12,8,13,4],mailing_start:4,rate:2,structur:7,charact:9,greg:8,trackabl:11,were:5,minut:0,danc:1,error_count:[7,8,9,13],pre:[4,5,7,8,9,10,13,14],cleaner:1,sai:0,share_id:5,signup_form_id:[0,8,12,9,14],plaintext:[5,9,14],pass:[1,3],ani:[0,1,2,7,8,9],have:[0,1,5,8,12,9],tabl:5,need:1,seen:5,"null":[7,8,13,10,9,14],kevin:[9,14],signup_mail:0,caus:14,built:1,inform:[1,4,6,8,9,10,13],object_id:14,note:[1,8,9,4],also:[0,4,5,7,8,9,11,13],exampl:[0,1,3,5,6,7,11],take:[0,4],which:[0,1,4,8,10,12,9,14],some_number_field:0,singl:[0,1,3,4,5,8,10,12,13],excit:11,sure:1,delete_memb:13,normal:9,parent_mail:14,recipient_count:[5,9,14],previou:9,field_id:[10,12,14],last_run_at:7,most:14,pair:11,"class":[4,5,7,8,9,10,13,14],don:1,member_group_id:[8,9,13],mcconnel:[9,14],url:[1,3,4,5,6,12],mailing_finish:[12,4],clear:10,request:[1,2,3],doe:[0,5,7,8,9,10,13],member_status_upd:[12,4],declar:9,tech:4,determin:1,dataset:10,dow:0,recipi:9,"6db0cc7e6fdb2da589b65f29d90c96b6":9,show:[4,5,7,8,9,10,11,13,14],text:[10,11,12],radiu:0,syntax:[0,1,11,9],radio:10,font:[4,5,7,8,9,10,13,14],fine:9,find:[1,6,5],status_to:8,toast:[7,5,8,13],access:[1,5],giant:12,just:[0,1,9],pretti:8,column_ord:10,explain:[0,1],winner:9,activ:[1,5,7,8,13,9],figur:1,should:[1,2,3,7,8,11,9],templat:[11,14],share_count:5,count:[1,2,3,5],variou:[8,13],confirmed_opt_in:[7,8,9,13],familiar:1,express:0,account:[1,4,5,7,8,10,13,14],becaus:12,repo:1,cannot:[8,9,4],progress:9,report:[10,8],requir:[1,7,8,10,11,9],object:[1,13,5],favorite_food:[5,7,8,13,10,9],bar:0,organ:1,include_archiv:[5,9],"public":1,"default":[5,11,13,4,9],ref_member_id:5,message_share_click:[12,4],through:[1,8,4],where:[0,1,8,11,7],view:1,user:[0,8,9,13],set:[0,1,2,3,6,8,9,12,13],link_id:[0,5,12,9,14],see:[7,1,8],result:[0,1,2,5,8,9],respons:[0,1,2,4,5,7,8,9,10,13,14],fail:[5,9,4],themselv:2,member_field:[0,7],xxxxx:6,subject:[8,12,9,14],statu:[1,4,5,7,8,9,12,13],fancyonion:11,kei:[0,1,8,11,4],is_schedul:9,message_forward:[12,4],databas:8,someth:1,last_modified_at:[7,8,9,13],addresse:5,written:1,between:[0,7,2],clicked_uniqu:5,"import":[1,8,12,4,10],subscript:[1,3],entiti:1,curlopt_url:[1,6,3],email:[0,1,3,5,6,7,8,9,13],wide:14,extend:1,numer:10,http404:[4,5,7,8,9,10,13,14],job:13,entir:[0,8],share_click:5,to_group_id:13,come:1,curlopt_returntransf:[1,6,3],addit:[0,1,8,9,11,13],member_remove_from_group:[12,4],send_start:[0,9,14],protect:1,accident:2,last:[0,5,10],delimit:5,lentil:7,pertain:5,message_click:[12,4],curlopt_post:[1,3],audienc:[1,8,9],mang:0,improv:1,http500:14,seri:5,com:[4,5,6,7,8,9,11,13],zip_code_field:0,"03t15":[7,5,8,13],point:1,toni:[7,8],overview:[0,1,11,12,5],period:1,winner_id:9,colon:[7,11],optout_count:[7,8,9,13],suppli:9,cancel:9,tuesdai:0,duplic:5,quit:[5,8],user_id:4,recur:14,headsup:9,addition:[1,2],due:5,been:[1,8,10,5],mark:[8,9],whom:9,tshow:[4,5,7,8,9,10,13,14],trigger:[1,4,5,7,8,9,10,12,13,14],unsubscrib:0,treat:8,interest:[10,4],basic:[0,1,4,8,13,14],monthli:[7,8,13],"29t17":[7,14],hesit:1,blob:4,email_us:[0,5],mailing_mailing_id:5,mailing_id:[0,5,8,12,9,14],fire:[8,4,14],xxx:[1,3],rubi:1,argument:[0,5],link_ord:[5,9],input:1,extract:11,present:7,statist:8,"case":[1,8],look:[1,14,10],frozen:9,durat:9,email_error:[7,8,9,13],defin:[0,10,8,9],"while":0,smith:[7,5,8,9,13],outcom:5,abov:[0,1,8,7],error:[1,3,6,8,10,13],veen:1,loop:8,opt:[0,4,5,7,8,13],readi:9,deliv:5,recipient_group:9,equal:0,itself:0,new_statu:12,webhook_id:4,develop:1,recipient_memb:9,perform:8,make:[1,12,6,10],belong:[0,8,4],same:4,check:[8,6,9],member:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14],python:1,html:9,split:9,document:[1,11,12],complet:[1,3,4,6,8,9],week:0,finish:[5,12,4],http:[1,2,3,4,5,6,11,9],href:[4,5,7,8,9,10,13,14],nest:0,someon:4,rais:[4,5,7,8,9,10,13,14],initi:[10,9],php:[1,6,3],studi:1,recent:[1,8],kept:11,center:0,min:5,well:[1,5],inherit:9,person:9,mailing_typ:[9,14],without:[0,1],command:1,thi:[0,1,4,5,7,8,9,10,12,13,14],undefin:0,http_code:[1,6,3],latest:11,construct:[0,7,9],identifi:8,paus:9,execut:[1,3],less:0,resp:[4,5,7,8,9,10,13,14],"_post":[1,3],against:0,aspect:13,recipient_email:9,source_filenam:8,yet:5,languag:1,"12t09":[7,8],display_nam:10,easi:[1,12,10],"01t00":8,had:0,littl:1,blog:4,add:[12,1,8,13,3],other:[1,8,9,3,5],curlopt_userpwd:[1,6,3],import_finish:[8,12,4],schedul:9,els:[1,6,3],save:7,match:[0,7],build:1,sanit:1,applic:[1,6,3],account_id:[1,3,4,5,6,7,8,9,10,12,13,14],handl:1,disposit:1,crud:[8,13,14],print_r:[6,3],mailing_statu:[9,14],know:[1,4,5],background:13,parent_mailing_id:[9,14],bit:1,insert:11,emma:[1,5,7,8,9,12,13],like:1,onion:11,deprec:4,arbitrari:8,manual:9,integ:[1,8,14,10,5],collect:1,api:[1,2,3,6,8,12],either:[0,5,7],bunch:0,output:9,group_id:[1,8,12,3],soft:[0,5],manag:[0,1,13,4],import_id:[8,12],www:[5,9],old:7,deal:[8,13],captur:1,arrai:[0,1,3,5,6,7,8,9,10,12,13,14],some:[1,11,5],field_delet:[12,4],certain:12,intern:10,sampl:[1,4,5,7,8,9,10,13,14],elaps:[2,9],unless:1,deleted_at:[7,8,13,10,9,14],some_string_field:0,librari:11,woodcock:1,emmarubi:1,bounce_count:[7,8,9,13],emmapython:1,public_kei:4,deliveri:5,broad:12,per:5,send_finish:[9,14],larg:[0,2],condit:7,three:9,network_cod:12,localhost:9,emmaphp:1,with_html_bodi:9,who:[0,5,8],bold:[4,5,7,8,9,10,13,14],event_typ:14,inspect:1,usag:[1,8,12],monsewicz:1,num_members_ad:8,fulli:11,from:[1,4,8,9,12,13,14],post:[1,3,4,7,8,9,10,12,13,14],group_creat:[12,4],gladi:[7,5,8,13],hurst:1,actual:5,zip:0,groups_upd:8,column:10,page:2,includ:[1,5,7,8,9,10,13],webview:9,mean:0,disabl:[9,14],block:[1,2],yyyi:5,own:1,member_data:[1,3],glob:0,bounc:[0,5],within:[0,8],encod:[9,4],delivery_typ:[5,8],compos:0,webview_shar:5,field_typ:10,active_count:[7,8,9,13],public_webview_url:9,pivot:5,your:[1,4,5,7,8,9,10,13],websit:11,fast:8,van:1,wai:[1,12],area:1,overus:2,group_nam:[8,12,13,9],support:12,unique_click:5,json:[0,1,3,4,6,7],submit:1,custom:[5,8,11,10],avail:[0,11,4],start:[1,2,8,4],interfac:12,send_at:[9,14],exceed:2,"var":3,interv:[0,14],fork:1,head:[1,6,9,3],form:[1,3,4,6,8,10,14],enough:2,forc:1,forward:[0,4,5,8,12,9],"31st":0,group_typ:[8,9,13],push_offset_unit:14,link:[0,4,5,11,9,14],line:[1,5],realli:1,"true":[0,1,2,3,4,6,7,8,9,10,13,14],archived_t:[9,14],info:4,pull:[1,2],made:1,possibl:[5,8,12],whether:8,maximum:2,tell:12,http403:9,record:[0,7,8],below:[0,1,8,12],http400:[7,8,9],limit:[5,2,8,9],some_array_field:0,otherwis:[1,8,10],start_t:14,mta:5,member_delet:[12,4],expect:1,notif:9,creat:[4,5,7,9,10,12,13,14],"int":5,retriev:[7,1,2,8,9],year:[0,5,9,14],repres:5,exist:[0,4,5,7,8,10,13],behavior:11,bob:[7,5],curl:[1,6],portland:1,probabl:14,echo:[1,3],successfulli:[5,8,9],mailing_subject:12,grp:13,todo:11,when:[8,12,4,9],detail:[1,4,7,8,9,10,13],invalid:[7,8,9],event:[4,7,8,13,12,9,14],field:[0,1,3,4,5,7,8,9,10,11,12,13,14],valid:[5,8,9,13],futur:1,num_skip:8,test:[5,6,7,13,9,14],ignor:8,you:[0,1,2,4,5,7,8,9,10,11,12,13],emmasdk:1,member_status_id:[7,5,8,9,13],public_api_kei:[1,6,3],stat:[5,9],claus:[0,7],event_nam:[12,4],e2ma:[1,2,6,3],error_messag:8,param:[9,4],app_messag:[1,3],ella:8,bulk:[1,8],receiv:[0,2,5,8,12,9],heads_up_email:9,longer:9,home:11,confirm:8,descript:[4,14],ohmyemma:1,portion:0,opted_out:5,time:[1,2,8,13,5],reply_to:[9,14],resource_url:12,hello:[11,9,14]},objtypes:{"0":"http:get","1":"http:put","2":"http:post","3":"http:delete"},titles:["Search Syntax","Emma API","Pagination","PHP Signup Example","Webhooks","Response","PHP Get Member By Email Example","Searches","Members","Mailings","Fields","Placeholder Syntax","Webhook Usage","Groups","Triggers"],objnames:{"0":["http","get","HTTP get"],"1":["http","put","HTTP put"],"2":["http","post","HTTP post"],"3":["http","delete","HTTP delete"]},filenames:["member_search","index","pagination","php_signup_example","api/external/webhooks","api/external/response","php_get_member_example","api/external/searches","api/external/members","api/external/mailings","api/external/fields","placeholders","webhooks","api/external/groups","api/external/triggers"]}) \ No newline at end of file +Search.setIndex({envversion:42,terms:{all:[0,1,4,5,8,9,10,11,12,13,14],code:[0,1,6,3],change_typ:8,queri:[0,2,4],month:[0,5,9,14],four:[0,5],mile:0,least:0,follow:[0,1,4,5,7,9,11,13],link_target:[5,9],privat:1,specif:[8,9,4],friendli:5,send:[1,9,4,3,5],program:1,customer_share_click:5,those:[1,12,5],group_upd:[12,4],sent:[5,8,12,9,14],curl_clos:[1,6,3],brown:[7,8],digit:5,everi:0,string:[0,4,5,7,8,9,10,12,13,14],fals:[1,3,4,5,6,7,8,9,10,13,14],mailing_status:9,trigger_id:14,webview_share_click:5,affect:[7,8],member_add:[12,4],create_mail:9,new_boolean:10,foo:0,level:1,group_delet:[12,4],list:[0,1,2,4,5,7,8,9,10,11,12,13,14],upload:8,iter:2,"try":8,item:2,plaintext_onli:[9,14],div:[4,5,7,8,9,10,13,14],survey_id:14,setup:1,pleas:[1,8,11,9],prevent:2,work:[1,4],ten:0,sync:10,sign:[0,5,4],past:1,second:[0,7,14],field_creat:[12,4],further:1,shortcut_nam:10,click:[0,4,5,7,8,14],append:2,even:10,what:1,hide:[4,5,7,8,9,10,13,14],appear:[1,8],from_group_id:13,section:1,current:[1,8,12,9],delet:[1,4,7,8,9,10,13,14],"new":[1,4,5,7,8,9,10,11,13,14],net:[1,2,6,3],delivery_t:8,method:[5,8,13,4,9],can:[0,1,2,4,5,7,8,9,11,12,13],widget:[7,10,8,9,13],full:1,hash:0,datematch:0,displai:10,variat:9,gener:[0,8,12,14],onli:[5,8],here:[0,1,3,5,6,8],bodi:9,let:[1,4,10],address:[0,1,8,6,9],along:8,sinc:8,valu:[0,5,7,8,10,11],field_upd:[12,4],search:[8,9],survei:14,sender:[9,14],larger:2,queue:5,prior:9,action:[0,8],chang:[8,4],campaign:5,newbi:5,appli:[7,14],prefer:0,young:1,myemma:[4,5,7,8,9,13],filenam:8,customer_shar:5,"boolean":[1,5,7,8,9,10,13,14],curlopt_postfield:[1,3],total:5,jone:[7,5,8,13],select:[1,10],newslett:[7,8,13],describ:7,would:[0,1],commun:1,regist:4,two:[0,5],coverag:1,next:[0,1],create_webhook:4,few:[5,8],call:[8,4],criteria:7,member_add_to_group:[12,4],type:[1,3,4,5,6,7,10,9,14],until:2,more:[0,4,7,8,9,13],peopl:5,relat:[1,8,11,9],about:[10,8,12,4,9],notic:8,thide:[4,5,7,8,9,10,13,14],flag:[5,7,8,10,9,14],exce:2,indic:8,examin:1,particular:[1,4,5,8,10,12,9],in_progress:5,origin:9,must:[0,7,13,10],none:9,endpoint:[1,4,5,7,8,9,10,13,14],join:[0,7],hour:0,der:1,member_sinc:[0,5,7,8,9,13],uniqu:5,histori:8,soup:7,remain:[0,9],archiv:[5,9],member_optout:[12,4],drill:5,control:[1,11,9],give:5,forward_mailing_id:5,email_domain:[0,5],share:[0,5,8,4],accept:[0,5,7,8,9,10,11,13,14],total_click:5,tag:[11,9],want:[1,12,13,5],occur:[7,12],some_numeric_field:0,delai:14,alwai:0,webhook_event_id:4,cours:1,multipl:[10,8],first_nam:[1,3,5,7,8,9,10,11,13,14],started_or_finish:[9,14],anoth:[9,13],get:[1,4,5,7,8,9,10,13,14],message_open:[12,4],html_bodi:[9,14],share_statu:5,push_offset:14,del_statu:5,tild:5,num_members_upd:8,simpl:0,chri:9,pizza:[7,8],map:0,birthdai:[10,14],referenc:7,xxxx:6,sundai:0,jacqu:1,membership:13,taco:[7,5,8,9,13],mai:12,end:[2,8],data:[1,10,4,3,5],grow:1,welcom:11,add_onli:8,"short":0,json_encod:[1,3],optout:[5,8,13],num_dupl:8,favorit:10,correspond:[0,1],greet:11,predic:1,issu:[1,10],"12t11":[7,5,8,9,13],combin:7,allow:[0,7,8],some_zipcode_field:0,signed_up:5,order:[5,10],michel:[8,9],mailing_nam:5,checkbox:10,fields_upd:8,over:2,becaus:12,buyer:[7,8,9,13],comma:[9,13],is_dis:14,vari:8,paramet:[2,4,5,7,8,9,10,13,14],widget_typ:10,style:[0,4,5,7,8,9,10,13,14],curl_setopt:[1,6,3],how:[7,1,2,4],fix:1,import_start:8,better:[13,14],platform:1,pend:[1,9],mailing_list:9,onc:9,hidden:13,main:1,might:[1,4],link_nam:[5,9],them:[8,9],messag:[4,5,8,11,9,14],"return":[0,1,4,5,7,8,9,10,12,13,14],greater:[0,8],thei:[0,9],food:10,timestamp:[0,5,12,9,10],spell:4,nashvil:1,dai:0,auth:1,instead:[12,2,8],now:5,down:5,term:1,alex:9,name:[0,4,5,7,8,9,10,11,13,14],edit:[7,1,14,10],curl_getinfo:[1,6,3],authent:[1,6,4,3],successufulli:4,separ:[1,9,13],each:[1,2,5,9,12,11,13],found:[8,9,4,14],updat:[4,7,8,9,10,13,14],denni:1,status:[8,9],domain:0,weight:[4,5,7,8,9,10,13,14],resum:9,individu:[5,8],hard:[0,5],last_nam:[1,3,5,7,8,9,10,11,13,14],"05t15":5,connect:[1,6,3],doug:1,our:[1,11,12,4,14],happen:[1,4,5],commiss:1,short_display_nam:10,special:[0,7,8,13],out:[0,1,4,5,7,8,10,13],variabl:[1,6,3],message_shar:[12,4],"27t09":[7,14],network:[5,12],private_api_kei:[1,6,3],check_multipl:10,content:[1,11,6,9,3],rel:0,print:6,correct:10,integr:1,benjamin:[1,8],qualifi:11,insid:1,advanc:0,contain:[0,5,7,13,10,9],differ:0,standard:[5,9],status_from:8,base:[5,8],recipient_search:9,dictionari:8,put:[4,7,8,9,10,13,14],span:[4,5,7,8,9,10,13,14],"13t23":[7,5,8],refer:[5,7,8,13,10,9],visit:11,could:1,omit:5,success:[1,3,7,8,9,13],filter:[7,1],search_id:7,pagin:1,member_id:[5,7,8,9,12,13],summari:[1,5],assign:9,first:[0,1,10,5],oper:[7,1,14],rang:5,notifi:12,directli:0,curlopt_ssl_verifyp:[1,6,3],curl_init:[1,6,3],number:[5,2,13,3,10],placehold:1,date:[5,8,14,10],unlik:9,alreadi:[10,8,9,13],done:8,plaintext_pref:[7,8,9,13],oppos:8,open:[0,3,4,5,6,7,8],payload:4,fanci:5,size:2,given:[0,8,9,4],"long":10,script:1,associ:[1,8,9,4,5],system:[8,12,4,14],construct:[0,7,9],attach:11,easier:12,friend:11,curlinfo_http_cod:[1,6,3],shell:0,option:[0,5,7,8,9,10,13,14],especi:8,signup:[0,1,4,5,8,14],copi:[8,13],member_upd:[12,4],specifi:[0,2,7,8,10,11,9,14],curl_exec:[1,6,3],curlopt_httphead:[1,6,3],member_signup:[12,4],create_search:7,part:[0,9],enclos:11,initi:[10,9],than:[0,1,2,3,12,13],with_plaintext:9,"02t10":[5,8],"02t11":[5,8],"02t13":5,nathan:8,whenev:8,provid:[1,5,8,12,9,14],remov:[8,13,4],mailing_start:4,rate:2,structur:7,charact:9,greg:8,trackabl:11,were:5,minut:0,danc:1,error_count:[7,8,9,13],pre:[4,5,7,8,9,10,13,14],cleaner:1,sai:0,share_id:5,signup_form_id:[0,8,12,9,14],plaintext:[5,9,14],pass:[1,3],ani:[0,1,2,7,8,9],have:[0,1,5,8,12,9],tabl:5,need:1,seen:5,"null":[7,8,13,10,9,14],kevin:[9,14],signup_mail:0,caus:14,built:1,inform:[1,4,6,8,9,10,13],object_id:14,note:[1,8,9,4],also:[0,4,5,7,8,9,11,13],exampl:[0,1,7,5],take:[0,4],which:[0,1,4,8,10,12,9,14],some_number_field:0,singl:[0,1,3,4,5,8,10,12,13],excit:11,sure:1,delete_memb:13,normal:9,parent_mail:14,recipient_count:[5,9,14],previou:9,field_id:[10,12,14],last_run_at:7,most:14,pair:11,"class":[4,5,7,8,9,10,13,14],don:1,member_group_id:[8,9,13],mcconnel:[9,14],url:[1,3,4,5,6,12],mailing_finish:[12,4],clear:10,request:[1,2,3],doe:[0,5,7,8,9,10,13],member_status_upd:[12,4],declar:9,tech:4,determin:1,dataset:10,dow:0,recipi:9,"6db0cc7e6fdb2da589b65f29d90c96b6":9,show:[4,5,7,8,9,10,11,13,14],text:[10,11,12],radiu:0,syntax:[1,9],radio:10,font:[4,5,7,8,9,10,13,14],fine:9,find:[1,6,5],status_to:8,toast:[7,5,8,13],access:[1,5],giant:12,just:[0,1,9],pretti:8,column_ord:10,explain:[0,1],winner:9,activ:[1,5,7,8,13,9],figur:1,should:[1,2,3,7,8,11,9],templat:[11,14],share_count:5,count:[1,2,3,5],variou:[8,13],confirmed_opt_in:[7,8,9,13],familiar:1,express:0,account:[1,4,5,7,8,10,13,14],repo:1,cannot:[8,9,4],progress:9,report:[10,8],requir:[1,7,8,10,11,9],object:[1,13,5],favorite_food:[5,7,8,13,10,9],bar:0,organ:1,include_archiv:[5,9],"public":1,"default":[5,11,13,4,9],ref_member_id:5,message_share_click:[12,4],through:[1,8,4],where:[0,1,8,11,7],view:1,user:[0,8,9,13],set:[0,1,2,3,6,8,9,12,13],link_id:[0,5,12,9,14],see:[7,1,8],result:[0,1,2,5,8,9],respons:[10,8,9,13],fail:[5,9,4],themselv:2,member_field:[0,7],xxxxx:6,subject:[8,12,9,14],statu:[1,4,5,7,8,9,13],fancyonion:11,kei:[0,1,8,11,4],is_schedul:9,message_forward:[12,4],databas:8,someth:1,last_modified_at:[7,8,9,13],addresse:5,written:1,between:[0,7,2],clicked_uniqu:5,"import":[1,8,4,10],subscript:[1,3],entiti:1,curlopt_url:[1,6,3],email:[0,1,5,7,8,9,13],wide:14,extend:1,numer:10,http404:[4,5,7,8,9,10,13,14],job:13,entir:[0,8],share_click:5,to_group_id:13,curlopt_returntransf:[1,6,3],addit:[8,9,13],member_remove_from_group:[12,4],send_start:[0,9,14],protect:1,accident:2,last:[0,5,10],delimit:5,lentil:7,pertain:5,message_click:[12,4],curlopt_post:[1,3],audienc:[1,8,9],mang:0,improv:1,http500:14,seri:5,com:[4,5,6,7,8,9,11,13],zip_code_field:0,"03t15":[7,5,8,13],point:1,toni:[7,8],overview:5,period:1,colon:[7,11],optout_count:[7,8,9,13],suppli:9,cancel:9,tuesdai:0,duplic:5,quit:[5,8],user_id:4,recur:14,headsup:9,addition:[1,2],due:5,been:[1,8,10,5],mark:[8,9],whom:9,tshow:[4,5,7,8,9,10,13,14],trigger:[5,7,8,13,10,9],unsubscrib:0,treat:8,interest:[10,4],basic:[0,1,4,8,13,14],monthli:[7,8,13],member_delet:[12,4],hesit:1,blob:4,email_us:[0,5],mailing_mailing_id:5,mailing_id:[0,5,8,12,9,14],fire:[8,4,14],xxx:[1,3],rubi:1,argument:[0,5],bulk:[1,8],input:1,present:7,statist:8,"case":[1,8],look:[1,14,10],frozen:9,durat:9,email_error:[7,8,9,13],defin:[0,10,8,9],"while":0,smith:[7,5,8,9,13],outcom:5,abov:[0,1,8,7],error:[1,3,6,8,10,13],veen:1,loop:8,opt:[0,4,5,7,8,13],readi:9,deliv:5,recipient_group:9,equal:0,itself:0,new_statu:12,webhook_id:4,develop:1,recipient_memb:9,perform:8,make:[1,12,6,10],belong:[0,8,4],same:4,check:[8,6,9],member:[10,9,13],python:1,html:9,split:9,complet:[1,3,4,6,8,9],week:0,finish:[5,4],http:[1,2,3,4,5,6,11,9],href:[4,5,7,8,9,10,13,14],nest:0,someon:4,rais:[4,5,7,8,9,10,13,14],winner_id:9,php:1,studi:1,recent:[1,8],kept:11,center:0,min:5,well:[1,5],inherit:9,person:9,mailing_typ:[9,14],without:[0,1],command:1,thi:[0,1,4,5,7,8,9,10,12,13,14],undefin:0,http_code:[1,6,3],latest:11,identifi:8,paus:9,execut:[1,3],less:0,resp:[4,5,7,8,9,10,13,14],"_post":[1,3],against:0,aspect:13,recipient_email:9,source_filenam:8,yet:5,languag:1,"12t09":[7,8],display_nam:10,easi:[1,12,10],"01t00":8,had:0,littl:1,blog:4,add:[1,8,13,3],other:[1,8,9,3,5],curlopt_userpwd:[1,6,3],import_finish:[8,12,4],schedul:9,els:[1,6,3],save:7,match:[0,7],build:1,sanit:1,applic:[1,6,3],account_id:[1,3,4,5,6,7,8,9,10,12,13,14],handl:1,disposit:1,crud:[8,13,14],print_r:[6,3],mailing_statu:[9,14],know:[1,4,5],background:13,parent_mailing_id:[9,14],bit:1,insert:11,emma:[7,5,8,9,13],like:1,onion:11,deprec:4,arbitrari:8,manual:9,integ:[1,8,14,10,5],collect:1,api:8,either:[0,5,7],bunch:0,output:9,group_id:[1,8,12,3],soft:[0,5],manag:[0,1,13,4],import_id:[8,12],www:[5,9],old:7,deal:[8,13],captur:1,arrai:[0,1,3,5,6,7,8,9,10,12,13,14],some:[1,11,5],field_delet:[12,4],certain:12,intern:10,sampl:[1,4,5,7,8,9,10,13,14],elaps:[2,9],unless:1,deleted_at:[7,8,13,10,9,14],some_string_field:0,librari:11,woodcock:1,emmarubi:1,bounce_count:[7,8,9,13],emmapython:1,public_kei:4,deliveri:5,broad:12,per:5,send_finish:[9,14],larg:[0,2],condit:7,three:9,network_cod:12,localhost:9,emmaphp:1,with_html_bodi:9,who:[0,5,8],bold:[4,5,7,8,9,10,13,14],event_typ:14,inspect:1,usag:[1,8],monsewicz:1,num_members_ad:8,fulli:11,from:[1,4,8,9,13,14],post:[1,3,4,7,8,9,10,13,14],group_creat:[12,4],gladi:[7,5,8,13],hurst:1,actual:5,zip:0,groups_upd:8,column:10,page:2,includ:[1,5,7,8,9,10,13],webview:9,mean:0,disabl:[9,14],block:[1,2],yyyi:5,own:1,member_data:[1,3],glob:0,bounc:[0,5],within:[0,8],encod:[9,4],delivery_typ:[5,8],compos:0,webview_shar:5,field_typ:10,active_count:[7,8,9,13],public_webview_url:9,pivot:5,your:[1,4,5,7,8,9,10,13],websit:11,fast:8,van:1,wai:[1,12],area:1,overus:2,group_nam:[8,12,13,9],support:12,unique_click:5,json:[0,1,3,4,6,7],submit:1,custom:[5,8,11,10],avail:[0,11,4],start:[1,2,8,4],interfac:12,send_at:[9,14],exceed:2,"var":3,interv:14,fork:1,head:[1,6,9,3],form:[1,3,4,6,8,10,14],enough:2,forc:1,forward:[0,5,8,9,4],"31st":0,group_typ:[8,9,13],push_offset_unit:14,link:[0,4,5,11,9,14],line:[1,5],realli:1,"true":[0,1,2,3,4,6,7,8,9,10,13,14],archived_t:[9,14],info:4,pull:[1,2],made:1,possibl:[5,8,12],whether:8,maximum:2,tell:12,http403:9,record:[0,7,8],below:[0,1,8,12],http400:[7,8,9],limit:[5,2,8,9],some_array_field:0,otherwis:[1,8,10],start_t:14,mta:5,expect:1,notif:9,creat:[4,5,7,13,10,9,14],"int":5,retriev:[7,1,2,8,9],year:[0,5,9,14],repres:5,exist:[0,4,5,7,8,10,13],behavior:11,bob:[7,5],curl:[1,6],portland:1,probabl:14,echo:[1,3],successfulli:[5,8,9],mailing_subject:12,grp:13,extract:11,when:[8,12,4,9],detail:[1,4,7,8,9,10,13],invalid:[7,8,9],event:[4,7,8,13,12,9,14],valid:[5,8,9,13],futur:1,num_skip:8,test:[5,6,7,13,9,14],ignor:8,you:[0,1,2,4,5,7,8,9,10,11,12,13],emmasdk:1,member_status_id:[7,5,8,9,13],public_api_kei:[1,6,3],stat:[5,9],claus:[0,7],event_nam:[12,4],e2ma:[1,2,6,3],error_messag:8,param:[9,4],app_messag:[1,3],ella:8,link_ord:[5,9],receiv:[0,2,5,8,12,9],heads_up_email:9,longer:9,home:11,confirm:8,descript:[4,14],ohmyemma:1,portion:0,opted_out:5,time:[1,2,8,13,5],reply_to:[9,14],resource_url:12,hello:[11,9,14]},objtypes:{"0":"http:get","1":"http:put","2":"http:post","3":"http:delete"},objnames:{"0":["http","get","HTTP get"],"1":["http","put","HTTP put"],"2":["http","post","HTTP post"],"3":["http","delete","HTTP delete"]},filenames:["member_search","index","pagination","php_signup_example","api/external/webhooks","api/external/response","php_get_member_example","api/external/searches","api/external/members","api/external/mailings","api/external/fields","placeholders","webhooks","api/external/groups","api/external/triggers"],titles:["Search Syntax","Emma API","Pagination","PHP Signup Example","Webhooks","Response","PHP Get Member By Email Example","Searches","Members","Mailings","Fields","Placeholder Syntax","Webhook Usage","Groups","Triggers"],objects:{"":{"/#account_id/members/#member_id/groups/remove":[8,1,1,"put--#account_id-members-#member_id-groups-remove"],"/#account_id/mailings/#mailing_id/winner/#winner_id":[9,2,1,"post--#account_id-mailings-#mailing_id-winner-#winner_id"],"/#account_id/response/#mailing_id/in_progress":[5,0,1,"get--#account_id-response-#mailing_id-in_progress"],"/#account_id/members/groups/remove":[8,1,1,"put--#account_id-members-groups-remove"],"/#account_id/mailings/#mailing_id/searches":[9,0,1,"get--#account_id-mailings-#mailing_id-searches"],"/#account_id/fields":[10,2,1,"post--#account_id-fields"],"/#account_id/members/#group_id/copy":[8,1,1,"put--#account_id-members-#group_id-copy"],"/#account_id/members/status":[8,1,1,"put--#account_id-members-status"],"/#account_id/response/#mailing_id/shares/overview":[5,0,1,"get--#account_id-response-#mailing_id-shares-overview"],"/#account_id/webhooks/events":[4,0,1,"get--#account_id-webhooks-events"],"/#account_id/members/#member_id/optout":[8,0,1,"get--#account_id-members-#member_id-optout"],"/#account_id/webhooks":[4,3,1,"delete--#account_id-webhooks"],"/#account_id/fields/#field_id":[10,3,1,"delete--#account_id-fields-#field_id"],"/#account_id/response/#mailing_id":[5,0,1,"get--#account_id-response-#mailing_id"],"/#account_id/groups/#member_group_id/members/remove":[13,3,1,"delete--#account_id-groups-#member_group_id-members-remove"],"/#account_id/searches":[7,2,1,"post--#account_id-searches"],"/#account_id/members/imports":[8,0,1,"get--#account_id-members-imports"],"/#account_id/forwards/#mailing_id/#member_id":[9,2,1,"post--#account_id-forwards-#mailing_id-#member_id"],"/#account_id/response/#mailing_id/customer_share_clicks":[5,0,1,"get--#account_id-response-#mailing_id-customer_share_clicks"],"/#account_id/mailings/#mailing_id/messages/#member_id":[9,0,1,"get--#account_id-mailings-#mailing_id-messages-#member_id"],"/#account_id/members/#member_id/mailings":[8,0,1,"get--#account_id-members-#member_id-mailings"],"/#account_id/groups/#from_group_id/#to_group_id/members/copy":[13,1,1,"put--#account_id-groups-#from_group_id-#to_group_id-members-copy"],"/#account_id/triggers":[14,2,1,"post--#account_id-triggers"],"/#account_id/triggers/#trigger_id":[14,3,1,"delete--#account_id-triggers-#trigger_id"],"/#account_id/members/delete":[8,1,1,"put--#account_id-members-delete"],"/#account_id/mailings/#mailing_id/groups":[9,0,1,"get--#account_id-mailings-#mailing_id-groups"],"/#account_id/response/#mailing_id/forwards":[5,0,1,"get--#account_id-response-#mailing_id-forwards"],"/#account_id/members/#member_id":[8,3,1,"delete--#account_id-members-#member_id"],"/#account_id/triggers/#trigger_id/mailings":[14,0,1,"get--#account_id-triggers-#trigger_id-mailings"],"/#account_id/searches/#search_id/members":[7,0,1,"get--#account_id-searches-#search_id-members"],"/#account_id/members/status/:status_from/to/:status_to":[8,1,1,"put--#account_id-members-status--status_from-to--status_to"],"/#account_id/response/#mailing_id/sends":[5,0,1,"get--#account_id-response-#mailing_id-sends"],"/#account_id/members":[8,3,1,"delete--#account_id-members"],"/#account_id/members/email/:email":[8,0,1,"get--#account_id-members-email--email"],"/#account_id/response/#mailing_id/links":[5,0,1,"get--#account_id-response-#mailing_id-links"],"/#account_id/searches/#search_id":[7,3,1,"delete--#account_id-searches-#search_id"],"/#account_id/members/imports/#import_id/members":[8,0,1,"get--#account_id-members-imports-#import_id-members"],"/#account_id/fields/#field_id/clear":[10,2,1,"post--#account_id-fields-#field_id-clear"],"/#account_id/groups/#member_group_id/members":[13,3,1,"delete--#account_id-groups-#member_group_id-members"],"/#account_id/members/imports/#import_id":[8,0,1,"get--#account_id-members-imports-#import_id"],"/#account_id/response":[5,0,1,"get--#account_id-response"],"/#account_id/response/#mailing_id/opens":[5,0,1,"get--#account_id-response-#mailing_id-opens"],"/#account_id/members/imports/delete":[8,3,1,"delete--#account_id-members-imports-delete"],"/#account_id/mailings":[9,0,1,"get--#account_id-mailings"],"/#account_id/mailings/cancel/#mailing_id":[9,3,1,"delete--#account_id-mailings-cancel-#mailing_id"],"/#account_id/mailings/validate":[9,2,1,"post--#account_id-mailings-validate"],"/#account_id/response/#mailing_id/deliveries":[5,0,1,"get--#account_id-response-#mailing_id-deliveries"],"/#account_id/mailings/#mailing_id/members":[9,0,1,"get--#account_id-mailings-#mailing_id-members"],"/#account_id/response/#share_id/customer_share":[5,0,1,"get--#account_id-response-#share_id-customer_share"],"/#account_id/webhooks/#webhook_id":[4,3,1,"delete--#account_id-webhooks-#webhook_id"],"/#account_id/members/add":[8,2,1,"post--#account_id-members-add"],"/#account_id/members/email/optout/:email":[8,1,1,"put--#account_id-members-email-optout--email"],"/#account_id/response/#mailing_id/optouts":[5,0,1,"get--#account_id-response-#mailing_id-optouts"],"/#account_id/response/#mailing_id/shares":[5,0,1,"get--#account_id-response-#mailing_id-shares"],"/#account_id/groups/#member_group_id":[13,3,1,"delete--#account_id-groups-#member_group_id"],"/#account_id/mailings/#mailing_id":[9,3,1,"delete--#account_id-mailings-#mailing_id"],"/#account_id/members/#member_id/groups":[8,3,1,"delete--#account_id-members-#member_id-groups"],"/#account_id/groups":[13,2,1,"post--#account_id-groups"],"/#account_id/response/#mailing_id/clicks":[5,0,1,"get--#account_id-response-#mailing_id-clicks"],"/#account_id/mailings/#mailing_id/headsup":[9,0,1,"get--#account_id-mailings-#mailing_id-headsup"],"/#account_id/response/#mailing_id/signups":[5,0,1,"get--#account_id-response-#mailing_id-signups"],"/#account_id/response/#mailing_id/customer_shares":[5,0,1,"get--#account_id-response-#mailing_id-customer_shares"]}},titleterms:{oper:0,quickstart:1,creat:12,api:1,overview:[0,1,11,12],interv:0,share:12,syntax:[0,11],"boolean":0,wrapper:1,respons:5,open:12,click:12,categori:1,statu:12,group:[12,13],delet:12,todo:11,messag:12,member:[8,6,12],field:[10,12],add:12,trigger:14,call:1,forward:12,mail:[12,9],document:1,email:6,updat:12,finish:12,get:6,webhook:[12,4],signup:[12,3],usag:12,search:[0,7],"import":12,date:0,from:12,post:12,php:[6,3],data:12,addit:1,placehold:11,term:0,emma:1,optout:12,remov:12,predic:0,filter:0,exampl:[6,3],pagin:2}}) \ No newline at end of file diff --git a/webhooks.html b/webhooks.html index b6a151f..99725ce 100644 --- a/webhooks.html +++ b/webhooks.html @@ -1,5 +1,4 @@ - <!doctype html> @@ -15,7 +14,7 @@ <script type="text/javascript"> var DOCUMENTATION_OPTIONS = { - URL_ROOT: '', + URL_ROOT: './', VERSION: '0.1', COLLAPSE_INDEX: false, FILE_SUFFIX: '.html', @@ -507,7 +506,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on May 29, 2013 at 05:21 PM. + Last updated on Jun 27, 2013 at 09:13 AM. </div> </body> </html> \ No newline at end of file From 0181232e17a6debad7ce3648c8f39dc1749aebdc Mon Sep 17 00:00:00 2001 From: rmacy <ryan@hackery.io> Date: Fri, 19 Jul 2013 16:30:15 -0500 Subject: [PATCH 047/219] Update audience documentation. --- _sources/index.txt | 7 +++ api/external/fields.html | 2 +- api/external/groups.html | 9 ++- api/external/mailings.html | 107 +++++++++++++++++++----------------- api/external/members.html | 5 +- api/external/response.html | 2 +- api/external/searches.html | 7 ++- api/external/triggers.html | 32 +++++++---- api/external/webhooks.html | 2 +- genindex.html | 2 +- http-routingtable.html | 2 +- index.html | 9 ++- member_search.html | 2 +- pagination.html | 2 +- php_get_member_example.html | 2 +- php_signup_example.html | 2 +- placeholders.html | 2 +- search.html | 2 +- searchindex.js | 2 +- webhooks.html | 2 +- 20 files changed, 123 insertions(+), 79 deletions(-) diff --git a/_sources/index.txt b/_sources/index.txt index ef2a084..ee18aa3 100644 --- a/_sources/index.txt +++ b/_sources/index.txt @@ -1,6 +1,13 @@ Emma API ======== +Support +------- + +Use the documentation here to set up and troubleshoot your API calls. We don't offer one-on-one support +for Emma's public API, but our system is monitored around the clock. If there's ever a dropped connection +or outage, we'll notify users on our `status page <http://myemma.com/status>`_. + Overview -------- diff --git a/api/external/fields.html b/api/external/fields.html index ee557e7..6a35d9b 100644 --- a/api/external/fields.html +++ b/api/external/fields.html @@ -414,7 +414,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jun 27, 2013 at 09:13 AM. + Last updated on Jul 19, 2013 at 04:30 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/groups.html b/api/external/groups.html index f624b3b..8a36fad 100644 --- a/api/external/groups.html +++ b/api/external/groups.html @@ -144,6 +144,7 @@ <h1>Groups<a class="headerlink" href="#groups" title="Permalink to this headline "optout_count": 1, "group_type": "g", "member_group_id": 150, + "purged_at": null, "account_id": 100, "group_name": "Monthly Newsletter" }, @@ -154,6 +155,7 @@ <h1>Groups<a class="headerlink" href="#groups" title="Permalink to this headline "optout_count": 0, "group_type": "g", "member_group_id": 151, + "purged_at": null, "account_id": 100, "group_name": "Widget Buyers" }, @@ -164,6 +166,7 @@ <h1>Groups<a class="headerlink" href="#groups" title="Permalink to this headline "optout_count": 0, "group_type": "g", "member_group_id": 152, + "purged_at": null, "account_id": 100, "group_name": "Special Events" } @@ -187,6 +190,7 @@ <h1>Groups<a class="headerlink" href="#groups" title="Permalink to this headline "optout_count": 1, "group_type": "g", "member_group_id": 150, + "purged_at": null, "account_id": 100, "group_name": "Monthly Newsletter" }, @@ -197,6 +201,7 @@ <h1>Groups<a class="headerlink" href="#groups" title="Permalink to this headline "optout_count": 0, "group_type": "g", "member_group_id": 151, + "purged_at": null, "account_id": 100, "group_name": "Widget Buyers" }, @@ -207,6 +212,7 @@ <h1>Groups<a class="headerlink" href="#groups" title="Permalink to this headline "optout_count": 0, "group_type": "g", "member_group_id": 152, + "purged_at": null, "account_id": 100, "group_name": "Special Events" } @@ -289,6 +295,7 @@ <h1>Groups<a class="headerlink" href="#groups" title="Permalink to this headline "optout_count": 1, "group_type": "g", "member_group_id": 150, + "purged_at": null, "account_id": 100, "group_name": "Monthly Newsletter" } @@ -701,7 +708,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jun 27, 2013 at 09:13 AM. + Last updated on Jul 19, 2013 at 04:30 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/mailings.html b/api/external/mailings.html index 6da9a5c..a8b196d 100644 --- a/api/external/mailings.html +++ b/api/external/mailings.html @@ -147,48 +147,52 @@ <h1>Mailings<a class="headerlink" href="#mailings" title="Permalink to this head [ { - "mailing_status": "p", - "plaintext_only": false, - "sender": "Kevin McConnell", - "name": "Cancellable mailing", + "mailing_type": "m", + "send_started": null, + "signup_form_id": null, "mailing_id": 201, - "started_or_finished": null, "recipient_count": 0, "year": null, - "subject": "Cancellable mailing", - "mailing_type": "m", + "account_id": 100, "month": null, "disabled": false, + "parent_mailing_id": null, + "started_or_finished": null, + "name": "Cancellable mailing", + "datacenter": null, + "mailing_status": "p", + "plaintext_only": false, + "sender": "Kevin McConnell", "send_finished": null, "send_at": null, - "parent_mailing_id": null, "reply_to": null, - "send_started": null, - "signup_form_id": null, - "archived_ts": null, - "account_id": 100 + "subject": "Cancellable mailing", + "purged_at": null, + "archived_ts": null }, { - "mailing_status": "c", - "plaintext_only": false, - "sender": "Kevin McConnell", - "name": "Sample Mailing", + "mailing_type": "m", + "send_started": null, + "signup_form_id": null, "mailing_id": 200, - "started_or_finished": null, "recipient_count": 0, "year": null, - "subject": "Sample Mailing for [% member:first_name %] [% member:last_name %]", - "mailing_type": "m", + "account_id": 100, "month": null, "disabled": false, + "parent_mailing_id": null, + "started_or_finished": null, + "name": "Sample Mailing", + "datacenter": null, + "mailing_status": "c", + "plaintext_only": false, + "sender": "Kevin McConnell", "send_finished": null, "send_at": null, - "parent_mailing_id": null, "reply_to": null, - "send_started": null, - "signup_form_id": null, - "archived_ts": null, - "account_id": 100 + "subject": "Sample Mailing for [% member:first_name %] [% member:last_name %]", + "purged_at": null, + "archived_ts": null } ] @@ -204,48 +208,52 @@ <h1>Mailings<a class="headerlink" href="#mailings" title="Permalink to this head [ { - "mailing_status": "p", - "plaintext_only": false, - "sender": "Kevin McConnell", - "name": "Cancellable mailing", + "mailing_type": "m", + "send_started": null, + "signup_form_id": null, "mailing_id": 201, - "started_or_finished": null, "recipient_count": 0, "year": null, - "subject": "Cancellable mailing", - "mailing_type": "m", + "account_id": 100, "month": null, "disabled": false, + "parent_mailing_id": null, + "started_or_finished": null, + "name": "Cancellable mailing", + "datacenter": null, + "mailing_status": "p", + "plaintext_only": false, + "sender": "Kevin McConnell", "send_finished": null, "send_at": null, - "parent_mailing_id": null, "reply_to": null, - "send_started": null, - "signup_form_id": null, - "archived_ts": null, - "account_id": 100 + "subject": "Cancellable mailing", + "purged_at": null, + "archived_ts": null }, { - "mailing_status": "c", - "plaintext_only": false, - "sender": "Kevin McConnell", - "name": "Sample Mailing", + "mailing_type": "m", + "send_started": null, + "signup_form_id": null, "mailing_id": 200, - "started_or_finished": null, "recipient_count": 0, "year": null, - "subject": "Sample Mailing for [% member:first_name %] [% member:last_name %]", - "mailing_type": "m", + "account_id": 100, "month": null, "disabled": false, + "parent_mailing_id": null, + "started_or_finished": null, + "name": "Sample Mailing", + "datacenter": null, + "mailing_status": "c", + "plaintext_only": false, + "sender": "Kevin McConnell", "send_finished": null, "send_at": null, - "parent_mailing_id": null, "reply_to": null, - "send_started": null, - "signup_form_id": null, - "archived_ts": null, - "account_id": 100 + "subject": "Sample Mailing for [% member:first_name %] [% member:last_name %]", + "purged_at": null, + "archived_ts": null } ] @@ -456,6 +464,7 @@ <h1>Mailings<a class="headerlink" href="#mailings" title="Permalink to this head "optout_count": 0, "group_type": "g", "member_group_id": 151, + "purged_at": null, "account_id": 100, "group_name": "Widget Buyers" } @@ -809,7 +818,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jun 27, 2013 at 09:13 AM. + Last updated on Jul 19, 2013 at 04:30 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/members.html b/api/external/members.html index 9d2eeb7..642574e 100644 --- a/api/external/members.html +++ b/api/external/members.html @@ -715,6 +715,7 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli "optout_count": 1, "group_type": "g", "member_group_id": 150, + "purged_at": null, "account_id": 100, "group_name": "Monthly Newsletter" }, @@ -725,6 +726,7 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli "optout_count": 0, "group_type": "g", "member_group_id": 151, + "purged_at": null, "account_id": 100, "group_name": "Widget Buyers" }, @@ -735,6 +737,7 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli "optout_count": 0, "group_type": "g", "member_group_id": 152, + "purged_at": null, "account_id": 100, "group_name": "Special Events" } @@ -1216,7 +1219,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jun 27, 2013 at 09:13 AM. + Last updated on Jul 19, 2013 at 04:30 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/response.html b/api/external/response.html index 2916587..d110855 100644 --- a/api/external/response.html +++ b/api/external/response.html @@ -1018,7 +1018,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jun 27, 2013 at 09:13 AM. + Last updated on Jul 19, 2013 at 04:30 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/searches.html b/api/external/searches.html index 7ed1b84..86d699f 100644 --- a/api/external/searches.html +++ b/api/external/searches.html @@ -140,6 +140,7 @@ <h1>Searches<a class="headerlink" href="#searches" title="Permalink to this head "name": "Test Search", "criteria": "[\"or\", [\"group\", \"eq\", \"Monthly Newsletter\"],[\"group\", \"eq\", \"Widget Buyers\"]]", "deleted_at": null, + "purged_at": null, "last_run_at": null, "active_count": 0, "account_id": 100 @@ -151,6 +152,7 @@ <h1>Searches<a class="headerlink" href="#searches" title="Permalink to this head "name": "Second Test Search", "criteria": "[\"group\", \"eq\", \"Special Events\"]", "deleted_at": null, + "purged_at": null, "last_run_at": null, "active_count": 0, "account_id": 100 @@ -198,7 +200,8 @@ <h1>Searches<a class="headerlink" href="#searches" title="Permalink to this head "name": "Test Search", "criteria": "[\"or\", [\"group\", \"eq\", \"Monthly Newsletter\"],[\"group\", \"eq\", \"Widget Buyers\"]]", "deleted_at": null, - "last_run_at": "@D:2013-06-27T09:13:04", + "purged_at": null, + "last_run_at": "@D:2013-07-19T16:30:05", "active_count": 2, "account_id": 100 } @@ -510,7 +513,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jun 27, 2013 at 09:13 AM. + Last updated on Jul 19, 2013 at 04:30 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/triggers.html b/api/external/triggers.html index c771b6a..6590638 100644 --- a/api/external/triggers.html +++ b/api/external/triggers.html @@ -126,19 +126,21 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "plaintext": "Hello [% member:first_name %]!", "recipient_count": 0, "year": null, - "account_id": 100, "month": null, "disabled": false, "parent_mailing_id": null, "started_or_finished": null, - "name": "Sample Mailing", + "account_id": 100, + "datacenter": null, "mailing_status": "c", "plaintext_only": false, "sender": "Kevin McConnell", + "name": "Sample Mailing", "send_finished": null, "send_at": null, "reply_to": null, "subject": "Sample Mailing for [% member:first_name %] [% member:last_name %]", + "purged_at": null, "archived_ts": null, "html_body": "<p>Hello [% member:first_name %]!</p>" }, @@ -147,7 +149,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": 203, "push_offset_units": "0:-14:0:0", - "start_ts": "@D:2013-06-27T09:13:00", + "start_ts": "@D:2013-07-19T16:30:03", "trigger_id": 100, "signups": null, "push_offset": "@I:-1209600.0", @@ -167,19 +169,21 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "plaintext": "Hello [% member:first_name %]!", "recipient_count": 0, "year": null, - "account_id": 100, "month": null, "disabled": false, "parent_mailing_id": null, "started_or_finished": null, - "name": "Sample Mailing", + "account_id": 100, + "datacenter": null, "mailing_status": "c", "plaintext_only": false, "sender": "Kevin McConnell", + "name": "Sample Mailing", "send_finished": null, "send_at": null, "reply_to": null, "subject": "Sample Mailing for [% member:first_name %] [% member:last_name %]", + "purged_at": null, "archived_ts": null, "html_body": "<p>Hello [% member:first_name %]!</p>" }, @@ -188,7 +192,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": null, "push_offset_units": "0:3:0:0", - "start_ts": "@D:2013-06-27T09:13:00", + "start_ts": "@D:2013-07-19T16:30:03", "trigger_id": 101, "signups": [ 1, @@ -304,19 +308,21 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "plaintext": "Hello [% member:first_name %]!", "recipient_count": 0, "year": null, - "account_id": 100, "month": null, "disabled": false, "parent_mailing_id": null, "started_or_finished": null, - "name": "Sample Mailing", + "account_id": 100, + "datacenter": null, "mailing_status": "c", "plaintext_only": false, "sender": "Kevin McConnell", + "name": "Sample Mailing", "send_finished": null, "send_at": null, "reply_to": null, "subject": "Sample Mailing for [% member:first_name %] [% member:last_name %]", + "purged_at": null, "archived_ts": null, "html_body": "<p>Hello [% member:first_name %]!</p>" }, @@ -325,7 +331,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": 203, "push_offset_units": "0:-14:0:0", - "start_ts": "@D:2013-06-27T09:13:00", + "start_ts": "@D:2013-07-19T16:30:03", "trigger_id": 100, "signups": null, "push_offset": "@I:-1209600.0", @@ -428,19 +434,21 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "plaintext": "Hello [% member:first_name %]!", "recipient_count": 0, "year": null, - "account_id": 100, "month": null, "disabled": false, "parent_mailing_id": null, "started_or_finished": null, - "name": "Sample Mailing", + "account_id": 100, + "datacenter": null, "mailing_status": "c", "plaintext_only": false, "sender": "Kevin McConnell", + "name": "Sample Mailing", "send_finished": null, "send_at": null, "reply_to": null, "subject": "Sample Mailing for [% member:first_name %] [% member:last_name %]", + "purged_at": null, "archived_ts": null, "html_body": "<p>Hello [% member:first_name %]!</p>" } @@ -498,7 +506,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jun 27, 2013 at 09:13 AM. + Last updated on Jul 19, 2013 at 04:30 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/webhooks.html b/api/external/webhooks.html index 9aa6cef..3397efc 100644 --- a/api/external/webhooks.html +++ b/api/external/webhooks.html @@ -486,7 +486,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jun 27, 2013 at 09:13 AM. + Last updated on Jul 19, 2013 at 04:30 PM. </div> </body> </html> \ No newline at end of file diff --git a/genindex.html b/genindex.html index 6178572..23b2dc7 100644 --- a/genindex.html +++ b/genindex.html @@ -144,7 +144,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jun 27, 2013 at 09:13 AM. + Last updated on Jul 19, 2013 at 04:30 PM. </div> </body> </html> \ No newline at end of file diff --git a/http-routingtable.html b/http-routingtable.html index 1eecdca..1b14b34 100644 --- a/http-routingtable.html +++ b/http-routingtable.html @@ -606,7 +606,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jun 27, 2013 at 09:13 AM. + Last updated on Jul 19, 2013 at 04:30 PM. </div> </body> </html> \ No newline at end of file diff --git a/index.html b/index.html index 099638d..5dd9151 100644 --- a/index.html +++ b/index.html @@ -99,6 +99,12 @@ <h3>Navigation</h3> <div class="section" id="emma-api"> <h1>Emma API<a class="headerlink" href="#emma-api" title="Permalink to this headline">¶</a></h1> +<div class="section" id="support"> +<h2>Support<a class="headerlink" href="#support" title="Permalink to this headline">¶</a></h2> +<p>Use the documentation here to set up and troubleshoot your API calls. We don’t offer one-on-one support +for Emma’s public API, but our system is monitored around the clock. If there’s ever a dropped connection +or outage, we’ll notify users on our <a class="reference external" href="http://myemma.com/status">status page</a>.</p> +</div> <div class="section" id="overview"> <h2>Overview<a class="headerlink" href="#overview" title="Permalink to this headline">¶</a></h2> <p>Emma’s platform is accessible through our public API. The API provides access @@ -290,6 +296,7 @@ <h2>Additional Documentation<a class="headerlink" href="#additional-documentatio <h3><a href="#">Table Of Contents</a></h3> <ul> <li><a class="reference internal" href="#">Emma API</a><ul> +<li><a class="reference internal" href="#support">Support</a></li> <li><a class="reference internal" href="#overview">Overview</a></li> <li><a class="reference internal" href="#api-wrappers">API Wrappers</a></li> <li><a class="reference internal" href="#quickstart">Quickstart</a></li> @@ -341,7 +348,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jun 27, 2013 at 09:13 AM. + Last updated on Jul 19, 2013 at 04:30 PM. </div> </body> </html> \ No newline at end of file diff --git a/member_search.html b/member_search.html index 2c6f455..389b4eb 100644 --- a/member_search.html +++ b/member_search.html @@ -255,7 +255,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jun 27, 2013 at 09:13 AM. + Last updated on Jul 19, 2013 at 04:30 PM. </div> </body> </html> \ No newline at end of file diff --git a/pagination.html b/pagination.html index c06a0a6..fbaae06 100644 --- a/pagination.html +++ b/pagination.html @@ -167,7 +167,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jun 27, 2013 at 09:13 AM. + Last updated on Jul 19, 2013 at 04:30 PM. </div> </body> </html> \ No newline at end of file diff --git a/php_get_member_example.html b/php_get_member_example.html index 7795ced..b79fe5e 100644 --- a/php_get_member_example.html +++ b/php_get_member_example.html @@ -182,7 +182,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jun 27, 2013 at 09:13 AM. + Last updated on Jul 19, 2013 at 04:30 PM. </div> </body> </html> \ No newline at end of file diff --git a/php_signup_example.html b/php_signup_example.html index c1960fb..1bd2269 100644 --- a/php_signup_example.html +++ b/php_signup_example.html @@ -204,7 +204,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jun 27, 2013 at 09:13 AM. + Last updated on Jul 19, 2013 at 04:30 PM. </div> </body> </html> \ No newline at end of file diff --git a/placeholders.html b/placeholders.html index bd0c8c4..c9640d5 100644 --- a/placeholders.html +++ b/placeholders.html @@ -182,7 +182,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jun 27, 2013 at 09:13 AM. + Last updated on Jul 19, 2013 at 04:30 PM. </div> </body> </html> \ No newline at end of file diff --git a/search.html b/search.html index 5efd59f..2b06e3c 100644 --- a/search.html +++ b/search.html @@ -154,7 +154,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jun 27, 2013 at 09:13 AM. + Last updated on Jul 19, 2013 at 04:30 PM. </div> </body> </html> \ No newline at end of file diff --git a/searchindex.js b/searchindex.js index e807e1a..16377c9 100644 --- a/searchindex.js +++ b/searchindex.js @@ -1 +1 @@ -Search.setIndex({envversion:42,terms:{all:[0,1,4,5,8,9,10,11,12,13,14],code:[0,1,6,3],change_typ:8,queri:[0,2,4],month:[0,5,9,14],four:[0,5],mile:0,least:0,follow:[0,1,4,5,7,9,11,13],link_target:[5,9],privat:1,specif:[8,9,4],friendli:5,send:[1,9,4,3,5],program:1,customer_share_click:5,those:[1,12,5],group_upd:[12,4],sent:[5,8,12,9,14],curl_clos:[1,6,3],brown:[7,8],digit:5,everi:0,string:[0,4,5,7,8,9,10,12,13,14],fals:[1,3,4,5,6,7,8,9,10,13,14],mailing_status:9,trigger_id:14,webview_share_click:5,affect:[7,8],member_add:[12,4],create_mail:9,new_boolean:10,foo:0,level:1,group_delet:[12,4],list:[0,1,2,4,5,7,8,9,10,11,12,13,14],upload:8,iter:2,"try":8,item:2,plaintext_onli:[9,14],div:[4,5,7,8,9,10,13,14],survey_id:14,setup:1,pleas:[1,8,11,9],prevent:2,work:[1,4],ten:0,sync:10,sign:[0,5,4],past:1,second:[0,7,14],field_creat:[12,4],further:1,shortcut_nam:10,click:[0,4,5,7,8,14],append:2,even:10,what:1,hide:[4,5,7,8,9,10,13,14],appear:[1,8],from_group_id:13,section:1,current:[1,8,12,9],delet:[1,4,7,8,9,10,13,14],"new":[1,4,5,7,8,9,10,11,13,14],net:[1,2,6,3],delivery_t:8,method:[5,8,13,4,9],can:[0,1,2,4,5,7,8,9,11,12,13],widget:[7,10,8,9,13],full:1,hash:0,datematch:0,displai:10,variat:9,gener:[0,8,12,14],onli:[5,8],here:[0,1,3,5,6,8],bodi:9,let:[1,4,10],address:[0,1,8,6,9],along:8,sinc:8,valu:[0,5,7,8,10,11],field_upd:[12,4],search:[8,9],survei:14,sender:[9,14],larger:2,queue:5,prior:9,action:[0,8],chang:[8,4],campaign:5,newbi:5,appli:[7,14],prefer:0,young:1,myemma:[4,5,7,8,9,13],filenam:8,customer_shar:5,"boolean":[1,5,7,8,9,10,13,14],curlopt_postfield:[1,3],total:5,jone:[7,5,8,13],select:[1,10],newslett:[7,8,13],describ:7,would:[0,1],commun:1,regist:4,two:[0,5],coverag:1,next:[0,1],create_webhook:4,few:[5,8],call:[8,4],criteria:7,member_add_to_group:[12,4],type:[1,3,4,5,6,7,10,9,14],until:2,more:[0,4,7,8,9,13],peopl:5,relat:[1,8,11,9],about:[10,8,12,4,9],notic:8,thide:[4,5,7,8,9,10,13,14],flag:[5,7,8,10,9,14],exce:2,indic:8,examin:1,particular:[1,4,5,8,10,12,9],in_progress:5,origin:9,must:[0,7,13,10],none:9,endpoint:[1,4,5,7,8,9,10,13,14],join:[0,7],hour:0,der:1,member_sinc:[0,5,7,8,9,13],uniqu:5,histori:8,soup:7,remain:[0,9],archiv:[5,9],member_optout:[12,4],drill:5,control:[1,11,9],give:5,forward_mailing_id:5,email_domain:[0,5],share:[0,5,8,4],accept:[0,5,7,8,9,10,11,13,14],total_click:5,tag:[11,9],want:[1,12,13,5],occur:[7,12],some_numeric_field:0,delai:14,alwai:0,webhook_event_id:4,cours:1,multipl:[10,8],first_nam:[1,3,5,7,8,9,10,11,13,14],started_or_finish:[9,14],anoth:[9,13],get:[1,4,5,7,8,9,10,13,14],message_open:[12,4],html_bodi:[9,14],share_statu:5,push_offset:14,del_statu:5,tild:5,num_members_upd:8,simpl:0,chri:9,pizza:[7,8],map:0,birthdai:[10,14],referenc:7,xxxx:6,sundai:0,jacqu:1,membership:13,taco:[7,5,8,9,13],mai:12,end:[2,8],data:[1,10,4,3,5],grow:1,welcom:11,add_onli:8,"short":0,json_encod:[1,3],optout:[5,8,13],num_dupl:8,favorit:10,correspond:[0,1],greet:11,predic:1,issu:[1,10],"12t11":[7,5,8,9,13],combin:7,allow:[0,7,8],some_zipcode_field:0,signed_up:5,order:[5,10],michel:[8,9],mailing_nam:5,checkbox:10,fields_upd:8,over:2,becaus:12,buyer:[7,8,9,13],comma:[9,13],is_dis:14,vari:8,paramet:[2,4,5,7,8,9,10,13,14],widget_typ:10,style:[0,4,5,7,8,9,10,13,14],curl_setopt:[1,6,3],how:[7,1,2,4],fix:1,import_start:8,better:[13,14],platform:1,pend:[1,9],mailing_list:9,onc:9,hidden:13,main:1,might:[1,4],link_nam:[5,9],them:[8,9],messag:[4,5,8,11,9,14],"return":[0,1,4,5,7,8,9,10,12,13,14],greater:[0,8],thei:[0,9],food:10,timestamp:[0,5,12,9,10],spell:4,nashvil:1,dai:0,auth:1,instead:[12,2,8],now:5,down:5,term:1,alex:9,name:[0,4,5,7,8,9,10,11,13,14],edit:[7,1,14,10],curl_getinfo:[1,6,3],authent:[1,6,4,3],successufulli:4,separ:[1,9,13],each:[1,2,5,9,12,11,13],found:[8,9,4,14],updat:[4,7,8,9,10,13,14],denni:1,status:[8,9],domain:0,weight:[4,5,7,8,9,10,13,14],resum:9,individu:[5,8],hard:[0,5],last_nam:[1,3,5,7,8,9,10,11,13,14],"05t15":5,connect:[1,6,3],doug:1,our:[1,11,12,4,14],happen:[1,4,5],commiss:1,short_display_nam:10,special:[0,7,8,13],out:[0,1,4,5,7,8,10,13],variabl:[1,6,3],message_shar:[12,4],"27t09":[7,14],network:[5,12],private_api_kei:[1,6,3],check_multipl:10,content:[1,11,6,9,3],rel:0,print:6,correct:10,integr:1,benjamin:[1,8],qualifi:11,insid:1,advanc:0,contain:[0,5,7,13,10,9],differ:0,standard:[5,9],status_from:8,base:[5,8],recipient_search:9,dictionari:8,put:[4,7,8,9,10,13,14],span:[4,5,7,8,9,10,13,14],"13t23":[7,5,8],refer:[5,7,8,13,10,9],visit:11,could:1,omit:5,success:[1,3,7,8,9,13],filter:[7,1],search_id:7,pagin:1,member_id:[5,7,8,9,12,13],summari:[1,5],assign:9,first:[0,1,10,5],oper:[7,1,14],rang:5,notifi:12,directli:0,curlopt_ssl_verifyp:[1,6,3],curl_init:[1,6,3],number:[5,2,13,3,10],placehold:1,date:[5,8,14,10],unlik:9,alreadi:[10,8,9,13],done:8,plaintext_pref:[7,8,9,13],oppos:8,open:[0,3,4,5,6,7,8],payload:4,fanci:5,size:2,given:[0,8,9,4],"long":10,script:1,associ:[1,8,9,4,5],system:[8,12,4,14],construct:[0,7,9],attach:11,easier:12,friend:11,curlinfo_http_cod:[1,6,3],shell:0,option:[0,5,7,8,9,10,13,14],especi:8,signup:[0,1,4,5,8,14],copi:[8,13],member_upd:[12,4],specifi:[0,2,7,8,10,11,9,14],curl_exec:[1,6,3],curlopt_httphead:[1,6,3],member_signup:[12,4],create_search:7,part:[0,9],enclos:11,initi:[10,9],than:[0,1,2,3,12,13],with_plaintext:9,"02t10":[5,8],"02t11":[5,8],"02t13":5,nathan:8,whenev:8,provid:[1,5,8,12,9,14],remov:[8,13,4],mailing_start:4,rate:2,structur:7,charact:9,greg:8,trackabl:11,were:5,minut:0,danc:1,error_count:[7,8,9,13],pre:[4,5,7,8,9,10,13,14],cleaner:1,sai:0,share_id:5,signup_form_id:[0,8,12,9,14],plaintext:[5,9,14],pass:[1,3],ani:[0,1,2,7,8,9],have:[0,1,5,8,12,9],tabl:5,need:1,seen:5,"null":[7,8,13,10,9,14],kevin:[9,14],signup_mail:0,caus:14,built:1,inform:[1,4,6,8,9,10,13],object_id:14,note:[1,8,9,4],also:[0,4,5,7,8,9,11,13],exampl:[0,1,7,5],take:[0,4],which:[0,1,4,8,10,12,9,14],some_number_field:0,singl:[0,1,3,4,5,8,10,12,13],excit:11,sure:1,delete_memb:13,normal:9,parent_mail:14,recipient_count:[5,9,14],previou:9,field_id:[10,12,14],last_run_at:7,most:14,pair:11,"class":[4,5,7,8,9,10,13,14],don:1,member_group_id:[8,9,13],mcconnel:[9,14],url:[1,3,4,5,6,12],mailing_finish:[12,4],clear:10,request:[1,2,3],doe:[0,5,7,8,9,10,13],member_status_upd:[12,4],declar:9,tech:4,determin:1,dataset:10,dow:0,recipi:9,"6db0cc7e6fdb2da589b65f29d90c96b6":9,show:[4,5,7,8,9,10,11,13,14],text:[10,11,12],radiu:0,syntax:[1,9],radio:10,font:[4,5,7,8,9,10,13,14],fine:9,find:[1,6,5],status_to:8,toast:[7,5,8,13],access:[1,5],giant:12,just:[0,1,9],pretti:8,column_ord:10,explain:[0,1],winner:9,activ:[1,5,7,8,13,9],figur:1,should:[1,2,3,7,8,11,9],templat:[11,14],share_count:5,count:[1,2,3,5],variou:[8,13],confirmed_opt_in:[7,8,9,13],familiar:1,express:0,account:[1,4,5,7,8,10,13,14],repo:1,cannot:[8,9,4],progress:9,report:[10,8],requir:[1,7,8,10,11,9],object:[1,13,5],favorite_food:[5,7,8,13,10,9],bar:0,organ:1,include_archiv:[5,9],"public":1,"default":[5,11,13,4,9],ref_member_id:5,message_share_click:[12,4],through:[1,8,4],where:[0,1,8,11,7],view:1,user:[0,8,9,13],set:[0,1,2,3,6,8,9,12,13],link_id:[0,5,12,9,14],see:[7,1,8],result:[0,1,2,5,8,9],respons:[10,8,9,13],fail:[5,9,4],themselv:2,member_field:[0,7],xxxxx:6,subject:[8,12,9,14],statu:[1,4,5,7,8,9,13],fancyonion:11,kei:[0,1,8,11,4],is_schedul:9,message_forward:[12,4],databas:8,someth:1,last_modified_at:[7,8,9,13],addresse:5,written:1,between:[0,7,2],clicked_uniqu:5,"import":[1,8,4,10],subscript:[1,3],entiti:1,curlopt_url:[1,6,3],email:[0,1,5,7,8,9,13],wide:14,extend:1,numer:10,http404:[4,5,7,8,9,10,13,14],job:13,entir:[0,8],share_click:5,to_group_id:13,curlopt_returntransf:[1,6,3],addit:[8,9,13],member_remove_from_group:[12,4],send_start:[0,9,14],protect:1,accident:2,last:[0,5,10],delimit:5,lentil:7,pertain:5,message_click:[12,4],curlopt_post:[1,3],audienc:[1,8,9],mang:0,improv:1,http500:14,seri:5,com:[4,5,6,7,8,9,11,13],zip_code_field:0,"03t15":[7,5,8,13],point:1,toni:[7,8],overview:5,period:1,colon:[7,11],optout_count:[7,8,9,13],suppli:9,cancel:9,tuesdai:0,duplic:5,quit:[5,8],user_id:4,recur:14,headsup:9,addition:[1,2],due:5,been:[1,8,10,5],mark:[8,9],whom:9,tshow:[4,5,7,8,9,10,13,14],trigger:[5,7,8,13,10,9],unsubscrib:0,treat:8,interest:[10,4],basic:[0,1,4,8,13,14],monthli:[7,8,13],member_delet:[12,4],hesit:1,blob:4,email_us:[0,5],mailing_mailing_id:5,mailing_id:[0,5,8,12,9,14],fire:[8,4,14],xxx:[1,3],rubi:1,argument:[0,5],bulk:[1,8],input:1,present:7,statist:8,"case":[1,8],look:[1,14,10],frozen:9,durat:9,email_error:[7,8,9,13],defin:[0,10,8,9],"while":0,smith:[7,5,8,9,13],outcom:5,abov:[0,1,8,7],error:[1,3,6,8,10,13],veen:1,loop:8,opt:[0,4,5,7,8,13],readi:9,deliv:5,recipient_group:9,equal:0,itself:0,new_statu:12,webhook_id:4,develop:1,recipient_memb:9,perform:8,make:[1,12,6,10],belong:[0,8,4],same:4,check:[8,6,9],member:[10,9,13],python:1,html:9,split:9,complet:[1,3,4,6,8,9],week:0,finish:[5,4],http:[1,2,3,4,5,6,11,9],href:[4,5,7,8,9,10,13,14],nest:0,someon:4,rais:[4,5,7,8,9,10,13,14],winner_id:9,php:1,studi:1,recent:[1,8],kept:11,center:0,min:5,well:[1,5],inherit:9,person:9,mailing_typ:[9,14],without:[0,1],command:1,thi:[0,1,4,5,7,8,9,10,12,13,14],undefin:0,http_code:[1,6,3],latest:11,identifi:8,paus:9,execut:[1,3],less:0,resp:[4,5,7,8,9,10,13,14],"_post":[1,3],against:0,aspect:13,recipient_email:9,source_filenam:8,yet:5,languag:1,"12t09":[7,8],display_nam:10,easi:[1,12,10],"01t00":8,had:0,littl:1,blog:4,add:[1,8,13,3],other:[1,8,9,3,5],curlopt_userpwd:[1,6,3],import_finish:[8,12,4],schedul:9,els:[1,6,3],save:7,match:[0,7],build:1,sanit:1,applic:[1,6,3],account_id:[1,3,4,5,6,7,8,9,10,12,13,14],handl:1,disposit:1,crud:[8,13,14],print_r:[6,3],mailing_statu:[9,14],know:[1,4,5],background:13,parent_mailing_id:[9,14],bit:1,insert:11,emma:[7,5,8,9,13],like:1,onion:11,deprec:4,arbitrari:8,manual:9,integ:[1,8,14,10,5],collect:1,api:8,either:[0,5,7],bunch:0,output:9,group_id:[1,8,12,3],soft:[0,5],manag:[0,1,13,4],import_id:[8,12],www:[5,9],old:7,deal:[8,13],captur:1,arrai:[0,1,3,5,6,7,8,9,10,12,13,14],some:[1,11,5],field_delet:[12,4],certain:12,intern:10,sampl:[1,4,5,7,8,9,10,13,14],elaps:[2,9],unless:1,deleted_at:[7,8,13,10,9,14],some_string_field:0,librari:11,woodcock:1,emmarubi:1,bounce_count:[7,8,9,13],emmapython:1,public_kei:4,deliveri:5,broad:12,per:5,send_finish:[9,14],larg:[0,2],condit:7,three:9,network_cod:12,localhost:9,emmaphp:1,with_html_bodi:9,who:[0,5,8],bold:[4,5,7,8,9,10,13,14],event_typ:14,inspect:1,usag:[1,8],monsewicz:1,num_members_ad:8,fulli:11,from:[1,4,8,9,13,14],post:[1,3,4,7,8,9,10,13,14],group_creat:[12,4],gladi:[7,5,8,13],hurst:1,actual:5,zip:0,groups_upd:8,column:10,page:2,includ:[1,5,7,8,9,10,13],webview:9,mean:0,disabl:[9,14],block:[1,2],yyyi:5,own:1,member_data:[1,3],glob:0,bounc:[0,5],within:[0,8],encod:[9,4],delivery_typ:[5,8],compos:0,webview_shar:5,field_typ:10,active_count:[7,8,9,13],public_webview_url:9,pivot:5,your:[1,4,5,7,8,9,10,13],websit:11,fast:8,van:1,wai:[1,12],area:1,overus:2,group_nam:[8,12,13,9],support:12,unique_click:5,json:[0,1,3,4,6,7],submit:1,custom:[5,8,11,10],avail:[0,11,4],start:[1,2,8,4],interfac:12,send_at:[9,14],exceed:2,"var":3,interv:14,fork:1,head:[1,6,9,3],form:[1,3,4,6,8,10,14],enough:2,forc:1,forward:[0,5,8,9,4],"31st":0,group_typ:[8,9,13],push_offset_unit:14,link:[0,4,5,11,9,14],line:[1,5],realli:1,"true":[0,1,2,3,4,6,7,8,9,10,13,14],archived_t:[9,14],info:4,pull:[1,2],made:1,possibl:[5,8,12],whether:8,maximum:2,tell:12,http403:9,record:[0,7,8],below:[0,1,8,12],http400:[7,8,9],limit:[5,2,8,9],some_array_field:0,otherwis:[1,8,10],start_t:14,mta:5,expect:1,notif:9,creat:[4,5,7,13,10,9,14],"int":5,retriev:[7,1,2,8,9],year:[0,5,9,14],repres:5,exist:[0,4,5,7,8,10,13],behavior:11,bob:[7,5],curl:[1,6],portland:1,probabl:14,echo:[1,3],successfulli:[5,8,9],mailing_subject:12,grp:13,extract:11,when:[8,12,4,9],detail:[1,4,7,8,9,10,13],invalid:[7,8,9],event:[4,7,8,13,12,9,14],valid:[5,8,9,13],futur:1,num_skip:8,test:[5,6,7,13,9,14],ignor:8,you:[0,1,2,4,5,7,8,9,10,11,12,13],emmasdk:1,member_status_id:[7,5,8,9,13],public_api_kei:[1,6,3],stat:[5,9],claus:[0,7],event_nam:[12,4],e2ma:[1,2,6,3],error_messag:8,param:[9,4],app_messag:[1,3],ella:8,link_ord:[5,9],receiv:[0,2,5,8,12,9],heads_up_email:9,longer:9,home:11,confirm:8,descript:[4,14],ohmyemma:1,portion:0,opted_out:5,time:[1,2,8,13,5],reply_to:[9,14],resource_url:12,hello:[11,9,14]},objtypes:{"0":"http:get","1":"http:put","2":"http:post","3":"http:delete"},objnames:{"0":["http","get","HTTP get"],"1":["http","put","HTTP put"],"2":["http","post","HTTP post"],"3":["http","delete","HTTP delete"]},filenames:["member_search","index","pagination","php_signup_example","api/external/webhooks","api/external/response","php_get_member_example","api/external/searches","api/external/members","api/external/mailings","api/external/fields","placeholders","webhooks","api/external/groups","api/external/triggers"],titles:["Search Syntax","Emma API","Pagination","PHP Signup Example","Webhooks","Response","PHP Get Member By Email Example","Searches","Members","Mailings","Fields","Placeholder Syntax","Webhook Usage","Groups","Triggers"],objects:{"":{"/#account_id/members/#member_id/groups/remove":[8,1,1,"put--#account_id-members-#member_id-groups-remove"],"/#account_id/mailings/#mailing_id/winner/#winner_id":[9,2,1,"post--#account_id-mailings-#mailing_id-winner-#winner_id"],"/#account_id/response/#mailing_id/in_progress":[5,0,1,"get--#account_id-response-#mailing_id-in_progress"],"/#account_id/members/groups/remove":[8,1,1,"put--#account_id-members-groups-remove"],"/#account_id/mailings/#mailing_id/searches":[9,0,1,"get--#account_id-mailings-#mailing_id-searches"],"/#account_id/fields":[10,2,1,"post--#account_id-fields"],"/#account_id/members/#group_id/copy":[8,1,1,"put--#account_id-members-#group_id-copy"],"/#account_id/members/status":[8,1,1,"put--#account_id-members-status"],"/#account_id/response/#mailing_id/shares/overview":[5,0,1,"get--#account_id-response-#mailing_id-shares-overview"],"/#account_id/webhooks/events":[4,0,1,"get--#account_id-webhooks-events"],"/#account_id/members/#member_id/optout":[8,0,1,"get--#account_id-members-#member_id-optout"],"/#account_id/webhooks":[4,3,1,"delete--#account_id-webhooks"],"/#account_id/fields/#field_id":[10,3,1,"delete--#account_id-fields-#field_id"],"/#account_id/response/#mailing_id":[5,0,1,"get--#account_id-response-#mailing_id"],"/#account_id/groups/#member_group_id/members/remove":[13,3,1,"delete--#account_id-groups-#member_group_id-members-remove"],"/#account_id/searches":[7,2,1,"post--#account_id-searches"],"/#account_id/members/imports":[8,0,1,"get--#account_id-members-imports"],"/#account_id/forwards/#mailing_id/#member_id":[9,2,1,"post--#account_id-forwards-#mailing_id-#member_id"],"/#account_id/response/#mailing_id/customer_share_clicks":[5,0,1,"get--#account_id-response-#mailing_id-customer_share_clicks"],"/#account_id/mailings/#mailing_id/messages/#member_id":[9,0,1,"get--#account_id-mailings-#mailing_id-messages-#member_id"],"/#account_id/members/#member_id/mailings":[8,0,1,"get--#account_id-members-#member_id-mailings"],"/#account_id/groups/#from_group_id/#to_group_id/members/copy":[13,1,1,"put--#account_id-groups-#from_group_id-#to_group_id-members-copy"],"/#account_id/triggers":[14,2,1,"post--#account_id-triggers"],"/#account_id/triggers/#trigger_id":[14,3,1,"delete--#account_id-triggers-#trigger_id"],"/#account_id/members/delete":[8,1,1,"put--#account_id-members-delete"],"/#account_id/mailings/#mailing_id/groups":[9,0,1,"get--#account_id-mailings-#mailing_id-groups"],"/#account_id/response/#mailing_id/forwards":[5,0,1,"get--#account_id-response-#mailing_id-forwards"],"/#account_id/members/#member_id":[8,3,1,"delete--#account_id-members-#member_id"],"/#account_id/triggers/#trigger_id/mailings":[14,0,1,"get--#account_id-triggers-#trigger_id-mailings"],"/#account_id/searches/#search_id/members":[7,0,1,"get--#account_id-searches-#search_id-members"],"/#account_id/members/status/:status_from/to/:status_to":[8,1,1,"put--#account_id-members-status--status_from-to--status_to"],"/#account_id/response/#mailing_id/sends":[5,0,1,"get--#account_id-response-#mailing_id-sends"],"/#account_id/members":[8,3,1,"delete--#account_id-members"],"/#account_id/members/email/:email":[8,0,1,"get--#account_id-members-email--email"],"/#account_id/response/#mailing_id/links":[5,0,1,"get--#account_id-response-#mailing_id-links"],"/#account_id/searches/#search_id":[7,3,1,"delete--#account_id-searches-#search_id"],"/#account_id/members/imports/#import_id/members":[8,0,1,"get--#account_id-members-imports-#import_id-members"],"/#account_id/fields/#field_id/clear":[10,2,1,"post--#account_id-fields-#field_id-clear"],"/#account_id/groups/#member_group_id/members":[13,3,1,"delete--#account_id-groups-#member_group_id-members"],"/#account_id/members/imports/#import_id":[8,0,1,"get--#account_id-members-imports-#import_id"],"/#account_id/response":[5,0,1,"get--#account_id-response"],"/#account_id/response/#mailing_id/opens":[5,0,1,"get--#account_id-response-#mailing_id-opens"],"/#account_id/members/imports/delete":[8,3,1,"delete--#account_id-members-imports-delete"],"/#account_id/mailings":[9,0,1,"get--#account_id-mailings"],"/#account_id/mailings/cancel/#mailing_id":[9,3,1,"delete--#account_id-mailings-cancel-#mailing_id"],"/#account_id/mailings/validate":[9,2,1,"post--#account_id-mailings-validate"],"/#account_id/response/#mailing_id/deliveries":[5,0,1,"get--#account_id-response-#mailing_id-deliveries"],"/#account_id/mailings/#mailing_id/members":[9,0,1,"get--#account_id-mailings-#mailing_id-members"],"/#account_id/response/#share_id/customer_share":[5,0,1,"get--#account_id-response-#share_id-customer_share"],"/#account_id/webhooks/#webhook_id":[4,3,1,"delete--#account_id-webhooks-#webhook_id"],"/#account_id/members/add":[8,2,1,"post--#account_id-members-add"],"/#account_id/members/email/optout/:email":[8,1,1,"put--#account_id-members-email-optout--email"],"/#account_id/response/#mailing_id/optouts":[5,0,1,"get--#account_id-response-#mailing_id-optouts"],"/#account_id/response/#mailing_id/shares":[5,0,1,"get--#account_id-response-#mailing_id-shares"],"/#account_id/groups/#member_group_id":[13,3,1,"delete--#account_id-groups-#member_group_id"],"/#account_id/mailings/#mailing_id":[9,3,1,"delete--#account_id-mailings-#mailing_id"],"/#account_id/members/#member_id/groups":[8,3,1,"delete--#account_id-members-#member_id-groups"],"/#account_id/groups":[13,2,1,"post--#account_id-groups"],"/#account_id/response/#mailing_id/clicks":[5,0,1,"get--#account_id-response-#mailing_id-clicks"],"/#account_id/mailings/#mailing_id/headsup":[9,0,1,"get--#account_id-mailings-#mailing_id-headsup"],"/#account_id/response/#mailing_id/signups":[5,0,1,"get--#account_id-response-#mailing_id-signups"],"/#account_id/response/#mailing_id/customer_shares":[5,0,1,"get--#account_id-response-#mailing_id-customer_shares"]}},titleterms:{oper:0,quickstart:1,creat:12,api:1,overview:[0,1,11,12],interv:0,share:12,syntax:[0,11],"boolean":0,wrapper:1,respons:5,open:12,click:12,categori:1,statu:12,group:[12,13],delet:12,todo:11,messag:12,member:[8,6,12],field:[10,12],add:12,trigger:14,call:1,forward:12,mail:[12,9],document:1,email:6,updat:12,finish:12,get:6,webhook:[12,4],signup:[12,3],usag:12,search:[0,7],"import":12,date:0,from:12,post:12,php:[6,3],data:12,addit:1,placehold:11,term:0,emma:1,optout:12,remov:12,predic:0,filter:0,exampl:[6,3],pagin:2}}) \ No newline at end of file +Search.setIndex({envversion:42,terms:{all:[0,1,4,5,8,9,10,11,12,13,14],code:[0,1,6,3],change_typ:8,queri:[0,2,4],month:[0,5,9,14],four:[0,5],mile:0,least:0,follow:[0,1,4,5,7,9,11,13],link_target:[5,9],privat:1,specif:[8,9,4],friendli:5,send:[1,9,4,3,5],program:1,customer_share_click:5,those:[1,12,5],group_upd:[12,4],sent:[5,8,12,9,14],curl_clos:[1,6,3],brown:[7,8],digit:5,everi:0,string:[0,4,5,7,8,9,10,12,13,14],fals:[1,3,4,5,6,7,8,9,10,13,14],end:[2,8],mailing_status:9,trigger_id:14,webview_share_click:5,affect:[7,8],member_add:[12,4],create_mail:9,new_boolean:10,foo:0,level:1,group_delet:[12,4],list:[0,1,2,4,5,7,8,9,10,11,12,13,14],upload:8,iter:2,"try":8,item:2,plaintext_onli:[9,14],div:[4,5,7,8,9,10,13,14],survey_id:14,setup:1,pleas:[1,8,11,9],prevent:2,work:[1,4],ten:0,sync:10,sign:[0,5,4],past:1,second:[0,7,14],field_creat:[12,4],further:1,shortcut_nam:10,click:[0,4,5,7,8,14],append:2,even:10,what:1,hide:[4,5,7,8,9,10,13,14],appear:[1,8],clock:1,section:1,current:[1,8,12,9],delet:[1,4,7,8,9,10,13,14],"new":[1,4,5,7,8,9,10,11,13,14],net:[1,2,6,3],delivery_t:8,ever:1,method:[5,8,13,4,9],can:[0,1,2,4,5,7,8,9,11,12,13],widget:[7,10,8,9,13],full:1,hash:0,datematch:0,displai:10,variat:9,gener:[0,8,12,14],onli:[5,8],here:[0,1,3,5,6,8],bodi:9,let:[1,4,10],address:[0,1,8,6,9],along:8,sinc:8,valu:[0,5,7,8,10,11],field_upd:[12,4],search:[8,9],survei:14,sender:[9,14],larger:2,queue:5,prior:9,action:[0,8],chang:[8,4],campaign:5,newbi:5,appli:[7,14],prefer:0,young:1,myemma:[4,5,7,8,9,13],filenam:8,customer_shar:5,"boolean":[1,5,7,8,9,10,13,14],curlopt_postfield:[1,3],total:5,jone:[7,5,8,13],select:[1,10],newslett:[7,8,13],describ:7,would:[0,1],commun:1,from_group_id:13,regist:4,two:[0,5],coverag:1,next:[0,1],create_webhook:4,few:[5,8],call:[8,4],criteria:7,member_add_to_group:[12,4],type:[1,3,4,5,6,7,10,9,14],until:2,more:[0,4,7,8,9,13],peopl:5,relat:[1,8,11,9],about:[10,8,12,4,9],notic:8,thide:[4,5,7,8,9,10,13,14],flag:[5,7,8,10,9,14],exce:2,indic:8,examin:1,particular:[1,4,5,8,10,12,9],in_progress:5,curl_getinfo:[1,6,3],origin:9,must:[0,7,13,10],none:9,endpoint:[1,4,5,7,8,9,10,13,14],join:[0,7],hour:0,der:1,member_sinc:[0,5,7,8,9,13],uniqu:5,histori:8,soup:7,remain:[0,9],archiv:[5,9],member_optout:[12,4],drill:5,control:[1,11,9],give:5,forward_mailing_id:5,email_domain:[0,5],share:[0,5,8,4],accept:[0,5,7,8,9,10,11,13,14],total_click:5,tag:[11,9],want:[1,12,13,5],occur:[7,12],some_numeric_field:0,delai:14,alwai:0,webhook_event_id:4,cours:1,multipl:[10,8],first_nam:[1,3,5,7,8,9,10,11,13,14],started_or_finish:[9,14],anoth:[9,13],get:[1,4,5,7,8,9,10,13,14],message_open:[12,4],html_bodi:[9,14],share_statu:5,push_offset:14,del_statu:5,tild:5,num_members_upd:8,simpl:0,chri:9,pizza:[7,8],map:0,birthdai:[10,14],referenc:7,sundai:0,jacqu:1,membership:13,taco:[7,5,8,9,13],mai:12,xxxx:6,associ:[1,8,9,4,5],grow:1,welcom:11,add_onli:8,"short":0,json_encod:[1,3],optout:[5,8,13],num_dupl:8,favorit:10,correspond:[0,1],greet:11,predic:1,issu:[1,10],"12t11":[7,5,8,9,13],combin:7,allow:[0,7,8],some_zipcode_field:0,signed_up:5,order:[5,10],michel:[8,9],mailing_nam:5,checkbox:10,fields_upd:8,over:2,becaus:12,buyer:[7,8,9,13],comma:[9,13],is_dis:14,vari:8,paramet:[2,4,5,7,8,9,10,13,14],widget_typ:10,style:[0,4,5,7,8,9,10,13,14],monitor:1,how:[7,1,2,4],fix:1,import_start:8,better:[13,14],platform:1,pend:[1,9],mailing_list:9,onc:9,hidden:13,main:1,might:[1,4],link_nam:[5,9],them:[8,9],messag:[4,5,8,11,9,14],"return":[0,1,4,5,7,8,9,10,12,13,14],greater:[0,8],thei:[0,9],food:10,timestamp:[0,5,12,9,10],spell:4,nashvil:1,dai:0,auth:1,instead:[12,2,8],now:5,down:5,term:1,alex:9,name:[0,4,5,7,8,9,10,11,13,14],edit:[7,1,14,10],troubleshoot:1,drop:1,authent:[1,6,4,3],successufulli:4,separ:[1,9,13],each:[1,2,5,9,12,11,13],found:[8,9,4,14],updat:[4,7,8,9,10,13,14],denni:1,status:[8,9],domain:0,weight:[4,5,7,8,9,10,13,14],resum:9,individu:[5,8],hard:[0,5],last_nam:[1,3,5,7,8,9,10,11,13,14],"05t15":5,connect:[1,6,3],doug:1,our:[1,11,12,4,14],happen:[1,4,5],commiss:1,short_display_nam:10,special:[0,7,8,13],out:[0,1,4,5,7,8,10,13],variabl:[1,6,3],message_shar:[12,4],network:[5,12],private_api_kei:[1,6,3],check_multipl:10,content:[1,11,6,9,3],rel:0,print:6,correct:10,integr:1,benjamin:[1,8],qualifi:11,insid:1,advanc:0,contain:[0,5,7,13,10,9],given:[0,8,9,4],standard:[5,9],status_from:8,base:[5,8],recipient_search:9,dictionari:8,put:[4,7,8,9,10,13,14],span:[4,5,7,8,9,10,13,14],"13t23":[7,5,8],refer:[5,7,8,13,10,9],visit:11,could:1,omit:5,success:[1,3,7,8,9,13],filter:[7,1],search_id:7,pagin:1,member_id:[5,7,8,9,12,13],summari:[1,5],assign:9,first:[0,1,10,5],oper:[7,1,14],rang:5,notifi:[1,12],directli:0,curlopt_ssl_verifyp:[1,6,3],curl_init:[1,6,3],number:[5,2,13,3,10],placehold:1,date:[5,8,14,10],unlik:9,alreadi:[10,8,9,13],done:8,plaintext_pref:[7,8,9,13],oppos:8,open:[0,3,4,5,6,7,8],payload:4,fanci:5,size:2,differ:0,"long":10,script:1,data:[1,10,4,3,5],system:[1,8,12,4,14],construct:[0,7,9],attach:11,outag:1,friend:11,curlinfo_http_cod:[1,6,3],shell:0,option:[0,5,7,8,9,10,13,14],especi:8,signup:[0,1,4,5,8,14],copi:[8,13],member_upd:[12,4],specifi:[0,2,7,8,10,11,9,14],curl_exec:[1,6,3],curlopt_httphead:[1,6,3],member_signup:[12,4],create_search:7,part:[0,9],enclos:11,initi:[10,9],than:[0,1,2,3,12,13],with_plaintext:9,"02t10":[5,8],"02t11":[5,8],"02t13":5,nathan:8,whenev:8,provid:[1,5,8,12,9,14],remov:[8,13,4],mailing_start:4,rate:2,structur:7,charact:9,greg:8,trackabl:11,were:5,minut:0,danc:1,error_count:[7,8,9,13],pre:[4,5,7,8,9,10,13,14],cleaner:1,sai:0,share_id:5,signup_form_id:[0,8,12,9,14],plaintext:[5,9,14],pass:[1,3],ani:[0,1,2,7,8,9],have:[0,1,5,8,12,9],tabl:5,need:1,seen:5,"null":[7,8,13,10,9,14],kevin:[9,14],signup_mail:0,caus:14,built:1,inform:[1,4,6,8,9,10,13],check:[8,6,9],offer:1,object_id:14,note:[1,8,9,4],also:[0,4,5,7,8,9,11,13],exampl:[0,1,7,5],take:[0,4],which:[0,1,4,8,10,12,9,14],some_number_field:0,datacent:[9,14],singl:[0,1,3,4,5,8,10,12,13],excit:11,sure:1,delete_memb:13,normal:9,parent_mail:14,recipient_count:[5,9,14],previou:9,field_id:[10,12,14],last_run_at:7,most:14,pair:11,"class":[4,5,7,8,9,10,13,14],don:1,member_group_id:[8,9,13],mcconnel:[9,14],url:[1,3,4,5,6,12],mailing_finish:[12,4],clear:10,request:[1,2,3],doe:[0,5,7,8,9,10,13],member_status_upd:[12,4],declar:9,tech:4,determin:1,dataset:10,dow:0,recipi:9,"6db0cc7e6fdb2da589b65f29d90c96b6":9,show:[4,5,7,8,9,10,11,13,14],text:[10,11,12],radiu:0,syntax:[1,9],radio:10,font:[4,5,7,8,9,10,13,14],fine:9,find:[1,6,5],status_to:8,toast:[7,5,8,13],access:[1,5],giant:12,just:[0,1,9],pretti:8,column_ord:10,explain:[0,1],winner:9,activ:[1,5,7,8,13,9],figur:1,should:[1,2,3,7,8,11,9],templat:[11,14],share_count:5,count:[1,2,3,5],variou:[8,13],confirmed_opt_in:[7,8,9,13],familiar:1,express:0,account:[1,4,5,7,8,10,13,14],repo:1,cannot:[8,9,4],progress:9,report:[10,8],requir:[1,7,8,10,11,9],object:[1,13,5],favorite_food:[5,7,8,13,10,9],bar:0,organ:1,include_archiv:[5,9],"public":1,"default":[5,11,13,4,9],ref_member_id:5,message_share_click:[12,4],through:[1,8,4],where:[0,1,8,11,7],view:1,user:[0,1,8,9,13],set:[0,1,2,3,6,8,9,12,13],link_id:[0,5,12,9,14],see:[7,1,8],result:[0,1,2,5,8,9],respons:[10,8,9,13],fail:[5,9,4],themselv:2,member_field:[0,7],xxxxx:6,subject:[8,12,9,14],statu:[1,4,5,7,8,9,13],fancyonion:11,kei:[0,1,8,11,4],is_schedul:9,message_forward:[12,4],databas:8,someth:1,last_modified_at:[7,8,9,13],addresse:5,written:1,between:[0,7,2],clicked_uniqu:5,"import":[1,8,4,10],subscript:[1,3],entiti:1,curlopt_url:[1,6,3],email:[0,1,5,7,8,9,13],"19t16":[7,14],wide:14,extend:1,numer:10,http404:[4,5,7,8,9,10,13,14],job:13,entir:[0,8],share_click:5,to_group_id:13,curlopt_returntransf:[1,6,3],curl_setopt:[1,6,3],member_remove_from_group:[12,4],send_start:[0,9,14],protect:1,accident:2,last:[0,5,10],delimit:5,lentil:7,pertain:5,message_click:[12,4],curlopt_post:[1,3],audienc:[1,8,9],mang:0,improv:1,http500:14,seri:5,com:[4,5,6,7,8,9,11,13],zip_code_field:0,"03t15":[7,5,8,13],point:1,toni:[7,8],overview:5,period:1,colon:[7,11],optout_count:[7,8,9,13],suppli:9,cancel:9,tuesdai:0,duplic:5,quit:[5,8],user_id:4,recur:14,headsup:9,addition:[1,2],due:5,been:[1,8,10,5],mark:[8,9],whom:9,tshow:[4,5,7,8,9,10,13,14],trigger:[5,7,8,13,10,9],unsubscrib:0,treat:8,interest:[10,4],basic:[0,1,4,8,13,14],monthli:[7,8,13],addit:[8,9,13],member_delet:[12,4],hesit:1,blob:4,email_us:[0,5],mailing_mailing_id:5,mailing_id:[0,5,8,12,9,14],fire:[8,4,14],xxx:[1,3],rubi:1,argument:[0,5],bulk:[1,8],input:1,present:7,statist:8,"case":[1,8],look:[1,14,10],frozen:9,durat:9,email_error:[7,8,9,13],defin:[0,10,8,9],"while":0,smith:[7,5,8,9,13],outcom:5,abov:[0,1,8,7],error:[1,3,6,8,10,13],veen:1,loop:8,opt:[0,4,5,7,8,13],readi:9,deliv:5,recipient_group:9,equal:0,itself:0,new_statu:12,webhook_id:4,account_id:[1,3,4,5,6,7,8,9,10,12,13,14],develop:1,recipient_memb:9,perform:8,make:[1,12,6,10],belong:[0,8,4],same:4,easier:12,member:[10,9,13],python:1,html:9,split:9,complet:[1,3,4,6,8,9],week:0,finish:[5,4],http:[1,2,3,4,5,6,11,9],href:[4,5,7,8,9,10,13,14],nest:0,someon:4,rais:[4,5,7,8,9,10,13,14],winner_id:9,php:1,studi:1,recent:[1,8],kept:11,center:0,min:5,well:[1,5],inherit:9,person:9,mailing_typ:[9,14],without:[0,1],command:1,thi:[0,1,4,5,7,8,9,10,12,13,14],undefin:0,http_code:[1,6,3],latest:11,identifi:8,paus:9,execut:[1,3],less:0,resp:[4,5,7,8,9,10,13,14],"_post":[1,3],against:0,aspect:13,recipient_email:9,source_filenam:8,yet:5,languag:1,"12t09":[7,8],display_nam:10,easi:[1,12,10],"01t00":8,had:0,littl:1,blog:4,add:[1,8,13,3],other:[1,8,9,3,5],curlopt_userpwd:[1,6,3],import_finish:[8,12,4],schedul:9,els:[1,6,3],save:7,match:[0,7],build:1,sanit:1,applic:[1,6,3],around:1,handl:1,disposit:1,crud:[8,13,14],print_r:[6,3],mailing_statu:[9,14],know:[1,4,5],background:13,parent_mailing_id:[9,14],bit:1,insert:11,emma:[7,5,8,9,13],like:1,onion:11,deprec:4,arbitrari:8,manual:9,integ:[1,8,14,10,5],collect:1,api:8,either:[0,5,7],bunch:0,output:9,group_id:[1,8,12,3],soft:[0,5],manag:[0,1,13,4],import_id:[8,12],www:[5,9],old:7,deal:[8,13],captur:1,arrai:[0,1,3,5,6,7,8,9,10,12,13,14],some:[1,11,5],field_delet:[12,4],certain:12,intern:10,sampl:[1,4,5,7,8,9,10,13,14],elaps:[2,9],unless:1,deleted_at:[7,8,13,10,9,14],some_string_field:0,librari:11,woodcock:1,emmarubi:1,bounce_count:[7,8,9,13],emmapython:1,public_kei:4,deliveri:5,broad:12,per:5,send_finish:[9,14],larg:[0,2],condit:7,three:9,network_cod:12,localhost:9,emmaphp:1,with_html_bodi:9,who:[0,5,8],bold:[4,5,7,8,9,10,13,14],event_typ:14,inspect:1,usag:[1,8],monsewicz:1,num_members_ad:8,fulli:11,from:[1,4,8,9,13,14],post:[1,3,4,7,8,9,10,13,14],group_creat:[12,4],gladi:[7,5,8,13],hurst:1,actual:5,zip:0,groups_upd:8,column:10,page:[1,2],includ:[1,5,7,8,9,10,13],webview:9,mean:0,disabl:[9,14],block:[1,2],yyyi:5,own:1,member_data:[1,3],glob:0,bounc:[0,5],within:[0,8],encod:[9,4],delivery_typ:[5,8],compos:0,webview_shar:5,field_typ:10,active_count:[7,8,9,13],public_webview_url:9,pivot:5,your:[1,4,5,7,8,9,10,13],websit:11,fast:8,van:1,wai:[1,12],area:1,overus:2,group_nam:[8,12,13,9],unique_click:5,json:[0,1,3,4,6,7],submit:1,custom:[5,8,11,10],avail:[0,11,4],start:[1,2,8,4],interfac:12,send_at:[9,14],exceed:2,"var":3,purged_at:[7,8,9,13,14],interv:14,fork:1,head:[1,6,9,3],form:[1,3,4,6,8,10,14],enough:2,forc:1,forward:[0,5,8,9,4],"31st":0,group_typ:[8,9,13],push_offset_unit:14,link:[0,4,5,11,9,14],line:[1,5],realli:1,"true":[0,1,2,3,4,6,7,8,9,10,13,14],archived_t:[9,14],info:4,pull:[1,2],made:1,possibl:[5,8,12],whether:8,maximum:2,tell:12,http403:9,record:[0,7,8],below:[0,1,8,12],http400:[7,8,9],limit:[5,2,8,9],some_array_field:0,otherwis:[1,8,10],start_t:14,mta:5,expect:1,notif:9,creat:[4,5,7,13,10,9,14],"int":5,retriev:[7,1,2,8,9],year:[0,5,9,14],repres:5,exist:[0,4,5,7,8,10,13],behavior:11,bob:[7,5],curl:[1,6],portland:1,probabl:14,echo:[1,3],successfulli:[5,8,9],mailing_subject:12,grp:13,extract:11,when:[8,12,4,9],detail:[1,4,7,8,9,10,13],invalid:[7,8,9],event:[4,7,8,13,12,9,14],valid:[5,8,9,13],futur:1,num_skip:8,test:[5,6,7,13,9,14],ignor:8,you:[0,1,2,4,5,7,8,9,10,11,12,13],emmasdk:1,member_status_id:[7,5,8,9,13],public_api_kei:[1,6,3],stat:[5,9],claus:[0,7],event_nam:[12,4],e2ma:[1,2,6,3],error_messag:8,param:[9,4],app_messag:[1,3],ella:8,link_ord:[5,9],receiv:[0,2,5,8,12,9],heads_up_email:9,longer:9,home:11,confirm:8,descript:[4,14],ohmyemma:1,portion:0,opted_out:5,time:[1,2,8,13,5],reply_to:[9,14],resource_url:12,hello:[11,9,14]},objtypes:{"0":"http:get","1":"http:put","2":"http:post","3":"http:delete"},objnames:{"0":["http","get","HTTP get"],"1":["http","put","HTTP put"],"2":["http","post","HTTP post"],"3":["http","delete","HTTP delete"]},filenames:["member_search","index","pagination","php_signup_example","api/external/webhooks","api/external/response","php_get_member_example","api/external/searches","api/external/members","api/external/mailings","api/external/fields","placeholders","webhooks","api/external/groups","api/external/triggers"],titles:["Search Syntax","Emma API","Pagination","PHP Signup Example","Webhooks","Response","PHP Get Member By Email Example","Searches","Members","Mailings","Fields","Placeholder Syntax","Webhook Usage","Groups","Triggers"],objects:{"":{"/#account_id/members/#member_id/groups/remove":[8,1,1,"put--#account_id-members-#member_id-groups-remove"],"/#account_id/mailings/#mailing_id/winner/#winner_id":[9,2,1,"post--#account_id-mailings-#mailing_id-winner-#winner_id"],"/#account_id/response/#mailing_id/in_progress":[5,0,1,"get--#account_id-response-#mailing_id-in_progress"],"/#account_id/members/groups/remove":[8,1,1,"put--#account_id-members-groups-remove"],"/#account_id/mailings/#mailing_id/searches":[9,0,1,"get--#account_id-mailings-#mailing_id-searches"],"/#account_id/fields":[10,2,1,"post--#account_id-fields"],"/#account_id/members/#group_id/copy":[8,1,1,"put--#account_id-members-#group_id-copy"],"/#account_id/members/status":[8,1,1,"put--#account_id-members-status"],"/#account_id/response/#mailing_id/shares/overview":[5,0,1,"get--#account_id-response-#mailing_id-shares-overview"],"/#account_id/webhooks/events":[4,0,1,"get--#account_id-webhooks-events"],"/#account_id/members/#member_id/optout":[8,0,1,"get--#account_id-members-#member_id-optout"],"/#account_id/webhooks":[4,3,1,"delete--#account_id-webhooks"],"/#account_id/fields/#field_id":[10,3,1,"delete--#account_id-fields-#field_id"],"/#account_id/response/#mailing_id":[5,0,1,"get--#account_id-response-#mailing_id"],"/#account_id/groups/#member_group_id/members/remove":[13,3,1,"delete--#account_id-groups-#member_group_id-members-remove"],"/#account_id/searches":[7,2,1,"post--#account_id-searches"],"/#account_id/members/imports":[8,0,1,"get--#account_id-members-imports"],"/#account_id/forwards/#mailing_id/#member_id":[9,2,1,"post--#account_id-forwards-#mailing_id-#member_id"],"/#account_id/response/#mailing_id/customer_share_clicks":[5,0,1,"get--#account_id-response-#mailing_id-customer_share_clicks"],"/#account_id/mailings/#mailing_id/messages/#member_id":[9,0,1,"get--#account_id-mailings-#mailing_id-messages-#member_id"],"/#account_id/members/#member_id/mailings":[8,0,1,"get--#account_id-members-#member_id-mailings"],"/#account_id/groups/#from_group_id/#to_group_id/members/copy":[13,1,1,"put--#account_id-groups-#from_group_id-#to_group_id-members-copy"],"/#account_id/triggers":[14,2,1,"post--#account_id-triggers"],"/#account_id/triggers/#trigger_id":[14,3,1,"delete--#account_id-triggers-#trigger_id"],"/#account_id/members/delete":[8,1,1,"put--#account_id-members-delete"],"/#account_id/mailings/#mailing_id/groups":[9,0,1,"get--#account_id-mailings-#mailing_id-groups"],"/#account_id/response/#mailing_id/forwards":[5,0,1,"get--#account_id-response-#mailing_id-forwards"],"/#account_id/members/#member_id":[8,3,1,"delete--#account_id-members-#member_id"],"/#account_id/triggers/#trigger_id/mailings":[14,0,1,"get--#account_id-triggers-#trigger_id-mailings"],"/#account_id/searches/#search_id/members":[7,0,1,"get--#account_id-searches-#search_id-members"],"/#account_id/members/status/:status_from/to/:status_to":[8,1,1,"put--#account_id-members-status--status_from-to--status_to"],"/#account_id/response/#mailing_id/sends":[5,0,1,"get--#account_id-response-#mailing_id-sends"],"/#account_id/members":[8,3,1,"delete--#account_id-members"],"/#account_id/members/email/:email":[8,0,1,"get--#account_id-members-email--email"],"/#account_id/response/#mailing_id/links":[5,0,1,"get--#account_id-response-#mailing_id-links"],"/#account_id/searches/#search_id":[7,3,1,"delete--#account_id-searches-#search_id"],"/#account_id/members/imports/#import_id/members":[8,0,1,"get--#account_id-members-imports-#import_id-members"],"/#account_id/fields/#field_id/clear":[10,2,1,"post--#account_id-fields-#field_id-clear"],"/#account_id/groups/#member_group_id/members":[13,3,1,"delete--#account_id-groups-#member_group_id-members"],"/#account_id/members/imports/#import_id":[8,0,1,"get--#account_id-members-imports-#import_id"],"/#account_id/response":[5,0,1,"get--#account_id-response"],"/#account_id/response/#mailing_id/opens":[5,0,1,"get--#account_id-response-#mailing_id-opens"],"/#account_id/members/imports/delete":[8,3,1,"delete--#account_id-members-imports-delete"],"/#account_id/mailings":[9,0,1,"get--#account_id-mailings"],"/#account_id/mailings/cancel/#mailing_id":[9,3,1,"delete--#account_id-mailings-cancel-#mailing_id"],"/#account_id/mailings/validate":[9,2,1,"post--#account_id-mailings-validate"],"/#account_id/response/#mailing_id/deliveries":[5,0,1,"get--#account_id-response-#mailing_id-deliveries"],"/#account_id/mailings/#mailing_id/members":[9,0,1,"get--#account_id-mailings-#mailing_id-members"],"/#account_id/response/#share_id/customer_share":[5,0,1,"get--#account_id-response-#share_id-customer_share"],"/#account_id/webhooks/#webhook_id":[4,3,1,"delete--#account_id-webhooks-#webhook_id"],"/#account_id/members/add":[8,2,1,"post--#account_id-members-add"],"/#account_id/members/email/optout/:email":[8,1,1,"put--#account_id-members-email-optout--email"],"/#account_id/response/#mailing_id/optouts":[5,0,1,"get--#account_id-response-#mailing_id-optouts"],"/#account_id/response/#mailing_id/shares":[5,0,1,"get--#account_id-response-#mailing_id-shares"],"/#account_id/groups/#member_group_id":[13,3,1,"delete--#account_id-groups-#member_group_id"],"/#account_id/mailings/#mailing_id":[9,3,1,"delete--#account_id-mailings-#mailing_id"],"/#account_id/members/#member_id/groups":[8,3,1,"delete--#account_id-members-#member_id-groups"],"/#account_id/groups":[13,2,1,"post--#account_id-groups"],"/#account_id/response/#mailing_id/clicks":[5,0,1,"get--#account_id-response-#mailing_id-clicks"],"/#account_id/mailings/#mailing_id/headsup":[9,0,1,"get--#account_id-mailings-#mailing_id-headsup"],"/#account_id/response/#mailing_id/signups":[5,0,1,"get--#account_id-response-#mailing_id-signups"],"/#account_id/response/#mailing_id/customer_shares":[5,0,1,"get--#account_id-response-#mailing_id-customer_shares"]}},titleterms:{oper:0,quickstart:1,creat:12,"boolean":0,overview:[0,1,11,12],interv:0,share:12,syntax:[0,11],api:1,wrapper:1,respons:5,open:12,click:12,categori:1,statu:12,group:[12,13],delet:12,todo:11,support:1,messag:12,member:[8,6,12],field:[10,12],add:12,trigger:14,call:1,forward:12,mail:[12,9],document:1,email:6,updat:12,finish:12,get:6,webhook:[12,4],signup:[12,3],usag:12,search:[0,7],"import":12,date:0,from:12,post:12,php:[6,3],data:12,addit:1,placehold:11,term:0,emma:1,optout:12,remov:12,predic:0,filter:0,exampl:[6,3],pagin:2}}) \ No newline at end of file diff --git a/webhooks.html b/webhooks.html index 99725ce..61ff1ea 100644 --- a/webhooks.html +++ b/webhooks.html @@ -506,7 +506,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jun 27, 2013 at 09:13 AM. + Last updated on Jul 19, 2013 at 04:30 PM. </div> </body> </html> \ No newline at end of file From 29f3889fa03cd91a05c015d4957c852d7b9045b5 Mon Sep 17 00:00:00 2001 From: rmacy <ryan@hackery.io> Date: Fri, 19 Jul 2013 16:37:01 -0500 Subject: [PATCH 048/219] Update audience documentation. --- _sources/index.txt | 4 ++-- api/external/fields.html | 2 +- api/external/groups.html | 2 +- api/external/mailings.html | 2 +- api/external/members.html | 2 +- api/external/response.html | 2 +- api/external/searches.html | 4 ++-- api/external/triggers.html | 8 ++++---- api/external/webhooks.html | 2 +- genindex.html | 2 +- http-routingtable.html | 2 +- index.html | 8 ++++---- member_search.html | 2 +- pagination.html | 2 +- php_get_member_example.html | 2 +- php_signup_example.html | 2 +- placeholders.html | 2 +- search.html | 2 +- searchindex.js | 2 +- webhooks.html | 2 +- 20 files changed, 28 insertions(+), 28 deletions(-) diff --git a/_sources/index.txt b/_sources/index.txt index ee18aa3..1840acc 100644 --- a/_sources/index.txt +++ b/_sources/index.txt @@ -1,8 +1,8 @@ Emma API ======== -Support -------- +A Word To The Wise... +--------------------- Use the documentation here to set up and troubleshoot your API calls. We don't offer one-on-one support for Emma's public API, but our system is monitored around the clock. If there's ever a dropped connection diff --git a/api/external/fields.html b/api/external/fields.html index 6a35d9b..a1d2b04 100644 --- a/api/external/fields.html +++ b/api/external/fields.html @@ -414,7 +414,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 19, 2013 at 04:30 PM. + Last updated on Jul 19, 2013 at 04:36 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/groups.html b/api/external/groups.html index 8a36fad..f30d620 100644 --- a/api/external/groups.html +++ b/api/external/groups.html @@ -708,7 +708,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 19, 2013 at 04:30 PM. + Last updated on Jul 19, 2013 at 04:36 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/mailings.html b/api/external/mailings.html index a8b196d..39c25e1 100644 --- a/api/external/mailings.html +++ b/api/external/mailings.html @@ -818,7 +818,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 19, 2013 at 04:30 PM. + Last updated on Jul 19, 2013 at 04:36 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/members.html b/api/external/members.html index 642574e..5c93c13 100644 --- a/api/external/members.html +++ b/api/external/members.html @@ -1219,7 +1219,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 19, 2013 at 04:30 PM. + Last updated on Jul 19, 2013 at 04:36 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/response.html b/api/external/response.html index d110855..153e2a3 100644 --- a/api/external/response.html +++ b/api/external/response.html @@ -1018,7 +1018,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 19, 2013 at 04:30 PM. + Last updated on Jul 19, 2013 at 04:36 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/searches.html b/api/external/searches.html index 86d699f..6c28856 100644 --- a/api/external/searches.html +++ b/api/external/searches.html @@ -201,7 +201,7 @@ <h1>Searches<a class="headerlink" href="#searches" title="Permalink to this head "criteria": "[\"or\", [\"group\", \"eq\", \"Monthly Newsletter\"],[\"group\", \"eq\", \"Widget Buyers\"]]", "deleted_at": null, "purged_at": null, - "last_run_at": "@D:2013-07-19T16:30:05", + "last_run_at": "@D:2013-07-19T16:36:57", "active_count": 2, "account_id": 100 } @@ -513,7 +513,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 19, 2013 at 04:30 PM. + Last updated on Jul 19, 2013 at 04:36 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/triggers.html b/api/external/triggers.html index 6590638..3a9d82e 100644 --- a/api/external/triggers.html +++ b/api/external/triggers.html @@ -149,7 +149,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": 203, "push_offset_units": "0:-14:0:0", - "start_ts": "@D:2013-07-19T16:30:03", + "start_ts": "@D:2013-07-19T16:36:55", "trigger_id": 100, "signups": null, "push_offset": "@I:-1209600.0", @@ -192,7 +192,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": null, "push_offset_units": "0:3:0:0", - "start_ts": "@D:2013-07-19T16:30:03", + "start_ts": "@D:2013-07-19T16:36:55", "trigger_id": 101, "signups": [ 1, @@ -331,7 +331,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": 203, "push_offset_units": "0:-14:0:0", - "start_ts": "@D:2013-07-19T16:30:03", + "start_ts": "@D:2013-07-19T16:36:55", "trigger_id": 100, "signups": null, "push_offset": "@I:-1209600.0", @@ -506,7 +506,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 19, 2013 at 04:30 PM. + Last updated on Jul 19, 2013 at 04:36 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/webhooks.html b/api/external/webhooks.html index 3397efc..b4c0fce 100644 --- a/api/external/webhooks.html +++ b/api/external/webhooks.html @@ -486,7 +486,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 19, 2013 at 04:30 PM. + Last updated on Jul 19, 2013 at 04:36 PM. </div> </body> </html> \ No newline at end of file diff --git a/genindex.html b/genindex.html index 23b2dc7..2150f46 100644 --- a/genindex.html +++ b/genindex.html @@ -144,7 +144,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 19, 2013 at 04:30 PM. + Last updated on Jul 19, 2013 at 04:36 PM. </div> </body> </html> \ No newline at end of file diff --git a/http-routingtable.html b/http-routingtable.html index 1b14b34..ce08e38 100644 --- a/http-routingtable.html +++ b/http-routingtable.html @@ -606,7 +606,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 19, 2013 at 04:30 PM. + Last updated on Jul 19, 2013 at 04:36 PM. </div> </body> </html> \ No newline at end of file diff --git a/index.html b/index.html index 5dd9151..a0f1eb3 100644 --- a/index.html +++ b/index.html @@ -99,8 +99,8 @@ <h3>Navigation</h3> <div class="section" id="emma-api"> <h1>Emma API<a class="headerlink" href="#emma-api" title="Permalink to this headline">¶</a></h1> -<div class="section" id="support"> -<h2>Support<a class="headerlink" href="#support" title="Permalink to this headline">¶</a></h2> +<div class="section" id="a-word-to-the-wise"> +<h2>A Word To The Wise...<a class="headerlink" href="#a-word-to-the-wise" title="Permalink to this headline">¶</a></h2> <p>Use the documentation here to set up and troubleshoot your API calls. We don’t offer one-on-one support for Emma’s public API, but our system is monitored around the clock. If there’s ever a dropped connection or outage, we’ll notify users on our <a class="reference external" href="http://myemma.com/status">status page</a>.</p> @@ -296,7 +296,7 @@ <h2>Additional Documentation<a class="headerlink" href="#additional-documentatio <h3><a href="#">Table Of Contents</a></h3> <ul> <li><a class="reference internal" href="#">Emma API</a><ul> -<li><a class="reference internal" href="#support">Support</a></li> +<li><a class="reference internal" href="#a-word-to-the-wise">A Word To The Wise...</a></li> <li><a class="reference internal" href="#overview">Overview</a></li> <li><a class="reference internal" href="#api-wrappers">API Wrappers</a></li> <li><a class="reference internal" href="#quickstart">Quickstart</a></li> @@ -348,7 +348,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 19, 2013 at 04:30 PM. + Last updated on Jul 19, 2013 at 04:36 PM. </div> </body> </html> \ No newline at end of file diff --git a/member_search.html b/member_search.html index 389b4eb..a7a6981 100644 --- a/member_search.html +++ b/member_search.html @@ -255,7 +255,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 19, 2013 at 04:30 PM. + Last updated on Jul 19, 2013 at 04:36 PM. </div> </body> </html> \ No newline at end of file diff --git a/pagination.html b/pagination.html index fbaae06..89fe5c7 100644 --- a/pagination.html +++ b/pagination.html @@ -167,7 +167,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 19, 2013 at 04:30 PM. + Last updated on Jul 19, 2013 at 04:36 PM. </div> </body> </html> \ No newline at end of file diff --git a/php_get_member_example.html b/php_get_member_example.html index b79fe5e..b0b451b 100644 --- a/php_get_member_example.html +++ b/php_get_member_example.html @@ -182,7 +182,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 19, 2013 at 04:30 PM. + Last updated on Jul 19, 2013 at 04:36 PM. </div> </body> </html> \ No newline at end of file diff --git a/php_signup_example.html b/php_signup_example.html index 1bd2269..4b48823 100644 --- a/php_signup_example.html +++ b/php_signup_example.html @@ -204,7 +204,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 19, 2013 at 04:30 PM. + Last updated on Jul 19, 2013 at 04:36 PM. </div> </body> </html> \ No newline at end of file diff --git a/placeholders.html b/placeholders.html index c9640d5..d194f4c 100644 --- a/placeholders.html +++ b/placeholders.html @@ -182,7 +182,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 19, 2013 at 04:30 PM. + Last updated on Jul 19, 2013 at 04:36 PM. </div> </body> </html> \ No newline at end of file diff --git a/search.html b/search.html index 2b06e3c..d945346 100644 --- a/search.html +++ b/search.html @@ -154,7 +154,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 19, 2013 at 04:30 PM. + Last updated on Jul 19, 2013 at 04:36 PM. </div> </body> </html> \ No newline at end of file diff --git a/searchindex.js b/searchindex.js index 16377c9..f5be6e6 100644 --- a/searchindex.js +++ b/searchindex.js @@ -1 +1 @@ -Search.setIndex({envversion:42,terms:{all:[0,1,4,5,8,9,10,11,12,13,14],code:[0,1,6,3],change_typ:8,queri:[0,2,4],month:[0,5,9,14],four:[0,5],mile:0,least:0,follow:[0,1,4,5,7,9,11,13],link_target:[5,9],privat:1,specif:[8,9,4],friendli:5,send:[1,9,4,3,5],program:1,customer_share_click:5,those:[1,12,5],group_upd:[12,4],sent:[5,8,12,9,14],curl_clos:[1,6,3],brown:[7,8],digit:5,everi:0,string:[0,4,5,7,8,9,10,12,13,14],fals:[1,3,4,5,6,7,8,9,10,13,14],end:[2,8],mailing_status:9,trigger_id:14,webview_share_click:5,affect:[7,8],member_add:[12,4],create_mail:9,new_boolean:10,foo:0,level:1,group_delet:[12,4],list:[0,1,2,4,5,7,8,9,10,11,12,13,14],upload:8,iter:2,"try":8,item:2,plaintext_onli:[9,14],div:[4,5,7,8,9,10,13,14],survey_id:14,setup:1,pleas:[1,8,11,9],prevent:2,work:[1,4],ten:0,sync:10,sign:[0,5,4],past:1,second:[0,7,14],field_creat:[12,4],further:1,shortcut_nam:10,click:[0,4,5,7,8,14],append:2,even:10,what:1,hide:[4,5,7,8,9,10,13,14],appear:[1,8],clock:1,section:1,current:[1,8,12,9],delet:[1,4,7,8,9,10,13,14],"new":[1,4,5,7,8,9,10,11,13,14],net:[1,2,6,3],delivery_t:8,ever:1,method:[5,8,13,4,9],can:[0,1,2,4,5,7,8,9,11,12,13],widget:[7,10,8,9,13],full:1,hash:0,datematch:0,displai:10,variat:9,gener:[0,8,12,14],onli:[5,8],here:[0,1,3,5,6,8],bodi:9,let:[1,4,10],address:[0,1,8,6,9],along:8,sinc:8,valu:[0,5,7,8,10,11],field_upd:[12,4],search:[8,9],survei:14,sender:[9,14],larger:2,queue:5,prior:9,action:[0,8],chang:[8,4],campaign:5,newbi:5,appli:[7,14],prefer:0,young:1,myemma:[4,5,7,8,9,13],filenam:8,customer_shar:5,"boolean":[1,5,7,8,9,10,13,14],curlopt_postfield:[1,3],total:5,jone:[7,5,8,13],select:[1,10],newslett:[7,8,13],describ:7,would:[0,1],commun:1,from_group_id:13,regist:4,two:[0,5],coverag:1,next:[0,1],create_webhook:4,few:[5,8],call:[8,4],criteria:7,member_add_to_group:[12,4],type:[1,3,4,5,6,7,10,9,14],until:2,more:[0,4,7,8,9,13],peopl:5,relat:[1,8,11,9],about:[10,8,12,4,9],notic:8,thide:[4,5,7,8,9,10,13,14],flag:[5,7,8,10,9,14],exce:2,indic:8,examin:1,particular:[1,4,5,8,10,12,9],in_progress:5,curl_getinfo:[1,6,3],origin:9,must:[0,7,13,10],none:9,endpoint:[1,4,5,7,8,9,10,13,14],join:[0,7],hour:0,der:1,member_sinc:[0,5,7,8,9,13],uniqu:5,histori:8,soup:7,remain:[0,9],archiv:[5,9],member_optout:[12,4],drill:5,control:[1,11,9],give:5,forward_mailing_id:5,email_domain:[0,5],share:[0,5,8,4],accept:[0,5,7,8,9,10,11,13,14],total_click:5,tag:[11,9],want:[1,12,13,5],occur:[7,12],some_numeric_field:0,delai:14,alwai:0,webhook_event_id:4,cours:1,multipl:[10,8],first_nam:[1,3,5,7,8,9,10,11,13,14],started_or_finish:[9,14],anoth:[9,13],get:[1,4,5,7,8,9,10,13,14],message_open:[12,4],html_bodi:[9,14],share_statu:5,push_offset:14,del_statu:5,tild:5,num_members_upd:8,simpl:0,chri:9,pizza:[7,8],map:0,birthdai:[10,14],referenc:7,sundai:0,jacqu:1,membership:13,taco:[7,5,8,9,13],mai:12,xxxx:6,associ:[1,8,9,4,5],grow:1,welcom:11,add_onli:8,"short":0,json_encod:[1,3],optout:[5,8,13],num_dupl:8,favorit:10,correspond:[0,1],greet:11,predic:1,issu:[1,10],"12t11":[7,5,8,9,13],combin:7,allow:[0,7,8],some_zipcode_field:0,signed_up:5,order:[5,10],michel:[8,9],mailing_nam:5,checkbox:10,fields_upd:8,over:2,becaus:12,buyer:[7,8,9,13],comma:[9,13],is_dis:14,vari:8,paramet:[2,4,5,7,8,9,10,13,14],widget_typ:10,style:[0,4,5,7,8,9,10,13,14],monitor:1,how:[7,1,2,4],fix:1,import_start:8,better:[13,14],platform:1,pend:[1,9],mailing_list:9,onc:9,hidden:13,main:1,might:[1,4],link_nam:[5,9],them:[8,9],messag:[4,5,8,11,9,14],"return":[0,1,4,5,7,8,9,10,12,13,14],greater:[0,8],thei:[0,9],food:10,timestamp:[0,5,12,9,10],spell:4,nashvil:1,dai:0,auth:1,instead:[12,2,8],now:5,down:5,term:1,alex:9,name:[0,4,5,7,8,9,10,11,13,14],edit:[7,1,14,10],troubleshoot:1,drop:1,authent:[1,6,4,3],successufulli:4,separ:[1,9,13],each:[1,2,5,9,12,11,13],found:[8,9,4,14],updat:[4,7,8,9,10,13,14],denni:1,status:[8,9],domain:0,weight:[4,5,7,8,9,10,13,14],resum:9,individu:[5,8],hard:[0,5],last_nam:[1,3,5,7,8,9,10,11,13,14],"05t15":5,connect:[1,6,3],doug:1,our:[1,11,12,4,14],happen:[1,4,5],commiss:1,short_display_nam:10,special:[0,7,8,13],out:[0,1,4,5,7,8,10,13],variabl:[1,6,3],message_shar:[12,4],network:[5,12],private_api_kei:[1,6,3],check_multipl:10,content:[1,11,6,9,3],rel:0,print:6,correct:10,integr:1,benjamin:[1,8],qualifi:11,insid:1,advanc:0,contain:[0,5,7,13,10,9],given:[0,8,9,4],standard:[5,9],status_from:8,base:[5,8],recipient_search:9,dictionari:8,put:[4,7,8,9,10,13,14],span:[4,5,7,8,9,10,13,14],"13t23":[7,5,8],refer:[5,7,8,13,10,9],visit:11,could:1,omit:5,success:[1,3,7,8,9,13],filter:[7,1],search_id:7,pagin:1,member_id:[5,7,8,9,12,13],summari:[1,5],assign:9,first:[0,1,10,5],oper:[7,1,14],rang:5,notifi:[1,12],directli:0,curlopt_ssl_verifyp:[1,6,3],curl_init:[1,6,3],number:[5,2,13,3,10],placehold:1,date:[5,8,14,10],unlik:9,alreadi:[10,8,9,13],done:8,plaintext_pref:[7,8,9,13],oppos:8,open:[0,3,4,5,6,7,8],payload:4,fanci:5,size:2,differ:0,"long":10,script:1,data:[1,10,4,3,5],system:[1,8,12,4,14],construct:[0,7,9],attach:11,outag:1,friend:11,curlinfo_http_cod:[1,6,3],shell:0,option:[0,5,7,8,9,10,13,14],especi:8,signup:[0,1,4,5,8,14],copi:[8,13],member_upd:[12,4],specifi:[0,2,7,8,10,11,9,14],curl_exec:[1,6,3],curlopt_httphead:[1,6,3],member_signup:[12,4],create_search:7,part:[0,9],enclos:11,initi:[10,9],than:[0,1,2,3,12,13],with_plaintext:9,"02t10":[5,8],"02t11":[5,8],"02t13":5,nathan:8,whenev:8,provid:[1,5,8,12,9,14],remov:[8,13,4],mailing_start:4,rate:2,structur:7,charact:9,greg:8,trackabl:11,were:5,minut:0,danc:1,error_count:[7,8,9,13],pre:[4,5,7,8,9,10,13,14],cleaner:1,sai:0,share_id:5,signup_form_id:[0,8,12,9,14],plaintext:[5,9,14],pass:[1,3],ani:[0,1,2,7,8,9],have:[0,1,5,8,12,9],tabl:5,need:1,seen:5,"null":[7,8,13,10,9,14],kevin:[9,14],signup_mail:0,caus:14,built:1,inform:[1,4,6,8,9,10,13],check:[8,6,9],offer:1,object_id:14,note:[1,8,9,4],also:[0,4,5,7,8,9,11,13],exampl:[0,1,7,5],take:[0,4],which:[0,1,4,8,10,12,9,14],some_number_field:0,datacent:[9,14],singl:[0,1,3,4,5,8,10,12,13],excit:11,sure:1,delete_memb:13,normal:9,parent_mail:14,recipient_count:[5,9,14],previou:9,field_id:[10,12,14],last_run_at:7,most:14,pair:11,"class":[4,5,7,8,9,10,13,14],don:1,member_group_id:[8,9,13],mcconnel:[9,14],url:[1,3,4,5,6,12],mailing_finish:[12,4],clear:10,request:[1,2,3],doe:[0,5,7,8,9,10,13],member_status_upd:[12,4],declar:9,tech:4,determin:1,dataset:10,dow:0,recipi:9,"6db0cc7e6fdb2da589b65f29d90c96b6":9,show:[4,5,7,8,9,10,11,13,14],text:[10,11,12],radiu:0,syntax:[1,9],radio:10,font:[4,5,7,8,9,10,13,14],fine:9,find:[1,6,5],status_to:8,toast:[7,5,8,13],access:[1,5],giant:12,just:[0,1,9],pretti:8,column_ord:10,explain:[0,1],winner:9,activ:[1,5,7,8,13,9],figur:1,should:[1,2,3,7,8,11,9],templat:[11,14],share_count:5,count:[1,2,3,5],variou:[8,13],confirmed_opt_in:[7,8,9,13],familiar:1,express:0,account:[1,4,5,7,8,10,13,14],repo:1,cannot:[8,9,4],progress:9,report:[10,8],requir:[1,7,8,10,11,9],object:[1,13,5],favorite_food:[5,7,8,13,10,9],bar:0,organ:1,include_archiv:[5,9],"public":1,"default":[5,11,13,4,9],ref_member_id:5,message_share_click:[12,4],through:[1,8,4],where:[0,1,8,11,7],view:1,user:[0,1,8,9,13],set:[0,1,2,3,6,8,9,12,13],link_id:[0,5,12,9,14],see:[7,1,8],result:[0,1,2,5,8,9],respons:[10,8,9,13],fail:[5,9,4],themselv:2,member_field:[0,7],xxxxx:6,subject:[8,12,9,14],statu:[1,4,5,7,8,9,13],fancyonion:11,kei:[0,1,8,11,4],is_schedul:9,message_forward:[12,4],databas:8,someth:1,last_modified_at:[7,8,9,13],addresse:5,written:1,between:[0,7,2],clicked_uniqu:5,"import":[1,8,4,10],subscript:[1,3],entiti:1,curlopt_url:[1,6,3],email:[0,1,5,7,8,9,13],"19t16":[7,14],wide:14,extend:1,numer:10,http404:[4,5,7,8,9,10,13,14],job:13,entir:[0,8],share_click:5,to_group_id:13,curlopt_returntransf:[1,6,3],curl_setopt:[1,6,3],member_remove_from_group:[12,4],send_start:[0,9,14],protect:1,accident:2,last:[0,5,10],delimit:5,lentil:7,pertain:5,message_click:[12,4],curlopt_post:[1,3],audienc:[1,8,9],mang:0,improv:1,http500:14,seri:5,com:[4,5,6,7,8,9,11,13],zip_code_field:0,"03t15":[7,5,8,13],point:1,toni:[7,8],overview:5,period:1,colon:[7,11],optout_count:[7,8,9,13],suppli:9,cancel:9,tuesdai:0,duplic:5,quit:[5,8],user_id:4,recur:14,headsup:9,addition:[1,2],due:5,been:[1,8,10,5],mark:[8,9],whom:9,tshow:[4,5,7,8,9,10,13,14],trigger:[5,7,8,13,10,9],unsubscrib:0,treat:8,interest:[10,4],basic:[0,1,4,8,13,14],monthli:[7,8,13],addit:[8,9,13],member_delet:[12,4],hesit:1,blob:4,email_us:[0,5],mailing_mailing_id:5,mailing_id:[0,5,8,12,9,14],fire:[8,4,14],xxx:[1,3],rubi:1,argument:[0,5],bulk:[1,8],input:1,present:7,statist:8,"case":[1,8],look:[1,14,10],frozen:9,durat:9,email_error:[7,8,9,13],defin:[0,10,8,9],"while":0,smith:[7,5,8,9,13],outcom:5,abov:[0,1,8,7],error:[1,3,6,8,10,13],veen:1,loop:8,opt:[0,4,5,7,8,13],readi:9,deliv:5,recipient_group:9,equal:0,itself:0,new_statu:12,webhook_id:4,account_id:[1,3,4,5,6,7,8,9,10,12,13,14],develop:1,recipient_memb:9,perform:8,make:[1,12,6,10],belong:[0,8,4],same:4,easier:12,member:[10,9,13],python:1,html:9,split:9,complet:[1,3,4,6,8,9],week:0,finish:[5,4],http:[1,2,3,4,5,6,11,9],href:[4,5,7,8,9,10,13,14],nest:0,someon:4,rais:[4,5,7,8,9,10,13,14],winner_id:9,php:1,studi:1,recent:[1,8],kept:11,center:0,min:5,well:[1,5],inherit:9,person:9,mailing_typ:[9,14],without:[0,1],command:1,thi:[0,1,4,5,7,8,9,10,12,13,14],undefin:0,http_code:[1,6,3],latest:11,identifi:8,paus:9,execut:[1,3],less:0,resp:[4,5,7,8,9,10,13,14],"_post":[1,3],against:0,aspect:13,recipient_email:9,source_filenam:8,yet:5,languag:1,"12t09":[7,8],display_nam:10,easi:[1,12,10],"01t00":8,had:0,littl:1,blog:4,add:[1,8,13,3],other:[1,8,9,3,5],curlopt_userpwd:[1,6,3],import_finish:[8,12,4],schedul:9,els:[1,6,3],save:7,match:[0,7],build:1,sanit:1,applic:[1,6,3],around:1,handl:1,disposit:1,crud:[8,13,14],print_r:[6,3],mailing_statu:[9,14],know:[1,4,5],background:13,parent_mailing_id:[9,14],bit:1,insert:11,emma:[7,5,8,9,13],like:1,onion:11,deprec:4,arbitrari:8,manual:9,integ:[1,8,14,10,5],collect:1,api:8,either:[0,5,7],bunch:0,output:9,group_id:[1,8,12,3],soft:[0,5],manag:[0,1,13,4],import_id:[8,12],www:[5,9],old:7,deal:[8,13],captur:1,arrai:[0,1,3,5,6,7,8,9,10,12,13,14],some:[1,11,5],field_delet:[12,4],certain:12,intern:10,sampl:[1,4,5,7,8,9,10,13,14],elaps:[2,9],unless:1,deleted_at:[7,8,13,10,9,14],some_string_field:0,librari:11,woodcock:1,emmarubi:1,bounce_count:[7,8,9,13],emmapython:1,public_kei:4,deliveri:5,broad:12,per:5,send_finish:[9,14],larg:[0,2],condit:7,three:9,network_cod:12,localhost:9,emmaphp:1,with_html_bodi:9,who:[0,5,8],bold:[4,5,7,8,9,10,13,14],event_typ:14,inspect:1,usag:[1,8],monsewicz:1,num_members_ad:8,fulli:11,from:[1,4,8,9,13,14],post:[1,3,4,7,8,9,10,13,14],group_creat:[12,4],gladi:[7,5,8,13],hurst:1,actual:5,zip:0,groups_upd:8,column:10,page:[1,2],includ:[1,5,7,8,9,10,13],webview:9,mean:0,disabl:[9,14],block:[1,2],yyyi:5,own:1,member_data:[1,3],glob:0,bounc:[0,5],within:[0,8],encod:[9,4],delivery_typ:[5,8],compos:0,webview_shar:5,field_typ:10,active_count:[7,8,9,13],public_webview_url:9,pivot:5,your:[1,4,5,7,8,9,10,13],websit:11,fast:8,van:1,wai:[1,12],area:1,overus:2,group_nam:[8,12,13,9],unique_click:5,json:[0,1,3,4,6,7],submit:1,custom:[5,8,11,10],avail:[0,11,4],start:[1,2,8,4],interfac:12,send_at:[9,14],exceed:2,"var":3,purged_at:[7,8,9,13,14],interv:14,fork:1,head:[1,6,9,3],form:[1,3,4,6,8,10,14],enough:2,forc:1,forward:[0,5,8,9,4],"31st":0,group_typ:[8,9,13],push_offset_unit:14,link:[0,4,5,11,9,14],line:[1,5],realli:1,"true":[0,1,2,3,4,6,7,8,9,10,13,14],archived_t:[9,14],info:4,pull:[1,2],made:1,possibl:[5,8,12],whether:8,maximum:2,tell:12,http403:9,record:[0,7,8],below:[0,1,8,12],http400:[7,8,9],limit:[5,2,8,9],some_array_field:0,otherwis:[1,8,10],start_t:14,mta:5,expect:1,notif:9,creat:[4,5,7,13,10,9,14],"int":5,retriev:[7,1,2,8,9],year:[0,5,9,14],repres:5,exist:[0,4,5,7,8,10,13],behavior:11,bob:[7,5],curl:[1,6],portland:1,probabl:14,echo:[1,3],successfulli:[5,8,9],mailing_subject:12,grp:13,extract:11,when:[8,12,4,9],detail:[1,4,7,8,9,10,13],invalid:[7,8,9],event:[4,7,8,13,12,9,14],valid:[5,8,9,13],futur:1,num_skip:8,test:[5,6,7,13,9,14],ignor:8,you:[0,1,2,4,5,7,8,9,10,11,12,13],emmasdk:1,member_status_id:[7,5,8,9,13],public_api_kei:[1,6,3],stat:[5,9],claus:[0,7],event_nam:[12,4],e2ma:[1,2,6,3],error_messag:8,param:[9,4],app_messag:[1,3],ella:8,link_ord:[5,9],receiv:[0,2,5,8,12,9],heads_up_email:9,longer:9,home:11,confirm:8,descript:[4,14],ohmyemma:1,portion:0,opted_out:5,time:[1,2,8,13,5],reply_to:[9,14],resource_url:12,hello:[11,9,14]},objtypes:{"0":"http:get","1":"http:put","2":"http:post","3":"http:delete"},objnames:{"0":["http","get","HTTP get"],"1":["http","put","HTTP put"],"2":["http","post","HTTP post"],"3":["http","delete","HTTP delete"]},filenames:["member_search","index","pagination","php_signup_example","api/external/webhooks","api/external/response","php_get_member_example","api/external/searches","api/external/members","api/external/mailings","api/external/fields","placeholders","webhooks","api/external/groups","api/external/triggers"],titles:["Search Syntax","Emma API","Pagination","PHP Signup Example","Webhooks","Response","PHP Get Member By Email Example","Searches","Members","Mailings","Fields","Placeholder Syntax","Webhook Usage","Groups","Triggers"],objects:{"":{"/#account_id/members/#member_id/groups/remove":[8,1,1,"put--#account_id-members-#member_id-groups-remove"],"/#account_id/mailings/#mailing_id/winner/#winner_id":[9,2,1,"post--#account_id-mailings-#mailing_id-winner-#winner_id"],"/#account_id/response/#mailing_id/in_progress":[5,0,1,"get--#account_id-response-#mailing_id-in_progress"],"/#account_id/members/groups/remove":[8,1,1,"put--#account_id-members-groups-remove"],"/#account_id/mailings/#mailing_id/searches":[9,0,1,"get--#account_id-mailings-#mailing_id-searches"],"/#account_id/fields":[10,2,1,"post--#account_id-fields"],"/#account_id/members/#group_id/copy":[8,1,1,"put--#account_id-members-#group_id-copy"],"/#account_id/members/status":[8,1,1,"put--#account_id-members-status"],"/#account_id/response/#mailing_id/shares/overview":[5,0,1,"get--#account_id-response-#mailing_id-shares-overview"],"/#account_id/webhooks/events":[4,0,1,"get--#account_id-webhooks-events"],"/#account_id/members/#member_id/optout":[8,0,1,"get--#account_id-members-#member_id-optout"],"/#account_id/webhooks":[4,3,1,"delete--#account_id-webhooks"],"/#account_id/fields/#field_id":[10,3,1,"delete--#account_id-fields-#field_id"],"/#account_id/response/#mailing_id":[5,0,1,"get--#account_id-response-#mailing_id"],"/#account_id/groups/#member_group_id/members/remove":[13,3,1,"delete--#account_id-groups-#member_group_id-members-remove"],"/#account_id/searches":[7,2,1,"post--#account_id-searches"],"/#account_id/members/imports":[8,0,1,"get--#account_id-members-imports"],"/#account_id/forwards/#mailing_id/#member_id":[9,2,1,"post--#account_id-forwards-#mailing_id-#member_id"],"/#account_id/response/#mailing_id/customer_share_clicks":[5,0,1,"get--#account_id-response-#mailing_id-customer_share_clicks"],"/#account_id/mailings/#mailing_id/messages/#member_id":[9,0,1,"get--#account_id-mailings-#mailing_id-messages-#member_id"],"/#account_id/members/#member_id/mailings":[8,0,1,"get--#account_id-members-#member_id-mailings"],"/#account_id/groups/#from_group_id/#to_group_id/members/copy":[13,1,1,"put--#account_id-groups-#from_group_id-#to_group_id-members-copy"],"/#account_id/triggers":[14,2,1,"post--#account_id-triggers"],"/#account_id/triggers/#trigger_id":[14,3,1,"delete--#account_id-triggers-#trigger_id"],"/#account_id/members/delete":[8,1,1,"put--#account_id-members-delete"],"/#account_id/mailings/#mailing_id/groups":[9,0,1,"get--#account_id-mailings-#mailing_id-groups"],"/#account_id/response/#mailing_id/forwards":[5,0,1,"get--#account_id-response-#mailing_id-forwards"],"/#account_id/members/#member_id":[8,3,1,"delete--#account_id-members-#member_id"],"/#account_id/triggers/#trigger_id/mailings":[14,0,1,"get--#account_id-triggers-#trigger_id-mailings"],"/#account_id/searches/#search_id/members":[7,0,1,"get--#account_id-searches-#search_id-members"],"/#account_id/members/status/:status_from/to/:status_to":[8,1,1,"put--#account_id-members-status--status_from-to--status_to"],"/#account_id/response/#mailing_id/sends":[5,0,1,"get--#account_id-response-#mailing_id-sends"],"/#account_id/members":[8,3,1,"delete--#account_id-members"],"/#account_id/members/email/:email":[8,0,1,"get--#account_id-members-email--email"],"/#account_id/response/#mailing_id/links":[5,0,1,"get--#account_id-response-#mailing_id-links"],"/#account_id/searches/#search_id":[7,3,1,"delete--#account_id-searches-#search_id"],"/#account_id/members/imports/#import_id/members":[8,0,1,"get--#account_id-members-imports-#import_id-members"],"/#account_id/fields/#field_id/clear":[10,2,1,"post--#account_id-fields-#field_id-clear"],"/#account_id/groups/#member_group_id/members":[13,3,1,"delete--#account_id-groups-#member_group_id-members"],"/#account_id/members/imports/#import_id":[8,0,1,"get--#account_id-members-imports-#import_id"],"/#account_id/response":[5,0,1,"get--#account_id-response"],"/#account_id/response/#mailing_id/opens":[5,0,1,"get--#account_id-response-#mailing_id-opens"],"/#account_id/members/imports/delete":[8,3,1,"delete--#account_id-members-imports-delete"],"/#account_id/mailings":[9,0,1,"get--#account_id-mailings"],"/#account_id/mailings/cancel/#mailing_id":[9,3,1,"delete--#account_id-mailings-cancel-#mailing_id"],"/#account_id/mailings/validate":[9,2,1,"post--#account_id-mailings-validate"],"/#account_id/response/#mailing_id/deliveries":[5,0,1,"get--#account_id-response-#mailing_id-deliveries"],"/#account_id/mailings/#mailing_id/members":[9,0,1,"get--#account_id-mailings-#mailing_id-members"],"/#account_id/response/#share_id/customer_share":[5,0,1,"get--#account_id-response-#share_id-customer_share"],"/#account_id/webhooks/#webhook_id":[4,3,1,"delete--#account_id-webhooks-#webhook_id"],"/#account_id/members/add":[8,2,1,"post--#account_id-members-add"],"/#account_id/members/email/optout/:email":[8,1,1,"put--#account_id-members-email-optout--email"],"/#account_id/response/#mailing_id/optouts":[5,0,1,"get--#account_id-response-#mailing_id-optouts"],"/#account_id/response/#mailing_id/shares":[5,0,1,"get--#account_id-response-#mailing_id-shares"],"/#account_id/groups/#member_group_id":[13,3,1,"delete--#account_id-groups-#member_group_id"],"/#account_id/mailings/#mailing_id":[9,3,1,"delete--#account_id-mailings-#mailing_id"],"/#account_id/members/#member_id/groups":[8,3,1,"delete--#account_id-members-#member_id-groups"],"/#account_id/groups":[13,2,1,"post--#account_id-groups"],"/#account_id/response/#mailing_id/clicks":[5,0,1,"get--#account_id-response-#mailing_id-clicks"],"/#account_id/mailings/#mailing_id/headsup":[9,0,1,"get--#account_id-mailings-#mailing_id-headsup"],"/#account_id/response/#mailing_id/signups":[5,0,1,"get--#account_id-response-#mailing_id-signups"],"/#account_id/response/#mailing_id/customer_shares":[5,0,1,"get--#account_id-response-#mailing_id-customer_shares"]}},titleterms:{oper:0,quickstart:1,creat:12,"boolean":0,overview:[0,1,11,12],interv:0,share:12,syntax:[0,11],api:1,wrapper:1,respons:5,open:12,click:12,categori:1,statu:12,group:[12,13],delet:12,todo:11,support:1,messag:12,member:[8,6,12],field:[10,12],add:12,trigger:14,call:1,forward:12,mail:[12,9],document:1,email:6,updat:12,finish:12,get:6,webhook:[12,4],signup:[12,3],usag:12,search:[0,7],"import":12,date:0,from:12,post:12,php:[6,3],data:12,addit:1,placehold:11,term:0,emma:1,optout:12,remov:12,predic:0,filter:0,exampl:[6,3],pagin:2}}) \ No newline at end of file +Search.setIndex({envversion:42,terms:{all:[0,1,4,5,8,9,10,11,12,13,14],code:[0,1,6,3],change_typ:8,queri:[0,2,4],month:[0,5,9,14],four:[0,5],mile:0,least:0,follow:[0,1,4,5,7,9,11,13],link_target:[5,9],privat:1,specif:[8,9,4],friendli:5,send:[1,9,4,3,5],program:1,customer_share_click:5,those:[1,12,5],group_upd:[12,4],sent:[5,8,12,9,14],curl_clos:[1,6,3],brown:[7,8],digit:5,everi:0,string:[0,4,5,7,8,9,10,12,13,14],fals:[1,3,4,5,6,7,8,9,10,13,14],end:[2,8],mailing_status:9,trigger_id:14,webview_share_click:5,affect:[7,8],member_add:[12,4],create_mail:9,new_boolean:10,foo:0,level:1,group_delet:[12,4],list:[0,1,2,4,5,7,8,9,10,11,12,13,14],upload:8,iter:2,"try":8,item:2,plaintext_onli:[9,14],div:[4,5,7,8,9,10,13,14],survey_id:14,setup:1,pleas:[1,8,11,9],prevent:2,work:[1,4],ten:0,sync:10,sign:[0,5,4],past:1,second:[0,7,14],field_creat:[12,4],further:1,shortcut_nam:10,click:[0,4,5,7,8,14],append:2,even:10,what:1,hide:[4,5,7,8,9,10,13,14],appear:[1,8],clock:1,section:1,current:[1,8,12,9],delet:[1,4,7,8,9,10,13,14],"new":[1,4,5,7,8,9,10,11,13,14],net:[1,2,6,3],delivery_t:8,ever:1,method:[5,8,13,4,9],can:[0,1,2,4,5,7,8,9,11,12,13],widget:[7,10,8,9,13],full:1,hash:0,datematch:0,displai:10,variat:9,gener:[0,8,12,14],onli:[5,8],here:[0,1,3,5,6,8],bodi:9,let:[1,4,10],address:[0,1,8,6,9],along:8,sinc:8,valu:[0,5,7,8,10,11],field_upd:[12,4],search:[8,9],survei:14,sender:[9,14],larger:2,queue:5,prior:9,action:[0,8],chang:[8,4],campaign:5,newbi:5,appli:[7,14],prefer:0,young:1,myemma:[4,5,7,8,9,13],filenam:8,customer_shar:5,"boolean":[1,5,7,8,9,10,13,14],curlopt_postfield:[1,3],total:5,jone:[7,5,8,13],select:[1,10],newslett:[7,8,13],describ:7,would:[0,1],commun:1,from_group_id:13,regist:4,two:[0,5],coverag:1,next:[0,1],create_webhook:4,few:[5,8],call:[8,4],criteria:7,member_add_to_group:[12,4],type:[1,3,4,5,6,7,10,9,14],until:2,more:[0,4,7,8,9,13],peopl:5,relat:[1,8,11,9],about:[10,8,12,4,9],notic:8,thide:[4,5,7,8,9,10,13,14],flag:[5,7,8,10,9,14],exce:2,indic:8,examin:1,particular:[1,4,5,8,10,12,9],in_progress:5,curl_getinfo:[1,6,3],origin:9,must:[0,7,13,10],none:9,endpoint:[1,4,5,7,8,9,10,13,14],join:[0,7],hour:0,der:1,member_sinc:[0,5,7,8,9,13],uniqu:5,histori:8,soup:7,remain:[0,9],archiv:[5,9],member_optout:[12,4],drill:5,control:[1,11,9],give:5,forward_mailing_id:5,email_domain:[0,5],share:[0,5,8,4],accept:[0,5,7,8,9,10,11,13,14],total_click:5,tag:[11,9],want:[1,12,13,5],occur:[7,12],some_numeric_field:0,delai:14,alwai:0,webhook_event_id:4,cours:1,multipl:[10,8],first_nam:[1,3,5,7,8,9,10,11,13,14],started_or_finish:[9,14],anoth:[9,13],get:[1,4,5,7,8,9,10,13,14],message_open:[12,4],html_bodi:[9,14],share_statu:5,push_offset:14,del_statu:5,tild:5,num_members_upd:8,simpl:0,chri:9,pizza:[7,8],map:0,birthdai:[10,14],referenc:7,sundai:0,jacqu:1,membership:13,taco:[7,5,8,9,13],mai:12,xxxx:6,associ:[1,8,9,4,5],grow:1,welcom:11,add_onli:8,"short":0,json_encod:[1,3],optout:[5,8,13],num_dupl:8,favorit:10,correspond:[0,1],greet:11,predic:1,issu:[1,10],"12t11":[7,5,8,9,13],combin:7,allow:[0,7,8],some_zipcode_field:0,signed_up:5,order:[5,10],michel:[8,9],mailing_nam:5,checkbox:10,fields_upd:8,over:2,becaus:12,buyer:[7,8,9,13],comma:[9,13],is_dis:14,vari:8,paramet:[2,4,5,7,8,9,10,13,14],widget_typ:10,style:[0,4,5,7,8,9,10,13,14],monitor:1,how:[7,1,2,4],fix:1,import_start:8,better:[13,14],platform:1,pend:[1,9],mailing_list:9,onc:9,hidden:13,main:1,might:[1,4],link_nam:[5,9],them:[8,9],messag:[4,5,8,11,9,14],"return":[0,1,4,5,7,8,9,10,12,13,14],greater:[0,8],thei:[0,9],food:10,timestamp:[0,5,12,9,10],spell:4,nashvil:1,dai:0,auth:1,instead:[12,2,8],now:5,down:5,term:1,alex:9,name:[0,4,5,7,8,9,10,11,13,14],edit:[7,1,14,10],troubleshoot:1,drop:1,authent:[1,6,4,3],successufulli:4,separ:[1,9,13],each:[1,2,5,9,12,11,13],found:[8,9,4,14],updat:[4,7,8,9,10,13,14],denni:1,status:[8,9],domain:0,weight:[4,5,7,8,9,10,13,14],resum:9,individu:[5,8],hard:[0,5],last_nam:[1,3,5,7,8,9,10,11,13,14],"05t15":5,connect:[1,6,3],doug:1,our:[1,11,12,4,14],happen:[1,4,5],commiss:1,short_display_nam:10,special:[0,7,8,13],out:[0,1,4,5,7,8,10,13],variabl:[1,6,3],message_shar:[12,4],network:[5,12],private_api_kei:[1,6,3],check_multipl:10,content:[1,11,6,9,3],rel:0,print:6,correct:10,integr:1,benjamin:[1,8],qualifi:11,insid:1,advanc:0,contain:[0,5,7,13,10,9],given:[0,8,9,4],standard:[5,9],status_from:8,base:[5,8],recipient_search:9,dictionari:8,put:[4,7,8,9,10,13,14],span:[4,5,7,8,9,10,13,14],"13t23":[7,5,8],refer:[5,7,8,13,10,9],visit:11,could:1,omit:5,success:[1,3,7,8,9,13],filter:[7,1],search_id:7,pagin:1,member_id:[5,7,8,9,12,13],summari:[1,5],assign:9,first:[0,1,10,5],oper:[7,1,14],rang:5,notifi:[1,12],directli:0,curlopt_ssl_verifyp:[1,6,3],curl_init:[1,6,3],number:[5,2,13,3,10],placehold:1,date:[5,8,14,10],unlik:9,alreadi:[10,8,9,13],done:8,plaintext_pref:[7,8,9,13],oppos:8,open:[0,3,4,5,6,7,8],payload:4,fanci:5,size:2,differ:0,"long":10,script:1,data:[1,10,4,3,5],system:[1,8,12,4,14],construct:[0,7,9],attach:11,outag:1,friend:11,curlinfo_http_cod:[1,6,3],shell:0,option:[0,5,7,8,9,10,13,14],especi:8,signup:[0,1,4,5,8,14],copi:[8,13],member_upd:[12,4],specifi:[0,2,7,8,10,11,9,14],curl_exec:[1,6,3],curlopt_httphead:[1,6,3],member_signup:[12,4],create_search:7,part:[0,9],enclos:11,initi:[10,9],than:[0,1,2,3,12,13],with_plaintext:9,"02t10":[5,8],"02t11":[5,8],"02t13":5,nathan:8,whenev:8,provid:[1,5,8,12,9,14],remov:[8,13,4],mailing_start:4,rate:2,structur:7,charact:9,greg:8,trackabl:11,were:5,minut:0,danc:1,error_count:[7,8,9,13],pre:[4,5,7,8,9,10,13,14],cleaner:1,sai:0,share_id:5,signup_form_id:[0,8,12,9,14],plaintext:[5,9,14],pass:[1,3],ani:[0,1,2,7,8,9],have:[0,1,5,8,12,9],tabl:5,need:1,seen:5,"null":[7,8,13,10,9,14],kevin:[9,14],signup_mail:0,caus:14,built:1,inform:[1,4,6,8,9,10,13],check:[8,6,9],offer:1,object_id:14,note:[1,8,9,4],also:[0,4,5,7,8,9,11,13],exampl:[0,1,7,5],take:[0,4],which:[0,1,4,8,10,12,9,14],some_number_field:0,datacent:[9,14],singl:[0,1,3,4,5,8,10,12,13],excit:11,sure:1,delete_memb:13,normal:9,parent_mail:14,recipient_count:[5,9,14],previou:9,field_id:[10,12,14],last_run_at:7,most:14,pair:11,"class":[4,5,7,8,9,10,13,14],don:1,member_group_id:[8,9,13],mcconnel:[9,14],url:[1,3,4,5,6,12],mailing_finish:[12,4],clear:10,request:[1,2,3],doe:[0,5,7,8,9,10,13],member_status_upd:[12,4],declar:9,tech:4,determin:1,dataset:10,dow:0,recipi:9,"6db0cc7e6fdb2da589b65f29d90c96b6":9,show:[4,5,7,8,9,10,11,13,14],text:[10,11,12],radiu:0,syntax:[1,9],radio:10,font:[4,5,7,8,9,10,13,14],fine:9,find:[1,6,5],status_to:8,toast:[7,5,8,13],access:[1,5],giant:12,just:[0,1,9],pretti:8,column_ord:10,explain:[0,1],winner:9,activ:[1,5,7,8,13,9],figur:1,should:[1,2,3,7,8,11,9],templat:[11,14],share_count:5,count:[1,2,3,5],variou:[8,13],confirmed_opt_in:[7,8,9,13],familiar:1,express:0,account:[1,4,5,7,8,10,13,14],repo:1,cannot:[8,9,4],progress:9,report:[10,8],requir:[1,7,8,10,11,9],object:[1,13,5],favorite_food:[5,7,8,13,10,9],bar:0,organ:1,include_archiv:[5,9],"public":1,"default":[5,11,13,4,9],ref_member_id:5,message_share_click:[12,4],through:[1,8,4],where:[0,1,8,11,7],view:1,user:[0,1,8,9,13],set:[0,1,2,3,6,8,9,12,13],link_id:[0,5,12,9,14],see:[7,1,8],result:[0,1,2,5,8,9],respons:[10,8,9,13],fail:[5,9,4],themselv:2,member_field:[0,7],xxxxx:6,subject:[8,12,9,14],statu:[1,4,5,7,8,9,13],fancyonion:11,kei:[0,1,8,11,4],is_schedul:9,message_forward:[12,4],databas:8,someth:1,last_modified_at:[7,8,9,13],addresse:5,written:1,between:[0,7,2],clicked_uniqu:5,"import":[1,8,4,10],subscript:[1,3],entiti:1,curlopt_url:[1,6,3],email:[0,1,5,7,8,9,13],"19t16":[7,14],wide:14,extend:1,numer:10,http404:[4,5,7,8,9,10,13,14],job:13,entir:[0,8],share_click:5,to_group_id:13,curlopt_returntransf:[1,6,3],curl_setopt:[1,6,3],member_remove_from_group:[12,4],send_start:[0,9,14],protect:1,accident:2,last:[0,5,10],delimit:5,lentil:7,pertain:5,message_click:[12,4],curlopt_post:[1,3],audienc:[1,8,9],mang:0,improv:1,http500:14,seri:5,com:[4,5,6,7,8,9,11,13],zip_code_field:0,"03t15":[7,5,8,13],point:1,toni:[7,8],overview:5,period:1,colon:[7,11],optout_count:[7,8,9,13],suppli:9,cancel:9,tuesdai:0,duplic:5,quit:[5,8],user_id:4,recur:14,headsup:9,addition:[1,2],due:5,been:[1,8,10,5],mark:[8,9],whom:9,tshow:[4,5,7,8,9,10,13,14],trigger:[5,7,8,13,10,9],unsubscrib:0,treat:8,interest:[10,4],basic:[0,1,4,8,13,14],monthli:[7,8,13],addit:[8,9,13],member_delet:[12,4],hesit:1,blob:4,email_us:[0,5],mailing_mailing_id:5,mailing_id:[0,5,8,12,9,14],fire:[8,4,14],xxx:[1,3],rubi:1,argument:[0,5],bulk:[1,8],input:1,present:7,statist:8,"case":[1,8],look:[1,14,10],frozen:9,durat:9,email_error:[7,8,9,13],defin:[0,10,8,9],"while":0,smith:[7,5,8,9,13],outcom:5,abov:[0,1,8,7],error:[1,3,6,8,10,13],veen:1,loop:8,opt:[0,4,5,7,8,13],readi:9,deliv:5,recipient_group:9,equal:0,itself:0,new_statu:12,webhook_id:4,account_id:[1,3,4,5,6,7,8,9,10,12,13,14],develop:1,recipient_memb:9,perform:8,make:[1,12,6,10],belong:[0,8,4],same:4,easier:12,member:[10,9,13],python:1,html:9,split:9,complet:[1,3,4,6,8,9],week:0,finish:[5,4],http:[1,2,3,4,5,6,11,9],href:[4,5,7,8,9,10,13,14],nest:0,someon:4,rais:[4,5,7,8,9,10,13,14],winner_id:9,php:1,studi:1,recent:[1,8],kept:11,center:0,min:5,well:[1,5],inherit:9,person:9,mailing_typ:[9,14],without:[0,1],command:1,thi:[0,1,4,5,7,8,9,10,12,13,14],undefin:0,http_code:[1,6,3],latest:11,identifi:8,paus:9,execut:[1,3],less:0,resp:[4,5,7,8,9,10,13,14],"_post":[1,3],against:0,aspect:13,recipient_email:9,source_filenam:8,yet:5,languag:1,"12t09":[7,8],display_nam:10,easi:[1,12,10],"01t00":8,had:0,littl:1,blog:4,add:[1,8,13,3],other:[1,8,9,3,5],curlopt_userpwd:[1,6,3],import_finish:[8,12,4],schedul:9,els:[1,6,3],save:7,match:[0,7],build:1,sanit:1,applic:[1,6,3],around:1,handl:1,disposit:1,crud:[8,13,14],print_r:[6,3],mailing_statu:[9,14],know:[1,4,5],background:13,parent_mailing_id:[9,14],bit:1,insert:11,emma:[7,5,8,9,13],like:1,onion:11,deprec:4,arbitrari:8,manual:9,integ:[1,8,14,10,5],collect:1,api:8,either:[0,5,7],bunch:0,output:9,group_id:[1,8,12,3],soft:[0,5],manag:[0,1,13,4],import_id:[8,12],www:[5,9],old:7,deal:[8,13],captur:1,arrai:[0,1,3,5,6,7,8,9,10,12,13,14],some:[1,11,5],field_delet:[12,4],certain:12,intern:10,sampl:[1,4,5,7,8,9,10,13,14],elaps:[2,9],unless:1,deleted_at:[7,8,13,10,9,14],some_string_field:0,librari:11,woodcock:1,emmarubi:1,bounce_count:[7,8,9,13],emmapython:1,public_kei:4,deliveri:5,broad:12,per:5,send_finish:[9,14],larg:[0,2],condit:7,three:9,network_cod:12,localhost:9,emmaphp:1,with_html_bodi:9,who:[0,5,8],bold:[4,5,7,8,9,10,13,14],event_typ:14,inspect:1,usag:[1,8],monsewicz:1,num_members_ad:8,fulli:11,from:[1,4,8,9,13,14],post:[1,3,4,7,8,9,10,13,14],group_creat:[12,4],gladi:[7,5,8,13],hurst:1,actual:5,zip:0,groups_upd:8,column:10,page:[1,2],includ:[1,5,7,8,9,10,13],webview:9,mean:0,disabl:[9,14],block:[1,2],yyyi:5,own:1,member_data:[1,3],glob:0,bounc:[0,5],within:[0,8],encod:[9,4],delivery_typ:[5,8],compos:0,webview_shar:5,field_typ:10,active_count:[7,8,9,13],public_webview_url:9,pivot:5,your:[1,4,5,7,8,9,10,13],websit:11,fast:8,van:1,wai:[1,12],area:1,overus:2,group_nam:[8,12,13,9],support:[1,12],unique_click:5,json:[0,1,3,4,6,7],submit:1,custom:[5,8,11,10],avail:[0,11,4],start:[1,2,8,4],interfac:12,send_at:[9,14],exceed:2,"var":3,purged_at:[7,8,9,13,14],interv:14,fork:1,head:[1,6,9,3],form:[1,3,4,6,8,10,14],enough:2,forc:1,forward:[0,5,8,9,4],"31st":0,group_typ:[8,9,13],push_offset_unit:14,link:[0,4,5,11,9,14],line:[1,5],realli:1,"true":[0,1,2,3,4,6,7,8,9,10,13,14],archived_t:[9,14],info:4,pull:[1,2],made:1,possibl:[5,8,12],whether:8,maximum:2,tell:12,http403:9,record:[0,7,8],below:[0,1,8,12],http400:[7,8,9],limit:[5,2,8,9],some_array_field:0,otherwis:[1,8,10],start_t:14,mta:5,expect:1,notif:9,creat:[4,5,7,13,10,9,14],"int":5,retriev:[7,1,2,8,9],year:[0,5,9,14],repres:5,exist:[0,4,5,7,8,10,13],behavior:11,bob:[7,5],curl:[1,6],portland:1,probabl:14,echo:[1,3],successfulli:[5,8,9],mailing_subject:12,grp:13,extract:11,when:[8,12,4,9],detail:[1,4,7,8,9,10,13],invalid:[7,8,9],event:[4,7,8,13,12,9,14],valid:[5,8,9,13],futur:1,num_skip:8,test:[5,6,7,13,9,14],ignor:8,you:[0,1,2,4,5,7,8,9,10,11,12,13],emmasdk:1,member_status_id:[7,5,8,9,13],public_api_kei:[1,6,3],stat:[5,9],claus:[0,7],event_nam:[12,4],e2ma:[1,2,6,3],error_messag:8,param:[9,4],app_messag:[1,3],ella:8,link_ord:[5,9],receiv:[0,2,5,8,12,9],heads_up_email:9,longer:9,home:11,confirm:8,descript:[4,14],ohmyemma:1,portion:0,opted_out:5,time:[1,2,8,13,5],reply_to:[9,14],resource_url:12,hello:[11,9,14]},objtypes:{"0":"http:get","1":"http:put","2":"http:post","3":"http:delete"},objnames:{"0":["http","get","HTTP get"],"1":["http","put","HTTP put"],"2":["http","post","HTTP post"],"3":["http","delete","HTTP delete"]},filenames:["member_search","index","pagination","php_signup_example","api/external/webhooks","api/external/response","php_get_member_example","api/external/searches","api/external/members","api/external/mailings","api/external/fields","placeholders","webhooks","api/external/groups","api/external/triggers"],titles:["Search Syntax","Emma API","Pagination","PHP Signup Example","Webhooks","Response","PHP Get Member By Email Example","Searches","Members","Mailings","Fields","Placeholder Syntax","Webhook Usage","Groups","Triggers"],objects:{"":{"/#account_id/members/#member_id/groups/remove":[8,1,1,"put--#account_id-members-#member_id-groups-remove"],"/#account_id/mailings/#mailing_id/winner/#winner_id":[9,2,1,"post--#account_id-mailings-#mailing_id-winner-#winner_id"],"/#account_id/response/#mailing_id/in_progress":[5,0,1,"get--#account_id-response-#mailing_id-in_progress"],"/#account_id/members/groups/remove":[8,1,1,"put--#account_id-members-groups-remove"],"/#account_id/mailings/#mailing_id/searches":[9,0,1,"get--#account_id-mailings-#mailing_id-searches"],"/#account_id/fields":[10,2,1,"post--#account_id-fields"],"/#account_id/members/#group_id/copy":[8,1,1,"put--#account_id-members-#group_id-copy"],"/#account_id/members/status":[8,1,1,"put--#account_id-members-status"],"/#account_id/response/#mailing_id/shares/overview":[5,0,1,"get--#account_id-response-#mailing_id-shares-overview"],"/#account_id/webhooks/events":[4,0,1,"get--#account_id-webhooks-events"],"/#account_id/members/#member_id/optout":[8,0,1,"get--#account_id-members-#member_id-optout"],"/#account_id/webhooks":[4,3,1,"delete--#account_id-webhooks"],"/#account_id/fields/#field_id":[10,3,1,"delete--#account_id-fields-#field_id"],"/#account_id/response/#mailing_id":[5,0,1,"get--#account_id-response-#mailing_id"],"/#account_id/groups/#member_group_id/members/remove":[13,3,1,"delete--#account_id-groups-#member_group_id-members-remove"],"/#account_id/searches":[7,2,1,"post--#account_id-searches"],"/#account_id/members/imports":[8,0,1,"get--#account_id-members-imports"],"/#account_id/forwards/#mailing_id/#member_id":[9,2,1,"post--#account_id-forwards-#mailing_id-#member_id"],"/#account_id/response/#mailing_id/customer_share_clicks":[5,0,1,"get--#account_id-response-#mailing_id-customer_share_clicks"],"/#account_id/mailings/#mailing_id/messages/#member_id":[9,0,1,"get--#account_id-mailings-#mailing_id-messages-#member_id"],"/#account_id/members/#member_id/mailings":[8,0,1,"get--#account_id-members-#member_id-mailings"],"/#account_id/groups/#from_group_id/#to_group_id/members/copy":[13,1,1,"put--#account_id-groups-#from_group_id-#to_group_id-members-copy"],"/#account_id/triggers":[14,2,1,"post--#account_id-triggers"],"/#account_id/triggers/#trigger_id":[14,3,1,"delete--#account_id-triggers-#trigger_id"],"/#account_id/members/delete":[8,1,1,"put--#account_id-members-delete"],"/#account_id/mailings/#mailing_id/groups":[9,0,1,"get--#account_id-mailings-#mailing_id-groups"],"/#account_id/response/#mailing_id/forwards":[5,0,1,"get--#account_id-response-#mailing_id-forwards"],"/#account_id/members/#member_id":[8,3,1,"delete--#account_id-members-#member_id"],"/#account_id/triggers/#trigger_id/mailings":[14,0,1,"get--#account_id-triggers-#trigger_id-mailings"],"/#account_id/searches/#search_id/members":[7,0,1,"get--#account_id-searches-#search_id-members"],"/#account_id/members/status/:status_from/to/:status_to":[8,1,1,"put--#account_id-members-status--status_from-to--status_to"],"/#account_id/response/#mailing_id/sends":[5,0,1,"get--#account_id-response-#mailing_id-sends"],"/#account_id/members":[8,3,1,"delete--#account_id-members"],"/#account_id/members/email/:email":[8,0,1,"get--#account_id-members-email--email"],"/#account_id/response/#mailing_id/links":[5,0,1,"get--#account_id-response-#mailing_id-links"],"/#account_id/searches/#search_id":[7,3,1,"delete--#account_id-searches-#search_id"],"/#account_id/members/imports/#import_id/members":[8,0,1,"get--#account_id-members-imports-#import_id-members"],"/#account_id/fields/#field_id/clear":[10,2,1,"post--#account_id-fields-#field_id-clear"],"/#account_id/groups/#member_group_id/members":[13,3,1,"delete--#account_id-groups-#member_group_id-members"],"/#account_id/members/imports/#import_id":[8,0,1,"get--#account_id-members-imports-#import_id"],"/#account_id/response":[5,0,1,"get--#account_id-response"],"/#account_id/response/#mailing_id/opens":[5,0,1,"get--#account_id-response-#mailing_id-opens"],"/#account_id/members/imports/delete":[8,3,1,"delete--#account_id-members-imports-delete"],"/#account_id/mailings":[9,0,1,"get--#account_id-mailings"],"/#account_id/mailings/cancel/#mailing_id":[9,3,1,"delete--#account_id-mailings-cancel-#mailing_id"],"/#account_id/mailings/validate":[9,2,1,"post--#account_id-mailings-validate"],"/#account_id/response/#mailing_id/deliveries":[5,0,1,"get--#account_id-response-#mailing_id-deliveries"],"/#account_id/mailings/#mailing_id/members":[9,0,1,"get--#account_id-mailings-#mailing_id-members"],"/#account_id/response/#share_id/customer_share":[5,0,1,"get--#account_id-response-#share_id-customer_share"],"/#account_id/webhooks/#webhook_id":[4,3,1,"delete--#account_id-webhooks-#webhook_id"],"/#account_id/members/add":[8,2,1,"post--#account_id-members-add"],"/#account_id/members/email/optout/:email":[8,1,1,"put--#account_id-members-email-optout--email"],"/#account_id/response/#mailing_id/optouts":[5,0,1,"get--#account_id-response-#mailing_id-optouts"],"/#account_id/response/#mailing_id/shares":[5,0,1,"get--#account_id-response-#mailing_id-shares"],"/#account_id/groups/#member_group_id":[13,3,1,"delete--#account_id-groups-#member_group_id"],"/#account_id/mailings/#mailing_id":[9,3,1,"delete--#account_id-mailings-#mailing_id"],"/#account_id/members/#member_id/groups":[8,3,1,"delete--#account_id-members-#member_id-groups"],"/#account_id/groups":[13,2,1,"post--#account_id-groups"],"/#account_id/response/#mailing_id/clicks":[5,0,1,"get--#account_id-response-#mailing_id-clicks"],"/#account_id/mailings/#mailing_id/headsup":[9,0,1,"get--#account_id-mailings-#mailing_id-headsup"],"/#account_id/response/#mailing_id/signups":[5,0,1,"get--#account_id-response-#mailing_id-signups"],"/#account_id/response/#mailing_id/customer_shares":[5,0,1,"get--#account_id-response-#mailing_id-customer_shares"]}},titleterms:{oper:0,quickstart:1,creat:12,"boolean":0,overview:[0,1,11,12],interv:0,share:12,syntax:[0,11],api:1,wrapper:1,respons:5,open:12,click:12,categori:1,statu:12,from:12,delet:12,todo:11,messag:12,member:[8,6,12],field:[10,12],add:12,trigger:14,call:1,forward:12,mail:[12,9],document:1,email:6,updat:12,finish:12,get:6,webhook:[12,4],signup:[12,3],usag:12,search:[0,7],word:1,"import":12,date:0,group:[12,13],post:12,php:[6,3],data:12,addit:1,placehold:11,term:0,wise:1,optout:12,remov:12,predic:0,filter:0,exampl:[6,3],pagin:2,emma:1}}) \ No newline at end of file diff --git a/webhooks.html b/webhooks.html index 61ff1ea..2675f2a 100644 --- a/webhooks.html +++ b/webhooks.html @@ -506,7 +506,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 19, 2013 at 04:30 PM. + Last updated on Jul 19, 2013 at 04:36 PM. </div> </body> </html> \ No newline at end of file From 3e9eba5fb1010286f1d976751794527d55c9a353 Mon Sep 17 00:00:00 2001 From: rmacy <ryan@hackery.io> Date: Fri, 19 Jul 2013 16:37:45 -0500 Subject: [PATCH 049/219] Update audience documentation. --- api/external/fields.html | 2 +- api/external/groups.html | 2 +- api/external/mailings.html | 2 +- api/external/members.html | 2 +- api/external/response.html | 2 +- api/external/searches.html | 4 ++-- api/external/triggers.html | 8 ++++---- api/external/webhooks.html | 2 +- genindex.html | 2 +- http-routingtable.html | 2 +- index.html | 2 +- member_search.html | 2 +- pagination.html | 2 +- php_get_member_example.html | 2 +- php_signup_example.html | 2 +- placeholders.html | 2 +- search.html | 2 +- webhooks.html | 2 +- 18 files changed, 22 insertions(+), 22 deletions(-) diff --git a/api/external/fields.html b/api/external/fields.html index a1d2b04..bbaa353 100644 --- a/api/external/fields.html +++ b/api/external/fields.html @@ -414,7 +414,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 19, 2013 at 04:36 PM. + Last updated on Jul 19, 2013 at 04:37 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/groups.html b/api/external/groups.html index f30d620..2cec015 100644 --- a/api/external/groups.html +++ b/api/external/groups.html @@ -708,7 +708,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 19, 2013 at 04:36 PM. + Last updated on Jul 19, 2013 at 04:37 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/mailings.html b/api/external/mailings.html index 39c25e1..7de5c5e 100644 --- a/api/external/mailings.html +++ b/api/external/mailings.html @@ -818,7 +818,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 19, 2013 at 04:36 PM. + Last updated on Jul 19, 2013 at 04:37 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/members.html b/api/external/members.html index 5c93c13..213a8be 100644 --- a/api/external/members.html +++ b/api/external/members.html @@ -1219,7 +1219,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 19, 2013 at 04:36 PM. + Last updated on Jul 19, 2013 at 04:37 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/response.html b/api/external/response.html index 153e2a3..d234fff 100644 --- a/api/external/response.html +++ b/api/external/response.html @@ -1018,7 +1018,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 19, 2013 at 04:36 PM. + Last updated on Jul 19, 2013 at 04:37 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/searches.html b/api/external/searches.html index 6c28856..1e3c3fe 100644 --- a/api/external/searches.html +++ b/api/external/searches.html @@ -201,7 +201,7 @@ <h1>Searches<a class="headerlink" href="#searches" title="Permalink to this head "criteria": "[\"or\", [\"group\", \"eq\", \"Monthly Newsletter\"],[\"group\", \"eq\", \"Widget Buyers\"]]", "deleted_at": null, "purged_at": null, - "last_run_at": "@D:2013-07-19T16:36:57", + "last_run_at": "@D:2013-07-19T16:37:41", "active_count": 2, "account_id": 100 } @@ -513,7 +513,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 19, 2013 at 04:36 PM. + Last updated on Jul 19, 2013 at 04:37 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/triggers.html b/api/external/triggers.html index 3a9d82e..8ac02ee 100644 --- a/api/external/triggers.html +++ b/api/external/triggers.html @@ -149,7 +149,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": 203, "push_offset_units": "0:-14:0:0", - "start_ts": "@D:2013-07-19T16:36:55", + "start_ts": "@D:2013-07-19T16:37:39", "trigger_id": 100, "signups": null, "push_offset": "@I:-1209600.0", @@ -192,7 +192,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": null, "push_offset_units": "0:3:0:0", - "start_ts": "@D:2013-07-19T16:36:55", + "start_ts": "@D:2013-07-19T16:37:39", "trigger_id": 101, "signups": [ 1, @@ -331,7 +331,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": 203, "push_offset_units": "0:-14:0:0", - "start_ts": "@D:2013-07-19T16:36:55", + "start_ts": "@D:2013-07-19T16:37:39", "trigger_id": 100, "signups": null, "push_offset": "@I:-1209600.0", @@ -506,7 +506,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 19, 2013 at 04:36 PM. + Last updated on Jul 19, 2013 at 04:37 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/webhooks.html b/api/external/webhooks.html index b4c0fce..8c70591 100644 --- a/api/external/webhooks.html +++ b/api/external/webhooks.html @@ -486,7 +486,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 19, 2013 at 04:36 PM. + Last updated on Jul 19, 2013 at 04:37 PM. </div> </body> </html> \ No newline at end of file diff --git a/genindex.html b/genindex.html index 2150f46..26c4997 100644 --- a/genindex.html +++ b/genindex.html @@ -144,7 +144,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 19, 2013 at 04:36 PM. + Last updated on Jul 19, 2013 at 04:37 PM. </div> </body> </html> \ No newline at end of file diff --git a/http-routingtable.html b/http-routingtable.html index ce08e38..b2294be 100644 --- a/http-routingtable.html +++ b/http-routingtable.html @@ -606,7 +606,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 19, 2013 at 04:36 PM. + Last updated on Jul 19, 2013 at 04:37 PM. </div> </body> </html> \ No newline at end of file diff --git a/index.html b/index.html index a0f1eb3..ed66135 100644 --- a/index.html +++ b/index.html @@ -348,7 +348,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 19, 2013 at 04:36 PM. + Last updated on Jul 19, 2013 at 04:37 PM. </div> </body> </html> \ No newline at end of file diff --git a/member_search.html b/member_search.html index a7a6981..e05886f 100644 --- a/member_search.html +++ b/member_search.html @@ -255,7 +255,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 19, 2013 at 04:36 PM. + Last updated on Jul 19, 2013 at 04:37 PM. </div> </body> </html> \ No newline at end of file diff --git a/pagination.html b/pagination.html index 89fe5c7..9def036 100644 --- a/pagination.html +++ b/pagination.html @@ -167,7 +167,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 19, 2013 at 04:36 PM. + Last updated on Jul 19, 2013 at 04:37 PM. </div> </body> </html> \ No newline at end of file diff --git a/php_get_member_example.html b/php_get_member_example.html index b0b451b..7c5c911 100644 --- a/php_get_member_example.html +++ b/php_get_member_example.html @@ -182,7 +182,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 19, 2013 at 04:36 PM. + Last updated on Jul 19, 2013 at 04:37 PM. </div> </body> </html> \ No newline at end of file diff --git a/php_signup_example.html b/php_signup_example.html index 4b48823..1bc1dac 100644 --- a/php_signup_example.html +++ b/php_signup_example.html @@ -204,7 +204,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 19, 2013 at 04:36 PM. + Last updated on Jul 19, 2013 at 04:37 PM. </div> </body> </html> \ No newline at end of file diff --git a/placeholders.html b/placeholders.html index d194f4c..b54e33d 100644 --- a/placeholders.html +++ b/placeholders.html @@ -182,7 +182,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 19, 2013 at 04:36 PM. + Last updated on Jul 19, 2013 at 04:37 PM. </div> </body> </html> \ No newline at end of file diff --git a/search.html b/search.html index d945346..b736990 100644 --- a/search.html +++ b/search.html @@ -154,7 +154,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 19, 2013 at 04:36 PM. + Last updated on Jul 19, 2013 at 04:37 PM. </div> </body> </html> \ No newline at end of file diff --git a/webhooks.html b/webhooks.html index 2675f2a..94dfc41 100644 --- a/webhooks.html +++ b/webhooks.html @@ -506,7 +506,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 19, 2013 at 04:36 PM. + Last updated on Jul 19, 2013 at 04:37 PM. </div> </body> </html> \ No newline at end of file From 8a330309ffeeec2aad1d539912dd14bc8cadfe3b Mon Sep 17 00:00:00 2001 From: rmacy <ryan@hackery.io> Date: Wed, 24 Jul 2013 10:25:38 -0500 Subject: [PATCH 050/219] Update audience documentation. --- _sources/index.txt | 2 ++ api/external/fields.html | 2 +- api/external/groups.html | 2 +- api/external/mailings.html | 2 +- api/external/members.html | 2 +- api/external/response.html | 2 +- api/external/searches.html | 4 ++-- api/external/triggers.html | 8 ++++---- api/external/webhooks.html | 2 +- genindex.html | 2 +- http-routingtable.html | 2 +- index.html | 5 +++-- member_search.html | 2 +- pagination.html | 2 +- php_get_member_example.html | 2 +- php_signup_example.html | 2 +- placeholders.html | 2 +- search.html | 2 +- searchindex.js | 2 +- webhooks.html | 2 +- 20 files changed, 27 insertions(+), 24 deletions(-) diff --git a/_sources/index.txt b/_sources/index.txt index 1840acc..7439230 100644 --- a/_sources/index.txt +++ b/_sources/index.txt @@ -37,6 +37,8 @@ This collection is young, but growing, and includes wrappers commissioned by Emm `OhMyEmma <https://github.com/jwoodcock/OhMyEmma>`_: Built by Nashville developer `Jacques Woodcock <https://github.com/jwoodcock>`_. + `Emma <https://github.com/markroland/emma>`_: Built by Nashville-based `Abenity, Inc <http://www.abenity.com/>`_. + **Python** `EmmaPython <https://github.com/myemma/EmmaPython>`_: Built by Emma's own `Doug Hurst <https://github.com/dalanhurst>`_. diff --git a/api/external/fields.html b/api/external/fields.html index bbaa353..89b11d1 100644 --- a/api/external/fields.html +++ b/api/external/fields.html @@ -414,7 +414,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 19, 2013 at 04:37 PM. + Last updated on Jul 24, 2013 at 10:25 AM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/groups.html b/api/external/groups.html index 2cec015..2810fac 100644 --- a/api/external/groups.html +++ b/api/external/groups.html @@ -708,7 +708,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 19, 2013 at 04:37 PM. + Last updated on Jul 24, 2013 at 10:25 AM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/mailings.html b/api/external/mailings.html index 7de5c5e..4c84f0a 100644 --- a/api/external/mailings.html +++ b/api/external/mailings.html @@ -818,7 +818,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 19, 2013 at 04:37 PM. + Last updated on Jul 24, 2013 at 10:25 AM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/members.html b/api/external/members.html index 213a8be..b14408b 100644 --- a/api/external/members.html +++ b/api/external/members.html @@ -1219,7 +1219,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 19, 2013 at 04:37 PM. + Last updated on Jul 24, 2013 at 10:25 AM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/response.html b/api/external/response.html index d234fff..47846b4 100644 --- a/api/external/response.html +++ b/api/external/response.html @@ -1018,7 +1018,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 19, 2013 at 04:37 PM. + Last updated on Jul 24, 2013 at 10:25 AM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/searches.html b/api/external/searches.html index 1e3c3fe..6868fe9 100644 --- a/api/external/searches.html +++ b/api/external/searches.html @@ -201,7 +201,7 @@ <h1>Searches<a class="headerlink" href="#searches" title="Permalink to this head "criteria": "[\"or\", [\"group\", \"eq\", \"Monthly Newsletter\"],[\"group\", \"eq\", \"Widget Buyers\"]]", "deleted_at": null, "purged_at": null, - "last_run_at": "@D:2013-07-19T16:37:41", + "last_run_at": "@D:2013-07-24T10:25:34", "active_count": 2, "account_id": 100 } @@ -513,7 +513,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 19, 2013 at 04:37 PM. + Last updated on Jul 24, 2013 at 10:25 AM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/triggers.html b/api/external/triggers.html index 8ac02ee..3d9c015 100644 --- a/api/external/triggers.html +++ b/api/external/triggers.html @@ -149,7 +149,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": 203, "push_offset_units": "0:-14:0:0", - "start_ts": "@D:2013-07-19T16:37:39", + "start_ts": "@D:2013-07-24T10:25:31", "trigger_id": 100, "signups": null, "push_offset": "@I:-1209600.0", @@ -192,7 +192,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": null, "push_offset_units": "0:3:0:0", - "start_ts": "@D:2013-07-19T16:37:39", + "start_ts": "@D:2013-07-24T10:25:31", "trigger_id": 101, "signups": [ 1, @@ -331,7 +331,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": 203, "push_offset_units": "0:-14:0:0", - "start_ts": "@D:2013-07-19T16:37:39", + "start_ts": "@D:2013-07-24T10:25:31", "trigger_id": 100, "signups": null, "push_offset": "@I:-1209600.0", @@ -506,7 +506,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 19, 2013 at 04:37 PM. + Last updated on Jul 24, 2013 at 10:25 AM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/webhooks.html b/api/external/webhooks.html index 8c70591..e5177fd 100644 --- a/api/external/webhooks.html +++ b/api/external/webhooks.html @@ -486,7 +486,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 19, 2013 at 04:37 PM. + Last updated on Jul 24, 2013 at 10:25 AM. </div> </body> </html> \ No newline at end of file diff --git a/genindex.html b/genindex.html index 26c4997..15a8a40 100644 --- a/genindex.html +++ b/genindex.html @@ -144,7 +144,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 19, 2013 at 04:37 PM. + Last updated on Jul 24, 2013 at 10:25 AM. </div> </body> </html> \ No newline at end of file diff --git a/http-routingtable.html b/http-routingtable.html index b2294be..179b2a2 100644 --- a/http-routingtable.html +++ b/http-routingtable.html @@ -606,7 +606,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 19, 2013 at 04:37 PM. + Last updated on Jul 24, 2013 at 10:25 AM. </div> </body> </html> \ No newline at end of file diff --git a/index.html b/index.html index ed66135..225d652 100644 --- a/index.html +++ b/index.html @@ -147,7 +147,8 @@ <h2>API Wrappers<a class="headerlink" href="#api-wrappers" title="Permalink to t <dl class="docutils"> <dt><strong>PHP</strong></dt> <dd><p class="first"><a class="reference external" href="https://github.com/myemma/EmmaPHP">EmmaPHP</a> : Commissioned by Emma and built by Nashville developer <a class="reference external" href="https://github.com/dennismonsewicz">Dennis Monsewicz</a>.</p> -<p class="last"><a class="reference external" href="https://github.com/jwoodcock/OhMyEmma">OhMyEmma</a>: Built by Nashville developer <a class="reference external" href="https://github.com/jwoodcock">Jacques Woodcock</a>.</p> +<p><a class="reference external" href="https://github.com/jwoodcock/OhMyEmma">OhMyEmma</a>: Built by Nashville developer <a class="reference external" href="https://github.com/jwoodcock">Jacques Woodcock</a>.</p> +<p class="last"><a class="reference external" href="https://github.com/markroland/emma">Emma</a>: Built by Nashville-based <a class="reference external" href="http://www.abenity.com/">Abenity, Inc</a>.</p> </dd> <dt><strong>Python</strong></dt> <dd><a class="reference external" href="https://github.com/myemma/EmmaPython">EmmaPython</a>: Built by Emma’s own <a class="reference external" href="https://github.com/dalanhurst">Doug Hurst</a>.</dd> @@ -348,7 +349,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 19, 2013 at 04:37 PM. + Last updated on Jul 24, 2013 at 10:25 AM. </div> </body> </html> \ No newline at end of file diff --git a/member_search.html b/member_search.html index e05886f..3cc18f8 100644 --- a/member_search.html +++ b/member_search.html @@ -255,7 +255,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 19, 2013 at 04:37 PM. + Last updated on Jul 24, 2013 at 10:25 AM. </div> </body> </html> \ No newline at end of file diff --git a/pagination.html b/pagination.html index 9def036..6d8a9e8 100644 --- a/pagination.html +++ b/pagination.html @@ -167,7 +167,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 19, 2013 at 04:37 PM. + Last updated on Jul 24, 2013 at 10:25 AM. </div> </body> </html> \ No newline at end of file diff --git a/php_get_member_example.html b/php_get_member_example.html index 7c5c911..e836c37 100644 --- a/php_get_member_example.html +++ b/php_get_member_example.html @@ -182,7 +182,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 19, 2013 at 04:37 PM. + Last updated on Jul 24, 2013 at 10:25 AM. </div> </body> </html> \ No newline at end of file diff --git a/php_signup_example.html b/php_signup_example.html index 1bc1dac..a284101 100644 --- a/php_signup_example.html +++ b/php_signup_example.html @@ -204,7 +204,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 19, 2013 at 04:37 PM. + Last updated on Jul 24, 2013 at 10:25 AM. </div> </body> </html> \ No newline at end of file diff --git a/placeholders.html b/placeholders.html index b54e33d..c764a92 100644 --- a/placeholders.html +++ b/placeholders.html @@ -182,7 +182,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 19, 2013 at 04:37 PM. + Last updated on Jul 24, 2013 at 10:25 AM. </div> </body> </html> \ No newline at end of file diff --git a/search.html b/search.html index b736990..348d917 100644 --- a/search.html +++ b/search.html @@ -154,7 +154,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 19, 2013 at 04:37 PM. + Last updated on Jul 24, 2013 at 10:25 AM. </div> </body> </html> \ No newline at end of file diff --git a/searchindex.js b/searchindex.js index f5be6e6..95b5236 100644 --- a/searchindex.js +++ b/searchindex.js @@ -1 +1 @@ -Search.setIndex({envversion:42,terms:{all:[0,1,4,5,8,9,10,11,12,13,14],code:[0,1,6,3],change_typ:8,queri:[0,2,4],month:[0,5,9,14],four:[0,5],mile:0,least:0,follow:[0,1,4,5,7,9,11,13],link_target:[5,9],privat:1,specif:[8,9,4],friendli:5,send:[1,9,4,3,5],program:1,customer_share_click:5,those:[1,12,5],group_upd:[12,4],sent:[5,8,12,9,14],curl_clos:[1,6,3],brown:[7,8],digit:5,everi:0,string:[0,4,5,7,8,9,10,12,13,14],fals:[1,3,4,5,6,7,8,9,10,13,14],end:[2,8],mailing_status:9,trigger_id:14,webview_share_click:5,affect:[7,8],member_add:[12,4],create_mail:9,new_boolean:10,foo:0,level:1,group_delet:[12,4],list:[0,1,2,4,5,7,8,9,10,11,12,13,14],upload:8,iter:2,"try":8,item:2,plaintext_onli:[9,14],div:[4,5,7,8,9,10,13,14],survey_id:14,setup:1,pleas:[1,8,11,9],prevent:2,work:[1,4],ten:0,sync:10,sign:[0,5,4],past:1,second:[0,7,14],field_creat:[12,4],further:1,shortcut_nam:10,click:[0,4,5,7,8,14],append:2,even:10,what:1,hide:[4,5,7,8,9,10,13,14],appear:[1,8],clock:1,section:1,current:[1,8,12,9],delet:[1,4,7,8,9,10,13,14],"new":[1,4,5,7,8,9,10,11,13,14],net:[1,2,6,3],delivery_t:8,ever:1,method:[5,8,13,4,9],can:[0,1,2,4,5,7,8,9,11,12,13],widget:[7,10,8,9,13],full:1,hash:0,datematch:0,displai:10,variat:9,gener:[0,8,12,14],onli:[5,8],here:[0,1,3,5,6,8],bodi:9,let:[1,4,10],address:[0,1,8,6,9],along:8,sinc:8,valu:[0,5,7,8,10,11],field_upd:[12,4],search:[8,9],survei:14,sender:[9,14],larger:2,queue:5,prior:9,action:[0,8],chang:[8,4],campaign:5,newbi:5,appli:[7,14],prefer:0,young:1,myemma:[4,5,7,8,9,13],filenam:8,customer_shar:5,"boolean":[1,5,7,8,9,10,13,14],curlopt_postfield:[1,3],total:5,jone:[7,5,8,13],select:[1,10],newslett:[7,8,13],describ:7,would:[0,1],commun:1,from_group_id:13,regist:4,two:[0,5],coverag:1,next:[0,1],create_webhook:4,few:[5,8],call:[8,4],criteria:7,member_add_to_group:[12,4],type:[1,3,4,5,6,7,10,9,14],until:2,more:[0,4,7,8,9,13],peopl:5,relat:[1,8,11,9],about:[10,8,12,4,9],notic:8,thide:[4,5,7,8,9,10,13,14],flag:[5,7,8,10,9,14],exce:2,indic:8,examin:1,particular:[1,4,5,8,10,12,9],in_progress:5,curl_getinfo:[1,6,3],origin:9,must:[0,7,13,10],none:9,endpoint:[1,4,5,7,8,9,10,13,14],join:[0,7],hour:0,der:1,member_sinc:[0,5,7,8,9,13],uniqu:5,histori:8,soup:7,remain:[0,9],archiv:[5,9],member_optout:[12,4],drill:5,control:[1,11,9],give:5,forward_mailing_id:5,email_domain:[0,5],share:[0,5,8,4],accept:[0,5,7,8,9,10,11,13,14],total_click:5,tag:[11,9],want:[1,12,13,5],occur:[7,12],some_numeric_field:0,delai:14,alwai:0,webhook_event_id:4,cours:1,multipl:[10,8],first_nam:[1,3,5,7,8,9,10,11,13,14],started_or_finish:[9,14],anoth:[9,13],get:[1,4,5,7,8,9,10,13,14],message_open:[12,4],html_bodi:[9,14],share_statu:5,push_offset:14,del_statu:5,tild:5,num_members_upd:8,simpl:0,chri:9,pizza:[7,8],map:0,birthdai:[10,14],referenc:7,sundai:0,jacqu:1,membership:13,taco:[7,5,8,9,13],mai:12,xxxx:6,associ:[1,8,9,4,5],grow:1,welcom:11,add_onli:8,"short":0,json_encod:[1,3],optout:[5,8,13],num_dupl:8,favorit:10,correspond:[0,1],greet:11,predic:1,issu:[1,10],"12t11":[7,5,8,9,13],combin:7,allow:[0,7,8],some_zipcode_field:0,signed_up:5,order:[5,10],michel:[8,9],mailing_nam:5,checkbox:10,fields_upd:8,over:2,becaus:12,buyer:[7,8,9,13],comma:[9,13],is_dis:14,vari:8,paramet:[2,4,5,7,8,9,10,13,14],widget_typ:10,style:[0,4,5,7,8,9,10,13,14],monitor:1,how:[7,1,2,4],fix:1,import_start:8,better:[13,14],platform:1,pend:[1,9],mailing_list:9,onc:9,hidden:13,main:1,might:[1,4],link_nam:[5,9],them:[8,9],messag:[4,5,8,11,9,14],"return":[0,1,4,5,7,8,9,10,12,13,14],greater:[0,8],thei:[0,9],food:10,timestamp:[0,5,12,9,10],spell:4,nashvil:1,dai:0,auth:1,instead:[12,2,8],now:5,down:5,term:1,alex:9,name:[0,4,5,7,8,9,10,11,13,14],edit:[7,1,14,10],troubleshoot:1,drop:1,authent:[1,6,4,3],successufulli:4,separ:[1,9,13],each:[1,2,5,9,12,11,13],found:[8,9,4,14],updat:[4,7,8,9,10,13,14],denni:1,status:[8,9],domain:0,weight:[4,5,7,8,9,10,13,14],resum:9,individu:[5,8],hard:[0,5],last_nam:[1,3,5,7,8,9,10,11,13,14],"05t15":5,connect:[1,6,3],doug:1,our:[1,11,12,4,14],happen:[1,4,5],commiss:1,short_display_nam:10,special:[0,7,8,13],out:[0,1,4,5,7,8,10,13],variabl:[1,6,3],message_shar:[12,4],network:[5,12],private_api_kei:[1,6,3],check_multipl:10,content:[1,11,6,9,3],rel:0,print:6,correct:10,integr:1,benjamin:[1,8],qualifi:11,insid:1,advanc:0,contain:[0,5,7,13,10,9],given:[0,8,9,4],standard:[5,9],status_from:8,base:[5,8],recipient_search:9,dictionari:8,put:[4,7,8,9,10,13,14],span:[4,5,7,8,9,10,13,14],"13t23":[7,5,8],refer:[5,7,8,13,10,9],visit:11,could:1,omit:5,success:[1,3,7,8,9,13],filter:[7,1],search_id:7,pagin:1,member_id:[5,7,8,9,12,13],summari:[1,5],assign:9,first:[0,1,10,5],oper:[7,1,14],rang:5,notifi:[1,12],directli:0,curlopt_ssl_verifyp:[1,6,3],curl_init:[1,6,3],number:[5,2,13,3,10],placehold:1,date:[5,8,14,10],unlik:9,alreadi:[10,8,9,13],done:8,plaintext_pref:[7,8,9,13],oppos:8,open:[0,3,4,5,6,7,8],payload:4,fanci:5,size:2,differ:0,"long":10,script:1,data:[1,10,4,3,5],system:[1,8,12,4,14],construct:[0,7,9],attach:11,outag:1,friend:11,curlinfo_http_cod:[1,6,3],shell:0,option:[0,5,7,8,9,10,13,14],especi:8,signup:[0,1,4,5,8,14],copi:[8,13],member_upd:[12,4],specifi:[0,2,7,8,10,11,9,14],curl_exec:[1,6,3],curlopt_httphead:[1,6,3],member_signup:[12,4],create_search:7,part:[0,9],enclos:11,initi:[10,9],than:[0,1,2,3,12,13],with_plaintext:9,"02t10":[5,8],"02t11":[5,8],"02t13":5,nathan:8,whenev:8,provid:[1,5,8,12,9,14],remov:[8,13,4],mailing_start:4,rate:2,structur:7,charact:9,greg:8,trackabl:11,were:5,minut:0,danc:1,error_count:[7,8,9,13],pre:[4,5,7,8,9,10,13,14],cleaner:1,sai:0,share_id:5,signup_form_id:[0,8,12,9,14],plaintext:[5,9,14],pass:[1,3],ani:[0,1,2,7,8,9],have:[0,1,5,8,12,9],tabl:5,need:1,seen:5,"null":[7,8,13,10,9,14],kevin:[9,14],signup_mail:0,caus:14,built:1,inform:[1,4,6,8,9,10,13],check:[8,6,9],offer:1,object_id:14,note:[1,8,9,4],also:[0,4,5,7,8,9,11,13],exampl:[0,1,7,5],take:[0,4],which:[0,1,4,8,10,12,9,14],some_number_field:0,datacent:[9,14],singl:[0,1,3,4,5,8,10,12,13],excit:11,sure:1,delete_memb:13,normal:9,parent_mail:14,recipient_count:[5,9,14],previou:9,field_id:[10,12,14],last_run_at:7,most:14,pair:11,"class":[4,5,7,8,9,10,13,14],don:1,member_group_id:[8,9,13],mcconnel:[9,14],url:[1,3,4,5,6,12],mailing_finish:[12,4],clear:10,request:[1,2,3],doe:[0,5,7,8,9,10,13],member_status_upd:[12,4],declar:9,tech:4,determin:1,dataset:10,dow:0,recipi:9,"6db0cc7e6fdb2da589b65f29d90c96b6":9,show:[4,5,7,8,9,10,11,13,14],text:[10,11,12],radiu:0,syntax:[1,9],radio:10,font:[4,5,7,8,9,10,13,14],fine:9,find:[1,6,5],status_to:8,toast:[7,5,8,13],access:[1,5],giant:12,just:[0,1,9],pretti:8,column_ord:10,explain:[0,1],winner:9,activ:[1,5,7,8,13,9],figur:1,should:[1,2,3,7,8,11,9],templat:[11,14],share_count:5,count:[1,2,3,5],variou:[8,13],confirmed_opt_in:[7,8,9,13],familiar:1,express:0,account:[1,4,5,7,8,10,13,14],repo:1,cannot:[8,9,4],progress:9,report:[10,8],requir:[1,7,8,10,11,9],object:[1,13,5],favorite_food:[5,7,8,13,10,9],bar:0,organ:1,include_archiv:[5,9],"public":1,"default":[5,11,13,4,9],ref_member_id:5,message_share_click:[12,4],through:[1,8,4],where:[0,1,8,11,7],view:1,user:[0,1,8,9,13],set:[0,1,2,3,6,8,9,12,13],link_id:[0,5,12,9,14],see:[7,1,8],result:[0,1,2,5,8,9],respons:[10,8,9,13],fail:[5,9,4],themselv:2,member_field:[0,7],xxxxx:6,subject:[8,12,9,14],statu:[1,4,5,7,8,9,13],fancyonion:11,kei:[0,1,8,11,4],is_schedul:9,message_forward:[12,4],databas:8,someth:1,last_modified_at:[7,8,9,13],addresse:5,written:1,between:[0,7,2],clicked_uniqu:5,"import":[1,8,4,10],subscript:[1,3],entiti:1,curlopt_url:[1,6,3],email:[0,1,5,7,8,9,13],"19t16":[7,14],wide:14,extend:1,numer:10,http404:[4,5,7,8,9,10,13,14],job:13,entir:[0,8],share_click:5,to_group_id:13,curlopt_returntransf:[1,6,3],curl_setopt:[1,6,3],member_remove_from_group:[12,4],send_start:[0,9,14],protect:1,accident:2,last:[0,5,10],delimit:5,lentil:7,pertain:5,message_click:[12,4],curlopt_post:[1,3],audienc:[1,8,9],mang:0,improv:1,http500:14,seri:5,com:[4,5,6,7,8,9,11,13],zip_code_field:0,"03t15":[7,5,8,13],point:1,toni:[7,8],overview:5,period:1,colon:[7,11],optout_count:[7,8,9,13],suppli:9,cancel:9,tuesdai:0,duplic:5,quit:[5,8],user_id:4,recur:14,headsup:9,addition:[1,2],due:5,been:[1,8,10,5],mark:[8,9],whom:9,tshow:[4,5,7,8,9,10,13,14],trigger:[5,7,8,13,10,9],unsubscrib:0,treat:8,interest:[10,4],basic:[0,1,4,8,13,14],monthli:[7,8,13],addit:[8,9,13],member_delet:[12,4],hesit:1,blob:4,email_us:[0,5],mailing_mailing_id:5,mailing_id:[0,5,8,12,9,14],fire:[8,4,14],xxx:[1,3],rubi:1,argument:[0,5],bulk:[1,8],input:1,present:7,statist:8,"case":[1,8],look:[1,14,10],frozen:9,durat:9,email_error:[7,8,9,13],defin:[0,10,8,9],"while":0,smith:[7,5,8,9,13],outcom:5,abov:[0,1,8,7],error:[1,3,6,8,10,13],veen:1,loop:8,opt:[0,4,5,7,8,13],readi:9,deliv:5,recipient_group:9,equal:0,itself:0,new_statu:12,webhook_id:4,account_id:[1,3,4,5,6,7,8,9,10,12,13,14],develop:1,recipient_memb:9,perform:8,make:[1,12,6,10],belong:[0,8,4],same:4,easier:12,member:[10,9,13],python:1,html:9,split:9,complet:[1,3,4,6,8,9],week:0,finish:[5,4],http:[1,2,3,4,5,6,11,9],href:[4,5,7,8,9,10,13,14],nest:0,someon:4,rais:[4,5,7,8,9,10,13,14],winner_id:9,php:1,studi:1,recent:[1,8],kept:11,center:0,min:5,well:[1,5],inherit:9,person:9,mailing_typ:[9,14],without:[0,1],command:1,thi:[0,1,4,5,7,8,9,10,12,13,14],undefin:0,http_code:[1,6,3],latest:11,identifi:8,paus:9,execut:[1,3],less:0,resp:[4,5,7,8,9,10,13,14],"_post":[1,3],against:0,aspect:13,recipient_email:9,source_filenam:8,yet:5,languag:1,"12t09":[7,8],display_nam:10,easi:[1,12,10],"01t00":8,had:0,littl:1,blog:4,add:[1,8,13,3],other:[1,8,9,3,5],curlopt_userpwd:[1,6,3],import_finish:[8,12,4],schedul:9,els:[1,6,3],save:7,match:[0,7],build:1,sanit:1,applic:[1,6,3],around:1,handl:1,disposit:1,crud:[8,13,14],print_r:[6,3],mailing_statu:[9,14],know:[1,4,5],background:13,parent_mailing_id:[9,14],bit:1,insert:11,emma:[7,5,8,9,13],like:1,onion:11,deprec:4,arbitrari:8,manual:9,integ:[1,8,14,10,5],collect:1,api:8,either:[0,5,7],bunch:0,output:9,group_id:[1,8,12,3],soft:[0,5],manag:[0,1,13,4],import_id:[8,12],www:[5,9],old:7,deal:[8,13],captur:1,arrai:[0,1,3,5,6,7,8,9,10,12,13,14],some:[1,11,5],field_delet:[12,4],certain:12,intern:10,sampl:[1,4,5,7,8,9,10,13,14],elaps:[2,9],unless:1,deleted_at:[7,8,13,10,9,14],some_string_field:0,librari:11,woodcock:1,emmarubi:1,bounce_count:[7,8,9,13],emmapython:1,public_kei:4,deliveri:5,broad:12,per:5,send_finish:[9,14],larg:[0,2],condit:7,three:9,network_cod:12,localhost:9,emmaphp:1,with_html_bodi:9,who:[0,5,8],bold:[4,5,7,8,9,10,13,14],event_typ:14,inspect:1,usag:[1,8],monsewicz:1,num_members_ad:8,fulli:11,from:[1,4,8,9,13,14],post:[1,3,4,7,8,9,10,13,14],group_creat:[12,4],gladi:[7,5,8,13],hurst:1,actual:5,zip:0,groups_upd:8,column:10,page:[1,2],includ:[1,5,7,8,9,10,13],webview:9,mean:0,disabl:[9,14],block:[1,2],yyyi:5,own:1,member_data:[1,3],glob:0,bounc:[0,5],within:[0,8],encod:[9,4],delivery_typ:[5,8],compos:0,webview_shar:5,field_typ:10,active_count:[7,8,9,13],public_webview_url:9,pivot:5,your:[1,4,5,7,8,9,10,13],websit:11,fast:8,van:1,wai:[1,12],area:1,overus:2,group_nam:[8,12,13,9],support:[1,12],unique_click:5,json:[0,1,3,4,6,7],submit:1,custom:[5,8,11,10],avail:[0,11,4],start:[1,2,8,4],interfac:12,send_at:[9,14],exceed:2,"var":3,purged_at:[7,8,9,13,14],interv:14,fork:1,head:[1,6,9,3],form:[1,3,4,6,8,10,14],enough:2,forc:1,forward:[0,5,8,9,4],"31st":0,group_typ:[8,9,13],push_offset_unit:14,link:[0,4,5,11,9,14],line:[1,5],realli:1,"true":[0,1,2,3,4,6,7,8,9,10,13,14],archived_t:[9,14],info:4,pull:[1,2],made:1,possibl:[5,8,12],whether:8,maximum:2,tell:12,http403:9,record:[0,7,8],below:[0,1,8,12],http400:[7,8,9],limit:[5,2,8,9],some_array_field:0,otherwis:[1,8,10],start_t:14,mta:5,expect:1,notif:9,creat:[4,5,7,13,10,9,14],"int":5,retriev:[7,1,2,8,9],year:[0,5,9,14],repres:5,exist:[0,4,5,7,8,10,13],behavior:11,bob:[7,5],curl:[1,6],portland:1,probabl:14,echo:[1,3],successfulli:[5,8,9],mailing_subject:12,grp:13,extract:11,when:[8,12,4,9],detail:[1,4,7,8,9,10,13],invalid:[7,8,9],event:[4,7,8,13,12,9,14],valid:[5,8,9,13],futur:1,num_skip:8,test:[5,6,7,13,9,14],ignor:8,you:[0,1,2,4,5,7,8,9,10,11,12,13],emmasdk:1,member_status_id:[7,5,8,9,13],public_api_kei:[1,6,3],stat:[5,9],claus:[0,7],event_nam:[12,4],e2ma:[1,2,6,3],error_messag:8,param:[9,4],app_messag:[1,3],ella:8,link_ord:[5,9],receiv:[0,2,5,8,12,9],heads_up_email:9,longer:9,home:11,confirm:8,descript:[4,14],ohmyemma:1,portion:0,opted_out:5,time:[1,2,8,13,5],reply_to:[9,14],resource_url:12,hello:[11,9,14]},objtypes:{"0":"http:get","1":"http:put","2":"http:post","3":"http:delete"},objnames:{"0":["http","get","HTTP get"],"1":["http","put","HTTP put"],"2":["http","post","HTTP post"],"3":["http","delete","HTTP delete"]},filenames:["member_search","index","pagination","php_signup_example","api/external/webhooks","api/external/response","php_get_member_example","api/external/searches","api/external/members","api/external/mailings","api/external/fields","placeholders","webhooks","api/external/groups","api/external/triggers"],titles:["Search Syntax","Emma API","Pagination","PHP Signup Example","Webhooks","Response","PHP Get Member By Email Example","Searches","Members","Mailings","Fields","Placeholder Syntax","Webhook Usage","Groups","Triggers"],objects:{"":{"/#account_id/members/#member_id/groups/remove":[8,1,1,"put--#account_id-members-#member_id-groups-remove"],"/#account_id/mailings/#mailing_id/winner/#winner_id":[9,2,1,"post--#account_id-mailings-#mailing_id-winner-#winner_id"],"/#account_id/response/#mailing_id/in_progress":[5,0,1,"get--#account_id-response-#mailing_id-in_progress"],"/#account_id/members/groups/remove":[8,1,1,"put--#account_id-members-groups-remove"],"/#account_id/mailings/#mailing_id/searches":[9,0,1,"get--#account_id-mailings-#mailing_id-searches"],"/#account_id/fields":[10,2,1,"post--#account_id-fields"],"/#account_id/members/#group_id/copy":[8,1,1,"put--#account_id-members-#group_id-copy"],"/#account_id/members/status":[8,1,1,"put--#account_id-members-status"],"/#account_id/response/#mailing_id/shares/overview":[5,0,1,"get--#account_id-response-#mailing_id-shares-overview"],"/#account_id/webhooks/events":[4,0,1,"get--#account_id-webhooks-events"],"/#account_id/members/#member_id/optout":[8,0,1,"get--#account_id-members-#member_id-optout"],"/#account_id/webhooks":[4,3,1,"delete--#account_id-webhooks"],"/#account_id/fields/#field_id":[10,3,1,"delete--#account_id-fields-#field_id"],"/#account_id/response/#mailing_id":[5,0,1,"get--#account_id-response-#mailing_id"],"/#account_id/groups/#member_group_id/members/remove":[13,3,1,"delete--#account_id-groups-#member_group_id-members-remove"],"/#account_id/searches":[7,2,1,"post--#account_id-searches"],"/#account_id/members/imports":[8,0,1,"get--#account_id-members-imports"],"/#account_id/forwards/#mailing_id/#member_id":[9,2,1,"post--#account_id-forwards-#mailing_id-#member_id"],"/#account_id/response/#mailing_id/customer_share_clicks":[5,0,1,"get--#account_id-response-#mailing_id-customer_share_clicks"],"/#account_id/mailings/#mailing_id/messages/#member_id":[9,0,1,"get--#account_id-mailings-#mailing_id-messages-#member_id"],"/#account_id/members/#member_id/mailings":[8,0,1,"get--#account_id-members-#member_id-mailings"],"/#account_id/groups/#from_group_id/#to_group_id/members/copy":[13,1,1,"put--#account_id-groups-#from_group_id-#to_group_id-members-copy"],"/#account_id/triggers":[14,2,1,"post--#account_id-triggers"],"/#account_id/triggers/#trigger_id":[14,3,1,"delete--#account_id-triggers-#trigger_id"],"/#account_id/members/delete":[8,1,1,"put--#account_id-members-delete"],"/#account_id/mailings/#mailing_id/groups":[9,0,1,"get--#account_id-mailings-#mailing_id-groups"],"/#account_id/response/#mailing_id/forwards":[5,0,1,"get--#account_id-response-#mailing_id-forwards"],"/#account_id/members/#member_id":[8,3,1,"delete--#account_id-members-#member_id"],"/#account_id/triggers/#trigger_id/mailings":[14,0,1,"get--#account_id-triggers-#trigger_id-mailings"],"/#account_id/searches/#search_id/members":[7,0,1,"get--#account_id-searches-#search_id-members"],"/#account_id/members/status/:status_from/to/:status_to":[8,1,1,"put--#account_id-members-status--status_from-to--status_to"],"/#account_id/response/#mailing_id/sends":[5,0,1,"get--#account_id-response-#mailing_id-sends"],"/#account_id/members":[8,3,1,"delete--#account_id-members"],"/#account_id/members/email/:email":[8,0,1,"get--#account_id-members-email--email"],"/#account_id/response/#mailing_id/links":[5,0,1,"get--#account_id-response-#mailing_id-links"],"/#account_id/searches/#search_id":[7,3,1,"delete--#account_id-searches-#search_id"],"/#account_id/members/imports/#import_id/members":[8,0,1,"get--#account_id-members-imports-#import_id-members"],"/#account_id/fields/#field_id/clear":[10,2,1,"post--#account_id-fields-#field_id-clear"],"/#account_id/groups/#member_group_id/members":[13,3,1,"delete--#account_id-groups-#member_group_id-members"],"/#account_id/members/imports/#import_id":[8,0,1,"get--#account_id-members-imports-#import_id"],"/#account_id/response":[5,0,1,"get--#account_id-response"],"/#account_id/response/#mailing_id/opens":[5,0,1,"get--#account_id-response-#mailing_id-opens"],"/#account_id/members/imports/delete":[8,3,1,"delete--#account_id-members-imports-delete"],"/#account_id/mailings":[9,0,1,"get--#account_id-mailings"],"/#account_id/mailings/cancel/#mailing_id":[9,3,1,"delete--#account_id-mailings-cancel-#mailing_id"],"/#account_id/mailings/validate":[9,2,1,"post--#account_id-mailings-validate"],"/#account_id/response/#mailing_id/deliveries":[5,0,1,"get--#account_id-response-#mailing_id-deliveries"],"/#account_id/mailings/#mailing_id/members":[9,0,1,"get--#account_id-mailings-#mailing_id-members"],"/#account_id/response/#share_id/customer_share":[5,0,1,"get--#account_id-response-#share_id-customer_share"],"/#account_id/webhooks/#webhook_id":[4,3,1,"delete--#account_id-webhooks-#webhook_id"],"/#account_id/members/add":[8,2,1,"post--#account_id-members-add"],"/#account_id/members/email/optout/:email":[8,1,1,"put--#account_id-members-email-optout--email"],"/#account_id/response/#mailing_id/optouts":[5,0,1,"get--#account_id-response-#mailing_id-optouts"],"/#account_id/response/#mailing_id/shares":[5,0,1,"get--#account_id-response-#mailing_id-shares"],"/#account_id/groups/#member_group_id":[13,3,1,"delete--#account_id-groups-#member_group_id"],"/#account_id/mailings/#mailing_id":[9,3,1,"delete--#account_id-mailings-#mailing_id"],"/#account_id/members/#member_id/groups":[8,3,1,"delete--#account_id-members-#member_id-groups"],"/#account_id/groups":[13,2,1,"post--#account_id-groups"],"/#account_id/response/#mailing_id/clicks":[5,0,1,"get--#account_id-response-#mailing_id-clicks"],"/#account_id/mailings/#mailing_id/headsup":[9,0,1,"get--#account_id-mailings-#mailing_id-headsup"],"/#account_id/response/#mailing_id/signups":[5,0,1,"get--#account_id-response-#mailing_id-signups"],"/#account_id/response/#mailing_id/customer_shares":[5,0,1,"get--#account_id-response-#mailing_id-customer_shares"]}},titleterms:{oper:0,quickstart:1,creat:12,"boolean":0,overview:[0,1,11,12],interv:0,share:12,syntax:[0,11],api:1,wrapper:1,respons:5,open:12,click:12,categori:1,statu:12,from:12,delet:12,todo:11,messag:12,member:[8,6,12],field:[10,12],add:12,trigger:14,call:1,forward:12,mail:[12,9],document:1,email:6,updat:12,finish:12,get:6,webhook:[12,4],signup:[12,3],usag:12,search:[0,7],word:1,"import":12,date:0,group:[12,13],post:12,php:[6,3],data:12,addit:1,placehold:11,term:0,wise:1,optout:12,remov:12,predic:0,filter:0,exampl:[6,3],pagin:2,emma:1}}) \ No newline at end of file +Search.setIndex({envversion:42,terms:{all:[0,1,4,5,8,9,10,11,12,13,14],code:[0,1,6,3],change_typ:8,queri:[0,2,4],month:[0,5,9,14],four:[0,5],mile:0,least:0,follow:[0,1,4,5,7,9,11,13],link_target:[5,9],privat:1,specif:[8,9,4],friendli:5,send:[1,9,4,3,5],program:1,customer_share_click:5,those:[1,12,5],group_upd:[12,4],sent:[5,8,12,9,14],curl_clos:[1,6,3],brown:[7,8],digit:5,everi:0,string:[0,4,5,7,8,9,10,12,13,14],fals:[1,3,4,5,6,7,8,9,10,13,14],end:[2,8],mailing_status:9,trigger_id:14,webview_share_click:5,affect:[7,8],member_add:[12,4],create_mail:9,new_boolean:10,foo:0,level:1,group_delet:[12,4],list:[0,1,2,4,5,7,8,9,10,11,12,13,14],upload:8,iter:2,"try":8,item:2,plaintext_onli:[9,14],div:[4,5,7,8,9,10,13,14],survey_id:14,setup:1,pleas:[1,8,11,9],prevent:2,work:[1,4],ten:0,sync:10,sign:[0,5,4],past:1,second:[0,7,14],field_creat:[12,4],further:1,shortcut_nam:10,click:[0,4,5,7,8,14],append:2,even:10,what:1,hide:[4,5,7,8,9,10,13,14],appear:[1,8],clock:1,section:1,current:[1,8,12,9],delet:[1,4,7,8,9,10,13,14],"new":[1,4,5,7,8,9,10,11,13,14],net:[1,2,6,3],delivery_t:8,ever:1,method:[5,8,13,4,9],can:[0,1,2,4,5,7,8,9,11,12,13],widget:[7,10,8,9,13],full:1,hash:0,datematch:0,displai:10,variat:9,gener:[0,8,12,14],onli:[5,8],here:[0,1,3,5,6,8],bodi:9,let:[1,4,10],address:[0,1,8,6,9],along:8,sinc:8,valu:[0,5,7,8,10,11],field_upd:[12,4],search:[8,9],survei:14,sender:[9,14],larger:2,queue:5,prior:9,action:[0,8],chang:[8,4],campaign:5,newbi:5,appli:[7,14],prefer:0,young:1,myemma:[4,5,7,8,9,13],filenam:8,customer_shar:5,"boolean":[1,5,7,8,9,10,13,14],curlopt_postfield:[1,3],total:5,jone:[7,5,8,13],select:[1,10],newslett:[7,8,13],describ:7,would:[0,1],commun:1,from_group_id:13,regist:4,two:[0,5],coverag:1,next:[0,1],create_webhook:4,few:[5,8],call:[8,4],criteria:7,member_add_to_group:[12,4],type:[1,3,4,5,6,7,10,9,14],until:2,more:[0,4,7,8,9,13],peopl:5,relat:[1,8,11,9],about:[10,8,12,4,9],notic:8,thide:[4,5,7,8,9,10,13,14],flag:[5,7,8,10,9,14],exce:2,indic:8,examin:1,particular:[1,4,5,8,10,12,9],in_progress:5,curl_getinfo:[1,6,3],origin:9,must:[0,7,13,10],none:9,endpoint:[1,4,5,7,8,9,10,13,14],join:[0,7],hour:0,der:1,member_sinc:[0,5,7,8,9,13],uniqu:5,histori:8,soup:7,remain:[0,9],archiv:[5,9],member_optout:[12,4],drill:5,control:[1,11,9],give:5,forward_mailing_id:5,email_domain:[0,5],share:[0,5,8,4],accept:[0,5,7,8,9,10,11,13,14],total_click:5,tag:[11,9],want:[1,12,13,5],occur:[7,12],some_numeric_field:0,delai:14,alwai:0,webhook_event_id:4,cours:1,multipl:[10,8],first_nam:[1,3,5,7,8,9,10,11,13,14],started_or_finish:[9,14],anoth:[9,13],get:[1,4,5,7,8,9,10,13,14],message_open:[12,4],html_bodi:[9,14],share_statu:5,push_offset:14,del_statu:5,tild:5,num_members_upd:8,simpl:0,chri:9,pizza:[7,8],map:0,birthdai:[10,14],referenc:7,sundai:0,jacqu:1,membership:13,taco:[7,5,8,9,13],mai:12,xxxx:6,associ:[1,8,9,4,5],grow:1,welcom:11,add_onli:8,"short":0,json_encod:[1,3],optout:[5,8,13],num_dupl:8,favorit:10,correspond:[0,1],greet:11,predic:1,issu:[1,10],"12t11":[7,5,8,9,13],combin:7,allow:[0,7,8],some_zipcode_field:0,signed_up:5,order:[5,10],michel:[8,9],mailing_nam:5,checkbox:10,fields_upd:8,over:2,becaus:12,buyer:[7,8,9,13],comma:[9,13],is_dis:14,vari:8,paramet:[2,4,5,7,8,9,10,13,14],widget_typ:10,style:[0,4,5,7,8,9,10,13,14],monitor:1,how:[7,1,2,4],fix:1,import_start:8,better:[13,14],platform:1,pend:[1,9],mailing_list:9,onc:9,hidden:13,main:1,might:[1,4],link_nam:[5,9],them:[8,9],messag:[4,5,8,11,9,14],"return":[0,1,4,5,7,8,9,10,12,13,14],greater:[0,8],thei:[0,9],food:10,timestamp:[0,5,12,9,10],spell:4,nashvil:1,dai:0,auth:1,instead:[12,2,8],now:5,down:5,term:1,alex:9,name:[0,4,5,7,8,9,10,11,13,14],edit:[7,1,14,10],troubleshoot:1,drop:1,authent:[1,6,4,3],successufulli:4,separ:[1,9,13],each:[1,2,5,9,12,11,13],found:[8,9,4,14],updat:[4,7,8,9,10,13,14],denni:1,status:[8,9],domain:0,weight:[4,5,7,8,9,10,13,14],resum:9,individu:[5,8],hard:[0,5],last_nam:[1,3,5,7,8,9,10,11,13,14],"05t15":5,connect:[1,6,3],doug:1,our:[1,11,12,4,14],happen:[1,4,5],commiss:1,short_display_nam:10,special:[0,7,8,13],out:[0,1,4,5,7,8,10,13],variabl:[1,6,3],message_shar:[12,4],network:[5,12],private_api_kei:[1,6,3],check_multipl:10,content:[1,11,6,9,3],rel:0,print:6,correct:10,integr:1,benjamin:[1,8],qualifi:11,insid:1,advanc:0,contain:[0,5,7,13,10,9],given:[0,8,9,4],standard:[5,9],status_from:8,base:[1,8,5],recipient_search:9,dictionari:8,put:[4,7,8,9,10,13,14],span:[4,5,7,8,9,10,13,14],"13t23":[7,5,8],refer:[5,7,8,13,10,9],visit:11,could:1,omit:5,success:[1,3,7,8,9,13],filter:[7,1],search_id:7,pagin:1,member_id:[5,7,8,9,12,13],summari:[1,5],assign:9,first:[0,1,10,5],oper:[7,1,14],rang:5,notifi:[1,12],directli:0,curlopt_ssl_verifyp:[1,6,3],curl_init:[1,6,3],number:[5,2,13,3,10],placehold:1,date:[5,8,14,10],unlik:9,alreadi:[10,8,9,13],done:8,plaintext_pref:[7,8,9,13],oppos:8,open:[0,3,4,5,6,7,8],payload:4,fanci:5,size:2,differ:0,"long":10,script:1,data:[1,10,4,3,5],system:[1,8,12,4,14],construct:[0,7,9],attach:11,outag:1,friend:11,curlinfo_http_cod:[1,6,3],shell:0,option:[0,5,7,8,9,10,13,14],especi:8,signup:[0,1,4,5,8,14],copi:[8,13],member_upd:[12,4],specifi:[0,2,7,8,10,11,9,14],curl_exec:[1,6,3],curlopt_httphead:[1,6,3],member_signup:[12,4],create_search:7,part:[0,9],enclos:11,initi:[10,9],than:[0,1,2,3,12,13],with_plaintext:9,"02t10":[5,8],"02t11":[5,8],"02t13":5,nathan:8,whenev:8,provid:[1,5,8,12,9,14],remov:[8,13,4],mailing_start:4,rate:2,structur:7,charact:9,greg:8,trackabl:11,were:5,minut:0,danc:1,error_count:[7,8,9,13],pre:[4,5,7,8,9,10,13,14],cleaner:1,sai:0,share_id:5,signup_form_id:[0,8,12,9,14],plaintext:[5,9,14],pass:[1,3],ani:[0,1,2,7,8,9],have:[0,1,5,8,12,9],tabl:5,need:1,seen:5,"null":[7,8,13,10,9,14],kevin:[9,14],signup_mail:0,caus:14,built:1,inform:[1,4,6,8,9,10,13],check:[8,6,9],offer:1,object_id:14,note:[1,8,9,4],also:[0,4,5,7,8,9,11,13],exampl:[0,1,7,5],take:[0,4],which:[0,1,4,8,10,12,9,14],some_number_field:0,datacent:[9,14],singl:[0,1,3,4,5,8,10,12,13],excit:11,sure:1,delete_memb:13,normal:9,parent_mail:14,recipient_count:[5,9,14],previou:9,field_id:[10,12,14],last_run_at:7,most:14,pair:11,"class":[4,5,7,8,9,10,13,14],don:1,member_group_id:[8,9,13],mcconnel:[9,14],url:[1,3,4,5,6,12],mailing_finish:[12,4],clear:10,request:[1,2,3],doe:[0,5,7,8,9,10,13],member_status_upd:[12,4],declar:9,tech:4,determin:1,dataset:10,dow:0,recipi:9,"6db0cc7e6fdb2da589b65f29d90c96b6":9,show:[4,5,7,8,9,10,11,13,14],text:[10,11,12],radiu:0,syntax:[1,9],radio:10,font:[4,5,7,8,9,10,13,14],fine:9,find:[1,6,5],status_to:8,toast:[7,5,8,13],access:[1,5],giant:12,just:[0,1,9],pretti:8,column_ord:10,explain:[0,1],winner:9,activ:[1,5,7,8,13,9],figur:1,should:[1,2,3,7,8,11,9],templat:[11,14],share_count:5,count:[1,2,3,5],variou:[8,13],confirmed_opt_in:[7,8,9,13],familiar:1,express:0,account:[1,4,5,7,8,10,13,14],repo:1,cannot:[8,9,4],progress:9,report:[10,8],requir:[1,7,8,10,11,9],object:[1,13,5],favorite_food:[5,7,8,13,10,9],bar:0,organ:1,include_archiv:[5,9],"public":1,"default":[5,11,13,4,9],ref_member_id:5,message_share_click:[12,4],through:[1,8,4],where:[0,1,8,11,7],view:1,user:[0,1,8,9,13],set:[0,1,2,3,6,8,9,12,13],link_id:[0,5,12,9,14],see:[7,1,8],result:[0,1,2,5,8,9],respons:[10,8,9,13],fail:[5,9,4],themselv:2,member_field:[0,7],xxxxx:6,subject:[8,12,9,14],statu:[1,4,5,7,8,9,13],fancyonion:11,kei:[0,1,8,11,4],is_schedul:9,message_forward:[12,4],databas:8,someth:1,last_modified_at:[7,8,9,13],addresse:5,written:1,between:[0,7,2],clicked_uniqu:5,"import":[1,8,4,10],subscript:[1,3],entiti:1,curlopt_url:[1,6,3],email:[0,1,5,7,8,9,13],wide:14,extend:1,numer:10,http404:[4,5,7,8,9,10,13,14],job:13,entir:[0,8],share_click:5,to_group_id:13,curlopt_returntransf:[1,6,3],curl_setopt:[1,6,3],member_remove_from_group:[12,4],send_start:[0,9,14],protect:1,accident:2,last:[0,5,10],delimit:5,lentil:7,pertain:5,message_click:[12,4],curlopt_post:[1,3],audienc:[1,8,9],mang:0,improv:1,http500:14,seri:5,com:[4,5,6,7,8,9,11,13],zip_code_field:0,"03t15":[7,5,8,13],point:1,toni:[7,8],overview:5,period:1,colon:[7,11],optout_count:[7,8,9,13],suppli:9,cancel:9,tuesdai:0,duplic:5,quit:[5,8],user_id:4,recur:14,headsup:9,addition:[1,2],due:5,been:[1,8,10,5],mark:[8,9],whom:9,tshow:[4,5,7,8,9,10,13,14],trigger:[5,7,8,13,10,9],unsubscrib:0,treat:8,interest:[10,4],basic:[0,1,4,8,13,14],monthli:[7,8,13],addit:[8,9,13],member_delet:[12,4],hesit:1,blob:4,email_us:[0,5],mailing_mailing_id:5,mailing_id:[0,5,8,12,9,14],fire:[8,4,14],xxx:[1,3],rubi:1,argument:[0,5],bulk:[1,8],input:1,present:7,statist:8,"case":[1,8],look:[1,14,10],frozen:9,durat:9,email_error:[7,8,9,13],defin:[0,10,8,9],"while":0,smith:[7,5,8,9,13],outcom:5,abov:[0,1,8,7],error:[1,3,6,8,10,13],veen:1,loop:8,opt:[0,4,5,7,8,13],readi:9,deliv:5,recipient_group:9,equal:0,itself:0,new_statu:12,webhook_id:4,account_id:[1,3,4,5,6,7,8,9,10,12,13,14],develop:1,recipient_memb:9,perform:8,make:[1,12,6,10],belong:[0,8,4],same:4,easier:12,member:[10,9,13],python:1,html:9,split:9,probabl:14,complet:[1,3,4,6,8,9],week:0,finish:[5,4],http:[1,2,3,4,5,6,11,9],href:[4,5,7,8,9,10,13,14],nest:0,someon:4,rais:[4,5,7,8,9,10,13,14],winner_id:9,php:1,studi:1,recent:[1,8],kept:11,center:0,min:5,well:[1,5],inherit:9,person:9,mailing_typ:[9,14],without:[0,1],command:1,thi:[0,1,4,5,7,8,9,10,12,13,14],undefin:0,http_code:[1,6,3],latest:11,identifi:8,paus:9,execut:[1,3],less:0,resp:[4,5,7,8,9,10,13,14],"_post":[1,3],against:0,aspect:13,recipient_email:9,source_filenam:8,yet:5,languag:1,"12t09":[7,8],display_nam:10,easi:[1,12,10],"01t00":8,had:0,littl:1,blog:4,add:[1,8,13,3],other:[1,8,9,3,5],curlopt_userpwd:[1,6,3],import_finish:[8,12,4],schedul:9,els:[1,6,3],save:7,match:[0,7],build:1,sanit:1,applic:[1,6,3],around:1,handl:1,disposit:1,crud:[8,13,14],print_r:[6,3],mailing_statu:[9,14],know:[1,4,5],background:13,parent_mailing_id:[9,14],bit:1,insert:11,emma:[7,5,8,9,13],like:1,onion:11,deprec:4,arbitrari:8,manual:9,integ:[1,8,14,10,5],collect:1,api:8,either:[0,5,7],bunch:0,output:9,group_id:[1,8,12,3],soft:[0,5],manag:[0,1,13,4],import_id:[8,12],www:[5,9],old:7,deal:[8,13],captur:1,arrai:[0,1,3,5,6,7,8,9,10,12,13,14],some:[1,11,5],field_delet:[12,4],certain:12,intern:10,sampl:[1,4,5,7,8,9,10,13,14],elaps:[2,9],unless:1,deleted_at:[7,8,13,10,9,14],some_string_field:0,librari:11,woodcock:1,emmarubi:1,bounce_count:[7,8,9,13],emmapython:1,public_kei:4,deliveri:5,broad:12,per:5,send_finish:[9,14],larg:[0,2],condit:7,three:9,network_cod:12,localhost:9,emmaphp:1,with_html_bodi:9,who:[0,5,8],bold:[4,5,7,8,9,10,13,14],event_typ:14,inspect:1,usag:[1,8],monsewicz:1,num_members_ad:8,fulli:11,from:[1,4,8,9,13,14],post:[1,3,4,7,8,9,10,13,14],group_creat:[12,4],gladi:[7,5,8,13],hurst:1,actual:5,zip:0,groups_upd:8,column:10,page:[1,2],includ:[1,5,7,8,9,10,13],webview:9,mean:0,disabl:[9,14],block:[1,2],yyyi:5,own:1,member_data:[1,3],glob:0,bounc:[0,5],within:[0,8],encod:[9,4],delivery_typ:[5,8],compos:0,webview_shar:5,field_typ:10,active_count:[7,8,9,13],public_webview_url:9,aben:1,pivot:5,your:[1,4,5,7,8,9,10,13],websit:11,fast:8,van:1,wai:[1,12],area:1,overus:2,group_nam:[8,12,13,9],support:[1,12],unique_click:5,json:[0,1,3,4,6,7],submit:1,custom:[5,8,11,10],avail:[0,11,4],start:[1,2,8,4],interfac:12,send_at:[9,14],exceed:2,"var":3,purged_at:[7,8,9,13,14],interv:14,fork:1,"24t10":[7,14],head:[1,6,9,3],form:[1,3,4,6,8,10,14],enough:2,forc:1,forward:[0,5,8,9,4],"31st":0,group_typ:[8,9,13],push_offset_unit:14,link:[0,4,5,11,9,14],line:[1,5],realli:1,"true":[0,1,2,3,4,6,7,8,9,10,13,14],archived_t:[9,14],info:4,pull:[1,2],made:1,possibl:[5,8,12],whether:8,maximum:2,tell:12,http403:9,record:[0,7,8],below:[0,1,8,12],http400:[7,8,9],limit:[5,2,8,9],some_array_field:0,otherwis:[1,8,10],start_t:14,mta:5,expect:1,notif:9,creat:[4,5,7,13,10,9,14],"int":5,retriev:[7,1,2,8,9],year:[0,5,9,14],repres:5,exist:[0,4,5,7,8,10,13],behavior:11,bob:[7,5],curl:[1,6],portland:1,inc:1,echo:[1,3],successfulli:[5,8,9],mailing_subject:12,grp:13,extract:11,when:[8,12,4,9],detail:[1,4,7,8,9,10,13],invalid:[7,8,9],event:[4,7,8,13,12,9,14],valid:[5,8,9,13],futur:1,num_skip:8,test:[5,6,7,13,9,14],ignor:8,you:[0,1,2,4,5,7,8,9,10,11,12,13],emmasdk:1,member_status_id:[7,5,8,9,13],public_api_kei:[1,6,3],stat:[5,9],claus:[0,7],event_nam:[12,4],e2ma:[1,2,6,3],error_messag:8,param:[9,4],app_messag:[1,3],ella:8,link_ord:[5,9],receiv:[0,2,5,8,12,9],heads_up_email:9,longer:9,home:11,confirm:8,descript:[4,14],ohmyemma:1,portion:0,opted_out:5,time:[1,2,8,13,5],reply_to:[9,14],resource_url:12,hello:[11,9,14]},objtypes:{"0":"http:get","1":"http:put","2":"http:post","3":"http:delete"},objnames:{"0":["http","get","HTTP get"],"1":["http","put","HTTP put"],"2":["http","post","HTTP post"],"3":["http","delete","HTTP delete"]},filenames:["member_search","index","pagination","php_signup_example","api/external/webhooks","api/external/response","php_get_member_example","api/external/searches","api/external/members","api/external/mailings","api/external/fields","placeholders","webhooks","api/external/groups","api/external/triggers"],titles:["Search Syntax","Emma API","Pagination","PHP Signup Example","Webhooks","Response","PHP Get Member By Email Example","Searches","Members","Mailings","Fields","Placeholder Syntax","Webhook Usage","Groups","Triggers"],objects:{"":{"/#account_id/members/#member_id/groups/remove":[8,1,1,"put--#account_id-members-#member_id-groups-remove"],"/#account_id/mailings/#mailing_id/winner/#winner_id":[9,2,1,"post--#account_id-mailings-#mailing_id-winner-#winner_id"],"/#account_id/response/#mailing_id/in_progress":[5,0,1,"get--#account_id-response-#mailing_id-in_progress"],"/#account_id/members/groups/remove":[8,1,1,"put--#account_id-members-groups-remove"],"/#account_id/mailings/#mailing_id/searches":[9,0,1,"get--#account_id-mailings-#mailing_id-searches"],"/#account_id/fields":[10,2,1,"post--#account_id-fields"],"/#account_id/members/#group_id/copy":[8,1,1,"put--#account_id-members-#group_id-copy"],"/#account_id/members/status":[8,1,1,"put--#account_id-members-status"],"/#account_id/response/#mailing_id/shares/overview":[5,0,1,"get--#account_id-response-#mailing_id-shares-overview"],"/#account_id/webhooks/events":[4,0,1,"get--#account_id-webhooks-events"],"/#account_id/members/#member_id/optout":[8,0,1,"get--#account_id-members-#member_id-optout"],"/#account_id/webhooks":[4,3,1,"delete--#account_id-webhooks"],"/#account_id/fields/#field_id":[10,3,1,"delete--#account_id-fields-#field_id"],"/#account_id/response/#mailing_id":[5,0,1,"get--#account_id-response-#mailing_id"],"/#account_id/groups/#member_group_id/members/remove":[13,3,1,"delete--#account_id-groups-#member_group_id-members-remove"],"/#account_id/searches":[7,2,1,"post--#account_id-searches"],"/#account_id/members/imports":[8,0,1,"get--#account_id-members-imports"],"/#account_id/forwards/#mailing_id/#member_id":[9,2,1,"post--#account_id-forwards-#mailing_id-#member_id"],"/#account_id/response/#mailing_id/customer_share_clicks":[5,0,1,"get--#account_id-response-#mailing_id-customer_share_clicks"],"/#account_id/mailings/#mailing_id/messages/#member_id":[9,0,1,"get--#account_id-mailings-#mailing_id-messages-#member_id"],"/#account_id/members/#member_id/mailings":[8,0,1,"get--#account_id-members-#member_id-mailings"],"/#account_id/groups/#from_group_id/#to_group_id/members/copy":[13,1,1,"put--#account_id-groups-#from_group_id-#to_group_id-members-copy"],"/#account_id/triggers":[14,2,1,"post--#account_id-triggers"],"/#account_id/triggers/#trigger_id":[14,3,1,"delete--#account_id-triggers-#trigger_id"],"/#account_id/members/delete":[8,1,1,"put--#account_id-members-delete"],"/#account_id/mailings/#mailing_id/groups":[9,0,1,"get--#account_id-mailings-#mailing_id-groups"],"/#account_id/response/#mailing_id/forwards":[5,0,1,"get--#account_id-response-#mailing_id-forwards"],"/#account_id/members/#member_id":[8,3,1,"delete--#account_id-members-#member_id"],"/#account_id/triggers/#trigger_id/mailings":[14,0,1,"get--#account_id-triggers-#trigger_id-mailings"],"/#account_id/searches/#search_id/members":[7,0,1,"get--#account_id-searches-#search_id-members"],"/#account_id/members/status/:status_from/to/:status_to":[8,1,1,"put--#account_id-members-status--status_from-to--status_to"],"/#account_id/response/#mailing_id/sends":[5,0,1,"get--#account_id-response-#mailing_id-sends"],"/#account_id/members":[8,3,1,"delete--#account_id-members"],"/#account_id/members/email/:email":[8,0,1,"get--#account_id-members-email--email"],"/#account_id/response/#mailing_id/links":[5,0,1,"get--#account_id-response-#mailing_id-links"],"/#account_id/searches/#search_id":[7,3,1,"delete--#account_id-searches-#search_id"],"/#account_id/members/imports/#import_id/members":[8,0,1,"get--#account_id-members-imports-#import_id-members"],"/#account_id/fields/#field_id/clear":[10,2,1,"post--#account_id-fields-#field_id-clear"],"/#account_id/groups/#member_group_id/members":[13,3,1,"delete--#account_id-groups-#member_group_id-members"],"/#account_id/members/imports/#import_id":[8,0,1,"get--#account_id-members-imports-#import_id"],"/#account_id/response":[5,0,1,"get--#account_id-response"],"/#account_id/response/#mailing_id/opens":[5,0,1,"get--#account_id-response-#mailing_id-opens"],"/#account_id/members/imports/delete":[8,3,1,"delete--#account_id-members-imports-delete"],"/#account_id/mailings":[9,0,1,"get--#account_id-mailings"],"/#account_id/mailings/cancel/#mailing_id":[9,3,1,"delete--#account_id-mailings-cancel-#mailing_id"],"/#account_id/mailings/validate":[9,2,1,"post--#account_id-mailings-validate"],"/#account_id/response/#mailing_id/deliveries":[5,0,1,"get--#account_id-response-#mailing_id-deliveries"],"/#account_id/mailings/#mailing_id/members":[9,0,1,"get--#account_id-mailings-#mailing_id-members"],"/#account_id/response/#share_id/customer_share":[5,0,1,"get--#account_id-response-#share_id-customer_share"],"/#account_id/webhooks/#webhook_id":[4,3,1,"delete--#account_id-webhooks-#webhook_id"],"/#account_id/members/add":[8,2,1,"post--#account_id-members-add"],"/#account_id/members/email/optout/:email":[8,1,1,"put--#account_id-members-email-optout--email"],"/#account_id/response/#mailing_id/optouts":[5,0,1,"get--#account_id-response-#mailing_id-optouts"],"/#account_id/response/#mailing_id/shares":[5,0,1,"get--#account_id-response-#mailing_id-shares"],"/#account_id/groups/#member_group_id":[13,3,1,"delete--#account_id-groups-#member_group_id"],"/#account_id/mailings/#mailing_id":[9,3,1,"delete--#account_id-mailings-#mailing_id"],"/#account_id/members/#member_id/groups":[8,3,1,"delete--#account_id-members-#member_id-groups"],"/#account_id/groups":[13,2,1,"post--#account_id-groups"],"/#account_id/response/#mailing_id/clicks":[5,0,1,"get--#account_id-response-#mailing_id-clicks"],"/#account_id/mailings/#mailing_id/headsup":[9,0,1,"get--#account_id-mailings-#mailing_id-headsup"],"/#account_id/response/#mailing_id/signups":[5,0,1,"get--#account_id-response-#mailing_id-signups"],"/#account_id/response/#mailing_id/customer_shares":[5,0,1,"get--#account_id-response-#mailing_id-customer_shares"]}},titleterms:{oper:0,quickstart:1,creat:12,"boolean":0,overview:[0,1,11,12],interv:0,share:12,syntax:[0,11],api:1,wrapper:1,respons:5,open:12,click:12,categori:1,statu:12,from:12,delet:12,todo:11,messag:12,member:[8,6,12],field:[10,12],add:12,trigger:14,call:1,forward:12,mail:[12,9],document:1,email:6,updat:12,finish:12,get:6,webhook:[12,4],signup:[12,3],usag:12,search:[0,7],word:1,"import":12,date:0,group:[12,13],post:12,php:[6,3],data:12,addit:1,placehold:11,term:0,wise:1,optout:12,remov:12,predic:0,filter:0,exampl:[6,3],pagin:2,emma:1}}) \ No newline at end of file diff --git a/webhooks.html b/webhooks.html index 94dfc41..7d168ad 100644 --- a/webhooks.html +++ b/webhooks.html @@ -506,7 +506,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 19, 2013 at 04:37 PM. + Last updated on Jul 24, 2013 at 10:25 AM. </div> </body> </html> \ No newline at end of file From bf5996bd524e405554cb09f277e07be900f1a196 Mon Sep 17 00:00:00 2001 From: Jason Bynum <jason.bynum@myemma.com> Date: Mon, 29 Jul 2013 08:21:25 -0500 Subject: [PATCH 051/219] Update audience documentation. --- _sources/index.txt | 9 ----- api/external/fields.html | 2 +- api/external/groups.html | 2 +- api/external/mailings.html | 2 +- api/external/members.html | 78 ++++++++++++++++++++++++++++++++---- api/external/response.html | 2 +- api/external/searches.html | 4 +- api/external/triggers.html | 8 ++-- api/external/webhooks.html | 2 +- genindex.html | 2 +- http-routingtable.html | 7 +++- index.html | 12 +----- member_search.html | 2 +- objects.inv | Bin 1388 -> 1397 bytes pagination.html | 2 +- php_get_member_example.html | 2 +- php_signup_example.html | 2 +- placeholders.html | 2 +- search.html | 2 +- searchindex.js | 2 +- webhooks.html | 2 +- 21 files changed, 99 insertions(+), 47 deletions(-) diff --git a/_sources/index.txt b/_sources/index.txt index 7439230..ef2a084 100644 --- a/_sources/index.txt +++ b/_sources/index.txt @@ -1,13 +1,6 @@ Emma API ======== -A Word To The Wise... ---------------------- - -Use the documentation here to set up and troubleshoot your API calls. We don't offer one-on-one support -for Emma's public API, but our system is monitored around the clock. If there's ever a dropped connection -or outage, we'll notify users on our `status page <http://myemma.com/status>`_. - Overview -------- @@ -37,8 +30,6 @@ This collection is young, but growing, and includes wrappers commissioned by Emm `OhMyEmma <https://github.com/jwoodcock/OhMyEmma>`_: Built by Nashville developer `Jacques Woodcock <https://github.com/jwoodcock>`_. - `Emma <https://github.com/markroland/emma>`_: Built by Nashville-based `Abenity, Inc <http://www.abenity.com/>`_. - **Python** `EmmaPython <https://github.com/myemma/EmmaPython>`_: Built by Emma's own `Doug Hurst <https://github.com/dalanhurst>`_. diff --git a/api/external/fields.html b/api/external/fields.html index 89b11d1..12b02ee 100644 --- a/api/external/fields.html +++ b/api/external/fields.html @@ -414,7 +414,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 24, 2013 at 10:25 AM. + Last updated on Jul 29, 2013 at 08:21 AM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/groups.html b/api/external/groups.html index 2810fac..01e284e 100644 --- a/api/external/groups.html +++ b/api/external/groups.html @@ -708,7 +708,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 24, 2013 at 10:25 AM. + Last updated on Jul 29, 2013 at 08:21 AM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/mailings.html b/api/external/mailings.html index 4c84f0a..0e15137 100644 --- a/api/external/mailings.html +++ b/api/external/mailings.html @@ -818,7 +818,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 24, 2013 at 10:25 AM. + Last updated on Jul 29, 2013 at 08:21 AM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/members.html b/api/external/members.html index b14408b..e4569dd 100644 --- a/api/external/members.html +++ b/api/external/members.html @@ -488,12 +488,6 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli <li><strong>email</strong> (<em>string</em>) – Email address of member to add or update</li> <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>signup_form_id</strong> (<em>integer</em>) – <p>Optional. Indicate that this member used a particular signup form. -This is important if you have custom confirmation messages for a particular signup form and -so that signup-based triggers will be fired.</p> -<p><em>Note: Members who are added to your audience using this API call will not appear -in “recent activity” searches within your account.</em></p> -</li> </ul> </td> </tr> @@ -527,6 +521,76 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli </p> </dd></dl> +<dl class="post"> +<dt id="post--#account_id-members-signup"> +<tt class="descname">POST </tt><tt class="descname">/#account_id/members/signup</tt><a class="headerlink" href="#post--#account_id-members-signup" title="Permalink to this definition">¶</a></dt> +<dd><p>Takes the necessary actions to signup a member and enlist them in the +provided group ids. You can send the same member multiple times and +pass in new group ids to signup.</p> +<p>This process trigger the opt-out workflow, and will send a mailing to +the member on new group enlistments. If no new groups are provided for +an existing member, the endpoint will respond back with their status +and member_id, performing no additional actions.</p> +<dl class="docutils"> +<dt><a href="#id1"><span class="problematic" id="id2">*</span></a>Note: Members who are added to your audience using this API call will</dt> +<dd>not appear in “recent activity” searches within your account.*</dd> +</dl> +<table class="docutils field-list" frame="void" rules="none"> +<col class="field-name" /> +<col class="field-body" /> +<tbody valign="top"> +<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> +<li><strong>email</strong> (<em>string</em>) – Email address of the member to sign-up.</li> +<li><strong>group_ids</strong> (<em>Array of strings (group_ids)</em>) – An array of group ids to associate +sign-up with.</li> +<li><strong>fields</strong> (<em>dictionary</em>) – Optional. Names and values of user-defined fields to +update.</li> +<li><strong>signup_form_id</strong> (<em>integer</em>) – Optional. Indicate that this member used a +particular signup form. This is important if you +have custom mailings for a particular signup form +and so that signup-based triggers will be fired.</li> +<li><strong>opt_in_subject</strong> (<em>string</em>) – Optional. Override the confirmation message +subject with your own copy.</li> +<li><strong>opt_in_message</strong> (<em>string</em>) – Optional. Override the confirmation message body +with your own copy. Must include the following +tags: [rsvp_name], [rsvp_email], [opt_in_url], +[opt_out_url].</li> +</ul> +</td> +</tr> +<tr class="field-even field"><th class="field-name">Return :</th><td class="field-body"><p class="first last">The member_id of the member, and their status. The status will +be reported as ‘a’ (active), ‘e’ (error), or ‘o’ (optout).</p> +</td> +</tr> +</tbody> +</table> +<p> +<div class="sample-response hide-response"> +<span style="font-weight:bold;">Sample Response</span> +<a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>POST /100/members/signup</b> +{ + "fields": { + "first_name": "Ryan" + }, + "group_ids": [ + "1", + "2" + ], + "email": "example@myemma.com", + "signup_form_id": 1 +} + +{ + "status": "a", + "member_id": 1024 +} +</pre> +</div> +</p> +</dd></dl> + <dl class="put"> <dt id="put--#account_id-members-delete"> <tt class="descname">PUT </tt><tt class="descname">/#account_id/members/delete</tt><a class="headerlink" href="#put--#account_id-members-delete" title="Permalink to this definition">¶</a></dt> @@ -1219,7 +1283,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 24, 2013 at 10:25 AM. + Last updated on Jul 29, 2013 at 08:21 AM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/response.html b/api/external/response.html index 47846b4..4cc33a6 100644 --- a/api/external/response.html +++ b/api/external/response.html @@ -1018,7 +1018,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 24, 2013 at 10:25 AM. + Last updated on Jul 29, 2013 at 08:21 AM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/searches.html b/api/external/searches.html index 6868fe9..06c4983 100644 --- a/api/external/searches.html +++ b/api/external/searches.html @@ -201,7 +201,7 @@ <h1>Searches<a class="headerlink" href="#searches" title="Permalink to this head "criteria": "[\"or\", [\"group\", \"eq\", \"Monthly Newsletter\"],[\"group\", \"eq\", \"Widget Buyers\"]]", "deleted_at": null, "purged_at": null, - "last_run_at": "@D:2013-07-24T10:25:34", + "last_run_at": "@D:2013-07-29T08:21:21", "active_count": 2, "account_id": 100 } @@ -513,7 +513,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 24, 2013 at 10:25 AM. + Last updated on Jul 29, 2013 at 08:21 AM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/triggers.html b/api/external/triggers.html index 3d9c015..e26da10 100644 --- a/api/external/triggers.html +++ b/api/external/triggers.html @@ -149,7 +149,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": 203, "push_offset_units": "0:-14:0:0", - "start_ts": "@D:2013-07-24T10:25:31", + "start_ts": "@D:2013-07-29T08:21:19", "trigger_id": 100, "signups": null, "push_offset": "@I:-1209600.0", @@ -192,7 +192,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": null, "push_offset_units": "0:3:0:0", - "start_ts": "@D:2013-07-24T10:25:31", + "start_ts": "@D:2013-07-29T08:21:19", "trigger_id": 101, "signups": [ 1, @@ -331,7 +331,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": 203, "push_offset_units": "0:-14:0:0", - "start_ts": "@D:2013-07-24T10:25:31", + "start_ts": "@D:2013-07-29T08:21:19", "trigger_id": 100, "signups": null, "push_offset": "@I:-1209600.0", @@ -506,7 +506,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 24, 2013 at 10:25 AM. + Last updated on Jul 29, 2013 at 08:21 AM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/webhooks.html b/api/external/webhooks.html index e5177fd..bd6da19 100644 --- a/api/external/webhooks.html +++ b/api/external/webhooks.html @@ -486,7 +486,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 24, 2013 at 10:25 AM. + Last updated on Jul 29, 2013 at 08:21 AM. </div> </body> </html> \ No newline at end of file diff --git a/genindex.html b/genindex.html index 15a8a40..6dee464 100644 --- a/genindex.html +++ b/genindex.html @@ -144,7 +144,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 24, 2013 at 10:25 AM. + Last updated on Jul 29, 2013 at 08:21 AM. </div> </body> </html> \ No newline at end of file diff --git a/http-routingtable.html b/http-routingtable.html index 179b2a2..d887c3d 100644 --- a/http-routingtable.html +++ b/http-routingtable.html @@ -376,6 +376,11 @@ <h1>HTTP Routing Table</h1> <td> <a href="api/external/members.html#delete--#account_id-members-imports-delete"><tt class="xref">DELETE /#account_id/members/imports/delete</tt></a></td><td> <em></em></td></tr> + <tr> + <td></td> + <td> + <a href="api/external/members.html#post--#account_id-members-signup"><tt class="xref">POST /#account_id/members/signup</tt></a></td><td> + <em></em></td></tr> <tr> <td></td> <td> @@ -606,7 +611,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 24, 2013 at 10:25 AM. + Last updated on Jul 29, 2013 at 08:21 AM. </div> </body> </html> \ No newline at end of file diff --git a/index.html b/index.html index 225d652..37a6c8b 100644 --- a/index.html +++ b/index.html @@ -99,12 +99,6 @@ <h3>Navigation</h3> <div class="section" id="emma-api"> <h1>Emma API<a class="headerlink" href="#emma-api" title="Permalink to this headline">¶</a></h1> -<div class="section" id="a-word-to-the-wise"> -<h2>A Word To The Wise...<a class="headerlink" href="#a-word-to-the-wise" title="Permalink to this headline">¶</a></h2> -<p>Use the documentation here to set up and troubleshoot your API calls. We don’t offer one-on-one support -for Emma’s public API, but our system is monitored around the clock. If there’s ever a dropped connection -or outage, we’ll notify users on our <a class="reference external" href="http://myemma.com/status">status page</a>.</p> -</div> <div class="section" id="overview"> <h2>Overview<a class="headerlink" href="#overview" title="Permalink to this headline">¶</a></h2> <p>Emma’s platform is accessible through our public API. The API provides access @@ -147,8 +141,7 @@ <h2>API Wrappers<a class="headerlink" href="#api-wrappers" title="Permalink to t <dl class="docutils"> <dt><strong>PHP</strong></dt> <dd><p class="first"><a class="reference external" href="https://github.com/myemma/EmmaPHP">EmmaPHP</a> : Commissioned by Emma and built by Nashville developer <a class="reference external" href="https://github.com/dennismonsewicz">Dennis Monsewicz</a>.</p> -<p><a class="reference external" href="https://github.com/jwoodcock/OhMyEmma">OhMyEmma</a>: Built by Nashville developer <a class="reference external" href="https://github.com/jwoodcock">Jacques Woodcock</a>.</p> -<p class="last"><a class="reference external" href="https://github.com/markroland/emma">Emma</a>: Built by Nashville-based <a class="reference external" href="http://www.abenity.com/">Abenity, Inc</a>.</p> +<p class="last"><a class="reference external" href="https://github.com/jwoodcock/OhMyEmma">OhMyEmma</a>: Built by Nashville developer <a class="reference external" href="https://github.com/jwoodcock">Jacques Woodcock</a>.</p> </dd> <dt><strong>Python</strong></dt> <dd><a class="reference external" href="https://github.com/myemma/EmmaPython">EmmaPython</a>: Built by Emma’s own <a class="reference external" href="https://github.com/dalanhurst">Doug Hurst</a>.</dd> @@ -297,7 +290,6 @@ <h2>Additional Documentation<a class="headerlink" href="#additional-documentatio <h3><a href="#">Table Of Contents</a></h3> <ul> <li><a class="reference internal" href="#">Emma API</a><ul> -<li><a class="reference internal" href="#a-word-to-the-wise">A Word To The Wise...</a></li> <li><a class="reference internal" href="#overview">Overview</a></li> <li><a class="reference internal" href="#api-wrappers">API Wrappers</a></li> <li><a class="reference internal" href="#quickstart">Quickstart</a></li> @@ -349,7 +341,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 24, 2013 at 10:25 AM. + Last updated on Jul 29, 2013 at 08:21 AM. </div> </body> </html> \ No newline at end of file diff --git a/member_search.html b/member_search.html index 3cc18f8..9773126 100644 --- a/member_search.html +++ b/member_search.html @@ -255,7 +255,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 24, 2013 at 10:25 AM. + Last updated on Jul 29, 2013 at 08:21 AM. </div> </body> </html> \ No newline at end of file diff --git a/objects.inv b/objects.inv index c0b6d561228ba49fb607041755078dac48d52a6d..475a6efa15eb96aa8df3bce20c32572b474de8bc 100644 GIT binary patch delta 1265 zcmV<N1P=S`3iS$*lz#-3U<4-H{r3g@5ezeC2+oNF+wYA%&*K?fh`OwE@h|CA{#x-j zQ6=nKQkb`2FX~#IlJDd1m#fTyuFWU24W{=GnfH}2gFeLDMasYDzT<`PN1CQi4>SLm z?)XRlOMZ|4UOK_s?Bb8s?+oQH-Qnlhxv6+2F0#r+d+t7K#ebIu-`frK><u#`e%@at zzou6&4KK=?t5VhrJojFseHqO#Z;a)j9anLE8%><eL;tomm`NG>^u)7F_O&{fdD@Du zk##51)0LN1Sr_BWvOYJhEQYo&xhU1V7D6T865f=l_@_i$^U4j>d_xDuX1L5Yvl%X% z<1*h4)2s9B(0{WKxDj>~VuWq>jBua}3*Jjn<v5jYMu^PV1)^n2jXQ>SD7@{95ZGom zgJJ|vb{9UpPvuRtw^DpW^`^#V4trsb-IS@giCW<c>u=r_wQXhwW~rM=`=f01CKz7H zM#)~`n$aUL$>>&g$72Q$ncmTP!7@xw(=((Pf*{!)g?}KHnBu^;!cqNW?k}&6Yy%>r zIo+aAc2?GRN?ymXJ8pw>R+ZV`xX}`3*w(*|dhvFELtK!nwk(RFFUn*)AXIKVf}5Vq zuaG*49Bht7Iedy%_D$TQ$3Rl#^)A~F-sW)?<v=$@6iqu6*KRBJ0Ux8H1x{r<tB9ww zT?*PMEr06Bp4N!4n~(Vx(~cO~)7R;7P(2d{(+|@64bRB2S0hrmb#@S!-C~9hyY!@g zM02e@|JWTE^SX{?E?`W5DR$^_h#9((EkU=Gw_c9u%YZ52sMpb)*%q;($xsvLITlUP zqK>WS5pjQ3^~`(<tw4{S_@sH}qAG{Fsf;|u8GkG##o3G+59BzT=bp}HSH3>J4i<Rf zXv#{&T!9^R`4h@<VxW#1pov=R#xHQRB=aHNY5YL$3DinkN&enS3C{30SO{xQ3!YD? zLBXOEmULOvp;<npX@f}-*hTQX>zk;evY7j_pJA$3c{35M>4W|rns+5Z%wSWcy=9B1 z@PCytsKPhQ(8YjGW4)T-VGDFkpb?SM0RL(Lu=*9{ik9@%z)UvgLWfruJ-Hx0Pws0% z!pVhxzXs_13VB6G_<n6S)q5+i_bqi&a=pJY*?b<`T^<RWlQ>sQB#6s9#Z})O^tA!m zb6`gbCe-gg5#j|#HDszn9o;PkWZy9#FMkNqt2cntuijRql<JLCghxJq!aE{;)z9;| zzfvXLe<h=A7RF}yOiA~Dz$e|K0Q~cNlokEfJ&MzsTl`>bA_~ndIv9hX<maQTYtatE zo1XXS%5Ljm7<v#AA&tvs_{-%spO!tVR`KKkb1blD4jy0pizbM0aZ;@a(W@rA?teF4 zl{t68>&Oy2sL+>MkiiqungHIc^DAx$)!PbdPk@))E&xoa`caEb#vi_Dg5VeV+zKDN zYFdVgp@<s%e{6~F;eu&2dL9>PzlI7>h{HP(Rt)fIXC2S;{IJ(YjNtt`guOUHSK!zU z`=08}WEg?v(mf*9a3NxEIU#1^r)u(f_H~TOeJn?EF;waZttWPnmmqh?n(;al)f31y z@I%ED%<Z2_5I3QO!Yg2y)DM~vDWwh$RxD9B5VdYODCvj4AV%ZeU0}e>euRXmqm>y? b36$Y8;pm)c6$8vNPXizhpl<jN^|!^tcdLN- delta 1256 zcmV<E1Q+}D3hWAylz+r3U<4-H{r82~CKzVS5S$Z<Ki(VL&*K@p5Vfpx@h|Cg{#x=k zQ6}tLQrOb37hRR7<oo#hrBXT2wE1MN!nXdQ^1c+d(}#GwDE0T;cf1gOPg~WQZuTED z4gZ*b$?x&sODA}nUHsmr%u@a`4StS|o04bZqRL#f=kBxCe1B>1z1~vKN|^2O^Inwv zx)r@NypT25Qq>E*sobD_8O^XI)^gB}N>p#7iL-H--_8a*C`+H7c$TTY)@PZgt>_w6 zcOpGiT$Zvf#zI-2n^qM=U6)+6Ze9zalWz%cWGen?(bl}2IvT#A0b?^<=Bn8Ym(6jR zZ-;Hwd3Kml2!GrN*9$SiReMHEpbHD$r6_Zp%2Xpnw(kPbF{O4nhB6f1wM7VAHJd>( z!b)}*K9r~GD%z_QA5mA+V6zE(VUOFCskn+-;}h#|-W9d0W)^0to16AW*_cf*6sbn5 zUgMfEJuu0bT6V`{77rQT(Q&~tOi#CONHGLKvO5YvEPpY@fo+AO`p1@ER*h-{BBL$3 zL!s=ftnaj{Mz=d|gL78O>~CCe2{UZ#-+8@wJ77Xwkn2_!#n2XIat#owsXv07p6suX zI*A-?jzu|qidOYa+@r@rQsnin+7I65aTPUzZi*<Hb|_1`t=I?F7!@sWD!WldJe}QC z&`xPlM}J;vg9tD4v9-mtBS!Z0_4YZao*M=;AJY5{-^jk#AX2zZbP$)_VTKR8^kjZS zTUvMiu{$uf>c*2z4&(NhVu$I6m|-f}5_C&>>*<I-4VV&+t~wesyCgO=7;4}=$D%1( z)UowEBJPi>o*7S}8R*dypES-~lyb<MWaJ^vV1Fqg&ZgIRAja7|_e?aqTI=KU;D8qk zO__<9Gq58se?mG=bktEDG*N5acmqcZG9S{N!4JfqK(4eE<nPUt;0S+%g)rwd=lO&j z6ihl{Nz0-Rjq)K)TTF_;E`sM>-$WIa!`v7B3`4Ed)q1q153cu6y(<V}7Mm*VEn7T= zuYZg|6~1AHNd`<9>*WLwTVQemgNURC_^koJ>SvTITGFk79c;{r4$m%nazT8a+}DJJ zlMB7S2I%|@c|}LKzjmAIy;aqHOP#b@@2^ZXpT~BWN5bYL(^A|>kR|Ul*L`<ztu4r& z13Qv4q2B*Q@D~`>5UC1%bhlWLeaCz}Cx1xK-T+QNds~rGvNuu^9{KzU?}+r(e9z<l zO0}B)YZYa)FgC+yT2224e9}7#z(0RSS<!F3qfA<xCO_z#h(ent9rQs^@be+-TC{`k zZr}TGRkw983@r$Okilg${N;4pt7Xrsl|OmF90%-~gZmf%p$Q^foK!19^r^|s`+t>} zGUt=?Ix@u*ROqG_WblNvCV)5V{D~Vv^|r!#CBR2+{|yL2U4&XIT<jHSxr2xNW>}hI z*57wBGidY>E7Dd9<%ST4=d4!@@ImCf63_Fa5@I7p@aY@EUL0;KaP0AWPhw>c|G;#a z77^2{5V1F%5Hs->dmb1aW18-<kzp_il{!M}i5=u6$bDkXc%6yz3FHR&p}Yp>_74n* zn~>e$$tg_gJ57j`lA;EaiKrWhno=B;^uw2X(Rg>q{xGxeAtCB$8NgE<W%x`uI%Zlh S53|g}0Ehz!>Hh;MaiFe4<8f*L diff --git a/pagination.html b/pagination.html index 6d8a9e8..4a1af47 100644 --- a/pagination.html +++ b/pagination.html @@ -167,7 +167,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 24, 2013 at 10:25 AM. + Last updated on Jul 29, 2013 at 08:21 AM. </div> </body> </html> \ No newline at end of file diff --git a/php_get_member_example.html b/php_get_member_example.html index e836c37..4e17cea 100644 --- a/php_get_member_example.html +++ b/php_get_member_example.html @@ -182,7 +182,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 24, 2013 at 10:25 AM. + Last updated on Jul 29, 2013 at 08:21 AM. </div> </body> </html> \ No newline at end of file diff --git a/php_signup_example.html b/php_signup_example.html index a284101..01a8b3b 100644 --- a/php_signup_example.html +++ b/php_signup_example.html @@ -204,7 +204,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 24, 2013 at 10:25 AM. + Last updated on Jul 29, 2013 at 08:21 AM. </div> </body> </html> \ No newline at end of file diff --git a/placeholders.html b/placeholders.html index c764a92..6a5e3d4 100644 --- a/placeholders.html +++ b/placeholders.html @@ -182,7 +182,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 24, 2013 at 10:25 AM. + Last updated on Jul 29, 2013 at 08:21 AM. </div> </body> </html> \ No newline at end of file diff --git a/search.html b/search.html index 348d917..1272e2d 100644 --- a/search.html +++ b/search.html @@ -154,7 +154,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 24, 2013 at 10:25 AM. + Last updated on Jul 29, 2013 at 08:21 AM. </div> </body> </html> \ No newline at end of file diff --git a/searchindex.js b/searchindex.js index 95b5236..c88c6a2 100644 --- a/searchindex.js +++ b/searchindex.js @@ -1 +1 @@ -Search.setIndex({envversion:42,terms:{all:[0,1,4,5,8,9,10,11,12,13,14],code:[0,1,6,3],change_typ:8,queri:[0,2,4],month:[0,5,9,14],four:[0,5],mile:0,least:0,follow:[0,1,4,5,7,9,11,13],link_target:[5,9],privat:1,specif:[8,9,4],friendli:5,send:[1,9,4,3,5],program:1,customer_share_click:5,those:[1,12,5],group_upd:[12,4],sent:[5,8,12,9,14],curl_clos:[1,6,3],brown:[7,8],digit:5,everi:0,string:[0,4,5,7,8,9,10,12,13,14],fals:[1,3,4,5,6,7,8,9,10,13,14],end:[2,8],mailing_status:9,trigger_id:14,webview_share_click:5,affect:[7,8],member_add:[12,4],create_mail:9,new_boolean:10,foo:0,level:1,group_delet:[12,4],list:[0,1,2,4,5,7,8,9,10,11,12,13,14],upload:8,iter:2,"try":8,item:2,plaintext_onli:[9,14],div:[4,5,7,8,9,10,13,14],survey_id:14,setup:1,pleas:[1,8,11,9],prevent:2,work:[1,4],ten:0,sync:10,sign:[0,5,4],past:1,second:[0,7,14],field_creat:[12,4],further:1,shortcut_nam:10,click:[0,4,5,7,8,14],append:2,even:10,what:1,hide:[4,5,7,8,9,10,13,14],appear:[1,8],clock:1,section:1,current:[1,8,12,9],delet:[1,4,7,8,9,10,13,14],"new":[1,4,5,7,8,9,10,11,13,14],net:[1,2,6,3],delivery_t:8,ever:1,method:[5,8,13,4,9],can:[0,1,2,4,5,7,8,9,11,12,13],widget:[7,10,8,9,13],full:1,hash:0,datematch:0,displai:10,variat:9,gener:[0,8,12,14],onli:[5,8],here:[0,1,3,5,6,8],bodi:9,let:[1,4,10],address:[0,1,8,6,9],along:8,sinc:8,valu:[0,5,7,8,10,11],field_upd:[12,4],search:[8,9],survei:14,sender:[9,14],larger:2,queue:5,prior:9,action:[0,8],chang:[8,4],campaign:5,newbi:5,appli:[7,14],prefer:0,young:1,myemma:[4,5,7,8,9,13],filenam:8,customer_shar:5,"boolean":[1,5,7,8,9,10,13,14],curlopt_postfield:[1,3],total:5,jone:[7,5,8,13],select:[1,10],newslett:[7,8,13],describ:7,would:[0,1],commun:1,from_group_id:13,regist:4,two:[0,5],coverag:1,next:[0,1],create_webhook:4,few:[5,8],call:[8,4],criteria:7,member_add_to_group:[12,4],type:[1,3,4,5,6,7,10,9,14],until:2,more:[0,4,7,8,9,13],peopl:5,relat:[1,8,11,9],about:[10,8,12,4,9],notic:8,thide:[4,5,7,8,9,10,13,14],flag:[5,7,8,10,9,14],exce:2,indic:8,examin:1,particular:[1,4,5,8,10,12,9],in_progress:5,curl_getinfo:[1,6,3],origin:9,must:[0,7,13,10],none:9,endpoint:[1,4,5,7,8,9,10,13,14],join:[0,7],hour:0,der:1,member_sinc:[0,5,7,8,9,13],uniqu:5,histori:8,soup:7,remain:[0,9],archiv:[5,9],member_optout:[12,4],drill:5,control:[1,11,9],give:5,forward_mailing_id:5,email_domain:[0,5],share:[0,5,8,4],accept:[0,5,7,8,9,10,11,13,14],total_click:5,tag:[11,9],want:[1,12,13,5],occur:[7,12],some_numeric_field:0,delai:14,alwai:0,webhook_event_id:4,cours:1,multipl:[10,8],first_nam:[1,3,5,7,8,9,10,11,13,14],started_or_finish:[9,14],anoth:[9,13],get:[1,4,5,7,8,9,10,13,14],message_open:[12,4],html_bodi:[9,14],share_statu:5,push_offset:14,del_statu:5,tild:5,num_members_upd:8,simpl:0,chri:9,pizza:[7,8],map:0,birthdai:[10,14],referenc:7,sundai:0,jacqu:1,membership:13,taco:[7,5,8,9,13],mai:12,xxxx:6,associ:[1,8,9,4,5],grow:1,welcom:11,add_onli:8,"short":0,json_encod:[1,3],optout:[5,8,13],num_dupl:8,favorit:10,correspond:[0,1],greet:11,predic:1,issu:[1,10],"12t11":[7,5,8,9,13],combin:7,allow:[0,7,8],some_zipcode_field:0,signed_up:5,order:[5,10],michel:[8,9],mailing_nam:5,checkbox:10,fields_upd:8,over:2,becaus:12,buyer:[7,8,9,13],comma:[9,13],is_dis:14,vari:8,paramet:[2,4,5,7,8,9,10,13,14],widget_typ:10,style:[0,4,5,7,8,9,10,13,14],monitor:1,how:[7,1,2,4],fix:1,import_start:8,better:[13,14],platform:1,pend:[1,9],mailing_list:9,onc:9,hidden:13,main:1,might:[1,4],link_nam:[5,9],them:[8,9],messag:[4,5,8,11,9,14],"return":[0,1,4,5,7,8,9,10,12,13,14],greater:[0,8],thei:[0,9],food:10,timestamp:[0,5,12,9,10],spell:4,nashvil:1,dai:0,auth:1,instead:[12,2,8],now:5,down:5,term:1,alex:9,name:[0,4,5,7,8,9,10,11,13,14],edit:[7,1,14,10],troubleshoot:1,drop:1,authent:[1,6,4,3],successufulli:4,separ:[1,9,13],each:[1,2,5,9,12,11,13],found:[8,9,4,14],updat:[4,7,8,9,10,13,14],denni:1,status:[8,9],domain:0,weight:[4,5,7,8,9,10,13,14],resum:9,individu:[5,8],hard:[0,5],last_nam:[1,3,5,7,8,9,10,11,13,14],"05t15":5,connect:[1,6,3],doug:1,our:[1,11,12,4,14],happen:[1,4,5],commiss:1,short_display_nam:10,special:[0,7,8,13],out:[0,1,4,5,7,8,10,13],variabl:[1,6,3],message_shar:[12,4],network:[5,12],private_api_kei:[1,6,3],check_multipl:10,content:[1,11,6,9,3],rel:0,print:6,correct:10,integr:1,benjamin:[1,8],qualifi:11,insid:1,advanc:0,contain:[0,5,7,13,10,9],given:[0,8,9,4],standard:[5,9],status_from:8,base:[1,8,5],recipient_search:9,dictionari:8,put:[4,7,8,9,10,13,14],span:[4,5,7,8,9,10,13,14],"13t23":[7,5,8],refer:[5,7,8,13,10,9],visit:11,could:1,omit:5,success:[1,3,7,8,9,13],filter:[7,1],search_id:7,pagin:1,member_id:[5,7,8,9,12,13],summari:[1,5],assign:9,first:[0,1,10,5],oper:[7,1,14],rang:5,notifi:[1,12],directli:0,curlopt_ssl_verifyp:[1,6,3],curl_init:[1,6,3],number:[5,2,13,3,10],placehold:1,date:[5,8,14,10],unlik:9,alreadi:[10,8,9,13],done:8,plaintext_pref:[7,8,9,13],oppos:8,open:[0,3,4,5,6,7,8],payload:4,fanci:5,size:2,differ:0,"long":10,script:1,data:[1,10,4,3,5],system:[1,8,12,4,14],construct:[0,7,9],attach:11,outag:1,friend:11,curlinfo_http_cod:[1,6,3],shell:0,option:[0,5,7,8,9,10,13,14],especi:8,signup:[0,1,4,5,8,14],copi:[8,13],member_upd:[12,4],specifi:[0,2,7,8,10,11,9,14],curl_exec:[1,6,3],curlopt_httphead:[1,6,3],member_signup:[12,4],create_search:7,part:[0,9],enclos:11,initi:[10,9],than:[0,1,2,3,12,13],with_plaintext:9,"02t10":[5,8],"02t11":[5,8],"02t13":5,nathan:8,whenev:8,provid:[1,5,8,12,9,14],remov:[8,13,4],mailing_start:4,rate:2,structur:7,charact:9,greg:8,trackabl:11,were:5,minut:0,danc:1,error_count:[7,8,9,13],pre:[4,5,7,8,9,10,13,14],cleaner:1,sai:0,share_id:5,signup_form_id:[0,8,12,9,14],plaintext:[5,9,14],pass:[1,3],ani:[0,1,2,7,8,9],have:[0,1,5,8,12,9],tabl:5,need:1,seen:5,"null":[7,8,13,10,9,14],kevin:[9,14],signup_mail:0,caus:14,built:1,inform:[1,4,6,8,9,10,13],check:[8,6,9],offer:1,object_id:14,note:[1,8,9,4],also:[0,4,5,7,8,9,11,13],exampl:[0,1,7,5],take:[0,4],which:[0,1,4,8,10,12,9,14],some_number_field:0,datacent:[9,14],singl:[0,1,3,4,5,8,10,12,13],excit:11,sure:1,delete_memb:13,normal:9,parent_mail:14,recipient_count:[5,9,14],previou:9,field_id:[10,12,14],last_run_at:7,most:14,pair:11,"class":[4,5,7,8,9,10,13,14],don:1,member_group_id:[8,9,13],mcconnel:[9,14],url:[1,3,4,5,6,12],mailing_finish:[12,4],clear:10,request:[1,2,3],doe:[0,5,7,8,9,10,13],member_status_upd:[12,4],declar:9,tech:4,determin:1,dataset:10,dow:0,recipi:9,"6db0cc7e6fdb2da589b65f29d90c96b6":9,show:[4,5,7,8,9,10,11,13,14],text:[10,11,12],radiu:0,syntax:[1,9],radio:10,font:[4,5,7,8,9,10,13,14],fine:9,find:[1,6,5],status_to:8,toast:[7,5,8,13],access:[1,5],giant:12,just:[0,1,9],pretti:8,column_ord:10,explain:[0,1],winner:9,activ:[1,5,7,8,13,9],figur:1,should:[1,2,3,7,8,11,9],templat:[11,14],share_count:5,count:[1,2,3,5],variou:[8,13],confirmed_opt_in:[7,8,9,13],familiar:1,express:0,account:[1,4,5,7,8,10,13,14],repo:1,cannot:[8,9,4],progress:9,report:[10,8],requir:[1,7,8,10,11,9],object:[1,13,5],favorite_food:[5,7,8,13,10,9],bar:0,organ:1,include_archiv:[5,9],"public":1,"default":[5,11,13,4,9],ref_member_id:5,message_share_click:[12,4],through:[1,8,4],where:[0,1,8,11,7],view:1,user:[0,1,8,9,13],set:[0,1,2,3,6,8,9,12,13],link_id:[0,5,12,9,14],see:[7,1,8],result:[0,1,2,5,8,9],respons:[10,8,9,13],fail:[5,9,4],themselv:2,member_field:[0,7],xxxxx:6,subject:[8,12,9,14],statu:[1,4,5,7,8,9,13],fancyonion:11,kei:[0,1,8,11,4],is_schedul:9,message_forward:[12,4],databas:8,someth:1,last_modified_at:[7,8,9,13],addresse:5,written:1,between:[0,7,2],clicked_uniqu:5,"import":[1,8,4,10],subscript:[1,3],entiti:1,curlopt_url:[1,6,3],email:[0,1,5,7,8,9,13],wide:14,extend:1,numer:10,http404:[4,5,7,8,9,10,13,14],job:13,entir:[0,8],share_click:5,to_group_id:13,curlopt_returntransf:[1,6,3],curl_setopt:[1,6,3],member_remove_from_group:[12,4],send_start:[0,9,14],protect:1,accident:2,last:[0,5,10],delimit:5,lentil:7,pertain:5,message_click:[12,4],curlopt_post:[1,3],audienc:[1,8,9],mang:0,improv:1,http500:14,seri:5,com:[4,5,6,7,8,9,11,13],zip_code_field:0,"03t15":[7,5,8,13],point:1,toni:[7,8],overview:5,period:1,colon:[7,11],optout_count:[7,8,9,13],suppli:9,cancel:9,tuesdai:0,duplic:5,quit:[5,8],user_id:4,recur:14,headsup:9,addition:[1,2],due:5,been:[1,8,10,5],mark:[8,9],whom:9,tshow:[4,5,7,8,9,10,13,14],trigger:[5,7,8,13,10,9],unsubscrib:0,treat:8,interest:[10,4],basic:[0,1,4,8,13,14],monthli:[7,8,13],addit:[8,9,13],member_delet:[12,4],hesit:1,blob:4,email_us:[0,5],mailing_mailing_id:5,mailing_id:[0,5,8,12,9,14],fire:[8,4,14],xxx:[1,3],rubi:1,argument:[0,5],bulk:[1,8],input:1,present:7,statist:8,"case":[1,8],look:[1,14,10],frozen:9,durat:9,email_error:[7,8,9,13],defin:[0,10,8,9],"while":0,smith:[7,5,8,9,13],outcom:5,abov:[0,1,8,7],error:[1,3,6,8,10,13],veen:1,loop:8,opt:[0,4,5,7,8,13],readi:9,deliv:5,recipient_group:9,equal:0,itself:0,new_statu:12,webhook_id:4,account_id:[1,3,4,5,6,7,8,9,10,12,13,14],develop:1,recipient_memb:9,perform:8,make:[1,12,6,10],belong:[0,8,4],same:4,easier:12,member:[10,9,13],python:1,html:9,split:9,probabl:14,complet:[1,3,4,6,8,9],week:0,finish:[5,4],http:[1,2,3,4,5,6,11,9],href:[4,5,7,8,9,10,13,14],nest:0,someon:4,rais:[4,5,7,8,9,10,13,14],winner_id:9,php:1,studi:1,recent:[1,8],kept:11,center:0,min:5,well:[1,5],inherit:9,person:9,mailing_typ:[9,14],without:[0,1],command:1,thi:[0,1,4,5,7,8,9,10,12,13,14],undefin:0,http_code:[1,6,3],latest:11,identifi:8,paus:9,execut:[1,3],less:0,resp:[4,5,7,8,9,10,13,14],"_post":[1,3],against:0,aspect:13,recipient_email:9,source_filenam:8,yet:5,languag:1,"12t09":[7,8],display_nam:10,easi:[1,12,10],"01t00":8,had:0,littl:1,blog:4,add:[1,8,13,3],other:[1,8,9,3,5],curlopt_userpwd:[1,6,3],import_finish:[8,12,4],schedul:9,els:[1,6,3],save:7,match:[0,7],build:1,sanit:1,applic:[1,6,3],around:1,handl:1,disposit:1,crud:[8,13,14],print_r:[6,3],mailing_statu:[9,14],know:[1,4,5],background:13,parent_mailing_id:[9,14],bit:1,insert:11,emma:[7,5,8,9,13],like:1,onion:11,deprec:4,arbitrari:8,manual:9,integ:[1,8,14,10,5],collect:1,api:8,either:[0,5,7],bunch:0,output:9,group_id:[1,8,12,3],soft:[0,5],manag:[0,1,13,4],import_id:[8,12],www:[5,9],old:7,deal:[8,13],captur:1,arrai:[0,1,3,5,6,7,8,9,10,12,13,14],some:[1,11,5],field_delet:[12,4],certain:12,intern:10,sampl:[1,4,5,7,8,9,10,13,14],elaps:[2,9],unless:1,deleted_at:[7,8,13,10,9,14],some_string_field:0,librari:11,woodcock:1,emmarubi:1,bounce_count:[7,8,9,13],emmapython:1,public_kei:4,deliveri:5,broad:12,per:5,send_finish:[9,14],larg:[0,2],condit:7,three:9,network_cod:12,localhost:9,emmaphp:1,with_html_bodi:9,who:[0,5,8],bold:[4,5,7,8,9,10,13,14],event_typ:14,inspect:1,usag:[1,8],monsewicz:1,num_members_ad:8,fulli:11,from:[1,4,8,9,13,14],post:[1,3,4,7,8,9,10,13,14],group_creat:[12,4],gladi:[7,5,8,13],hurst:1,actual:5,zip:0,groups_upd:8,column:10,page:[1,2],includ:[1,5,7,8,9,10,13],webview:9,mean:0,disabl:[9,14],block:[1,2],yyyi:5,own:1,member_data:[1,3],glob:0,bounc:[0,5],within:[0,8],encod:[9,4],delivery_typ:[5,8],compos:0,webview_shar:5,field_typ:10,active_count:[7,8,9,13],public_webview_url:9,aben:1,pivot:5,your:[1,4,5,7,8,9,10,13],websit:11,fast:8,van:1,wai:[1,12],area:1,overus:2,group_nam:[8,12,13,9],support:[1,12],unique_click:5,json:[0,1,3,4,6,7],submit:1,custom:[5,8,11,10],avail:[0,11,4],start:[1,2,8,4],interfac:12,send_at:[9,14],exceed:2,"var":3,purged_at:[7,8,9,13,14],interv:14,fork:1,"24t10":[7,14],head:[1,6,9,3],form:[1,3,4,6,8,10,14],enough:2,forc:1,forward:[0,5,8,9,4],"31st":0,group_typ:[8,9,13],push_offset_unit:14,link:[0,4,5,11,9,14],line:[1,5],realli:1,"true":[0,1,2,3,4,6,7,8,9,10,13,14],archived_t:[9,14],info:4,pull:[1,2],made:1,possibl:[5,8,12],whether:8,maximum:2,tell:12,http403:9,record:[0,7,8],below:[0,1,8,12],http400:[7,8,9],limit:[5,2,8,9],some_array_field:0,otherwis:[1,8,10],start_t:14,mta:5,expect:1,notif:9,creat:[4,5,7,13,10,9,14],"int":5,retriev:[7,1,2,8,9],year:[0,5,9,14],repres:5,exist:[0,4,5,7,8,10,13],behavior:11,bob:[7,5],curl:[1,6],portland:1,inc:1,echo:[1,3],successfulli:[5,8,9],mailing_subject:12,grp:13,extract:11,when:[8,12,4,9],detail:[1,4,7,8,9,10,13],invalid:[7,8,9],event:[4,7,8,13,12,9,14],valid:[5,8,9,13],futur:1,num_skip:8,test:[5,6,7,13,9,14],ignor:8,you:[0,1,2,4,5,7,8,9,10,11,12,13],emmasdk:1,member_status_id:[7,5,8,9,13],public_api_kei:[1,6,3],stat:[5,9],claus:[0,7],event_nam:[12,4],e2ma:[1,2,6,3],error_messag:8,param:[9,4],app_messag:[1,3],ella:8,link_ord:[5,9],receiv:[0,2,5,8,12,9],heads_up_email:9,longer:9,home:11,confirm:8,descript:[4,14],ohmyemma:1,portion:0,opted_out:5,time:[1,2,8,13,5],reply_to:[9,14],resource_url:12,hello:[11,9,14]},objtypes:{"0":"http:get","1":"http:put","2":"http:post","3":"http:delete"},objnames:{"0":["http","get","HTTP get"],"1":["http","put","HTTP put"],"2":["http","post","HTTP post"],"3":["http","delete","HTTP delete"]},filenames:["member_search","index","pagination","php_signup_example","api/external/webhooks","api/external/response","php_get_member_example","api/external/searches","api/external/members","api/external/mailings","api/external/fields","placeholders","webhooks","api/external/groups","api/external/triggers"],titles:["Search Syntax","Emma API","Pagination","PHP Signup Example","Webhooks","Response","PHP Get Member By Email Example","Searches","Members","Mailings","Fields","Placeholder Syntax","Webhook Usage","Groups","Triggers"],objects:{"":{"/#account_id/members/#member_id/groups/remove":[8,1,1,"put--#account_id-members-#member_id-groups-remove"],"/#account_id/mailings/#mailing_id/winner/#winner_id":[9,2,1,"post--#account_id-mailings-#mailing_id-winner-#winner_id"],"/#account_id/response/#mailing_id/in_progress":[5,0,1,"get--#account_id-response-#mailing_id-in_progress"],"/#account_id/members/groups/remove":[8,1,1,"put--#account_id-members-groups-remove"],"/#account_id/mailings/#mailing_id/searches":[9,0,1,"get--#account_id-mailings-#mailing_id-searches"],"/#account_id/fields":[10,2,1,"post--#account_id-fields"],"/#account_id/members/#group_id/copy":[8,1,1,"put--#account_id-members-#group_id-copy"],"/#account_id/members/status":[8,1,1,"put--#account_id-members-status"],"/#account_id/response/#mailing_id/shares/overview":[5,0,1,"get--#account_id-response-#mailing_id-shares-overview"],"/#account_id/webhooks/events":[4,0,1,"get--#account_id-webhooks-events"],"/#account_id/members/#member_id/optout":[8,0,1,"get--#account_id-members-#member_id-optout"],"/#account_id/webhooks":[4,3,1,"delete--#account_id-webhooks"],"/#account_id/fields/#field_id":[10,3,1,"delete--#account_id-fields-#field_id"],"/#account_id/response/#mailing_id":[5,0,1,"get--#account_id-response-#mailing_id"],"/#account_id/groups/#member_group_id/members/remove":[13,3,1,"delete--#account_id-groups-#member_group_id-members-remove"],"/#account_id/searches":[7,2,1,"post--#account_id-searches"],"/#account_id/members/imports":[8,0,1,"get--#account_id-members-imports"],"/#account_id/forwards/#mailing_id/#member_id":[9,2,1,"post--#account_id-forwards-#mailing_id-#member_id"],"/#account_id/response/#mailing_id/customer_share_clicks":[5,0,1,"get--#account_id-response-#mailing_id-customer_share_clicks"],"/#account_id/mailings/#mailing_id/messages/#member_id":[9,0,1,"get--#account_id-mailings-#mailing_id-messages-#member_id"],"/#account_id/members/#member_id/mailings":[8,0,1,"get--#account_id-members-#member_id-mailings"],"/#account_id/groups/#from_group_id/#to_group_id/members/copy":[13,1,1,"put--#account_id-groups-#from_group_id-#to_group_id-members-copy"],"/#account_id/triggers":[14,2,1,"post--#account_id-triggers"],"/#account_id/triggers/#trigger_id":[14,3,1,"delete--#account_id-triggers-#trigger_id"],"/#account_id/members/delete":[8,1,1,"put--#account_id-members-delete"],"/#account_id/mailings/#mailing_id/groups":[9,0,1,"get--#account_id-mailings-#mailing_id-groups"],"/#account_id/response/#mailing_id/forwards":[5,0,1,"get--#account_id-response-#mailing_id-forwards"],"/#account_id/members/#member_id":[8,3,1,"delete--#account_id-members-#member_id"],"/#account_id/triggers/#trigger_id/mailings":[14,0,1,"get--#account_id-triggers-#trigger_id-mailings"],"/#account_id/searches/#search_id/members":[7,0,1,"get--#account_id-searches-#search_id-members"],"/#account_id/members/status/:status_from/to/:status_to":[8,1,1,"put--#account_id-members-status--status_from-to--status_to"],"/#account_id/response/#mailing_id/sends":[5,0,1,"get--#account_id-response-#mailing_id-sends"],"/#account_id/members":[8,3,1,"delete--#account_id-members"],"/#account_id/members/email/:email":[8,0,1,"get--#account_id-members-email--email"],"/#account_id/response/#mailing_id/links":[5,0,1,"get--#account_id-response-#mailing_id-links"],"/#account_id/searches/#search_id":[7,3,1,"delete--#account_id-searches-#search_id"],"/#account_id/members/imports/#import_id/members":[8,0,1,"get--#account_id-members-imports-#import_id-members"],"/#account_id/fields/#field_id/clear":[10,2,1,"post--#account_id-fields-#field_id-clear"],"/#account_id/groups/#member_group_id/members":[13,3,1,"delete--#account_id-groups-#member_group_id-members"],"/#account_id/members/imports/#import_id":[8,0,1,"get--#account_id-members-imports-#import_id"],"/#account_id/response":[5,0,1,"get--#account_id-response"],"/#account_id/response/#mailing_id/opens":[5,0,1,"get--#account_id-response-#mailing_id-opens"],"/#account_id/members/imports/delete":[8,3,1,"delete--#account_id-members-imports-delete"],"/#account_id/mailings":[9,0,1,"get--#account_id-mailings"],"/#account_id/mailings/cancel/#mailing_id":[9,3,1,"delete--#account_id-mailings-cancel-#mailing_id"],"/#account_id/mailings/validate":[9,2,1,"post--#account_id-mailings-validate"],"/#account_id/response/#mailing_id/deliveries":[5,0,1,"get--#account_id-response-#mailing_id-deliveries"],"/#account_id/mailings/#mailing_id/members":[9,0,1,"get--#account_id-mailings-#mailing_id-members"],"/#account_id/response/#share_id/customer_share":[5,0,1,"get--#account_id-response-#share_id-customer_share"],"/#account_id/webhooks/#webhook_id":[4,3,1,"delete--#account_id-webhooks-#webhook_id"],"/#account_id/members/add":[8,2,1,"post--#account_id-members-add"],"/#account_id/members/email/optout/:email":[8,1,1,"put--#account_id-members-email-optout--email"],"/#account_id/response/#mailing_id/optouts":[5,0,1,"get--#account_id-response-#mailing_id-optouts"],"/#account_id/response/#mailing_id/shares":[5,0,1,"get--#account_id-response-#mailing_id-shares"],"/#account_id/groups/#member_group_id":[13,3,1,"delete--#account_id-groups-#member_group_id"],"/#account_id/mailings/#mailing_id":[9,3,1,"delete--#account_id-mailings-#mailing_id"],"/#account_id/members/#member_id/groups":[8,3,1,"delete--#account_id-members-#member_id-groups"],"/#account_id/groups":[13,2,1,"post--#account_id-groups"],"/#account_id/response/#mailing_id/clicks":[5,0,1,"get--#account_id-response-#mailing_id-clicks"],"/#account_id/mailings/#mailing_id/headsup":[9,0,1,"get--#account_id-mailings-#mailing_id-headsup"],"/#account_id/response/#mailing_id/signups":[5,0,1,"get--#account_id-response-#mailing_id-signups"],"/#account_id/response/#mailing_id/customer_shares":[5,0,1,"get--#account_id-response-#mailing_id-customer_shares"]}},titleterms:{oper:0,quickstart:1,creat:12,"boolean":0,overview:[0,1,11,12],interv:0,share:12,syntax:[0,11],api:1,wrapper:1,respons:5,open:12,click:12,categori:1,statu:12,from:12,delet:12,todo:11,messag:12,member:[8,6,12],field:[10,12],add:12,trigger:14,call:1,forward:12,mail:[12,9],document:1,email:6,updat:12,finish:12,get:6,webhook:[12,4],signup:[12,3],usag:12,search:[0,7],word:1,"import":12,date:0,group:[12,13],post:12,php:[6,3],data:12,addit:1,placehold:11,term:0,wise:1,optout:12,remov:12,predic:0,filter:0,exampl:[6,3],pagin:2,emma:1}}) \ No newline at end of file +Search.setIndex({envversion:42,terms:{all:[0,1,4,5,8,9,10,11,12,13,14],code:[0,1,6,3],change_typ:8,queri:[0,2,4],month:[0,5,9,14],four:[0,5],mile:0,least:0,follow:[0,1,4,5,7,8,9,11,13],link_target:[5,9],privat:1,specif:[8,9,4],friendli:5,send:[1,3,4,5,8,9],program:1,customer_share_click:5,those:[1,12,5],group_upd:[12,4],sent:[5,8,12,9,14],curl_clos:[1,6,3],certain:12,brown:[7,8],digit:5,everi:0,string:[0,4,5,7,8,9,10,12,13,14],fals:[1,3,4,5,6,7,8,9,10,13,14],end:[2,8],mailing_status:9,trigger_id:14,webview_share_click:5,affect:[7,8],member_add:[12,4],create_mail:9,new_boolean:10,foo:0,level:1,group_delet:[12,4],list:[0,1,2,4,5,7,8,9,10,11,12,13,14],upload:8,ryan:8,"try":8,item:2,plaintext_onli:[9,14],div:[4,5,7,8,9,10,13,14],survey_id:14,setup:1,pleas:[1,8,11,9],prevent:2,work:[1,4],ten:0,sync:10,sign:[0,5,8,4],past:1,second:[0,7,14],field_creat:[12,4],further:1,shortcut_nam:10,click:[0,4,5,7,8,14],append:2,even:10,what:1,hide:[4,5,7,8,9,10,13,14],appear:[1,8],from_group_id:13,section:1,advanc:0,current:[1,8,12,9],delet:[1,4,7,8,9,10,13,14],"new":[1,4,5,7,8,9,10,11,13,14],net:[1,2,6,3],delivery_t:8,method:[5,8,13,4,9],can:[0,1,2,4,5,7,8,9,11,12,13],widget:[7,10,8,9,13],full:1,hash:0,datematch:0,displai:10,variat:9,gener:[0,8,12,14],onli:[5,8],here:[0,1,3,5,6,8],json:[0,1,3,4,6,7],bodi:[8,9],let:[1,4,10],address:[0,1,8,6,9],along:8,sinc:8,valu:[0,5,7,8,10,11],field_upd:[12,4],search:[8,9],survei:14,sender:[9,14],larger:2,queue:5,prior:9,action:[0,8],chang:[8,4],overrid:8,campaign:5,newbi:5,appli:[7,14],prefer:0,young:1,myemma:[4,5,7,8,9,13],filenam:8,customer_shar:5,"boolean":[1,5,7,8,9,10,13,14],curlopt_postfield:[1,3],total:5,jone:[7,5,8,13],select:[1,10],newslett:[7,8,13],describ:7,would:[0,1],commun:1,regist:4,two:[0,5],coverag:1,next:[0,1],create_webhook:4,few:[5,8],call:[8,4],criteria:7,member_add_to_group:[12,4],type:[1,3,4,5,6,7,10,9,14],until:2,more:[0,4,7,8,9,13],peopl:5,relat:[1,8,11,9],about:[10,8,12,4,9],notic:8,thide:[4,5,7,8,9,10,13,14],flag:[5,7,8,10,9,14],exce:2,indic:8,examin:1,particular:[1,4,5,8,10,12,9],in_progress:5,origin:9,must:[0,7,8,13,10],none:9,endpoint:[1,4,5,7,8,9,10,13,14],join:[0,7],hour:0,der:1,member_sinc:[0,5,7,8,9,13],uniqu:5,histori:8,soup:7,remain:[0,9],archiv:[5,9],member_optout:[12,4],drill:5,control:[1,11,9],give:5,process:8,forward_mailing_id:5,email_domain:[0,5],share:[0,5,8,4],accept:[0,5,7,8,9,10,11,13,14],total_click:5,tag:[8,11,9],want:[1,12,13,5],opt_in_url:8,occur:[7,12],some_numeric_field:0,delai:14,alwai:0,webhook_event_id:4,cours:1,multipl:[10,8],first_nam:[1,3,5,7,8,9,10,11,13,14],started_or_finish:[9,14],anoth:[9,13],get:[1,4,5,7,8,9,10,13,14],message_open:[12,4],html_bodi:[9,14],share_statu:5,push_offset:14,del_statu:5,tild:5,num_members_upd:8,simpl:0,chri:9,pizza:[7,8],map:0,birthdai:[10,14],referenc:7,sundai:0,jacqu:1,membership:13,taco:[7,5,8,9,13],mai:12,xxxx:6,associ:[1,8,9,4,5],grow:1,welcom:11,add_onli:8,"short":0,json_encod:[1,3],optout:[5,8,13],num_dupl:8,favorit:10,correspond:[0,1],greet:11,predic:1,issu:[1,10],"12t11":[7,5,8,9,13],combin:7,allow:[0,7,8],some_zipcode_field:0,signed_up:5,order:[5,10],michel:[8,9],mailing_nam:5,checkbox:10,fields_upd:8,over:2,becaus:12,buyer:[7,8,9,13],comma:[9,13],is_dis:14,vari:8,paramet:[2,4,5,7,8,9,10,13,14],widget_typ:10,style:[0,4,5,7,8,9,10,13,14],curl_setopt:[1,6,3],how:[7,1,2,4],fix:1,import_start:8,better:[13,14],platform:1,pend:[1,9],mailing_list:9,onc:9,hidden:13,main:1,might:[1,4],link_nam:[5,9],them:[8,9],messag:[4,5,8,11,9,14],"return":[0,1,4,5,7,8,9,10,12,13,14],greater:[0,8],thei:[0,9],food:10,timestamp:[0,5,12,9,10],spell:4,nashvil:1,dai:0,auth:1,instead:[12,2,8],now:5,down:5,term:1,alex:9,name:[0,4,5,7,8,9,10,11,13,14],edit:[7,1,14,10],curl_getinfo:[1,6,3],authent:[1,6,4,3],successufulli:4,separ:[1,9,13],each:[1,2,5,9,12,11,13],found:[8,9,4,14],updat:[4,7,8,9,10,13,14],denni:1,status:[8,9],domain:0,weight:[4,5,7,8,9,10,13,14],resum:9,individu:[5,8],hard:[0,5],last_nam:[1,3,5,7,8,9,10,11,13,14],"05t15":5,connect:[1,6,3],doug:1,our:[1,11,12,4,14],happen:[1,4,5],commiss:1,short_display_nam:10,special:[0,7,8,13],out:[0,1,4,5,7,8,10,13],variabl:[1,6,3],message_shar:[12,4],network:[5,12],private_api_kei:[1,6,3],check_multipl:10,content:[1,11,6,9,3],rel:0,print:6,correct:10,integr:1,benjamin:[1,8],qualifi:11,insid:1,workflow:8,contain:[0,5,7,13,10,9],given:[0,8,9,4],standard:[5,9],status_from:8,base:[5,8],recipient_search:9,dictionari:8,put:[4,7,8,9,10,13,14],span:[4,5,7,8,9,10,13,14],"13t23":[7,5,8],refer:[5,7,8,13,10,9],visit:11,could:1,omit:5,success:[1,3,7,8,9,13],filter:[7,1],search_id:7,pagin:1,member_id:[5,7,8,9,12,13],summari:[1,5],assign:9,first:[0,1,10,5],oper:[7,1,14],rang:5,notifi:12,directli:0,curlopt_ssl_verifyp:[1,6,3],curl_init:[1,6,3],number:[5,2,13,3,10],placehold:1,date:[5,8,14,10],unlik:9,alreadi:[10,8,9,13],done:8,plaintext_pref:[7,8,9,13],oppos:8,open:[0,3,4,5,6,7,8],payload:4,fanci:5,size:2,differ:0,"long":10,script:1,data:[1,10,4,3,5],system:[8,12,4,14],construct:[0,7,9],attach:11,easier:12,friend:11,curlinfo_http_cod:[1,6,3],shell:0,option:[0,5,7,8,9,10,13,14],especi:8,signup:[0,1,4,5,8,14],copi:[8,13],member_upd:[12,4],specifi:[0,2,7,8,10,11,9,14],curl_exec:[1,6,3],curlopt_httphead:[1,6,3],member_signup:[12,4],create_search:7,part:[0,9],enclos:11,initi:[10,9],than:[0,1,2,3,12,13],with_plaintext:9,"02t10":[5,8],"02t11":[5,8],"02t13":5,nathan:8,whenev:8,provid:[1,5,8,12,9,14],remov:[8,13,4],mailing_start:4,rate:2,structur:7,charact:9,greg:8,trackabl:11,were:5,minut:0,danc:1,error_count:[7,8,9,13],pre:[4,5,7,8,9,10,13,14],cleaner:1,sai:0,share_id:5,signup_form_id:[0,8,12,9,14],plaintext:[5,9,14],pass:[1,8,3],ani:[0,1,2,7,8,9],have:[0,1,5,8,12,9],tabl:5,need:1,seen:5,"null":[7,8,13,10,9,14],kevin:[9,14],signup_mail:0,caus:14,built:1,inform:[1,4,6,8,9,10,13],object_id:14,note:[1,8,9,4],also:[0,4,5,7,8,9,11,13],exampl:[0,1,8,7,5],take:[0,8,4],which:[0,1,4,8,10,12,9,14],some_number_field:0,datacent:[9,14],singl:[0,1,3,4,5,8,10,12,13],excit:11,sure:1,delete_memb:13,normal:9,parent_mail:14,recipient_count:[5,9,14],previou:9,field_id:[10,12,14],last_run_at:7,most:14,rsvp_email:8,"class":[4,5,7,8,9,10,13,14],don:1,member_group_id:[8,9,13],mcconnel:[9,14],url:[1,3,4,5,6,12],mailing_finish:[12,4],clear:10,request:[1,2,3],doe:[0,5,7,8,9,10,13],member_status_upd:[12,4],declar:9,tech:4,determin:1,add:[1,8,13,3],dataset:10,dow:0,recipi:9,"6db0cc7e6fdb2da589b65f29d90c96b6":9,show:[4,5,7,8,9,10,11,13,14],text:[10,11,12],radiu:0,syntax:[1,9],radio:10,font:[4,5,7,8,9,10,13,14],fine:9,find:[1,6,5],status_to:8,toast:[7,5,8,13],access:[1,5],giant:12,just:[0,1,9],pretti:8,column_ord:10,"true":[0,1,2,3,4,6,7,8,9,10,13,14],explain:[0,1],winner:9,activ:[1,5,7,8,13,9],figur:1,should:[1,2,3,7,8,11,9],templat:[11,14],share_count:5,count:[1,2,3,5],variou:[8,13],confirmed_opt_in:[7,8,9,13],familiar:1,express:0,account:[1,4,5,7,8,10,13,14],repo:1,cannot:[8,9,4],progress:9,report:[10,8],requir:[1,7,8,10,11,9],object:[1,13,5],favorite_food:[5,7,8,13,10,9],bar:0,organ:1,include_archiv:[5,9],"public":1,"default":[5,11,13,4,9],ref_member_id:5,message_share_click:[12,4],through:[1,8,4],where:[0,1,8,11,7],view:1,respond:8,set:[0,1,2,3,6,8,9,12,13],link_id:[0,5,12,9,14],see:[7,1,8],result:[0,1,2,5,8,9],respons:[10,8,9,13],fail:[5,9,4],themselv:2,member_field:[0,7],xxxxx:6,subject:[8,12,9,14],statu:[1,4,5,7,8,9,13],fancyonion:11,kei:[0,1,8,11,4],is_schedul:9,message_forward:[12,4],databas:8,someth:1,last_modified_at:[7,8,9,13],addresse:5,written:1,between:[0,7,2],clicked_uniqu:5,"import":[1,8,4,10],subscript:[1,3],entiti:1,curlopt_url:[1,6,3],email:[0,1,5,7,8,9,13],wide:14,extend:1,numer:10,http404:[4,5,7,8,9,10,13,14],job:13,entir:[0,8],share_click:5,to_group_id:13,curlopt_returntransf:[1,6,3],addit:[8,9,13],member_remove_from_group:[12,4],send_start:[0,9,14],protect:1,accident:2,last:[0,5,10],delimit:5,lentil:7,pertain:5,message_click:[12,4],curlopt_post:[1,3],audienc:[1,8,9],mang:0,improv:1,http500:14,seri:5,com:[4,5,6,7,8,9,11,13],zip_code_field:0,"03t15":[7,5,8,13],point:1,toni:[7,8],overview:5,period:1,colon:[7,11],optout_count:[7,8,9,13],suppli:9,cancel:9,tuesdai:0,duplic:5,quit:[5,8],user_id:4,recur:14,headsup:9,addition:[1,2],due:5,been:[1,8,10,5],mark:[8,9],whom:9,tshow:[4,5,7,8,9,10,13,14],trigger:[5,7,8,13,10,9],unsubscrib:0,treat:8,interest:[10,4],basic:[0,1,4,8,13,14],monthli:[7,8,13],member_delet:[12,4],hesit:1,blob:4,email_us:[0,5],mailing_mailing_id:5,mailing_id:[0,5,8,12,9,14],fire:[8,4,14],xxx:[1,3],rubi:1,argument:[0,5],bulk:[1,8],input:1,present:7,statist:8,"case":[1,8],look:[1,14,10],frozen:9,durat:9,email_error:[7,8,9,13],defin:[0,10,8,9],"while":0,smith:[7,5,8,9,13],outcom:5,abov:[0,1,8,7],error:[1,3,6,8,10,13],veen:1,loop:8,opt:[0,4,5,7,8,13],readi:9,deliv:5,recipient_group:9,equal:0,itself:0,new_statu:12,webhook_id:4,develop:1,recipient_memb:9,perform:8,make:[1,12,6,10],belong:[0,8,4],same:[8,4],check:[8,6,9],member:[10,9,13],python:1,html:9,split:9,opt_in_messag:8,complet:[1,3,4,6,8,9],week:0,finish:[5,4],http:[1,2,3,4,5,6,11,9],href:[4,5,7,8,9,10,13,14],nest:0,someon:4,rais:[4,5,7,8,9,10,13,14],winner_id:9,php:1,studi:1,recent:[1,8],kept:11,center:0,min:5,well:[1,5],inherit:9,person:9,mailing_typ:[9,14],without:[0,1],command:1,thi:[0,1,4,5,7,8,9,10,12,13,14],undefin:0,http_code:[1,6,3],latest:11,identifi:8,paus:9,execut:[1,3],less:0,resp:[4,5,7,8,9,10,13,14],"_post":[1,3],against:0,aspect:13,recipient_email:9,source_filenam:8,yet:5,languag:1,"12t09":[7,8],display_nam:10,easi:[1,12,10],"01t00":8,had:0,littl:1,blog:4,rsvp_name:8,other:[1,8,9,3,5],curlopt_userpwd:[1,6,3],import_finish:[8,12,4],schedul:9,els:[1,6,3],save:7,match:[0,7],build:1,sanit:1,applic:[1,6,3],account_id:[1,3,4,5,6,7,8,9,10,12,13,14],handl:1,disposit:1,crud:[8,13,14],print_r:[6,3],mailing_statu:[9,14],know:[1,4,5],background:13,parent_mailing_id:[9,14],bit:1,insert:11,emma:[7,5,8,9,13],like:1,onion:11,deprec:4,arbitrari:8,manual:9,integ:[1,8,14,10,5],collect:1,api:8,necessari:8,either:[0,5,7],bunch:0,output:9,group_id:[1,8,12,3],soft:[0,5],manag:[0,1,13,4],import_id:[8,12],www:[5,9],old:7,deal:[8,13],captur:1,arrai:[0,1,3,5,6,7,8,9,10,12,13,14],some:[1,11,5],back:8,field_delet:[12,4],opt_in_subject:8,intern:10,sampl:[1,4,5,7,8,9,10,13,14],elaps:[2,9],unless:1,deleted_at:[7,8,13,10,9,14],some_string_field:0,librari:11,woodcock:1,emmarubi:1,bounce_count:[7,8,9,13],emmapython:1,public_kei:4,deliveri:5,broad:12,per:5,send_finish:[9,14],larg:[0,2],condit:7,three:9,network_cod:12,localhost:9,emmaphp:1,with_html_bodi:9,who:[0,5,8],bold:[4,5,7,8,9,10,13,14],event_typ:14,inspect:1,usag:[1,8],monsewicz:1,num_members_ad:8,fulli:11,from:[1,4,8,9,13,14],post:[1,3,4,7,8,9,10,13,14],group_creat:[12,4],gladi:[7,5,8,13],hurst:1,actual:5,zip:0,groups_upd:8,column:10,page:2,includ:[1,5,7,8,9,10,13],webview:9,mean:0,disabl:[9,14],block:[1,2],yyyi:5,own:[1,8],member_data:[1,3],glob:0,bounc:[0,5],within:[0,8],encod:[9,4],delivery_typ:[5,8],compos:0,webview_shar:5,pair:11,field_typ:10,active_count:[7,8,9,13],public_webview_url:9,pivot:5,your:[1,4,5,7,8,9,10,13],websit:11,fast:8,van:1,wai:[1,12],area:1,overus:2,group_nam:[8,12,13,9],support:12,unique_click:5,iter:2,submit:1,custom:[5,8,11,10],avail:[0,11,4],start:[1,2,8,4],interfac:12,send_at:[9,14],exceed:2,"var":3,purged_at:[7,8,9,13,14],interv:14,fork:1,head:[1,6,9,3],form:[1,3,4,6,8,10,14],enough:2,forc:1,forward:[0,5,8,9,4],"31st":0,group_typ:[8,9,13],push_offset_unit:14,link:[0,4,5,11,9,14],line:[1,5],realli:1,opt_out_url:8,archived_t:[9,14],info:4,pull:[1,2],made:1,possibl:[5,8,12],whether:8,"29t08":[7,14],maximum:2,tell:12,http403:9,record:[0,7,8],below:[0,1,8,12],http400:[7,8,9],limit:[5,2,8,9],some_array_field:0,otherwis:[1,8,10],start_t:14,mta:5,expect:1,notif:9,creat:[4,5,7,13,10,9,14],"int":5,retriev:[7,1,2,8,9],year:[0,5,9,14],repres:5,exist:[0,4,5,7,8,10,13],behavior:11,bob:[7,5],curl:[1,6],enlist:8,portland:1,probabl:14,echo:[1,3],successfulli:[5,8,9],mailing_subject:12,grp:13,extract:11,user:[0,8,9,13],when:[8,12,4,9],detail:[1,4,7,8,9,10,13],invalid:[7,8,9],event:[4,7,8,13,12,9,14],valid:[5,8,9,13],futur:1,num_skip:8,test:[5,6,7,13,9,14],ignor:8,you:[0,1,2,4,5,7,8,9,10,11,12,13],emmasdk:1,member_status_id:[7,5,8,9,13],public_api_kei:[1,6,3],stat:[5,9],claus:[0,7],event_nam:[12,4],e2ma:[1,2,6,3],error_messag:8,param:[9,4],app_messag:[1,3],ella:8,link_ord:[5,9],receiv:[0,2,5,8,12,9],heads_up_email:9,longer:9,home:11,confirm:8,descript:[4,14],ohmyemma:1,portion:0,opted_out:5,time:[1,2,8,13,5],reply_to:[9,14],resource_url:12,hello:[11,9,14]},objtypes:{"0":"http:get","1":"http:put","2":"http:post","3":"http:delete"},objnames:{"0":["http","get","HTTP get"],"1":["http","put","HTTP put"],"2":["http","post","HTTP post"],"3":["http","delete","HTTP delete"]},filenames:["member_search","index","pagination","php_signup_example","api/external/webhooks","api/external/response","php_get_member_example","api/external/searches","api/external/members","api/external/mailings","api/external/fields","placeholders","webhooks","api/external/groups","api/external/triggers"],titles:["Search Syntax","Emma API","Pagination","PHP Signup Example","Webhooks","Response","PHP Get Member By Email Example","Searches","Members","Mailings","Fields","Placeholder Syntax","Webhook Usage","Groups","Triggers"],objects:{"":{"/#account_id/members/#member_id/groups/remove":[8,1,1,"put--#account_id-members-#member_id-groups-remove"],"/#account_id/mailings/#mailing_id/winner/#winner_id":[9,2,1,"post--#account_id-mailings-#mailing_id-winner-#winner_id"],"/#account_id/response/#mailing_id/in_progress":[5,0,1,"get--#account_id-response-#mailing_id-in_progress"],"/#account_id/members/groups/remove":[8,1,1,"put--#account_id-members-groups-remove"],"/#account_id/mailings/#mailing_id/searches":[9,0,1,"get--#account_id-mailings-#mailing_id-searches"],"/#account_id/fields":[10,2,1,"post--#account_id-fields"],"/#account_id/members/#group_id/copy":[8,1,1,"put--#account_id-members-#group_id-copy"],"/#account_id/members/signup":[8,2,1,"post--#account_id-members-signup"],"/#account_id/members/status":[8,1,1,"put--#account_id-members-status"],"/#account_id/response/#mailing_id/shares/overview":[5,0,1,"get--#account_id-response-#mailing_id-shares-overview"],"/#account_id/webhooks/events":[4,0,1,"get--#account_id-webhooks-events"],"/#account_id/members/#member_id/optout":[8,0,1,"get--#account_id-members-#member_id-optout"],"/#account_id/webhooks":[4,3,1,"delete--#account_id-webhooks"],"/#account_id/fields/#field_id":[10,3,1,"delete--#account_id-fields-#field_id"],"/#account_id/response/#mailing_id":[5,0,1,"get--#account_id-response-#mailing_id"],"/#account_id/groups/#member_group_id/members/remove":[13,3,1,"delete--#account_id-groups-#member_group_id-members-remove"],"/#account_id/searches":[7,2,1,"post--#account_id-searches"],"/#account_id/members/imports":[8,0,1,"get--#account_id-members-imports"],"/#account_id/forwards/#mailing_id/#member_id":[9,2,1,"post--#account_id-forwards-#mailing_id-#member_id"],"/#account_id/response/#mailing_id/customer_share_clicks":[5,0,1,"get--#account_id-response-#mailing_id-customer_share_clicks"],"/#account_id/mailings/#mailing_id/messages/#member_id":[9,0,1,"get--#account_id-mailings-#mailing_id-messages-#member_id"],"/#account_id/members/#member_id/mailings":[8,0,1,"get--#account_id-members-#member_id-mailings"],"/#account_id/groups/#from_group_id/#to_group_id/members/copy":[13,1,1,"put--#account_id-groups-#from_group_id-#to_group_id-members-copy"],"/#account_id/triggers":[14,2,1,"post--#account_id-triggers"],"/#account_id/triggers/#trigger_id":[14,3,1,"delete--#account_id-triggers-#trigger_id"],"/#account_id/members/delete":[8,1,1,"put--#account_id-members-delete"],"/#account_id/mailings/#mailing_id/groups":[9,0,1,"get--#account_id-mailings-#mailing_id-groups"],"/#account_id/response/#mailing_id/forwards":[5,0,1,"get--#account_id-response-#mailing_id-forwards"],"/#account_id/members/#member_id":[8,3,1,"delete--#account_id-members-#member_id"],"/#account_id/triggers/#trigger_id/mailings":[14,0,1,"get--#account_id-triggers-#trigger_id-mailings"],"/#account_id/searches/#search_id/members":[7,0,1,"get--#account_id-searches-#search_id-members"],"/#account_id/members/status/:status_from/to/:status_to":[8,1,1,"put--#account_id-members-status--status_from-to--status_to"],"/#account_id/response/#mailing_id/sends":[5,0,1,"get--#account_id-response-#mailing_id-sends"],"/#account_id/members":[8,3,1,"delete--#account_id-members"],"/#account_id/members/email/:email":[8,0,1,"get--#account_id-members-email--email"],"/#account_id/response/#mailing_id/links":[5,0,1,"get--#account_id-response-#mailing_id-links"],"/#account_id/searches/#search_id":[7,3,1,"delete--#account_id-searches-#search_id"],"/#account_id/members/imports/#import_id/members":[8,0,1,"get--#account_id-members-imports-#import_id-members"],"/#account_id/fields/#field_id/clear":[10,2,1,"post--#account_id-fields-#field_id-clear"],"/#account_id/groups/#member_group_id/members":[13,3,1,"delete--#account_id-groups-#member_group_id-members"],"/#account_id/members/imports/#import_id":[8,0,1,"get--#account_id-members-imports-#import_id"],"/#account_id/response":[5,0,1,"get--#account_id-response"],"/#account_id/response/#mailing_id/opens":[5,0,1,"get--#account_id-response-#mailing_id-opens"],"/#account_id/members/imports/delete":[8,3,1,"delete--#account_id-members-imports-delete"],"/#account_id/mailings":[9,0,1,"get--#account_id-mailings"],"/#account_id/mailings/cancel/#mailing_id":[9,3,1,"delete--#account_id-mailings-cancel-#mailing_id"],"/#account_id/mailings/validate":[9,2,1,"post--#account_id-mailings-validate"],"/#account_id/response/#mailing_id/deliveries":[5,0,1,"get--#account_id-response-#mailing_id-deliveries"],"/#account_id/mailings/#mailing_id/members":[9,0,1,"get--#account_id-mailings-#mailing_id-members"],"/#account_id/response/#share_id/customer_share":[5,0,1,"get--#account_id-response-#share_id-customer_share"],"/#account_id/webhooks/#webhook_id":[4,3,1,"delete--#account_id-webhooks-#webhook_id"],"/#account_id/members/add":[8,2,1,"post--#account_id-members-add"],"/#account_id/members/email/optout/:email":[8,1,1,"put--#account_id-members-email-optout--email"],"/#account_id/response/#mailing_id/optouts":[5,0,1,"get--#account_id-response-#mailing_id-optouts"],"/#account_id/response/#mailing_id/shares":[5,0,1,"get--#account_id-response-#mailing_id-shares"],"/#account_id/groups/#member_group_id":[13,3,1,"delete--#account_id-groups-#member_group_id"],"/#account_id/mailings/#mailing_id":[9,3,1,"delete--#account_id-mailings-#mailing_id"],"/#account_id/members/#member_id/groups":[8,3,1,"delete--#account_id-members-#member_id-groups"],"/#account_id/groups":[13,2,1,"post--#account_id-groups"],"/#account_id/response/#mailing_id/clicks":[5,0,1,"get--#account_id-response-#mailing_id-clicks"],"/#account_id/mailings/#mailing_id/headsup":[9,0,1,"get--#account_id-mailings-#mailing_id-headsup"],"/#account_id/response/#mailing_id/signups":[5,0,1,"get--#account_id-response-#mailing_id-signups"],"/#account_id/response/#mailing_id/customer_shares":[5,0,1,"get--#account_id-response-#mailing_id-customer_shares"]}},titleterms:{oper:0,quickstart:1,creat:12,api:1,overview:[0,1,11,12],interv:0,share:12,syntax:[0,11],"boolean":0,wrapper:1,respons:5,open:12,click:12,categori:1,statu:12,group:[12,13],delet:12,todo:11,messag:12,member:[8,6,12],field:[10,12],add:12,trigger:14,call:1,forward:12,mail:[12,9],document:1,email:6,updat:12,finish:12,get:6,webhook:[12,4],signup:[12,3],usag:12,search:[0,7],"import":12,date:0,from:12,post:12,php:[6,3],data:12,addit:1,placehold:11,term:0,emma:1,optout:12,remov:12,predic:0,filter:0,exampl:[6,3],pagin:2}}) \ No newline at end of file diff --git a/webhooks.html b/webhooks.html index 7d168ad..9486669 100644 --- a/webhooks.html +++ b/webhooks.html @@ -506,7 +506,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 24, 2013 at 10:25 AM. + Last updated on Jul 29, 2013 at 08:21 AM. </div> </body> </html> \ No newline at end of file From b19774caefc6c1ab03860e2d36552d445ed18cd8 Mon Sep 17 00:00:00 2001 From: rmacy <ryan@hackery.io> Date: Mon, 29 Jul 2013 13:53:23 -0500 Subject: [PATCH 052/219] Update audience documentation. --- _sources/index.txt | 9 +++++++++ api/external/fields.html | 2 +- api/external/groups.html | 2 +- api/external/mailings.html | 2 +- api/external/members.html | 6 +++--- api/external/response.html | 2 +- api/external/searches.html | 4 ++-- api/external/triggers.html | 8 ++++---- api/external/webhooks.html | 2 +- genindex.html | 2 +- http-routingtable.html | 2 +- index.html | 12 ++++++++++-- member_search.html | 2 +- pagination.html | 2 +- php_get_member_example.html | 2 +- php_signup_example.html | 2 +- placeholders.html | 2 +- search.html | 2 +- searchindex.js | 2 +- webhooks.html | 2 +- 20 files changed, 43 insertions(+), 26 deletions(-) diff --git a/_sources/index.txt b/_sources/index.txt index ef2a084..7439230 100644 --- a/_sources/index.txt +++ b/_sources/index.txt @@ -1,6 +1,13 @@ Emma API ======== +A Word To The Wise... +--------------------- + +Use the documentation here to set up and troubleshoot your API calls. We don't offer one-on-one support +for Emma's public API, but our system is monitored around the clock. If there's ever a dropped connection +or outage, we'll notify users on our `status page <http://myemma.com/status>`_. + Overview -------- @@ -30,6 +37,8 @@ This collection is young, but growing, and includes wrappers commissioned by Emm `OhMyEmma <https://github.com/jwoodcock/OhMyEmma>`_: Built by Nashville developer `Jacques Woodcock <https://github.com/jwoodcock>`_. + `Emma <https://github.com/markroland/emma>`_: Built by Nashville-based `Abenity, Inc <http://www.abenity.com/>`_. + **Python** `EmmaPython <https://github.com/myemma/EmmaPython>`_: Built by Emma's own `Doug Hurst <https://github.com/dalanhurst>`_. diff --git a/api/external/fields.html b/api/external/fields.html index 12b02ee..92973d4 100644 --- a/api/external/fields.html +++ b/api/external/fields.html @@ -414,7 +414,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 29, 2013 at 08:21 AM. + Last updated on Jul 29, 2013 at 01:53 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/groups.html b/api/external/groups.html index 01e284e..d7db724 100644 --- a/api/external/groups.html +++ b/api/external/groups.html @@ -708,7 +708,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 29, 2013 at 08:21 AM. + Last updated on Jul 29, 2013 at 01:53 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/mailings.html b/api/external/mailings.html index 0e15137..b92204b 100644 --- a/api/external/mailings.html +++ b/api/external/mailings.html @@ -818,7 +818,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 29, 2013 at 08:21 AM. + Last updated on Jul 29, 2013 at 01:53 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/members.html b/api/external/members.html index e4569dd..82a0601 100644 --- a/api/external/members.html +++ b/api/external/members.html @@ -527,8 +527,8 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli <dd><p>Takes the necessary actions to signup a member and enlist them in the provided group ids. You can send the same member multiple times and pass in new group ids to signup.</p> -<p>This process trigger the opt-out workflow, and will send a mailing to -the member on new group enlistments. If no new groups are provided for +<p>This process triggers the opt-out workflow, and will send a mailing to +the member on new group enlistments. If no new group ids are provided for an existing member, the endpoint will respond back with their status and member_id, performing no additional actions.</p> <dl class="docutils"> @@ -1283,7 +1283,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 29, 2013 at 08:21 AM. + Last updated on Jul 29, 2013 at 01:53 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/response.html b/api/external/response.html index 4cc33a6..ff49187 100644 --- a/api/external/response.html +++ b/api/external/response.html @@ -1018,7 +1018,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 29, 2013 at 08:21 AM. + Last updated on Jul 29, 2013 at 01:53 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/searches.html b/api/external/searches.html index 06c4983..a64ebdd 100644 --- a/api/external/searches.html +++ b/api/external/searches.html @@ -201,7 +201,7 @@ <h1>Searches<a class="headerlink" href="#searches" title="Permalink to this head "criteria": "[\"or\", [\"group\", \"eq\", \"Monthly Newsletter\"],[\"group\", \"eq\", \"Widget Buyers\"]]", "deleted_at": null, "purged_at": null, - "last_run_at": "@D:2013-07-29T08:21:21", + "last_run_at": "@D:2013-07-29T13:53:19", "active_count": 2, "account_id": 100 } @@ -513,7 +513,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 29, 2013 at 08:21 AM. + Last updated on Jul 29, 2013 at 01:53 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/triggers.html b/api/external/triggers.html index e26da10..0afa9d1 100644 --- a/api/external/triggers.html +++ b/api/external/triggers.html @@ -149,7 +149,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": 203, "push_offset_units": "0:-14:0:0", - "start_ts": "@D:2013-07-29T08:21:19", + "start_ts": "@D:2013-07-29T13:53:16", "trigger_id": 100, "signups": null, "push_offset": "@I:-1209600.0", @@ -192,7 +192,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": null, "push_offset_units": "0:3:0:0", - "start_ts": "@D:2013-07-29T08:21:19", + "start_ts": "@D:2013-07-29T13:53:16", "trigger_id": 101, "signups": [ 1, @@ -331,7 +331,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": 203, "push_offset_units": "0:-14:0:0", - "start_ts": "@D:2013-07-29T08:21:19", + "start_ts": "@D:2013-07-29T13:53:16", "trigger_id": 100, "signups": null, "push_offset": "@I:-1209600.0", @@ -506,7 +506,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 29, 2013 at 08:21 AM. + Last updated on Jul 29, 2013 at 01:53 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/webhooks.html b/api/external/webhooks.html index bd6da19..d21f04a 100644 --- a/api/external/webhooks.html +++ b/api/external/webhooks.html @@ -486,7 +486,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 29, 2013 at 08:21 AM. + Last updated on Jul 29, 2013 at 01:53 PM. </div> </body> </html> \ No newline at end of file diff --git a/genindex.html b/genindex.html index 6dee464..5db8dcb 100644 --- a/genindex.html +++ b/genindex.html @@ -144,7 +144,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 29, 2013 at 08:21 AM. + Last updated on Jul 29, 2013 at 01:53 PM. </div> </body> </html> \ No newline at end of file diff --git a/http-routingtable.html b/http-routingtable.html index d887c3d..f634d43 100644 --- a/http-routingtable.html +++ b/http-routingtable.html @@ -611,7 +611,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 29, 2013 at 08:21 AM. + Last updated on Jul 29, 2013 at 01:53 PM. </div> </body> </html> \ No newline at end of file diff --git a/index.html b/index.html index 37a6c8b..9f815b8 100644 --- a/index.html +++ b/index.html @@ -99,6 +99,12 @@ <h3>Navigation</h3> <div class="section" id="emma-api"> <h1>Emma API<a class="headerlink" href="#emma-api" title="Permalink to this headline">¶</a></h1> +<div class="section" id="a-word-to-the-wise"> +<h2>A Word To The Wise...<a class="headerlink" href="#a-word-to-the-wise" title="Permalink to this headline">¶</a></h2> +<p>Use the documentation here to set up and troubleshoot your API calls. We don’t offer one-on-one support +for Emma’s public API, but our system is monitored around the clock. If there’s ever a dropped connection +or outage, we’ll notify users on our <a class="reference external" href="http://myemma.com/status">status page</a>.</p> +</div> <div class="section" id="overview"> <h2>Overview<a class="headerlink" href="#overview" title="Permalink to this headline">¶</a></h2> <p>Emma’s platform is accessible through our public API. The API provides access @@ -141,7 +147,8 @@ <h2>API Wrappers<a class="headerlink" href="#api-wrappers" title="Permalink to t <dl class="docutils"> <dt><strong>PHP</strong></dt> <dd><p class="first"><a class="reference external" href="https://github.com/myemma/EmmaPHP">EmmaPHP</a> : Commissioned by Emma and built by Nashville developer <a class="reference external" href="https://github.com/dennismonsewicz">Dennis Monsewicz</a>.</p> -<p class="last"><a class="reference external" href="https://github.com/jwoodcock/OhMyEmma">OhMyEmma</a>: Built by Nashville developer <a class="reference external" href="https://github.com/jwoodcock">Jacques Woodcock</a>.</p> +<p><a class="reference external" href="https://github.com/jwoodcock/OhMyEmma">OhMyEmma</a>: Built by Nashville developer <a class="reference external" href="https://github.com/jwoodcock">Jacques Woodcock</a>.</p> +<p class="last"><a class="reference external" href="https://github.com/markroland/emma">Emma</a>: Built by Nashville-based <a class="reference external" href="http://www.abenity.com/">Abenity, Inc</a>.</p> </dd> <dt><strong>Python</strong></dt> <dd><a class="reference external" href="https://github.com/myemma/EmmaPython">EmmaPython</a>: Built by Emma’s own <a class="reference external" href="https://github.com/dalanhurst">Doug Hurst</a>.</dd> @@ -290,6 +297,7 @@ <h2>Additional Documentation<a class="headerlink" href="#additional-documentatio <h3><a href="#">Table Of Contents</a></h3> <ul> <li><a class="reference internal" href="#">Emma API</a><ul> +<li><a class="reference internal" href="#a-word-to-the-wise">A Word To The Wise...</a></li> <li><a class="reference internal" href="#overview">Overview</a></li> <li><a class="reference internal" href="#api-wrappers">API Wrappers</a></li> <li><a class="reference internal" href="#quickstart">Quickstart</a></li> @@ -341,7 +349,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 29, 2013 at 08:21 AM. + Last updated on Jul 29, 2013 at 01:53 PM. </div> </body> </html> \ No newline at end of file diff --git a/member_search.html b/member_search.html index 9773126..91327f4 100644 --- a/member_search.html +++ b/member_search.html @@ -255,7 +255,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 29, 2013 at 08:21 AM. + Last updated on Jul 29, 2013 at 01:53 PM. </div> </body> </html> \ No newline at end of file diff --git a/pagination.html b/pagination.html index 4a1af47..425e751 100644 --- a/pagination.html +++ b/pagination.html @@ -167,7 +167,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 29, 2013 at 08:21 AM. + Last updated on Jul 29, 2013 at 01:53 PM. </div> </body> </html> \ No newline at end of file diff --git a/php_get_member_example.html b/php_get_member_example.html index 4e17cea..0c6d33a 100644 --- a/php_get_member_example.html +++ b/php_get_member_example.html @@ -182,7 +182,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 29, 2013 at 08:21 AM. + Last updated on Jul 29, 2013 at 01:53 PM. </div> </body> </html> \ No newline at end of file diff --git a/php_signup_example.html b/php_signup_example.html index 01a8b3b..d880ff4 100644 --- a/php_signup_example.html +++ b/php_signup_example.html @@ -204,7 +204,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 29, 2013 at 08:21 AM. + Last updated on Jul 29, 2013 at 01:53 PM. </div> </body> </html> \ No newline at end of file diff --git a/placeholders.html b/placeholders.html index 6a5e3d4..b42a506 100644 --- a/placeholders.html +++ b/placeholders.html @@ -182,7 +182,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 29, 2013 at 08:21 AM. + Last updated on Jul 29, 2013 at 01:53 PM. </div> </body> </html> \ No newline at end of file diff --git a/search.html b/search.html index 1272e2d..2dff327 100644 --- a/search.html +++ b/search.html @@ -154,7 +154,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 29, 2013 at 08:21 AM. + Last updated on Jul 29, 2013 at 01:53 PM. </div> </body> </html> \ No newline at end of file diff --git a/searchindex.js b/searchindex.js index c88c6a2..b9b93f1 100644 --- a/searchindex.js +++ b/searchindex.js @@ -1 +1 @@ -Search.setIndex({envversion:42,terms:{all:[0,1,4,5,8,9,10,11,12,13,14],code:[0,1,6,3],change_typ:8,queri:[0,2,4],month:[0,5,9,14],four:[0,5],mile:0,least:0,follow:[0,1,4,5,7,8,9,11,13],link_target:[5,9],privat:1,specif:[8,9,4],friendli:5,send:[1,3,4,5,8,9],program:1,customer_share_click:5,those:[1,12,5],group_upd:[12,4],sent:[5,8,12,9,14],curl_clos:[1,6,3],certain:12,brown:[7,8],digit:5,everi:0,string:[0,4,5,7,8,9,10,12,13,14],fals:[1,3,4,5,6,7,8,9,10,13,14],end:[2,8],mailing_status:9,trigger_id:14,webview_share_click:5,affect:[7,8],member_add:[12,4],create_mail:9,new_boolean:10,foo:0,level:1,group_delet:[12,4],list:[0,1,2,4,5,7,8,9,10,11,12,13,14],upload:8,ryan:8,"try":8,item:2,plaintext_onli:[9,14],div:[4,5,7,8,9,10,13,14],survey_id:14,setup:1,pleas:[1,8,11,9],prevent:2,work:[1,4],ten:0,sync:10,sign:[0,5,8,4],past:1,second:[0,7,14],field_creat:[12,4],further:1,shortcut_nam:10,click:[0,4,5,7,8,14],append:2,even:10,what:1,hide:[4,5,7,8,9,10,13,14],appear:[1,8],from_group_id:13,section:1,advanc:0,current:[1,8,12,9],delet:[1,4,7,8,9,10,13,14],"new":[1,4,5,7,8,9,10,11,13,14],net:[1,2,6,3],delivery_t:8,method:[5,8,13,4,9],can:[0,1,2,4,5,7,8,9,11,12,13],widget:[7,10,8,9,13],full:1,hash:0,datematch:0,displai:10,variat:9,gener:[0,8,12,14],onli:[5,8],here:[0,1,3,5,6,8],json:[0,1,3,4,6,7],bodi:[8,9],let:[1,4,10],address:[0,1,8,6,9],along:8,sinc:8,valu:[0,5,7,8,10,11],field_upd:[12,4],search:[8,9],survei:14,sender:[9,14],larger:2,queue:5,prior:9,action:[0,8],chang:[8,4],overrid:8,campaign:5,newbi:5,appli:[7,14],prefer:0,young:1,myemma:[4,5,7,8,9,13],filenam:8,customer_shar:5,"boolean":[1,5,7,8,9,10,13,14],curlopt_postfield:[1,3],total:5,jone:[7,5,8,13],select:[1,10],newslett:[7,8,13],describ:7,would:[0,1],commun:1,regist:4,two:[0,5],coverag:1,next:[0,1],create_webhook:4,few:[5,8],call:[8,4],criteria:7,member_add_to_group:[12,4],type:[1,3,4,5,6,7,10,9,14],until:2,more:[0,4,7,8,9,13],peopl:5,relat:[1,8,11,9],about:[10,8,12,4,9],notic:8,thide:[4,5,7,8,9,10,13,14],flag:[5,7,8,10,9,14],exce:2,indic:8,examin:1,particular:[1,4,5,8,10,12,9],in_progress:5,origin:9,must:[0,7,8,13,10],none:9,endpoint:[1,4,5,7,8,9,10,13,14],join:[0,7],hour:0,der:1,member_sinc:[0,5,7,8,9,13],uniqu:5,histori:8,soup:7,remain:[0,9],archiv:[5,9],member_optout:[12,4],drill:5,control:[1,11,9],give:5,process:8,forward_mailing_id:5,email_domain:[0,5],share:[0,5,8,4],accept:[0,5,7,8,9,10,11,13,14],total_click:5,tag:[8,11,9],want:[1,12,13,5],opt_in_url:8,occur:[7,12],some_numeric_field:0,delai:14,alwai:0,webhook_event_id:4,cours:1,multipl:[10,8],first_nam:[1,3,5,7,8,9,10,11,13,14],started_or_finish:[9,14],anoth:[9,13],get:[1,4,5,7,8,9,10,13,14],message_open:[12,4],html_bodi:[9,14],share_statu:5,push_offset:14,del_statu:5,tild:5,num_members_upd:8,simpl:0,chri:9,pizza:[7,8],map:0,birthdai:[10,14],referenc:7,sundai:0,jacqu:1,membership:13,taco:[7,5,8,9,13],mai:12,xxxx:6,associ:[1,8,9,4,5],grow:1,welcom:11,add_onli:8,"short":0,json_encod:[1,3],optout:[5,8,13],num_dupl:8,favorit:10,correspond:[0,1],greet:11,predic:1,issu:[1,10],"12t11":[7,5,8,9,13],combin:7,allow:[0,7,8],some_zipcode_field:0,signed_up:5,order:[5,10],michel:[8,9],mailing_nam:5,checkbox:10,fields_upd:8,over:2,becaus:12,buyer:[7,8,9,13],comma:[9,13],is_dis:14,vari:8,paramet:[2,4,5,7,8,9,10,13,14],widget_typ:10,style:[0,4,5,7,8,9,10,13,14],curl_setopt:[1,6,3],how:[7,1,2,4],fix:1,import_start:8,better:[13,14],platform:1,pend:[1,9],mailing_list:9,onc:9,hidden:13,main:1,might:[1,4],link_nam:[5,9],them:[8,9],messag:[4,5,8,11,9,14],"return":[0,1,4,5,7,8,9,10,12,13,14],greater:[0,8],thei:[0,9],food:10,timestamp:[0,5,12,9,10],spell:4,nashvil:1,dai:0,auth:1,instead:[12,2,8],now:5,down:5,term:1,alex:9,name:[0,4,5,7,8,9,10,11,13,14],edit:[7,1,14,10],curl_getinfo:[1,6,3],authent:[1,6,4,3],successufulli:4,separ:[1,9,13],each:[1,2,5,9,12,11,13],found:[8,9,4,14],updat:[4,7,8,9,10,13,14],denni:1,status:[8,9],domain:0,weight:[4,5,7,8,9,10,13,14],resum:9,individu:[5,8],hard:[0,5],last_nam:[1,3,5,7,8,9,10,11,13,14],"05t15":5,connect:[1,6,3],doug:1,our:[1,11,12,4,14],happen:[1,4,5],commiss:1,short_display_nam:10,special:[0,7,8,13],out:[0,1,4,5,7,8,10,13],variabl:[1,6,3],message_shar:[12,4],network:[5,12],private_api_kei:[1,6,3],check_multipl:10,content:[1,11,6,9,3],rel:0,print:6,correct:10,integr:1,benjamin:[1,8],qualifi:11,insid:1,workflow:8,contain:[0,5,7,13,10,9],given:[0,8,9,4],standard:[5,9],status_from:8,base:[5,8],recipient_search:9,dictionari:8,put:[4,7,8,9,10,13,14],span:[4,5,7,8,9,10,13,14],"13t23":[7,5,8],refer:[5,7,8,13,10,9],visit:11,could:1,omit:5,success:[1,3,7,8,9,13],filter:[7,1],search_id:7,pagin:1,member_id:[5,7,8,9,12,13],summari:[1,5],assign:9,first:[0,1,10,5],oper:[7,1,14],rang:5,notifi:12,directli:0,curlopt_ssl_verifyp:[1,6,3],curl_init:[1,6,3],number:[5,2,13,3,10],placehold:1,date:[5,8,14,10],unlik:9,alreadi:[10,8,9,13],done:8,plaintext_pref:[7,8,9,13],oppos:8,open:[0,3,4,5,6,7,8],payload:4,fanci:5,size:2,differ:0,"long":10,script:1,data:[1,10,4,3,5],system:[8,12,4,14],construct:[0,7,9],attach:11,easier:12,friend:11,curlinfo_http_cod:[1,6,3],shell:0,option:[0,5,7,8,9,10,13,14],especi:8,signup:[0,1,4,5,8,14],copi:[8,13],member_upd:[12,4],specifi:[0,2,7,8,10,11,9,14],curl_exec:[1,6,3],curlopt_httphead:[1,6,3],member_signup:[12,4],create_search:7,part:[0,9],enclos:11,initi:[10,9],than:[0,1,2,3,12,13],with_plaintext:9,"02t10":[5,8],"02t11":[5,8],"02t13":5,nathan:8,whenev:8,provid:[1,5,8,12,9,14],remov:[8,13,4],mailing_start:4,rate:2,structur:7,charact:9,greg:8,trackabl:11,were:5,minut:0,danc:1,error_count:[7,8,9,13],pre:[4,5,7,8,9,10,13,14],cleaner:1,sai:0,share_id:5,signup_form_id:[0,8,12,9,14],plaintext:[5,9,14],pass:[1,8,3],ani:[0,1,2,7,8,9],have:[0,1,5,8,12,9],tabl:5,need:1,seen:5,"null":[7,8,13,10,9,14],kevin:[9,14],signup_mail:0,caus:14,built:1,inform:[1,4,6,8,9,10,13],object_id:14,note:[1,8,9,4],also:[0,4,5,7,8,9,11,13],exampl:[0,1,8,7,5],take:[0,8,4],which:[0,1,4,8,10,12,9,14],some_number_field:0,datacent:[9,14],singl:[0,1,3,4,5,8,10,12,13],excit:11,sure:1,delete_memb:13,normal:9,parent_mail:14,recipient_count:[5,9,14],previou:9,field_id:[10,12,14],last_run_at:7,most:14,rsvp_email:8,"class":[4,5,7,8,9,10,13,14],don:1,member_group_id:[8,9,13],mcconnel:[9,14],url:[1,3,4,5,6,12],mailing_finish:[12,4],clear:10,request:[1,2,3],doe:[0,5,7,8,9,10,13],member_status_upd:[12,4],declar:9,tech:4,determin:1,add:[1,8,13,3],dataset:10,dow:0,recipi:9,"6db0cc7e6fdb2da589b65f29d90c96b6":9,show:[4,5,7,8,9,10,11,13,14],text:[10,11,12],radiu:0,syntax:[1,9],radio:10,font:[4,5,7,8,9,10,13,14],fine:9,find:[1,6,5],status_to:8,toast:[7,5,8,13],access:[1,5],giant:12,just:[0,1,9],pretti:8,column_ord:10,"true":[0,1,2,3,4,6,7,8,9,10,13,14],explain:[0,1],winner:9,activ:[1,5,7,8,13,9],figur:1,should:[1,2,3,7,8,11,9],templat:[11,14],share_count:5,count:[1,2,3,5],variou:[8,13],confirmed_opt_in:[7,8,9,13],familiar:1,express:0,account:[1,4,5,7,8,10,13,14],repo:1,cannot:[8,9,4],progress:9,report:[10,8],requir:[1,7,8,10,11,9],object:[1,13,5],favorite_food:[5,7,8,13,10,9],bar:0,organ:1,include_archiv:[5,9],"public":1,"default":[5,11,13,4,9],ref_member_id:5,message_share_click:[12,4],through:[1,8,4],where:[0,1,8,11,7],view:1,respond:8,set:[0,1,2,3,6,8,9,12,13],link_id:[0,5,12,9,14],see:[7,1,8],result:[0,1,2,5,8,9],respons:[10,8,9,13],fail:[5,9,4],themselv:2,member_field:[0,7],xxxxx:6,subject:[8,12,9,14],statu:[1,4,5,7,8,9,13],fancyonion:11,kei:[0,1,8,11,4],is_schedul:9,message_forward:[12,4],databas:8,someth:1,last_modified_at:[7,8,9,13],addresse:5,written:1,between:[0,7,2],clicked_uniqu:5,"import":[1,8,4,10],subscript:[1,3],entiti:1,curlopt_url:[1,6,3],email:[0,1,5,7,8,9,13],wide:14,extend:1,numer:10,http404:[4,5,7,8,9,10,13,14],job:13,entir:[0,8],share_click:5,to_group_id:13,curlopt_returntransf:[1,6,3],addit:[8,9,13],member_remove_from_group:[12,4],send_start:[0,9,14],protect:1,accident:2,last:[0,5,10],delimit:5,lentil:7,pertain:5,message_click:[12,4],curlopt_post:[1,3],audienc:[1,8,9],mang:0,improv:1,http500:14,seri:5,com:[4,5,6,7,8,9,11,13],zip_code_field:0,"03t15":[7,5,8,13],point:1,toni:[7,8],overview:5,period:1,colon:[7,11],optout_count:[7,8,9,13],suppli:9,cancel:9,tuesdai:0,duplic:5,quit:[5,8],user_id:4,recur:14,headsup:9,addition:[1,2],due:5,been:[1,8,10,5],mark:[8,9],whom:9,tshow:[4,5,7,8,9,10,13,14],trigger:[5,7,8,13,10,9],unsubscrib:0,treat:8,interest:[10,4],basic:[0,1,4,8,13,14],monthli:[7,8,13],member_delet:[12,4],hesit:1,blob:4,email_us:[0,5],mailing_mailing_id:5,mailing_id:[0,5,8,12,9,14],fire:[8,4,14],xxx:[1,3],rubi:1,argument:[0,5],bulk:[1,8],input:1,present:7,statist:8,"case":[1,8],look:[1,14,10],frozen:9,durat:9,email_error:[7,8,9,13],defin:[0,10,8,9],"while":0,smith:[7,5,8,9,13],outcom:5,abov:[0,1,8,7],error:[1,3,6,8,10,13],veen:1,loop:8,opt:[0,4,5,7,8,13],readi:9,deliv:5,recipient_group:9,equal:0,itself:0,new_statu:12,webhook_id:4,develop:1,recipient_memb:9,perform:8,make:[1,12,6,10],belong:[0,8,4],same:[8,4],check:[8,6,9],member:[10,9,13],python:1,html:9,split:9,opt_in_messag:8,complet:[1,3,4,6,8,9],week:0,finish:[5,4],http:[1,2,3,4,5,6,11,9],href:[4,5,7,8,9,10,13,14],nest:0,someon:4,rais:[4,5,7,8,9,10,13,14],winner_id:9,php:1,studi:1,recent:[1,8],kept:11,center:0,min:5,well:[1,5],inherit:9,person:9,mailing_typ:[9,14],without:[0,1],command:1,thi:[0,1,4,5,7,8,9,10,12,13,14],undefin:0,http_code:[1,6,3],latest:11,identifi:8,paus:9,execut:[1,3],less:0,resp:[4,5,7,8,9,10,13,14],"_post":[1,3],against:0,aspect:13,recipient_email:9,source_filenam:8,yet:5,languag:1,"12t09":[7,8],display_nam:10,easi:[1,12,10],"01t00":8,had:0,littl:1,blog:4,rsvp_name:8,other:[1,8,9,3,5],curlopt_userpwd:[1,6,3],import_finish:[8,12,4],schedul:9,els:[1,6,3],save:7,match:[0,7],build:1,sanit:1,applic:[1,6,3],account_id:[1,3,4,5,6,7,8,9,10,12,13,14],handl:1,disposit:1,crud:[8,13,14],print_r:[6,3],mailing_statu:[9,14],know:[1,4,5],background:13,parent_mailing_id:[9,14],bit:1,insert:11,emma:[7,5,8,9,13],like:1,onion:11,deprec:4,arbitrari:8,manual:9,integ:[1,8,14,10,5],collect:1,api:8,necessari:8,either:[0,5,7],bunch:0,output:9,group_id:[1,8,12,3],soft:[0,5],manag:[0,1,13,4],import_id:[8,12],www:[5,9],old:7,deal:[8,13],captur:1,arrai:[0,1,3,5,6,7,8,9,10,12,13,14],some:[1,11,5],back:8,field_delet:[12,4],opt_in_subject:8,intern:10,sampl:[1,4,5,7,8,9,10,13,14],elaps:[2,9],unless:1,deleted_at:[7,8,13,10,9,14],some_string_field:0,librari:11,woodcock:1,emmarubi:1,bounce_count:[7,8,9,13],emmapython:1,public_kei:4,deliveri:5,broad:12,per:5,send_finish:[9,14],larg:[0,2],condit:7,three:9,network_cod:12,localhost:9,emmaphp:1,with_html_bodi:9,who:[0,5,8],bold:[4,5,7,8,9,10,13,14],event_typ:14,inspect:1,usag:[1,8],monsewicz:1,num_members_ad:8,fulli:11,from:[1,4,8,9,13,14],post:[1,3,4,7,8,9,10,13,14],group_creat:[12,4],gladi:[7,5,8,13],hurst:1,actual:5,zip:0,groups_upd:8,column:10,page:2,includ:[1,5,7,8,9,10,13],webview:9,mean:0,disabl:[9,14],block:[1,2],yyyi:5,own:[1,8],member_data:[1,3],glob:0,bounc:[0,5],within:[0,8],encod:[9,4],delivery_typ:[5,8],compos:0,webview_shar:5,pair:11,field_typ:10,active_count:[7,8,9,13],public_webview_url:9,pivot:5,your:[1,4,5,7,8,9,10,13],websit:11,fast:8,van:1,wai:[1,12],area:1,overus:2,group_nam:[8,12,13,9],support:12,unique_click:5,iter:2,submit:1,custom:[5,8,11,10],avail:[0,11,4],start:[1,2,8,4],interfac:12,send_at:[9,14],exceed:2,"var":3,purged_at:[7,8,9,13,14],interv:14,fork:1,head:[1,6,9,3],form:[1,3,4,6,8,10,14],enough:2,forc:1,forward:[0,5,8,9,4],"31st":0,group_typ:[8,9,13],push_offset_unit:14,link:[0,4,5,11,9,14],line:[1,5],realli:1,opt_out_url:8,archived_t:[9,14],info:4,pull:[1,2],made:1,possibl:[5,8,12],whether:8,"29t08":[7,14],maximum:2,tell:12,http403:9,record:[0,7,8],below:[0,1,8,12],http400:[7,8,9],limit:[5,2,8,9],some_array_field:0,otherwis:[1,8,10],start_t:14,mta:5,expect:1,notif:9,creat:[4,5,7,13,10,9,14],"int":5,retriev:[7,1,2,8,9],year:[0,5,9,14],repres:5,exist:[0,4,5,7,8,10,13],behavior:11,bob:[7,5],curl:[1,6],enlist:8,portland:1,probabl:14,echo:[1,3],successfulli:[5,8,9],mailing_subject:12,grp:13,extract:11,user:[0,8,9,13],when:[8,12,4,9],detail:[1,4,7,8,9,10,13],invalid:[7,8,9],event:[4,7,8,13,12,9,14],valid:[5,8,9,13],futur:1,num_skip:8,test:[5,6,7,13,9,14],ignor:8,you:[0,1,2,4,5,7,8,9,10,11,12,13],emmasdk:1,member_status_id:[7,5,8,9,13],public_api_kei:[1,6,3],stat:[5,9],claus:[0,7],event_nam:[12,4],e2ma:[1,2,6,3],error_messag:8,param:[9,4],app_messag:[1,3],ella:8,link_ord:[5,9],receiv:[0,2,5,8,12,9],heads_up_email:9,longer:9,home:11,confirm:8,descript:[4,14],ohmyemma:1,portion:0,opted_out:5,time:[1,2,8,13,5],reply_to:[9,14],resource_url:12,hello:[11,9,14]},objtypes:{"0":"http:get","1":"http:put","2":"http:post","3":"http:delete"},objnames:{"0":["http","get","HTTP get"],"1":["http","put","HTTP put"],"2":["http","post","HTTP post"],"3":["http","delete","HTTP delete"]},filenames:["member_search","index","pagination","php_signup_example","api/external/webhooks","api/external/response","php_get_member_example","api/external/searches","api/external/members","api/external/mailings","api/external/fields","placeholders","webhooks","api/external/groups","api/external/triggers"],titles:["Search Syntax","Emma API","Pagination","PHP Signup Example","Webhooks","Response","PHP Get Member By Email Example","Searches","Members","Mailings","Fields","Placeholder Syntax","Webhook Usage","Groups","Triggers"],objects:{"":{"/#account_id/members/#member_id/groups/remove":[8,1,1,"put--#account_id-members-#member_id-groups-remove"],"/#account_id/mailings/#mailing_id/winner/#winner_id":[9,2,1,"post--#account_id-mailings-#mailing_id-winner-#winner_id"],"/#account_id/response/#mailing_id/in_progress":[5,0,1,"get--#account_id-response-#mailing_id-in_progress"],"/#account_id/members/groups/remove":[8,1,1,"put--#account_id-members-groups-remove"],"/#account_id/mailings/#mailing_id/searches":[9,0,1,"get--#account_id-mailings-#mailing_id-searches"],"/#account_id/fields":[10,2,1,"post--#account_id-fields"],"/#account_id/members/#group_id/copy":[8,1,1,"put--#account_id-members-#group_id-copy"],"/#account_id/members/signup":[8,2,1,"post--#account_id-members-signup"],"/#account_id/members/status":[8,1,1,"put--#account_id-members-status"],"/#account_id/response/#mailing_id/shares/overview":[5,0,1,"get--#account_id-response-#mailing_id-shares-overview"],"/#account_id/webhooks/events":[4,0,1,"get--#account_id-webhooks-events"],"/#account_id/members/#member_id/optout":[8,0,1,"get--#account_id-members-#member_id-optout"],"/#account_id/webhooks":[4,3,1,"delete--#account_id-webhooks"],"/#account_id/fields/#field_id":[10,3,1,"delete--#account_id-fields-#field_id"],"/#account_id/response/#mailing_id":[5,0,1,"get--#account_id-response-#mailing_id"],"/#account_id/groups/#member_group_id/members/remove":[13,3,1,"delete--#account_id-groups-#member_group_id-members-remove"],"/#account_id/searches":[7,2,1,"post--#account_id-searches"],"/#account_id/members/imports":[8,0,1,"get--#account_id-members-imports"],"/#account_id/forwards/#mailing_id/#member_id":[9,2,1,"post--#account_id-forwards-#mailing_id-#member_id"],"/#account_id/response/#mailing_id/customer_share_clicks":[5,0,1,"get--#account_id-response-#mailing_id-customer_share_clicks"],"/#account_id/mailings/#mailing_id/messages/#member_id":[9,0,1,"get--#account_id-mailings-#mailing_id-messages-#member_id"],"/#account_id/members/#member_id/mailings":[8,0,1,"get--#account_id-members-#member_id-mailings"],"/#account_id/groups/#from_group_id/#to_group_id/members/copy":[13,1,1,"put--#account_id-groups-#from_group_id-#to_group_id-members-copy"],"/#account_id/triggers":[14,2,1,"post--#account_id-triggers"],"/#account_id/triggers/#trigger_id":[14,3,1,"delete--#account_id-triggers-#trigger_id"],"/#account_id/members/delete":[8,1,1,"put--#account_id-members-delete"],"/#account_id/mailings/#mailing_id/groups":[9,0,1,"get--#account_id-mailings-#mailing_id-groups"],"/#account_id/response/#mailing_id/forwards":[5,0,1,"get--#account_id-response-#mailing_id-forwards"],"/#account_id/members/#member_id":[8,3,1,"delete--#account_id-members-#member_id"],"/#account_id/triggers/#trigger_id/mailings":[14,0,1,"get--#account_id-triggers-#trigger_id-mailings"],"/#account_id/searches/#search_id/members":[7,0,1,"get--#account_id-searches-#search_id-members"],"/#account_id/members/status/:status_from/to/:status_to":[8,1,1,"put--#account_id-members-status--status_from-to--status_to"],"/#account_id/response/#mailing_id/sends":[5,0,1,"get--#account_id-response-#mailing_id-sends"],"/#account_id/members":[8,3,1,"delete--#account_id-members"],"/#account_id/members/email/:email":[8,0,1,"get--#account_id-members-email--email"],"/#account_id/response/#mailing_id/links":[5,0,1,"get--#account_id-response-#mailing_id-links"],"/#account_id/searches/#search_id":[7,3,1,"delete--#account_id-searches-#search_id"],"/#account_id/members/imports/#import_id/members":[8,0,1,"get--#account_id-members-imports-#import_id-members"],"/#account_id/fields/#field_id/clear":[10,2,1,"post--#account_id-fields-#field_id-clear"],"/#account_id/groups/#member_group_id/members":[13,3,1,"delete--#account_id-groups-#member_group_id-members"],"/#account_id/members/imports/#import_id":[8,0,1,"get--#account_id-members-imports-#import_id"],"/#account_id/response":[5,0,1,"get--#account_id-response"],"/#account_id/response/#mailing_id/opens":[5,0,1,"get--#account_id-response-#mailing_id-opens"],"/#account_id/members/imports/delete":[8,3,1,"delete--#account_id-members-imports-delete"],"/#account_id/mailings":[9,0,1,"get--#account_id-mailings"],"/#account_id/mailings/cancel/#mailing_id":[9,3,1,"delete--#account_id-mailings-cancel-#mailing_id"],"/#account_id/mailings/validate":[9,2,1,"post--#account_id-mailings-validate"],"/#account_id/response/#mailing_id/deliveries":[5,0,1,"get--#account_id-response-#mailing_id-deliveries"],"/#account_id/mailings/#mailing_id/members":[9,0,1,"get--#account_id-mailings-#mailing_id-members"],"/#account_id/response/#share_id/customer_share":[5,0,1,"get--#account_id-response-#share_id-customer_share"],"/#account_id/webhooks/#webhook_id":[4,3,1,"delete--#account_id-webhooks-#webhook_id"],"/#account_id/members/add":[8,2,1,"post--#account_id-members-add"],"/#account_id/members/email/optout/:email":[8,1,1,"put--#account_id-members-email-optout--email"],"/#account_id/response/#mailing_id/optouts":[5,0,1,"get--#account_id-response-#mailing_id-optouts"],"/#account_id/response/#mailing_id/shares":[5,0,1,"get--#account_id-response-#mailing_id-shares"],"/#account_id/groups/#member_group_id":[13,3,1,"delete--#account_id-groups-#member_group_id"],"/#account_id/mailings/#mailing_id":[9,3,1,"delete--#account_id-mailings-#mailing_id"],"/#account_id/members/#member_id/groups":[8,3,1,"delete--#account_id-members-#member_id-groups"],"/#account_id/groups":[13,2,1,"post--#account_id-groups"],"/#account_id/response/#mailing_id/clicks":[5,0,1,"get--#account_id-response-#mailing_id-clicks"],"/#account_id/mailings/#mailing_id/headsup":[9,0,1,"get--#account_id-mailings-#mailing_id-headsup"],"/#account_id/response/#mailing_id/signups":[5,0,1,"get--#account_id-response-#mailing_id-signups"],"/#account_id/response/#mailing_id/customer_shares":[5,0,1,"get--#account_id-response-#mailing_id-customer_shares"]}},titleterms:{oper:0,quickstart:1,creat:12,api:1,overview:[0,1,11,12],interv:0,share:12,syntax:[0,11],"boolean":0,wrapper:1,respons:5,open:12,click:12,categori:1,statu:12,group:[12,13],delet:12,todo:11,messag:12,member:[8,6,12],field:[10,12],add:12,trigger:14,call:1,forward:12,mail:[12,9],document:1,email:6,updat:12,finish:12,get:6,webhook:[12,4],signup:[12,3],usag:12,search:[0,7],"import":12,date:0,from:12,post:12,php:[6,3],data:12,addit:1,placehold:11,term:0,emma:1,optout:12,remov:12,predic:0,filter:0,exampl:[6,3],pagin:2}}) \ No newline at end of file +Search.setIndex({envversion:42,terms:{all:[0,1,4,5,8,9,10,11,12,13,14],code:[0,1,6,3],change_typ:8,queri:[0,2,4],month:[0,5,9,14],four:[0,5],mile:0,least:0,follow:[0,1,4,5,7,8,9,11,13],link_target:[5,9],privat:1,specif:[8,9,4],friendli:5,send:[1,3,4,5,8,9],program:1,customer_share_click:5,those:[1,12,5],group_upd:[12,4],sent:[5,8,12,9,14],curl_clos:[1,6,3],certain:12,brown:[7,8],digit:5,everi:0,string:[0,4,5,7,8,9,10,12,13,14],fals:[1,3,4,5,6,7,8,9,10,13,14],end:[2,8],mailing_status:9,trigger_id:14,webview_share_click:5,affect:[7,8],member_add:[12,4],create_mail:9,new_boolean:10,foo:0,level:1,group_delet:[12,4],list:[0,1,2,4,5,7,8,9,10,11,12,13,14],upload:8,ryan:8,"try":8,item:2,plaintext_onli:[9,14],div:[4,5,7,8,9,10,13,14],survey_id:14,setup:1,pleas:[1,8,11,9],prevent:2,work:[1,4],ten:0,sync:10,sign:[0,5,8,4],past:1,second:[0,7,14],field_creat:[12,4],further:1,shortcut_nam:10,click:[0,4,5,7,8,14],append:2,even:10,what:1,hide:[4,5,7,8,9,10,13,14],appear:[1,8],clock:1,section:1,advanc:0,current:[1,8,12,9],delet:[1,4,7,8,9,10,13,14],"new":[1,4,5,7,8,9,10,11,13,14],net:[1,2,6,3],delivery_t:8,ever:1,method:[5,8,13,4,9],can:[0,1,2,4,5,7,8,9,11,12,13],widget:[7,10,8,9,13],full:1,hash:0,datematch:0,displai:10,variat:9,gener:[0,8,12,14],onli:[5,8],here:[0,1,3,5,6,8],json:[0,1,3,4,6,7],bodi:[8,9],let:[1,4,10],address:[0,1,8,6,9],along:8,sinc:8,valu:[0,5,7,8,10,11],field_upd:[12,4],search:[8,9],survei:14,sender:[9,14],larger:2,queue:5,prior:9,action:[0,8],chang:[8,4],overrid:8,campaign:5,newbi:5,appli:[7,14],prefer:0,young:1,myemma:[4,5,7,8,9,13],filenam:8,customer_shar:5,"boolean":[1,5,7,8,9,10,13,14],curlopt_postfield:[1,3],total:5,jone:[7,5,8,13],select:[1,10],newslett:[7,8,13],describ:7,would:[0,1],commun:1,from_group_id:13,regist:4,two:[0,5],coverag:1,next:[0,1],create_webhook:4,few:[5,8],call:[8,4],criteria:7,member_add_to_group:[12,4],type:[1,3,4,5,6,7,10,9,14],until:2,more:[0,4,7,8,9,13],peopl:5,relat:[1,8,11,9],about:[10,8,12,4,9],notic:8,thide:[4,5,7,8,9,10,13,14],flag:[5,7,8,10,9,14],exce:2,indic:8,examin:1,particular:[1,4,5,8,10,12,9],in_progress:5,curl_getinfo:[1,6,3],origin:9,must:[0,7,8,13,10],none:9,endpoint:[1,4,5,7,8,9,10,13,14],join:[0,7],hour:0,der:1,member_sinc:[0,5,7,8,9,13],uniqu:5,histori:8,soup:7,remain:[0,9],archiv:[5,9],member_optout:[12,4],drill:5,control:[1,11,9],give:5,process:8,forward_mailing_id:5,email_domain:[0,5],share:[0,5,8,4],accept:[0,5,7,8,9,10,11,13,14],total_click:5,tag:[8,11,9],want:[1,12,13,5],opt_in_url:8,occur:[7,12],some_numeric_field:0,delai:14,alwai:0,webhook_event_id:4,cours:1,multipl:[10,8],first_nam:[1,3,5,7,8,9,10,11,13,14],started_or_finish:[9,14],anoth:[9,13],get:[1,4,5,7,8,9,10,13,14],message_open:[12,4],html_bodi:[9,14],share_statu:5,push_offset:14,del_statu:5,tild:5,num_members_upd:8,simpl:0,chri:9,pizza:[7,8],map:0,birthdai:[10,14],referenc:7,sundai:0,jacqu:1,membership:13,taco:[7,5,8,9,13],mai:12,xxxx:6,associ:[1,8,9,4,5],grow:1,welcom:11,add_onli:8,"short":0,json_encod:[1,3],optout:[5,8,13],num_dupl:8,favorit:10,correspond:[0,1],greet:11,predic:1,issu:[1,10],"12t11":[7,5,8,9,13],combin:7,allow:[0,7,8],some_zipcode_field:0,signed_up:5,order:[5,10],michel:[8,9],mailing_nam:5,checkbox:10,fields_upd:8,over:2,becaus:12,buyer:[7,8,9,13],comma:[9,13],is_dis:14,vari:8,paramet:[2,4,5,7,8,9,10,13,14],widget_typ:10,style:[0,4,5,7,8,9,10,13,14],monitor:1,how:[7,1,2,4],fix:1,import_start:8,better:[13,14],platform:1,pend:[1,9],mailing_list:9,onc:9,hidden:13,main:1,might:[1,4],link_nam:[5,9],them:[8,9],messag:[4,5,8,11,9,14],"return":[0,1,4,5,7,8,9,10,12,13,14],greater:[0,8],thei:[0,9],food:10,timestamp:[0,5,12,9,10],spell:4,nashvil:1,dai:0,auth:1,instead:[12,2,8],now:5,down:5,term:1,alex:9,name:[0,4,5,7,8,9,10,11,13,14],edit:[7,1,14,10],troubleshoot:1,drop:1,authent:[1,6,4,3],successufulli:4,separ:[1,9,13],each:[1,2,5,9,12,11,13],found:[8,9,4,14],updat:[4,7,8,9,10,13,14],denni:1,status:[8,9],domain:0,weight:[4,5,7,8,9,10,13,14],resum:9,individu:[5,8],hard:[0,5],last_nam:[1,3,5,7,8,9,10,11,13,14],"05t15":5,connect:[1,6,3],doug:1,our:[1,11,12,4,14],happen:[1,4,5],commiss:1,short_display_nam:10,special:[0,7,8,13],out:[0,1,4,5,7,8,10,13],variabl:[1,6,3],message_shar:[12,4],network:[5,12],private_api_kei:[1,6,3],check_multipl:10,content:[1,11,6,9,3],rel:0,print:6,correct:10,integr:1,benjamin:[1,8],qualifi:11,insid:1,workflow:8,contain:[0,5,7,13,10,9],given:[0,8,9,4],standard:[5,9],status_from:8,base:[1,8,5],recipient_search:9,dictionari:8,put:[4,7,8,9,10,13,14],span:[4,5,7,8,9,10,13,14],"13t23":[7,5,8],refer:[5,7,8,13,10,9],visit:11,could:1,omit:5,success:[1,3,7,8,9,13],filter:[7,1],search_id:7,pagin:1,member_id:[5,7,8,9,12,13],summari:[1,5],assign:9,first:[0,1,10,5],oper:[7,1,14],rang:5,notifi:[1,12],directli:0,curlopt_ssl_verifyp:[1,6,3],curl_init:[1,6,3],number:[5,2,13,3,10],placehold:1,date:[5,8,14,10],unlik:9,alreadi:[10,8,9,13],done:8,plaintext_pref:[7,8,9,13],oppos:8,open:[0,3,4,5,6,7,8],payload:4,fanci:5,size:2,differ:0,"long":10,script:1,data:[1,10,4,3,5],system:[1,8,12,4,14],construct:[0,7,9],attach:11,outag:1,friend:11,curlinfo_http_cod:[1,6,3],shell:0,option:[0,5,7,8,9,10,13,14],especi:8,signup:[0,1,4,5,8,14],copi:[8,13],member_upd:[12,4],specifi:[0,2,7,8,10,11,9,14],curl_exec:[1,6,3],curlopt_httphead:[1,6,3],member_signup:[12,4],create_search:7,part:[0,9],enclos:11,initi:[10,9],than:[0,1,2,3,12,13],with_plaintext:9,"02t10":[5,8],"02t11":[5,8],"02t13":5,nathan:8,whenev:8,provid:[1,5,8,12,9,14],remov:[8,13,4],mailing_start:4,rate:2,structur:7,charact:9,greg:8,trackabl:11,were:5,minut:0,danc:1,error_count:[7,8,9,13],pre:[4,5,7,8,9,10,13,14],cleaner:1,sai:0,share_id:5,signup_form_id:[0,8,12,9,14],plaintext:[5,9,14],pass:[1,8,3],ani:[0,1,2,7,8,9],have:[0,1,5,8,12,9],tabl:5,need:1,seen:5,"null":[7,8,13,10,9,14],kevin:[9,14],signup_mail:0,caus:14,built:1,inform:[1,4,6,8,9,10,13],check:[8,6,9],offer:1,object_id:14,note:[1,8,9,4],also:[0,4,5,7,8,9,11,13],exampl:[0,1,8,7,5],take:[0,8,4],which:[0,1,4,8,10,12,9,14],some_number_field:0,datacent:[9,14],singl:[0,1,3,4,5,8,10,12,13],excit:11,sure:1,delete_memb:13,normal:9,parent_mail:14,recipient_count:[5,9,14],previou:9,field_id:[10,12,14],last_run_at:7,most:14,rsvp_email:8,"class":[4,5,7,8,9,10,13,14],don:1,member_group_id:[8,9,13],mcconnel:[9,14],url:[1,3,4,5,6,12],mailing_finish:[12,4],clear:10,request:[1,2,3],doe:[0,5,7,8,9,10,13],member_status_upd:[12,4],declar:9,tech:4,determin:1,add:[1,8,13,3],dataset:10,dow:0,recipi:9,"6db0cc7e6fdb2da589b65f29d90c96b6":9,show:[4,5,7,8,9,10,11,13,14],text:[10,11,12],radiu:0,syntax:[1,9],radio:10,font:[4,5,7,8,9,10,13,14],fine:9,find:[1,6,5],status_to:8,toast:[7,5,8,13],access:[1,5],giant:12,just:[0,1,9],pretti:8,column_ord:10,"true":[0,1,2,3,4,6,7,8,9,10,13,14],explain:[0,1],winner:9,activ:[1,5,7,8,13,9],figur:1,should:[1,2,3,7,8,11,9],templat:[11,14],share_count:5,count:[1,2,3,5],variou:[8,13],confirmed_opt_in:[7,8,9,13],familiar:1,express:0,account:[1,4,5,7,8,10,13,14],repo:1,cannot:[8,9,4],progress:9,report:[10,8],requir:[1,7,8,10,11,9],object:[1,13,5],favorite_food:[5,7,8,13,10,9],bar:0,organ:1,include_archiv:[5,9],"public":1,"default":[5,11,13,4,9],ref_member_id:5,message_share_click:[12,4],through:[1,8,4],where:[0,1,8,11,7],view:1,respond:8,set:[0,1,2,3,6,8,9,12,13],link_id:[0,5,12,9,14],see:[7,1,8],result:[0,1,2,5,8,9],respons:[10,8,9,13],fail:[5,9,4],themselv:2,member_field:[0,7],xxxxx:6,subject:[8,12,9,14],statu:[1,4,5,7,8,9,13],fancyonion:11,kei:[0,1,8,11,4],is_schedul:9,message_forward:[12,4],databas:8,someth:1,last_modified_at:[7,8,9,13],addresse:5,written:1,between:[0,7,2],clicked_uniqu:5,"import":[1,8,4,10],subscript:[1,3],entiti:1,curlopt_url:[1,6,3],email:[0,1,5,7,8,9,13],wide:14,extend:1,numer:10,http404:[4,5,7,8,9,10,13,14],job:13,entir:[0,8],share_click:5,to_group_id:13,curlopt_returntransf:[1,6,3],curl_setopt:[1,6,3],member_remove_from_group:[12,4],send_start:[0,9,14],protect:1,accident:2,last:[0,5,10],delimit:5,lentil:7,pertain:5,message_click:[12,4],curlopt_post:[1,3],audienc:[1,8,9],mang:0,improv:1,http500:14,seri:5,com:[4,5,6,7,8,9,11,13],zip_code_field:0,"03t15":[7,5,8,13],point:1,toni:[7,8],overview:5,period:1,colon:[7,11],optout_count:[7,8,9,13],suppli:9,cancel:9,tuesdai:0,duplic:5,quit:[5,8],user_id:4,recur:14,headsup:9,addition:[1,2],due:5,been:[1,8,10,5],mark:[8,9],whom:9,tshow:[4,5,7,8,9,10,13,14],trigger:[5,7,8,13,10,9],unsubscrib:0,treat:8,interest:[10,4],basic:[0,1,4,8,13,14],monthli:[7,8,13],addit:[8,9,13],member_delet:[12,4],hesit:1,blob:4,email_us:[0,5],mailing_mailing_id:5,mailing_id:[0,5,8,12,9,14],fire:[8,4,14],xxx:[1,3],rubi:1,argument:[0,5],bulk:[1,8],input:1,present:7,statist:8,"case":[1,8],look:[1,14,10],frozen:9,durat:9,email_error:[7,8,9,13],defin:[0,10,8,9],"while":0,smith:[7,5,8,9,13],outcom:5,abov:[0,1,8,7],error:[1,3,6,8,10,13],veen:1,loop:8,opt:[0,4,5,7,8,13],readi:9,deliv:5,recipient_group:9,equal:0,itself:0,new_statu:12,webhook_id:4,account_id:[1,3,4,5,6,7,8,9,10,12,13,14],develop:1,recipient_memb:9,perform:8,make:[1,12,6,10],belong:[0,8,4],same:[8,4],easier:12,member:[10,9,13],python:1,html:9,split:9,opt_in_messag:8,complet:[1,3,4,6,8,9],week:0,finish:[5,4],http:[1,2,3,4,5,6,11,9],href:[4,5,7,8,9,10,13,14],nest:0,someon:4,rais:[4,5,7,8,9,10,13,14],winner_id:9,php:1,studi:1,recent:[1,8],kept:11,center:0,min:5,well:[1,5],inherit:9,person:9,mailing_typ:[9,14],without:[0,1],command:1,thi:[0,1,4,5,7,8,9,10,12,13,14],undefin:0,http_code:[1,6,3],latest:11,identifi:8,paus:9,execut:[1,3],less:0,resp:[4,5,7,8,9,10,13,14],"_post":[1,3],against:0,aspect:13,recipient_email:9,source_filenam:8,yet:5,languag:1,"12t09":[7,8],display_nam:10,easi:[1,12,10],"01t00":8,had:0,littl:1,blog:4,rsvp_name:8,other:[1,8,9,3,5],curlopt_userpwd:[1,6,3],import_finish:[8,12,4],schedul:9,els:[1,6,3],save:7,match:[0,7],build:1,sanit:1,applic:[1,6,3],around:1,handl:1,disposit:1,crud:[8,13,14],print_r:[6,3],mailing_statu:[9,14],know:[1,4,5],background:13,parent_mailing_id:[9,14],bit:1,insert:11,emma:[7,5,8,9,13],like:1,onion:11,deprec:4,arbitrari:8,manual:9,integ:[1,8,14,10,5],collect:1,api:8,necessari:8,either:[0,5,7],bunch:0,output:9,group_id:[1,8,12,3],soft:[0,5],manag:[0,1,13,4],import_id:[8,12],www:[5,9],old:7,deal:[8,13],captur:1,arrai:[0,1,3,5,6,7,8,9,10,12,13,14],some:[1,11,5],back:8,field_delet:[12,4],opt_in_subject:8,intern:10,sampl:[1,4,5,7,8,9,10,13,14],elaps:[2,9],unless:1,deleted_at:[7,8,13,10,9,14],some_string_field:0,librari:11,woodcock:1,emmarubi:1,bounce_count:[7,8,9,13],emmapython:1,public_kei:4,deliveri:5,broad:12,per:5,send_finish:[9,14],larg:[0,2],condit:7,three:9,network_cod:12,localhost:9,emmaphp:1,with_html_bodi:9,who:[0,5,8],bold:[4,5,7,8,9,10,13,14],event_typ:14,inspect:1,usag:[1,8],monsewicz:1,num_members_ad:8,fulli:11,from:[1,4,8,9,13,14],post:[1,3,4,7,8,9,10,13,14],group_creat:[12,4],gladi:[7,5,8,13],hurst:1,actual:5,zip:0,groups_upd:8,column:10,page:[1,2],includ:[1,5,7,8,9,10,13],webview:9,mean:0,disabl:[9,14],block:[1,2],"29t13":[7,14],yyyi:5,own:[1,8],member_data:[1,3],glob:0,bounc:[0,5],within:[0,8],encod:[9,4],delivery_typ:[5,8],compos:0,webview_shar:5,pair:11,field_typ:10,active_count:[7,8,9,13],public_webview_url:9,aben:1,pivot:5,your:[1,4,5,7,8,9,10,13],websit:11,fast:8,van:1,wai:[1,12],area:1,overus:2,group_nam:[8,12,13,9],support:[1,12],unique_click:5,iter:2,submit:1,custom:[5,8,11,10],avail:[0,11,4],start:[1,2,8,4],interfac:12,send_at:[9,14],exceed:2,"var":3,purged_at:[7,8,9,13,14],interv:14,fork:1,head:[1,6,9,3],form:[1,3,4,6,8,10,14],enough:2,forc:1,forward:[0,5,8,9,4],"31st":0,group_typ:[8,9,13],push_offset_unit:14,link:[0,4,5,11,9,14],line:[1,5],realli:1,opt_out_url:8,archived_t:[9,14],info:4,pull:[1,2],made:1,possibl:[5,8,12],whether:8,maximum:2,tell:12,http403:9,record:[0,7,8],below:[0,1,8,12],http400:[7,8,9],limit:[5,2,8,9],some_array_field:0,otherwis:[1,8,10],start_t:14,mta:5,expect:1,notif:9,creat:[4,5,7,13,10,9,14],"int":5,retriev:[7,1,2,8,9],year:[0,5,9,14],repres:5,exist:[0,4,5,7,8,10,13],behavior:11,bob:[7,5],curl:[1,6],enlist:8,portland:1,probabl:14,echo:[1,3],successfulli:[5,8,9],mailing_subject:12,grp:13,extract:11,user:[0,1,8,9,13],when:[8,12,4,9],detail:[1,4,7,8,9,10,13],invalid:[7,8,9],event:[4,7,8,13,12,9,14],valid:[5,8,9,13],futur:1,num_skip:8,test:[5,6,7,13,9,14],ignor:8,you:[0,1,2,4,5,7,8,9,10,11,12,13],emmasdk:1,member_status_id:[7,5,8,9,13],public_api_kei:[1,6,3],stat:[5,9],claus:[0,7],event_nam:[12,4],e2ma:[1,2,6,3],error_messag:8,param:[9,4],app_messag:[1,3],ella:8,link_ord:[5,9],receiv:[0,2,5,8,12,9],heads_up_email:9,longer:9,home:11,confirm:8,descript:[4,14],ohmyemma:1,portion:0,opted_out:5,time:[1,2,8,13,5],reply_to:[9,14],resource_url:12,inc:1,hello:[11,9,14]},objtypes:{"0":"http:get","1":"http:put","2":"http:post","3":"http:delete"},objnames:{"0":["http","get","HTTP get"],"1":["http","put","HTTP put"],"2":["http","post","HTTP post"],"3":["http","delete","HTTP delete"]},filenames:["member_search","index","pagination","php_signup_example","api/external/webhooks","api/external/response","php_get_member_example","api/external/searches","api/external/members","api/external/mailings","api/external/fields","placeholders","webhooks","api/external/groups","api/external/triggers"],titles:["Search Syntax","Emma API","Pagination","PHP Signup Example","Webhooks","Response","PHP Get Member By Email Example","Searches","Members","Mailings","Fields","Placeholder Syntax","Webhook Usage","Groups","Triggers"],objects:{"":{"/#account_id/members/#member_id/groups/remove":[8,1,1,"put--#account_id-members-#member_id-groups-remove"],"/#account_id/mailings/#mailing_id/winner/#winner_id":[9,2,1,"post--#account_id-mailings-#mailing_id-winner-#winner_id"],"/#account_id/response/#mailing_id/in_progress":[5,0,1,"get--#account_id-response-#mailing_id-in_progress"],"/#account_id/members/groups/remove":[8,1,1,"put--#account_id-members-groups-remove"],"/#account_id/mailings/#mailing_id/searches":[9,0,1,"get--#account_id-mailings-#mailing_id-searches"],"/#account_id/fields":[10,2,1,"post--#account_id-fields"],"/#account_id/members/#group_id/copy":[8,1,1,"put--#account_id-members-#group_id-copy"],"/#account_id/members/signup":[8,2,1,"post--#account_id-members-signup"],"/#account_id/members/status":[8,1,1,"put--#account_id-members-status"],"/#account_id/response/#mailing_id/shares/overview":[5,0,1,"get--#account_id-response-#mailing_id-shares-overview"],"/#account_id/webhooks/events":[4,0,1,"get--#account_id-webhooks-events"],"/#account_id/members/#member_id/optout":[8,0,1,"get--#account_id-members-#member_id-optout"],"/#account_id/webhooks":[4,3,1,"delete--#account_id-webhooks"],"/#account_id/fields/#field_id":[10,3,1,"delete--#account_id-fields-#field_id"],"/#account_id/response/#mailing_id":[5,0,1,"get--#account_id-response-#mailing_id"],"/#account_id/groups/#member_group_id/members/remove":[13,3,1,"delete--#account_id-groups-#member_group_id-members-remove"],"/#account_id/searches":[7,2,1,"post--#account_id-searches"],"/#account_id/members/imports":[8,0,1,"get--#account_id-members-imports"],"/#account_id/forwards/#mailing_id/#member_id":[9,2,1,"post--#account_id-forwards-#mailing_id-#member_id"],"/#account_id/response/#mailing_id/customer_share_clicks":[5,0,1,"get--#account_id-response-#mailing_id-customer_share_clicks"],"/#account_id/mailings/#mailing_id/messages/#member_id":[9,0,1,"get--#account_id-mailings-#mailing_id-messages-#member_id"],"/#account_id/members/#member_id/mailings":[8,0,1,"get--#account_id-members-#member_id-mailings"],"/#account_id/groups/#from_group_id/#to_group_id/members/copy":[13,1,1,"put--#account_id-groups-#from_group_id-#to_group_id-members-copy"],"/#account_id/triggers":[14,2,1,"post--#account_id-triggers"],"/#account_id/triggers/#trigger_id":[14,3,1,"delete--#account_id-triggers-#trigger_id"],"/#account_id/members/delete":[8,1,1,"put--#account_id-members-delete"],"/#account_id/mailings/#mailing_id/groups":[9,0,1,"get--#account_id-mailings-#mailing_id-groups"],"/#account_id/response/#mailing_id/forwards":[5,0,1,"get--#account_id-response-#mailing_id-forwards"],"/#account_id/members/#member_id":[8,3,1,"delete--#account_id-members-#member_id"],"/#account_id/triggers/#trigger_id/mailings":[14,0,1,"get--#account_id-triggers-#trigger_id-mailings"],"/#account_id/searches/#search_id/members":[7,0,1,"get--#account_id-searches-#search_id-members"],"/#account_id/members/status/:status_from/to/:status_to":[8,1,1,"put--#account_id-members-status--status_from-to--status_to"],"/#account_id/response/#mailing_id/sends":[5,0,1,"get--#account_id-response-#mailing_id-sends"],"/#account_id/members":[8,3,1,"delete--#account_id-members"],"/#account_id/members/email/:email":[8,0,1,"get--#account_id-members-email--email"],"/#account_id/response/#mailing_id/links":[5,0,1,"get--#account_id-response-#mailing_id-links"],"/#account_id/searches/#search_id":[7,3,1,"delete--#account_id-searches-#search_id"],"/#account_id/members/imports/#import_id/members":[8,0,1,"get--#account_id-members-imports-#import_id-members"],"/#account_id/fields/#field_id/clear":[10,2,1,"post--#account_id-fields-#field_id-clear"],"/#account_id/groups/#member_group_id/members":[13,3,1,"delete--#account_id-groups-#member_group_id-members"],"/#account_id/members/imports/#import_id":[8,0,1,"get--#account_id-members-imports-#import_id"],"/#account_id/response":[5,0,1,"get--#account_id-response"],"/#account_id/response/#mailing_id/opens":[5,0,1,"get--#account_id-response-#mailing_id-opens"],"/#account_id/members/imports/delete":[8,3,1,"delete--#account_id-members-imports-delete"],"/#account_id/mailings":[9,0,1,"get--#account_id-mailings"],"/#account_id/mailings/cancel/#mailing_id":[9,3,1,"delete--#account_id-mailings-cancel-#mailing_id"],"/#account_id/mailings/validate":[9,2,1,"post--#account_id-mailings-validate"],"/#account_id/response/#mailing_id/deliveries":[5,0,1,"get--#account_id-response-#mailing_id-deliveries"],"/#account_id/mailings/#mailing_id/members":[9,0,1,"get--#account_id-mailings-#mailing_id-members"],"/#account_id/response/#share_id/customer_share":[5,0,1,"get--#account_id-response-#share_id-customer_share"],"/#account_id/webhooks/#webhook_id":[4,3,1,"delete--#account_id-webhooks-#webhook_id"],"/#account_id/members/add":[8,2,1,"post--#account_id-members-add"],"/#account_id/members/email/optout/:email":[8,1,1,"put--#account_id-members-email-optout--email"],"/#account_id/response/#mailing_id/optouts":[5,0,1,"get--#account_id-response-#mailing_id-optouts"],"/#account_id/response/#mailing_id/shares":[5,0,1,"get--#account_id-response-#mailing_id-shares"],"/#account_id/groups/#member_group_id":[13,3,1,"delete--#account_id-groups-#member_group_id"],"/#account_id/mailings/#mailing_id":[9,3,1,"delete--#account_id-mailings-#mailing_id"],"/#account_id/members/#member_id/groups":[8,3,1,"delete--#account_id-members-#member_id-groups"],"/#account_id/groups":[13,2,1,"post--#account_id-groups"],"/#account_id/response/#mailing_id/clicks":[5,0,1,"get--#account_id-response-#mailing_id-clicks"],"/#account_id/mailings/#mailing_id/headsup":[9,0,1,"get--#account_id-mailings-#mailing_id-headsup"],"/#account_id/response/#mailing_id/signups":[5,0,1,"get--#account_id-response-#mailing_id-signups"],"/#account_id/response/#mailing_id/customer_shares":[5,0,1,"get--#account_id-response-#mailing_id-customer_shares"]}},titleterms:{oper:0,quickstart:1,creat:12,"boolean":0,overview:[0,1,11,12],interv:0,share:12,syntax:[0,11],api:1,wrapper:1,respons:5,open:12,click:12,categori:1,statu:12,from:12,delet:12,todo:11,messag:12,member:[8,6,12],field:[10,12],add:12,trigger:14,call:1,forward:12,mail:[12,9],document:1,email:6,updat:12,finish:12,get:6,webhook:[12,4],signup:[12,3],usag:12,search:[0,7],word:1,"import":12,date:0,group:[12,13],post:12,php:[6,3],data:12,addit:1,placehold:11,term:0,wise:1,optout:12,remov:12,predic:0,filter:0,exampl:[6,3],pagin:2,emma:1}}) \ No newline at end of file diff --git a/webhooks.html b/webhooks.html index 9486669..b37cbc8 100644 --- a/webhooks.html +++ b/webhooks.html @@ -506,7 +506,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 29, 2013 at 08:21 AM. + Last updated on Jul 29, 2013 at 01:53 PM. </div> </body> </html> \ No newline at end of file From d6bdf0c472f41df0565cee554d41c40138a9d734 Mon Sep 17 00:00:00 2001 From: rmacy <ryan@hackery.io> Date: Mon, 29 Jul 2013 13:55:08 -0500 Subject: [PATCH 053/219] Update audience documentation. --- api/external/fields.html | 2 +- api/external/groups.html | 2 +- api/external/mailings.html | 2 +- api/external/members.html | 2 +- api/external/response.html | 2 +- api/external/searches.html | 4 ++-- api/external/triggers.html | 8 ++++---- api/external/webhooks.html | 2 +- genindex.html | 2 +- http-routingtable.html | 2 +- index.html | 2 +- member_search.html | 2 +- pagination.html | 2 +- php_get_member_example.html | 2 +- php_signup_example.html | 2 +- placeholders.html | 2 +- search.html | 2 +- webhooks.html | 2 +- 18 files changed, 22 insertions(+), 22 deletions(-) diff --git a/api/external/fields.html b/api/external/fields.html index 92973d4..a7f18c5 100644 --- a/api/external/fields.html +++ b/api/external/fields.html @@ -414,7 +414,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 29, 2013 at 01:53 PM. + Last updated on Jul 29, 2013 at 01:55 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/groups.html b/api/external/groups.html index d7db724..b90ed5c 100644 --- a/api/external/groups.html +++ b/api/external/groups.html @@ -708,7 +708,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 29, 2013 at 01:53 PM. + Last updated on Jul 29, 2013 at 01:55 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/mailings.html b/api/external/mailings.html index b92204b..ac1a2c5 100644 --- a/api/external/mailings.html +++ b/api/external/mailings.html @@ -818,7 +818,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 29, 2013 at 01:53 PM. + Last updated on Jul 29, 2013 at 01:55 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/members.html b/api/external/members.html index 82a0601..34ca6c7 100644 --- a/api/external/members.html +++ b/api/external/members.html @@ -1283,7 +1283,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 29, 2013 at 01:53 PM. + Last updated on Jul 29, 2013 at 01:55 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/response.html b/api/external/response.html index ff49187..a011d32 100644 --- a/api/external/response.html +++ b/api/external/response.html @@ -1018,7 +1018,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 29, 2013 at 01:53 PM. + Last updated on Jul 29, 2013 at 01:55 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/searches.html b/api/external/searches.html index a64ebdd..29b262e 100644 --- a/api/external/searches.html +++ b/api/external/searches.html @@ -201,7 +201,7 @@ <h1>Searches<a class="headerlink" href="#searches" title="Permalink to this head "criteria": "[\"or\", [\"group\", \"eq\", \"Monthly Newsletter\"],[\"group\", \"eq\", \"Widget Buyers\"]]", "deleted_at": null, "purged_at": null, - "last_run_at": "@D:2013-07-29T13:53:19", + "last_run_at": "@D:2013-07-29T13:55:04", "active_count": 2, "account_id": 100 } @@ -513,7 +513,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 29, 2013 at 01:53 PM. + Last updated on Jul 29, 2013 at 01:55 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/triggers.html b/api/external/triggers.html index 0afa9d1..a90f9e9 100644 --- a/api/external/triggers.html +++ b/api/external/triggers.html @@ -149,7 +149,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": 203, "push_offset_units": "0:-14:0:0", - "start_ts": "@D:2013-07-29T13:53:16", + "start_ts": "@D:2013-07-29T13:55:02", "trigger_id": 100, "signups": null, "push_offset": "@I:-1209600.0", @@ -192,7 +192,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": null, "push_offset_units": "0:3:0:0", - "start_ts": "@D:2013-07-29T13:53:16", + "start_ts": "@D:2013-07-29T13:55:02", "trigger_id": 101, "signups": [ 1, @@ -331,7 +331,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": 203, "push_offset_units": "0:-14:0:0", - "start_ts": "@D:2013-07-29T13:53:16", + "start_ts": "@D:2013-07-29T13:55:02", "trigger_id": 100, "signups": null, "push_offset": "@I:-1209600.0", @@ -506,7 +506,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 29, 2013 at 01:53 PM. + Last updated on Jul 29, 2013 at 01:55 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/webhooks.html b/api/external/webhooks.html index d21f04a..8b4e8ff 100644 --- a/api/external/webhooks.html +++ b/api/external/webhooks.html @@ -486,7 +486,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 29, 2013 at 01:53 PM. + Last updated on Jul 29, 2013 at 01:55 PM. </div> </body> </html> \ No newline at end of file diff --git a/genindex.html b/genindex.html index 5db8dcb..95193e4 100644 --- a/genindex.html +++ b/genindex.html @@ -144,7 +144,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 29, 2013 at 01:53 PM. + Last updated on Jul 29, 2013 at 01:55 PM. </div> </body> </html> \ No newline at end of file diff --git a/http-routingtable.html b/http-routingtable.html index f634d43..24818d0 100644 --- a/http-routingtable.html +++ b/http-routingtable.html @@ -611,7 +611,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 29, 2013 at 01:53 PM. + Last updated on Jul 29, 2013 at 01:55 PM. </div> </body> </html> \ No newline at end of file diff --git a/index.html b/index.html index 9f815b8..01e1963 100644 --- a/index.html +++ b/index.html @@ -349,7 +349,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 29, 2013 at 01:53 PM. + Last updated on Jul 29, 2013 at 01:55 PM. </div> </body> </html> \ No newline at end of file diff --git a/member_search.html b/member_search.html index 91327f4..8950977 100644 --- a/member_search.html +++ b/member_search.html @@ -255,7 +255,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 29, 2013 at 01:53 PM. + Last updated on Jul 29, 2013 at 01:55 PM. </div> </body> </html> \ No newline at end of file diff --git a/pagination.html b/pagination.html index 425e751..f31831e 100644 --- a/pagination.html +++ b/pagination.html @@ -167,7 +167,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 29, 2013 at 01:53 PM. + Last updated on Jul 29, 2013 at 01:55 PM. </div> </body> </html> \ No newline at end of file diff --git a/php_get_member_example.html b/php_get_member_example.html index 0c6d33a..477bca8 100644 --- a/php_get_member_example.html +++ b/php_get_member_example.html @@ -182,7 +182,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 29, 2013 at 01:53 PM. + Last updated on Jul 29, 2013 at 01:55 PM. </div> </body> </html> \ No newline at end of file diff --git a/php_signup_example.html b/php_signup_example.html index d880ff4..5fa1061 100644 --- a/php_signup_example.html +++ b/php_signup_example.html @@ -204,7 +204,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 29, 2013 at 01:53 PM. + Last updated on Jul 29, 2013 at 01:55 PM. </div> </body> </html> \ No newline at end of file diff --git a/placeholders.html b/placeholders.html index b42a506..9acae1e 100644 --- a/placeholders.html +++ b/placeholders.html @@ -182,7 +182,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 29, 2013 at 01:53 PM. + Last updated on Jul 29, 2013 at 01:55 PM. </div> </body> </html> \ No newline at end of file diff --git a/search.html b/search.html index 2dff327..3163315 100644 --- a/search.html +++ b/search.html @@ -154,7 +154,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 29, 2013 at 01:53 PM. + Last updated on Jul 29, 2013 at 01:55 PM. </div> </body> </html> \ No newline at end of file diff --git a/webhooks.html b/webhooks.html index b37cbc8..0743069 100644 --- a/webhooks.html +++ b/webhooks.html @@ -506,7 +506,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 29, 2013 at 01:53 PM. + Last updated on Jul 29, 2013 at 01:55 PM. </div> </body> </html> \ No newline at end of file From e6984aee355269cc83ec7f126ec4e080cbeb2daf Mon Sep 17 00:00:00 2001 From: rmacy <ryan@hackery.io> Date: Mon, 29 Jul 2013 13:58:35 -0500 Subject: [PATCH 054/219] Update audience documentation. --- api/external/fields.html | 2 +- api/external/groups.html | 2 +- api/external/mailings.html | 2 +- api/external/members.html | 6 +++--- api/external/response.html | 2 +- api/external/searches.html | 4 ++-- api/external/triggers.html | 8 ++++---- api/external/webhooks.html | 2 +- genindex.html | 2 +- http-routingtable.html | 2 +- index.html | 2 +- member_search.html | 2 +- pagination.html | 2 +- php_get_member_example.html | 2 +- php_signup_example.html | 2 +- placeholders.html | 2 +- search.html | 2 +- webhooks.html | 2 +- 18 files changed, 24 insertions(+), 24 deletions(-) diff --git a/api/external/fields.html b/api/external/fields.html index a7f18c5..8acfafd 100644 --- a/api/external/fields.html +++ b/api/external/fields.html @@ -414,7 +414,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 29, 2013 at 01:55 PM. + Last updated on Jul 29, 2013 at 01:58 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/groups.html b/api/external/groups.html index b90ed5c..2e24875 100644 --- a/api/external/groups.html +++ b/api/external/groups.html @@ -708,7 +708,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 29, 2013 at 01:55 PM. + Last updated on Jul 29, 2013 at 01:58 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/mailings.html b/api/external/mailings.html index ac1a2c5..92e5821 100644 --- a/api/external/mailings.html +++ b/api/external/mailings.html @@ -818,7 +818,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 29, 2013 at 01:55 PM. + Last updated on Jul 29, 2013 at 01:58 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/members.html b/api/external/members.html index 34ca6c7..b68edc6 100644 --- a/api/external/members.html +++ b/api/external/members.html @@ -532,8 +532,8 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli an existing member, the endpoint will respond back with their status and member_id, performing no additional actions.</p> <dl class="docutils"> -<dt><a href="#id1"><span class="problematic" id="id2">*</span></a>Note: Members who are added to your audience using this API call will</dt> -<dd>not appear in “recent activity” searches within your account.*</dd> +<dt><em>Note</em>: Members who are added to your audience using this API call will</dt> +<dd>not appear in “recent activity” searches within your account.</dd> </dl> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> @@ -1283,7 +1283,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 29, 2013 at 01:55 PM. + Last updated on Jul 29, 2013 at 01:58 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/response.html b/api/external/response.html index a011d32..1c3f469 100644 --- a/api/external/response.html +++ b/api/external/response.html @@ -1018,7 +1018,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 29, 2013 at 01:55 PM. + Last updated on Jul 29, 2013 at 01:58 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/searches.html b/api/external/searches.html index 29b262e..51d8251 100644 --- a/api/external/searches.html +++ b/api/external/searches.html @@ -201,7 +201,7 @@ <h1>Searches<a class="headerlink" href="#searches" title="Permalink to this head "criteria": "[\"or\", [\"group\", \"eq\", \"Monthly Newsletter\"],[\"group\", \"eq\", \"Widget Buyers\"]]", "deleted_at": null, "purged_at": null, - "last_run_at": "@D:2013-07-29T13:55:04", + "last_run_at": "@D:2013-07-29T13:58:32", "active_count": 2, "account_id": 100 } @@ -513,7 +513,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 29, 2013 at 01:55 PM. + Last updated on Jul 29, 2013 at 01:58 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/triggers.html b/api/external/triggers.html index a90f9e9..dbec899 100644 --- a/api/external/triggers.html +++ b/api/external/triggers.html @@ -149,7 +149,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": 203, "push_offset_units": "0:-14:0:0", - "start_ts": "@D:2013-07-29T13:55:02", + "start_ts": "@D:2013-07-29T13:58:29", "trigger_id": 100, "signups": null, "push_offset": "@I:-1209600.0", @@ -192,7 +192,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": null, "push_offset_units": "0:3:0:0", - "start_ts": "@D:2013-07-29T13:55:02", + "start_ts": "@D:2013-07-29T13:58:29", "trigger_id": 101, "signups": [ 1, @@ -331,7 +331,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": 203, "push_offset_units": "0:-14:0:0", - "start_ts": "@D:2013-07-29T13:55:02", + "start_ts": "@D:2013-07-29T13:58:29", "trigger_id": 100, "signups": null, "push_offset": "@I:-1209600.0", @@ -506,7 +506,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 29, 2013 at 01:55 PM. + Last updated on Jul 29, 2013 at 01:58 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/webhooks.html b/api/external/webhooks.html index 8b4e8ff..d7dbfd7 100644 --- a/api/external/webhooks.html +++ b/api/external/webhooks.html @@ -486,7 +486,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 29, 2013 at 01:55 PM. + Last updated on Jul 29, 2013 at 01:58 PM. </div> </body> </html> \ No newline at end of file diff --git a/genindex.html b/genindex.html index 95193e4..569940b 100644 --- a/genindex.html +++ b/genindex.html @@ -144,7 +144,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 29, 2013 at 01:55 PM. + Last updated on Jul 29, 2013 at 01:58 PM. </div> </body> </html> \ No newline at end of file diff --git a/http-routingtable.html b/http-routingtable.html index 24818d0..09aab65 100644 --- a/http-routingtable.html +++ b/http-routingtable.html @@ -611,7 +611,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 29, 2013 at 01:55 PM. + Last updated on Jul 29, 2013 at 01:58 PM. </div> </body> </html> \ No newline at end of file diff --git a/index.html b/index.html index 01e1963..b2ccfc2 100644 --- a/index.html +++ b/index.html @@ -349,7 +349,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 29, 2013 at 01:55 PM. + Last updated on Jul 29, 2013 at 01:58 PM. </div> </body> </html> \ No newline at end of file diff --git a/member_search.html b/member_search.html index 8950977..1d1bf5d 100644 --- a/member_search.html +++ b/member_search.html @@ -255,7 +255,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 29, 2013 at 01:55 PM. + Last updated on Jul 29, 2013 at 01:58 PM. </div> </body> </html> \ No newline at end of file diff --git a/pagination.html b/pagination.html index f31831e..8b1c39f 100644 --- a/pagination.html +++ b/pagination.html @@ -167,7 +167,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 29, 2013 at 01:55 PM. + Last updated on Jul 29, 2013 at 01:58 PM. </div> </body> </html> \ No newline at end of file diff --git a/php_get_member_example.html b/php_get_member_example.html index 477bca8..569b6cd 100644 --- a/php_get_member_example.html +++ b/php_get_member_example.html @@ -182,7 +182,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 29, 2013 at 01:55 PM. + Last updated on Jul 29, 2013 at 01:58 PM. </div> </body> </html> \ No newline at end of file diff --git a/php_signup_example.html b/php_signup_example.html index 5fa1061..e15a888 100644 --- a/php_signup_example.html +++ b/php_signup_example.html @@ -204,7 +204,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 29, 2013 at 01:55 PM. + Last updated on Jul 29, 2013 at 01:58 PM. </div> </body> </html> \ No newline at end of file diff --git a/placeholders.html b/placeholders.html index 9acae1e..54f7aaa 100644 --- a/placeholders.html +++ b/placeholders.html @@ -182,7 +182,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 29, 2013 at 01:55 PM. + Last updated on Jul 29, 2013 at 01:58 PM. </div> </body> </html> \ No newline at end of file diff --git a/search.html b/search.html index 3163315..996f77a 100644 --- a/search.html +++ b/search.html @@ -154,7 +154,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 29, 2013 at 01:55 PM. + Last updated on Jul 29, 2013 at 01:58 PM. </div> </body> </html> \ No newline at end of file diff --git a/webhooks.html b/webhooks.html index 0743069..3351526 100644 --- a/webhooks.html +++ b/webhooks.html @@ -506,7 +506,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 29, 2013 at 01:55 PM. + Last updated on Jul 29, 2013 at 01:58 PM. </div> </body> </html> \ No newline at end of file From 821e2fa7361661b607b1a49fec5c1b88865896da Mon Sep 17 00:00:00 2001 From: rmacy <ryan@hackery.io> Date: Tue, 30 Jul 2013 15:26:39 -0500 Subject: [PATCH 055/219] Update audience documentation. --- api/external/fields.html | 4 ++-- api/external/groups.html | 4 ++-- api/external/mailings.html | 4 ++-- api/external/members.html | 4 ++-- api/external/response.html | 4 ++-- api/external/searches.html | 6 +++--- api/external/triggers.html | 10 +++++----- api/external/webhooks.html | 4 ++-- genindex.html | 4 ++-- http-routingtable.html | 4 ++-- index.html | 4 ++-- member_search.html | 4 ++-- pagination.html | 4 ++-- php_get_member_example.html | 4 ++-- php_signup_example.html | 4 ++-- placeholders.html | 4 ++-- search.html | 4 ++-- searchindex.js | 2 +- webhooks.html | 4 ++-- 19 files changed, 41 insertions(+), 41 deletions(-) diff --git a/api/external/fields.html b/api/external/fields.html index 8acfafd..0fd1e0b 100644 --- a/api/external/fields.html +++ b/api/external/fields.html @@ -406,7 +406,7 @@ <h3>Emma Links</h3> <div id="inquiry"> <h3>Interested in Emma?</h3> - <p>Emma's email marketing makes communicating simple and stylish. <a href="/get-started/inquire" title="Get started today.">Get started today</a>.</p> + <p>Emma's email marketing makes communicating simple and stylish. <a href="http://myemma.com/get-started/inquire" title="Get started today.">Get started today</a>.</p> </div> </div> </div> @@ -414,7 +414,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 29, 2013 at 01:58 PM. + Last updated on Jul 30, 2013 at 03:26 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/groups.html b/api/external/groups.html index 2e24875..20a483b 100644 --- a/api/external/groups.html +++ b/api/external/groups.html @@ -700,7 +700,7 @@ <h3>Emma Links</h3> <div id="inquiry"> <h3>Interested in Emma?</h3> - <p>Emma's email marketing makes communicating simple and stylish. <a href="/get-started/inquire" title="Get started today.">Get started today</a>.</p> + <p>Emma's email marketing makes communicating simple and stylish. <a href="http://myemma.com/get-started/inquire" title="Get started today.">Get started today</a>.</p> </div> </div> </div> @@ -708,7 +708,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 29, 2013 at 01:58 PM. + Last updated on Jul 30, 2013 at 03:26 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/mailings.html b/api/external/mailings.html index 92e5821..0d945ee 100644 --- a/api/external/mailings.html +++ b/api/external/mailings.html @@ -810,7 +810,7 @@ <h3>Emma Links</h3> <div id="inquiry"> <h3>Interested in Emma?</h3> - <p>Emma's email marketing makes communicating simple and stylish. <a href="/get-started/inquire" title="Get started today.">Get started today</a>.</p> + <p>Emma's email marketing makes communicating simple and stylish. <a href="http://myemma.com/get-started/inquire" title="Get started today.">Get started today</a>.</p> </div> </div> </div> @@ -818,7 +818,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 29, 2013 at 01:58 PM. + Last updated on Jul 30, 2013 at 03:26 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/members.html b/api/external/members.html index b68edc6..f4ee05c 100644 --- a/api/external/members.html +++ b/api/external/members.html @@ -1275,7 +1275,7 @@ <h3>Emma Links</h3> <div id="inquiry"> <h3>Interested in Emma?</h3> - <p>Emma's email marketing makes communicating simple and stylish. <a href="/get-started/inquire" title="Get started today.">Get started today</a>.</p> + <p>Emma's email marketing makes communicating simple and stylish. <a href="http://myemma.com/get-started/inquire" title="Get started today.">Get started today</a>.</p> </div> </div> </div> @@ -1283,7 +1283,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 29, 2013 at 01:58 PM. + Last updated on Jul 30, 2013 at 03:26 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/response.html b/api/external/response.html index 1c3f469..39b3988 100644 --- a/api/external/response.html +++ b/api/external/response.html @@ -1010,7 +1010,7 @@ <h3>Emma Links</h3> <div id="inquiry"> <h3>Interested in Emma?</h3> - <p>Emma's email marketing makes communicating simple and stylish. <a href="/get-started/inquire" title="Get started today.">Get started today</a>.</p> + <p>Emma's email marketing makes communicating simple and stylish. <a href="http://myemma.com/get-started/inquire" title="Get started today.">Get started today</a>.</p> </div> </div> </div> @@ -1018,7 +1018,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 29, 2013 at 01:58 PM. + Last updated on Jul 30, 2013 at 03:26 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/searches.html b/api/external/searches.html index 51d8251..a217604 100644 --- a/api/external/searches.html +++ b/api/external/searches.html @@ -201,7 +201,7 @@ <h1>Searches<a class="headerlink" href="#searches" title="Permalink to this head "criteria": "[\"or\", [\"group\", \"eq\", \"Monthly Newsletter\"],[\"group\", \"eq\", \"Widget Buyers\"]]", "deleted_at": null, "purged_at": null, - "last_run_at": "@D:2013-07-29T13:58:32", + "last_run_at": "@D:2013-07-30T15:26:34", "active_count": 2, "account_id": 100 } @@ -505,7 +505,7 @@ <h3>Emma Links</h3> <div id="inquiry"> <h3>Interested in Emma?</h3> - <p>Emma's email marketing makes communicating simple and stylish. <a href="/get-started/inquire" title="Get started today.">Get started today</a>.</p> + <p>Emma's email marketing makes communicating simple and stylish. <a href="http://myemma.com/get-started/inquire" title="Get started today.">Get started today</a>.</p> </div> </div> </div> @@ -513,7 +513,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 29, 2013 at 01:58 PM. + Last updated on Jul 30, 2013 at 03:26 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/triggers.html b/api/external/triggers.html index dbec899..de5fd93 100644 --- a/api/external/triggers.html +++ b/api/external/triggers.html @@ -149,7 +149,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": 203, "push_offset_units": "0:-14:0:0", - "start_ts": "@D:2013-07-29T13:58:29", + "start_ts": "@D:2013-07-30T15:26:32", "trigger_id": 100, "signups": null, "push_offset": "@I:-1209600.0", @@ -192,7 +192,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": null, "push_offset_units": "0:3:0:0", - "start_ts": "@D:2013-07-29T13:58:29", + "start_ts": "@D:2013-07-30T15:26:32", "trigger_id": 101, "signups": [ 1, @@ -331,7 +331,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "links": null, "field_id": 203, "push_offset_units": "0:-14:0:0", - "start_ts": "@D:2013-07-29T13:58:29", + "start_ts": "@D:2013-07-30T15:26:32", "trigger_id": 100, "signups": null, "push_offset": "@I:-1209600.0", @@ -498,7 +498,7 @@ <h3>Emma Links</h3> <div id="inquiry"> <h3>Interested in Emma?</h3> - <p>Emma's email marketing makes communicating simple and stylish. <a href="/get-started/inquire" title="Get started today.">Get started today</a>.</p> + <p>Emma's email marketing makes communicating simple and stylish. <a href="http://myemma.com/get-started/inquire" title="Get started today.">Get started today</a>.</p> </div> </div> </div> @@ -506,7 +506,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 29, 2013 at 01:58 PM. + Last updated on Jul 30, 2013 at 03:26 PM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/webhooks.html b/api/external/webhooks.html index d7dbfd7..a86a0e7 100644 --- a/api/external/webhooks.html +++ b/api/external/webhooks.html @@ -478,7 +478,7 @@ <h3>Emma Links</h3> <div id="inquiry"> <h3>Interested in Emma?</h3> - <p>Emma's email marketing makes communicating simple and stylish. <a href="/get-started/inquire" title="Get started today.">Get started today</a>.</p> + <p>Emma's email marketing makes communicating simple and stylish. <a href="http://myemma.com/get-started/inquire" title="Get started today.">Get started today</a>.</p> </div> </div> </div> @@ -486,7 +486,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 29, 2013 at 01:58 PM. + Last updated on Jul 30, 2013 at 03:26 PM. </div> </body> </html> \ No newline at end of file diff --git a/genindex.html b/genindex.html index 569940b..b0b8d82 100644 --- a/genindex.html +++ b/genindex.html @@ -136,7 +136,7 @@ <h3>Emma Links</h3> <div id="inquiry"> <h3>Interested in Emma?</h3> - <p>Emma's email marketing makes communicating simple and stylish. <a href="/get-started/inquire" title="Get started today.">Get started today</a>.</p> + <p>Emma's email marketing makes communicating simple and stylish. <a href="http://myemma.com/get-started/inquire" title="Get started today.">Get started today</a>.</p> </div> </div> </div> @@ -144,7 +144,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 29, 2013 at 01:58 PM. + Last updated on Jul 30, 2013 at 03:26 PM. </div> </body> </html> \ No newline at end of file diff --git a/http-routingtable.html b/http-routingtable.html index 09aab65..2851e9f 100644 --- a/http-routingtable.html +++ b/http-routingtable.html @@ -603,7 +603,7 @@ <h3>Emma Links</h3> <div id="inquiry"> <h3>Interested in Emma?</h3> - <p>Emma's email marketing makes communicating simple and stylish. <a href="/get-started/inquire" title="Get started today.">Get started today</a>.</p> + <p>Emma's email marketing makes communicating simple and stylish. <a href="http://myemma.com/get-started/inquire" title="Get started today.">Get started today</a>.</p> </div> </div> </div> @@ -611,7 +611,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 29, 2013 at 01:58 PM. + Last updated on Jul 30, 2013 at 03:26 PM. </div> </body> </html> \ No newline at end of file diff --git a/index.html b/index.html index b2ccfc2..271335b 100644 --- a/index.html +++ b/index.html @@ -341,7 +341,7 @@ <h3>Emma Links</h3> <div id="inquiry"> <h3>Interested in Emma?</h3> - <p>Emma's email marketing makes communicating simple and stylish. <a href="/get-started/inquire" title="Get started today.">Get started today</a>.</p> + <p>Emma's email marketing makes communicating simple and stylish. <a href="http://myemma.com/get-started/inquire" title="Get started today.">Get started today</a>.</p> </div> </div> </div> @@ -349,7 +349,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 29, 2013 at 01:58 PM. + Last updated on Jul 30, 2013 at 03:26 PM. </div> </body> </html> \ No newline at end of file diff --git a/member_search.html b/member_search.html index 1d1bf5d..2a5bd8a 100644 --- a/member_search.html +++ b/member_search.html @@ -247,7 +247,7 @@ <h3>Emma Links</h3> <div id="inquiry"> <h3>Interested in Emma?</h3> - <p>Emma's email marketing makes communicating simple and stylish. <a href="/get-started/inquire" title="Get started today.">Get started today</a>.</p> + <p>Emma's email marketing makes communicating simple and stylish. <a href="http://myemma.com/get-started/inquire" title="Get started today.">Get started today</a>.</p> </div> </div> </div> @@ -255,7 +255,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 29, 2013 at 01:58 PM. + Last updated on Jul 30, 2013 at 03:26 PM. </div> </body> </html> \ No newline at end of file diff --git a/pagination.html b/pagination.html index 8b1c39f..0659be5 100644 --- a/pagination.html +++ b/pagination.html @@ -159,7 +159,7 @@ <h3>Emma Links</h3> <div id="inquiry"> <h3>Interested in Emma?</h3> - <p>Emma's email marketing makes communicating simple and stylish. <a href="/get-started/inquire" title="Get started today.">Get started today</a>.</p> + <p>Emma's email marketing makes communicating simple and stylish. <a href="http://myemma.com/get-started/inquire" title="Get started today.">Get started today</a>.</p> </div> </div> </div> @@ -167,7 +167,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 29, 2013 at 01:58 PM. + Last updated on Jul 30, 2013 at 03:26 PM. </div> </body> </html> \ No newline at end of file diff --git a/php_get_member_example.html b/php_get_member_example.html index 569b6cd..a773b90 100644 --- a/php_get_member_example.html +++ b/php_get_member_example.html @@ -174,7 +174,7 @@ <h3>Emma Links</h3> <div id="inquiry"> <h3>Interested in Emma?</h3> - <p>Emma's email marketing makes communicating simple and stylish. <a href="/get-started/inquire" title="Get started today.">Get started today</a>.</p> + <p>Emma's email marketing makes communicating simple and stylish. <a href="http://myemma.com/get-started/inquire" title="Get started today.">Get started today</a>.</p> </div> </div> </div> @@ -182,7 +182,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 29, 2013 at 01:58 PM. + Last updated on Jul 30, 2013 at 03:26 PM. </div> </body> </html> \ No newline at end of file diff --git a/php_signup_example.html b/php_signup_example.html index e15a888..66ef405 100644 --- a/php_signup_example.html +++ b/php_signup_example.html @@ -196,7 +196,7 @@ <h3>Emma Links</h3> <div id="inquiry"> <h3>Interested in Emma?</h3> - <p>Emma's email marketing makes communicating simple and stylish. <a href="/get-started/inquire" title="Get started today.">Get started today</a>.</p> + <p>Emma's email marketing makes communicating simple and stylish. <a href="http://myemma.com/get-started/inquire" title="Get started today.">Get started today</a>.</p> </div> </div> </div> @@ -204,7 +204,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 29, 2013 at 01:58 PM. + Last updated on Jul 30, 2013 at 03:26 PM. </div> </body> </html> \ No newline at end of file diff --git a/placeholders.html b/placeholders.html index 54f7aaa..f592461 100644 --- a/placeholders.html +++ b/placeholders.html @@ -174,7 +174,7 @@ <h3>Emma Links</h3> <div id="inquiry"> <h3>Interested in Emma?</h3> - <p>Emma's email marketing makes communicating simple and stylish. <a href="/get-started/inquire" title="Get started today.">Get started today</a>.</p> + <p>Emma's email marketing makes communicating simple and stylish. <a href="http://myemma.com/get-started/inquire" title="Get started today.">Get started today</a>.</p> </div> </div> </div> @@ -182,7 +182,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 29, 2013 at 01:58 PM. + Last updated on Jul 30, 2013 at 03:26 PM. </div> </body> </html> \ No newline at end of file diff --git a/search.html b/search.html index 996f77a..44c97ed 100644 --- a/search.html +++ b/search.html @@ -146,7 +146,7 @@ <h3>Emma Links</h3> <div id="inquiry"> <h3>Interested in Emma?</h3> - <p>Emma's email marketing makes communicating simple and stylish. <a href="/get-started/inquire" title="Get started today.">Get started today</a>.</p> + <p>Emma's email marketing makes communicating simple and stylish. <a href="http://myemma.com/get-started/inquire" title="Get started today.">Get started today</a>.</p> </div> </div> </div> @@ -154,7 +154,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 29, 2013 at 01:58 PM. + Last updated on Jul 30, 2013 at 03:26 PM. </div> </body> </html> \ No newline at end of file diff --git a/searchindex.js b/searchindex.js index b9b93f1..0638cd7 100644 --- a/searchindex.js +++ b/searchindex.js @@ -1 +1 @@ -Search.setIndex({envversion:42,terms:{all:[0,1,4,5,8,9,10,11,12,13,14],code:[0,1,6,3],change_typ:8,queri:[0,2,4],month:[0,5,9,14],four:[0,5],mile:0,least:0,follow:[0,1,4,5,7,8,9,11,13],link_target:[5,9],privat:1,specif:[8,9,4],friendli:5,send:[1,3,4,5,8,9],program:1,customer_share_click:5,those:[1,12,5],group_upd:[12,4],sent:[5,8,12,9,14],curl_clos:[1,6,3],certain:12,brown:[7,8],digit:5,everi:0,string:[0,4,5,7,8,9,10,12,13,14],fals:[1,3,4,5,6,7,8,9,10,13,14],end:[2,8],mailing_status:9,trigger_id:14,webview_share_click:5,affect:[7,8],member_add:[12,4],create_mail:9,new_boolean:10,foo:0,level:1,group_delet:[12,4],list:[0,1,2,4,5,7,8,9,10,11,12,13,14],upload:8,ryan:8,"try":8,item:2,plaintext_onli:[9,14],div:[4,5,7,8,9,10,13,14],survey_id:14,setup:1,pleas:[1,8,11,9],prevent:2,work:[1,4],ten:0,sync:10,sign:[0,5,8,4],past:1,second:[0,7,14],field_creat:[12,4],further:1,shortcut_nam:10,click:[0,4,5,7,8,14],append:2,even:10,what:1,hide:[4,5,7,8,9,10,13,14],appear:[1,8],clock:1,section:1,advanc:0,current:[1,8,12,9],delet:[1,4,7,8,9,10,13,14],"new":[1,4,5,7,8,9,10,11,13,14],net:[1,2,6,3],delivery_t:8,ever:1,method:[5,8,13,4,9],can:[0,1,2,4,5,7,8,9,11,12,13],widget:[7,10,8,9,13],full:1,hash:0,datematch:0,displai:10,variat:9,gener:[0,8,12,14],onli:[5,8],here:[0,1,3,5,6,8],json:[0,1,3,4,6,7],bodi:[8,9],let:[1,4,10],address:[0,1,8,6,9],along:8,sinc:8,valu:[0,5,7,8,10,11],field_upd:[12,4],search:[8,9],survei:14,sender:[9,14],larger:2,queue:5,prior:9,action:[0,8],chang:[8,4],overrid:8,campaign:5,newbi:5,appli:[7,14],prefer:0,young:1,myemma:[4,5,7,8,9,13],filenam:8,customer_shar:5,"boolean":[1,5,7,8,9,10,13,14],curlopt_postfield:[1,3],total:5,jone:[7,5,8,13],select:[1,10],newslett:[7,8,13],describ:7,would:[0,1],commun:1,from_group_id:13,regist:4,two:[0,5],coverag:1,next:[0,1],create_webhook:4,few:[5,8],call:[8,4],criteria:7,member_add_to_group:[12,4],type:[1,3,4,5,6,7,10,9,14],until:2,more:[0,4,7,8,9,13],peopl:5,relat:[1,8,11,9],about:[10,8,12,4,9],notic:8,thide:[4,5,7,8,9,10,13,14],flag:[5,7,8,10,9,14],exce:2,indic:8,examin:1,particular:[1,4,5,8,10,12,9],in_progress:5,curl_getinfo:[1,6,3],origin:9,must:[0,7,8,13,10],none:9,endpoint:[1,4,5,7,8,9,10,13,14],join:[0,7],hour:0,der:1,member_sinc:[0,5,7,8,9,13],uniqu:5,histori:8,soup:7,remain:[0,9],archiv:[5,9],member_optout:[12,4],drill:5,control:[1,11,9],give:5,process:8,forward_mailing_id:5,email_domain:[0,5],share:[0,5,8,4],accept:[0,5,7,8,9,10,11,13,14],total_click:5,tag:[8,11,9],want:[1,12,13,5],opt_in_url:8,occur:[7,12],some_numeric_field:0,delai:14,alwai:0,webhook_event_id:4,cours:1,multipl:[10,8],first_nam:[1,3,5,7,8,9,10,11,13,14],started_or_finish:[9,14],anoth:[9,13],get:[1,4,5,7,8,9,10,13,14],message_open:[12,4],html_bodi:[9,14],share_statu:5,push_offset:14,del_statu:5,tild:5,num_members_upd:8,simpl:0,chri:9,pizza:[7,8],map:0,birthdai:[10,14],referenc:7,sundai:0,jacqu:1,membership:13,taco:[7,5,8,9,13],mai:12,xxxx:6,associ:[1,8,9,4,5],grow:1,welcom:11,add_onli:8,"short":0,json_encod:[1,3],optout:[5,8,13],num_dupl:8,favorit:10,correspond:[0,1],greet:11,predic:1,issu:[1,10],"12t11":[7,5,8,9,13],combin:7,allow:[0,7,8],some_zipcode_field:0,signed_up:5,order:[5,10],michel:[8,9],mailing_nam:5,checkbox:10,fields_upd:8,over:2,becaus:12,buyer:[7,8,9,13],comma:[9,13],is_dis:14,vari:8,paramet:[2,4,5,7,8,9,10,13,14],widget_typ:10,style:[0,4,5,7,8,9,10,13,14],monitor:1,how:[7,1,2,4],fix:1,import_start:8,better:[13,14],platform:1,pend:[1,9],mailing_list:9,onc:9,hidden:13,main:1,might:[1,4],link_nam:[5,9],them:[8,9],messag:[4,5,8,11,9,14],"return":[0,1,4,5,7,8,9,10,12,13,14],greater:[0,8],thei:[0,9],food:10,timestamp:[0,5,12,9,10],spell:4,nashvil:1,dai:0,auth:1,instead:[12,2,8],now:5,down:5,term:1,alex:9,name:[0,4,5,7,8,9,10,11,13,14],edit:[7,1,14,10],troubleshoot:1,drop:1,authent:[1,6,4,3],successufulli:4,separ:[1,9,13],each:[1,2,5,9,12,11,13],found:[8,9,4,14],updat:[4,7,8,9,10,13,14],denni:1,status:[8,9],domain:0,weight:[4,5,7,8,9,10,13,14],resum:9,individu:[5,8],hard:[0,5],last_nam:[1,3,5,7,8,9,10,11,13,14],"05t15":5,connect:[1,6,3],doug:1,our:[1,11,12,4,14],happen:[1,4,5],commiss:1,short_display_nam:10,special:[0,7,8,13],out:[0,1,4,5,7,8,10,13],variabl:[1,6,3],message_shar:[12,4],network:[5,12],private_api_kei:[1,6,3],check_multipl:10,content:[1,11,6,9,3],rel:0,print:6,correct:10,integr:1,benjamin:[1,8],qualifi:11,insid:1,workflow:8,contain:[0,5,7,13,10,9],given:[0,8,9,4],standard:[5,9],status_from:8,base:[1,8,5],recipient_search:9,dictionari:8,put:[4,7,8,9,10,13,14],span:[4,5,7,8,9,10,13,14],"13t23":[7,5,8],refer:[5,7,8,13,10,9],visit:11,could:1,omit:5,success:[1,3,7,8,9,13],filter:[7,1],search_id:7,pagin:1,member_id:[5,7,8,9,12,13],summari:[1,5],assign:9,first:[0,1,10,5],oper:[7,1,14],rang:5,notifi:[1,12],directli:0,curlopt_ssl_verifyp:[1,6,3],curl_init:[1,6,3],number:[5,2,13,3,10],placehold:1,date:[5,8,14,10],unlik:9,alreadi:[10,8,9,13],done:8,plaintext_pref:[7,8,9,13],oppos:8,open:[0,3,4,5,6,7,8],payload:4,fanci:5,size:2,differ:0,"long":10,script:1,data:[1,10,4,3,5],system:[1,8,12,4,14],construct:[0,7,9],attach:11,outag:1,friend:11,curlinfo_http_cod:[1,6,3],shell:0,option:[0,5,7,8,9,10,13,14],especi:8,signup:[0,1,4,5,8,14],copi:[8,13],member_upd:[12,4],specifi:[0,2,7,8,10,11,9,14],curl_exec:[1,6,3],curlopt_httphead:[1,6,3],member_signup:[12,4],create_search:7,part:[0,9],enclos:11,initi:[10,9],than:[0,1,2,3,12,13],with_plaintext:9,"02t10":[5,8],"02t11":[5,8],"02t13":5,nathan:8,whenev:8,provid:[1,5,8,12,9,14],remov:[8,13,4],mailing_start:4,rate:2,structur:7,charact:9,greg:8,trackabl:11,were:5,minut:0,danc:1,error_count:[7,8,9,13],pre:[4,5,7,8,9,10,13,14],cleaner:1,sai:0,share_id:5,signup_form_id:[0,8,12,9,14],plaintext:[5,9,14],pass:[1,8,3],ani:[0,1,2,7,8,9],have:[0,1,5,8,12,9],tabl:5,need:1,seen:5,"null":[7,8,13,10,9,14],kevin:[9,14],signup_mail:0,caus:14,built:1,inform:[1,4,6,8,9,10,13],check:[8,6,9],offer:1,object_id:14,note:[1,8,9,4],also:[0,4,5,7,8,9,11,13],exampl:[0,1,8,7,5],take:[0,8,4],which:[0,1,4,8,10,12,9,14],some_number_field:0,datacent:[9,14],singl:[0,1,3,4,5,8,10,12,13],excit:11,sure:1,delete_memb:13,normal:9,parent_mail:14,recipient_count:[5,9,14],previou:9,field_id:[10,12,14],last_run_at:7,most:14,rsvp_email:8,"class":[4,5,7,8,9,10,13,14],don:1,member_group_id:[8,9,13],mcconnel:[9,14],url:[1,3,4,5,6,12],mailing_finish:[12,4],clear:10,request:[1,2,3],doe:[0,5,7,8,9,10,13],member_status_upd:[12,4],declar:9,tech:4,determin:1,add:[1,8,13,3],dataset:10,dow:0,recipi:9,"6db0cc7e6fdb2da589b65f29d90c96b6":9,show:[4,5,7,8,9,10,11,13,14],text:[10,11,12],radiu:0,syntax:[1,9],radio:10,font:[4,5,7,8,9,10,13,14],fine:9,find:[1,6,5],status_to:8,toast:[7,5,8,13],access:[1,5],giant:12,just:[0,1,9],pretti:8,column_ord:10,"true":[0,1,2,3,4,6,7,8,9,10,13,14],explain:[0,1],winner:9,activ:[1,5,7,8,13,9],figur:1,should:[1,2,3,7,8,11,9],templat:[11,14],share_count:5,count:[1,2,3,5],variou:[8,13],confirmed_opt_in:[7,8,9,13],familiar:1,express:0,account:[1,4,5,7,8,10,13,14],repo:1,cannot:[8,9,4],progress:9,report:[10,8],requir:[1,7,8,10,11,9],object:[1,13,5],favorite_food:[5,7,8,13,10,9],bar:0,organ:1,include_archiv:[5,9],"public":1,"default":[5,11,13,4,9],ref_member_id:5,message_share_click:[12,4],through:[1,8,4],where:[0,1,8,11,7],view:1,respond:8,set:[0,1,2,3,6,8,9,12,13],link_id:[0,5,12,9,14],see:[7,1,8],result:[0,1,2,5,8,9],respons:[10,8,9,13],fail:[5,9,4],themselv:2,member_field:[0,7],xxxxx:6,subject:[8,12,9,14],statu:[1,4,5,7,8,9,13],fancyonion:11,kei:[0,1,8,11,4],is_schedul:9,message_forward:[12,4],databas:8,someth:1,last_modified_at:[7,8,9,13],addresse:5,written:1,between:[0,7,2],clicked_uniqu:5,"import":[1,8,4,10],subscript:[1,3],entiti:1,curlopt_url:[1,6,3],email:[0,1,5,7,8,9,13],wide:14,extend:1,numer:10,http404:[4,5,7,8,9,10,13,14],job:13,entir:[0,8],share_click:5,to_group_id:13,curlopt_returntransf:[1,6,3],curl_setopt:[1,6,3],member_remove_from_group:[12,4],send_start:[0,9,14],protect:1,accident:2,last:[0,5,10],delimit:5,lentil:7,pertain:5,message_click:[12,4],curlopt_post:[1,3],audienc:[1,8,9],mang:0,improv:1,http500:14,seri:5,com:[4,5,6,7,8,9,11,13],zip_code_field:0,"03t15":[7,5,8,13],point:1,toni:[7,8],overview:5,period:1,colon:[7,11],optout_count:[7,8,9,13],suppli:9,cancel:9,tuesdai:0,duplic:5,quit:[5,8],user_id:4,recur:14,headsup:9,addition:[1,2],due:5,been:[1,8,10,5],mark:[8,9],whom:9,tshow:[4,5,7,8,9,10,13,14],trigger:[5,7,8,13,10,9],unsubscrib:0,treat:8,interest:[10,4],basic:[0,1,4,8,13,14],monthli:[7,8,13],addit:[8,9,13],member_delet:[12,4],hesit:1,blob:4,email_us:[0,5],mailing_mailing_id:5,mailing_id:[0,5,8,12,9,14],fire:[8,4,14],xxx:[1,3],rubi:1,argument:[0,5],bulk:[1,8],input:1,present:7,statist:8,"case":[1,8],look:[1,14,10],frozen:9,durat:9,email_error:[7,8,9,13],defin:[0,10,8,9],"while":0,smith:[7,5,8,9,13],outcom:5,abov:[0,1,8,7],error:[1,3,6,8,10,13],veen:1,loop:8,opt:[0,4,5,7,8,13],readi:9,deliv:5,recipient_group:9,equal:0,itself:0,new_statu:12,webhook_id:4,account_id:[1,3,4,5,6,7,8,9,10,12,13,14],develop:1,recipient_memb:9,perform:8,make:[1,12,6,10],belong:[0,8,4],same:[8,4],easier:12,member:[10,9,13],python:1,html:9,split:9,opt_in_messag:8,complet:[1,3,4,6,8,9],week:0,finish:[5,4],http:[1,2,3,4,5,6,11,9],href:[4,5,7,8,9,10,13,14],nest:0,someon:4,rais:[4,5,7,8,9,10,13,14],winner_id:9,php:1,studi:1,recent:[1,8],kept:11,center:0,min:5,well:[1,5],inherit:9,person:9,mailing_typ:[9,14],without:[0,1],command:1,thi:[0,1,4,5,7,8,9,10,12,13,14],undefin:0,http_code:[1,6,3],latest:11,identifi:8,paus:9,execut:[1,3],less:0,resp:[4,5,7,8,9,10,13,14],"_post":[1,3],against:0,aspect:13,recipient_email:9,source_filenam:8,yet:5,languag:1,"12t09":[7,8],display_nam:10,easi:[1,12,10],"01t00":8,had:0,littl:1,blog:4,rsvp_name:8,other:[1,8,9,3,5],curlopt_userpwd:[1,6,3],import_finish:[8,12,4],schedul:9,els:[1,6,3],save:7,match:[0,7],build:1,sanit:1,applic:[1,6,3],around:1,handl:1,disposit:1,crud:[8,13,14],print_r:[6,3],mailing_statu:[9,14],know:[1,4,5],background:13,parent_mailing_id:[9,14],bit:1,insert:11,emma:[7,5,8,9,13],like:1,onion:11,deprec:4,arbitrari:8,manual:9,integ:[1,8,14,10,5],collect:1,api:8,necessari:8,either:[0,5,7],bunch:0,output:9,group_id:[1,8,12,3],soft:[0,5],manag:[0,1,13,4],import_id:[8,12],www:[5,9],old:7,deal:[8,13],captur:1,arrai:[0,1,3,5,6,7,8,9,10,12,13,14],some:[1,11,5],back:8,field_delet:[12,4],opt_in_subject:8,intern:10,sampl:[1,4,5,7,8,9,10,13,14],elaps:[2,9],unless:1,deleted_at:[7,8,13,10,9,14],some_string_field:0,librari:11,woodcock:1,emmarubi:1,bounce_count:[7,8,9,13],emmapython:1,public_kei:4,deliveri:5,broad:12,per:5,send_finish:[9,14],larg:[0,2],condit:7,three:9,network_cod:12,localhost:9,emmaphp:1,with_html_bodi:9,who:[0,5,8],bold:[4,5,7,8,9,10,13,14],event_typ:14,inspect:1,usag:[1,8],monsewicz:1,num_members_ad:8,fulli:11,from:[1,4,8,9,13,14],post:[1,3,4,7,8,9,10,13,14],group_creat:[12,4],gladi:[7,5,8,13],hurst:1,actual:5,zip:0,groups_upd:8,column:10,page:[1,2],includ:[1,5,7,8,9,10,13],webview:9,mean:0,disabl:[9,14],block:[1,2],"29t13":[7,14],yyyi:5,own:[1,8],member_data:[1,3],glob:0,bounc:[0,5],within:[0,8],encod:[9,4],delivery_typ:[5,8],compos:0,webview_shar:5,pair:11,field_typ:10,active_count:[7,8,9,13],public_webview_url:9,aben:1,pivot:5,your:[1,4,5,7,8,9,10,13],websit:11,fast:8,van:1,wai:[1,12],area:1,overus:2,group_nam:[8,12,13,9],support:[1,12],unique_click:5,iter:2,submit:1,custom:[5,8,11,10],avail:[0,11,4],start:[1,2,8,4],interfac:12,send_at:[9,14],exceed:2,"var":3,purged_at:[7,8,9,13,14],interv:14,fork:1,head:[1,6,9,3],form:[1,3,4,6,8,10,14],enough:2,forc:1,forward:[0,5,8,9,4],"31st":0,group_typ:[8,9,13],push_offset_unit:14,link:[0,4,5,11,9,14],line:[1,5],realli:1,opt_out_url:8,archived_t:[9,14],info:4,pull:[1,2],made:1,possibl:[5,8,12],whether:8,maximum:2,tell:12,http403:9,record:[0,7,8],below:[0,1,8,12],http400:[7,8,9],limit:[5,2,8,9],some_array_field:0,otherwis:[1,8,10],start_t:14,mta:5,expect:1,notif:9,creat:[4,5,7,13,10,9,14],"int":5,retriev:[7,1,2,8,9],year:[0,5,9,14],repres:5,exist:[0,4,5,7,8,10,13],behavior:11,bob:[7,5],curl:[1,6],enlist:8,portland:1,probabl:14,echo:[1,3],successfulli:[5,8,9],mailing_subject:12,grp:13,extract:11,user:[0,1,8,9,13],when:[8,12,4,9],detail:[1,4,7,8,9,10,13],invalid:[7,8,9],event:[4,7,8,13,12,9,14],valid:[5,8,9,13],futur:1,num_skip:8,test:[5,6,7,13,9,14],ignor:8,you:[0,1,2,4,5,7,8,9,10,11,12,13],emmasdk:1,member_status_id:[7,5,8,9,13],public_api_kei:[1,6,3],stat:[5,9],claus:[0,7],event_nam:[12,4],e2ma:[1,2,6,3],error_messag:8,param:[9,4],app_messag:[1,3],ella:8,link_ord:[5,9],receiv:[0,2,5,8,12,9],heads_up_email:9,longer:9,home:11,confirm:8,descript:[4,14],ohmyemma:1,portion:0,opted_out:5,time:[1,2,8,13,5],reply_to:[9,14],resource_url:12,inc:1,hello:[11,9,14]},objtypes:{"0":"http:get","1":"http:put","2":"http:post","3":"http:delete"},objnames:{"0":["http","get","HTTP get"],"1":["http","put","HTTP put"],"2":["http","post","HTTP post"],"3":["http","delete","HTTP delete"]},filenames:["member_search","index","pagination","php_signup_example","api/external/webhooks","api/external/response","php_get_member_example","api/external/searches","api/external/members","api/external/mailings","api/external/fields","placeholders","webhooks","api/external/groups","api/external/triggers"],titles:["Search Syntax","Emma API","Pagination","PHP Signup Example","Webhooks","Response","PHP Get Member By Email Example","Searches","Members","Mailings","Fields","Placeholder Syntax","Webhook Usage","Groups","Triggers"],objects:{"":{"/#account_id/members/#member_id/groups/remove":[8,1,1,"put--#account_id-members-#member_id-groups-remove"],"/#account_id/mailings/#mailing_id/winner/#winner_id":[9,2,1,"post--#account_id-mailings-#mailing_id-winner-#winner_id"],"/#account_id/response/#mailing_id/in_progress":[5,0,1,"get--#account_id-response-#mailing_id-in_progress"],"/#account_id/members/groups/remove":[8,1,1,"put--#account_id-members-groups-remove"],"/#account_id/mailings/#mailing_id/searches":[9,0,1,"get--#account_id-mailings-#mailing_id-searches"],"/#account_id/fields":[10,2,1,"post--#account_id-fields"],"/#account_id/members/#group_id/copy":[8,1,1,"put--#account_id-members-#group_id-copy"],"/#account_id/members/signup":[8,2,1,"post--#account_id-members-signup"],"/#account_id/members/status":[8,1,1,"put--#account_id-members-status"],"/#account_id/response/#mailing_id/shares/overview":[5,0,1,"get--#account_id-response-#mailing_id-shares-overview"],"/#account_id/webhooks/events":[4,0,1,"get--#account_id-webhooks-events"],"/#account_id/members/#member_id/optout":[8,0,1,"get--#account_id-members-#member_id-optout"],"/#account_id/webhooks":[4,3,1,"delete--#account_id-webhooks"],"/#account_id/fields/#field_id":[10,3,1,"delete--#account_id-fields-#field_id"],"/#account_id/response/#mailing_id":[5,0,1,"get--#account_id-response-#mailing_id"],"/#account_id/groups/#member_group_id/members/remove":[13,3,1,"delete--#account_id-groups-#member_group_id-members-remove"],"/#account_id/searches":[7,2,1,"post--#account_id-searches"],"/#account_id/members/imports":[8,0,1,"get--#account_id-members-imports"],"/#account_id/forwards/#mailing_id/#member_id":[9,2,1,"post--#account_id-forwards-#mailing_id-#member_id"],"/#account_id/response/#mailing_id/customer_share_clicks":[5,0,1,"get--#account_id-response-#mailing_id-customer_share_clicks"],"/#account_id/mailings/#mailing_id/messages/#member_id":[9,0,1,"get--#account_id-mailings-#mailing_id-messages-#member_id"],"/#account_id/members/#member_id/mailings":[8,0,1,"get--#account_id-members-#member_id-mailings"],"/#account_id/groups/#from_group_id/#to_group_id/members/copy":[13,1,1,"put--#account_id-groups-#from_group_id-#to_group_id-members-copy"],"/#account_id/triggers":[14,2,1,"post--#account_id-triggers"],"/#account_id/triggers/#trigger_id":[14,3,1,"delete--#account_id-triggers-#trigger_id"],"/#account_id/members/delete":[8,1,1,"put--#account_id-members-delete"],"/#account_id/mailings/#mailing_id/groups":[9,0,1,"get--#account_id-mailings-#mailing_id-groups"],"/#account_id/response/#mailing_id/forwards":[5,0,1,"get--#account_id-response-#mailing_id-forwards"],"/#account_id/members/#member_id":[8,3,1,"delete--#account_id-members-#member_id"],"/#account_id/triggers/#trigger_id/mailings":[14,0,1,"get--#account_id-triggers-#trigger_id-mailings"],"/#account_id/searches/#search_id/members":[7,0,1,"get--#account_id-searches-#search_id-members"],"/#account_id/members/status/:status_from/to/:status_to":[8,1,1,"put--#account_id-members-status--status_from-to--status_to"],"/#account_id/response/#mailing_id/sends":[5,0,1,"get--#account_id-response-#mailing_id-sends"],"/#account_id/members":[8,3,1,"delete--#account_id-members"],"/#account_id/members/email/:email":[8,0,1,"get--#account_id-members-email--email"],"/#account_id/response/#mailing_id/links":[5,0,1,"get--#account_id-response-#mailing_id-links"],"/#account_id/searches/#search_id":[7,3,1,"delete--#account_id-searches-#search_id"],"/#account_id/members/imports/#import_id/members":[8,0,1,"get--#account_id-members-imports-#import_id-members"],"/#account_id/fields/#field_id/clear":[10,2,1,"post--#account_id-fields-#field_id-clear"],"/#account_id/groups/#member_group_id/members":[13,3,1,"delete--#account_id-groups-#member_group_id-members"],"/#account_id/members/imports/#import_id":[8,0,1,"get--#account_id-members-imports-#import_id"],"/#account_id/response":[5,0,1,"get--#account_id-response"],"/#account_id/response/#mailing_id/opens":[5,0,1,"get--#account_id-response-#mailing_id-opens"],"/#account_id/members/imports/delete":[8,3,1,"delete--#account_id-members-imports-delete"],"/#account_id/mailings":[9,0,1,"get--#account_id-mailings"],"/#account_id/mailings/cancel/#mailing_id":[9,3,1,"delete--#account_id-mailings-cancel-#mailing_id"],"/#account_id/mailings/validate":[9,2,1,"post--#account_id-mailings-validate"],"/#account_id/response/#mailing_id/deliveries":[5,0,1,"get--#account_id-response-#mailing_id-deliveries"],"/#account_id/mailings/#mailing_id/members":[9,0,1,"get--#account_id-mailings-#mailing_id-members"],"/#account_id/response/#share_id/customer_share":[5,0,1,"get--#account_id-response-#share_id-customer_share"],"/#account_id/webhooks/#webhook_id":[4,3,1,"delete--#account_id-webhooks-#webhook_id"],"/#account_id/members/add":[8,2,1,"post--#account_id-members-add"],"/#account_id/members/email/optout/:email":[8,1,1,"put--#account_id-members-email-optout--email"],"/#account_id/response/#mailing_id/optouts":[5,0,1,"get--#account_id-response-#mailing_id-optouts"],"/#account_id/response/#mailing_id/shares":[5,0,1,"get--#account_id-response-#mailing_id-shares"],"/#account_id/groups/#member_group_id":[13,3,1,"delete--#account_id-groups-#member_group_id"],"/#account_id/mailings/#mailing_id":[9,3,1,"delete--#account_id-mailings-#mailing_id"],"/#account_id/members/#member_id/groups":[8,3,1,"delete--#account_id-members-#member_id-groups"],"/#account_id/groups":[13,2,1,"post--#account_id-groups"],"/#account_id/response/#mailing_id/clicks":[5,0,1,"get--#account_id-response-#mailing_id-clicks"],"/#account_id/mailings/#mailing_id/headsup":[9,0,1,"get--#account_id-mailings-#mailing_id-headsup"],"/#account_id/response/#mailing_id/signups":[5,0,1,"get--#account_id-response-#mailing_id-signups"],"/#account_id/response/#mailing_id/customer_shares":[5,0,1,"get--#account_id-response-#mailing_id-customer_shares"]}},titleterms:{oper:0,quickstart:1,creat:12,"boolean":0,overview:[0,1,11,12],interv:0,share:12,syntax:[0,11],api:1,wrapper:1,respons:5,open:12,click:12,categori:1,statu:12,from:12,delet:12,todo:11,messag:12,member:[8,6,12],field:[10,12],add:12,trigger:14,call:1,forward:12,mail:[12,9],document:1,email:6,updat:12,finish:12,get:6,webhook:[12,4],signup:[12,3],usag:12,search:[0,7],word:1,"import":12,date:0,group:[12,13],post:12,php:[6,3],data:12,addit:1,placehold:11,term:0,wise:1,optout:12,remov:12,predic:0,filter:0,exampl:[6,3],pagin:2,emma:1}}) \ No newline at end of file +Search.setIndex({envversion:42,terms:{all:[0,1,4,5,8,9,10,11,12,13,14],code:[0,1,6,3],change_typ:8,queri:[0,2,4],month:[0,5,9,14],four:[0,5],mile:0,least:0,follow:[0,1,4,5,7,8,9,11,13],link_target:[5,9],privat:1,specif:[8,9,4],friendli:5,send:[1,3,4,5,8,9],program:1,customer_share_click:5,those:[1,12,5],group_upd:[12,4],sent:[5,8,12,9,14],curl_clos:[1,6,3],certain:12,brown:[7,8],digit:5,everi:0,string:[0,4,5,7,8,9,10,12,13,14],fals:[1,3,4,5,6,7,8,9,10,13,14],end:[2,8],mailing_status:9,trigger_id:14,webview_share_click:5,affect:[7,8],member_add:[12,4],create_mail:9,new_boolean:10,foo:0,level:1,group_delet:[12,4],list:[0,1,2,4,5,7,8,9,10,11,12,13,14],upload:8,ryan:8,"try":8,item:2,plaintext_onli:[9,14],div:[4,5,7,8,9,10,13,14],survey_id:14,setup:1,pleas:[1,8,11,9],prevent:2,work:[1,4],ten:0,sync:10,sign:[0,5,8,4],past:1,second:[0,7,14],field_creat:[12,4],further:1,shortcut_nam:10,click:[0,4,5,7,8,14],append:2,even:10,what:1,hide:[4,5,7,8,9,10,13,14],appear:[1,8],clock:1,section:1,advanc:0,current:[1,8,12,9],delet:[1,4,7,8,9,10,13,14],"new":[1,4,5,7,8,9,10,11,13,14],net:[1,2,6,3],delivery_t:8,ever:1,method:[5,8,13,4,9],can:[0,1,2,4,5,7,8,9,11,12,13],widget:[7,10,8,9,13],full:1,hash:0,datematch:0,displai:10,variat:9,gener:[0,8,12,14],onli:[5,8],here:[0,1,3,5,6,8],json:[0,1,3,4,6,7],bodi:[8,9],let:[1,4,10],address:[0,1,8,6,9],along:8,sinc:8,valu:[0,5,7,8,10,11],field_upd:[12,4],search:[8,9],survei:14,sender:[9,14],larger:2,queue:5,prior:9,action:[0,8],chang:[8,4],overrid:8,campaign:5,newbi:5,appli:[7,14],prefer:0,young:1,myemma:[4,5,7,8,9,13],filenam:8,customer_shar:5,"boolean":[1,5,7,8,9,10,13,14],curlopt_postfield:[1,3],total:5,jone:[7,5,8,13],select:[1,10],newslett:[7,8,13],describ:7,would:[0,1],commun:1,from_group_id:13,regist:4,two:[0,5],coverag:1,next:[0,1],create_webhook:4,few:[5,8],call:[8,4],criteria:7,member_add_to_group:[12,4],type:[1,3,4,5,6,7,10,9,14],until:2,more:[0,4,7,8,9,13],peopl:5,relat:[1,8,11,9],about:[10,8,12,4,9],notic:8,thide:[4,5,7,8,9,10,13,14],flag:[5,7,8,10,9,14],exce:2,indic:8,examin:1,particular:[1,4,5,8,10,12,9],in_progress:5,curl_getinfo:[1,6,3],origin:9,must:[0,7,8,13,10],none:9,endpoint:[1,4,5,7,8,9,10,13,14],join:[0,7],hour:0,der:1,member_sinc:[0,5,7,8,9,13],uniqu:5,histori:8,soup:7,remain:[0,9],archiv:[5,9],member_optout:[12,4],drill:5,control:[1,11,9],give:5,process:8,forward_mailing_id:5,email_domain:[0,5],share:[0,5,8,4],accept:[0,5,7,8,9,10,11,13,14],total_click:5,tag:[8,11,9],want:[1,12,13,5],opt_in_url:8,occur:[7,12],some_numeric_field:0,delai:14,alwai:0,webhook_event_id:4,cours:1,multipl:[10,8],first_nam:[1,3,5,7,8,9,10,11,13,14],started_or_finish:[9,14],anoth:[9,13],get:[1,4,5,7,8,9,10,13,14],message_open:[12,4],html_bodi:[9,14],share_statu:5,push_offset:14,del_statu:5,tild:5,num_members_upd:8,simpl:0,chri:9,pizza:[7,8],map:0,birthdai:[10,14],referenc:7,sundai:0,jacqu:1,membership:13,taco:[7,5,8,9,13],mai:12,xxxx:6,associ:[1,8,9,4,5],grow:1,welcom:11,add_onli:8,"short":0,json_encod:[1,3],optout:[5,8,13],num_dupl:8,favorit:10,correspond:[0,1],greet:11,predic:1,issu:[1,10],"12t11":[7,5,8,9,13],combin:7,allow:[0,7,8],some_zipcode_field:0,signed_up:5,order:[5,10],michel:[8,9],mailing_nam:5,checkbox:10,fields_upd:8,over:2,becaus:12,buyer:[7,8,9,13],comma:[9,13],is_dis:14,vari:8,paramet:[2,4,5,7,8,9,10,13,14],widget_typ:10,style:[0,4,5,7,8,9,10,13,14],monitor:1,how:[7,1,2,4],fix:1,import_start:8,better:[13,14],platform:1,pend:[1,9],mailing_list:9,curlopt_ssl_verifyp:[1,6,3],hidden:13,main:1,might:[1,4],link_nam:[5,9],them:[8,9],messag:[4,5,8,11,9,14],"return":[0,1,4,5,7,8,9,10,12,13,14],greater:[0,8],thei:[0,9],food:10,timestamp:[0,5,12,9,10],spell:4,nashvil:1,dai:0,auth:1,instead:[12,2,8],now:5,down:5,term:1,alex:9,name:[0,4,5,7,8,9,10,11,13,14],edit:[7,1,14,10],troubleshoot:1,drop:1,authent:[1,6,4,3],successufulli:4,separ:[1,9,13],each:[1,2,5,9,12,11,13],found:[8,9,4,14],updat:[4,7,8,9,10,13,14],denni:1,status:[8,9],domain:0,weight:[4,5,7,8,9,10,13,14],resum:9,individu:[5,8],hard:[0,5],last_nam:[1,3,5,7,8,9,10,11,13,14],"05t15":5,connect:[1,6,3],year:[0,5,9,14],our:[1,11,12,4,14],happen:[1,4,5],commiss:1,short_display_nam:10,special:[0,7,8,13],out:[0,1,4,5,7,8,10,13],variabl:[1,6,3],message_shar:[12,4],network:[5,12],private_api_kei:[1,6,3],check_multipl:10,content:[1,11,6,9,3],rel:0,print:6,correct:10,integr:1,benjamin:[1,8],qualifi:11,insid:1,workflow:8,contain:[0,5,7,13,10,9],given:[0,8,9,4],standard:[5,9],status_from:8,base:[1,8,5],recipient_search:9,dictionari:8,put:[4,7,8,9,10,13,14],"30t15":[7,14],"13t23":[7,5,8],refer:[5,7,8,13,10,9],visit:11,could:1,omit:5,success:[1,3,7,8,9,13],filter:[7,1],search_id:7,pagin:1,member_id:[5,7,8,9,12,13],summari:[1,5],assign:9,first:[0,1,10,5],oper:[7,1,14],rang:5,notifi:[1,12],directli:0,onc:9,curl_init:[1,6,3],number:[5,2,13,3,10],placehold:1,date:[5,8,14,10],unlik:9,alreadi:[10,8,9,13],done:8,plaintext_pref:[7,8,9,13],oppos:8,open:[0,3,4,5,6,7,8],payload:4,fanci:5,size:2,differ:0,"long":10,script:1,data:[1,10,4,3,5],system:[1,8,12,4,14],construct:[0,7,9],attach:11,outag:1,friend:11,curlinfo_http_cod:[1,6,3],shell:0,option:[0,5,7,8,9,10,13,14],especi:8,signup:[0,1,4,5,8,14],copi:[8,13],member_upd:[12,4],specifi:[0,2,7,8,10,11,9,14],curl_exec:[1,6,3],curlopt_httphead:[1,6,3],member_signup:[12,4],create_search:7,part:[0,9],enclos:11,initi:[10,9],than:[0,1,2,3,12,13],with_plaintext:9,"02t10":[5,8],"02t11":[5,8],"02t13":5,nathan:8,whenev:8,provid:[1,5,8,12,9,14],remov:[8,13,4],mailing_start:4,rate:2,structur:7,charact:9,greg:8,trackabl:11,were:5,minut:0,danc:1,error_count:[7,8,9,13],pre:[4,5,7,8,9,10,13,14],cleaner:1,sai:0,share_id:5,signup_form_id:[0,8,12,9,14],plaintext:[5,9,14],pass:[1,8,3],ani:[0,1,2,7,8,9],have:[0,1,5,8,12,9],tabl:5,need:1,seen:5,"null":[7,8,13,10,9,14],kevin:[9,14],signup_mail:0,caus:14,built:1,inform:[1,4,6,8,9,10,13],check:[8,6,9],offer:1,object_id:14,note:[1,8,9,4],also:[0,4,5,7,8,9,11,13],exampl:[0,1,8,7,5],take:[0,8,4],which:[0,1,4,8,10,12,9,14],some_number_field:0,datacent:[9,14],singl:[0,1,3,4,5,8,10,12,13],excit:11,sure:1,delete_memb:13,normal:9,parent_mail:14,recipient_count:[5,9,14],previou:9,field_id:[10,12,14],last_run_at:7,most:14,rsvp_email:8,"class":[4,5,7,8,9,10,13,14],don:1,member_group_id:[8,9,13],mcconnel:[9,14],url:[1,3,4,5,6,12],mailing_finish:[12,4],clear:10,request:[1,2,3],doe:[0,5,7,8,9,10,13],member_status_upd:[12,4],declar:9,tech:4,determin:1,add:[1,8,13,3],dataset:10,dow:0,recipi:9,"6db0cc7e6fdb2da589b65f29d90c96b6":9,show:[4,5,7,8,9,10,11,13,14],text:[10,11,12],radiu:0,syntax:[1,9],radio:10,font:[4,5,7,8,9,10,13,14],fine:9,find:[1,6,5],status_to:8,toast:[7,5,8,13],access:[1,5],giant:12,just:[0,1,9],pretti:8,column_ord:10,"true":[0,1,2,3,4,6,7,8,9,10,13,14],explain:[0,1],winner:9,activ:[1,5,7,8,13,9],figur:1,should:[1,2,3,7,8,11,9],templat:[11,14],share_count:5,count:[1,2,3,5],variou:[8,13],confirmed_opt_in:[7,8,9,13],familiar:1,express:0,account:[1,4,5,7,8,10,13,14],repo:1,cannot:[8,9,4],progress:9,report:[10,8],requir:[1,7,8,10,11,9],object:[1,13,5],favorite_food:[5,7,8,13,10,9],bar:0,organ:1,include_archiv:[5,9],"public":1,"default":[5,11,13,4,9],ref_member_id:5,message_share_click:[12,4],through:[1,8,4],where:[0,1,8,11,7],view:1,respond:8,set:[0,1,2,3,6,8,9,12,13],link_id:[0,5,12,9,14],see:[7,1,8],result:[0,1,2,5,8,9],respons:[10,8,9,13],fail:[5,9,4],themselv:2,member_field:[0,7],xxxxx:6,subject:[8,12,9,14],statu:[1,4,5,7,8,9,13],fancyonion:11,kei:[0,1,8,11,4],is_schedul:9,message_forward:[12,4],databas:8,someth:1,last_modified_at:[7,8,9,13],addresse:5,written:1,between:[0,7,2],clicked_uniqu:5,"import":[1,8,4,10],subscript:[1,3],entiti:1,curlopt_url:[1,6,3],email:[0,1,5,7,8,9,13],wide:14,extend:1,numer:10,http404:[4,5,7,8,9,10,13,14],job:13,entir:[0,8],share_click:5,to_group_id:13,curlopt_returntransf:[1,6,3],curl_setopt:[1,6,3],member_remove_from_group:[12,4],send_start:[0,9,14],protect:1,accident:2,last:[0,5,10],delimit:5,lentil:7,pertain:5,message_click:[12,4],curlopt_post:[1,3],audienc:[1,8,9],mang:0,improv:1,http500:14,seri:5,com:[4,5,6,7,8,9,11,13],zip_code_field:0,"03t15":[7,5,8,13],point:1,toni:[7,8],overview:5,period:1,colon:[7,11],optout_count:[7,8,9,13],suppli:9,cancel:9,tuesdai:0,duplic:5,quit:[5,8],user_id:4,recur:14,headsup:9,addition:[1,2],due:5,been:[1,8,10,5],mark:[8,9],whom:9,tshow:[4,5,7,8,9,10,13,14],trigger:[5,7,8,13,10,9],unsubscrib:0,treat:8,interest:[10,4],basic:[0,1,4,8,13,14],monthli:[7,8,13],addit:[8,9,13],member_delet:[12,4],hesit:1,blob:4,email_us:[0,5],mailing_mailing_id:5,mailing_id:[0,5,8,12,9,14],fire:[8,4,14],xxx:[1,3],rubi:1,argument:[0,5],bulk:[1,8],input:1,present:7,statist:8,"case":[1,8],look:[1,14,10],frozen:9,durat:9,email_error:[7,8,9,13],defin:[0,10,8,9],"while":0,smith:[7,5,8,9,13],outcom:5,abov:[0,1,8,7],error:[1,3,6,8,10,13],veen:1,loop:8,opt:[0,4,5,7,8,13],readi:9,deliv:5,recipient_group:9,equal:0,itself:0,new_statu:12,webhook_id:4,account_id:[1,3,4,5,6,7,8,9,10,12,13,14],develop:1,recipient_memb:9,perform:8,make:[1,12,6,10],belong:[0,8,4],same:[8,4],easier:12,member:[10,9,13],python:1,html:9,split:9,opt_in_messag:8,complet:[1,3,4,6,8,9],week:0,finish:[5,4],http:[1,2,3,4,5,6,11,9],href:[4,5,7,8,9,10,13,14],nest:0,someon:4,rais:[4,5,7,8,9,10,13,14],winner_id:9,php:1,studi:1,recent:[1,8],kept:11,center:0,min:5,well:[1,5],inherit:9,person:9,mailing_typ:[9,14],without:[0,1],command:1,thi:[0,1,4,5,7,8,9,10,12,13,14],undefin:0,http_code:[1,6,3],latest:11,identifi:8,paus:9,execut:[1,3],less:0,resp:[4,5,7,8,9,10,13,14],"_post":[1,3],against:0,aspect:13,recipient_email:9,source_filenam:8,yet:5,languag:1,"12t09":[7,8],display_nam:10,easi:[1,12,10],"01t00":8,had:0,littl:1,blog:4,rsvp_name:8,other:[1,8,9,3,5],curlopt_userpwd:[1,6,3],import_finish:[8,12,4],schedul:9,els:[1,6,3],save:7,match:[0,7],build:1,sanit:1,applic:[1,6,3],around:1,handl:1,disposit:1,crud:[8,13,14],print_r:[6,3],mailing_statu:[9,14],know:[1,4,5],background:13,parent_mailing_id:[9,14],bit:1,insert:11,emma:[7,5,8,9,13],like:1,onion:11,deprec:4,arbitrari:8,manual:9,integ:[1,8,14,10,5],collect:1,api:8,necessari:8,either:[0,5,7],bunch:0,output:9,group_id:[1,8,12,3],soft:[0,5],manag:[0,1,13,4],import_id:[8,12],www:[5,9],old:7,deal:[8,13],captur:1,arrai:[0,1,3,5,6,7,8,9,10,12,13,14],some:[1,11,5],back:8,field_delet:[12,4],opt_in_subject:8,intern:10,sampl:[1,4,5,7,8,9,10,13,14],elaps:[2,9],unless:1,deleted_at:[7,8,13,10,9,14],some_string_field:0,librari:11,woodcock:1,emmarubi:1,bounce_count:[7,8,9,13],emmapython:1,public_kei:4,deliveri:5,broad:12,per:5,send_finish:[9,14],larg:[0,2],condit:7,three:9,network_cod:12,localhost:9,emmaphp:1,with_html_bodi:9,who:[0,5,8],bold:[4,5,7,8,9,10,13,14],event_typ:14,inspect:1,usag:[1,8],monsewicz:1,num_members_ad:8,fulli:11,from:[1,4,8,9,13,14],post:[1,3,4,7,8,9,10,13,14],group_creat:[12,4],gladi:[7,5,8,13],hurst:1,actual:5,zip:0,groups_upd:8,column:10,page:[1,2],includ:[1,5,7,8,9,10,13],span:[4,5,7,8,9,10,13,14],webview:9,mean:0,disabl:[9,14],block:[1,2],yyyi:5,own:[1,8],member_data:[1,3],glob:0,bounc:[0,5],within:[0,8],encod:[9,4],delivery_typ:[5,8],compos:0,webview_shar:5,pair:11,field_typ:10,active_count:[7,8,9,13],public_webview_url:9,aben:1,pivot:5,your:[1,4,5,7,8,9,10,13],websit:11,fast:8,van:1,wai:[1,12],area:1,overus:2,group_nam:[8,12,13,9],support:[1,12],unique_click:5,iter:2,submit:1,custom:[5,8,11,10],avail:[0,11,4],start:[1,2,8,4],interfac:12,send_at:[9,14],exceed:2,"var":3,purged_at:[7,8,9,13,14],interv:14,fork:1,head:[1,6,9,3],form:[1,3,4,6,8,10,14],enough:2,forc:1,forward:[0,5,8,9,4],"31st":0,group_typ:[8,9,13],push_offset_unit:14,link:[0,4,5,11,9,14],line:[1,5],realli:1,opt_out_url:8,archived_t:[9,14],info:4,pull:[1,2],made:1,possibl:[5,8,12],whether:8,maximum:2,tell:12,http403:9,record:[0,7,8],below:[0,1,8,12],http400:[7,8,9],limit:[5,2,8,9],some_array_field:0,otherwis:[1,8,10],start_t:14,mta:5,expect:1,notif:9,creat:[4,5,7,13,10,9,14],"int":5,retriev:[7,1,2,8,9],doug:1,repres:5,exist:[0,4,5,7,8,10,13],behavior:11,bob:[7,5],curl:[1,6],enlist:8,portland:1,probabl:14,echo:[1,3],successfulli:[5,8,9],mailing_subject:12,grp:13,extract:11,user:[0,1,8,9,13],when:[8,12,4,9],detail:[1,4,7,8,9,10,13],invalid:[7,8,9],event:[4,7,8,13,12,9,14],valid:[5,8,9,13],futur:1,num_skip:8,test:[5,6,7,13,9,14],ignor:8,you:[0,1,2,4,5,7,8,9,10,11,12,13],emmasdk:1,member_status_id:[7,5,8,9,13],public_api_kei:[1,6,3],stat:[5,9],claus:[0,7],event_nam:[12,4],e2ma:[1,2,6,3],error_messag:8,param:[9,4],app_messag:[1,3],ella:8,link_ord:[5,9],receiv:[0,2,5,8,12,9],heads_up_email:9,longer:9,home:11,confirm:8,descript:[4,14],ohmyemma:1,portion:0,opted_out:5,time:[1,2,8,13,5],reply_to:[9,14],resource_url:12,inc:1,hello:[11,9,14]},objtypes:{"0":"http:get","1":"http:put","2":"http:post","3":"http:delete"},objnames:{"0":["http","get","HTTP get"],"1":["http","put","HTTP put"],"2":["http","post","HTTP post"],"3":["http","delete","HTTP delete"]},filenames:["member_search","index","pagination","php_signup_example","api/external/webhooks","api/external/response","php_get_member_example","api/external/searches","api/external/members","api/external/mailings","api/external/fields","placeholders","webhooks","api/external/groups","api/external/triggers"],titles:["Search Syntax","Emma API","Pagination","PHP Signup Example","Webhooks","Response","PHP Get Member By Email Example","Searches","Members","Mailings","Fields","Placeholder Syntax","Webhook Usage","Groups","Triggers"],objects:{"":{"/#account_id/members/#member_id/groups/remove":[8,1,1,"put--#account_id-members-#member_id-groups-remove"],"/#account_id/mailings/#mailing_id/winner/#winner_id":[9,2,1,"post--#account_id-mailings-#mailing_id-winner-#winner_id"],"/#account_id/response/#mailing_id/in_progress":[5,0,1,"get--#account_id-response-#mailing_id-in_progress"],"/#account_id/members/groups/remove":[8,1,1,"put--#account_id-members-groups-remove"],"/#account_id/mailings/#mailing_id/searches":[9,0,1,"get--#account_id-mailings-#mailing_id-searches"],"/#account_id/fields":[10,2,1,"post--#account_id-fields"],"/#account_id/members/#group_id/copy":[8,1,1,"put--#account_id-members-#group_id-copy"],"/#account_id/members/signup":[8,2,1,"post--#account_id-members-signup"],"/#account_id/members/status":[8,1,1,"put--#account_id-members-status"],"/#account_id/response/#mailing_id/shares/overview":[5,0,1,"get--#account_id-response-#mailing_id-shares-overview"],"/#account_id/webhooks/events":[4,0,1,"get--#account_id-webhooks-events"],"/#account_id/members/#member_id/optout":[8,0,1,"get--#account_id-members-#member_id-optout"],"/#account_id/webhooks":[4,3,1,"delete--#account_id-webhooks"],"/#account_id/fields/#field_id":[10,3,1,"delete--#account_id-fields-#field_id"],"/#account_id/response/#mailing_id":[5,0,1,"get--#account_id-response-#mailing_id"],"/#account_id/groups/#member_group_id/members/remove":[13,3,1,"delete--#account_id-groups-#member_group_id-members-remove"],"/#account_id/searches":[7,2,1,"post--#account_id-searches"],"/#account_id/members/imports":[8,0,1,"get--#account_id-members-imports"],"/#account_id/forwards/#mailing_id/#member_id":[9,2,1,"post--#account_id-forwards-#mailing_id-#member_id"],"/#account_id/response/#mailing_id/customer_share_clicks":[5,0,1,"get--#account_id-response-#mailing_id-customer_share_clicks"],"/#account_id/mailings/#mailing_id/messages/#member_id":[9,0,1,"get--#account_id-mailings-#mailing_id-messages-#member_id"],"/#account_id/members/#member_id/mailings":[8,0,1,"get--#account_id-members-#member_id-mailings"],"/#account_id/groups/#from_group_id/#to_group_id/members/copy":[13,1,1,"put--#account_id-groups-#from_group_id-#to_group_id-members-copy"],"/#account_id/triggers":[14,2,1,"post--#account_id-triggers"],"/#account_id/triggers/#trigger_id":[14,3,1,"delete--#account_id-triggers-#trigger_id"],"/#account_id/members/delete":[8,1,1,"put--#account_id-members-delete"],"/#account_id/mailings/#mailing_id/groups":[9,0,1,"get--#account_id-mailings-#mailing_id-groups"],"/#account_id/response/#mailing_id/forwards":[5,0,1,"get--#account_id-response-#mailing_id-forwards"],"/#account_id/members/#member_id":[8,3,1,"delete--#account_id-members-#member_id"],"/#account_id/triggers/#trigger_id/mailings":[14,0,1,"get--#account_id-triggers-#trigger_id-mailings"],"/#account_id/searches/#search_id/members":[7,0,1,"get--#account_id-searches-#search_id-members"],"/#account_id/members/status/:status_from/to/:status_to":[8,1,1,"put--#account_id-members-status--status_from-to--status_to"],"/#account_id/response/#mailing_id/sends":[5,0,1,"get--#account_id-response-#mailing_id-sends"],"/#account_id/members":[8,3,1,"delete--#account_id-members"],"/#account_id/members/email/:email":[8,0,1,"get--#account_id-members-email--email"],"/#account_id/response/#mailing_id/links":[5,0,1,"get--#account_id-response-#mailing_id-links"],"/#account_id/searches/#search_id":[7,3,1,"delete--#account_id-searches-#search_id"],"/#account_id/members/imports/#import_id/members":[8,0,1,"get--#account_id-members-imports-#import_id-members"],"/#account_id/fields/#field_id/clear":[10,2,1,"post--#account_id-fields-#field_id-clear"],"/#account_id/groups/#member_group_id/members":[13,3,1,"delete--#account_id-groups-#member_group_id-members"],"/#account_id/members/imports/#import_id":[8,0,1,"get--#account_id-members-imports-#import_id"],"/#account_id/response":[5,0,1,"get--#account_id-response"],"/#account_id/response/#mailing_id/opens":[5,0,1,"get--#account_id-response-#mailing_id-opens"],"/#account_id/members/imports/delete":[8,3,1,"delete--#account_id-members-imports-delete"],"/#account_id/mailings":[9,0,1,"get--#account_id-mailings"],"/#account_id/mailings/cancel/#mailing_id":[9,3,1,"delete--#account_id-mailings-cancel-#mailing_id"],"/#account_id/mailings/validate":[9,2,1,"post--#account_id-mailings-validate"],"/#account_id/response/#mailing_id/deliveries":[5,0,1,"get--#account_id-response-#mailing_id-deliveries"],"/#account_id/mailings/#mailing_id/members":[9,0,1,"get--#account_id-mailings-#mailing_id-members"],"/#account_id/response/#share_id/customer_share":[5,0,1,"get--#account_id-response-#share_id-customer_share"],"/#account_id/webhooks/#webhook_id":[4,3,1,"delete--#account_id-webhooks-#webhook_id"],"/#account_id/members/add":[8,2,1,"post--#account_id-members-add"],"/#account_id/members/email/optout/:email":[8,1,1,"put--#account_id-members-email-optout--email"],"/#account_id/response/#mailing_id/optouts":[5,0,1,"get--#account_id-response-#mailing_id-optouts"],"/#account_id/response/#mailing_id/shares":[5,0,1,"get--#account_id-response-#mailing_id-shares"],"/#account_id/groups/#member_group_id":[13,3,1,"delete--#account_id-groups-#member_group_id"],"/#account_id/mailings/#mailing_id":[9,3,1,"delete--#account_id-mailings-#mailing_id"],"/#account_id/members/#member_id/groups":[8,3,1,"delete--#account_id-members-#member_id-groups"],"/#account_id/groups":[13,2,1,"post--#account_id-groups"],"/#account_id/response/#mailing_id/clicks":[5,0,1,"get--#account_id-response-#mailing_id-clicks"],"/#account_id/mailings/#mailing_id/headsup":[9,0,1,"get--#account_id-mailings-#mailing_id-headsup"],"/#account_id/response/#mailing_id/signups":[5,0,1,"get--#account_id-response-#mailing_id-signups"],"/#account_id/response/#mailing_id/customer_shares":[5,0,1,"get--#account_id-response-#mailing_id-customer_shares"]}},titleterms:{oper:0,quickstart:1,creat:12,"boolean":0,overview:[0,1,11,12],interv:0,share:12,syntax:[0,11],api:1,wrapper:1,respons:5,open:12,click:12,categori:1,statu:12,from:12,delet:12,todo:11,messag:12,member:[8,6,12],field:[10,12],add:12,trigger:14,call:1,forward:12,mail:[12,9],document:1,email:6,updat:12,finish:12,get:6,webhook:[12,4],signup:[12,3],usag:12,search:[0,7],word:1,"import":12,date:0,group:[12,13],post:12,php:[6,3],data:12,addit:1,placehold:11,term:0,wise:1,optout:12,remov:12,predic:0,filter:0,exampl:[6,3],pagin:2,emma:1}}) \ No newline at end of file diff --git a/webhooks.html b/webhooks.html index 3351526..750a528 100644 --- a/webhooks.html +++ b/webhooks.html @@ -498,7 +498,7 @@ <h3>Emma Links</h3> <div id="inquiry"> <h3>Interested in Emma?</h3> - <p>Emma's email marketing makes communicating simple and stylish. <a href="/get-started/inquire" title="Get started today.">Get started today</a>.</p> + <p>Emma's email marketing makes communicating simple and stylish. <a href="http://myemma.com/get-started/inquire" title="Get started today.">Get started today</a>.</p> </div> </div> </div> @@ -506,7 +506,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 29, 2013 at 01:58 PM. + Last updated on Jul 30, 2013 at 03:26 PM. </div> </body> </html> \ No newline at end of file From e35c0b9d2c378223381e87e3d15c3ed0a8fb586d Mon Sep 17 00:00:00 2001 From: Jason Bynum <jason.bynum@myemma.com> Date: Thu, 22 Aug 2013 08:35:23 -0500 Subject: [PATCH 056/219] Update audience documentation. --- api/external/fields.html | 2 +- api/external/groups.html | 2 +- api/external/mailings.html | 103 +++++++++++++++++++++++------------- api/external/members.html | 92 +++++++++++++++++++++++++------- api/external/response.html | 17 +++--- api/external/searches.html | 8 +-- api/external/triggers.html | 96 ++++++++++++++++++++++----------- api/external/webhooks.html | 2 +- genindex.html | 2 +- http-routingtable.html | 7 ++- index.html | 2 +- member_search.html | 2 +- objects.inv | Bin 1397 -> 1400 bytes pagination.html | 2 +- php_get_member_example.html | 2 +- php_signup_example.html | 2 +- placeholders.html | 2 +- search.html | 2 +- searchindex.js | 2 +- webhooks.html | 2 +- 20 files changed, 236 insertions(+), 113 deletions(-) diff --git a/api/external/fields.html b/api/external/fields.html index 0fd1e0b..fbc44ed 100644 --- a/api/external/fields.html +++ b/api/external/fields.html @@ -414,7 +414,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 30, 2013 at 03:26 PM. + Last updated on Aug 22, 2013 at 08:35 AM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/groups.html b/api/external/groups.html index 20a483b..b5a1e86 100644 --- a/api/external/groups.html +++ b/api/external/groups.html @@ -708,7 +708,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 30, 2013 at 03:26 PM. + Last updated on Aug 22, 2013 at 08:35 AM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/mailings.html b/api/external/mailings.html index 0d945ee..c62b12d 100644 --- a/api/external/mailings.html +++ b/api/external/mailings.html @@ -149,23 +149,28 @@ <h1>Mailings<a class="headerlink" href="#mailings" title="Permalink to this head { "mailing_type": "m", "send_started": null, - "signup_form_id": null, + "cancel_by_user_id": null, "mailing_id": 201, "recipient_count": 0, + "cancel_ts": null, + "mailing_status": "p", + "month": null, + "failure_ts": null, + "reply_to": null, "year": null, + "datacenter": null, + "started_or_finished": null, "account_id": 100, - "month": null, "disabled": false, - "parent_mailing_id": null, - "started_or_finished": null, - "name": "Cancellable mailing", - "datacenter": null, - "mailing_status": "p", - "plaintext_only": false, + "created_ts": "@D:2013-08-22T08:35:16", "sender": "Kevin McConnell", + "plaintext_only": false, + "name": "Cancellable mailing", + "parent_mailing_id": null, + "failure_message": null, "send_finished": null, "send_at": null, - "reply_to": null, + "signup_form_id": null, "subject": "Cancellable mailing", "purged_at": null, "archived_ts": null @@ -173,23 +178,28 @@ <h1>Mailings<a class="headerlink" href="#mailings" title="Permalink to this head { "mailing_type": "m", "send_started": null, - "signup_form_id": null, + "cancel_by_user_id": null, "mailing_id": 200, "recipient_count": 0, + "cancel_ts": null, + "mailing_status": "c", + "month": null, + "failure_ts": null, + "reply_to": null, "year": null, + "datacenter": null, + "started_or_finished": null, "account_id": 100, - "month": null, "disabled": false, - "parent_mailing_id": null, - "started_or_finished": null, - "name": "Sample Mailing", - "datacenter": null, - "mailing_status": "c", - "plaintext_only": false, + "created_ts": "@D:2013-08-22T08:35:16", "sender": "Kevin McConnell", + "plaintext_only": false, + "name": "Sample Mailing", + "parent_mailing_id": null, + "failure_message": null, "send_finished": null, "send_at": null, - "reply_to": null, + "signup_form_id": null, "subject": "Sample Mailing for [% member:first_name %] [% member:last_name %]", "purged_at": null, "archived_ts": null @@ -210,23 +220,28 @@ <h1>Mailings<a class="headerlink" href="#mailings" title="Permalink to this head { "mailing_type": "m", "send_started": null, - "signup_form_id": null, + "cancel_by_user_id": null, "mailing_id": 201, "recipient_count": 0, + "cancel_ts": null, + "mailing_status": "p", + "month": null, + "failure_ts": null, + "reply_to": null, "year": null, + "datacenter": null, + "started_or_finished": null, "account_id": 100, - "month": null, "disabled": false, - "parent_mailing_id": null, - "started_or_finished": null, - "name": "Cancellable mailing", - "datacenter": null, - "mailing_status": "p", - "plaintext_only": false, + "created_ts": "@D:2013-08-22T08:35:16", "sender": "Kevin McConnell", + "plaintext_only": false, + "name": "Cancellable mailing", + "parent_mailing_id": null, + "failure_message": null, "send_finished": null, "send_at": null, - "reply_to": null, + "signup_form_id": null, "subject": "Cancellable mailing", "purged_at": null, "archived_ts": null @@ -234,23 +249,28 @@ <h1>Mailings<a class="headerlink" href="#mailings" title="Permalink to this head { "mailing_type": "m", "send_started": null, - "signup_form_id": null, + "cancel_by_user_id": null, "mailing_id": 200, "recipient_count": 0, + "cancel_ts": null, + "mailing_status": "c", + "month": null, + "failure_ts": null, + "reply_to": null, "year": null, + "datacenter": null, + "started_or_finished": null, "account_id": 100, - "month": null, "disabled": false, - "parent_mailing_id": null, - "started_or_finished": null, - "name": "Sample Mailing", - "datacenter": null, - "mailing_status": "c", - "plaintext_only": false, + "created_ts": "@D:2013-08-22T08:35:16", "sender": "Kevin McConnell", + "plaintext_only": false, + "name": "Sample Mailing", + "parent_mailing_id": null, + "failure_message": null, "send_finished": null, "send_at": null, - "reply_to": null, + "signup_form_id": null, "subject": "Sample Mailing for [% member:first_name %] [% member:last_name %]", "purged_at": null, "archived_ts": null @@ -568,6 +588,15 @@ <h1>Mailings<a class="headerlink" href="#mailings" title="Permalink to this head </p> </dd></dl> +<dl class="post"> +<dt id="post--#account_id-mailings"> +<tt class="descname">POST </tt><tt class="descname">/#account_id/mailings</tt><a class="headerlink" href="#post--#account_id-mailings" title="Permalink to this definition">¶</a></dt> +<dd><dl class="docutils"> +<dt>Pass public create_mailing requests through a filter to determine</dt> +<dd>if the account is permitted to use the private api create mailing</dd> +</dl> +</dd></dl> + <dl class="post"> <dt id="post--#account_id-forwards-#mailing_id-#member_id"> <tt class="descname">POST </tt><tt class="descname">/#account_id/forwards/#mailing_id/#member_id</tt><a class="headerlink" href="#post--#account_id-forwards-#mailing_id-#member_id" title="Permalink to this definition">¶</a></dt> @@ -818,7 +847,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 30, 2013 at 03:26 PM. + Last updated on Aug 22, 2013 at 08:35 AM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/members.html b/api/external/members.html index f4ee05c..7ac1d68 100644 --- a/api/external/members.html +++ b/api/external/members.html @@ -524,7 +524,8 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli <dl class="post"> <dt id="post--#account_id-members-signup"> <tt class="descname">POST </tt><tt class="descname">/#account_id/members/signup</tt><a class="headerlink" href="#post--#account_id-members-signup" title="Permalink to this definition">¶</a></dt> -<dd><p>Takes the necessary actions to signup a member and enlist them in the +<dd><blockquote> +<div><p>Takes the necessary actions to signup a member and enlist them in the provided group ids. You can send the same member multiple times and pass in new group ids to signup.</p> <p>This process triggers the opt-out workflow, and will send a mailing to @@ -539,32 +540,81 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> -<li><strong>email</strong> (<em>string</em>) – Email address of the member to sign-up.</li> -<li><strong>group_ids</strong> (<em>Array of strings (group_ids)</em>) – An array of group ids to associate -sign-up with.</li> -<li><strong>fields</strong> (<em>dictionary</em>) – Optional. Names and values of user-defined fields to -update.</li> -<li><strong>signup_form_id</strong> (<em>integer</em>) – Optional. Indicate that this member used a +<tr class="field-odd field"><th class="field-name">param email:</th><td class="field-body">Email address of the member to sign-up.</td> +</tr> +<tr class="field-even field"><th class="field-name">type email:</th><td class="field-body">string</td> +</tr> +</tbody> +</table> +</div></blockquote> +<dl class="docutils"> +<dt><<<<<<< HEAD</dt> +<dd><table class="first last docutils field-list" frame="void" rules="none"> +<col class="field-name" /> +<col class="field-body" /> +<tbody valign="top"> +<tr class="field-odd field"><th class="field-name" colspan="2">param group_ids:</th></tr> +<tr class="field-odd field"><td> </td><td class="field-body">An array of group ids to associate sign-up with.</td> +</tr> +</tbody> +</table> +</dd> +</dl> +<blockquote> +<div><table class="docutils field-list" frame="void" rules="none"> +<col class="field-name" /> +<col class="field-body" /> +<tbody valign="top"> +<tr class="field-odd field"><th class="field-name" colspan="2">param group_ids:</th></tr> +<tr class="field-odd field"><td> </td><td class="field-body">An array of group ids to associate +sign-up with.</td> +</tr> +</tbody> +</table> +</div></blockquote> +<dl class="docutils"> +<dt>>>>>>>> updates per scot</dt> +<dd><table class="first docutils field-list" frame="void" rules="none"> +<col class="field-name" /> +<col class="field-body" /> +<tbody valign="top"> +<tr class="field-odd field"><th class="field-name">type group_ids:</th><td class="field-body">Array of strings (group_ids)</td> +</tr> +<tr class="field-even field"><th class="field-name">param fields:</th><td class="field-body">Optional. Names and values of user-defined fields to update.</td> +</tr> +<tr class="field-odd field"><th class="field-name">type fields:</th><td class="field-body">dictionary</td> +</tr> +<tr class="field-even field"><th class="field-name" colspan="2">param signup_form_id:</th></tr> +<tr class="field-even field"><td> </td><td class="field-body">Optional. Indicate that this member used a particular signup form. This is important if you have custom mailings for a particular signup form -and so that signup-based triggers will be fired.</li> -<li><strong>opt_in_subject</strong> (<em>string</em>) – Optional. Override the confirmation message -subject with your own copy.</li> -<li><strong>opt_in_message</strong> (<em>string</em>) – Optional. Override the confirmation message body +and so that signup-based triggers will be fired.</td> +</tr> +<tr class="field-odd field"><th class="field-name" colspan="2">type signup_form_id:</th></tr> +<tr class="field-odd field"><td> </td><td class="field-body">integer</td> +</tr> +<tr class="field-even field"><th class="field-name" colspan="2">param opt_in_subject:</th></tr> +<tr class="field-even field"><td> </td><td class="field-body">Optional. Override the confirmation message +subject with your own copy.</td> +</tr> +<tr class="field-odd field"><th class="field-name" colspan="2">type opt_in_subject:</th></tr> +<tr class="field-odd field"><td> </td><td class="field-body">string</td> +</tr> +<tr class="field-even field"><th class="field-name" colspan="2">param opt_in_message:</th></tr> +<tr class="field-even field"><td> </td><td class="field-body">Optional. Override the confirmation message body with your own copy. Must include the following tags: [rsvp_name], [rsvp_email], [opt_in_url], -[opt_out_url].</li> -</ul> -</td> +[opt_out_url].</td> </tr> -<tr class="field-even field"><th class="field-name">Return :</th><td class="field-body"><p class="first last">The member_id of the member, and their status. The status will -be reported as ‘a’ (active), ‘e’ (error), or ‘o’ (optout).</p> -</td> +<tr class="field-odd field"><th class="field-name" colspan="2">type opt_in_message:</th></tr> +<tr class="field-odd field"><td> </td><td class="field-body">string</td> +</tr> +<tr class="field-even field"><th class="field-name">return:</th><td class="field-body">The member_id of the member, and their status. The status will +be reported as ‘a’ (active), ‘e’ (error), or ‘o’ (optout).</td> </tr> </tbody> </table> -<p> +<p class="last"> <div class="sample-response hide-response"> <span style="font-weight:bold;">Sample Response</span> <a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> @@ -589,6 +639,8 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli </pre> </div> </p> +</dd> +</dl> </dd></dl> <dl class="put"> @@ -1283,7 +1335,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 30, 2013 at 03:26 PM. + Last updated on Aug 22, 2013 at 08:35 AM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/response.html b/api/external/response.html index 39b3988..ead3b85 100644 --- a/api/external/response.html +++ b/api/external/response.html @@ -212,9 +212,10 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head <dt><strong>Returns:</strong></dt> <dd>A single object with the following fields: * <strong>name</strong> – name of mailing +* <strong>subject</strong> – subject of the mailing * <strong>sent</strong> – messages sent * <strong>delivered</strong> – messages delivered -* <strong>bounced</strong> – messages that failed delivery due to a hard or soft bounce +* <strong>bounced</strong> – messages that failed delivery due to a hard or soft bounce * <strong>opened</strong> – messages opened * <strong>clicked_unique</strong> – link clicks, unique on message * <strong>clicked</strong> – total link clicks, including duplicates @@ -232,9 +233,8 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head <tbody valign="top"> <tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing does not exist.</td> </tr> -<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing is not valid -mailing type - ‘m’ for standard mailings, ‘t’ for test mailings and -‘r’ for trigger mailings.</td> +<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing is not valid mailing type - ‘m’ for +standard mailings, ‘t’ for test mailings and ‘r’ for trigger mailings.</td> </tr> </tbody> </table> @@ -249,19 +249,20 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head "delivered": 0, "signed_up": 0, "clicked": 0, - "name": "Sample Mailing", + "forwarded": 0, "clicked_unique": 0, "webview_share_clicked": 0, + "subject": "Sample Mailing for [% member:first_name %] [% member:last_name %]", "opened": 0, "opted_out": 0, "share_clicked": 0, - "webview_shared": 0, "shared": 0, + "webview_shared": 0, "in_progress": 0, "bounced": 0, "recipient_count": 0, "sent": 0, - "forwarded": 0 + "name": "Sample Mailing" } </pre> </div> @@ -1018,7 +1019,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 30, 2013 at 03:26 PM. + Last updated on Aug 22, 2013 at 08:35 AM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/searches.html b/api/external/searches.html index a217604..c97cc87 100644 --- a/api/external/searches.html +++ b/api/external/searches.html @@ -195,14 +195,14 @@ <h1>Searches<a class="headerlink" href="#searches" title="Permalink to this head { "search_id": 200, - "optout_count": 1, + "optout_count": 0, "error_count": 0, "name": "Test Search", "criteria": "[\"or\", [\"group\", \"eq\", \"Monthly Newsletter\"],[\"group\", \"eq\", \"Widget Buyers\"]]", "deleted_at": null, "purged_at": null, - "last_run_at": "@D:2013-07-30T15:26:34", - "active_count": 2, + "last_run_at": null, + "active_count": 0, "account_id": 100 } </pre> @@ -513,7 +513,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 30, 2013 at 03:26 PM. + Last updated on Aug 22, 2013 at 08:35 AM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/triggers.html b/api/external/triggers.html index de5fd93..bb273b0 100644 --- a/api/external/triggers.html +++ b/api/external/triggers.html @@ -125,18 +125,23 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "mailing_id": 200, "plaintext": "Hello [% member:first_name %]!", "recipient_count": 0, - "year": null, + "cancel_ts": null, + "created_ts": "@D:2013-08-22T08:35:16", "month": null, - "disabled": false, - "parent_mailing_id": null, + "failure_ts": null, + "year": null, + "datacenter": null, "started_or_finished": null, "account_id": 100, - "datacenter": null, + "disabled": false, "mailing_status": "c", "plaintext_only": false, "sender": "Kevin McConnell", + "parent_mailing_id": null, + "failure_message": null, "name": "Sample Mailing", "send_finished": null, + "cancel_by_user_id": null, "send_at": null, "reply_to": null, "subject": "Sample Mailing for [% member:first_name %] [% member:last_name %]", @@ -148,17 +153,18 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "event_type": "r", "links": null, "field_id": 203, + "signup_integrations": null, "push_offset_units": "0:-14:0:0", - "start_ts": "@D:2013-07-30T15:26:32", + "start_ts": "@D:2013-08-22T08:35:16", "trigger_id": 100, + "name": "Birthday triggers", "signups": null, "push_offset": "@I:-1209600.0", - "account_id": 100, "groups": null, "parent_mailing_id": 200, "deleted_at": null, "is_disabled": false, - "name": "Birthday triggers" + "account_id": 100 }, { "parent_mailing": { @@ -168,18 +174,23 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "mailing_id": 200, "plaintext": "Hello [% member:first_name %]!", "recipient_count": 0, - "year": null, + "cancel_ts": null, + "created_ts": "@D:2013-08-22T08:35:16", "month": null, - "disabled": false, - "parent_mailing_id": null, + "failure_ts": null, + "year": null, + "datacenter": null, "started_or_finished": null, "account_id": 100, - "datacenter": null, + "disabled": false, "mailing_status": "c", "plaintext_only": false, "sender": "Kevin McConnell", + "parent_mailing_id": null, + "failure_message": null, "name": "Sample Mailing", "send_finished": null, + "cancel_by_user_id": null, "send_at": null, "reply_to": null, "subject": "Sample Mailing for [% member:first_name %] [% member:last_name %]", @@ -191,21 +202,22 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "event_type": "s", "links": null, "field_id": null, + "signup_integrations": null, "push_offset_units": "0:3:0:0", - "start_ts": "@D:2013-07-30T15:26:32", + "start_ts": "@D:2013-08-22T08:35:16", "trigger_id": 101, + "name": "Test Signup Form triggers", "signups": [ 1, 2, 3 ], "push_offset": "@I:259200.0", - "account_id": 100, "groups": null, "parent_mailing_id": 200, "deleted_at": null, "is_disabled": false, - "name": "Test Signup Form triggers" + "account_id": 100 } ] @@ -222,17 +234,30 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> +<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first last simple"> <li><strong>name</strong> (<em>string</em>) – A descriptive name for the trigger.</li> -<li><strong>event_type</strong> (<em>string</em>) – The type of event that causes this trigger to fire. -Accepts one of ‘s’ (signup), ‘c’ (click), ‘u’ (survey), ‘d’ (date), -‘r’ (recurring date).</li> +<li><strong>event_type</strong> – The type of event that causes this trigger to fire.</li> +</ul> +</td> +</tr> +</tbody> +</table> +<p>Accepts one of ‘s’ (signup), ‘c’ (click), ‘u’ (survey), +‘si’ (signup_integration), ‘d’ (date), ‘r’ (recurring date). +:type event_type: string</p> +<table class="docutils field-list" frame="void" rules="none"> +<col class="field-name" /> +<col class="field-body" /> +<tbody valign="top"> +<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> <li><strong>parent_mailing_id</strong> (<em>integer</em>) – The id of the mailing this trigger will use as a template for message generation.</li> <li><strong>groups</strong> (<em>array</em>) – An optional array of group ids to which this trigger will apply.</li> <li><strong>links</strong> (<em>array</em>) – An array of link_ids for click triggers.</li> <li><strong>signups</strong> (<em>array</em>) – An array of signup_form_ids for signup triggers.</li> +<li><strong>signup_integrations</strong> (<em>array</em>) – An array of oauth app ids for +signup integration triggers.</li> <li><strong>surveys</strong> (<em>array</em>) – An array of survey_ids for survey triggers.</li> <li><strong>field_id</strong> (<em>integer</em>) – A field id to which this trigger will apply if it is a date or recurring date trigger.</li> @@ -307,18 +332,23 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "mailing_id": 200, "plaintext": "Hello [% member:first_name %]!", "recipient_count": 0, - "year": null, + "cancel_ts": null, + "created_ts": "@D:2013-08-22T08:35:16", "month": null, - "disabled": false, - "parent_mailing_id": null, + "failure_ts": null, + "year": null, + "datacenter": null, "started_or_finished": null, "account_id": 100, - "datacenter": null, + "disabled": false, "mailing_status": "c", "plaintext_only": false, "sender": "Kevin McConnell", + "parent_mailing_id": null, + "failure_message": null, "name": "Sample Mailing", "send_finished": null, + "cancel_by_user_id": null, "send_at": null, "reply_to": null, "subject": "Sample Mailing for [% member:first_name %] [% member:last_name %]", @@ -330,17 +360,18 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "event_type": "r", "links": null, "field_id": 203, + "signup_integrations": null, "push_offset_units": "0:-14:0:0", - "start_ts": "@D:2013-07-30T15:26:32", + "start_ts": "@D:2013-08-22T08:35:16", "trigger_id": 100, + "name": "Birthday triggers", "signups": null, "push_offset": "@I:-1209600.0", - "account_id": 100, "groups": null, "parent_mailing_id": 200, "deleted_at": null, "is_disabled": false, - "name": "Birthday triggers" + "account_id": 100 } </pre> </div> @@ -433,18 +464,23 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "mailing_id": 200, "plaintext": "Hello [% member:first_name %]!", "recipient_count": 0, - "year": null, + "cancel_ts": null, + "created_ts": "@D:2013-08-22T08:35:16", "month": null, - "disabled": false, - "parent_mailing_id": null, + "failure_ts": null, + "year": null, + "datacenter": null, "started_or_finished": null, "account_id": 100, - "datacenter": null, + "disabled": false, "mailing_status": "c", "plaintext_only": false, "sender": "Kevin McConnell", + "parent_mailing_id": null, + "failure_message": null, "name": "Sample Mailing", "send_finished": null, + "cancel_by_user_id": null, "send_at": null, "reply_to": null, "subject": "Sample Mailing for [% member:first_name %] [% member:last_name %]", @@ -506,7 +542,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 30, 2013 at 03:26 PM. + Last updated on Aug 22, 2013 at 08:35 AM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/webhooks.html b/api/external/webhooks.html index a86a0e7..8472278 100644 --- a/api/external/webhooks.html +++ b/api/external/webhooks.html @@ -486,7 +486,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 30, 2013 at 03:26 PM. + Last updated on Aug 22, 2013 at 08:35 AM. </div> </body> </html> \ No newline at end of file diff --git a/genindex.html b/genindex.html index b0b8d82..ae3d75f 100644 --- a/genindex.html +++ b/genindex.html @@ -144,7 +144,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 30, 2013 at 03:26 PM. + Last updated on Aug 22, 2013 at 08:35 AM. </div> </body> </html> \ No newline at end of file diff --git a/http-routingtable.html b/http-routingtable.html index 2851e9f..d85870d 100644 --- a/http-routingtable.html +++ b/http-routingtable.html @@ -206,6 +206,11 @@ <h1>HTTP Routing Table</h1> <td> <a href="api/external/mailings.html#get--#account_id-mailings"><tt class="xref">GET /#account_id/mailings</tt></a></td><td> <em></em></td></tr> + <tr> + <td></td> + <td> + <a href="api/external/mailings.html#post--#account_id-mailings"><tt class="xref">POST /#account_id/mailings</tt></a></td><td> + <em></em></td></tr> <tr> <td></td> <td> @@ -611,7 +616,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 30, 2013 at 03:26 PM. + Last updated on Aug 22, 2013 at 08:35 AM. </div> </body> </html> \ No newline at end of file diff --git a/index.html b/index.html index 271335b..9c68ed4 100644 --- a/index.html +++ b/index.html @@ -349,7 +349,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 30, 2013 at 03:26 PM. + Last updated on Aug 22, 2013 at 08:35 AM. </div> </body> </html> \ No newline at end of file diff --git a/member_search.html b/member_search.html index 2a5bd8a..0dd2070 100644 --- a/member_search.html +++ b/member_search.html @@ -255,7 +255,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 30, 2013 at 03:26 PM. + Last updated on Aug 22, 2013 at 08:35 AM. </div> </body> </html> \ No newline at end of file diff --git a/objects.inv b/objects.inv index 475a6efa15eb96aa8df3bce20c32572b474de8bc..77c3f01e6801970b681b5f35b844395248e88bd7 100644 GIT binary patch delta 1260 zcmV<I1QYx93it|;oPUM*BN%4PBz8_D{&>&!JdbDWO0;!bihtRl%GZX!i6&#;vdWZx zJ*jhZ$iC0NU(T`wns%SeR+!d5WH~m%bovl)Cn^6P$AMSE?`f(A-Oc=Cy5S%FFZ(_J zdl>}pi<945ml?`my1~!6ao6xdoMcmq{y2QLimwNJt2fk(5`SiT{Ja%qzph0u9k1$^ zt6H`zJXfyKzRbfgC1&K{IL_kyHV<(z5B=MY!A#1~=LcRCa%|PHF7sXtoook@AI`jP z>b9B->-O07vYP6K?4(rpS_zeX%XnAk;-3<I%Ny5G^GyvHTi`NV%@(+9iOc+Pm{x-~ z4m}Hj55o3B27h6zy+Jt8)d=2e(Udrqu11JV-xZ=|%8fauG8EpnMF?y)TR<^_C5IEA z%5!-U{iPNkNv)}|nZsU<$8O48Ttutzh4nY@hT2v$1GCo6Rr|AS^d^{!WT)h)aLwo* zm}GP<yWuf|hfFVaUa$=F!}S|d3_+0WhC&caN^xLYA%9l?nEC5-C;NcNXhydvl$}+K zgOcaj?atfaSTuF<H?6mX8TR#Wy<WN<;1E~js;{eRYKt=21_+hwkKpD9^DCrIA_rSy zQ4XJ~mt&Xq=rNEKdA-a2gZE`xMLE!25hc?O#kBj1eZa=3Xn|AN&MM*QY?p#|N{cqJ zr8OdK=6^WbV%iZid;WU;M5^bC!Ssi;e$zLx@70JDZXF$@Ww)5&!!AGQAIVH>&p&np z#;mSAnR6J|zm#$4e#kI%C0m2;DQ~+R$(I3BLaf!%nAs+=p~+AK=Oq?R(V|VQ=Na+- zsOp*V6q<p?p7^ABmZGVrys1t+#RV)S#M$*44}ZisyXT&cW;eEuUk3}kGBjl+Qm()q zdHEC4aiXJ6>Y#~Q8|E80T9EmW?lgWN_5^aJy&(VIObL$gcUTB(PII15$U(uR6P9#c zwV_!)q-ldm5!gxaau~a$qOzFxML*M2&+=kCS~mvmJyqWo1Tlk6mG<6PJcVxtgDQMy z7=Jn$&|$2X6FfWuofBw8BsIWq4FFa@qukJvZVk+2Q!aFPb<vXx;`8LbB_y0&=>0W7 z=V!<pI>P<6-Bj<rJm0p|LCNj@DrEN=x4S$Nwj^<;xRM|y9~4*P5NT@za?gRC$eB>@ ze-ii$jB1Khg^JxR2IRhDKAjV!XKw(fpMSk=NGaJHDG5(}{)Bf#{;I#nd4J_fy8lWh z*({7L@R^eC|AbF^M*;Yk?<gDky>}F+HMjUd-$WFeTXfI|LBY>Q-L|5igm?YkrYncN zgJEhx2!u2)Ti^$u!yw+3;5WSJgP6Ir_U60sR1Zwl0(%q1J(vH41re^!zzre#h<{}* zdf`o7a_1IfjOU<2cfcTnC($hd>;{&P=Mbv5$+ngNpU<6Zxh4UzBR082_z4SwUqy-= zeC!cx?SQ8AY_fmc65SjT(`fVvF_9+-rM3`<ch+ne;B(X(o|k2`)n|<0MPJOq#N>r0 zb_pz(ZjmrM3=w<F2{98d;g@k;9A%TchDV}2RO$$=XH$@uAa}=F@U{@m6Ua62Lunbz z?Vm~zHz7I0b8DE?cbX6>CBqKpLP<9eH6x0Y^uu?P$$0NhU0`NEn1iU3B`{BMl;Q9- WcFwe11ZG)=0T2g}k^BdTX6B2j6M9|% delta 1257 zcmV<F1Qz@F3iS$*oPP!U5ezeC2+oNF+wYA%&*K?fh`OwE@h|CA{#x-jQ6=nKQkb`2 zFX~#IlJDd1m#fTyuFWU24W{=GnfH}2gFeLDMasYDzT<`PN1CQi4>SLm?)XRlOMZ|4 zUOK_s?Bb8s?+oQH-Qnlhxv6+2F0#r+d+t7K#g_)(+YR;X4SzEue%@atzou6&4KK=? zt5VhrJojFseHqO#Z;a)j9anLE8%><eL;tomm`NG>^u)7F_O&{fdD@Duk##51)0LN1 zSr_BWvOYJhEQYo&xhU1V7D6T865f=l_@_i$^U4j>d_xDuX1L5Yvl%X%<1*h4)2s9B z(6bP@5q1<}gnw=JjBua}3*Jjn<v5jYMu^PV1)^n2jXQ>SD7@{95ZGomgJJ|vb{9Up zPvuRtw^DpW^`^#V4trsb-IS@giCW<c>u=r_wQXhwW~rM=`=f01CKz7HM#)~`n$aUL z$>>&g$72Q$ncmTP!7@xw(=((Pf*{!)g&>xg;=s1TQGfko?k}&6Yy%>rIo+aAc2?GR zN?ymXJ8pw>R+ZV`xX}`3*w(*|dhvFELtK!nwk(RFFUn*)AXIKVf}5VquaG*49Bht7 zIedy%_D$TQ$3Rl#^)A~F-sW)?<v=$@6iqu6*KRBJ0Ux8H1x{r<tB9wwT?*PME$Yag z)`+m1kAL|V(~cO~)7R;7P(2d{(+|@64bRB2S0hrmb#@S!-C~9hyY!@gM02e@|JWTE z^SX{?E?`W5DR$^_h#9((EkU=Gw_c9u%YZ52sMpb)*%q;($xsvLITlUPqK>WS5pjQ3 z^~`(<tw4{S_@sH}qAG{Fsf;|u87w8m*^C+w<bODu=bp}HSH3>J4i<RfXv#{&T!9^R z`4h@<VxW#1pov=R#xHQRB=aHNY5YL$3DinkN&enS3C{30SO{xQ3!YD?LBXOEmULOv zp;<npX@f}-*hTQX>zk;evY7j_pJA$3c{35M>4W|rns+5Z%wSWcy=9B1@Rc#B!Z*y& z#eaZKW4)T-VGDFkpb?SM0RL(Lu=*9{ik9@%z)UvgLWfruJ-Hx0Pws0%!pVhxzXs_1 z3VB6G_<n6S)q5+i_bqi&a=pJY*?b<`T^<RWlQ>sQB#6s9#Z})O^tA!mb6`gbCe-gg z5#j|#HDszn9o;PkWZy9#F9_1BH-OWx-hWo4l<JLCghxJq!aE{;)z9;|zfvXLe<h=A z7RF}yOiA~Dz$e|K0Q~cNlokEfJ&MzsTl`>bA_~ndIv9hX<maQTYtatEo1XXS%5Ljm z7<v#AA&tvs_{-%spO!tVR`KKkb1blD4jy0pizbM0aZ;@a(W@rA?l)eQId{S9$bS+$ zsL+>MkiiqungHIc^DAx$)!PbdPk@))E&xoa`caEb#vi_Dg5VeV+zKDNYFdVgp@<s% ze{6~F;eu&2dL9>PzlI7>h{HP(Rt)fIXC2S;{IJ(YjNtt`guOUHSK!zU`=08}WEg?v z(mf*9a3NxEIU#1^r}BCBb&Sb<EMiA;F;waZttWPnmmqh?n(;al)f31y@I%ED%<Z2_ z5I3QO!Yg2y)DM~vDWwh$RxD9B5VdYODCvj4AV%ZeU0}e>euRXmqm>y?36$Y8;pm)c T6$8vNPXizhpl<jN^|!^tZ32A~ diff --git a/pagination.html b/pagination.html index 0659be5..dcc358a 100644 --- a/pagination.html +++ b/pagination.html @@ -167,7 +167,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 30, 2013 at 03:26 PM. + Last updated on Aug 22, 2013 at 08:35 AM. </div> </body> </html> \ No newline at end of file diff --git a/php_get_member_example.html b/php_get_member_example.html index a773b90..b0e94a6 100644 --- a/php_get_member_example.html +++ b/php_get_member_example.html @@ -182,7 +182,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 30, 2013 at 03:26 PM. + Last updated on Aug 22, 2013 at 08:35 AM. </div> </body> </html> \ No newline at end of file diff --git a/php_signup_example.html b/php_signup_example.html index 66ef405..56ccbdd 100644 --- a/php_signup_example.html +++ b/php_signup_example.html @@ -204,7 +204,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 30, 2013 at 03:26 PM. + Last updated on Aug 22, 2013 at 08:35 AM. </div> </body> </html> \ No newline at end of file diff --git a/placeholders.html b/placeholders.html index f592461..8dbfc7d 100644 --- a/placeholders.html +++ b/placeholders.html @@ -182,7 +182,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 30, 2013 at 03:26 PM. + Last updated on Aug 22, 2013 at 08:35 AM. </div> </body> </html> \ No newline at end of file diff --git a/search.html b/search.html index 44c97ed..463efbf 100644 --- a/search.html +++ b/search.html @@ -154,7 +154,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 30, 2013 at 03:26 PM. + Last updated on Aug 22, 2013 at 08:35 AM. </div> </body> </html> \ No newline at end of file diff --git a/searchindex.js b/searchindex.js index 0638cd7..6fcb194 100644 --- a/searchindex.js +++ b/searchindex.js @@ -1 +1 @@ -Search.setIndex({envversion:42,terms:{all:[0,1,4,5,8,9,10,11,12,13,14],code:[0,1,6,3],change_typ:8,queri:[0,2,4],month:[0,5,9,14],four:[0,5],mile:0,least:0,follow:[0,1,4,5,7,8,9,11,13],link_target:[5,9],privat:1,specif:[8,9,4],friendli:5,send:[1,3,4,5,8,9],program:1,customer_share_click:5,those:[1,12,5],group_upd:[12,4],sent:[5,8,12,9,14],curl_clos:[1,6,3],certain:12,brown:[7,8],digit:5,everi:0,string:[0,4,5,7,8,9,10,12,13,14],fals:[1,3,4,5,6,7,8,9,10,13,14],end:[2,8],mailing_status:9,trigger_id:14,webview_share_click:5,affect:[7,8],member_add:[12,4],create_mail:9,new_boolean:10,foo:0,level:1,group_delet:[12,4],list:[0,1,2,4,5,7,8,9,10,11,12,13,14],upload:8,ryan:8,"try":8,item:2,plaintext_onli:[9,14],div:[4,5,7,8,9,10,13,14],survey_id:14,setup:1,pleas:[1,8,11,9],prevent:2,work:[1,4],ten:0,sync:10,sign:[0,5,8,4],past:1,second:[0,7,14],field_creat:[12,4],further:1,shortcut_nam:10,click:[0,4,5,7,8,14],append:2,even:10,what:1,hide:[4,5,7,8,9,10,13,14],appear:[1,8],clock:1,section:1,advanc:0,current:[1,8,12,9],delet:[1,4,7,8,9,10,13,14],"new":[1,4,5,7,8,9,10,11,13,14],net:[1,2,6,3],delivery_t:8,ever:1,method:[5,8,13,4,9],can:[0,1,2,4,5,7,8,9,11,12,13],widget:[7,10,8,9,13],full:1,hash:0,datematch:0,displai:10,variat:9,gener:[0,8,12,14],onli:[5,8],here:[0,1,3,5,6,8],json:[0,1,3,4,6,7],bodi:[8,9],let:[1,4,10],address:[0,1,8,6,9],along:8,sinc:8,valu:[0,5,7,8,10,11],field_upd:[12,4],search:[8,9],survei:14,sender:[9,14],larger:2,queue:5,prior:9,action:[0,8],chang:[8,4],overrid:8,campaign:5,newbi:5,appli:[7,14],prefer:0,young:1,myemma:[4,5,7,8,9,13],filenam:8,customer_shar:5,"boolean":[1,5,7,8,9,10,13,14],curlopt_postfield:[1,3],total:5,jone:[7,5,8,13],select:[1,10],newslett:[7,8,13],describ:7,would:[0,1],commun:1,from_group_id:13,regist:4,two:[0,5],coverag:1,next:[0,1],create_webhook:4,few:[5,8],call:[8,4],criteria:7,member_add_to_group:[12,4],type:[1,3,4,5,6,7,10,9,14],until:2,more:[0,4,7,8,9,13],peopl:5,relat:[1,8,11,9],about:[10,8,12,4,9],notic:8,thide:[4,5,7,8,9,10,13,14],flag:[5,7,8,10,9,14],exce:2,indic:8,examin:1,particular:[1,4,5,8,10,12,9],in_progress:5,curl_getinfo:[1,6,3],origin:9,must:[0,7,8,13,10],none:9,endpoint:[1,4,5,7,8,9,10,13,14],join:[0,7],hour:0,der:1,member_sinc:[0,5,7,8,9,13],uniqu:5,histori:8,soup:7,remain:[0,9],archiv:[5,9],member_optout:[12,4],drill:5,control:[1,11,9],give:5,process:8,forward_mailing_id:5,email_domain:[0,5],share:[0,5,8,4],accept:[0,5,7,8,9,10,11,13,14],total_click:5,tag:[8,11,9],want:[1,12,13,5],opt_in_url:8,occur:[7,12],some_numeric_field:0,delai:14,alwai:0,webhook_event_id:4,cours:1,multipl:[10,8],first_nam:[1,3,5,7,8,9,10,11,13,14],started_or_finish:[9,14],anoth:[9,13],get:[1,4,5,7,8,9,10,13,14],message_open:[12,4],html_bodi:[9,14],share_statu:5,push_offset:14,del_statu:5,tild:5,num_members_upd:8,simpl:0,chri:9,pizza:[7,8],map:0,birthdai:[10,14],referenc:7,sundai:0,jacqu:1,membership:13,taco:[7,5,8,9,13],mai:12,xxxx:6,associ:[1,8,9,4,5],grow:1,welcom:11,add_onli:8,"short":0,json_encod:[1,3],optout:[5,8,13],num_dupl:8,favorit:10,correspond:[0,1],greet:11,predic:1,issu:[1,10],"12t11":[7,5,8,9,13],combin:7,allow:[0,7,8],some_zipcode_field:0,signed_up:5,order:[5,10],michel:[8,9],mailing_nam:5,checkbox:10,fields_upd:8,over:2,becaus:12,buyer:[7,8,9,13],comma:[9,13],is_dis:14,vari:8,paramet:[2,4,5,7,8,9,10,13,14],widget_typ:10,style:[0,4,5,7,8,9,10,13,14],monitor:1,how:[7,1,2,4],fix:1,import_start:8,better:[13,14],platform:1,pend:[1,9],mailing_list:9,curlopt_ssl_verifyp:[1,6,3],hidden:13,main:1,might:[1,4],link_nam:[5,9],them:[8,9],messag:[4,5,8,11,9,14],"return":[0,1,4,5,7,8,9,10,12,13,14],greater:[0,8],thei:[0,9],food:10,timestamp:[0,5,12,9,10],spell:4,nashvil:1,dai:0,auth:1,instead:[12,2,8],now:5,down:5,term:1,alex:9,name:[0,4,5,7,8,9,10,11,13,14],edit:[7,1,14,10],troubleshoot:1,drop:1,authent:[1,6,4,3],successufulli:4,separ:[1,9,13],each:[1,2,5,9,12,11,13],found:[8,9,4,14],updat:[4,7,8,9,10,13,14],denni:1,status:[8,9],domain:0,weight:[4,5,7,8,9,10,13,14],resum:9,individu:[5,8],hard:[0,5],last_nam:[1,3,5,7,8,9,10,11,13,14],"05t15":5,connect:[1,6,3],year:[0,5,9,14],our:[1,11,12,4,14],happen:[1,4,5],commiss:1,short_display_nam:10,special:[0,7,8,13],out:[0,1,4,5,7,8,10,13],variabl:[1,6,3],message_shar:[12,4],network:[5,12],private_api_kei:[1,6,3],check_multipl:10,content:[1,11,6,9,3],rel:0,print:6,correct:10,integr:1,benjamin:[1,8],qualifi:11,insid:1,workflow:8,contain:[0,5,7,13,10,9],given:[0,8,9,4],standard:[5,9],status_from:8,base:[1,8,5],recipient_search:9,dictionari:8,put:[4,7,8,9,10,13,14],"30t15":[7,14],"13t23":[7,5,8],refer:[5,7,8,13,10,9],visit:11,could:1,omit:5,success:[1,3,7,8,9,13],filter:[7,1],search_id:7,pagin:1,member_id:[5,7,8,9,12,13],summari:[1,5],assign:9,first:[0,1,10,5],oper:[7,1,14],rang:5,notifi:[1,12],directli:0,onc:9,curl_init:[1,6,3],number:[5,2,13,3,10],placehold:1,date:[5,8,14,10],unlik:9,alreadi:[10,8,9,13],done:8,plaintext_pref:[7,8,9,13],oppos:8,open:[0,3,4,5,6,7,8],payload:4,fanci:5,size:2,differ:0,"long":10,script:1,data:[1,10,4,3,5],system:[1,8,12,4,14],construct:[0,7,9],attach:11,outag:1,friend:11,curlinfo_http_cod:[1,6,3],shell:0,option:[0,5,7,8,9,10,13,14],especi:8,signup:[0,1,4,5,8,14],copi:[8,13],member_upd:[12,4],specifi:[0,2,7,8,10,11,9,14],curl_exec:[1,6,3],curlopt_httphead:[1,6,3],member_signup:[12,4],create_search:7,part:[0,9],enclos:11,initi:[10,9],than:[0,1,2,3,12,13],with_plaintext:9,"02t10":[5,8],"02t11":[5,8],"02t13":5,nathan:8,whenev:8,provid:[1,5,8,12,9,14],remov:[8,13,4],mailing_start:4,rate:2,structur:7,charact:9,greg:8,trackabl:11,were:5,minut:0,danc:1,error_count:[7,8,9,13],pre:[4,5,7,8,9,10,13,14],cleaner:1,sai:0,share_id:5,signup_form_id:[0,8,12,9,14],plaintext:[5,9,14],pass:[1,8,3],ani:[0,1,2,7,8,9],have:[0,1,5,8,12,9],tabl:5,need:1,seen:5,"null":[7,8,13,10,9,14],kevin:[9,14],signup_mail:0,caus:14,built:1,inform:[1,4,6,8,9,10,13],check:[8,6,9],offer:1,object_id:14,note:[1,8,9,4],also:[0,4,5,7,8,9,11,13],exampl:[0,1,8,7,5],take:[0,8,4],which:[0,1,4,8,10,12,9,14],some_number_field:0,datacent:[9,14],singl:[0,1,3,4,5,8,10,12,13],excit:11,sure:1,delete_memb:13,normal:9,parent_mail:14,recipient_count:[5,9,14],previou:9,field_id:[10,12,14],last_run_at:7,most:14,rsvp_email:8,"class":[4,5,7,8,9,10,13,14],don:1,member_group_id:[8,9,13],mcconnel:[9,14],url:[1,3,4,5,6,12],mailing_finish:[12,4],clear:10,request:[1,2,3],doe:[0,5,7,8,9,10,13],member_status_upd:[12,4],declar:9,tech:4,determin:1,add:[1,8,13,3],dataset:10,dow:0,recipi:9,"6db0cc7e6fdb2da589b65f29d90c96b6":9,show:[4,5,7,8,9,10,11,13,14],text:[10,11,12],radiu:0,syntax:[1,9],radio:10,font:[4,5,7,8,9,10,13,14],fine:9,find:[1,6,5],status_to:8,toast:[7,5,8,13],access:[1,5],giant:12,just:[0,1,9],pretti:8,column_ord:10,"true":[0,1,2,3,4,6,7,8,9,10,13,14],explain:[0,1],winner:9,activ:[1,5,7,8,13,9],figur:1,should:[1,2,3,7,8,11,9],templat:[11,14],share_count:5,count:[1,2,3,5],variou:[8,13],confirmed_opt_in:[7,8,9,13],familiar:1,express:0,account:[1,4,5,7,8,10,13,14],repo:1,cannot:[8,9,4],progress:9,report:[10,8],requir:[1,7,8,10,11,9],object:[1,13,5],favorite_food:[5,7,8,13,10,9],bar:0,organ:1,include_archiv:[5,9],"public":1,"default":[5,11,13,4,9],ref_member_id:5,message_share_click:[12,4],through:[1,8,4],where:[0,1,8,11,7],view:1,respond:8,set:[0,1,2,3,6,8,9,12,13],link_id:[0,5,12,9,14],see:[7,1,8],result:[0,1,2,5,8,9],respons:[10,8,9,13],fail:[5,9,4],themselv:2,member_field:[0,7],xxxxx:6,subject:[8,12,9,14],statu:[1,4,5,7,8,9,13],fancyonion:11,kei:[0,1,8,11,4],is_schedul:9,message_forward:[12,4],databas:8,someth:1,last_modified_at:[7,8,9,13],addresse:5,written:1,between:[0,7,2],clicked_uniqu:5,"import":[1,8,4,10],subscript:[1,3],entiti:1,curlopt_url:[1,6,3],email:[0,1,5,7,8,9,13],wide:14,extend:1,numer:10,http404:[4,5,7,8,9,10,13,14],job:13,entir:[0,8],share_click:5,to_group_id:13,curlopt_returntransf:[1,6,3],curl_setopt:[1,6,3],member_remove_from_group:[12,4],send_start:[0,9,14],protect:1,accident:2,last:[0,5,10],delimit:5,lentil:7,pertain:5,message_click:[12,4],curlopt_post:[1,3],audienc:[1,8,9],mang:0,improv:1,http500:14,seri:5,com:[4,5,6,7,8,9,11,13],zip_code_field:0,"03t15":[7,5,8,13],point:1,toni:[7,8],overview:5,period:1,colon:[7,11],optout_count:[7,8,9,13],suppli:9,cancel:9,tuesdai:0,duplic:5,quit:[5,8],user_id:4,recur:14,headsup:9,addition:[1,2],due:5,been:[1,8,10,5],mark:[8,9],whom:9,tshow:[4,5,7,8,9,10,13,14],trigger:[5,7,8,13,10,9],unsubscrib:0,treat:8,interest:[10,4],basic:[0,1,4,8,13,14],monthli:[7,8,13],addit:[8,9,13],member_delet:[12,4],hesit:1,blob:4,email_us:[0,5],mailing_mailing_id:5,mailing_id:[0,5,8,12,9,14],fire:[8,4,14],xxx:[1,3],rubi:1,argument:[0,5],bulk:[1,8],input:1,present:7,statist:8,"case":[1,8],look:[1,14,10],frozen:9,durat:9,email_error:[7,8,9,13],defin:[0,10,8,9],"while":0,smith:[7,5,8,9,13],outcom:5,abov:[0,1,8,7],error:[1,3,6,8,10,13],veen:1,loop:8,opt:[0,4,5,7,8,13],readi:9,deliv:5,recipient_group:9,equal:0,itself:0,new_statu:12,webhook_id:4,account_id:[1,3,4,5,6,7,8,9,10,12,13,14],develop:1,recipient_memb:9,perform:8,make:[1,12,6,10],belong:[0,8,4],same:[8,4],easier:12,member:[10,9,13],python:1,html:9,split:9,opt_in_messag:8,complet:[1,3,4,6,8,9],week:0,finish:[5,4],http:[1,2,3,4,5,6,11,9],href:[4,5,7,8,9,10,13,14],nest:0,someon:4,rais:[4,5,7,8,9,10,13,14],winner_id:9,php:1,studi:1,recent:[1,8],kept:11,center:0,min:5,well:[1,5],inherit:9,person:9,mailing_typ:[9,14],without:[0,1],command:1,thi:[0,1,4,5,7,8,9,10,12,13,14],undefin:0,http_code:[1,6,3],latest:11,identifi:8,paus:9,execut:[1,3],less:0,resp:[4,5,7,8,9,10,13,14],"_post":[1,3],against:0,aspect:13,recipient_email:9,source_filenam:8,yet:5,languag:1,"12t09":[7,8],display_nam:10,easi:[1,12,10],"01t00":8,had:0,littl:1,blog:4,rsvp_name:8,other:[1,8,9,3,5],curlopt_userpwd:[1,6,3],import_finish:[8,12,4],schedul:9,els:[1,6,3],save:7,match:[0,7],build:1,sanit:1,applic:[1,6,3],around:1,handl:1,disposit:1,crud:[8,13,14],print_r:[6,3],mailing_statu:[9,14],know:[1,4,5],background:13,parent_mailing_id:[9,14],bit:1,insert:11,emma:[7,5,8,9,13],like:1,onion:11,deprec:4,arbitrari:8,manual:9,integ:[1,8,14,10,5],collect:1,api:8,necessari:8,either:[0,5,7],bunch:0,output:9,group_id:[1,8,12,3],soft:[0,5],manag:[0,1,13,4],import_id:[8,12],www:[5,9],old:7,deal:[8,13],captur:1,arrai:[0,1,3,5,6,7,8,9,10,12,13,14],some:[1,11,5],back:8,field_delet:[12,4],opt_in_subject:8,intern:10,sampl:[1,4,5,7,8,9,10,13,14],elaps:[2,9],unless:1,deleted_at:[7,8,13,10,9,14],some_string_field:0,librari:11,woodcock:1,emmarubi:1,bounce_count:[7,8,9,13],emmapython:1,public_kei:4,deliveri:5,broad:12,per:5,send_finish:[9,14],larg:[0,2],condit:7,three:9,network_cod:12,localhost:9,emmaphp:1,with_html_bodi:9,who:[0,5,8],bold:[4,5,7,8,9,10,13,14],event_typ:14,inspect:1,usag:[1,8],monsewicz:1,num_members_ad:8,fulli:11,from:[1,4,8,9,13,14],post:[1,3,4,7,8,9,10,13,14],group_creat:[12,4],gladi:[7,5,8,13],hurst:1,actual:5,zip:0,groups_upd:8,column:10,page:[1,2],includ:[1,5,7,8,9,10,13],span:[4,5,7,8,9,10,13,14],webview:9,mean:0,disabl:[9,14],block:[1,2],yyyi:5,own:[1,8],member_data:[1,3],glob:0,bounc:[0,5],within:[0,8],encod:[9,4],delivery_typ:[5,8],compos:0,webview_shar:5,pair:11,field_typ:10,active_count:[7,8,9,13],public_webview_url:9,aben:1,pivot:5,your:[1,4,5,7,8,9,10,13],websit:11,fast:8,van:1,wai:[1,12],area:1,overus:2,group_nam:[8,12,13,9],support:[1,12],unique_click:5,iter:2,submit:1,custom:[5,8,11,10],avail:[0,11,4],start:[1,2,8,4],interfac:12,send_at:[9,14],exceed:2,"var":3,purged_at:[7,8,9,13,14],interv:14,fork:1,head:[1,6,9,3],form:[1,3,4,6,8,10,14],enough:2,forc:1,forward:[0,5,8,9,4],"31st":0,group_typ:[8,9,13],push_offset_unit:14,link:[0,4,5,11,9,14],line:[1,5],realli:1,opt_out_url:8,archived_t:[9,14],info:4,pull:[1,2],made:1,possibl:[5,8,12],whether:8,maximum:2,tell:12,http403:9,record:[0,7,8],below:[0,1,8,12],http400:[7,8,9],limit:[5,2,8,9],some_array_field:0,otherwis:[1,8,10],start_t:14,mta:5,expect:1,notif:9,creat:[4,5,7,13,10,9,14],"int":5,retriev:[7,1,2,8,9],doug:1,repres:5,exist:[0,4,5,7,8,10,13],behavior:11,bob:[7,5],curl:[1,6],enlist:8,portland:1,probabl:14,echo:[1,3],successfulli:[5,8,9],mailing_subject:12,grp:13,extract:11,user:[0,1,8,9,13],when:[8,12,4,9],detail:[1,4,7,8,9,10,13],invalid:[7,8,9],event:[4,7,8,13,12,9,14],valid:[5,8,9,13],futur:1,num_skip:8,test:[5,6,7,13,9,14],ignor:8,you:[0,1,2,4,5,7,8,9,10,11,12,13],emmasdk:1,member_status_id:[7,5,8,9,13],public_api_kei:[1,6,3],stat:[5,9],claus:[0,7],event_nam:[12,4],e2ma:[1,2,6,3],error_messag:8,param:[9,4],app_messag:[1,3],ella:8,link_ord:[5,9],receiv:[0,2,5,8,12,9],heads_up_email:9,longer:9,home:11,confirm:8,descript:[4,14],ohmyemma:1,portion:0,opted_out:5,time:[1,2,8,13,5],reply_to:[9,14],resource_url:12,inc:1,hello:[11,9,14]},objtypes:{"0":"http:get","1":"http:put","2":"http:post","3":"http:delete"},objnames:{"0":["http","get","HTTP get"],"1":["http","put","HTTP put"],"2":["http","post","HTTP post"],"3":["http","delete","HTTP delete"]},filenames:["member_search","index","pagination","php_signup_example","api/external/webhooks","api/external/response","php_get_member_example","api/external/searches","api/external/members","api/external/mailings","api/external/fields","placeholders","webhooks","api/external/groups","api/external/triggers"],titles:["Search Syntax","Emma API","Pagination","PHP Signup Example","Webhooks","Response","PHP Get Member By Email Example","Searches","Members","Mailings","Fields","Placeholder Syntax","Webhook Usage","Groups","Triggers"],objects:{"":{"/#account_id/members/#member_id/groups/remove":[8,1,1,"put--#account_id-members-#member_id-groups-remove"],"/#account_id/mailings/#mailing_id/winner/#winner_id":[9,2,1,"post--#account_id-mailings-#mailing_id-winner-#winner_id"],"/#account_id/response/#mailing_id/in_progress":[5,0,1,"get--#account_id-response-#mailing_id-in_progress"],"/#account_id/members/groups/remove":[8,1,1,"put--#account_id-members-groups-remove"],"/#account_id/mailings/#mailing_id/searches":[9,0,1,"get--#account_id-mailings-#mailing_id-searches"],"/#account_id/fields":[10,2,1,"post--#account_id-fields"],"/#account_id/members/#group_id/copy":[8,1,1,"put--#account_id-members-#group_id-copy"],"/#account_id/members/signup":[8,2,1,"post--#account_id-members-signup"],"/#account_id/members/status":[8,1,1,"put--#account_id-members-status"],"/#account_id/response/#mailing_id/shares/overview":[5,0,1,"get--#account_id-response-#mailing_id-shares-overview"],"/#account_id/webhooks/events":[4,0,1,"get--#account_id-webhooks-events"],"/#account_id/members/#member_id/optout":[8,0,1,"get--#account_id-members-#member_id-optout"],"/#account_id/webhooks":[4,3,1,"delete--#account_id-webhooks"],"/#account_id/fields/#field_id":[10,3,1,"delete--#account_id-fields-#field_id"],"/#account_id/response/#mailing_id":[5,0,1,"get--#account_id-response-#mailing_id"],"/#account_id/groups/#member_group_id/members/remove":[13,3,1,"delete--#account_id-groups-#member_group_id-members-remove"],"/#account_id/searches":[7,2,1,"post--#account_id-searches"],"/#account_id/members/imports":[8,0,1,"get--#account_id-members-imports"],"/#account_id/forwards/#mailing_id/#member_id":[9,2,1,"post--#account_id-forwards-#mailing_id-#member_id"],"/#account_id/response/#mailing_id/customer_share_clicks":[5,0,1,"get--#account_id-response-#mailing_id-customer_share_clicks"],"/#account_id/mailings/#mailing_id/messages/#member_id":[9,0,1,"get--#account_id-mailings-#mailing_id-messages-#member_id"],"/#account_id/members/#member_id/mailings":[8,0,1,"get--#account_id-members-#member_id-mailings"],"/#account_id/groups/#from_group_id/#to_group_id/members/copy":[13,1,1,"put--#account_id-groups-#from_group_id-#to_group_id-members-copy"],"/#account_id/triggers":[14,2,1,"post--#account_id-triggers"],"/#account_id/triggers/#trigger_id":[14,3,1,"delete--#account_id-triggers-#trigger_id"],"/#account_id/members/delete":[8,1,1,"put--#account_id-members-delete"],"/#account_id/mailings/#mailing_id/groups":[9,0,1,"get--#account_id-mailings-#mailing_id-groups"],"/#account_id/response/#mailing_id/forwards":[5,0,1,"get--#account_id-response-#mailing_id-forwards"],"/#account_id/members/#member_id":[8,3,1,"delete--#account_id-members-#member_id"],"/#account_id/triggers/#trigger_id/mailings":[14,0,1,"get--#account_id-triggers-#trigger_id-mailings"],"/#account_id/searches/#search_id/members":[7,0,1,"get--#account_id-searches-#search_id-members"],"/#account_id/members/status/:status_from/to/:status_to":[8,1,1,"put--#account_id-members-status--status_from-to--status_to"],"/#account_id/response/#mailing_id/sends":[5,0,1,"get--#account_id-response-#mailing_id-sends"],"/#account_id/members":[8,3,1,"delete--#account_id-members"],"/#account_id/members/email/:email":[8,0,1,"get--#account_id-members-email--email"],"/#account_id/response/#mailing_id/links":[5,0,1,"get--#account_id-response-#mailing_id-links"],"/#account_id/searches/#search_id":[7,3,1,"delete--#account_id-searches-#search_id"],"/#account_id/members/imports/#import_id/members":[8,0,1,"get--#account_id-members-imports-#import_id-members"],"/#account_id/fields/#field_id/clear":[10,2,1,"post--#account_id-fields-#field_id-clear"],"/#account_id/groups/#member_group_id/members":[13,3,1,"delete--#account_id-groups-#member_group_id-members"],"/#account_id/members/imports/#import_id":[8,0,1,"get--#account_id-members-imports-#import_id"],"/#account_id/response":[5,0,1,"get--#account_id-response"],"/#account_id/response/#mailing_id/opens":[5,0,1,"get--#account_id-response-#mailing_id-opens"],"/#account_id/members/imports/delete":[8,3,1,"delete--#account_id-members-imports-delete"],"/#account_id/mailings":[9,0,1,"get--#account_id-mailings"],"/#account_id/mailings/cancel/#mailing_id":[9,3,1,"delete--#account_id-mailings-cancel-#mailing_id"],"/#account_id/mailings/validate":[9,2,1,"post--#account_id-mailings-validate"],"/#account_id/response/#mailing_id/deliveries":[5,0,1,"get--#account_id-response-#mailing_id-deliveries"],"/#account_id/mailings/#mailing_id/members":[9,0,1,"get--#account_id-mailings-#mailing_id-members"],"/#account_id/response/#share_id/customer_share":[5,0,1,"get--#account_id-response-#share_id-customer_share"],"/#account_id/webhooks/#webhook_id":[4,3,1,"delete--#account_id-webhooks-#webhook_id"],"/#account_id/members/add":[8,2,1,"post--#account_id-members-add"],"/#account_id/members/email/optout/:email":[8,1,1,"put--#account_id-members-email-optout--email"],"/#account_id/response/#mailing_id/optouts":[5,0,1,"get--#account_id-response-#mailing_id-optouts"],"/#account_id/response/#mailing_id/shares":[5,0,1,"get--#account_id-response-#mailing_id-shares"],"/#account_id/groups/#member_group_id":[13,3,1,"delete--#account_id-groups-#member_group_id"],"/#account_id/mailings/#mailing_id":[9,3,1,"delete--#account_id-mailings-#mailing_id"],"/#account_id/members/#member_id/groups":[8,3,1,"delete--#account_id-members-#member_id-groups"],"/#account_id/groups":[13,2,1,"post--#account_id-groups"],"/#account_id/response/#mailing_id/clicks":[5,0,1,"get--#account_id-response-#mailing_id-clicks"],"/#account_id/mailings/#mailing_id/headsup":[9,0,1,"get--#account_id-mailings-#mailing_id-headsup"],"/#account_id/response/#mailing_id/signups":[5,0,1,"get--#account_id-response-#mailing_id-signups"],"/#account_id/response/#mailing_id/customer_shares":[5,0,1,"get--#account_id-response-#mailing_id-customer_shares"]}},titleterms:{oper:0,quickstart:1,creat:12,"boolean":0,overview:[0,1,11,12],interv:0,share:12,syntax:[0,11],api:1,wrapper:1,respons:5,open:12,click:12,categori:1,statu:12,from:12,delet:12,todo:11,messag:12,member:[8,6,12],field:[10,12],add:12,trigger:14,call:1,forward:12,mail:[12,9],document:1,email:6,updat:12,finish:12,get:6,webhook:[12,4],signup:[12,3],usag:12,search:[0,7],word:1,"import":12,date:0,group:[12,13],post:12,php:[6,3],data:12,addit:1,placehold:11,term:0,wise:1,optout:12,remov:12,predic:0,filter:0,exampl:[6,3],pagin:2,emma:1}}) \ No newline at end of file +Search.setIndex({envversion:42,terms:{all:[0,1,4,5,8,9,10,11,12,13,14],code:[0,1,6,3],change_typ:8,queri:[0,2,4],month:[0,5,9,14],four:[0,5],mile:0,follow:[0,1,4,5,7,8,9,11,13],link_target:[5,9],privat:[1,9],specif:[8,9,4],friendli:5,send:[1,3,4,5,8,9],program:1,customer_share_click:5,those:[1,12,5],group_upd:[12,4],sent:[5,8,12,9,14],curl_clos:[1,6,3],certain:12,brown:[7,8],digit:5,everi:0,string:[0,4,5,7,8,9,10,12,13,14],fals:[1,3,4,5,6,7,8,9,10,13,14],end:[2,8],mailing_status:9,trigger_id:14,"22t08":[9,14],webview_share_click:5,affect:[7,8],member_add:[12,4],create_mail:9,new_boolean:10,foo:0,level:1,group_delet:[12,4],list:[0,1,2,4,5,7,8,9,10,11,12,13,14],upload:8,ryan:8,"try":8,item:2,plaintext_onli:[9,14],div:[4,5,7,8,9,10,13,14],survey_id:14,setup:1,pleas:[1,8,11,9],prevent:2,work:[1,4],ten:0,sync:10,sign:[0,5,8,4],past:1,second:[0,7,14],field_creat:[12,4],further:1,durat:9,click:[0,4,5,7,8,14],append:2,even:10,what:1,hide:[4,5,7,8,9,10,13,14],appear:[1,8],clock:1,section:1,workflow:8,current:[1,8,12,9],delet:[1,4,7,8,9,10,13,14],"new":[1,4,5,7,8,9,10,11,13,14],net:[1,2,6,3],delivery_t:8,ever:1,method:[5,8,13,4,9],can:[0,1,2,4,5,7,8,9,11,12,13],created_t:[9,14],widget:[7,10,8,9,13],full:1,hash:0,datematch:0,displai:10,variat:9,gener:[0,8,12,14],onli:[5,8],here:[0,1,3,5,6,8],json:[0,1,3,4,6,7],bodi:[8,9],let:[1,4,10],address:[0,1,8,6,9],along:8,sinc:8,valu:[0,5,7,8,10,11],field_upd:[12,4],search:[8,9],survei:14,sender:[9,14],larger:2,queue:5,prior:9,permit:9,action:[0,8],chang:[8,4],overrid:8,campaign:5,newbi:5,appli:[7,14],app:14,prefer:0,young:1,myemma:[4,5,7,8,9,13],filenam:8,customer_shar:5,api:[8,9],curlopt_postfield:[1,3],total:5,jone:[7,5,8,13],select:[1,10],"12t11":[7,5,8,9,13],newslett:[7,8,13],describ:7,would:[0,1],commun:1,from_group_id:13,regist:4,two:[0,5],coverag:1,next:[0,1],create_webhook:4,few:[5,8],call:[8,4],criteria:7,member_add_to_group:[12,4],type:[1,3,4,5,6,7,8,10,9,14],until:2,more:[0,4,7,8,9,13],peopl:5,relat:[1,8,11,9],about:[10,8,12,4,9],notic:8,thide:[4,5,7,8,9,10,13,14],flag:[5,7,8,10,9,14],exce:2,indic:8,examin:1,particular:[1,4,5,8,10,12,9],in_progress:5,curl_getinfo:[1,6,3],origin:9,must:[0,7,8,13,10],none:9,endpoint:[1,4,5,7,8,9,10,13,14],join:[0,7],hour:0,der:1,member_sinc:[0,5,7,8,9,13],uniqu:5,histori:8,soup:7,remain:[0,9],archiv:[5,9],member_optout:[12,4],drill:5,control:[1,11,9],give:5,process:8,forward_mailing_id:5,email_domain:[0,5],share:[0,5,8,4],accept:[0,5,7,8,9,10,11,13,14],total_click:5,tag:[8,11,9],want:[1,12,13,5],opt_in_url:8,occur:[7,12],some_numeric_field:0,delai:14,alwai:0,webhook_event_id:4,cours:1,multipl:[10,8],first_nam:[1,3,5,7,8,9,10,11,13,14],started_or_finish:[9,14],anoth:[9,13],get:[1,4,5,7,8,9,10,13,14],message_open:[12,4],html_bodi:[9,14],share_statu:5,push_offset:14,del_statu:5,tild:5,num_members_upd:8,simpl:0,chri:9,pizza:[7,8],map:0,birthdai:[10,14],referenc:7,sundai:0,jacqu:1,membership:13,taco:[7,5,8,9,13],date:[5,8,14,10],xxxx:6,associ:[1,8,9,4,5],grow:1,welcom:11,add_onli:8,"short":0,json_encod:[1,3],optout:[5,8,13],num_dupl:8,favorit:10,correspond:[0,1],greet:11,predic:1,issu:[1,10],inform:[1,4,6,8,9,10,13],combin:7,allow:[0,7,8],some_zipcode_field:0,signed_up:5,order:[5,10],michel:[8,9],mailing_nam:5,checkbox:10,fields_upd:8,over:2,becaus:12,buyer:[7,8,9,13],comma:[9,13],is_dis:14,vari:8,paramet:[2,4,5,7,8,9,10,13,14],widget_typ:10,style:[0,4,5,7,8,9,10,13,14],monitor:1,how:[7,1,2,4],fix:1,import_start:8,better:[13,14],platform:1,pend:[1,9],mailing_list:9,onc:9,hidden:13,main:1,might:[1,4],link_nam:[5,9],them:[8,9],"return":[0,1,4,5,7,8,9,10,12,13,14],greater:[0,8],thei:[0,9],food:10,timestamp:[0,5,12,9,10],spell:4,nashvil:1,dai:0,auth:1,instead:[12,2,8],now:5,down:5,term:1,alex:9,name:[0,4,5,7,8,9,10,11,13,14],edit:[7,1,14,10],troubleshoot:1,drop:1,authent:[1,6,4,3],successufulli:4,separ:[1,9,13],each:[1,2,5,9,12,11,13],found:[8,9,4,14],updat:[4,7,8,9,10,13,14],denni:1,status:[8,9],domain:0,weight:[4,5,7,8,9,10,13,14],resum:9,individu:[5,8],hard:[0,5],last_nam:[1,3,5,7,8,9,10,11,13,14],"05t15":5,connect:[1,6,3],doug:1,our:[1,11,12,4,14],happen:[1,4,5],commiss:1,short_display_nam:10,special:[0,7,8,13],out:[0,1,4,5,7,8,10,13],variabl:[1,6,3],message_shar:[12,4],network:[5,12],private_api_kei:[1,6,3],check_multipl:10,content:[1,11,6,9,3],cancel_t:[9,14],rel:0,print:6,correct:10,integr:[1,14],benjamin:[1,8],qualifi:11,insid:1,advanc:0,contain:[0,5,7,13,10,9],given:[0,8,9,4],standard:[5,9],status_from:8,base:[1,8,5],recipient_search:9,dictionari:8,put:[4,7,8,9,10,13,14],span:[4,5,7,8,9,10,13,14],"13t23":[7,5,8],refer:[5,7,8,13,10,9],visit:11,enlist:8,could:1,omit:5,success:[1,3,7,8,9,13],filter:[7,1,9],pagin:1,member_id:[5,7,8,9,12,13],summari:[1,5],assign:9,first:[0,1,10,5],oper:[7,1,14],rang:5,notifi:[1,12],directli:0,curlopt_ssl_verifyp:[1,6,3],curl_init:[1,6,3],number:[5,2,13,3,10],placehold:1,mai:12,unlik:9,alreadi:[10,8,9,13],done:8,plaintext_pref:[7,8,9,13],oppos:8,open:[0,3,4,5,6,7,8],payload:4,fanci:5,size:2,differ:0,"long":10,script:1,data:[1,10,4,3,5],system:[1,8,12,4,14],messag:[4,5,8,11,9,14],attach:11,outag:1,friend:11,curlinfo_http_cod:[1,6,3],shell:0,option:[0,5,7,8,9,10,13,14],especi:8,signup:[0,1,4,5,8,14],copi:[8,13],member_upd:[12,4],specifi:[0,2,7,8,10,11,9,14],curl_exec:[1,6,3],curlopt_httphead:[1,6,3],member_signup:[12,4],create_search:7,part:[0,9],enclos:11,initi:[10,9],than:[0,1,2,3,12,13],with_plaintext:9,"02t10":[5,8],"02t11":[5,8],"02t13":5,nathan:8,whenev:8,provid:[1,5,8,12,9,14],remov:[8,13,4],mailing_start:4,rate:2,structur:7,charact:9,greg:8,trackabl:11,were:5,minut:0,danc:1,error_count:[7,8,9,13],pre:[4,5,7,8,9,10,13,14],cleaner:1,sai:0,share_id:5,signup_form_id:[0,8,12,9,14],plaintext:[5,9,14],pass:[1,8,9,3],ani:[0,1,2,7,8,9],have:[0,1,5,8,12,9],tabl:5,need:1,seen:5,"null":[7,8,13,10,9,14],kevin:[9,14],signup_mail:0,caus:14,built:1,min:5,check:[8,6,9],offer:1,object_id:14,note:[1,8,9,4],also:[0,4,5,7,8,9,11,13],exampl:[0,1,8,7,5],take:[0,8,4],which:[0,1,4,8,10,12,9,14],some_number_field:0,datacent:[9,14],singl:[0,1,3,4,5,8,10,12,13],excit:11,sure:1,delete_memb:13,normal:9,parent_mail:14,recipient_count:[5,9,14],previou:9,field_id:[10,12,14],last_run_at:7,most:14,rsvp_email:8,"class":[4,5,7,8,9,10,13,14],don:1,member_group_id:[8,9,13],mcconnel:[9,14],url:[1,3,4,5,6,12],mailing_finish:[12,4],clear:10,request:[1,2,9,3],doe:[0,5,7,8,9,10,13],member_status_upd:[12,4],declar:9,tech:4,determin:[1,9],add:[1,8,13,3],dataset:10,dow:0,recipi:9,"6db0cc7e6fdb2da589b65f29d90c96b6":9,show:[4,5,7,8,9,10,11,13,14],text:[10,11,12],least:0,syntax:[1,9],radio:10,font:[4,5,7,8,9,10,13,14],fine:9,find:[1,6,5],status_to:8,toast:[7,5,8,13],access:[1,5],giant:12,just:[0,1,9],pretti:8,column_ord:10,"true":[0,1,2,3,4,6,7,8,9,10,13,14],explain:[0,1],winner:9,activ:[1,5,7,8,13,9],figur:1,should:[1,2,3,7,8,11,9],"public":[1,9],templat:[11,14],share_count:5,count:[1,2,3,5],variou:[8,13],confirmed_opt_in:[7,8,9,13],familiar:1,express:0,account:[1,4,5,7,8,9,10,13,14],repo:1,cannot:[8,9,4],progress:9,report:[10,8],requir:[1,7,8,10,11,9],object:[1,13,5],receiv:[0,2,5,8,12,9],favorite_food:[5,7,8,13,10,9],bar:0,organ:1,include_archiv:[5,9],search_id:7,"default":[5,11,13,4,9],ref_member_id:5,message_share_click:[12,4],through:[1,8,9,4],where:[0,1,8,11,7],view:1,respond:8,set:[0,1,2,3,6,8,9,12,13],link_id:[0,5,12,9,14],see:[7,1,8],result:[0,1,2,5,8,9],respons:[10,8,9,13],fail:[5,9,4],themselv:2,member_field:[0,7],xxxxx:6,subject:[5,8,12,9,14],statu:[1,4,5,7,8,9,13],fancyonion:11,kei:[0,1,8,11,4],is_schedul:9,message_forward:[12,4],databas:8,someth:1,last_modified_at:[7,8,9,13],addresse:5,written:1,between:[0,7,2],"import":[1,8,4,10],subscript:[1,3],entiti:1,curlopt_url:[1,6,3],email:[0,1,5,7,8,9,13],wide:14,cancel_by_user_id:[9,14],extend:1,numer:10,radiu:0,http404:[4,5,7,8,9,10,13,14],job:13,entir:[0,8],share_click:5,to_group_id:13,curlopt_returntransf:[1,6,3],curl_setopt:[1,6,3],member_remove_from_group:[12,4],send_start:[0,9,14],protect:1,accident:2,last:[0,5,10],delimit:5,lentil:7,pertain:5,message_click:[12,4],curlopt_post:[1,3],audienc:[1,8,9],mang:0,improv:1,http500:14,seri:5,com:[4,5,6,7,8,9,11,13],zip_code_field:0,"03t15":[7,5,8,13],point:1,toni:[7,8],overview:5,period:1,colon:[7,11],optout_count:[7,8,9,13],suppli:9,cancel:9,tuesdai:0,duplic:5,quit:[5,8],user_id:4,recur:14,headsup:9,addition:[1,2],due:5,been:[1,8,10,5],mark:[8,9],whom:9,tshow:[4,5,7,8,9,10,13,14],trigger:[5,7,8,13,10,9],unsubscrib:0,treat:8,interest:[10,4],basic:[0,1,4,8,13,14],monthli:[7,8,13],addit:[8,9,13],member_delet:[12,4],hesit:1,blob:4,email_us:[0,5],mailing_mailing_id:5,mailing_id:[0,5,8,12,9,14],fire:[8,4,14],xxx:[1,3],rubi:1,argument:[0,5],link_ord:[5,9],input:1,present:7,statist:8,"case":[1,8],look:[1,14,10],frozen:9,shortcut_nam:10,email_error:[7,8,9,13],defin:[0,10,8,9],"while":0,smith:[7,5,8,9,13],outcom:5,abov:[0,1,8,7],error:[1,3,6,8,10,13],veen:1,loop:8,opt:[0,4,5,7,8,13],readi:9,deliv:5,recipient_group:9,equal:0,scot:8,itself:0,new_statu:12,webhook_id:4,account_id:[1,3,4,5,6,7,8,9,10,12,13,14],develop:1,recipient_memb:9,perform:8,make:[1,12,6,10],belong:[0,8,4],same:[8,4],easier:12,member:[10,9,13],python:1,html:9,split:9,opt_in_messag:8,complet:[1,3,4,6,8,9],week:0,finish:[5,4],http:[1,2,3,4,5,6,11,9],nest:0,someon:4,rais:[4,5,7,8,9,10,13,14],winner_id:9,php:1,studi:1,recent:[1,8],kept:11,center:0,well:[1,5],inherit:9,person:9,mailing_typ:[9,14],without:[0,1],command:1,thi:[0,1,4,5,7,8,9,10,12,13,14],undefin:0,http_code:[1,6,3],latest:11,construct:[0,7,9],identifi:8,paus:9,execut:[1,3],less:0,"boolean":[1,5,7,8,9,10,13,14],resp:[4,5,7,8,9,10,13,14],"_post":[1,3],against:0,aspect:13,recipient_email:9,source_filenam:8,yet:5,languag:1,"12t09":[7,8],display_nam:10,easi:[1,12,10],"01t00":8,had:0,littl:1,blog:4,rsvp_name:8,other:[1,8,9,3,5],curlopt_userpwd:[1,6,3],import_finish:[8,12,4],schedul:9,els:[1,6,3],save:7,match:[0,7],build:1,sanit:1,applic:[1,6,3],around:1,handl:1,disposit:1,crud:[8,13,14],print_r:[6,3],mailing_statu:[9,14],know:[1,4,5],background:13,parent_mailing_id:[9,14],bit:1,insert:11,ignor:8,emma:[7,5,8,9,13],like:1,onion:11,deprec:4,arbitrari:8,manual:9,integ:[1,8,14,10,5],collect:1,href:[4,5,7,8,9,10,13,14],necessari:8,either:[0,5,7],bunch:0,output:9,group_id:[1,8,12,3],soft:[0,5],manag:[0,1,13,4],import_id:[8,12],www:[5,9],old:7,deal:[8,13],captur:1,arrai:[0,1,3,5,6,7,8,9,10,12,13,14],some:[1,11,5],back:8,field_delet:[12,4],opt_in_subject:8,intern:10,sampl:[1,4,5,7,8,9,10,13,14],elaps:[2,9],unless:1,deleted_at:[7,8,13,10,9,14],some_string_field:0,librari:11,woodcock:1,emmarubi:1,bounce_count:[7,8,9,13],emmapython:1,public_kei:4,deliveri:5,broad:12,per:[5,8],send_finish:[9,14],larg:[0,2],condit:7,three:9,network_cod:12,localhost:9,emmaphp:1,with_html_bodi:9,who:[0,5,8],bold:[4,5,7,8,9,10,13,14],event_typ:14,inspect:1,usag:[1,8],monsewicz:1,num_members_ad:8,fulli:11,from:[1,4,8,9,13,14],post:[1,3,4,7,8,9,10,13,14],group_creat:[12,4],gladi:[7,5,8,13],hurst:1,actual:5,zip:0,groups_upd:8,column:10,page:[1,2],includ:[1,5,7,8,9,10,13],webview:9,mean:0,disabl:[9,14],block:[1,2],yyyi:5,own:[1,8],member_data:[1,3],glob:0,bounc:[0,5],within:[0,8],encod:[9,4],delivery_typ:[5,8],compos:0,webview_shar:5,pair:11,field_typ:10,active_count:[7,8,9,13],public_webview_url:9,aben:1,pivot:5,your:[1,4,5,7,8,9,10,13],websit:11,fast:8,van:1,wai:[1,12],area:1,overus:2,group_nam:[8,12,13,9],support:[1,12],unique_click:5,iter:2,submit:1,custom:[5,8,11,10],avail:[0,11,4],start:[1,2,8,4],interfac:12,send_at:[9,14],exceed:2,"var":3,purged_at:[7,8,9,13,14],interv:14,fork:1,head:[1,8,6,9,3],form:[1,3,4,6,8,10,14],enough:2,forc:1,forward:[0,5,8,9,4],"31st":0,group_typ:[8,9,13],push_offset_unit:14,link:[0,4,5,11,9,14],oauth:14,line:[1,5],realli:1,opt_out_url:8,archived_t:[9,14],info:4,pull:[1,2],made:1,possibl:[5,8,12],whether:8,maximum:2,tell:12,http403:9,record:[0,7,8],below:[0,1,8,12],http400:[7,8,9],limit:[5,2,8,9],some_array_field:0,otherwis:[1,8,10],start_t:14,mta:5,expect:1,notif:9,creat:[4,5,7,13,10,9,14],"int":5,retriev:[7,1,2,8,9],year:[0,5,9,14],repres:5,exist:[0,4,5,7,8,10,13],behavior:11,bob:[7,5],curl:[1,6],failure_messag:[9,14],portland:1,probabl:14,echo:[1,3],successfulli:[5,8,9],mailing_subject:12,grp:13,extract:11,user:[0,1,8,9,13],when:[8,12,4,9],detail:[1,4,7,8,9,10,13],invalid:[7,8,9],event:[4,7,8,13,12,9,14],valid:[5,8,9,13],futur:1,num_skip:8,failure_t:[9,14],test:[5,6,7,13,9,14],signup_integr:14,you:[0,1,2,4,5,7,8,9,10,11,12,13],emmasdk:1,member_status_id:[7,5,8,9,13],public_api_kei:[1,6,3],stat:[5,9],claus:[0,7],event_nam:[12,4],e2ma:[1,2,6,3],error_messag:8,param:[8,9,4],app_messag:[1,3],ella:8,bulk:[1,8],clicked_uniqu:5,heads_up_email:9,longer:9,home:11,confirm:8,descript:[4,14],ohmyemma:1,portion:0,opted_out:5,time:[1,2,8,13,5],reply_to:[9,14],resource_url:12,inc:1,hello:[11,9,14]},objtypes:{"0":"http:get","1":"http:put","2":"http:post","3":"http:delete"},objnames:{"0":["http","get","HTTP get"],"1":["http","put","HTTP put"],"2":["http","post","HTTP post"],"3":["http","delete","HTTP delete"]},filenames:["member_search","index","pagination","php_signup_example","api/external/webhooks","api/external/response","php_get_member_example","api/external/searches","api/external/members","api/external/mailings","api/external/fields","placeholders","webhooks","api/external/groups","api/external/triggers"],titles:["Search Syntax","Emma API","Pagination","PHP Signup Example","Webhooks","Response","PHP Get Member By Email Example","Searches","Members","Mailings","Fields","Placeholder Syntax","Webhook Usage","Groups","Triggers"],objects:{"":{"/#account_id/members/#member_id/groups/remove":[8,1,1,"put--#account_id-members-#member_id-groups-remove"],"/#account_id/mailings/#mailing_id/winner/#winner_id":[9,2,1,"post--#account_id-mailings-#mailing_id-winner-#winner_id"],"/#account_id/response/#mailing_id/in_progress":[5,0,1,"get--#account_id-response-#mailing_id-in_progress"],"/#account_id/members/groups/remove":[8,1,1,"put--#account_id-members-groups-remove"],"/#account_id/mailings/#mailing_id/searches":[9,0,1,"get--#account_id-mailings-#mailing_id-searches"],"/#account_id/fields":[10,2,1,"post--#account_id-fields"],"/#account_id/members/#group_id/copy":[8,1,1,"put--#account_id-members-#group_id-copy"],"/#account_id/members/signup":[8,2,1,"post--#account_id-members-signup"],"/#account_id/members/status":[8,1,1,"put--#account_id-members-status"],"/#account_id/response/#mailing_id/shares/overview":[5,0,1,"get--#account_id-response-#mailing_id-shares-overview"],"/#account_id/webhooks/events":[4,0,1,"get--#account_id-webhooks-events"],"/#account_id/members/#member_id/optout":[8,0,1,"get--#account_id-members-#member_id-optout"],"/#account_id/webhooks":[4,3,1,"delete--#account_id-webhooks"],"/#account_id/fields/#field_id":[10,3,1,"delete--#account_id-fields-#field_id"],"/#account_id/response/#mailing_id":[5,0,1,"get--#account_id-response-#mailing_id"],"/#account_id/groups/#member_group_id/members/remove":[13,3,1,"delete--#account_id-groups-#member_group_id-members-remove"],"/#account_id/searches":[7,2,1,"post--#account_id-searches"],"/#account_id/members/imports":[8,0,1,"get--#account_id-members-imports"],"/#account_id/forwards/#mailing_id/#member_id":[9,2,1,"post--#account_id-forwards-#mailing_id-#member_id"],"/#account_id/response/#mailing_id/customer_share_clicks":[5,0,1,"get--#account_id-response-#mailing_id-customer_share_clicks"],"/#account_id/mailings/#mailing_id/messages/#member_id":[9,0,1,"get--#account_id-mailings-#mailing_id-messages-#member_id"],"/#account_id/members/#member_id/mailings":[8,0,1,"get--#account_id-members-#member_id-mailings"],"/#account_id/groups/#from_group_id/#to_group_id/members/copy":[13,1,1,"put--#account_id-groups-#from_group_id-#to_group_id-members-copy"],"/#account_id/triggers":[14,2,1,"post--#account_id-triggers"],"/#account_id/triggers/#trigger_id":[14,3,1,"delete--#account_id-triggers-#trigger_id"],"/#account_id/members/delete":[8,1,1,"put--#account_id-members-delete"],"/#account_id/mailings/#mailing_id/groups":[9,0,1,"get--#account_id-mailings-#mailing_id-groups"],"/#account_id/response/#mailing_id/forwards":[5,0,1,"get--#account_id-response-#mailing_id-forwards"],"/#account_id/members/#member_id":[8,3,1,"delete--#account_id-members-#member_id"],"/#account_id/triggers/#trigger_id/mailings":[14,0,1,"get--#account_id-triggers-#trigger_id-mailings"],"/#account_id/searches/#search_id/members":[7,0,1,"get--#account_id-searches-#search_id-members"],"/#account_id/members/status/:status_from/to/:status_to":[8,1,1,"put--#account_id-members-status--status_from-to--status_to"],"/#account_id/response/#mailing_id/sends":[5,0,1,"get--#account_id-response-#mailing_id-sends"],"/#account_id/members":[8,3,1,"delete--#account_id-members"],"/#account_id/members/email/:email":[8,0,1,"get--#account_id-members-email--email"],"/#account_id/response/#mailing_id/links":[5,0,1,"get--#account_id-response-#mailing_id-links"],"/#account_id/searches/#search_id":[7,3,1,"delete--#account_id-searches-#search_id"],"/#account_id/members/imports/#import_id/members":[8,0,1,"get--#account_id-members-imports-#import_id-members"],"/#account_id/fields/#field_id/clear":[10,2,1,"post--#account_id-fields-#field_id-clear"],"/#account_id/groups/#member_group_id/members":[13,3,1,"delete--#account_id-groups-#member_group_id-members"],"/#account_id/members/imports/#import_id":[8,0,1,"get--#account_id-members-imports-#import_id"],"/#account_id/response":[5,0,1,"get--#account_id-response"],"/#account_id/response/#mailing_id/opens":[5,0,1,"get--#account_id-response-#mailing_id-opens"],"/#account_id/members/imports/delete":[8,3,1,"delete--#account_id-members-imports-delete"],"/#account_id/mailings":[9,2,1,"post--#account_id-mailings"],"/#account_id/mailings/cancel/#mailing_id":[9,3,1,"delete--#account_id-mailings-cancel-#mailing_id"],"/#account_id/mailings/validate":[9,2,1,"post--#account_id-mailings-validate"],"/#account_id/response/#mailing_id/deliveries":[5,0,1,"get--#account_id-response-#mailing_id-deliveries"],"/#account_id/mailings/#mailing_id/members":[9,0,1,"get--#account_id-mailings-#mailing_id-members"],"/#account_id/response/#share_id/customer_share":[5,0,1,"get--#account_id-response-#share_id-customer_share"],"/#account_id/webhooks/#webhook_id":[4,3,1,"delete--#account_id-webhooks-#webhook_id"],"/#account_id/members/add":[8,2,1,"post--#account_id-members-add"],"/#account_id/members/email/optout/:email":[8,1,1,"put--#account_id-members-email-optout--email"],"/#account_id/response/#mailing_id/optouts":[5,0,1,"get--#account_id-response-#mailing_id-optouts"],"/#account_id/response/#mailing_id/shares":[5,0,1,"get--#account_id-response-#mailing_id-shares"],"/#account_id/groups/#member_group_id":[13,3,1,"delete--#account_id-groups-#member_group_id"],"/#account_id/mailings/#mailing_id":[9,3,1,"delete--#account_id-mailings-#mailing_id"],"/#account_id/members/#member_id/groups":[8,3,1,"delete--#account_id-members-#member_id-groups"],"/#account_id/groups":[13,2,1,"post--#account_id-groups"],"/#account_id/response/#mailing_id/clicks":[5,0,1,"get--#account_id-response-#mailing_id-clicks"],"/#account_id/mailings/#mailing_id/headsup":[9,0,1,"get--#account_id-mailings-#mailing_id-headsup"],"/#account_id/response/#mailing_id/signups":[5,0,1,"get--#account_id-response-#mailing_id-signups"],"/#account_id/response/#mailing_id/customer_shares":[5,0,1,"get--#account_id-response-#mailing_id-customer_shares"]}},titleterms:{oper:0,quickstart:1,creat:12,"boolean":0,overview:[0,1,11,12],interv:0,share:12,syntax:[0,11],api:1,wrapper:1,respons:5,open:12,click:12,categori:1,statu:12,from:12,delet:12,todo:11,messag:12,member:[8,6,12],field:[10,12],add:12,trigger:14,call:1,forward:12,mail:[12,9],document:1,email:6,updat:12,finish:12,get:6,webhook:[12,4],signup:[12,3],usag:12,search:[0,7],word:1,"import":12,date:0,group:[12,13],post:12,php:[6,3],data:12,addit:1,placehold:11,term:0,wise:1,optout:12,remov:12,predic:0,filter:0,exampl:[6,3],pagin:2,emma:1}}) \ No newline at end of file diff --git a/webhooks.html b/webhooks.html index 750a528..88a8446 100644 --- a/webhooks.html +++ b/webhooks.html @@ -506,7 +506,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Jul 30, 2013 at 03:26 PM. + Last updated on Aug 22, 2013 at 08:35 AM. </div> </body> </html> \ No newline at end of file From efa8c97ca6a8923839db4cfd84c8aeb52d34166f Mon Sep 17 00:00:00 2001 From: Jason Bynum <jason.bynum@myemma.com> Date: Thu, 22 Aug 2013 09:41:51 -0500 Subject: [PATCH 057/219] Update audience documentation. --- api/external/fields.html | 2 +- api/external/groups.html | 2 +- api/external/mailings.html | 10 ++--- api/external/members.html | 90 ++++++++----------------------------- api/external/response.html | 2 +- api/external/searches.html | 2 +- api/external/triggers.html | 16 +++---- api/external/webhooks.html | 2 +- genindex.html | 2 +- http-routingtable.html | 2 +- index.html | 2 +- member_search.html | 2 +- pagination.html | 2 +- php_get_member_example.html | 2 +- php_signup_example.html | 2 +- placeholders.html | 2 +- search.html | 2 +- searchindex.js | 2 +- webhooks.html | 2 +- 19 files changed, 47 insertions(+), 101 deletions(-) diff --git a/api/external/fields.html b/api/external/fields.html index fbc44ed..658546c 100644 --- a/api/external/fields.html +++ b/api/external/fields.html @@ -414,7 +414,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Aug 22, 2013 at 08:35 AM. + Last updated on Aug 22, 2013 at 09:41 AM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/groups.html b/api/external/groups.html index b5a1e86..55ea09b 100644 --- a/api/external/groups.html +++ b/api/external/groups.html @@ -708,7 +708,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Aug 22, 2013 at 08:35 AM. + Last updated on Aug 22, 2013 at 09:41 AM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/mailings.html b/api/external/mailings.html index c62b12d..0868059 100644 --- a/api/external/mailings.html +++ b/api/external/mailings.html @@ -162,7 +162,7 @@ <h1>Mailings<a class="headerlink" href="#mailings" title="Permalink to this head "started_or_finished": null, "account_id": 100, "disabled": false, - "created_ts": "@D:2013-08-22T08:35:16", + "created_ts": "@D:2013-08-22T09:41:45", "sender": "Kevin McConnell", "plaintext_only": false, "name": "Cancellable mailing", @@ -191,7 +191,7 @@ <h1>Mailings<a class="headerlink" href="#mailings" title="Permalink to this head "started_or_finished": null, "account_id": 100, "disabled": false, - "created_ts": "@D:2013-08-22T08:35:16", + "created_ts": "@D:2013-08-22T09:41:45", "sender": "Kevin McConnell", "plaintext_only": false, "name": "Sample Mailing", @@ -233,7 +233,7 @@ <h1>Mailings<a class="headerlink" href="#mailings" title="Permalink to this head "started_or_finished": null, "account_id": 100, "disabled": false, - "created_ts": "@D:2013-08-22T08:35:16", + "created_ts": "@D:2013-08-22T09:41:45", "sender": "Kevin McConnell", "plaintext_only": false, "name": "Cancellable mailing", @@ -262,7 +262,7 @@ <h1>Mailings<a class="headerlink" href="#mailings" title="Permalink to this head "started_or_finished": null, "account_id": 100, "disabled": false, - "created_ts": "@D:2013-08-22T08:35:16", + "created_ts": "@D:2013-08-22T09:41:45", "sender": "Kevin McConnell", "plaintext_only": false, "name": "Sample Mailing", @@ -847,7 +847,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Aug 22, 2013 at 08:35 AM. + Last updated on Aug 22, 2013 at 09:41 AM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/members.html b/api/external/members.html index 7ac1d68..c1e6eec 100644 --- a/api/external/members.html +++ b/api/external/members.html @@ -524,8 +524,7 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli <dl class="post"> <dt id="post--#account_id-members-signup"> <tt class="descname">POST </tt><tt class="descname">/#account_id/members/signup</tt><a class="headerlink" href="#post--#account_id-members-signup" title="Permalink to this definition">¶</a></dt> -<dd><blockquote> -<div><p>Takes the necessary actions to signup a member and enlist them in the +<dd><p>Takes the necessary actions to signup a member and enlist them in the provided group ids. You can send the same member multiple times and pass in new group ids to signup.</p> <p>This process triggers the opt-out workflow, and will send a mailing to @@ -540,81 +539,30 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field-odd field"><th class="field-name">param email:</th><td class="field-body">Email address of the member to sign-up.</td> -</tr> -<tr class="field-even field"><th class="field-name">type email:</th><td class="field-body">string</td> -</tr> -</tbody> -</table> -</div></blockquote> -<dl class="docutils"> -<dt><<<<<<< HEAD</dt> -<dd><table class="first last docutils field-list" frame="void" rules="none"> -<col class="field-name" /> -<col class="field-body" /> -<tbody valign="top"> -<tr class="field-odd field"><th class="field-name" colspan="2">param group_ids:</th></tr> -<tr class="field-odd field"><td> </td><td class="field-body">An array of group ids to associate sign-up with.</td> -</tr> -</tbody> -</table> -</dd> -</dl> -<blockquote> -<div><table class="docutils field-list" frame="void" rules="none"> -<col class="field-name" /> -<col class="field-body" /> -<tbody valign="top"> -<tr class="field-odd field"><th class="field-name" colspan="2">param group_ids:</th></tr> -<tr class="field-odd field"><td> </td><td class="field-body">An array of group ids to associate -sign-up with.</td> -</tr> -</tbody> -</table> -</div></blockquote> -<dl class="docutils"> -<dt>>>>>>>> updates per scot</dt> -<dd><table class="first docutils field-list" frame="void" rules="none"> -<col class="field-name" /> -<col class="field-body" /> -<tbody valign="top"> -<tr class="field-odd field"><th class="field-name">type group_ids:</th><td class="field-body">Array of strings (group_ids)</td> -</tr> -<tr class="field-even field"><th class="field-name">param fields:</th><td class="field-body">Optional. Names and values of user-defined fields to update.</td> -</tr> -<tr class="field-odd field"><th class="field-name">type fields:</th><td class="field-body">dictionary</td> -</tr> -<tr class="field-even field"><th class="field-name" colspan="2">param signup_form_id:</th></tr> -<tr class="field-even field"><td> </td><td class="field-body">Optional. Indicate that this member used a +<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> +<li><strong>email</strong> (<em>string</em>) – Email address of the member to sign-up.</li> +<li><strong>group_ids</strong> (<em>Array of strings (group_ids)</em>) – An array of group ids to associate sign-up with.</li> +<li><strong>fields</strong> (<em>dictionary</em>) – Optional. Names and values of user-defined fields to update.</li> +<li><strong>signup_form_id</strong> (<em>integer</em>) – Optional. Indicate that this member used a particular signup form. This is important if you have custom mailings for a particular signup form -and so that signup-based triggers will be fired.</td> -</tr> -<tr class="field-odd field"><th class="field-name" colspan="2">type signup_form_id:</th></tr> -<tr class="field-odd field"><td> </td><td class="field-body">integer</td> -</tr> -<tr class="field-even field"><th class="field-name" colspan="2">param opt_in_subject:</th></tr> -<tr class="field-even field"><td> </td><td class="field-body">Optional. Override the confirmation message -subject with your own copy.</td> -</tr> -<tr class="field-odd field"><th class="field-name" colspan="2">type opt_in_subject:</th></tr> -<tr class="field-odd field"><td> </td><td class="field-body">string</td> -</tr> -<tr class="field-even field"><th class="field-name" colspan="2">param opt_in_message:</th></tr> -<tr class="field-even field"><td> </td><td class="field-body">Optional. Override the confirmation message body +and so that signup-based triggers will be fired.</li> +<li><strong>opt_in_subject</strong> (<em>string</em>) – Optional. Override the confirmation message +subject with your own copy.</li> +<li><strong>opt_in_message</strong> (<em>string</em>) – Optional. Override the confirmation message body with your own copy. Must include the following tags: [rsvp_name], [rsvp_email], [opt_in_url], -[opt_out_url].</td> -</tr> -<tr class="field-odd field"><th class="field-name" colspan="2">type opt_in_message:</th></tr> -<tr class="field-odd field"><td> </td><td class="field-body">string</td> +[opt_out_url].</li> +</ul> +</td> </tr> -<tr class="field-even field"><th class="field-name">return:</th><td class="field-body">The member_id of the member, and their status. The status will -be reported as ‘a’ (active), ‘e’ (error), or ‘o’ (optout).</td> +<tr class="field-even field"><th class="field-name">Return :</th><td class="field-body"><p class="first last">The member_id of the member, and their status. The status will +be reported as ‘a’ (active), ‘e’ (error), or ‘o’ (optout).</p> +</td> </tr> </tbody> </table> -<p class="last"> +<p> <div class="sample-response hide-response"> <span style="font-weight:bold;">Sample Response</span> <a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> @@ -639,8 +587,6 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli </pre> </div> </p> -</dd> -</dl> </dd></dl> <dl class="put"> @@ -1335,7 +1281,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Aug 22, 2013 at 08:35 AM. + Last updated on Aug 22, 2013 at 09:41 AM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/response.html b/api/external/response.html index ead3b85..73a3592 100644 --- a/api/external/response.html +++ b/api/external/response.html @@ -1019,7 +1019,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Aug 22, 2013 at 08:35 AM. + Last updated on Aug 22, 2013 at 09:41 AM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/searches.html b/api/external/searches.html index c97cc87..372779a 100644 --- a/api/external/searches.html +++ b/api/external/searches.html @@ -513,7 +513,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Aug 22, 2013 at 08:35 AM. + Last updated on Aug 22, 2013 at 09:41 AM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/triggers.html b/api/external/triggers.html index bb273b0..3666e8a 100644 --- a/api/external/triggers.html +++ b/api/external/triggers.html @@ -126,7 +126,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "plaintext": "Hello [% member:first_name %]!", "recipient_count": 0, "cancel_ts": null, - "created_ts": "@D:2013-08-22T08:35:16", + "created_ts": "@D:2013-08-22T09:41:45", "month": null, "failure_ts": null, "year": null, @@ -155,7 +155,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "field_id": 203, "signup_integrations": null, "push_offset_units": "0:-14:0:0", - "start_ts": "@D:2013-08-22T08:35:16", + "start_ts": "@D:2013-08-22T09:41:45", "trigger_id": 100, "name": "Birthday triggers", "signups": null, @@ -175,7 +175,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "plaintext": "Hello [% member:first_name %]!", "recipient_count": 0, "cancel_ts": null, - "created_ts": "@D:2013-08-22T08:35:16", + "created_ts": "@D:2013-08-22T09:41:45", "month": null, "failure_ts": null, "year": null, @@ -204,7 +204,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "field_id": null, "signup_integrations": null, "push_offset_units": "0:3:0:0", - "start_ts": "@D:2013-08-22T08:35:16", + "start_ts": "@D:2013-08-22T09:41:45", "trigger_id": 101, "name": "Test Signup Form triggers", "signups": [ @@ -333,7 +333,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "plaintext": "Hello [% member:first_name %]!", "recipient_count": 0, "cancel_ts": null, - "created_ts": "@D:2013-08-22T08:35:16", + "created_ts": "@D:2013-08-22T09:41:45", "month": null, "failure_ts": null, "year": null, @@ -362,7 +362,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "field_id": 203, "signup_integrations": null, "push_offset_units": "0:-14:0:0", - "start_ts": "@D:2013-08-22T08:35:16", + "start_ts": "@D:2013-08-22T09:41:45", "trigger_id": 100, "name": "Birthday triggers", "signups": null, @@ -465,7 +465,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head "plaintext": "Hello [% member:first_name %]!", "recipient_count": 0, "cancel_ts": null, - "created_ts": "@D:2013-08-22T08:35:16", + "created_ts": "@D:2013-08-22T09:41:45", "month": null, "failure_ts": null, "year": null, @@ -542,7 +542,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Aug 22, 2013 at 08:35 AM. + Last updated on Aug 22, 2013 at 09:41 AM. </div> </body> </html> \ No newline at end of file diff --git a/api/external/webhooks.html b/api/external/webhooks.html index 8472278..9bc2de5 100644 --- a/api/external/webhooks.html +++ b/api/external/webhooks.html @@ -486,7 +486,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Aug 22, 2013 at 08:35 AM. + Last updated on Aug 22, 2013 at 09:41 AM. </div> </body> </html> \ No newline at end of file diff --git a/genindex.html b/genindex.html index ae3d75f..bb64f71 100644 --- a/genindex.html +++ b/genindex.html @@ -144,7 +144,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Aug 22, 2013 at 08:35 AM. + Last updated on Aug 22, 2013 at 09:41 AM. </div> </body> </html> \ No newline at end of file diff --git a/http-routingtable.html b/http-routingtable.html index d85870d..f3784e3 100644 --- a/http-routingtable.html +++ b/http-routingtable.html @@ -616,7 +616,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Aug 22, 2013 at 08:35 AM. + Last updated on Aug 22, 2013 at 09:41 AM. </div> </body> </html> \ No newline at end of file diff --git a/index.html b/index.html index 9c68ed4..edb72f8 100644 --- a/index.html +++ b/index.html @@ -349,7 +349,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Aug 22, 2013 at 08:35 AM. + Last updated on Aug 22, 2013 at 09:41 AM. </div> </body> </html> \ No newline at end of file diff --git a/member_search.html b/member_search.html index 0dd2070..001ec14 100644 --- a/member_search.html +++ b/member_search.html @@ -255,7 +255,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Aug 22, 2013 at 08:35 AM. + Last updated on Aug 22, 2013 at 09:41 AM. </div> </body> </html> \ No newline at end of file diff --git a/pagination.html b/pagination.html index dcc358a..eec4265 100644 --- a/pagination.html +++ b/pagination.html @@ -167,7 +167,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Aug 22, 2013 at 08:35 AM. + Last updated on Aug 22, 2013 at 09:41 AM. </div> </body> </html> \ No newline at end of file diff --git a/php_get_member_example.html b/php_get_member_example.html index b0e94a6..c317e24 100644 --- a/php_get_member_example.html +++ b/php_get_member_example.html @@ -182,7 +182,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Aug 22, 2013 at 08:35 AM. + Last updated on Aug 22, 2013 at 09:41 AM. </div> </body> </html> \ No newline at end of file diff --git a/php_signup_example.html b/php_signup_example.html index 56ccbdd..775b312 100644 --- a/php_signup_example.html +++ b/php_signup_example.html @@ -204,7 +204,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Aug 22, 2013 at 08:35 AM. + Last updated on Aug 22, 2013 at 09:41 AM. </div> </body> </html> \ No newline at end of file diff --git a/placeholders.html b/placeholders.html index 8dbfc7d..f44c908 100644 --- a/placeholders.html +++ b/placeholders.html @@ -182,7 +182,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Aug 22, 2013 at 08:35 AM. + Last updated on Aug 22, 2013 at 09:41 AM. </div> </body> </html> \ No newline at end of file diff --git a/search.html b/search.html index 463efbf..7df9c44 100644 --- a/search.html +++ b/search.html @@ -154,7 +154,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Aug 22, 2013 at 08:35 AM. + Last updated on Aug 22, 2013 at 09:41 AM. </div> </body> </html> \ No newline at end of file diff --git a/searchindex.js b/searchindex.js index 6fcb194..b5bd5af 100644 --- a/searchindex.js +++ b/searchindex.js @@ -1 +1 @@ -Search.setIndex({envversion:42,terms:{all:[0,1,4,5,8,9,10,11,12,13,14],code:[0,1,6,3],change_typ:8,queri:[0,2,4],month:[0,5,9,14],four:[0,5],mile:0,follow:[0,1,4,5,7,8,9,11,13],link_target:[5,9],privat:[1,9],specif:[8,9,4],friendli:5,send:[1,3,4,5,8,9],program:1,customer_share_click:5,those:[1,12,5],group_upd:[12,4],sent:[5,8,12,9,14],curl_clos:[1,6,3],certain:12,brown:[7,8],digit:5,everi:0,string:[0,4,5,7,8,9,10,12,13,14],fals:[1,3,4,5,6,7,8,9,10,13,14],end:[2,8],mailing_status:9,trigger_id:14,"22t08":[9,14],webview_share_click:5,affect:[7,8],member_add:[12,4],create_mail:9,new_boolean:10,foo:0,level:1,group_delet:[12,4],list:[0,1,2,4,5,7,8,9,10,11,12,13,14],upload:8,ryan:8,"try":8,item:2,plaintext_onli:[9,14],div:[4,5,7,8,9,10,13,14],survey_id:14,setup:1,pleas:[1,8,11,9],prevent:2,work:[1,4],ten:0,sync:10,sign:[0,5,8,4],past:1,second:[0,7,14],field_creat:[12,4],further:1,durat:9,click:[0,4,5,7,8,14],append:2,even:10,what:1,hide:[4,5,7,8,9,10,13,14],appear:[1,8],clock:1,section:1,workflow:8,current:[1,8,12,9],delet:[1,4,7,8,9,10,13,14],"new":[1,4,5,7,8,9,10,11,13,14],net:[1,2,6,3],delivery_t:8,ever:1,method:[5,8,13,4,9],can:[0,1,2,4,5,7,8,9,11,12,13],created_t:[9,14],widget:[7,10,8,9,13],full:1,hash:0,datematch:0,displai:10,variat:9,gener:[0,8,12,14],onli:[5,8],here:[0,1,3,5,6,8],json:[0,1,3,4,6,7],bodi:[8,9],let:[1,4,10],address:[0,1,8,6,9],along:8,sinc:8,valu:[0,5,7,8,10,11],field_upd:[12,4],search:[8,9],survei:14,sender:[9,14],larger:2,queue:5,prior:9,permit:9,action:[0,8],chang:[8,4],overrid:8,campaign:5,newbi:5,appli:[7,14],app:14,prefer:0,young:1,myemma:[4,5,7,8,9,13],filenam:8,customer_shar:5,api:[8,9],curlopt_postfield:[1,3],total:5,jone:[7,5,8,13],select:[1,10],"12t11":[7,5,8,9,13],newslett:[7,8,13],describ:7,would:[0,1],commun:1,from_group_id:13,regist:4,two:[0,5],coverag:1,next:[0,1],create_webhook:4,few:[5,8],call:[8,4],criteria:7,member_add_to_group:[12,4],type:[1,3,4,5,6,7,8,10,9,14],until:2,more:[0,4,7,8,9,13],peopl:5,relat:[1,8,11,9],about:[10,8,12,4,9],notic:8,thide:[4,5,7,8,9,10,13,14],flag:[5,7,8,10,9,14],exce:2,indic:8,examin:1,particular:[1,4,5,8,10,12,9],in_progress:5,curl_getinfo:[1,6,3],origin:9,must:[0,7,8,13,10],none:9,endpoint:[1,4,5,7,8,9,10,13,14],join:[0,7],hour:0,der:1,member_sinc:[0,5,7,8,9,13],uniqu:5,histori:8,soup:7,remain:[0,9],archiv:[5,9],member_optout:[12,4],drill:5,control:[1,11,9],give:5,process:8,forward_mailing_id:5,email_domain:[0,5],share:[0,5,8,4],accept:[0,5,7,8,9,10,11,13,14],total_click:5,tag:[8,11,9],want:[1,12,13,5],opt_in_url:8,occur:[7,12],some_numeric_field:0,delai:14,alwai:0,webhook_event_id:4,cours:1,multipl:[10,8],first_nam:[1,3,5,7,8,9,10,11,13,14],started_or_finish:[9,14],anoth:[9,13],get:[1,4,5,7,8,9,10,13,14],message_open:[12,4],html_bodi:[9,14],share_statu:5,push_offset:14,del_statu:5,tild:5,num_members_upd:8,simpl:0,chri:9,pizza:[7,8],map:0,birthdai:[10,14],referenc:7,sundai:0,jacqu:1,membership:13,taco:[7,5,8,9,13],date:[5,8,14,10],xxxx:6,associ:[1,8,9,4,5],grow:1,welcom:11,add_onli:8,"short":0,json_encod:[1,3],optout:[5,8,13],num_dupl:8,favorit:10,correspond:[0,1],greet:11,predic:1,issu:[1,10],inform:[1,4,6,8,9,10,13],combin:7,allow:[0,7,8],some_zipcode_field:0,signed_up:5,order:[5,10],michel:[8,9],mailing_nam:5,checkbox:10,fields_upd:8,over:2,becaus:12,buyer:[7,8,9,13],comma:[9,13],is_dis:14,vari:8,paramet:[2,4,5,7,8,9,10,13,14],widget_typ:10,style:[0,4,5,7,8,9,10,13,14],monitor:1,how:[7,1,2,4],fix:1,import_start:8,better:[13,14],platform:1,pend:[1,9],mailing_list:9,onc:9,hidden:13,main:1,might:[1,4],link_nam:[5,9],them:[8,9],"return":[0,1,4,5,7,8,9,10,12,13,14],greater:[0,8],thei:[0,9],food:10,timestamp:[0,5,12,9,10],spell:4,nashvil:1,dai:0,auth:1,instead:[12,2,8],now:5,down:5,term:1,alex:9,name:[0,4,5,7,8,9,10,11,13,14],edit:[7,1,14,10],troubleshoot:1,drop:1,authent:[1,6,4,3],successufulli:4,separ:[1,9,13],each:[1,2,5,9,12,11,13],found:[8,9,4,14],updat:[4,7,8,9,10,13,14],denni:1,status:[8,9],domain:0,weight:[4,5,7,8,9,10,13,14],resum:9,individu:[5,8],hard:[0,5],last_nam:[1,3,5,7,8,9,10,11,13,14],"05t15":5,connect:[1,6,3],doug:1,our:[1,11,12,4,14],happen:[1,4,5],commiss:1,short_display_nam:10,special:[0,7,8,13],out:[0,1,4,5,7,8,10,13],variabl:[1,6,3],message_shar:[12,4],network:[5,12],private_api_kei:[1,6,3],check_multipl:10,content:[1,11,6,9,3],cancel_t:[9,14],rel:0,print:6,correct:10,integr:[1,14],benjamin:[1,8],qualifi:11,insid:1,advanc:0,contain:[0,5,7,13,10,9],given:[0,8,9,4],standard:[5,9],status_from:8,base:[1,8,5],recipient_search:9,dictionari:8,put:[4,7,8,9,10,13,14],span:[4,5,7,8,9,10,13,14],"13t23":[7,5,8],refer:[5,7,8,13,10,9],visit:11,enlist:8,could:1,omit:5,success:[1,3,7,8,9,13],filter:[7,1,9],pagin:1,member_id:[5,7,8,9,12,13],summari:[1,5],assign:9,first:[0,1,10,5],oper:[7,1,14],rang:5,notifi:[1,12],directli:0,curlopt_ssl_verifyp:[1,6,3],curl_init:[1,6,3],number:[5,2,13,3,10],placehold:1,mai:12,unlik:9,alreadi:[10,8,9,13],done:8,plaintext_pref:[7,8,9,13],oppos:8,open:[0,3,4,5,6,7,8],payload:4,fanci:5,size:2,differ:0,"long":10,script:1,data:[1,10,4,3,5],system:[1,8,12,4,14],messag:[4,5,8,11,9,14],attach:11,outag:1,friend:11,curlinfo_http_cod:[1,6,3],shell:0,option:[0,5,7,8,9,10,13,14],especi:8,signup:[0,1,4,5,8,14],copi:[8,13],member_upd:[12,4],specifi:[0,2,7,8,10,11,9,14],curl_exec:[1,6,3],curlopt_httphead:[1,6,3],member_signup:[12,4],create_search:7,part:[0,9],enclos:11,initi:[10,9],than:[0,1,2,3,12,13],with_plaintext:9,"02t10":[5,8],"02t11":[5,8],"02t13":5,nathan:8,whenev:8,provid:[1,5,8,12,9,14],remov:[8,13,4],mailing_start:4,rate:2,structur:7,charact:9,greg:8,trackabl:11,were:5,minut:0,danc:1,error_count:[7,8,9,13],pre:[4,5,7,8,9,10,13,14],cleaner:1,sai:0,share_id:5,signup_form_id:[0,8,12,9,14],plaintext:[5,9,14],pass:[1,8,9,3],ani:[0,1,2,7,8,9],have:[0,1,5,8,12,9],tabl:5,need:1,seen:5,"null":[7,8,13,10,9,14],kevin:[9,14],signup_mail:0,caus:14,built:1,min:5,check:[8,6,9],offer:1,object_id:14,note:[1,8,9,4],also:[0,4,5,7,8,9,11,13],exampl:[0,1,8,7,5],take:[0,8,4],which:[0,1,4,8,10,12,9,14],some_number_field:0,datacent:[9,14],singl:[0,1,3,4,5,8,10,12,13],excit:11,sure:1,delete_memb:13,normal:9,parent_mail:14,recipient_count:[5,9,14],previou:9,field_id:[10,12,14],last_run_at:7,most:14,rsvp_email:8,"class":[4,5,7,8,9,10,13,14],don:1,member_group_id:[8,9,13],mcconnel:[9,14],url:[1,3,4,5,6,12],mailing_finish:[12,4],clear:10,request:[1,2,9,3],doe:[0,5,7,8,9,10,13],member_status_upd:[12,4],declar:9,tech:4,determin:[1,9],add:[1,8,13,3],dataset:10,dow:0,recipi:9,"6db0cc7e6fdb2da589b65f29d90c96b6":9,show:[4,5,7,8,9,10,11,13,14],text:[10,11,12],least:0,syntax:[1,9],radio:10,font:[4,5,7,8,9,10,13,14],fine:9,find:[1,6,5],status_to:8,toast:[7,5,8,13],access:[1,5],giant:12,just:[0,1,9],pretti:8,column_ord:10,"true":[0,1,2,3,4,6,7,8,9,10,13,14],explain:[0,1],winner:9,activ:[1,5,7,8,13,9],figur:1,should:[1,2,3,7,8,11,9],"public":[1,9],templat:[11,14],share_count:5,count:[1,2,3,5],variou:[8,13],confirmed_opt_in:[7,8,9,13],familiar:1,express:0,account:[1,4,5,7,8,9,10,13,14],repo:1,cannot:[8,9,4],progress:9,report:[10,8],requir:[1,7,8,10,11,9],object:[1,13,5],receiv:[0,2,5,8,12,9],favorite_food:[5,7,8,13,10,9],bar:0,organ:1,include_archiv:[5,9],search_id:7,"default":[5,11,13,4,9],ref_member_id:5,message_share_click:[12,4],through:[1,8,9,4],where:[0,1,8,11,7],view:1,respond:8,set:[0,1,2,3,6,8,9,12,13],link_id:[0,5,12,9,14],see:[7,1,8],result:[0,1,2,5,8,9],respons:[10,8,9,13],fail:[5,9,4],themselv:2,member_field:[0,7],xxxxx:6,subject:[5,8,12,9,14],statu:[1,4,5,7,8,9,13],fancyonion:11,kei:[0,1,8,11,4],is_schedul:9,message_forward:[12,4],databas:8,someth:1,last_modified_at:[7,8,9,13],addresse:5,written:1,between:[0,7,2],"import":[1,8,4,10],subscript:[1,3],entiti:1,curlopt_url:[1,6,3],email:[0,1,5,7,8,9,13],wide:14,cancel_by_user_id:[9,14],extend:1,numer:10,radiu:0,http404:[4,5,7,8,9,10,13,14],job:13,entir:[0,8],share_click:5,to_group_id:13,curlopt_returntransf:[1,6,3],curl_setopt:[1,6,3],member_remove_from_group:[12,4],send_start:[0,9,14],protect:1,accident:2,last:[0,5,10],delimit:5,lentil:7,pertain:5,message_click:[12,4],curlopt_post:[1,3],audienc:[1,8,9],mang:0,improv:1,http500:14,seri:5,com:[4,5,6,7,8,9,11,13],zip_code_field:0,"03t15":[7,5,8,13],point:1,toni:[7,8],overview:5,period:1,colon:[7,11],optout_count:[7,8,9,13],suppli:9,cancel:9,tuesdai:0,duplic:5,quit:[5,8],user_id:4,recur:14,headsup:9,addition:[1,2],due:5,been:[1,8,10,5],mark:[8,9],whom:9,tshow:[4,5,7,8,9,10,13,14],trigger:[5,7,8,13,10,9],unsubscrib:0,treat:8,interest:[10,4],basic:[0,1,4,8,13,14],monthli:[7,8,13],addit:[8,9,13],member_delet:[12,4],hesit:1,blob:4,email_us:[0,5],mailing_mailing_id:5,mailing_id:[0,5,8,12,9,14],fire:[8,4,14],xxx:[1,3],rubi:1,argument:[0,5],link_ord:[5,9],input:1,present:7,statist:8,"case":[1,8],look:[1,14,10],frozen:9,shortcut_nam:10,email_error:[7,8,9,13],defin:[0,10,8,9],"while":0,smith:[7,5,8,9,13],outcom:5,abov:[0,1,8,7],error:[1,3,6,8,10,13],veen:1,loop:8,opt:[0,4,5,7,8,13],readi:9,deliv:5,recipient_group:9,equal:0,scot:8,itself:0,new_statu:12,webhook_id:4,account_id:[1,3,4,5,6,7,8,9,10,12,13,14],develop:1,recipient_memb:9,perform:8,make:[1,12,6,10],belong:[0,8,4],same:[8,4],easier:12,member:[10,9,13],python:1,html:9,split:9,opt_in_messag:8,complet:[1,3,4,6,8,9],week:0,finish:[5,4],http:[1,2,3,4,5,6,11,9],nest:0,someon:4,rais:[4,5,7,8,9,10,13,14],winner_id:9,php:1,studi:1,recent:[1,8],kept:11,center:0,well:[1,5],inherit:9,person:9,mailing_typ:[9,14],without:[0,1],command:1,thi:[0,1,4,5,7,8,9,10,12,13,14],undefin:0,http_code:[1,6,3],latest:11,construct:[0,7,9],identifi:8,paus:9,execut:[1,3],less:0,"boolean":[1,5,7,8,9,10,13,14],resp:[4,5,7,8,9,10,13,14],"_post":[1,3],against:0,aspect:13,recipient_email:9,source_filenam:8,yet:5,languag:1,"12t09":[7,8],display_nam:10,easi:[1,12,10],"01t00":8,had:0,littl:1,blog:4,rsvp_name:8,other:[1,8,9,3,5],curlopt_userpwd:[1,6,3],import_finish:[8,12,4],schedul:9,els:[1,6,3],save:7,match:[0,7],build:1,sanit:1,applic:[1,6,3],around:1,handl:1,disposit:1,crud:[8,13,14],print_r:[6,3],mailing_statu:[9,14],know:[1,4,5],background:13,parent_mailing_id:[9,14],bit:1,insert:11,ignor:8,emma:[7,5,8,9,13],like:1,onion:11,deprec:4,arbitrari:8,manual:9,integ:[1,8,14,10,5],collect:1,href:[4,5,7,8,9,10,13,14],necessari:8,either:[0,5,7],bunch:0,output:9,group_id:[1,8,12,3],soft:[0,5],manag:[0,1,13,4],import_id:[8,12],www:[5,9],old:7,deal:[8,13],captur:1,arrai:[0,1,3,5,6,7,8,9,10,12,13,14],some:[1,11,5],back:8,field_delet:[12,4],opt_in_subject:8,intern:10,sampl:[1,4,5,7,8,9,10,13,14],elaps:[2,9],unless:1,deleted_at:[7,8,13,10,9,14],some_string_field:0,librari:11,woodcock:1,emmarubi:1,bounce_count:[7,8,9,13],emmapython:1,public_kei:4,deliveri:5,broad:12,per:[5,8],send_finish:[9,14],larg:[0,2],condit:7,three:9,network_cod:12,localhost:9,emmaphp:1,with_html_bodi:9,who:[0,5,8],bold:[4,5,7,8,9,10,13,14],event_typ:14,inspect:1,usag:[1,8],monsewicz:1,num_members_ad:8,fulli:11,from:[1,4,8,9,13,14],post:[1,3,4,7,8,9,10,13,14],group_creat:[12,4],gladi:[7,5,8,13],hurst:1,actual:5,zip:0,groups_upd:8,column:10,page:[1,2],includ:[1,5,7,8,9,10,13],webview:9,mean:0,disabl:[9,14],block:[1,2],yyyi:5,own:[1,8],member_data:[1,3],glob:0,bounc:[0,5],within:[0,8],encod:[9,4],delivery_typ:[5,8],compos:0,webview_shar:5,pair:11,field_typ:10,active_count:[7,8,9,13],public_webview_url:9,aben:1,pivot:5,your:[1,4,5,7,8,9,10,13],websit:11,fast:8,van:1,wai:[1,12],area:1,overus:2,group_nam:[8,12,13,9],support:[1,12],unique_click:5,iter:2,submit:1,custom:[5,8,11,10],avail:[0,11,4],start:[1,2,8,4],interfac:12,send_at:[9,14],exceed:2,"var":3,purged_at:[7,8,9,13,14],interv:14,fork:1,head:[1,8,6,9,3],form:[1,3,4,6,8,10,14],enough:2,forc:1,forward:[0,5,8,9,4],"31st":0,group_typ:[8,9,13],push_offset_unit:14,link:[0,4,5,11,9,14],oauth:14,line:[1,5],realli:1,opt_out_url:8,archived_t:[9,14],info:4,pull:[1,2],made:1,possibl:[5,8,12],whether:8,maximum:2,tell:12,http403:9,record:[0,7,8],below:[0,1,8,12],http400:[7,8,9],limit:[5,2,8,9],some_array_field:0,otherwis:[1,8,10],start_t:14,mta:5,expect:1,notif:9,creat:[4,5,7,13,10,9,14],"int":5,retriev:[7,1,2,8,9],year:[0,5,9,14],repres:5,exist:[0,4,5,7,8,10,13],behavior:11,bob:[7,5],curl:[1,6],failure_messag:[9,14],portland:1,probabl:14,echo:[1,3],successfulli:[5,8,9],mailing_subject:12,grp:13,extract:11,user:[0,1,8,9,13],when:[8,12,4,9],detail:[1,4,7,8,9,10,13],invalid:[7,8,9],event:[4,7,8,13,12,9,14],valid:[5,8,9,13],futur:1,num_skip:8,failure_t:[9,14],test:[5,6,7,13,9,14],signup_integr:14,you:[0,1,2,4,5,7,8,9,10,11,12,13],emmasdk:1,member_status_id:[7,5,8,9,13],public_api_kei:[1,6,3],stat:[5,9],claus:[0,7],event_nam:[12,4],e2ma:[1,2,6,3],error_messag:8,param:[8,9,4],app_messag:[1,3],ella:8,bulk:[1,8],clicked_uniqu:5,heads_up_email:9,longer:9,home:11,confirm:8,descript:[4,14],ohmyemma:1,portion:0,opted_out:5,time:[1,2,8,13,5],reply_to:[9,14],resource_url:12,inc:1,hello:[11,9,14]},objtypes:{"0":"http:get","1":"http:put","2":"http:post","3":"http:delete"},objnames:{"0":["http","get","HTTP get"],"1":["http","put","HTTP put"],"2":["http","post","HTTP post"],"3":["http","delete","HTTP delete"]},filenames:["member_search","index","pagination","php_signup_example","api/external/webhooks","api/external/response","php_get_member_example","api/external/searches","api/external/members","api/external/mailings","api/external/fields","placeholders","webhooks","api/external/groups","api/external/triggers"],titles:["Search Syntax","Emma API","Pagination","PHP Signup Example","Webhooks","Response","PHP Get Member By Email Example","Searches","Members","Mailings","Fields","Placeholder Syntax","Webhook Usage","Groups","Triggers"],objects:{"":{"/#account_id/members/#member_id/groups/remove":[8,1,1,"put--#account_id-members-#member_id-groups-remove"],"/#account_id/mailings/#mailing_id/winner/#winner_id":[9,2,1,"post--#account_id-mailings-#mailing_id-winner-#winner_id"],"/#account_id/response/#mailing_id/in_progress":[5,0,1,"get--#account_id-response-#mailing_id-in_progress"],"/#account_id/members/groups/remove":[8,1,1,"put--#account_id-members-groups-remove"],"/#account_id/mailings/#mailing_id/searches":[9,0,1,"get--#account_id-mailings-#mailing_id-searches"],"/#account_id/fields":[10,2,1,"post--#account_id-fields"],"/#account_id/members/#group_id/copy":[8,1,1,"put--#account_id-members-#group_id-copy"],"/#account_id/members/signup":[8,2,1,"post--#account_id-members-signup"],"/#account_id/members/status":[8,1,1,"put--#account_id-members-status"],"/#account_id/response/#mailing_id/shares/overview":[5,0,1,"get--#account_id-response-#mailing_id-shares-overview"],"/#account_id/webhooks/events":[4,0,1,"get--#account_id-webhooks-events"],"/#account_id/members/#member_id/optout":[8,0,1,"get--#account_id-members-#member_id-optout"],"/#account_id/webhooks":[4,3,1,"delete--#account_id-webhooks"],"/#account_id/fields/#field_id":[10,3,1,"delete--#account_id-fields-#field_id"],"/#account_id/response/#mailing_id":[5,0,1,"get--#account_id-response-#mailing_id"],"/#account_id/groups/#member_group_id/members/remove":[13,3,1,"delete--#account_id-groups-#member_group_id-members-remove"],"/#account_id/searches":[7,2,1,"post--#account_id-searches"],"/#account_id/members/imports":[8,0,1,"get--#account_id-members-imports"],"/#account_id/forwards/#mailing_id/#member_id":[9,2,1,"post--#account_id-forwards-#mailing_id-#member_id"],"/#account_id/response/#mailing_id/customer_share_clicks":[5,0,1,"get--#account_id-response-#mailing_id-customer_share_clicks"],"/#account_id/mailings/#mailing_id/messages/#member_id":[9,0,1,"get--#account_id-mailings-#mailing_id-messages-#member_id"],"/#account_id/members/#member_id/mailings":[8,0,1,"get--#account_id-members-#member_id-mailings"],"/#account_id/groups/#from_group_id/#to_group_id/members/copy":[13,1,1,"put--#account_id-groups-#from_group_id-#to_group_id-members-copy"],"/#account_id/triggers":[14,2,1,"post--#account_id-triggers"],"/#account_id/triggers/#trigger_id":[14,3,1,"delete--#account_id-triggers-#trigger_id"],"/#account_id/members/delete":[8,1,1,"put--#account_id-members-delete"],"/#account_id/mailings/#mailing_id/groups":[9,0,1,"get--#account_id-mailings-#mailing_id-groups"],"/#account_id/response/#mailing_id/forwards":[5,0,1,"get--#account_id-response-#mailing_id-forwards"],"/#account_id/members/#member_id":[8,3,1,"delete--#account_id-members-#member_id"],"/#account_id/triggers/#trigger_id/mailings":[14,0,1,"get--#account_id-triggers-#trigger_id-mailings"],"/#account_id/searches/#search_id/members":[7,0,1,"get--#account_id-searches-#search_id-members"],"/#account_id/members/status/:status_from/to/:status_to":[8,1,1,"put--#account_id-members-status--status_from-to--status_to"],"/#account_id/response/#mailing_id/sends":[5,0,1,"get--#account_id-response-#mailing_id-sends"],"/#account_id/members":[8,3,1,"delete--#account_id-members"],"/#account_id/members/email/:email":[8,0,1,"get--#account_id-members-email--email"],"/#account_id/response/#mailing_id/links":[5,0,1,"get--#account_id-response-#mailing_id-links"],"/#account_id/searches/#search_id":[7,3,1,"delete--#account_id-searches-#search_id"],"/#account_id/members/imports/#import_id/members":[8,0,1,"get--#account_id-members-imports-#import_id-members"],"/#account_id/fields/#field_id/clear":[10,2,1,"post--#account_id-fields-#field_id-clear"],"/#account_id/groups/#member_group_id/members":[13,3,1,"delete--#account_id-groups-#member_group_id-members"],"/#account_id/members/imports/#import_id":[8,0,1,"get--#account_id-members-imports-#import_id"],"/#account_id/response":[5,0,1,"get--#account_id-response"],"/#account_id/response/#mailing_id/opens":[5,0,1,"get--#account_id-response-#mailing_id-opens"],"/#account_id/members/imports/delete":[8,3,1,"delete--#account_id-members-imports-delete"],"/#account_id/mailings":[9,2,1,"post--#account_id-mailings"],"/#account_id/mailings/cancel/#mailing_id":[9,3,1,"delete--#account_id-mailings-cancel-#mailing_id"],"/#account_id/mailings/validate":[9,2,1,"post--#account_id-mailings-validate"],"/#account_id/response/#mailing_id/deliveries":[5,0,1,"get--#account_id-response-#mailing_id-deliveries"],"/#account_id/mailings/#mailing_id/members":[9,0,1,"get--#account_id-mailings-#mailing_id-members"],"/#account_id/response/#share_id/customer_share":[5,0,1,"get--#account_id-response-#share_id-customer_share"],"/#account_id/webhooks/#webhook_id":[4,3,1,"delete--#account_id-webhooks-#webhook_id"],"/#account_id/members/add":[8,2,1,"post--#account_id-members-add"],"/#account_id/members/email/optout/:email":[8,1,1,"put--#account_id-members-email-optout--email"],"/#account_id/response/#mailing_id/optouts":[5,0,1,"get--#account_id-response-#mailing_id-optouts"],"/#account_id/response/#mailing_id/shares":[5,0,1,"get--#account_id-response-#mailing_id-shares"],"/#account_id/groups/#member_group_id":[13,3,1,"delete--#account_id-groups-#member_group_id"],"/#account_id/mailings/#mailing_id":[9,3,1,"delete--#account_id-mailings-#mailing_id"],"/#account_id/members/#member_id/groups":[8,3,1,"delete--#account_id-members-#member_id-groups"],"/#account_id/groups":[13,2,1,"post--#account_id-groups"],"/#account_id/response/#mailing_id/clicks":[5,0,1,"get--#account_id-response-#mailing_id-clicks"],"/#account_id/mailings/#mailing_id/headsup":[9,0,1,"get--#account_id-mailings-#mailing_id-headsup"],"/#account_id/response/#mailing_id/signups":[5,0,1,"get--#account_id-response-#mailing_id-signups"],"/#account_id/response/#mailing_id/customer_shares":[5,0,1,"get--#account_id-response-#mailing_id-customer_shares"]}},titleterms:{oper:0,quickstart:1,creat:12,"boolean":0,overview:[0,1,11,12],interv:0,share:12,syntax:[0,11],api:1,wrapper:1,respons:5,open:12,click:12,categori:1,statu:12,from:12,delet:12,todo:11,messag:12,member:[8,6,12],field:[10,12],add:12,trigger:14,call:1,forward:12,mail:[12,9],document:1,email:6,updat:12,finish:12,get:6,webhook:[12,4],signup:[12,3],usag:12,search:[0,7],word:1,"import":12,date:0,group:[12,13],post:12,php:[6,3],data:12,addit:1,placehold:11,term:0,wise:1,optout:12,remov:12,predic:0,filter:0,exampl:[6,3],pagin:2,emma:1}}) \ No newline at end of file +Search.setIndex({envversion:42,terms:{all:[0,1,4,5,8,9,10,11,12,13,14],code:[0,1,6,3],change_typ:8,queri:[0,2,4],month:[0,5,9,14],four:[0,5],mile:0,least:0,follow:[0,1,4,5,7,8,9,11,13],link_target:[5,9],privat:[1,9],specif:[8,9,4],friendli:5,send:[1,3,4,5,8,9],program:1,customer_share_click:5,those:[1,12,5],group_upd:[12,4],sent:[5,8,12,9,14],curl_clos:[1,6,3],certain:12,brown:[7,8],digit:5,everi:0,string:[0,4,5,7,8,9,10,12,13,14],fals:[1,3,4,5,6,7,8,9,10,13,14],end:[2,8],mailing_status:9,trigger_id:14,"22t09":[9,14],webview_share_click:5,affect:[7,8],member_add:[12,4],create_mail:9,new_boolean:10,foo:0,level:1,group_delet:[12,4],list:[0,1,2,4,5,7,8,9,10,11,12,13,14],upload:8,ryan:8,"try":8,item:2,plaintext_onli:[9,14],div:[4,5,7,8,9,10,13,14],survey_id:14,setup:1,pleas:[1,8,11,9],prevent:2,work:[1,4],ten:0,sync:10,sign:[0,5,8,4],past:1,second:[0,7,14],field_creat:[12,4],further:1,durat:9,click:[0,4,5,7,8,14],append:2,even:10,what:1,hide:[4,5,7,8,9,10,13,14],appear:[1,8],clock:1,section:1,workflow:8,current:[1,8,12,9],delet:[1,4,7,8,9,10,13,14],"new":[1,4,5,7,8,9,10,11,13,14],net:[1,2,6,3],delivery_t:8,ever:1,method:[5,8,13,4,9],can:[0,1,2,4,5,7,8,9,11,12,13],created_t:[9,14],widget:[7,10,8,9,13],full:1,hash:0,datematch:0,displai:10,variat:9,gener:[0,8,12,14],onli:[5,8],here:[0,1,3,5,6,8],json:[0,1,3,4,6,7],bodi:[8,9],let:[1,4,10],address:[0,1,8,6,9],along:8,sinc:8,valu:[0,5,7,8,10,11],field_upd:[12,4],search:[8,9],survei:14,sender:[9,14],larger:2,queue:5,prior:9,permit:9,action:[0,8],chang:[8,4],overrid:8,campaign:5,newbi:5,appli:[7,14],app:14,prefer:0,young:1,myemma:[4,5,7,8,9,13],filenam:8,customer_shar:5,api:[8,9],curlopt_postfield:[1,3],total:5,jone:[7,5,8,13],select:[1,10],"12t11":[7,5,8,9,13],newslett:[7,8,13],describ:7,would:[0,1],commun:1,from_group_id:13,regist:4,two:[0,5],coverag:1,next:[0,1],create_webhook:4,few:[5,8],call:[8,4],criteria:7,member_add_to_group:[12,4],type:[1,3,4,5,6,7,10,9,14],until:2,more:[0,4,7,8,9,13],peopl:5,relat:[1,8,11,9],about:[10,8,12,4,9],notic:8,thide:[4,5,7,8,9,10,13,14],flag:[5,7,8,10,9,14],exce:2,indic:8,examin:1,particular:[1,4,5,8,10,12,9],in_progress:5,curl_getinfo:[1,6,3],origin:9,must:[0,7,8,13,10],none:9,endpoint:[1,4,5,7,8,9,10,13,14],join:[0,7],hour:0,der:1,member_sinc:[0,5,7,8,9,13],uniqu:5,histori:8,soup:7,remain:[0,9],archiv:[5,9],member_optout:[12,4],drill:5,control:[1,11,9],give:5,process:8,forward_mailing_id:5,email_domain:[0,5],share:[0,5,8,4],accept:[0,5,7,8,9,10,11,13,14],total_click:5,tag:[8,11,9],want:[1,12,13,5],opt_in_url:8,occur:[7,12],some_numeric_field:0,delai:14,alwai:0,webhook_event_id:4,cours:1,multipl:[10,8],first_nam:[1,3,5,7,8,9,10,11,13,14],started_or_finish:[9,14],anoth:[9,13],get:[1,4,5,7,8,9,10,13,14],message_open:[12,4],html_bodi:[9,14],share_statu:5,push_offset:14,del_statu:5,tild:5,num_members_upd:8,simpl:0,chri:9,pizza:[7,8],map:0,birthdai:[10,14],referenc:7,sundai:0,jacqu:1,membership:13,taco:[7,5,8,9,13],date:[5,8,14,10],xxxx:6,associ:[1,8,9,4,5],grow:1,welcom:11,add_onli:8,"short":0,json_encod:[1,3],optout:[5,8,13],num_dupl:8,favorit:10,correspond:[0,1],greet:11,predic:1,issu:[1,10],inform:[1,4,6,8,9,10,13],combin:7,allow:[0,7,8],some_zipcode_field:0,signed_up:5,order:[5,10],michel:[8,9],mailing_nam:5,checkbox:10,fields_upd:8,over:2,becaus:12,buyer:[7,8,9,13],comma:[9,13],is_dis:14,vari:8,paramet:[2,4,5,7,8,9,10,13,14],widget_typ:10,style:[0,4,5,7,8,9,10,13,14],monitor:1,how:[7,1,2,4],fix:1,import_start:8,better:[13,14],platform:1,pend:[1,9],mailing_list:9,onc:9,hidden:13,main:1,might:[1,4],link_nam:[5,9],them:[8,9],"return":[0,1,4,5,7,8,9,10,12,13,14],greater:[0,8],thei:[0,9],food:10,timestamp:[0,5,12,9,10],spell:4,nashvil:1,dai:0,auth:1,instead:[12,2,8],now:5,down:5,term:1,alex:9,name:[0,4,5,7,8,9,10,11,13,14],edit:[7,1,14,10],troubleshoot:1,drop:1,authent:[1,6,4,3],successufulli:4,separ:[1,9,13],each:[1,2,5,9,12,11,13],found:[8,9,4,14],updat:[4,7,8,9,10,13,14],denni:1,status:[8,9],domain:0,weight:[4,5,7,8,9,10,13,14],resum:9,individu:[5,8],hard:[0,5],last_nam:[1,3,5,7,8,9,10,11,13,14],"05t15":5,connect:[1,6,3],doug:1,our:[1,11,12,4,14],happen:[1,4,5],commiss:1,short_display_nam:10,special:[0,7,8,13],out:[0,1,4,5,7,8,10,13],variabl:[1,6,3],message_shar:[12,4],network:[5,12],private_api_kei:[1,6,3],check_multipl:10,content:[1,11,6,9,3],cancel_t:[9,14],rel:0,print:6,correct:10,integr:[1,14],benjamin:[1,8],qualifi:11,insid:1,advanc:0,contain:[0,5,7,13,10,9],given:[0,8,9,4],standard:[5,9],status_from:8,base:[1,8,5],recipient_search:9,dictionari:8,put:[4,7,8,9,10,13,14],span:[4,5,7,8,9,10,13,14],"13t23":[7,5,8],refer:[5,7,8,13,10,9],visit:11,enlist:8,could:1,omit:5,success:[1,3,7,8,9,13],filter:[7,1,9],pagin:1,member_id:[5,7,8,9,12,13],summari:[1,5],assign:9,first:[0,1,10,5],oper:[7,1,14],rang:5,notifi:[1,12],directli:0,curlopt_ssl_verifyp:[1,6,3],curl_init:[1,6,3],number:[5,2,13,3,10],placehold:1,mai:12,unlik:9,alreadi:[10,8,9,13],done:8,plaintext_pref:[7,8,9,13],oppos:8,open:[0,3,4,5,6,7,8],payload:4,fanci:5,size:2,differ:0,"long":10,script:1,data:[1,10,4,3,5],system:[1,8,12,4,14],messag:[4,5,8,11,9,14],attach:11,outag:1,friend:11,curlinfo_http_cod:[1,6,3],shell:0,option:[0,5,7,8,9,10,13,14],especi:8,signup:[0,1,4,5,8,14],copi:[8,13],member_upd:[12,4],specifi:[0,2,7,8,10,11,9,14],curl_exec:[1,6,3],curlopt_httphead:[1,6,3],member_signup:[12,4],create_search:7,part:[0,9],enclos:11,initi:[10,9],than:[0,1,2,3,12,13],with_plaintext:9,"02t10":[5,8],"02t11":[5,8],"02t13":5,nathan:8,whenev:8,provid:[1,5,8,12,9,14],remov:[8,13,4],mailing_start:4,rate:2,structur:7,charact:9,greg:8,trackabl:11,were:5,minut:0,danc:1,error_count:[7,8,9,13],pre:[4,5,7,8,9,10,13,14],cleaner:1,sai:0,share_id:5,signup_form_id:[0,8,12,9,14],plaintext:[5,9,14],pass:[1,8,9,3],ani:[0,1,2,7,8,9],have:[0,1,5,8,12,9],tabl:5,need:1,seen:5,"null":[7,8,13,10,9,14],kevin:[9,14],signup_mail:0,caus:14,built:1,min:5,check:[8,6,9],offer:1,object_id:14,note:[1,8,9,4],also:[0,4,5,7,8,9,11,13],exampl:[0,1,8,7,5],take:[0,8,4],which:[0,1,4,8,10,12,9,14],some_number_field:0,datacent:[9,14],singl:[0,1,3,4,5,8,10,12,13],excit:11,sure:1,delete_memb:13,normal:9,parent_mail:14,recipient_count:[5,9,14],previou:9,field_id:[10,12,14],last_run_at:7,most:14,rsvp_email:8,"class":[4,5,7,8,9,10,13,14],don:1,member_group_id:[8,9,13],mcconnel:[9,14],url:[1,3,4,5,6,12],mailing_finish:[12,4],clear:10,request:[1,2,9,3],doe:[0,5,7,8,9,10,13],member_status_upd:[12,4],declar:9,tech:4,determin:[1,9],add:[1,8,13,3],dataset:10,dow:0,recipi:9,"6db0cc7e6fdb2da589b65f29d90c96b6":9,show:[4,5,7,8,9,10,11,13,14],text:[10,11,12],radiu:0,syntax:[1,9],radio:10,font:[4,5,7,8,9,10,13,14],fine:9,find:[1,6,5],status_to:8,toast:[7,5,8,13],access:[1,5],giant:12,just:[0,1,9],pretti:8,column_ord:10,"true":[0,1,2,3,4,6,7,8,9,10,13,14],explain:[0,1],winner:9,activ:[1,5,7,8,13,9],figur:1,should:[1,2,3,7,8,11,9],"public":[1,9],templat:[11,14],share_count:5,count:[1,2,3,5],variou:[8,13],confirmed_opt_in:[7,8,9,13],familiar:1,express:0,account:[1,4,5,7,8,9,10,13,14],repo:1,cannot:[8,9,4],progress:9,report:[10,8],requir:[1,7,8,10,11,9],object:[1,13,5],receiv:[0,2,5,8,12,9],favorite_food:[5,7,8,13,10,9],bar:0,organ:1,include_archiv:[5,9],search_id:7,"default":[5,11,13,4,9],ref_member_id:5,message_share_click:[12,4],through:[1,8,9,4],where:[0,1,8,11,7],view:1,respond:8,set:[0,1,2,3,6,8,9,12,13],link_id:[0,5,12,9,14],see:[7,1,8],result:[0,1,2,5,8,9],respons:[10,8,9,13],fail:[5,9,4],themselv:2,member_field:[0,7],xxxxx:6,subject:[5,8,12,9,14],statu:[1,4,5,7,8,9,13],fancyonion:11,kei:[0,1,8,11,4],is_schedul:9,message_forward:[12,4],databas:8,someth:1,last_modified_at:[7,8,9,13],addresse:5,written:1,between:[0,7,2],"import":[1,8,4,10],subscript:[1,3],entiti:1,curlopt_url:[1,6,3],email:[0,1,5,7,8,9,13],wide:14,cancel_by_user_id:[9,14],extend:1,numer:10,http404:[4,5,7,8,9,10,13,14],job:13,entir:[0,8],share_click:5,to_group_id:13,curlopt_returntransf:[1,6,3],curl_setopt:[1,6,3],member_remove_from_group:[12,4],send_start:[0,9,14],protect:1,accident:2,last:[0,5,10],delimit:5,lentil:7,pertain:5,message_click:[12,4],curlopt_post:[1,3],audienc:[1,8,9],mang:0,improv:1,http500:14,seri:5,com:[4,5,6,7,8,9,11,13],zip_code_field:0,"03t15":[7,5,8,13],point:1,toni:[7,8],overview:5,period:1,colon:[7,11],optout_count:[7,8,9,13],suppli:9,cancel:9,tuesdai:0,duplic:5,quit:[5,8],user_id:4,recur:14,headsup:9,addition:[1,2],due:5,been:[1,8,10,5],mark:[8,9],whom:9,tshow:[4,5,7,8,9,10,13,14],trigger:[5,7,8,13,10,9],unsubscrib:0,treat:8,interest:[10,4],basic:[0,1,4,8,13,14],monthli:[7,8,13],addit:[8,9,13],member_delet:[12,4],hesit:1,blob:4,email_us:[0,5],mailing_mailing_id:5,mailing_id:[0,5,8,12,9,14],fire:[8,4,14],xxx:[1,3],rubi:1,argument:[0,5],link_ord:[5,9],input:1,present:7,statist:8,"case":[1,8],look:[1,14,10],frozen:9,shortcut_nam:10,email_error:[7,8,9,13],defin:[0,10,8,9],"while":0,smith:[7,5,8,9,13],outcom:5,abov:[0,1,8,7],error:[1,3,6,8,10,13],veen:1,loop:8,opt:[0,4,5,7,8,13],readi:9,deliv:5,recipient_group:9,equal:0,itself:0,new_statu:12,webhook_id:4,account_id:[1,3,4,5,6,7,8,9,10,12,13,14],develop:1,recipient_memb:9,perform:8,make:[1,12,6,10],belong:[0,8,4],same:[8,4],easier:12,member:[10,9,13],python:1,html:9,split:9,opt_in_messag:8,complet:[1,3,4,6,8,9],week:0,finish:[5,4],http:[1,2,3,4,5,6,11,9],nest:0,someon:4,rais:[4,5,7,8,9,10,13,14],winner_id:9,php:1,studi:1,recent:[1,8],kept:11,center:0,well:[1,5],inherit:9,person:9,mailing_typ:[9,14],without:[0,1],command:1,thi:[0,1,4,5,7,8,9,10,12,13,14],undefin:0,http_code:[1,6,3],latest:11,construct:[0,7,9],identifi:8,paus:9,execut:[1,3],less:0,"boolean":[1,5,7,8,9,10,13,14],resp:[4,5,7,8,9,10,13,14],"_post":[1,3],against:0,aspect:13,recipient_email:9,source_filenam:8,yet:5,languag:1,"12t09":[7,8],display_nam:10,easi:[1,12,10],"01t00":8,had:0,littl:1,blog:4,rsvp_name:8,other:[1,8,9,3,5],curlopt_userpwd:[1,6,3],import_finish:[8,12,4],schedul:9,els:[1,6,3],save:7,match:[0,7],build:1,sanit:1,applic:[1,6,3],around:1,handl:1,disposit:1,crud:[8,13,14],print_r:[6,3],mailing_statu:[9,14],know:[1,4,5],background:13,parent_mailing_id:[9,14],bit:1,insert:11,ignor:8,emma:[7,5,8,9,13],like:1,onion:11,deprec:4,arbitrari:8,manual:9,integ:[1,8,14,10,5],collect:1,href:[4,5,7,8,9,10,13,14],necessari:8,either:[0,5,7],bunch:0,output:9,group_id:[1,8,12,3],soft:[0,5],manag:[0,1,13,4],import_id:[8,12],www:[5,9],old:7,deal:[8,13],captur:1,arrai:[0,1,3,5,6,7,8,9,10,12,13,14],some:[1,11,5],back:8,field_delet:[12,4],opt_in_subject:8,intern:10,sampl:[1,4,5,7,8,9,10,13,14],elaps:[2,9],unless:1,deleted_at:[7,8,13,10,9,14],some_string_field:0,librari:11,woodcock:1,emmarubi:1,bounce_count:[7,8,9,13],emmapython:1,public_kei:4,deliveri:5,broad:12,per:5,send_finish:[9,14],larg:[0,2],condit:7,three:9,network_cod:12,localhost:9,emmaphp:1,with_html_bodi:9,who:[0,5,8],bold:[4,5,7,8,9,10,13,14],event_typ:14,inspect:1,usag:[1,8],monsewicz:1,num_members_ad:8,fulli:11,from:[1,4,8,9,13,14],post:[1,3,4,7,8,9,10,13,14],group_creat:[12,4],gladi:[7,5,8,13],hurst:1,actual:5,zip:0,groups_upd:8,column:10,page:[1,2],includ:[1,5,7,8,9,10,13],webview:9,mean:0,disabl:[9,14],block:[1,2],yyyi:5,own:[1,8],member_data:[1,3],glob:0,bounc:[0,5],within:[0,8],encod:[9,4],delivery_typ:[5,8],compos:0,webview_shar:5,pair:11,field_typ:10,active_count:[7,8,9,13],public_webview_url:9,aben:1,pivot:5,your:[1,4,5,7,8,9,10,13],websit:11,fast:8,van:1,wai:[1,12],area:1,overus:2,group_nam:[8,12,13,9],support:[1,12],unique_click:5,iter:2,submit:1,custom:[5,8,11,10],avail:[0,11,4],start:[1,2,8,4],interfac:12,send_at:[9,14],exceed:2,"var":3,purged_at:[7,8,9,13,14],interv:14,fork:1,head:[1,6,9,3],form:[1,3,4,6,8,10,14],enough:2,forc:1,forward:[0,5,8,9,4],"31st":0,group_typ:[8,9,13],push_offset_unit:14,link:[0,4,5,11,9,14],oauth:14,line:[1,5],realli:1,opt_out_url:8,archived_t:[9,14],info:4,pull:[1,2],made:1,possibl:[5,8,12],whether:8,maximum:2,tell:12,http403:9,record:[0,7,8],below:[0,1,8,12],http400:[7,8,9],limit:[5,2,8,9],some_array_field:0,otherwis:[1,8,10],start_t:14,mta:5,expect:1,notif:9,creat:[4,5,7,13,10,9,14],"int":5,retriev:[7,1,2,8,9],year:[0,5,9,14],repres:5,exist:[0,4,5,7,8,10,13],behavior:11,bob:[7,5],curl:[1,6],failure_messag:[9,14],portland:1,probabl:14,echo:[1,3],successfulli:[5,8,9],mailing_subject:12,grp:13,extract:11,user:[0,1,8,9,13],when:[8,12,4,9],detail:[1,4,7,8,9,10,13],invalid:[7,8,9],event:[4,7,8,13,12,9,14],valid:[5,8,9,13],futur:1,num_skip:8,failure_t:[9,14],test:[5,6,7,13,9,14],signup_integr:14,you:[0,1,2,4,5,7,8,9,10,11,12,13],emmasdk:1,member_status_id:[7,5,8,9,13],public_api_kei:[1,6,3],stat:[5,9],claus:[0,7],event_nam:[12,4],e2ma:[1,2,6,3],error_messag:8,param:[9,4],app_messag:[1,3],ella:8,bulk:[1,8],clicked_uniqu:5,heads_up_email:9,longer:9,home:11,confirm:8,descript:[4,14],ohmyemma:1,portion:0,opted_out:5,time:[1,2,8,13,5],reply_to:[9,14],resource_url:12,inc:1,hello:[11,9,14]},objtypes:{"0":"http:get","1":"http:put","2":"http:post","3":"http:delete"},objnames:{"0":["http","get","HTTP get"],"1":["http","put","HTTP put"],"2":["http","post","HTTP post"],"3":["http","delete","HTTP delete"]},filenames:["member_search","index","pagination","php_signup_example","api/external/webhooks","api/external/response","php_get_member_example","api/external/searches","api/external/members","api/external/mailings","api/external/fields","placeholders","webhooks","api/external/groups","api/external/triggers"],titles:["Search Syntax","Emma API","Pagination","PHP Signup Example","Webhooks","Response","PHP Get Member By Email Example","Searches","Members","Mailings","Fields","Placeholder Syntax","Webhook Usage","Groups","Triggers"],objects:{"":{"/#account_id/members/#member_id/groups/remove":[8,1,1,"put--#account_id-members-#member_id-groups-remove"],"/#account_id/mailings/#mailing_id/winner/#winner_id":[9,2,1,"post--#account_id-mailings-#mailing_id-winner-#winner_id"],"/#account_id/response/#mailing_id/in_progress":[5,0,1,"get--#account_id-response-#mailing_id-in_progress"],"/#account_id/members/groups/remove":[8,1,1,"put--#account_id-members-groups-remove"],"/#account_id/mailings/#mailing_id/searches":[9,0,1,"get--#account_id-mailings-#mailing_id-searches"],"/#account_id/fields":[10,2,1,"post--#account_id-fields"],"/#account_id/members/#group_id/copy":[8,1,1,"put--#account_id-members-#group_id-copy"],"/#account_id/members/signup":[8,2,1,"post--#account_id-members-signup"],"/#account_id/members/status":[8,1,1,"put--#account_id-members-status"],"/#account_id/response/#mailing_id/shares/overview":[5,0,1,"get--#account_id-response-#mailing_id-shares-overview"],"/#account_id/webhooks/events":[4,0,1,"get--#account_id-webhooks-events"],"/#account_id/members/#member_id/optout":[8,0,1,"get--#account_id-members-#member_id-optout"],"/#account_id/webhooks":[4,3,1,"delete--#account_id-webhooks"],"/#account_id/fields/#field_id":[10,3,1,"delete--#account_id-fields-#field_id"],"/#account_id/response/#mailing_id":[5,0,1,"get--#account_id-response-#mailing_id"],"/#account_id/groups/#member_group_id/members/remove":[13,3,1,"delete--#account_id-groups-#member_group_id-members-remove"],"/#account_id/searches":[7,2,1,"post--#account_id-searches"],"/#account_id/members/imports":[8,0,1,"get--#account_id-members-imports"],"/#account_id/forwards/#mailing_id/#member_id":[9,2,1,"post--#account_id-forwards-#mailing_id-#member_id"],"/#account_id/response/#mailing_id/customer_share_clicks":[5,0,1,"get--#account_id-response-#mailing_id-customer_share_clicks"],"/#account_id/mailings/#mailing_id/messages/#member_id":[9,0,1,"get--#account_id-mailings-#mailing_id-messages-#member_id"],"/#account_id/members/#member_id/mailings":[8,0,1,"get--#account_id-members-#member_id-mailings"],"/#account_id/groups/#from_group_id/#to_group_id/members/copy":[13,1,1,"put--#account_id-groups-#from_group_id-#to_group_id-members-copy"],"/#account_id/triggers":[14,2,1,"post--#account_id-triggers"],"/#account_id/triggers/#trigger_id":[14,3,1,"delete--#account_id-triggers-#trigger_id"],"/#account_id/members/delete":[8,1,1,"put--#account_id-members-delete"],"/#account_id/mailings/#mailing_id/groups":[9,0,1,"get--#account_id-mailings-#mailing_id-groups"],"/#account_id/response/#mailing_id/forwards":[5,0,1,"get--#account_id-response-#mailing_id-forwards"],"/#account_id/members/#member_id":[8,3,1,"delete--#account_id-members-#member_id"],"/#account_id/triggers/#trigger_id/mailings":[14,0,1,"get--#account_id-triggers-#trigger_id-mailings"],"/#account_id/searches/#search_id/members":[7,0,1,"get--#account_id-searches-#search_id-members"],"/#account_id/members/status/:status_from/to/:status_to":[8,1,1,"put--#account_id-members-status--status_from-to--status_to"],"/#account_id/response/#mailing_id/sends":[5,0,1,"get--#account_id-response-#mailing_id-sends"],"/#account_id/members":[8,3,1,"delete--#account_id-members"],"/#account_id/members/email/:email":[8,0,1,"get--#account_id-members-email--email"],"/#account_id/response/#mailing_id/links":[5,0,1,"get--#account_id-response-#mailing_id-links"],"/#account_id/searches/#search_id":[7,3,1,"delete--#account_id-searches-#search_id"],"/#account_id/members/imports/#import_id/members":[8,0,1,"get--#account_id-members-imports-#import_id-members"],"/#account_id/fields/#field_id/clear":[10,2,1,"post--#account_id-fields-#field_id-clear"],"/#account_id/groups/#member_group_id/members":[13,3,1,"delete--#account_id-groups-#member_group_id-members"],"/#account_id/members/imports/#import_id":[8,0,1,"get--#account_id-members-imports-#import_id"],"/#account_id/response":[5,0,1,"get--#account_id-response"],"/#account_id/response/#mailing_id/opens":[5,0,1,"get--#account_id-response-#mailing_id-opens"],"/#account_id/members/imports/delete":[8,3,1,"delete--#account_id-members-imports-delete"],"/#account_id/mailings":[9,2,1,"post--#account_id-mailings"],"/#account_id/mailings/cancel/#mailing_id":[9,3,1,"delete--#account_id-mailings-cancel-#mailing_id"],"/#account_id/mailings/validate":[9,2,1,"post--#account_id-mailings-validate"],"/#account_id/response/#mailing_id/deliveries":[5,0,1,"get--#account_id-response-#mailing_id-deliveries"],"/#account_id/mailings/#mailing_id/members":[9,0,1,"get--#account_id-mailings-#mailing_id-members"],"/#account_id/response/#share_id/customer_share":[5,0,1,"get--#account_id-response-#share_id-customer_share"],"/#account_id/webhooks/#webhook_id":[4,3,1,"delete--#account_id-webhooks-#webhook_id"],"/#account_id/members/add":[8,2,1,"post--#account_id-members-add"],"/#account_id/members/email/optout/:email":[8,1,1,"put--#account_id-members-email-optout--email"],"/#account_id/response/#mailing_id/optouts":[5,0,1,"get--#account_id-response-#mailing_id-optouts"],"/#account_id/response/#mailing_id/shares":[5,0,1,"get--#account_id-response-#mailing_id-shares"],"/#account_id/groups/#member_group_id":[13,3,1,"delete--#account_id-groups-#member_group_id"],"/#account_id/mailings/#mailing_id":[9,3,1,"delete--#account_id-mailings-#mailing_id"],"/#account_id/members/#member_id/groups":[8,3,1,"delete--#account_id-members-#member_id-groups"],"/#account_id/groups":[13,2,1,"post--#account_id-groups"],"/#account_id/response/#mailing_id/clicks":[5,0,1,"get--#account_id-response-#mailing_id-clicks"],"/#account_id/mailings/#mailing_id/headsup":[9,0,1,"get--#account_id-mailings-#mailing_id-headsup"],"/#account_id/response/#mailing_id/signups":[5,0,1,"get--#account_id-response-#mailing_id-signups"],"/#account_id/response/#mailing_id/customer_shares":[5,0,1,"get--#account_id-response-#mailing_id-customer_shares"]}},titleterms:{oper:0,quickstart:1,creat:12,"boolean":0,overview:[0,1,11,12],interv:0,share:12,syntax:[0,11],api:1,wrapper:1,respons:5,open:12,click:12,categori:1,statu:12,from:12,delet:12,todo:11,messag:12,member:[8,6,12],field:[10,12],add:12,trigger:14,call:1,forward:12,mail:[12,9],document:1,email:6,updat:12,finish:12,get:6,webhook:[12,4],signup:[12,3],usag:12,search:[0,7],word:1,"import":12,date:0,group:[12,13],post:12,php:[6,3],data:12,addit:1,placehold:11,term:0,wise:1,optout:12,remov:12,predic:0,filter:0,exampl:[6,3],pagin:2,emma:1}}) \ No newline at end of file diff --git a/webhooks.html b/webhooks.html index 88a8446..ab52ae7 100644 --- a/webhooks.html +++ b/webhooks.html @@ -506,7 +506,7 @@ <h3>Interested in Emma?</h3> </div> <div class="footer"> © Copyright 2013, Emma. - Last updated on Aug 22, 2013 at 08:35 AM. + Last updated on Aug 22, 2013 at 09:41 AM. </div> </body> </html> \ No newline at end of file From 1978bff6eedf22295912d285b8e9623e684d791c Mon Sep 17 00:00:00 2001 From: Brandon W <fastforward85@gmail.com> Date: Wed, 20 Nov 2013 15:27:43 -0600 Subject: [PATCH 058/219] Added note to POST /#account_id/members/add Added note to POST /#account_id/members/add per API-910 --- api/external/members.html | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/api/external/members.html b/api/external/members.html index c1e6eec..8f420fc 100644 --- a/api/external/members.html +++ b/api/external/members.html @@ -1,4 +1,3 @@ - <!doctype html> @@ -480,6 +479,8 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli <tt class="descname">POST </tt><tt class="descname">/#account_id/members/add</tt><a class="headerlink" href="#post--#account_id-members-add" title="Permalink to this definition">¶</a></dt> <dd><p>Adds or updates a single audience member. If you are performing actions on bulk members please use the <cite>/members</cite> call above.</p> +<p>Note: Members who are added to your audience using this API call will +not appear in “recent activity” searches within your account.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> @@ -1284,4 +1285,4 @@ <h3>Interested in Emma?</h3> Last updated on Aug 22, 2013 at 09:41 AM. </div> </body> -</html> \ No newline at end of file +</html> From 6b56754b28f47f630cc72aa3e8263480d8747191 Mon Sep 17 00:00:00 2001 From: Brandon W <fastforward85@gmail.com> Date: Wed, 20 Nov 2013 15:29:39 -0600 Subject: [PATCH 059/219] Updated note in Post /#account_id/members/add Updated note in Post /#account_id/members/add. The word "Note" need italics. --- api/external/members.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/external/members.html b/api/external/members.html index 8f420fc..87f08a7 100644 --- a/api/external/members.html +++ b/api/external/members.html @@ -479,7 +479,7 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli <tt class="descname">POST </tt><tt class="descname">/#account_id/members/add</tt><a class="headerlink" href="#post--#account_id-members-add" title="Permalink to this definition">¶</a></dt> <dd><p>Adds or updates a single audience member. If you are performing actions on bulk members please use the <cite>/members</cite> call above.</p> -<p>Note: Members who are added to your audience using this API call will +<p><emp>Note</emp>: Members who are added to your audience using this API call will not appear in “recent activity” searches within your account.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> From 2f0148b9487a4494298416596e36359082cf1575 Mon Sep 17 00:00:00 2001 From: Brandon W <fastforward85@gmail.com> Date: Wed, 20 Nov 2013 15:30:35 -0600 Subject: [PATCH 060/219] One more time... --- api/external/members.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/external/members.html b/api/external/members.html index 87f08a7..0bc476b 100644 --- a/api/external/members.html +++ b/api/external/members.html @@ -479,7 +479,7 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli <tt class="descname">POST </tt><tt class="descname">/#account_id/members/add</tt><a class="headerlink" href="#post--#account_id-members-add" title="Permalink to this definition">¶</a></dt> <dd><p>Adds or updates a single audience member. If you are performing actions on bulk members please use the <cite>/members</cite> call above.</p> -<p><emp>Note</emp>: Members who are added to your audience using this API call will +<p><em>Note</em>: Members who are added to your audience using this API call will not appear in “recent activity” searches within your account.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> From 339c3be18ccd91ee24b6d332ac30a1db8f0af4c7 Mon Sep 17 00:00:00 2001 From: Brandon W <fastforward85@gmail.com> Date: Wed, 20 Nov 2013 15:32:50 -0600 Subject: [PATCH 061/219] Tweaked formatting... last time. --- api/external/members.html | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/api/external/members.html b/api/external/members.html index 0bc476b..07f8287 100644 --- a/api/external/members.html +++ b/api/external/members.html @@ -479,8 +479,10 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli <tt class="descname">POST </tt><tt class="descname">/#account_id/members/add</tt><a class="headerlink" href="#post--#account_id-members-add" title="Permalink to this definition">¶</a></dt> <dd><p>Adds or updates a single audience member. If you are performing actions on bulk members please use the <cite>/members</cite> call above.</p> -<p><em>Note</em>: Members who are added to your audience using this API call will -not appear in “recent activity” searches within your account.</p> +<dl class="docutils"> +<dt><em>Note</em>: Members who are added to your audience using this API call will</dt> +<dd>not appear in “recent activity” searches within your account.</dd> +</dl> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> From d5ee0294c9f3d144a25350ed9f55ef551944e6d3 Mon Sep 17 00:00:00 2001 From: Brandon W <fastforward85@gmail.com> Date: Wed, 20 Nov 2013 16:09:10 -0600 Subject: [PATCH 062/219] Update PUT /#account_id/members/#member_id Updated PUT /#account_id/members/#member_id per API-591. --- api/external/members.html | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/api/external/members.html b/api/external/members.html index 07f8287..cd66da0 100644 --- a/api/external/members.html +++ b/api/external/members.html @@ -676,10 +676,7 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli <dt id="put--#account_id-members-#member_id"> <tt class="descname">PUT </tt><tt class="descname">/#account_id/members/#member_id</tt><a class="headerlink" href="#put--#account_id-members-#member_id" title="Permalink to this definition">¶</a></dt> <dd><p>Update a single member’s information.</p> -<p>Update the information for an existing member. Note that this method -allows the email address to be updated (which cannot be done with a -POST, since in that case the email address is used to identify the -member).</p> +<p>Update the information for an existing member (even if they are marked as deleted). Note that this method allows the email address to be updated (which cannot be done with a POST, since in that case the email address is used to identify the member).</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> From 9a62c297c1428581ebf733b93b583c8708b964a9 Mon Sep 17 00:00:00 2001 From: Brandon W <fastforward85@gmail.com> Date: Thu, 21 Nov 2013 10:56:33 -0600 Subject: [PATCH 063/219] Added API Rate Limit Note Added API Rate Limit Note --- index.html | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index edb72f8..390d539 100644 --- a/index.html +++ b/index.html @@ -1,4 +1,3 @@ - <!doctype html> @@ -260,6 +259,10 @@ <h2>API calls by category<a class="headerlink" href="#api-calls-by-category" tit </ul> </div> </div> +<div class="section" id="api-rate-limit"> +<h2>API calls by category<a class="headerlink" href="#api-rate-limit" title="Permalink to this headline">¶</a></h2> +<p>To prevent accidental overuse, calls to Emma's API are rate limited to 180 calls per minute. If you exceed the limit, you will receive a response of 403 Rate Limit Exceeded until enough time has elapsed between calls.</p> +</div> <div class="section" id="additional-documentation"> <h2>Additional Documentation<a class="headerlink" href="#additional-documentation" title="Permalink to this headline">¶</a></h2> <div class="toctree-wrapper compound"> @@ -302,6 +305,7 @@ <h3><a href="#">Table Of Contents</a></h3> <li><a class="reference internal" href="#api-wrappers">API Wrappers</a></li> <li><a class="reference internal" href="#quickstart">Quickstart</a></li> <li><a class="reference internal" href="#api-calls-by-category">API calls by category</a><ul> +<li><a class="reference internal" href="#api-rate-limit">API Rate Limit</a><ul> </ul> </li> <li><a class="reference internal" href="#additional-documentation">Additional Documentation</a><ul> @@ -352,4 +356,4 @@ <h3>Interested in Emma?</h3> Last updated on Aug 22, 2013 at 09:41 AM. </div> </body> -</html> \ No newline at end of file +</html> From 481d949f69416e656580cf1d96d0094d504d7967 Mon Sep 17 00:00:00 2001 From: Brandon W <fastforward85@gmail.com> Date: Thu, 21 Nov 2013 10:59:45 -0600 Subject: [PATCH 064/219] API Rate Limit Note API Rate Limit Note --- index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index 390d539..be5b63f 100644 --- a/index.html +++ b/index.html @@ -260,7 +260,7 @@ <h2>API calls by category<a class="headerlink" href="#api-calls-by-category" tit </div> </div> <div class="section" id="api-rate-limit"> -<h2>API calls by category<a class="headerlink" href="#api-rate-limit" title="Permalink to this headline">¶</a></h2> +<h2>API Rate Limit<a class="headerlink" href="#api-rate-limit" title="Permalink to this headline">¶</a></h2> <p>To prevent accidental overuse, calls to Emma's API are rate limited to 180 calls per minute. If you exceed the limit, you will receive a response of 403 Rate Limit Exceeded until enough time has elapsed between calls.</p> </div> <div class="section" id="additional-documentation"> @@ -304,7 +304,7 @@ <h3><a href="#">Table Of Contents</a></h3> <li><a class="reference internal" href="#overview">Overview</a></li> <li><a class="reference internal" href="#api-wrappers">API Wrappers</a></li> <li><a class="reference internal" href="#quickstart">Quickstart</a></li> -<li><a class="reference internal" href="#api-calls-by-category">API calls by category</a><ul> +<li><a class="reference internal" href="#api-calls-by-category">API calls by category</a> <li><a class="reference internal" href="#api-rate-limit">API Rate Limit</a><ul> </ul> </li> From 2bd1b95e4104a1c11b506e9da70ebdc5c88a386b Mon Sep 17 00:00:00 2001 From: Brandon W <fastforward85@gmail.com> Date: Tue, 28 Jan 2014 13:42:23 -0600 Subject: [PATCH 065/219] Update response.html --- api/external/response.html | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/api/external/response.html b/api/external/response.html index 73a3592..3b7b2f1 100644 --- a/api/external/response.html +++ b/api/external/response.html @@ -1,4 +1,3 @@ - <!doctype html> @@ -136,7 +135,7 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head <li><strong>webview_shared</strong> – total times a customer has shared their mailing</li> <li><strong>webview_share_clicked</strong> – total times a customer-shared mailing has been seen</li> <li><strong>opted_out</strong> – people who opted out based on this mailing</li> -<li><strong>signed_up</strong> – people who opted out based on this mailing</li> +<li><strong>signed_up</strong> – people who signed up based on this mailing</li> </ul> </dd> </dl> @@ -1022,4 +1021,4 @@ <h3>Interested in Emma?</h3> Last updated on Aug 22, 2013 at 09:41 AM. </div> </body> -</html> \ No newline at end of file +</html> From 7a3effe4c2a72d1b031818ee731e5633e220235b Mon Sep 17 00:00:00 2001 From: Brandon W <fastforward85@gmail.com> Date: Tue, 18 Feb 2014 12:57:06 -0600 Subject: [PATCH 066/219] Update triggers.html --- api/external/triggers.html | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/api/external/triggers.html b/api/external/triggers.html index 3666e8a..9c45021 100644 --- a/api/external/triggers.html +++ b/api/external/triggers.html @@ -1,4 +1,3 @@ - <!doctype html> @@ -242,7 +241,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head </tr> </tbody> </table> -<p>Accepts one of ‘s’ (signup), ‘c’ (click), ‘u’ (survey), +<p>Accepts one of ‘s’ (signup), ‘c’ (click), ‘f’ (trigger flag), ‘u’ (survey), ‘si’ (signup_integration), ‘d’ (date), ‘r’ (recurring date). :type event_type: string</p> <table class="docutils field-list" frame="void" rules="none"> @@ -545,4 +544,4 @@ <h3>Interested in Emma?</h3> Last updated on Aug 22, 2013 at 09:41 AM. </div> </body> -</html> \ No newline at end of file +</html> From 70a38b0cd74669ba5c5a9a758cb04e084a25677c Mon Sep 17 00:00:00 2001 From: Wanamaker <brandon.wanamaker@myemma.com> Date: Tue, 18 Feb 2014 14:13:36 -0600 Subject: [PATCH 067/219] Updating docs to reflect API member data field trigger changes. --- api/external/members.html | 3 +++ api/external/triggers.html | 23 +++++++++++++++++++++++ 2 files changed, 26 insertions(+) diff --git a/api/external/members.html b/api/external/members.html index cd66da0..d546bfb 100644 --- a/api/external/members.html +++ b/api/external/members.html @@ -491,6 +491,7 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli <li><strong>email</strong> (<em>string</em>) – Email address of member to add or update</li> <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 member data triggers when set to <em>true</em>.</li> </ul> </td> </tr> @@ -556,6 +557,7 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli with your own copy. Must include the following tags: [rsvp_name], [rsvp_email], [opt_in_url], [opt_out_url].</li> +<li><strong>field_triggers</strong> (<em>boolean</em>) – Optional. Fires related member data triggers when set to <em>true</em>.</li> </ul> </td> </tr> @@ -687,6 +689,7 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli ‘a’ (active), ‘e’ (error), ‘o’ (opt-out).</li> <li><strong>fields</strong> (<em>array</em>) – An array of fields with associated values for this member.</li> +<li><strong>field_triggers</strong> (<em>boolean</em>) – Optional. Fires related member data triggers when set to <em>true</em>.</li> </ul> </td> </tr> diff --git a/api/external/triggers.html b/api/external/triggers.html index 9c45021..06f1ec6 100644 --- a/api/external/triggers.html +++ b/api/external/triggers.html @@ -263,9 +263,32 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head <li><strong>push_offset</strong> (<em>integer</em>) – An optional delay interval for messages created from this trigger (specified in seconds).</li> <li><strong>is_disabled</strong> (<em>boolean</em>) – An optional flag to disable the trigger.</li> +<li><strong>from_operator</strong> (<em>string</em>) – A string that specifies an operator for the <em>from</em> operator field.</li> +<li><strong>from_value</strong> (<em>string</em>) – A string that specifies the value of the <em>from</em> member data field.</li> +<li><strong>to_operator</strong> (<em>string</em>) – A string that specifies an operator for the <em>to</em> operator field.</li> +<li><strong>to_value</strong> (<em>string</em>) – A string that specifies the value of the <em>to</em> member data field.</li> </ul> </td> </tr> +<tr class="field-even field"><th class="field-name">To/From Values :</th><td class="field-body"><p class="first">The these are the specific values used in the <em>from_operator</em> and <em>to_operator</em> parameters.</p> +</td> +<table class="docutils field-list" frame="void" rules="none"> + <col class="field-name" /> + <col class="field-body" /> + <tbody valign="top"> + <tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> + <li>anything</li> + <li>contains</li> + <li>equals</li> + <li>does-not-equal</li> + <li>empty</li> + <li>greater-than</li> + <li>greater-than-or-equal-to</li> + <li>less-than</li> + <li>less-than-or-equal-to</li> + </ul> + </td> + </tr> <tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">The new trigger’s id.</p> </td> </tr> From faa69c96ec15501a77858aa37943e164b9056a8c Mon Sep 17 00:00:00 2001 From: Wanamaker <brandon.wanamaker@myemma.com> Date: Tue, 18 Feb 2014 14:16:15 -0600 Subject: [PATCH 068/219] Correcting formatting mistakes. --- api/external/triggers.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/api/external/triggers.html b/api/external/triggers.html index 06f1ec6..1542632 100644 --- a/api/external/triggers.html +++ b/api/external/triggers.html @@ -272,10 +272,10 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head </tr> <tr class="field-even field"><th class="field-name">To/From Values :</th><td class="field-body"><p class="first">The these are the specific values used in the <em>from_operator</em> and <em>to_operator</em> parameters.</p> </td> -<table class="docutils field-list" frame="void" rules="none"> +<!-- <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> - <tbody valign="top"> + <tbody valign="top">--> <tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> <li>anything</li> <li>contains</li> From ec1bf9ef5f809ce806abfabc4afdf4a030225495 Mon Sep 17 00:00:00 2001 From: Wanamaker <brandon.wanamaker@myemma.com> Date: Tue, 18 Feb 2014 14:19:10 -0600 Subject: [PATCH 069/219] Correcting formatting mistakes. --- api/external/triggers.html | 7 ------- 1 file changed, 7 deletions(-) diff --git a/api/external/triggers.html b/api/external/triggers.html index 1542632..5a430f7 100644 --- a/api/external/triggers.html +++ b/api/external/triggers.html @@ -272,11 +272,6 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head </tr> <tr class="field-even field"><th class="field-name">To/From Values :</th><td class="field-body"><p class="first">The these are the specific values used in the <em>from_operator</em> and <em>to_operator</em> parameters.</p> </td> -<!-- <table class="docutils field-list" frame="void" rules="none"> - <col class="field-name" /> - <col class="field-body" /> - <tbody valign="top">--> - <tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> <li>anything</li> <li>contains</li> <li>equals</li> @@ -287,8 +282,6 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head <li>less-than</li> <li>less-than-or-equal-to</li> </ul> - </td> - </tr> <tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">The new trigger’s id.</p> </td> </tr> From de35aa9ef30c68ea333b120cd8df45b07b456b01 Mon Sep 17 00:00:00 2001 From: Wanamaker <brandon.wanamaker@myemma.com> Date: Tue, 18 Feb 2014 14:20:01 -0600 Subject: [PATCH 070/219] Still correcting formatting issues. --- api/external/triggers.html | 1 + 1 file changed, 1 insertion(+) diff --git a/api/external/triggers.html b/api/external/triggers.html index 5a430f7..22bc3c9 100644 --- a/api/external/triggers.html +++ b/api/external/triggers.html @@ -272,6 +272,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head </tr> <tr class="field-even field"><th class="field-name">To/From Values :</th><td class="field-body"><p class="first">The these are the specific values used in the <em>from_operator</em> and <em>to_operator</em> parameters.</p> </td> + <ul> <li>anything</li> <li>contains</li> <li>equals</li> From 251c04163f2555602f8f5febce2fcb309f63ef25 Mon Sep 17 00:00:00 2001 From: Wanamaker <brandon.wanamaker@myemma.com> Date: Tue, 18 Feb 2014 14:26:41 -0600 Subject: [PATCH 071/219] It's been a while since I've formatted HTML... --- api/external/triggers.html | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/api/external/triggers.html b/api/external/triggers.html index 22bc3c9..06f1ec6 100644 --- a/api/external/triggers.html +++ b/api/external/triggers.html @@ -272,7 +272,11 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head </tr> <tr class="field-even field"><th class="field-name">To/From Values :</th><td class="field-body"><p class="first">The these are the specific values used in the <em>from_operator</em> and <em>to_operator</em> parameters.</p> </td> - <ul> +<table class="docutils field-list" frame="void" rules="none"> + <col class="field-name" /> + <col class="field-body" /> + <tbody valign="top"> + <tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> <li>anything</li> <li>contains</li> <li>equals</li> @@ -283,6 +287,8 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head <li>less-than</li> <li>less-than-or-equal-to</li> </ul> + </td> + </tr> <tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">The new trigger’s id.</p> </td> </tr> From b1f266cc1b9ada86a9f184066191029f4bd8af42 Mon Sep 17 00:00:00 2001 From: Wanamaker <brandon.wanamaker@myemma.com> Date: Tue, 18 Feb 2014 14:33:35 -0600 Subject: [PATCH 072/219] ... --- api/external/triggers.html | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/api/external/triggers.html b/api/external/triggers.html index 06f1ec6..db15006 100644 --- a/api/external/triggers.html +++ b/api/external/triggers.html @@ -272,11 +272,8 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head </tr> <tr class="field-even field"><th class="field-name">To/From Values :</th><td class="field-body"><p class="first">The these are the specific values used in the <em>from_operator</em> and <em>to_operator</em> parameters.</p> </td> -<table class="docutils field-list" frame="void" rules="none"> - <col class="field-name" /> - <col class="field-body" /> <tbody valign="top"> - <tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> + <tr class="field-odd field"><th class="field-name">To/From Values:</th><td class="field-body"><ul class="first simple"> <li>anything</li> <li>contains</li> <li>equals</li> @@ -289,6 +286,8 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head </ul> </td> </tr> + </tbody> +</tr> <tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">The new trigger’s id.</p> </td> </tr> From c12752211ac6a06e51f8f7665e6a7d9a05f1424c Mon Sep 17 00:00:00 2001 From: Wanamaker <brandon.wanamaker@myemma.com> Date: Tue, 18 Feb 2014 14:34:20 -0600 Subject: [PATCH 073/219] ... --- api/external/triggers.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/external/triggers.html b/api/external/triggers.html index db15006..483a264 100644 --- a/api/external/triggers.html +++ b/api/external/triggers.html @@ -273,7 +273,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head <tr class="field-even field"><th class="field-name">To/From Values :</th><td class="field-body"><p class="first">The these are the specific values used in the <em>from_operator</em> and <em>to_operator</em> parameters.</p> </td> <tbody valign="top"> - <tr class="field-odd field"><th class="field-name">To/From Values:</th><td class="field-body"><ul class="first simple"> + <tr class="field-odd field"><td class="field-body"><ul class="first simple"> <li>anything</li> <li>contains</li> <li>equals</li> From 01cf22cfe7a8c549bbb7a76eb4174988ed00b352 Mon Sep 17 00:00:00 2001 From: Wanamaker <brandon.wanamaker@myemma.com> Date: Tue, 18 Feb 2014 14:35:47 -0600 Subject: [PATCH 074/219] I'm trying --- api/external/triggers.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/external/triggers.html b/api/external/triggers.html index 483a264..13ae851 100644 --- a/api/external/triggers.html +++ b/api/external/triggers.html @@ -273,7 +273,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head <tr class="field-even field"><th class="field-name">To/From Values :</th><td class="field-body"><p class="first">The these are the specific values used in the <em>from_operator</em> and <em>to_operator</em> parameters.</p> </td> <tbody valign="top"> - <tr class="field-odd field"><td class="field-body"><ul class="first simple"> + <tr class="field-odd field"><th class="field-name"></th><td class="field-body"><ul class="first simple"> <li>anything</li> <li>contains</li> <li>equals</li> From 6ed589bd34fa7ea333a85233134ec07a3989d597 Mon Sep 17 00:00:00 2001 From: Wanamaker <brandon.wanamaker@myemma.com> Date: Tue, 18 Feb 2014 14:40:50 -0600 Subject: [PATCH 075/219] I'm trying --- api/external/triggers.html | 2 ++ 1 file changed, 2 insertions(+) diff --git a/api/external/triggers.html b/api/external/triggers.html index 13ae851..1f2f5aa 100644 --- a/api/external/triggers.html +++ b/api/external/triggers.html @@ -270,6 +270,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head </ul> </td> </tr> +<p> <tr class="field-even field"><th class="field-name">To/From Values :</th><td class="field-body"><p class="first">The these are the specific values used in the <em>from_operator</em> and <em>to_operator</em> parameters.</p> </td> <tbody valign="top"> @@ -288,6 +289,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head </tr> </tbody> </tr> +</p> <tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">The new trigger’s id.</p> </td> </tr> From 87b1d1ec5a8ae6679ff0bb1686b1a60d673a8e6b Mon Sep 17 00:00:00 2001 From: Wanamaker <brandon.wanamaker@myemma.com> Date: Tue, 18 Feb 2014 14:42:25 -0600 Subject: [PATCH 076/219] I'm trying --- api/external/triggers.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/api/external/triggers.html b/api/external/triggers.html index 1f2f5aa..d448925 100644 --- a/api/external/triggers.html +++ b/api/external/triggers.html @@ -270,7 +270,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head </ul> </td> </tr> -<p> +<br/> <tr class="field-even field"><th class="field-name">To/From Values :</th><td class="field-body"><p class="first">The these are the specific values used in the <em>from_operator</em> and <em>to_operator</em> parameters.</p> </td> <tbody valign="top"> @@ -289,7 +289,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head </tr> </tbody> </tr> -</p> +<br/> <tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">The new trigger’s id.</p> </td> </tr> From 556293cf01cafec832980f2fa5532feae3e84d25 Mon Sep 17 00:00:00 2001 From: Wanamaker <brandon.wanamaker@myemma.com> Date: Tue, 18 Feb 2014 14:43:04 -0600 Subject: [PATCH 077/219] I'm trying --- api/external/triggers.html | 2 -- 1 file changed, 2 deletions(-) diff --git a/api/external/triggers.html b/api/external/triggers.html index d448925..13ae851 100644 --- a/api/external/triggers.html +++ b/api/external/triggers.html @@ -270,7 +270,6 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head </ul> </td> </tr> -<br/> <tr class="field-even field"><th class="field-name">To/From Values :</th><td class="field-body"><p class="first">The these are the specific values used in the <em>from_operator</em> and <em>to_operator</em> parameters.</p> </td> <tbody valign="top"> @@ -289,7 +288,6 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head </tr> </tbody> </tr> -<br/> <tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">The new trigger’s id.</p> </td> </tr> From 170f6007f4698bfac9c52f5842169b44aff00817 Mon Sep 17 00:00:00 2001 From: Wanamaker <brandon.wanamaker@myemma.com> Date: Tue, 18 Feb 2014 14:44:45 -0600 Subject: [PATCH 078/219] Last time --- api/external/triggers.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/api/external/triggers.html b/api/external/triggers.html index 13ae851..29aa10b 100644 --- a/api/external/triggers.html +++ b/api/external/triggers.html @@ -263,9 +263,9 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head <li><strong>push_offset</strong> (<em>integer</em>) – An optional delay interval for messages created from this trigger (specified in seconds).</li> <li><strong>is_disabled</strong> (<em>boolean</em>) – An optional flag to disable the trigger.</li> -<li><strong>from_operator</strong> (<em>string</em>) – A string that specifies an operator for the <em>from</em> operator field.</li> +<li><strong>from_operator</strong> (<em>string</em>) – A string that specifies an operator value for the <em>from</em> operator field.</li> <li><strong>from_value</strong> (<em>string</em>) – A string that specifies the value of the <em>from</em> member data field.</li> -<li><strong>to_operator</strong> (<em>string</em>) – A string that specifies an operator for the <em>to</em> operator field.</li> +<li><strong>to_operator</strong> (<em>string</em>) – A string that specifies an operator value for the <em>to</em> operator field.</li> <li><strong>to_value</strong> (<em>string</em>) – A string that specifies the value of the <em>to</em> member data field.</li> </ul> </td> From e6e91c208ac80d32066b64f6e85de5ff210284ae Mon Sep 17 00:00:00 2001 From: Wanamaker <brandon.wanamaker@myemma.com> Date: Tue, 18 Feb 2014 15:39:49 -0600 Subject: [PATCH 079/219] Acceptance changes. --- api/external/members.html | 6 +++--- api/external/triggers.html | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/api/external/members.html b/api/external/members.html index d546bfb..0f39a72 100644 --- a/api/external/members.html +++ b/api/external/members.html @@ -491,7 +491,7 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli <li><strong>email</strong> (<em>string</em>) – Email address of member to add or update</li> <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 member data triggers when set to <em>true</em>.</li> +<li><strong>field_triggers</strong> (<em>boolean</em>) – Optional. Fires related field change autoresponders when set to <em>true</em>.</li> </ul> </td> </tr> @@ -557,7 +557,7 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli with your own copy. Must include the following tags: [rsvp_name], [rsvp_email], [opt_in_url], [opt_out_url].</li> -<li><strong>field_triggers</strong> (<em>boolean</em>) – Optional. Fires related member data triggers when set to <em>true</em>.</li> +<li><strong>field_triggers</strong> (<em>boolean</em>) – Optional. Fires related field change autoresponders when set to <em>true</em>.</li> </ul> </td> </tr> @@ -689,7 +689,7 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli ‘a’ (active), ‘e’ (error), ‘o’ (opt-out).</li> <li><strong>fields</strong> (<em>array</em>) – An array of fields with associated values for this member.</li> -<li><strong>field_triggers</strong> (<em>boolean</em>) – Optional. Fires related member data triggers when set to <em>true</em>.</li> +<li><strong>field_triggers</strong> (<em>boolean</em>) – Optional. Fires related field change autoresponders when set to <em>true</em>.</li> </ul> </td> </tr> diff --git a/api/external/triggers.html b/api/external/triggers.html index 29aa10b..20c856d 100644 --- a/api/external/triggers.html +++ b/api/external/triggers.html @@ -270,7 +270,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head </ul> </td> </tr> -<tr class="field-even field"><th class="field-name">To/From Values :</th><td class="field-body"><p class="first">The these are the specific values used in the <em>from_operator</em> and <em>to_operator</em> parameters.</p> +<tr class="field-even field"><th class="field-name">To/From Values :</th><td class="field-body"><p class="first">These are the specific values used in the <em>from_operator</em> and <em>to_operator</em> parameters.</p> </td> <tbody valign="top"> <tr class="field-odd field"><th class="field-name"></th><td class="field-body"><ul class="first simple"> From d4600eebbfa4339cd3e260201bdcf3d54dcc17f1 Mon Sep 17 00:00:00 2001 From: Wanamaker <brandon.wanamaker@myemma.com> Date: Tue, 18 Feb 2014 15:41:57 -0600 Subject: [PATCH 080/219] Acceptance changes. --- api/external/triggers.html | 1 + 1 file changed, 1 insertion(+) diff --git a/api/external/triggers.html b/api/external/triggers.html index 20c856d..410bbd0 100644 --- a/api/external/triggers.html +++ b/api/external/triggers.html @@ -270,6 +270,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head </ul> </td> </tr> +<br/> <tr class="field-even field"><th class="field-name">To/From Values :</th><td class="field-body"><p class="first">These are the specific values used in the <em>from_operator</em> and <em>to_operator</em> parameters.</p> </td> <tbody valign="top"> From 0373925465a970a7810a3cbeeee7f2af730cac6e Mon Sep 17 00:00:00 2001 From: Wanamaker <brandon.wanamaker@myemma.com> Date: Thu, 10 Apr 2014 12:04:25 -0500 Subject: [PATCH 081/219] Added the S (split) mailing type. --- api/external/mailings.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/external/mailings.html b/api/external/mailings.html index 0868059..75f59ee 100644 --- a/api/external/mailings.html +++ b/api/external/mailings.html @@ -118,7 +118,7 @@ <h1>Mailings<a class="headerlink" href="#mailings" title="Permalink to this head <li><strong>include_archived</strong> (<em>boolean</em>) – Optional flag to include archived mailings in the list.</li> <li><strong>mailing_types</strong> (<em>string</em>) – Accepts a comma-separated string with one or more of the following mailing types: ‘m’ (standard), ‘t’ (test), -‘r’ (trigger). Defaults to ‘m,t’, standard and test mailings, +‘r’ (trigger), ‘s’ (split). Defaults to ‘m,t’, standard and test mailings, when none are specified.</li> <li><strong>mailing_statuses</strong> (<em>string</em>) – Accepts a comma-separated string with one or more of the following mailing statuses: ‘p’ (pending), ‘a’ (paused), From a8d38ed010f8af2653b1101b0cb305cf6757cd68 Mon Sep 17 00:00:00 2001 From: rspielvogel <rspielvogel@myemma.com> Date: Tue, 23 Sep 2014 15:37:46 -0500 Subject: [PATCH 082/219] Add in Node.js wrapper from Nathan Peck --- index.html | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/index.html b/index.html index be5b63f..efcab60 100644 --- a/index.html +++ b/index.html @@ -4,13 +4,13 @@ <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> - + <title>Emma API Documentation | Emma, Inc.</title> - + <link rel="stylesheet" href="_static/emma.css" type="text/css" /> <link rel="stylesheet" href="_static/pygments.css" type="text/css" /> - + <script type="text/javascript"> var DOCUMENTATION_OPTIONS = { URL_ROOT: './', @@ -20,10 +20,10 @@ HAS_SOURCE: true }; </script> - + <script src="http://code.jquery.com/jquery-1.4.min.js"></script> <script>window.jQuery || document.write('<script src="_static/jquery.js"><\/script>')</script> - + <script type="text/javascript" src="//use.typekit.net/zfm0nfo.js"></script> <script type="text/javascript">try{Typekit.load();}catch(e){}</script> <script type="text/javascript" src="_static/underscore.js"></script> @@ -87,15 +87,15 @@ <h3>Navigation</h3> <li class="right" > <a href="api/external/fields.html" title="Fields" accesskey="N">next</a> |</li> - <li><a href="#">audience 0.1 documentation</a> »</li> + <li><a href="#">audience 0.1 documentation</a> »</li> </ul> - </div> + </div> <div class="document"> <div class="documentwrapper"> <div class="bodywrapper"> <div class="body"> - + <div class="section" id="emma-api"> <h1>Emma API<a class="headerlink" href="#emma-api" title="Permalink to this headline">¶</a></h1> <div class="section" id="a-word-to-the-wise"> @@ -155,6 +155,8 @@ <h2>API Wrappers<a class="headerlink" href="#api-wrappers" title="Permalink to t <dd><a class="reference external" href="https://github.com/myemma/EmmaRuby">EmmaRuby</a>: Commissioned by Emma and built by Nashville developer <a class="reference external" href="https://github.com/dennismonsewicz">Dennis Monsewicz</a>.</dd> <dt><strong>Objective-C</strong></dt> <dd><a class="reference external" href="https://github.com/myemma/EmmaSDK">EmmaSDK</a>: Commissioned by Emma and built by Portland developer <a class="reference external" href="https://github.com/bvanderveen">Benjamin Van Der Veen</a>.</dd> +<dt><strong>Node.js</strong></dt> +<dd><a class="reference external" href="https://github.com/nathanpeck/emma-sdk">emma-sdk</a>: Built by New York City developer <a class="reference external" href="https://github.com/nathanpeck">Nathan Peck</a> for <a class="reference external" href="https://storydesk.com/"> StoryDesk.</a></dd> </dl> </div> <div class="section" id="quickstart"> From ac1648bfd715d6f2d7cb358716e2364c8bcd4088 Mon Sep 17 00:00:00 2001 From: Jackson West <jackson.west@myemma.com> Date: Mon, 9 Mar 2015 11:46:31 -0500 Subject: [PATCH 083/219] New signup forms list public api --- .gitignore | 3 +- api/external/searches.html | 6 +- api/external/signup_forms.html | 195 +++++++++++++++++++++++++++++++++ api/external/triggers.html | 6 +- http-routingtable.html | 5 + index.html | 1 + 6 files changed, 209 insertions(+), 7 deletions(-) create mode 100644 api/external/signup_forms.html diff --git a/.gitignore b/.gitignore index e4ff47f..5205c50 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ .DS_Store -.buildinfo \ No newline at end of file +.buildinfo +.idea diff --git a/api/external/searches.html b/api/external/searches.html index 372779a..dcde2e5 100644 --- a/api/external/searches.html +++ b/api/external/searches.html @@ -30,7 +30,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="Triggers" href="triggers.html" /> + <link rel="next" title="Signup Forms" href="signup_forms.html" /> <link rel="prev" title="Response" href="response.html" /> <link rel="icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> <link rel="shortcut icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> @@ -87,7 +87,7 @@ <h3>Navigation</h3> <a href="../../http-routingtable.html" title="HTTP Routing Table" >routing table</a> |</li> <li class="right" > - <a href="triggers.html" title="Triggers" + <a href="signup_forms.html" title="Signup Forms" accesskey="N">next</a> |</li> <li class="right" > <a href="response.html" title="Response" @@ -477,7 +477,7 @@ <h1>Searches<a class="headerlink" href="#searches" title="Permalink to this head <ul> <li><a href="../../index.html">Documentation overview</a><ul> <li>Previous: <a href="response.html" title="previous chapter">Response</a></li> - <li>Next: <a href="triggers.html" title="next chapter">Triggers</a></li> + <li>Next: <a href="signup_forms.html" title="next chapter">Signup Forms</a></li> </ul></li> </ul> <div id="searchbox" style="display: none"> diff --git a/api/external/signup_forms.html b/api/external/signup_forms.html new file mode 100644 index 0000000..7110104 --- /dev/null +++ b/api/external/signup_forms.html @@ -0,0 +1,195 @@ + +<!doctype html> + + +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> + + <title>Emma API Documentation | Emma, Inc.</title> + + + <link rel="stylesheet" href="../../_static/emma.css" type="text/css" /> + <link rel="stylesheet" href="../../_static/pygments.css" type="text/css" /> + + <script type="text/javascript"> + var DOCUMENTATION_OPTIONS = { + URL_ROOT: '../../', + VERSION: '0.1', + COLLAPSE_INDEX: false, + FILE_SUFFIX: '.html', + HAS_SOURCE: true + }; + </script> + + <script src="http://code.jquery.com/jquery-1.4.min.js"></script> + <script>window.jQuery || document.write('<script src="_static/jquery.js"><\/script>')</script> + + <script type="text/javascript" src="//use.typekit.net/zfm0nfo.js"></script> + <script type="text/javascript">try{Typekit.load();}catch(e){}</script> + <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="Triggers" href="triggers.html" /> + <link rel="prev" title="Searches" href="searches.html" /> + <link rel="icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> + <link rel="shortcut icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> + <link rel="apple-touch-icon-precomposed" href="http://myemma.com/static/global/favicons/apple-iphone.png" /> + <link rel="apple-touch-icon-precomposed" sizes="72x72" href="http://myemma.com/static/global/favicons/apple-ipad.png" /> + <link rel="apple-touch-icon-precomposed" sizes="114x114" href="http://myemma.com/static/global/favicons/apple-iphone-2x.png" /> + <link rel="apple-touch-icon-precomposed" sizes="144x144" href="http://myemma.com/static/global/favicons/apple-ipad-2x.png" /> + + <style type="text/css"> + .resp-trigger, .resp-trigger:hover {font-size:10pt;text-decoration:none;} + div.sample-response.hide-response pre.response {display: none;} + div.sample-response .tshow, + div.sample-response.hide-response .thide {display: none;} + div.sample-response .thide, + div.sample-response.hide-response .tshow {display: inline;} + </style> + <script> + $().ready(function() { + $("a.resp-trigger").click(function(e) { + e.preventDefault(); + $(this).parents("div.sample-response").toggleClass("hide-response"); + }); + }); + </script> + + <script type="text/javascript"> + + var _gaq = _gaq || []; + _gaq.push(['_setAccount', 'UA-512410-18']); + _gaq.push(['_trackPageview']); + + (function() { + var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; + ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; + var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); + })(); + + </script> + +</head> +<body> +<header role="banner"> + <a href="/index.html"> + <h1>Emma API Documentation</h1> + </a> +</header> +<div class="related"> + <h3>Navigation</h3> + <ul> + <li class="right" style="margin-right: 10px"> + <a href="../../genindex.html" title="General Index" + accesskey="I">index</a></li> + <li class="right" > + <a href="../../http-routingtable.html" title="HTTP Routing Table" + >routing table</a> |</li> + <li class="right" > + <a href="triggers.html" title="Triggers" + accesskey="N">next</a> |</li> + <li class="right" > + <a href="searches.html" title="Searches" + accesskey="P">previous</a> |</li> + <li><a href="../../index.html">audience 0.1 documentation</a> »</li> + </ul> +</div> + +<div class="document"> +<div class="documentwrapper"> +<div class="bodywrapper"> +<div class="body"> + +<div class="section" id="signup_forms"> +<h1>Signup Forms<a class="headerlink" href="#signup_forms" title="Permalink to this headline">¶</a></h1> +<p>With this endpoint, you can list all of your signup forms.</p> +<dl class="get"> + <dt id="get--#account_id-signup_forms"> + <tt class="descname">GET </tt><tt class="descname">/#account_id/signup_forms</tt><a class="headerlink" href="#get--#account_id-signup_forms" title="Permalink to this definition">¶</a></dt> + <dd><p>Gets a list of this account’s signup forms.</p> + <table class="docutils field-list" frame="void" rules="none"> + <col class="field-name" /> + <col class="field-body" /> + <tbody valign="top"> + <tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first last">An array of signup forms.</p> + </td> + </tr> + </tbody> + </table> + <p> + <div class="sample-response hide-response"> + <span style="font-weight:bold;">Sample Response</span> + <a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>GET /100/signup_forms</b> + +[ + { + "id": 200, + "name": "Your Default Signup Form" + }, + { + "id": 201, + "name": "My First Signup Form" + } + +] + +</pre> + </div> + </p> + </dd></dl> + + +</div> + + +</div> +</div> +</div> +<div class="sphinxsidebar"> + <div class="sphinxsidebarwrapper"><h3>Related Topics</h3> + <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="triggers.html" title="next chapter">Triggers</a></li> + </ul></li> + </ul> + <div id="searchbox" style="display: none"> + <h3>Quick search</h3> + <form class="search" action="../../search.html" method="get"> + <input type="text" name="q" /> + <input type="submit" value="Go" /> + <input type="hidden" name="check_keywords" value="yes" /> + <input type="hidden" name="area" value="default" /> + </form> + <p class="searchtip" style="font-size: 90%"> + Enter search terms or a module, class or function name. + </p> + </div> + <script type="text/javascript">$('#searchbox').show(0);</script> + <div id="emma-links"> + <h3>Emma Links</h3> + <ul> + <li><a href="http://myemma.com" title="Visit Emma's homepage" target="_blank">Emma Home</a></li> + + <li><a href="http://myemma.com/blog" title="Visit the Emma Blog" target="_blank">Emma Blog</a></li> + <li><a href="http://myemma.com/help" title="Visit Emma's help guide" target="_blank">Emma Help</a></li> + </ul> + </div> + + <div id="inquiry"> + <h3>Interested in Emma?</h3> + <p>Emma's email marketing makes communicating simple and stylish. <a href="http://myemma.com/get-started/inquire" title="Get started today.">Get started today</a>.</p> + </div> + </div> +</div> +<div class="clearer"></div> +</div> +<div class="footer"> + © Copyright 2013, Emma. + Last updated on Aug 22, 2013 at 09:41 AM. +</div> +</body> +</html> \ No newline at end of file diff --git a/api/external/triggers.html b/api/external/triggers.html index 410bbd0..d2549cb 100644 --- a/api/external/triggers.html +++ b/api/external/triggers.html @@ -30,7 +30,7 @@ <script type="text/javascript" src="../../_static/doctools.js"></script> <link rel="top" title="audience 0.1 documentation" href="../../index.html" /> <link rel="next" title="Webhooks" href="webhooks.html" /> - <link rel="prev" title="Searches" href="searches.html" /> + <link rel="prev" title="Signup Forms" href="signup_forms.html" /> <link rel="icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> <link rel="shortcut icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> <link rel="apple-touch-icon-precomposed" href="http://myemma.com/static/global/favicons/apple-iphone.png" /> @@ -89,7 +89,7 @@ <h3>Navigation</h3> <a href="webhooks.html" title="Webhooks" accesskey="N">next</a> |</li> <li class="right" > - <a href="searches.html" title="Searches" + <a href="signup_forms.html" title="Signup Forms" accesskey="P">previous</a> |</li> <li><a href="../../index.html">audience 0.1 documentation</a> »</li> </ul> @@ -527,7 +527,7 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head <div class="sphinxsidebarwrapper"><h3>Related Topics</h3> <ul> <li><a href="../../index.html">Documentation overview</a><ul> - <li>Previous: <a href="searches.html" title="previous chapter">Searches</a></li> + <li>Previous: <a href="signup_forms.html" title="previous chapter">Signup Forms</a></li> <li>Next: <a href="webhooks.html" title="next chapter">Webhooks</a></li> </ul></li> </ul> diff --git a/http-routingtable.html b/http-routingtable.html index f3784e3..f91b95b 100644 --- a/http-routingtable.html +++ b/http-routingtable.html @@ -506,6 +506,11 @@ <h1>HTTP Routing Table</h1> <td> <a href="api/external/searches.html#get--#account_id-searches-#search_id-members"><tt class="xref">GET /#account_id/searches/#search_id/members</tt></a></td><td> <em></em></td></tr> + <tr> + <td></td> + <td> + <a href="api/external/signup_forms.html#get--#account_id-signup_forms"><tt class="xref">GET /#account_id/signup_forms</tt></a></td><td> + <em></em></td></tr> <tr> <td></td> <td> diff --git a/index.html b/index.html index efcab60..73bfcdc 100644 --- a/index.html +++ b/index.html @@ -256,6 +256,7 @@ <h2>API calls by category<a class="headerlink" href="#api-calls-by-category" tit <li class="toctree-l1"><a class="reference internal" href="api/external/members.html">Members</a></li> <li class="toctree-l1"><a class="reference internal" href="api/external/response.html">Response</a></li> <li class="toctree-l1"><a class="reference internal" href="api/external/searches.html">Searches</a></li> +<li class="toctree-l1"><a class="reference internal" href="api/external/signup_forms.html">Signup Forms</a></li> <li class="toctree-l1"><a class="reference internal" href="api/external/triggers.html">Triggers</a></li> <li class="toctree-l1"><a class="reference internal" href="api/external/webhooks.html">Webhooks</a></li> </ul> From d20285d414a68127d8ed3aa7a91e34b7c1aed8b4 Mon Sep 17 00:00:00 2001 From: Jackson West <jackson.west@myemma.com> Date: Thu, 26 Mar 2015 08:38:50 -0500 Subject: [PATCH 084/219] This param has never been del_status, changing to result, which is what it is. --- api/external/response.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/external/response.html b/api/external/response.html index 3b7b2f1..e5a8f72 100644 --- a/api/external/response.html +++ b/api/external/response.html @@ -426,7 +426,7 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head <col class="field-body" /> <tbody valign="top"> <tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first last simple"> -<li><strong>del_status</strong> (<em>string</em>) – Accepted options: ‘all’, ‘delivered’, +<li><strong>result</strong> (<em>string</em>) – Accepted options: ‘all’, ‘delivered’, ‘bounced’, ‘hard’, ‘soft’. Defaults to ‘all’, if not provided.</li> </ul> </td> From 57e6f60891c843ff911b8a122deba1029840f519 Mon Sep 17 00:00:00 2001 From: David Hale <david.hale@myemma.com> Date: Mon, 8 Jun 2015 10:45:09 -0500 Subject: [PATCH 085/219] Update API Copyright on footer. Removing POST for Triggers --- _static/emma.css | 2 +- api/external/fields.html | 9 ++- api/external/groups.html | 9 ++- api/external/mailings.html | 9 ++- api/external/members.html | 9 ++- api/external/response.html | 9 ++- api/external/searches.html | 9 ++- api/external/triggers.html | 112 +++--------------------------------- api/external/webhooks.html | 9 ++- genindex.html | 9 ++- http-routingtable.html | 9 ++- index.html | 9 ++- member_search.html | 9 ++- pagination.html | 9 ++- php_get_member_example.html | 9 ++- php_signup_example.html | 9 ++- placeholders.html | 9 ++- search.html | 9 ++- webhooks.html | 9 ++- 19 files changed, 128 insertions(+), 139 deletions(-) diff --git a/_static/emma.css b/_static/emma.css index 5e0532d..3635bba 100644 --- a/_static/emma.css +++ b/_static/emma.css @@ -54,7 +54,7 @@ img.floatingflask { } div.footer { - width: 940px; + width: 450px; margin: 20px auto 30px auto; font-size: 14px; color: #888; diff --git a/api/external/fields.html b/api/external/fields.html index 658546c..88a4018 100644 --- a/api/external/fields.html +++ b/api/external/fields.html @@ -413,8 +413,13 @@ <h3>Interested in Emma?</h3> <div class="clearer"></div> </div> <div class="footer"> - © Copyright 2013, Emma. - Last updated on Aug 22, 2013 at 09:41 AM. + © Copyright 2003-<script language="JavaScript" type="text/javascript"> + now = new Date + theYear=now.getYear() + if (theYear < 1900) + theYear=theYear+1900 + document.write(theYear) + </script>, Emma. </div> </body> </html> \ No newline at end of file diff --git a/api/external/groups.html b/api/external/groups.html index 55ea09b..5093797 100644 --- a/api/external/groups.html +++ b/api/external/groups.html @@ -707,8 +707,13 @@ <h3>Interested in Emma?</h3> <div class="clearer"></div> </div> <div class="footer"> - © Copyright 2013, Emma. - Last updated on Aug 22, 2013 at 09:41 AM. + © Copyright 2003-<script language="JavaScript" type="text/javascript"> + now = new Date + theYear=now.getYear() + if (theYear < 1900) + theYear=theYear+1900 + document.write(theYear) + </script>, Emma. </div> </body> </html> \ No newline at end of file diff --git a/api/external/mailings.html b/api/external/mailings.html index 75f59ee..f2ed91c 100644 --- a/api/external/mailings.html +++ b/api/external/mailings.html @@ -846,8 +846,13 @@ <h3>Interested in Emma?</h3> <div class="clearer"></div> </div> <div class="footer"> - © Copyright 2013, Emma. - Last updated on Aug 22, 2013 at 09:41 AM. + © Copyright 2003-<script language="JavaScript" type="text/javascript"> + now = new Date + theYear=now.getYear() + if (theYear < 1900) + theYear=theYear+1900 + document.write(theYear) + </script>, Emma. </div> </body> </html> \ No newline at end of file diff --git a/api/external/members.html b/api/external/members.html index 0f39a72..8126772 100644 --- a/api/external/members.html +++ b/api/external/members.html @@ -1283,8 +1283,13 @@ <h3>Interested in Emma?</h3> <div class="clearer"></div> </div> <div class="footer"> - © Copyright 2013, Emma. - Last updated on Aug 22, 2013 at 09:41 AM. + © Copyright 2003-<script language="JavaScript" type="text/javascript"> + now = new Date + theYear=now.getYear() + if (theYear < 1900) + theYear=theYear+1900 + document.write(theYear) + </script>, Emma. </div> </body> </html> diff --git a/api/external/response.html b/api/external/response.html index e5a8f72..cbba93d 100644 --- a/api/external/response.html +++ b/api/external/response.html @@ -1017,8 +1017,13 @@ <h3>Interested in Emma?</h3> <div class="clearer"></div> </div> <div class="footer"> - © Copyright 2013, Emma. - Last updated on Aug 22, 2013 at 09:41 AM. + © Copyright 2003-<script language="JavaScript" type="text/javascript"> + now = new Date + theYear=now.getYear() + if (theYear < 1900) + theYear=theYear+1900 + document.write(theYear) + </script>, Emma. </div> </body> </html> diff --git a/api/external/searches.html b/api/external/searches.html index dcde2e5..fddaaa0 100644 --- a/api/external/searches.html +++ b/api/external/searches.html @@ -512,8 +512,13 @@ <h3>Interested in Emma?</h3> <div class="clearer"></div> </div> <div class="footer"> - © Copyright 2013, Emma. - Last updated on Aug 22, 2013 at 09:41 AM. + © Copyright 2003-<script language="JavaScript" type="text/javascript"> + now = new Date + theYear=now.getYear() + if (theYear < 1900) + theYear=theYear+1900 + document.write(theYear) + </script>, Emma. </div> </body> </html> \ No newline at end of file diff --git a/api/external/triggers.html b/api/external/triggers.html index d2549cb..6345c9c 100644 --- a/api/external/triggers.html +++ b/api/external/triggers.html @@ -102,7 +102,7 @@ <h3>Navigation</h3> <div class="section" id="triggers"> <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this headline">¶</a></h1> -<p>These endpoints provide CRUD operations for our trigger system. Creating a +<p>These endpoints provide CRUD operations for our trigger system. Viewing a trigger is probably the most widely used of these operations.</p> <dl class="get"> <dt id="get--#account_id-triggers"> @@ -224,107 +224,6 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head </div> </p> </dd></dl> - -<dl class="post"> -<dt id="post--#account_id-triggers"> -<tt class="descname">POST </tt><tt class="descname">/#account_id/triggers</tt><a class="headerlink" href="#post--#account_id-triggers" title="Permalink to this definition">¶</a></dt> -<dd><p>Create a new trigger.</p> -<table class="docutils field-list" frame="void" rules="none"> -<col class="field-name" /> -<col class="field-body" /> -<tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first last simple"> -<li><strong>name</strong> (<em>string</em>) – A descriptive name for the trigger.</li> -<li><strong>event_type</strong> – The type of event that causes this trigger to fire.</li> -</ul> -</td> -</tr> -</tbody> -</table> -<p>Accepts one of ‘s’ (signup), ‘c’ (click), ‘f’ (trigger flag), ‘u’ (survey), -‘si’ (signup_integration), ‘d’ (date), ‘r’ (recurring date). -:type event_type: string</p> -<table class="docutils field-list" frame="void" rules="none"> -<col class="field-name" /> -<col class="field-body" /> -<tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> -<li><strong>parent_mailing_id</strong> (<em>integer</em>) – The id of the mailing this trigger will use -as a template for message generation.</li> -<li><strong>groups</strong> (<em>array</em>) – An optional array of group ids to which this trigger -will apply.</li> -<li><strong>links</strong> (<em>array</em>) – An array of link_ids for click triggers.</li> -<li><strong>signups</strong> (<em>array</em>) – An array of signup_form_ids for signup triggers.</li> -<li><strong>signup_integrations</strong> (<em>array</em>) – An array of oauth app ids for -signup integration triggers.</li> -<li><strong>surveys</strong> (<em>array</em>) – An array of survey_ids for survey triggers.</li> -<li><strong>field_id</strong> (<em>integer</em>) – A field id to which this trigger will apply if it is -a date or recurring date trigger.</li> -<li><strong>push_offset</strong> (<em>integer</em>) – An optional delay interval for messages created -from this trigger (specified in seconds).</li> -<li><strong>is_disabled</strong> (<em>boolean</em>) – An optional flag to disable the trigger.</li> -<li><strong>from_operator</strong> (<em>string</em>) – A string that specifies an operator value for the <em>from</em> operator field.</li> -<li><strong>from_value</strong> (<em>string</em>) – A string that specifies the value of the <em>from</em> member data field.</li> -<li><strong>to_operator</strong> (<em>string</em>) – A string that specifies an operator value for the <em>to</em> operator field.</li> -<li><strong>to_value</strong> (<em>string</em>) – A string that specifies the value of the <em>to</em> member data field.</li> -</ul> -</td> -</tr> -<br/> -<tr class="field-even field"><th class="field-name">To/From Values :</th><td class="field-body"><p class="first">These are the specific values used in the <em>from_operator</em> and <em>to_operator</em> parameters.</p> -</td> - <tbody valign="top"> - <tr class="field-odd field"><th class="field-name"></th><td class="field-body"><ul class="first simple"> - <li>anything</li> - <li>contains</li> - <li>equals</li> - <li>does-not-equal</li> - <li>empty</li> - <li>greater-than</li> - <li>greater-than-or-equal-to</li> - <li>less-than</li> - <li>less-than-or-equal-to</li> - </ul> - </td> - </tr> - </tbody> -</tr> -<tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">The new trigger’s id.</p> -</td> -</tr> -<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><p class="first"><tt class="docutils literal"><span class="pre">Http500</span></tt> if object_ids is null and event_type is one of: -‘s’ (signup), ‘c’ (click), ‘u’ (survey).</p> -</td> -</tr> -<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http500</span></tt> if field_id is null and event_type is one of: -‘d’ (date), ‘r’ (recurring date).</p> -</td> -</tr> -</tbody> -</table> -<p> -<div class="sample-response hide-response"> -<span style="font-weight:bold;">Sample Response</span> -<a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> -<pre class="response"> -<b>POST /100/triggers</b> -{ - "parent_mailing_id": 200, - "object_ids": [ - 10, - 20, - 30 - ], - "name": "Test", - "event_type": "c" -} - -1024 -</pre> -</div> -</p> -</dd></dl> - <dl class="get"> <dt id="get--#account_id-triggers-#trigger_id"> <tt class="descname">GET </tt><tt class="descname">/#account_id/triggers/#trigger_id</tt><a class="headerlink" href="#get--#account_id-triggers-#trigger_id" title="Permalink to this definition">¶</a></dt> @@ -563,8 +462,13 @@ <h3>Interested in Emma?</h3> <div class="clearer"></div> </div> <div class="footer"> - © Copyright 2013, Emma. - Last updated on Aug 22, 2013 at 09:41 AM. + © Copyright 2003-<script language="JavaScript" type="text/javascript"> + now = new Date + theYear=now.getYear() + if (theYear < 1900) + theYear=theYear+1900 + document.write(theYear) + </script>, Emma. </div> </body> </html> diff --git a/api/external/webhooks.html b/api/external/webhooks.html index 9bc2de5..38cb588 100644 --- a/api/external/webhooks.html +++ b/api/external/webhooks.html @@ -485,8 +485,13 @@ <h3>Interested in Emma?</h3> <div class="clearer"></div> </div> <div class="footer"> - © Copyright 2013, Emma. - Last updated on Aug 22, 2013 at 09:41 AM. + © Copyright 2003-<script language="JavaScript" type="text/javascript"> + now = new Date + theYear=now.getYear() + if (theYear < 1900) + theYear=theYear+1900 + document.write(theYear) + </script>, Emma. </div> </body> </html> \ No newline at end of file diff --git a/genindex.html b/genindex.html index bb64f71..bbc4d50 100644 --- a/genindex.html +++ b/genindex.html @@ -143,8 +143,13 @@ <h3>Interested in Emma?</h3> <div class="clearer"></div> </div> <div class="footer"> - © Copyright 2013, Emma. - Last updated on Aug 22, 2013 at 09:41 AM. + © Copyright 2003-<script language="JavaScript" type="text/javascript"> + now = new Date + theYear=now.getYear() + if (theYear < 1900) + theYear=theYear+1900 + document.write(theYear) + </script>, Emma. </div> </body> </html> \ No newline at end of file diff --git a/http-routingtable.html b/http-routingtable.html index f91b95b..d58fec8 100644 --- a/http-routingtable.html +++ b/http-routingtable.html @@ -620,8 +620,13 @@ <h3>Interested in Emma?</h3> <div class="clearer"></div> </div> <div class="footer"> - © Copyright 2013, Emma. - Last updated on Aug 22, 2013 at 09:41 AM. + © Copyright 2003-<script language="JavaScript" type="text/javascript"> + now = new Date + theYear=now.getYear() + if (theYear < 1900) + theYear=theYear+1900 + document.write(theYear) + </script>, Emma. </div> </body> </html> \ No newline at end of file diff --git a/index.html b/index.html index 73bfcdc..e74bd53 100644 --- a/index.html +++ b/index.html @@ -355,8 +355,13 @@ <h3>Interested in Emma?</h3> <div class="clearer"></div> </div> <div class="footer"> - © Copyright 2013, Emma. - Last updated on Aug 22, 2013 at 09:41 AM. + © Copyright 2003-<script language="JavaScript" type="text/javascript"> + now = new Date + theYear=now.getYear() + if (theYear < 1900) + theYear=theYear+1900 + document.write(theYear) + </script>, Emma. </div> </body> </html> diff --git a/member_search.html b/member_search.html index 001ec14..f13cfc7 100644 --- a/member_search.html +++ b/member_search.html @@ -254,8 +254,13 @@ <h3>Interested in Emma?</h3> <div class="clearer"></div> </div> <div class="footer"> - © Copyright 2013, Emma. - Last updated on Aug 22, 2013 at 09:41 AM. + © Copyright 2003-<script language="JavaScript" type="text/javascript"> + now = new Date + theYear=now.getYear() + if (theYear < 1900) + theYear=theYear+1900 + document.write(theYear) + </script>, Emma. </div> </body> </html> \ No newline at end of file diff --git a/pagination.html b/pagination.html index eec4265..1323471 100644 --- a/pagination.html +++ b/pagination.html @@ -166,8 +166,13 @@ <h3>Interested in Emma?</h3> <div class="clearer"></div> </div> <div class="footer"> - © Copyright 2013, Emma. - Last updated on Aug 22, 2013 at 09:41 AM. + © Copyright 2003-<script language="JavaScript" type="text/javascript"> + now = new Date + theYear=now.getYear() + if (theYear < 1900) + theYear=theYear+1900 + document.write(theYear) + </script>, Emma. </div> </body> </html> \ No newline at end of file diff --git a/php_get_member_example.html b/php_get_member_example.html index c317e24..3efa3e3 100644 --- a/php_get_member_example.html +++ b/php_get_member_example.html @@ -181,8 +181,13 @@ <h3>Interested in Emma?</h3> <div class="clearer"></div> </div> <div class="footer"> - © Copyright 2013, Emma. - Last updated on Aug 22, 2013 at 09:41 AM. + © Copyright 2003-<script language="JavaScript" type="text/javascript"> + now = new Date + theYear=now.getYear() + if (theYear < 1900) + theYear=theYear+1900 + document.write(theYear) + </script>, Emma. </div> </body> </html> \ No newline at end of file diff --git a/php_signup_example.html b/php_signup_example.html index 775b312..30a83a7 100644 --- a/php_signup_example.html +++ b/php_signup_example.html @@ -203,8 +203,13 @@ <h3>Interested in Emma?</h3> <div class="clearer"></div> </div> <div class="footer"> - © Copyright 2013, Emma. - Last updated on Aug 22, 2013 at 09:41 AM. + © Copyright 2003-<script language="JavaScript" type="text/javascript"> + now = new Date + theYear=now.getYear() + if (theYear < 1900) + theYear=theYear+1900 + document.write(theYear) + </script>, Emma. </div> </body> </html> \ No newline at end of file diff --git a/placeholders.html b/placeholders.html index f44c908..d5c746c 100644 --- a/placeholders.html +++ b/placeholders.html @@ -181,8 +181,13 @@ <h3>Interested in Emma?</h3> <div class="clearer"></div> </div> <div class="footer"> - © Copyright 2013, Emma. - Last updated on Aug 22, 2013 at 09:41 AM. + © Copyright 2003-<script language="JavaScript" type="text/javascript"> + now = new Date + theYear=now.getYear() + if (theYear < 1900) + theYear=theYear+1900 + document.write(theYear) + </script>, Emma. </div> </body> </html> \ No newline at end of file diff --git a/search.html b/search.html index 7df9c44..273924d 100644 --- a/search.html +++ b/search.html @@ -153,8 +153,13 @@ <h3>Interested in Emma?</h3> <div class="clearer"></div> </div> <div class="footer"> - © Copyright 2013, Emma. - Last updated on Aug 22, 2013 at 09:41 AM. + © Copyright 2003-<script language="JavaScript" type="text/javascript"> + now = new Date + theYear=now.getYear() + if (theYear < 1900) + theYear=theYear+1900 + document.write(theYear) + </script>, Emma. </div> </body> </html> \ No newline at end of file diff --git a/webhooks.html b/webhooks.html index ab52ae7..e34fd75 100644 --- a/webhooks.html +++ b/webhooks.html @@ -505,8 +505,13 @@ <h3>Interested in Emma?</h3> <div class="clearer"></div> </div> <div class="footer"> - © Copyright 2013, Emma. - Last updated on Aug 22, 2013 at 09:41 AM. + © Copyright 2003-<script language="JavaScript" type="text/javascript"> + now = new Date + theYear=now.getYear() + if (theYear < 1900) + theYear=theYear+1900 + document.write(theYear) + </script>, Emma. </div> </body> </html> \ No newline at end of file From 332818e99424b332ec37c93eccde035b56dc517e Mon Sep 17 00:00:00 2001 From: David Hale <david.hale@myemma.com> Date: Mon, 8 Jun 2015 19:09:51 -0500 Subject: [PATCH 086/219] Add up-to-date img for API Key location --- _images/api_key.png | Bin 0 -> 125575 bytes _images/api_keys.jpg | Bin 68384 -> 0 bytes _static/emma.css | 1 + index.html | 2 +- 4 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 _images/api_key.png delete mode 100644 _images/api_keys.jpg diff --git a/_images/api_key.png b/_images/api_key.png new file mode 100644 index 0000000000000000000000000000000000000000..fc81ce1cd076e998d96107202afa5ece44d1113d GIT binary patch literal 125575 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�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 C|BM{~ literal 0 HcmV?d00001 diff --git a/_images/api_keys.jpg b/_images/api_keys.jpg deleted file mode 100644 index 8db3b098e88038b9bdf27bb4096d19865c56d0a0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 68384 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 Q4wV~a)2=16K+Zn?4PHDN9{>OV diff --git a/_static/emma.css b/_static/emma.css index 3635bba..a7c2d0a 100644 --- a/_static/emma.css +++ b/_static/emma.css @@ -497,6 +497,7 @@ header[role="banner"] { height:140px; max-width:940px; margin:16px auto 0; } header[role="banner"] h1 { width:342px; height:86px; margin:0; background:url(img/logo.png) no-repeat; text-indent:-9999px; } /*Page*/ +div.api_key_img { overflow: hidden; height:300px; } div.document { position:relative; margin-top:0; } /*Sidebar*/ diff --git a/index.html b/index.html index e74bd53..4cbcda7 100644 --- a/index.html +++ b/index.html @@ -166,7 +166,7 @@ <h2>Quickstart<a class="headerlink" href="#quickstart" title="Permalink to this Basic Auth authentication. Inside your Emma account, in the “Account Settings” section, you’ll find your API keys. There’s a public key and a private key and an account ID. It should look like this.</p> -<img alt="_images/api_keys.jpg" src="_images/api_keys.jpg" /> +<div class="api_key_img"><img alt="Emma Billing & Settings API Key" src="_images/api_key.png" /></div> <p>So, let’s add these authentication bits to our code.</p> <div class="highlight-php"><div class="highlight"><pre><span class="c1">// Authentication Variables</span> <span class="nv">$account_id</span> <span class="o">=</span> <span class="s2">"xxx"</span><span class="p">;</span> From ba7799b6d2a2c28edf0150ff4cd6665c155151a3 Mon Sep 17 00:00:00 2001 From: David Hale <david.hale@myemma.com> Date: Mon, 8 Jun 2015 19:23:49 -0500 Subject: [PATCH 087/219] Removing DELETE /imports/delete because of 500 error. Marked in TDEB-128 --- api/external/members.html | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/api/external/members.html b/api/external/members.html index 8126772..2b1e81e 100644 --- a/api/external/members.html +++ b/api/external/members.html @@ -1139,22 +1139,6 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli </p> </dd></dl> -<dl class="delete"> -<dt id="delete--#account_id-members-imports-delete"> -<tt class="descname">DELETE </tt><tt class="descname">/#account_id/members/imports/delete</tt><a class="headerlink" href="#delete--#account_id-members-imports-delete" title="Permalink to this definition">¶</a></dt> -<dd><p>Update an import record to be marked as ‘deleted’.</p> -<table class="docutils field-list" frame="void" rules="none"> -<col class="field-name" /> -<col class="field-body" /> -<tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">True if the import is marked as deleted.</td> -</tr> -<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the import record does not exist</td> -</tr> -</tbody> -</table> -</dd></dl> - <dl class="put"> <dt id="put--#account_id-members-#group_id-copy"> <tt class="descname">PUT </tt><tt class="descname">/#account_id/members/#group_id/copy</tt><a class="headerlink" href="#put--#account_id-members-#group_id-copy" title="Permalink to this definition">¶</a></dt> From 4492d4d0409a764018ebe19c3fafb3f7786649b9 Mon Sep 17 00:00:00 2001 From: kjplunkett <kplunkett@myemma.com> Date: Fri, 12 Jun 2015 10:54:17 -0500 Subject: [PATCH 088/219] add opt in confirmation paramter --- api/external/members.html | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/api/external/members.html b/api/external/members.html index 2b1e81e..ae6c749 100644 --- a/api/external/members.html +++ b/api/external/members.html @@ -558,8 +558,9 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli tags: [rsvp_name], [rsvp_email], [opt_in_url], [opt_out_url].</li> <li><strong>field_triggers</strong> (<em>boolean</em>) – Optional. Fires related field change autoresponders when set to <em>true</em>.</li> -</ul> +<li><strong>opt_in_confirmation</strong> (<em>boolean</em>) – Optional. Sends the default plaintext confirmation email when set to. <em>true</em>. NOTE: Confirmation email will be sent by default if this parameter is left out. </li> </td> +</ul> </tr> <tr class="field-even field"><th class="field-name">Return :</th><td class="field-body"><p class="first last">The member_id of the member, and their status. The status will be reported as ‘a’ (active), ‘e’ (error), or ‘o’ (optout).</p> @@ -582,7 +583,8 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli "2" ], "email": "example@myemma.com", - "signup_form_id": 1 + "signup_form_id": 1, + "opt_in_confirmation": true } { From ed3ed38e75ebd33199c6cafb66972a4350881326 Mon Sep 17 00:00:00 2001 From: kjplunkett <kplunkett@myemma.com> Date: Mon, 15 Jun 2015 09:55:21 -0500 Subject: [PATCH 089/219] remove unecessary period --- api/external/members.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/external/members.html b/api/external/members.html index ae6c749..92b4e31 100644 --- a/api/external/members.html +++ b/api/external/members.html @@ -558,7 +558,7 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli tags: [rsvp_name], [rsvp_email], [opt_in_url], [opt_out_url].</li> <li><strong>field_triggers</strong> (<em>boolean</em>) – Optional. Fires related field change autoresponders when set to <em>true</em>.</li> -<li><strong>opt_in_confirmation</strong> (<em>boolean</em>) – Optional. Sends the default plaintext confirmation email when set to. <em>true</em>. NOTE: Confirmation email will be sent by default if this parameter is left out. </li> +<li><strong>opt_in_confirmation</strong> (<em>boolean</em>) – Optional. Sends the default plaintext confirmation email when set to <em>true</em>. NOTE: Confirmation email will be sent by default if this parameter is left out. </li> </td> </ul> </tr> From 8fe002a5ef2ee4d5e8d83b8b688acc95c0fb5c0a Mon Sep 17 00:00:00 2001 From: David Hale <david.hale@myemma.com> Date: Tue, 30 Jun 2015 15:13:05 -0500 Subject: [PATCH 090/219] Add .NET wrapper for Emma API to index.html --- index.html | 2 ++ 1 file changed, 2 insertions(+) diff --git a/index.html b/index.html index 4cbcda7..7f47772 100644 --- a/index.html +++ b/index.html @@ -157,6 +157,8 @@ <h2>API Wrappers<a class="headerlink" href="#api-wrappers" title="Permalink to t <dd><a class="reference external" href="https://github.com/myemma/EmmaSDK">EmmaSDK</a>: Commissioned by Emma and built by Portland developer <a class="reference external" href="https://github.com/bvanderveen">Benjamin Van Der Veen</a>.</dd> <dt><strong>Node.js</strong></dt> <dd><a class="reference external" href="https://github.com/nathanpeck/emma-sdk">emma-sdk</a>: Built by New York City developer <a class="reference external" href="https://github.com/nathanpeck">Nathan Peck</a> for <a class="reference external" href="https://storydesk.com/"> StoryDesk.</a></dd> +<dt><strong>.NET</strong></dt> +<dd><a class="reference external" href="https://github.com/kylegregory/EmmaSharp">EmmaSharp</a>: Built by developer <a class="reference external" href="https://github.com/kylegregory">Kyle Gregory</a></dd> </dl> </div> <div class="section" id="quickstart"> From 379acdb1546b9bf5fdd66c3b47b2bf13feb5001c Mon Sep 17 00:00:00 2001 From: David Hale <david.hale@myemma.com> Date: Wed, 1 Jul 2015 21:56:54 -0500 Subject: [PATCH 091/219] Removing public portal that brings to light our private send_mailing API --- api/external/mailings.html | 9 --------- 1 file changed, 9 deletions(-) diff --git a/api/external/mailings.html b/api/external/mailings.html index f2ed91c..dea4392 100644 --- a/api/external/mailings.html +++ b/api/external/mailings.html @@ -588,15 +588,6 @@ <h1>Mailings<a class="headerlink" href="#mailings" title="Permalink to this head </p> </dd></dl> -<dl class="post"> -<dt id="post--#account_id-mailings"> -<tt class="descname">POST </tt><tt class="descname">/#account_id/mailings</tt><a class="headerlink" href="#post--#account_id-mailings" title="Permalink to this definition">¶</a></dt> -<dd><dl class="docutils"> -<dt>Pass public create_mailing requests through a filter to determine</dt> -<dd>if the account is permitted to use the private api create mailing</dd> -</dl> -</dd></dl> - <dl class="post"> <dt id="post--#account_id-forwards-#mailing_id-#member_id"> <tt class="descname">POST </tt><tt class="descname">/#account_id/forwards/#mailing_id/#member_id</tt><a class="headerlink" href="#post--#account_id-forwards-#mailing_id-#member_id" title="Permalink to this definition">¶</a></dt> From a27c6415778676dd727537f91e1659903d0c5e83 Mon Sep 17 00:00:00 2001 From: David Hale <david.hale@myemma.com> Date: Mon, 6 Jul 2015 19:57:50 -0500 Subject: [PATCH 092/219] Content Writer Edit - Index.html --- index.html | 91 +++++++++++++++++++++++------------------------------- 1 file changed, 39 insertions(+), 52 deletions(-) diff --git a/index.html b/index.html index 7f47772..df93110 100644 --- a/index.html +++ b/index.html @@ -99,40 +99,37 @@ <h3>Navigation</h3> <div class="section" id="emma-api"> <h1>Emma API<a class="headerlink" href="#emma-api" title="Permalink to this headline">¶</a></h1> <div class="section" id="a-word-to-the-wise"> -<h2>A Word To The Wise...<a class="headerlink" href="#a-word-to-the-wise" title="Permalink to this headline">¶</a></h2> -<p>Use the documentation here to set up and troubleshoot your API calls. We don’t offer one-on-one support -for Emma’s public API, but our system is monitored around the clock. If there’s ever a dropped connection -or outage, we’ll notify users on our <a class="reference external" href="http://myemma.com/status">status page</a>.</p> +<h2>A word to the wise...<a class="headerlink" href="#a-word-to-the-wise" title="Permalink to this headline">¶</a></h2> +<p>Use the information on this page to set up and troubleshoot your API calls. While Emma doesn’t offer one-on-one support for our public API, our system is monitored around the clock – and if there’s ever a dropped connection or outage, we’ll be sure to notify users on our <a class="reference external" target="_blank" href="http://myemma.com/status">status page</a>.</p> </div> <div class="section" id="overview"> <h2>Overview<a class="headerlink" href="#overview" title="Permalink to this headline">¶</a></h2> -<p>Emma’s platform is accessible through our public API. The API provides access -to the following areas:</p> +<p>Emma’s platform is accessible through our public API, which provides access to the following areas:</p> <ul> <li><dl class="first docutils"> -<dt>Managing member lists</dt> +<dt>Managing member lists:</dt> <dd><ul class="first last simple"> -<li>importing, editing, deleting</li> -<li>organizing members into groups</li> -<li>searching for members</li> +<li>Importing, editing and deleting</li> +<li>Organizing members into groups</li> +<li>Searching for members</li> </ul> </dd> </dl> </li> <li><dl class="first docutils"> -<dt>Mailings</dt> +<dt>Mailings:</dt> <dd><ul class="first last simple"> -<li>viewing past mailings</li> -<li>controlling the status of pending mailings</li> +<li>Viewing past mailings</li> +<li>Controlling the status of pending mailings</li> </ul> </dd> </dl> </li> <li><dl class="first docutils"> -<dt>Retrieving response</dt> +<dt>Retrieving response:</dt> <dd><ul class="first last simple"> -<li>Access mailing response information by mailing, member of time period</li> -<li>Access response at summary and detail levels</li> +<li>Accessing mailing response information by mailing or member of time period</li> +<li>Accessing response at summary and detail levels</li> </ul> </dd> </dl> @@ -140,9 +137,9 @@ <h2>Overview<a class="headerlink" href="#overview" title="Permalink to this head </ul> </div> <div class="section" id="api-wrappers"> -<h2>API Wrappers<a class="headerlink" href="#api-wrappers" title="Permalink to this headline">¶</a></h2> -<p>Emma’s wrappers make it easy to connect to our API in the programming language you’re working in. Just select your language to integrate with Emma without having to study all the ins and outs of our API first.</p> -<p>This collection is young, but growing, and includes wrappers commissioned by Emma, as well as those built by members of our community. Unless otherwise noted, all wrappers provide full coverage of our current API. If you see something that needs to be fixed or improved, please don’t hesitate to fork the repo and submit a pull request. And if you’ve built a wrapper that you would like listed here, <a class="reference external" href="mailto:integrations%40myemma.com">let us know!</a></p> +<h2>API wrappers<a class="headerlink" href="#api-wrappers" title="Permalink to this headline">¶</a></h2> +<p>Emma’s wrappers make it a breeze to connect to our API no matter which programming language you like to use. Just select your language and you’ll be able to integrate with Emma without the hassle of having to study all the ins and outs of our API first.</p> +<p>This collection is young (but growing!) and includes wrappers commissioned by Emma as well as some built by members of our community. Unless otherwise noted, all wrappers provide full coverage of our current API. If you see something that needs to be fixed or improved, please don’t hesitate submit a pull request. And if you’ve built a wrapper that you’d like to have listed here,<a class="reference external" href="mailto:integrations%40myemma.com">let us know!</a></p> <dl class="docutils"> <dt><strong>PHP</strong></dt> <dd><p class="first"><a class="reference external" href="https://github.com/myemma/EmmaPHP">EmmaPHP</a> : Commissioned by Emma and built by Nashville developer <a class="reference external" href="https://github.com/dennismonsewicz">Dennis Monsewicz</a>.</p> @@ -163,20 +160,17 @@ <h2>API Wrappers<a class="headerlink" href="#api-wrappers" title="Permalink to t </div> <div class="section" id="quickstart"> <h2>Quickstart<a class="headerlink" href="#quickstart" title="Permalink to this headline">¶</a></h2> -<p>Let’s start by building some PHP code that will add a member to our audience.</p> -<p>First, you’ll want to figure out how to authenticate. All calls require HTTP -Basic Auth authentication. Inside your Emma account, in the “Account Settings” -section, you’ll find your API keys. There’s a public key and a private key and -an account ID. It should look like this.</p> +<p>Let’s get started by building some PHP code that will add a member to our audience.</p> +First, you’ll want to figure out how to authenticate (all calls require HTTP Basic Auth authentication). You’ll find your API keys inside your Emma account in the “Account Settings” section. There’s a public key, a private key and an account ID. It should look like this: <div class="api_key_img"><img alt="Emma Billing & Settings API Key" src="_images/api_key.png" /></div> -<p>So, let’s add these authentication bits to our code.</p> +<p>Next, let’s add these authentication bits to our code.</p> <div class="highlight-php"><div class="highlight"><pre><span class="c1">// Authentication Variables</span> <span class="nv">$account_id</span> <span class="o">=</span> <span class="s2">"xxx"</span><span class="p">;</span> <span class="nv">$public_api_key</span> <span class="o">=</span> <span class="s2">"xxx"</span><span class="p">;</span> <span class="nv">$private_api_key</span> <span class="o">=</span> <span class="s2">"xxx"</span><span class="p">;</span> </pre></div> </div> -<p>Then, we’ll want to capture the POSTed form variables from the request.</p> +<p>Then we’ll want to capture the POSTed form variables from the request.</p> <div class="highlight-php"><div class="highlight"><pre><span class="c1">// Form variable(s)</span> <span class="nv">$email</span> <span class="o">=</span> <span class="nv">$_POST</span><span class="p">[</span><span class="s1">'email'</span><span class="p">];</span> <span class="nv">$first_name</span> <span class="o">=</span> <span class="nv">$_POST</span><span class="p">[</span><span class="s1">'first_name'</span><span class="p">];</span> @@ -194,19 +188,14 @@ <h2>Quickstart<a class="headerlink" href="#quickstart" title="Permalink to this <span class="p">);</span> </pre></div> </div> -<p>Please note that the <tt class="docutils literal"><span class="pre">group_ids</span></tt> to which the member will be added are passed -as an array of integers. Of course, you’ll want to make sure you sanitize any of -these form inputs to protect your application.</p> -<p>Let’s set the URL for the API call. The endpoint for all of our API calls is -<a class="reference external" href="https://api.e2ma.net/">https://api.e2ma.net/</a>. In this case, we’re using the endpoint that -corresponds to adding a single member. There’s a separate call for adding bulk -members.</p> +<p>Please note that the <tt class="docutils literal"><span class="pre">group_ids</span></tt> hat you’re adding members to are passed as an array of integers. In addition, you’ll always want to make sure that you sanitize any of these form inputs to protect your application.</p> +<p>Now we’ll need to set the URL for the API call. The endpoint for all of our API calls is +<a class="reference external" href="https://api.e2ma.net/">https://api.e2ma.net/</a>. In this case, we’re using the endpoint that corresponds to adding a single member. There’s a separate call for adding bulk members.</p> <div class="highlight-php"><div class="highlight"><pre><span class="c1">// Set URL</span> <span class="nv">$url</span> <span class="o">=</span> <span class="s2">"https://api.e2ma.net/"</span><span class="o">.</span><span class="nv">$account_id</span><span class="o">.</span><span class="s2">"/members/add"</span><span class="p">;</span> </pre></div> </div> -<p>Next, we’ll do a little dance with cURL that I’m sure is familiar. I’ll -explain some particulars below the code block.</p> +<p>Next, we’ll do a little dance with cURL that should look familiar to you. We’ll explain some particulars below the code block.</p> <div class="highlight-php"><div class="highlight"><pre><span class="c1">// setup and execute the cURL command</span> <span class="nv">$ch</span> <span class="o">=</span> <span class="nb">curl_init</span><span class="p">();</span> <span class="hll"><span class="nb">curl_setopt</span><span class="p">(</span><span class="nv">$ch</span><span class="p">,</span> <span class="nx">CURLOPT_USERPWD</span><span class="p">,</span> <span class="nv">$public_api_key</span> <span class="o">.</span> <span class="s2">":"</span> <span class="o">.</span> <span class="nv">$private_api_key</span><span class="p">);</span> @@ -221,12 +210,8 @@ <h2>Quickstart<a class="headerlink" href="#quickstart" title="Permalink to this <span class="nb">curl_close</span><span class="p">(</span><span class="nv">$ch</span><span class="p">);</span> </pre></div> </div> -<p>On line 3 is where we use the public/private keys to authenticate our call. -On lines 6-7, we force the API call to make its request in JSON and expect -JSON in return.</p> -<p>At this point, the API call has been made.We might want to inspect the -result to see what happened. The API returns true HTTP response codes which -you can examine to determine a request’s disposition.</p> +<p>Line 3 is where we use the public/private keys to authenticate our call. On lines 6-7, we force the API call to make its request in JSON and expect JSON in return.</p> +<p>At this point, the API call has been made. We might also want to inspect the result to see what happened. The API returns true HTTP response codes that you can examine to determine a request’s disposition.</p> <div class="highlight-php"><div class="highlight"><pre><span class="c1">//execute post</span> <span class="k">if</span><span class="p">(</span><span class="nv">$http_code</span> <span class="o">></span> <span class="mi">200</span><span class="p">)</span> <span class="p">{</span> <span class="nv">$app_message</span> <span class="o">=</span> <span class="s2">"Error sending subscription request"</span><span class="p">;</span> @@ -238,18 +223,17 @@ <h2>Quickstart<a class="headerlink" href="#quickstart" title="Permalink to this </pre></div> </div> <p>You can <a class="reference internal" href="php_signup_example.html"><em>see the complete PHP script here</em></a>. -Additionally, there’s a PHP example to <a class="reference internal" href="php_get_member_example.html"><em>get members using their email +There’s also a PHP example to <a class="reference internal" href="php_get_member_example.html"><em>get members using their email address</em></a>.</p> -<p>To extend this example further, one could make the API call associate the -new member with a particular signup form. As written above, the member would -be added to the audience but would not appear in the “recent activity” type -searches or really any searches related to signups. We are working on a -cleaner way to handle this signup form issue in the future.</p> +<p> + To extend this example further, you could make the API call associate the new member with a particular signup form. As written above, the member would be added to the audience but would not appear in the “recent activity” type searches or really any searches related to signups. Don’t worry – we’re currently working on a cleaner way to handle this signup form issue in the future. +</p> </div> <div class="section" id="api-calls-by-category"> <h2>API calls by category<a class="headerlink" href="#api-calls-by-category" title="Permalink to this headline">¶</a></h2> -<p>The API calls are organized by their main entity type in the following -sections. Each call includes sample request & response data.</p> +<p> + In the following sections, we’ve organized API calls by their main entity type. Each call includes sample request and response data. +</p> <div class="toctree-wrapper compound"> <ul> <li class="toctree-l1"><a class="reference internal" href="api/external/fields.html">Fields</a></li> @@ -265,11 +249,14 @@ <h2>API calls by category<a class="headerlink" href="#api-calls-by-category" tit </div> </div> <div class="section" id="api-rate-limit"> -<h2>API Rate Limit<a class="headerlink" href="#api-rate-limit" title="Permalink to this headline">¶</a></h2> -<p>To prevent accidental overuse, calls to Emma's API are rate limited to 180 calls per minute. If you exceed the limit, you will receive a response of 403 Rate Limit Exceeded until enough time has elapsed between calls.</p> +<h2>API rate limit<a class="headerlink" href="#api-rate-limit" title="Permalink to this headline">¶</a></h2> +<p> + To prevent accidental overuse, calls to Emma's API are limited to 180 calls per +minute. If you exceed the limit, you‘ll receive a response of 403 Rate Limit Exceeded until enough time has elapsed between calls. +</p> </div> <div class="section" id="additional-documentation"> -<h2>Additional Documentation<a class="headerlink" href="#additional-documentation" title="Permalink to this headline">¶</a></h2> +<h2>Additional documentation<a class="headerlink" href="#additional-documentation" title="Permalink to this headline">¶</a></h2> <div class="toctree-wrapper compound"> <ul> <li class="toctree-l1"><a class="reference internal" href="pagination.html">Pagination</a></li> From 027b151bb861bf81f63517c2d5371eea65425cb1 Mon Sep 17 00:00:00 2001 From: David Hale <dmhalejr@users.noreply.github.com> Date: Tue, 8 Sep 2015 06:44:50 -0700 Subject: [PATCH 093/219] Update index.html --- index.html | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/index.html b/index.html index df93110..ef5d7de 100644 --- a/index.html +++ b/index.html @@ -100,7 +100,10 @@ <h3>Navigation</h3> <h1>Emma API<a class="headerlink" href="#emma-api" title="Permalink to this headline">¶</a></h1> <div class="section" id="a-word-to-the-wise"> <h2>A word to the wise...<a class="headerlink" href="#a-word-to-the-wise" title="Permalink to this headline">¶</a></h2> -<p>Use the information on this page to set up and troubleshoot your API calls. While Emma doesn’t offer one-on-one support for our public API, our system is monitored around the clock – and if there’s ever a dropped connection or outage, we’ll be sure to notify users on our <a class="reference external" target="_blank" href="http://myemma.com/status">status page</a>.</p> +<p> + Use the information on this page to set up and troubleshoot your API calls. While Emma doesn’t offer one-on-one support for our public API, our system is monitored around the clock – and if there’s ever a dropped connection or outage, we’ll be sure to notify users on our <a class="reference external" target="_blank" href="http://myemma.com/status">status page</a>. + <br /><br /> All JSON payloads must not exceed <b>10MB</b> +</p> </div> <div class="section" id="overview"> <h2>Overview<a class="headerlink" href="#overview" title="Permalink to this headline">¶</a></h2> From 33c0392033f1a62841aa53d26574695662c482a9 Mon Sep 17 00:00:00 2001 From: David Hale <david.hale@myemma.com> Date: Mon, 14 Sep 2015 11:01:09 -0500 Subject: [PATCH 094/219] Update 10MB taxonomy and import_status --- api/external/members.html | 2 +- index.html | 5 ++++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/api/external/members.html b/api/external/members.html index 92b4e31..0d392be 100644 --- a/api/external/members.html +++ b/api/external/members.html @@ -1094,7 +1094,7 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli { "import_id": 200, - "status": null, + "status": "o", # for okay (or "e" for error) "style": null, "import_started": "@D:2010-12-13T23:12:44", "account_id": 100, diff --git a/index.html b/index.html index df93110..ef5d7de 100644 --- a/index.html +++ b/index.html @@ -100,7 +100,10 @@ <h3>Navigation</h3> <h1>Emma API<a class="headerlink" href="#emma-api" title="Permalink to this headline">¶</a></h1> <div class="section" id="a-word-to-the-wise"> <h2>A word to the wise...<a class="headerlink" href="#a-word-to-the-wise" title="Permalink to this headline">¶</a></h2> -<p>Use the information on this page to set up and troubleshoot your API calls. While Emma doesn’t offer one-on-one support for our public API, our system is monitored around the clock – and if there’s ever a dropped connection or outage, we’ll be sure to notify users on our <a class="reference external" target="_blank" href="http://myemma.com/status">status page</a>.</p> +<p> + Use the information on this page to set up and troubleshoot your API calls. While Emma doesn’t offer one-on-one support for our public API, our system is monitored around the clock – and if there’s ever a dropped connection or outage, we’ll be sure to notify users on our <a class="reference external" target="_blank" href="http://myemma.com/status">status page</a>. + <br /><br /> All JSON payloads must not exceed <b>10MB</b> +</p> </div> <div class="section" id="overview"> <h2>Overview<a class="headerlink" href="#overview" title="Permalink to this headline">¶</a></h2> From 6eb0f160d171e228b37b2da4b51f7263b7ff7795 Mon Sep 17 00:00:00 2001 From: kjplunkett <kplunkett@myemma.com> Date: Wed, 9 Dec 2015 15:48:42 -0600 Subject: [PATCH 095/219] rephrase endpoint description and remove misleading and unused query string parameter delete_members --- api/external/groups.html | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/api/external/groups.html b/api/external/groups.html index 5093797..6f713dd 100644 --- a/api/external/groups.html +++ b/api/external/groups.html @@ -577,7 +577,7 @@ <h1>Groups<a class="headerlink" href="#groups" title="Permalink to this headline <dl class="delete"> <dt id="delete--#account_id-groups-#member_group_id-members-remove"> <tt class="descname">DELETE </tt><tt class="descname">/#account_id/groups/#member_group_id/members/remove</tt><a class="headerlink" href="#delete--#account_id-groups-#member_group_id-members-remove" title="Permalink to this definition">¶</a></dt> -<dd><p>Remove all members from all active member groups as a background job. +<dd><p> Delete all members in this group (with the specified status) from all active member groups as a background job. The member_status_id parameter must be set.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> @@ -604,17 +604,6 @@ <h1>Groups<a class="headerlink" href="#groups" title="Permalink to this headline <pre class="response"> <b>DELETE /100/groups/151/members/remove?member_status_id=a</b> -true -</pre> -</div> - - -<div class="sample-response hide-response"> -<span style="font-weight:bold;">Sample Response</span> -<a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> -<pre class="response"> -<b>DELETE /100/groups/151/members/remove?member_status_id=a&delete_members=true</b> - true </pre> </div> From 1888a362c9337074d3e59763a7a333ef1ed83f39 Mon Sep 17 00:00:00 2001 From: kjplunkett <kplunkett@myemma.com> Date: Thu, 10 Dec 2015 16:17:44 -0600 Subject: [PATCH 096/219] rephrase to match what we went with in audience --- api/external/groups.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/external/groups.html b/api/external/groups.html index 6f713dd..fbe420b 100644 --- a/api/external/groups.html +++ b/api/external/groups.html @@ -577,7 +577,7 @@ <h1>Groups<a class="headerlink" href="#groups" title="Permalink to this headline <dl class="delete"> <dt id="delete--#account_id-groups-#member_group_id-members-remove"> <tt class="descname">DELETE </tt><tt class="descname">/#account_id/groups/#member_group_id/members/remove</tt><a class="headerlink" href="#delete--#account_id-groups-#member_group_id-members-remove" title="Permalink to this definition">¶</a></dt> -<dd><p> Delete all members in this group (with the specified status) from all active member groups as a background job. +<dd><p> Delete all members in this group with the specified status. Remove those members from all groups as a background job. The member_status_id parameter must be set.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> From 96b2abc38fb40cdb85aa39327efdcac8d7c8bde8 Mon Sep 17 00:00:00 2001 From: Brandon Wanamaker <bwanamaker@3442356.local> Date: Mon, 4 Jan 2016 14:31:47 -0600 Subject: [PATCH 097/219] Updated copy per Emma Mathews (Client Services) to include copy on available paid support. --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index ef5d7de..f297486 100644 --- a/index.html +++ b/index.html @@ -101,7 +101,7 @@ <h1>Emma API<a class="headerlink" href="#emma-api" title="Permalink to this head <div class="section" id="a-word-to-the-wise"> <h2>A word to the wise...<a class="headerlink" href="#a-word-to-the-wise" title="Permalink to this headline">¶</a></h2> <p> - Use the information on this page to set up and troubleshoot your API calls. While Emma doesn’t offer one-on-one support for our public API, our system is monitored around the clock – and if there’s ever a dropped connection or outage, we’ll be sure to notify users on our <a class="reference external" target="_blank" href="http://myemma.com/status">status page</a>. + Use the information on this page to set up and troubleshoot your API calls. If you are interested in paid API support, visit our <a class="reference external" target="_blank" href="http://myemma.com/services/custom-integrations">Custom Integrations</a> page and fill out a request. Our system is monitored around the clock – and if there’s ever a dropped connection or outage, we’ll be sure to notify users on our <a class="reference external" target="_blank" href="http://myemma.com/status">status page</a>. <br /><br /> All JSON payloads must not exceed <b>10MB</b> </p> </div> From f7bb5dfc843ec6ec722b20383290bf02eba4db35 Mon Sep 17 00:00:00 2001 From: Brandon Wanamaker <bwanamaker@myemma.com> Date: Thu, 31 Mar 2016 13:18:28 -0500 Subject: [PATCH 098/219] Added note to ADD and SIGNUP calls that pointed user to relevant Automation help documentation. --- api/external/members.html | 140 ++++++++++++++++++++------------------ 1 file changed, 72 insertions(+), 68 deletions(-) diff --git a/api/external/members.html b/api/external/members.html index 0d392be..ca92dda 100644 --- a/api/external/members.html +++ b/api/external/members.html @@ -4,13 +4,13 @@ <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> - + <title>Emma API Documentation | Emma, Inc.</title> - + <link rel="stylesheet" href="../../_static/emma.css" type="text/css" /> <link rel="stylesheet" href="../../_static/pygments.css" type="text/css" /> - + <script type="text/javascript"> var DOCUMENTATION_OPTIONS = { URL_ROOT: '../../', @@ -20,10 +20,10 @@ HAS_SOURCE: true }; </script> - + <script src="http://code.jquery.com/jquery-1.4.min.js"></script> <script>window.jQuery || document.write('<script src="_static/jquery.js"><\/script>')</script> - + <script type="text/javascript" src="//use.typekit.net/zfm0nfo.js"></script> <script type="text/javascript">try{Typekit.load();}catch(e){}</script> <script type="text/javascript" src="../../_static/underscore.js"></script> @@ -91,15 +91,15 @@ <h3>Navigation</h3> <li class="right" > <a href="mailings.html" title="Mailings" accesskey="P">previous</a> |</li> - <li><a href="../../index.html">audience 0.1 documentation</a> »</li> + <li><a href="../../index.html">audience 0.1 documentation</a> »</li> </ul> - </div> + </div> <div class="document"> <div class="documentwrapper"> <div class="bodywrapper"> <div class="body"> - + <div class="section" id="members"> <h1>Members<a class="headerlink" href="#members" title="Permalink to this headline">¶</a></h1> <p>In addition to the various CRUD endpoints here related to members, @@ -265,22 +265,22 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli <b>GET /100/members/201</b> { - "status": "opt-out", - "confirmed_opt_in": null, - "account_id": 100, + "status": "opt-out", + "confirmed_opt_in": null, + "account_id": 100, "fields": { - "first_name": "Gladys", - "last_name": "Jones", + "first_name": "Gladys", + "last_name": "Jones", "favorite_food": "toast" - }, - "member_id": 201, - "last_modified_at": null, - "member_status_id": "o", - "plaintext_preferred": false, - "email_error": null, - "member_since": "@D:2011-01-03T15:54:13", - "bounce_count": 0, - "deleted_at": null, + }, + "member_id": 201, + "last_modified_at": null, + "member_status_id": "o", + "plaintext_preferred": false, + "email_error": null, + "member_since": "@D:2011-01-03T15:54:13", + "bounce_count": 0, + "deleted_at": null, "email": "gladys@myemma.com" } </pre> @@ -319,22 +319,22 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli <b>GET /100/members/email/tony@myemma.com</b> { - "status": "active", - "confirmed_opt_in": null, - "account_id": 100, + "status": "active", + "confirmed_opt_in": null, + "account_id": 100, "fields": { - "first_name": "Tony", - "last_name": "Brown", + "first_name": "Tony", + "last_name": "Brown", "favorite_food": "pizza" - }, - "member_id": 202, - "last_modified_at": null, - "member_status_id": "a", - "plaintext_preferred": false, - "email_error": null, - "member_since": "@D:2010-11-12T09:12:33", - "bounce_count": 0, - "deleted_at": null, + }, + "member_id": 202, + "last_modified_at": null, + "member_status_id": "a", + "plaintext_preferred": false, + "email_error": null, + "member_since": "@D:2010-11-12T09:12:33", + "bounce_count": 0, + "deleted_at": null, "email": "tony@myemma.com" } </pre> @@ -459,7 +459,7 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli "members": [ { "email": "michelle@myemma.com" - }, + }, { "email": "nathan@myemma.com" } @@ -482,6 +482,8 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli <dl class="docutils"> <dt><em>Note</em>: Members who are added to your audience using this API call will</dt> <dd>not appear in “recent activity” searches within your account.</dd> +<dt><em>Note</em>: If you are using Signup trigger events in Automation, please</dt> +<dd>this <a href="https://support.e2ma.net/Resource_Center/Guide_to_Automation/Trigger_events%3A_signup">guide</a> for more information on how this API call affects those trigger events.</dd> </dl> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> @@ -511,13 +513,13 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli { "fields": { "first_name": "Benjamin" - }, + }, "email": "benjamin@myemma.com" } { - "status": "a", - "added": true, + "status": "a", + "added": true, "member_id": 1024 } </pre> @@ -538,6 +540,8 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli <dl class="docutils"> <dt><em>Note</em>: Members who are added to your audience using this API call will</dt> <dd>not appear in “recent activity” searches within your account.</dd> +<dt><em>Note</em>: If you are using Signup trigger events in Automation, please</dt> +<dd>this <a href="https://support.e2ma.net/Resource_Center/Guide_to_Automation/Trigger_events%3A_signup">guide</a> for more information on how this API call affects those trigger events.</dd> </dl> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> @@ -577,18 +581,18 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli { "fields": { "first_name": "Ryan" - }, + }, "group_ids": [ - "1", + "1", "2" - ], - "email": "example@myemma.com", + ], + "email": "example@myemma.com", "signup_form_id": 1, "opt_in_confirmation": true } { - "status": "a", + "status": "a", "member_id": 1024 } </pre> @@ -623,7 +627,7 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli <b>PUT /100/members/delete</b> { "member_ids": [ - 100, + 100, 101 ] } @@ -664,9 +668,9 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli <b>PUT /100/members/status</b> { "member_ids": [ - 200, + 200, 202 - ], + ], "status_to": "e" } @@ -711,10 +715,10 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli <b>PUT /100/members/200</b> { "fields": { - "first_name": "Ella", + "first_name": "Ella", "last_name": "Jones" - }, - "email": "ella@myemma.com", + }, + "email": "ella@myemma.com", "status_to": "a" } @@ -844,13 +848,13 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli <b>PUT /100/members/200/groups</b> { "group_ids": [ - 150, + 150, 151 ] } [ - 150, + 150, 151 ] </pre> @@ -988,7 +992,7 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli { "group_ids": [ 151 - ], + ], "member_ids": [ 202 ] @@ -1093,19 +1097,19 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli <b>GET /100/members/imports/200</b> { - "import_id": 200, - "status": "o", # for okay (or "e" for error) - "style": null, - "import_started": "@D:2010-12-13T23:12:44", - "account_id": 100, - "error_message": null, - "num_members_updated": 0, - "source_filename": null, - "fields_updated": [], - "num_members_added": 0, - "import_finished": null, - "groups_updated": [], - "num_skipped": 0, + "import_id": 200, + "status": "o", # for okay (or "e" for error) + "style": null, + "import_started": "@D:2010-12-13T23:12:44", + "account_id": 100, + "error_message": null, + "num_members_updated": 0, + "source_filename": null, + "fields_updated": [], + "num_members_added": 0, + "import_finished": null, + "groups_updated": [], + "num_skipped": 0, "num_duplicates": 0 } </pre> @@ -1170,7 +1174,7 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli <b>PUT /100/members/152/copy</b> { "member_status_id": [ - "a", + "a", "e" ] } From 889e6efd4b094b70b22172e8aa3275097a0f1855 Mon Sep 17 00:00:00 2001 From: Brandon Wanamaker <bwanamaker@myemma.com> Date: Thu, 31 Mar 2016 13:20:40 -0500 Subject: [PATCH 099/219] Oops... --- api/external/members.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/api/external/members.html b/api/external/members.html index ca92dda..c514db1 100644 --- a/api/external/members.html +++ b/api/external/members.html @@ -482,8 +482,8 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli <dl class="docutils"> <dt><em>Note</em>: Members who are added to your audience using this API call will</dt> <dd>not appear in “recent activity” searches within your account.</dd> -<dt><em>Note</em>: If you are using Signup trigger events in Automation, please</dt> -<dd>this <a href="https://support.e2ma.net/Resource_Center/Guide_to_Automation/Trigger_events%3A_signup">guide</a> for more information on how this API call affects those trigger events.</dd> +<dt><em>Note</em>: If you are using Signup trigger events in Automation, please see this </dt> +<dd><a href="https://support.e2ma.net/Resource_Center/Guide_to_Automation/Trigger_events%3A_signup">guide</a> for more information on how this API call affects those trigger events.</dd> </dl> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> @@ -540,8 +540,8 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli <dl class="docutils"> <dt><em>Note</em>: Members who are added to your audience using this API call will</dt> <dd>not appear in “recent activity” searches within your account.</dd> -<dt><em>Note</em>: If you are using Signup trigger events in Automation, please</dt> -<dd>this <a href="https://support.e2ma.net/Resource_Center/Guide_to_Automation/Trigger_events%3A_signup">guide</a> for more information on how this API call affects those trigger events.</dd> +<dt><em>Note</em>: If you are using Signup trigger events in Automation, please see this</dt> +<dd><a href="https://support.e2ma.net/Resource_Center/Guide_to_Automation/Trigger_events%3A_signup">guide</a> for more information on how this API call affects those trigger events.</dd> </dl> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> From 41ab43b3697767be9e4c0916e28838a10c1ae0de Mon Sep 17 00:00:00 2001 From: Brandon Wanamaker <bwanamaker@myemma.com> Date: Thu, 31 Mar 2016 13:22:19 -0500 Subject: [PATCH 100/219] One more time... --- api/external/members.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/api/external/members.html b/api/external/members.html index c514db1..143d768 100644 --- a/api/external/members.html +++ b/api/external/members.html @@ -482,8 +482,8 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli <dl class="docutils"> <dt><em>Note</em>: Members who are added to your audience using this API call will</dt> <dd>not appear in “recent activity” searches within your account.</dd> -<dt><em>Note</em>: If you are using Signup trigger events in Automation, please see this </dt> -<dd><a href="https://support.e2ma.net/Resource_Center/Guide_to_Automation/Trigger_events%3A_signup">guide</a> for more information on how this API call affects those trigger events.</dd> +<dt><em>Note</em>: If you are using Signup trigger events in Automation, please see this <a href="https://support.e2ma.net/Resource_Center/Guide_to_Automation/Trigger_events%3A_signup">guide</a> for</dt> +<dd>more information on how this API call affects those trigger events.</dd> </dl> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> @@ -540,8 +540,8 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli <dl class="docutils"> <dt><em>Note</em>: Members who are added to your audience using this API call will</dt> <dd>not appear in “recent activity” searches within your account.</dd> -<dt><em>Note</em>: If you are using Signup trigger events in Automation, please see this</dt> -<dd><a href="https://support.e2ma.net/Resource_Center/Guide_to_Automation/Trigger_events%3A_signup">guide</a> for more information on how this API call affects those trigger events.</dd> +<dt><em>Note</em>: If you are using Signup trigger events in Automation, please see this <a href="https://support.e2ma.net/Resource_Center/Guide_to_Automation/Trigger_events%3A_signup">guide</a> for</dt> +<dd>more information on how this API call affects those trigger events.</dd> </dl> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> From c853ceb99fc99c7d5d9913fd93c702e951106b72 Mon Sep 17 00:00:00 2001 From: Jason Bynum <jason.bynum@myemma.com> Date: Thu, 5 May 2016 08:20:16 -0500 Subject: [PATCH 101/219] added a sample response to the endpoint to get optout informaiton for member. --- api/external/members.html | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/api/external/members.html b/api/external/members.html index 143d768..7ce37ac 100644 --- a/api/external/members.html +++ b/api/external/members.html @@ -365,7 +365,10 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli <b>GET /100/members/201/optout</b> [ - + { + "timestamp": "@D:2014-11-18T22:58:15", + "mailing_id": 1234567 + } ] </pre> From 5c8d7ca36d90918fb950ae157f4bd87ff11a0fe9 Mon Sep 17 00:00:00 2001 From: Brandon Wanamaker <bwanamaker@myemma.com> Date: Thu, 26 May 2016 14:44:46 -0500 Subject: [PATCH 102/219] Creating the page placeholder. --- api/external/event_api.html | 849 ++++++++++++++++++++++++++++++++++++ 1 file changed, 849 insertions(+) create mode 100644 api/external/event_api.html diff --git a/api/external/event_api.html b/api/external/event_api.html new file mode 100644 index 0000000..973dbe0 --- /dev/null +++ b/api/external/event_api.html @@ -0,0 +1,849 @@ + +<!doctype html> + + +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> + + <title>Emma API Documentation | Emma, Inc.</title> + + + <link rel="stylesheet" href="../../_static/emma.css" type="text/css" /> + <link rel="stylesheet" href="../../_static/pygments.css" type="text/css" /> + + <script type="text/javascript"> + var DOCUMENTATION_OPTIONS = { + URL_ROOT: '../../', + VERSION: '0.1', + COLLAPSE_INDEX: false, + FILE_SUFFIX: '.html', + HAS_SOURCE: true + }; + </script> + + <script src="http://code.jquery.com/jquery-1.4.min.js"></script> + <script>window.jQuery || document.write('<script src="_static/jquery.js"><\/script>')</script> + + <script type="text/javascript" src="//use.typekit.net/zfm0nfo.js"></script> + <script type="text/javascript">try{Typekit.load();}catch(e){}</script> + <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="Members" href="members.html" /> + <link rel="prev" title="Groups" href="groups.html" /> + <link rel="icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> + <link rel="shortcut icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> + <link rel="apple-touch-icon-precomposed" href="http://myemma.com/static/global/favicons/apple-iphone.png" /> + <link rel="apple-touch-icon-precomposed" sizes="72x72" href="http://myemma.com/static/global/favicons/apple-ipad.png" /> + <link rel="apple-touch-icon-precomposed" sizes="114x114" href="http://myemma.com/static/global/favicons/apple-iphone-2x.png" /> + <link rel="apple-touch-icon-precomposed" sizes="144x144" href="http://myemma.com/static/global/favicons/apple-ipad-2x.png" /> + + <style type="text/css"> + .resp-trigger, .resp-trigger:hover {font-size:10pt;text-decoration:none;} + div.sample-response.hide-response pre.response {display: none;} + div.sample-response .tshow, + div.sample-response.hide-response .thide {display: none;} + div.sample-response .thide, + div.sample-response.hide-response .tshow {display: inline;} + </style> + <script> + $().ready(function() { + $("a.resp-trigger").click(function(e) { + e.preventDefault(); + $(this).parents("div.sample-response").toggleClass("hide-response"); + }); + }); + </script> + + <script type="text/javascript"> + + var _gaq = _gaq || []; + _gaq.push(['_setAccount', 'UA-512410-18']); + _gaq.push(['_trackPageview']); + + (function() { + var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; + ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; + var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); + })(); + + </script> + +</head> +<body> +<header role="banner"> + <a href="/index.html"> + <h1>Emma API Documentation</h1> + </a> +</header> +<div class="related"> + <h3>Navigation</h3> + <ul> + <li class="right" style="margin-right: 10px"> + <a href="../../genindex.html" title="General Index" + accesskey="I">index</a></li> + <li class="right" > + <a href="../../http-routingtable.html" title="HTTP Routing Table" + >routing table</a> |</li> + <li class="right" > + <a href="members.html" title="Members" + accesskey="N">next</a> |</li> + <li class="right" > + <a href="groups.html" title="Groups" + accesskey="P">previous</a> |</li> + <li><a href="../../index.html">audience 0.1 documentation</a> »</li> + </ul> +</div> + +<div class="document"> + <div class="documentwrapper"> + <div class="bodywrapper"> + <div class="body"> + + <div class="section" id="mailings"> + <h1>Mailings<a class="headerlink" href="#mailings" title="Permalink to this headline">¶</a></h1> + <p>With these endpoints, you can get information about your mailings including + their HTML contents. You can retrieve the members to whom the mailing was sent. + You can also pause mailings and cancel mailings that are pending or paused.</p> + <dl class="get"> + <dt id="get--#account_id-mailings"> + <tt class="descname">GET </tt><tt class="descname">/#account_id/mailings</tt><a class="headerlink" href="#get--#account_id-mailings" title="Permalink to this definition">¶</a></dt> + <dd><p>Get information about current mailings.</p> + <table class="docutils field-list" frame="void" rules="none"> + <col class="field-name" /> + <col class="field-body" /> + <tbody valign="top"> + <tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> + <li><strong>include_archived</strong> (<em>boolean</em>) – Optional flag to include archived mailings in the list.</li> + <li><strong>mailing_types</strong> (<em>string</em>) – Accepts a comma-separated string with one or more + of the following mailing types: ‘m’ (standard), ‘t’ (test), + ‘r’ (trigger), ‘s’ (split). Defaults to ‘m,t’, standard and test mailings, + when none are specified.</li> + <li><strong>mailing_statuses</strong> (<em>string</em>) – Accepts a comma-separated string with one or + more of the following mailing statuses: ‘p’ (pending), ‘a’ (paused), + ‘s’ (sending), ‘x’ (canceled), ‘c’ (complete), ‘f’ (failed). + Defaults to ‘p,a,s,x,c,f’, all statuses, when none are specified.</li> + <li><strong>is_scheduled</strong> (<em>boolean</em>) – Mailings that have a scheduled timestamp.</li> + <li><strong>with_html_body</strong> (<em>boolean</em>) – Include the html_body content.</li> + <li><strong>with_plaintext</strong> (<em>boolean</em>) – Include the plaintext content.</li> + </ul> + </td> + </tr> + <tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><p class="first"><tt class="docutils literal"><span class="pre">Http400</span></tt> if invalid mailing types or statuses are specified.</p> + </td> + </tr> + <tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body"><p class="first last">An array of mailings.</p> + </td> + </tr> + </tbody> + </table> + <p> + <div class="sample-response hide-response"> + <span style="font-weight:bold;">Sample Response</span> + <a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>GET /100/mailings</b> + +[ + { + "mailing_type": "m", + "send_started": null, + "cancel_by_user_id": null, + "mailing_id": 201, + "recipient_count": 0, + "cancel_ts": null, + "mailing_status": "p", + "month": null, + "failure_ts": null, + "reply_to": null, + "year": null, + "datacenter": null, + "started_or_finished": null, + "account_id": 100, + "disabled": false, + "created_ts": "@D:2013-08-22T09:41:45", + "sender": "Kevin McConnell", + "plaintext_only": false, + "name": "Cancellable mailing", + "parent_mailing_id": null, + "failure_message": null, + "send_finished": null, + "send_at": null, + "signup_form_id": null, + "subject": "Cancellable mailing", + "purged_at": null, + "archived_ts": null + }, + { + "mailing_type": "m", + "send_started": null, + "cancel_by_user_id": null, + "mailing_id": 200, + "recipient_count": 0, + "cancel_ts": null, + "mailing_status": "c", + "month": null, + "failure_ts": null, + "reply_to": null, + "year": null, + "datacenter": null, + "started_or_finished": null, + "account_id": 100, + "disabled": false, + "created_ts": "@D:2013-08-22T09:41:45", + "sender": "Kevin McConnell", + "plaintext_only": false, + "name": "Sample Mailing", + "parent_mailing_id": null, + "failure_message": null, + "send_finished": null, + "send_at": null, + "signup_form_id": null, + "subject": "Sample Mailing for [% member:first_name %] [% member:last_name %]", + "purged_at": null, + "archived_ts": null + } +] + +</pre> + </div> + </p> + <p> + <div class="sample-response hide-response"> + <span style="font-weight:bold;">Sample Response</span> + <a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>GET /100/mailings?mailing_statuses=p,c&mailing_types=m,t</b> + +[ + { + "mailing_type": "m", + "send_started": null, + "cancel_by_user_id": null, + "mailing_id": 201, + "recipient_count": 0, + "cancel_ts": null, + "mailing_status": "p", + "month": null, + "failure_ts": null, + "reply_to": null, + "year": null, + "datacenter": null, + "started_or_finished": null, + "account_id": 100, + "disabled": false, + "created_ts": "@D:2013-08-22T09:41:45", + "sender": "Kevin McConnell", + "plaintext_only": false, + "name": "Cancellable mailing", + "parent_mailing_id": null, + "failure_message": null, + "send_finished": null, + "send_at": null, + "signup_form_id": null, + "subject": "Cancellable mailing", + "purged_at": null, + "archived_ts": null + }, + { + "mailing_type": "m", + "send_started": null, + "cancel_by_user_id": null, + "mailing_id": 200, + "recipient_count": 0, + "cancel_ts": null, + "mailing_status": "c", + "month": null, + "failure_ts": null, + "reply_to": null, + "year": null, + "datacenter": null, + "started_or_finished": null, + "account_id": 100, + "disabled": false, + "created_ts": "@D:2013-08-22T09:41:45", + "sender": "Kevin McConnell", + "plaintext_only": false, + "name": "Sample Mailing", + "parent_mailing_id": null, + "failure_message": null, + "send_finished": null, + "send_at": null, + "signup_form_id": null, + "subject": "Sample Mailing for [% member:first_name %] [% member:last_name %]", + "purged_at": null, + "archived_ts": null + } +] + +</pre> + </div> + </p> + </dd></dl> + + <dl class="get"> + <dt id="get--#account_id-mailings-#mailing_id"> + <tt class="descname">GET </tt><tt class="descname">/#account_id/mailings/#mailing_id</tt><a class="headerlink" href="#get--#account_id-mailings-#mailing_id" title="Permalink to this definition">¶</a></dt> + <dd><p>Get detailed information for one mailing.</p> + <table class="docutils field-list" frame="void" rules="none"> + <col class="field-name" /> + <col class="field-body" /> + <tbody valign="top"> + <tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">A mailing.</td> + </tr> + <tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no mailing is found.</td> + </tr> + </tbody> + </table> + <p> + <div class="sample-response hide-response"> + <span style="font-weight:bold;">Sample Response</span> + <a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>GET /100/mailings/200</b> + +{ + "recipient_groups": [ + { + "member_group_id": 151, + "name": "Widget Buyers" + } + ], + "heads_up_emails": [], + "send_started": null, + "signup_form_id": null, + "links": [ + { + "mailing_id": 200, + "plaintext": false, + "link_id": 200, + "link_name": "Emma", + "link_target": "http://www.myemma.com", + "link_order": 1 + } + ], + "mailing_id": 200, + "plaintext": "Hello [% member:first_name %]!", + "recipient_count": 0, + "public_webview_url": "http://localhost/webview/uf/6db0cc7e6fdb2da589b65f29d90c96b6", + "mailing_type": "m", + "parent_mailing_id": null, + "recipient_searches": [], + "account_id": 100, + "recipient_members": [ + { + "email": "emma@myemma.com", + "member_id": 200 + } + ], + "mailing_status": "c", + "sender": "Kevin McConnell", + "name": "Sample Mailing", + "send_finished": null, + "send_at": null, + "subject": "Sample Mailing for [% member:first_name %] [% member:last_name %]", + "archived_ts": null, + "html_body": "<p>Hello [% member:first_name %]!</p>" +} +</pre> + </div> + </p> + </dd></dl> + + <dl class="get"> + <dt id="get--#account_id-mailings-#mailing_id-members"> + <tt class="descname">GET </tt><tt class="descname">/#account_id/mailings/#mailing_id/members</tt><a class="headerlink" href="#get--#account_id-mailings-#mailing_id-members" title="Permalink to this definition">¶</a></dt> + <dd><p>Get the list of members to whom the given mailing was sent. This + does not include groups or searches.</p> + <table class="docutils field-list" frame="void" rules="none"> + <col class="field-name" /> + <col class="field-body" /> + <tbody valign="top"> + <tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">An array of members including status and member fields.</td> + </tr> + <tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no mailing is found.</td> + </tr> + </tbody> + </table> + <p> + <div class="sample-response hide-response"> + <span style="font-weight:bold;">Sample Response</span> + <a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>GET /100/mailings/200/members</b> + +[ + { + "status": "active", + "confirmed_opt_in": null, + "account_id": 100, + "fields": { + "first_name": "Emma", + "last_name": "Smith", + "favorite_food": "tacos" + }, + "member_id": 200, + "last_modified_at": null, + "member_status_id": "a", + "plaintext_preferred": false, + "email_error": null, + "member_since": "@D:2010-11-12T11:23:45", + "bounce_count": 0, + "deleted_at": null, + "email": "emma@myemma.com" + } +] + +</pre> + </div> + </p> + </dd></dl> + + <dl class="get"> + <dt id="get--#account_id-mailings-#mailing_id-messages-#member_id"> + <tt class="descname">GET </tt><tt class="descname">/#account_id/mailings/#mailing_id/messages/#member_id</tt><a class="headerlink" href="#get--#account_id-mailings-#mailing_id-messages-#member_id" title="Permalink to this definition">¶</a></dt> + <dd><p>Gets the personalized message content as sent to a specific member + as part of the specified mailing.</p> + <table class="docutils field-list" frame="void" rules="none"> + <col class="field-name" /> + <col class="field-body" /> + <tbody valign="top"> + <tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> + <li><strong>type</strong> (<em>string</em>) – Accepts: ‘all’, ‘html’, ‘plaintext’, ‘subject’. Defaults + to ‘all’, if not provided.</li> + </ul> + </td> + </tr> + <tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">Message content from a mailing, personalized for a member. + The response will contain all parts of the mailing content by + default, or just the type of content specified by <cite>type</cite>.</p> + </td> + </tr> + <tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no message is found.</p> + </td> + </tr> + </tbody> + </table> + <p> + <div class="sample-response hide-response"> + <span style="font-weight:bold;">Sample Response</span> + <a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>GET /100/mailings/200/messages/200</b> + +{ + "plaintext": "Hello !", + "subject": "Sample Mailing for ", + "html_body": "<p>Hello !</p>" +} +</pre> + </div> + </p> + <p> + <div class="sample-response hide-response"> + <span style="font-weight:bold;">Sample Response</span> + <a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>GET /100/mailings/200/messages/200?type=html</b> + +{ + "html_body": "<p>Hello !</p>" +} +</pre> + </div> + </p> + </dd></dl> + + <dl class="get"> + <dt id="get--#account_id-mailings-#mailing_id-groups"> + <tt class="descname">GET </tt><tt class="descname">/#account_id/mailings/#mailing_id/groups</tt><a class="headerlink" href="#get--#account_id-mailings-#mailing_id-groups" title="Permalink to this definition">¶</a></dt> + <dd><p>Get the groups to which a particular mailing was sent.</p> + <table class="docutils field-list" frame="void" rules="none"> + <col class="field-name" /> + <col class="field-body" /> + <tbody valign="top"> + <tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">An array of groups.</td> + </tr> + <tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no mailing is found.</td> + </tr> + </tbody> + </table> + <p> + <div class="sample-response hide-response"> + <span style="font-weight:bold;">Sample Response</span> + <a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>GET /100/mailings/200/groups</b> + +[ + { + "active_count": 2, + "deleted_at": null, + "error_count": 0, + "optout_count": 0, + "group_type": "g", + "member_group_id": 151, + "purged_at": null, + "account_id": 100, + "group_name": "Widget Buyers" + } +] + +</pre> + </div> + </p> + </dd></dl> + + <dl class="get"> + <dt id="get--#account_id-mailings-#mailing_id-searches"> + <tt class="descname">GET </tt><tt class="descname">/#account_id/mailings/#mailing_id/searches</tt><a class="headerlink" href="#get--#account_id-mailings-#mailing_id-searches" title="Permalink to this definition">¶</a></dt> + <dd><p>Get all searches associated with a sent mailing.</p> + <table class="docutils field-list" frame="void" rules="none"> + <col class="field-name" /> + <col class="field-body" /> + <tbody valign="top"> + <tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">An array of searches.</td> + </tr> + <tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no mailing is found.</td> + </tr> + </tbody> + </table> + <p> + <div class="sample-response hide-response"> + <span style="font-weight:bold;">Sample Response</span> + <a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>GET /100/mailings/200/searches</b> + +[ + +] + +</pre> + </div> + </p> + </dd></dl> + + <dl class="put"> + <dt id="put--#account_id-mailings-#mailing_id"> + <tt class="descname">PUT </tt><tt class="descname">/#account_id/mailings/#mailing_id</tt><a class="headerlink" href="#put--#account_id-mailings-#mailing_id" title="Permalink to this definition">¶</a></dt> + <dd><p>Update status of a current mailing</p> + <p>The status can be one of <tt class="docutils literal"><span class="pre">canceled</span></tt>, <tt class="docutils literal"><span class="pre">paused</span></tt> or <tt class="docutils literal"><span class="pre">ready</span></tt>. This + method can be used to control the progress of a mailing by pausing, + canceling or resuming it. Once a mailing is canceled it can’t be + resumed, and will not show in the normal <tt class="docutils literal"><span class="pre">mailing_list</span></tt> output.</p> + <p>Returns the mailing’s new status</p> + </dd></dl> + + <dl class="delete"> + <dt id="delete--#account_id-mailings-#mailing_id"> + <tt class="descname">DELETE </tt><tt class="descname">/#account_id/mailings/#mailing_id</tt><a class="headerlink" href="#delete--#account_id-mailings-#mailing_id" title="Permalink to this definition">¶</a></dt> + <dd><p>Sets archived timestamp for a mailing so it is no longer included in + mailing_list.</p> + <table class="docutils field-list" frame="void" rules="none"> + <col class="field-name" /> + <col class="field-body" /> + <tbody valign="top"> + <tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">True if the mailing is successfully archived.</td> + </tr> + </tbody> + </table> + <p> + <div class="sample-response hide-response"> + <span style="font-weight:bold;">Sample Response</span> + <a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>DELETE /100/mailings/200</b> + +true +</pre> + </div> + </p> + </dd></dl> + + <dl class="delete"> + <dt id="delete--#account_id-mailings-cancel-#mailing_id"> + <tt class="descname">DELETE </tt><tt class="descname">/#account_id/mailings/cancel/#mailing_id</tt><a class="headerlink" href="#delete--#account_id-mailings-cancel-#mailing_id" title="Permalink to this definition">¶</a></dt> + <dd><p>Cancels a mailing that has a current status of pending or + paused. All other statuses will result in a 404.</p> + <table class="docutils field-list" frame="void" rules="none"> + <col class="field-name" /> + <col class="field-body" /> + <tbody valign="top"> + <tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">True if mailing marked as cancelled.</td> + </tr> + </tbody> + </table> + <p> + <div class="sample-response hide-response"> + <span style="font-weight:bold;">Sample Response</span> + <a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>DELETE /100/mailings/cancel/201</b> + +true +</pre> + </div> + </p> + </dd></dl> + + <dl class="post"> + <dt id="post--#account_id-forwards-#mailing_id-#member_id"> + <tt class="descname">POST </tt><tt class="descname">/#account_id/forwards/#mailing_id/#member_id</tt><a class="headerlink" href="#post--#account_id-forwards-#mailing_id-#member_id" title="Permalink to this definition">¶</a></dt> + <dd><p>Forward a previous message to additional recipients. If these + recipients are not already in the audience, they will be added with a + status of FORWARDED.</p> + <table class="docutils field-list" frame="void" rules="none"> + <col class="field-name" /> + <col class="field-body" /> + <tbody valign="top"> + <tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> + <li><strong>recipient_emails</strong> (<em>array</em>) – An array of email addresses to which to + forward the specified message.</li> + <li><strong>note</strong> (<em>string</em>) – A note to include in the forward. This note will be HTML + encoded and is limited to 500 characters.</li> + </ul> + </td> + </tr> + <tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">A reference to the new mailing.</p> + </td> + </tr> + <tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no message is found.</p> + </td> + </tr> + </tbody> + </table> + <p> + <div class="sample-response hide-response"> + <span style="font-weight:bold;">Sample Response</span> + <a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>POST /100/forwards/200/200</b> +{ + "recipient_emails": [ + "alex@myemma.com", + "chris@myemma.com" + ] +} + +{ + "mailing_id": 1024 +} +</pre> + </div> + </p> + </dd></dl> + + <dl class="post"> + <dt id="post--#account_id-mailings-#mailing_id"> + <tt class="descname">POST </tt><tt class="descname">/#account_id/mailings/#mailing_id</tt><a class="headerlink" href="#post--#account_id-mailings-#mailing_id" title="Permalink to this definition">¶</a></dt> + <dd><p>Send a prior mailing to additional recipients. A new mailing will be + created that inherits its content from the original.</p> + <table class="docutils field-list" frame="void" rules="none"> + <col class="field-name" /> + <col class="field-body" /> + <tbody valign="top"> + <tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> + <li><strong>sender</strong> (<em>string</em>) – The message sender. If this is not supplied, the + sender of the original mailing will be used.</li> + <li><strong>heads_up_emails</strong> (<em>array</em>) – A list of email addresses that heads up + notification emails will be sent to.</li> + <li><strong>recipient_emails</strong> (<em>array</em>) – An array of email addresses to which the new + mailing should be sent.</li> + <li><strong>recipient_groups</strong> (<em>array</em>) – An array of member groups to which the new + mailing should be sent.</li> + <li><strong>recipient_searches</strong> (<em>array</em>) – A list of searches that this mailing should + be sent to.</li> + </ul> + </td> + </tr> + <tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">A reference to the new mailing.</p> + </td> + </tr> + <tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no mailing is found.</p> + </td> + </tr> + </tbody> + </table> + <p> + <div class="sample-response hide-response"> + <span style="font-weight:bold;">Sample Response</span> + <a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>POST /100/mailings/200</b> +{ + "recipient_emails": [ + "michelle@myemma.com" + ] +} + +{ + "mailing_id": 1024 +} +</pre> + </div> + </p> + </dd></dl> + + <dl class="get"> + <dt id="get--#account_id-mailings-#mailing_id-headsup"> + <tt class="descname">GET </tt><tt class="descname">/#account_id/mailings/#mailing_id/headsup</tt><a class="headerlink" href="#get--#account_id-mailings-#mailing_id-headsup" title="Permalink to this definition">¶</a></dt> + <dd><p>Get heads up email address(es) related to a mailing.</p> + <table class="docutils field-list" frame="void" rules="none"> + <col class="field-name" /> + <col class="field-body" /> + <tbody valign="top"> + <tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">An array of heads up email addresses.</td> + </tr> + <tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no mailing is found.</td> + </tr> + </tbody> + </table> + <p> + <div class="sample-response hide-response"> + <span style="font-weight:bold;">Sample Response</span> + <a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>GET /100/mailings/200/headsup</b> + +[ + +] + +</pre> + </div> + </p> + </dd></dl> + + <dl class="post"> + <dt id="post--#account_id-mailings-validate"> + <tt class="descname">POST </tt><tt class="descname">/#account_id/mailings/validate</tt><a class="headerlink" href="#post--#account_id-mailings-validate" title="Permalink to this definition">¶</a></dt> + <dd><p>Validate that a mailing has valid personalization-tag syntax. Checks + tag syntax in three params:</p> + <table class="docutils field-list" frame="void" rules="none"> + <col class="field-name" /> + <col class="field-body" /> + <tbody valign="top"> + <tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> + <li><strong>html_body</strong> (<em>string</em>) – The html contents of the mailing</li> + <li><strong>plaintext</strong> (<em>string</em>) – The plaintext contents of the mailing. Unlike in + <tt class="docutils literal"><span class="pre">create_mailing</span></tt>, this param is not required.</li> + <li><strong>subject</strong> (<em>string</em>) – The subject of the mailing</li> + </ul> + </td> + </tr> + <tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">true</p> + </td> + </tr> + <tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http400</span></tt> if any tags are invalid. The response body will + have information about the invalid tags.</p> + </td> + </tr> + </tbody> + </table> + <p> + <div class="sample-response hide-response"> + <span style="font-weight:bold;">Sample Response</span> + <a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>POST /100/mailings/validate</b> +{ + "subject": "Another Fine Test" +} + +true +</pre> + </div> + </p> + </dd></dl> + + <dl class="post"> + <dt id="post--#account_id-mailings-#mailing_id-winner-#winner_id"> + <tt class="descname">POST </tt><tt class="descname">/#account_id/mailings/#mailing_id/winner/#winner_id</tt><a class="headerlink" href="#post--#account_id-mailings-#mailing_id-winner-#winner_id" title="Permalink to this definition">¶</a></dt> + <dd><p>Declare the winner of a split test manually. In the event that the test + duration has not elapsed, the current stats for each test will be frozen + and the content defined in the user declared winner will sent to the + remaining members for the mailing. Please note, any messages that are + pending for each of the test variations will receive the content + assigned to them when the test was initially constructed.</p> + <table class="docutils field-list" frame="void" rules="none"> + <col class="field-name" /> + <col class="field-body" /> + <tbody valign="top"> + <tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">True on success.</td> + </tr> + <tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http403</span></tt> if the winner cannot be manually declared.</td> + </tr> + </tbody> + </table> + <p> + <div class="sample-response hide-response"> + <span style="font-weight:bold;">Sample Response</span> + <a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>POST /100/mailings/202/winner/203</b> +{} + +true +</pre> + </div> + </p> + </dd></dl> + + </div> + + + </div> + </div> + </div> + <div class="sphinxsidebar"> + <div class="sphinxsidebarwrapper"><h3>Related Topics</h3> + <ul> + <li><a href="../../index.html">Documentation overview</a><ul> + <li>Previous: <a href="groups.html" title="previous chapter">Groups</a></li> + <li>Next: <a href="members.html" title="next chapter">Members</a></li> + </ul></li> + </ul> + <div id="searchbox" style="display: none"> + <h3>Quick search</h3> + <form class="search" action="../../search.html" method="get"> + <input type="text" name="q" /> + <input type="submit" value="Go" /> + <input type="hidden" name="check_keywords" value="yes" /> + <input type="hidden" name="area" value="default" /> + </form> + <p class="searchtip" style="font-size: 90%"> + Enter search terms or a module, class or function name. + </p> + </div> + <script type="text/javascript">$('#searchbox').show(0);</script> + <div id="emma-links"> + <h3>Emma Links</h3> + <ul> + <li><a href="http://myemma.com" title="Visit Emma's homepage" target="_blank">Emma Home</a></li> + + <li><a href="http://myemma.com/blog" title="Visit the Emma Blog" target="_blank">Emma Blog</a></li> + <li><a href="http://myemma.com/help" title="Visit Emma's help guide" target="_blank">Emma Help</a></li> + </ul> + </div> + + <div id="inquiry"> + <h3>Interested in Emma?</h3> + <p>Emma's email marketing makes communicating simple and stylish. <a href="http://myemma.com/get-started/inquire" title="Get started today.">Get started today</a>.</p> + </div> + </div> + </div> + <div class="clearer"></div> +</div> +<div class="footer"> + © Copyright 2003-<script language="JavaScript" type="text/javascript"> + now = new Date + theYear=now.getYear() + if (theYear < 1900) + theYear=theYear+1900 + document.write(theYear) +</script>, Emma. +</div> +</body> +</html> \ No newline at end of file From 4d4524fe68b9f58cbc442e2fcb12fd9594eb26ba Mon Sep 17 00:00:00 2001 From: Brandon Wanamaker <bwanamaker@myemma.com> Date: Thu, 26 May 2016 14:52:01 -0500 Subject: [PATCH 103/219] checking --- api/external/event_api.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/api/external/event_api.html b/api/external/event_api.html index 973dbe0..11b0bf7 100644 --- a/api/external/event_api.html +++ b/api/external/event_api.html @@ -102,10 +102,10 @@ <h3>Navigation</h3> <div class="body"> <div class="section" id="mailings"> - <h1>Mailings<a class="headerlink" href="#mailings" title="Permalink to this headline">¶</a></h1> - <p>With these endpoints, you can get information about your mailings including - their HTML contents. You can retrieve the members to whom the mailing was sent. - You can also pause mailings and cancel mailings that are pending or paused.</p> + <h1>Emma Event API<a class="headerlink" href="#mailings" title="Permalink to this headline">¶</a></h1> + <p>Access to the Event API is available only to Emma Plus, Premium and Enterprise customers.</p> + <p>The Emma Event API is used to automate and personalize emails that are triggered by audience activities in other platforms. While it is often used to power automated workflows triggered by activities like purchases and event registration and attendance, the Event API can receive events and data of any type from any service.</p> + <p>You can post events to Emma using the endpoint below. Workflows that are triggered by events shared to this endpoint can be configured in the Automation workflow builder (link). For more information about the event API and its capabilities, visit our Resource Center (link).</p> <dl class="get"> <dt id="get--#account_id-mailings"> <tt class="descname">GET </tt><tt class="descname">/#account_id/mailings</tt><a class="headerlink" href="#get--#account_id-mailings" title="Permalink to this definition">¶</a></dt> From dd5db610349e2bf0e19375e583d892d7174c343b Mon Sep 17 00:00:00 2001 From: Brandon Wanamaker <bwanamaker@myemma.com> Date: Thu, 26 May 2016 15:06:43 -0500 Subject: [PATCH 104/219] Checking again --- api/external/event_api.html | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/api/external/event_api.html b/api/external/event_api.html index 11b0bf7..b09bd5f 100644 --- a/api/external/event_api.html +++ b/api/external/event_api.html @@ -101,15 +101,20 @@ <h3>Navigation</h3> <div class="bodywrapper"> <div class="body"> - <div class="section" id="mailings"> - <h1>Emma Event API<a class="headerlink" href="#mailings" title="Permalink to this headline">¶</a></h1> + <div class="section" id="event_api"> + <h1>Emma Event API<a class="headerlink" href="#event_api" title="Permalink to this headline">¶</a></h1> <p>Access to the Event API is available only to Emma Plus, Premium and Enterprise customers.</p> <p>The Emma Event API is used to automate and personalize emails that are triggered by audience activities in other platforms. While it is often used to power automated workflows triggered by activities like purchases and event registration and attendance, the Event API can receive events and data of any type from any service.</p> <p>You can post events to Emma using the endpoint below. Workflows that are triggered by events shared to this endpoint can be configured in the Automation workflow builder (link). For more information about the event API and its capabilities, visit our Resource Center (link).</p> - <dl class="get"> - <dt id="get--#account_id-mailings"> - <tt class="descname">GET </tt><tt class="descname">/#account_id/mailings</tt><a class="headerlink" href="#get--#account_id-mailings" title="Permalink to this definition">¶</a></dt> - <dd><p>Get information about current mailings.</p> + <dl class="post"> + <dt id="post--#events"> + <tt class="descname">GET </tt><tt class="descname">/#account_id/events</tt><a class="headerlink" href="#post--#events" title="Permalink to this definition">¶</a></dt> + <dd><p>This endpoint allows you to post any type of valid JSON to Emma. In order for an event to power an automated workflow, the following conditions must be met: + <li>Must include a valid email address as a value (preferably in a clearly designated “email” field)</li> + <li>Email address must belong to a contact who is currently in “Active” status within your audience</li> + <li>Automated workflow must be configured to match key/value pairs contained within JSON post (more information here (link)).</li> + <li>JSON payload must not exceed (TK)MB</li> + </p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> From f272b10ae758b95362facd861d18b7949035a9e5 Mon Sep 17 00:00:00 2001 From: Brandon Wanamaker <bwanamaker@myemma.com> Date: Thu, 26 May 2016 15:14:14 -0500 Subject: [PATCH 105/219] Let's see what this does... --- api/external/event_api.html | 653 +++++------------------------------- 1 file changed, 79 insertions(+), 574 deletions(-) diff --git a/api/external/event_api.html b/api/external/event_api.html index b09bd5f..229ea10 100644 --- a/api/external/event_api.html +++ b/api/external/event_api.html @@ -108,14 +108,14 @@ <h1>Emma Event API<a class="headerlink" href="#event_api" title="Permalink to th <p>You can post events to Emma using the endpoint below. Workflows that are triggered by events shared to this endpoint can be configured in the Automation workflow builder (link). For more information about the event API and its capabilities, visit our Resource Center (link).</p> <dl class="post"> <dt id="post--#events"> - <tt class="descname">GET </tt><tt class="descname">/#account_id/events</tt><a class="headerlink" href="#post--#events" title="Permalink to this definition">¶</a></dt> + <tt class="descname">POST </tt><tt class="descname">/#account_id/events</tt><a class="headerlink" href="#post--#events" title="Permalink to this definition">¶</a></dt> <dd><p>This endpoint allows you to post any type of valid JSON to Emma. In order for an event to power an automated workflow, the following conditions must be met: <li>Must include a valid email address as a value (preferably in a clearly designated “email” field)</li> <li>Email address must belong to a contact who is currently in “Active” status within your audience</li> <li>Automated workflow must be configured to match key/value pairs contained within JSON post (more information here (link)).</li> <li>JSON payload must not exceed (TK)MB</li> </p> - <table class="docutils field-list" frame="void" rules="none"> + <!-- <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> @@ -142,74 +142,88 @@ <h1>Emma Event API<a class="headerlink" href="#event_api" title="Permalink to th </td> </tr> </tbody> - </table> + </table> --> <p> <div class="sample-response hide-response"> - <span style="font-weight:bold;">Sample Response</span> + <span style="font-weight:bold;">Sample Request</span> <a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> <pre class="response"> -<b>GET /100/mailings</b> +<b>POST /100/events</b> -[ - { - "mailing_type": "m", - "send_started": null, - "cancel_by_user_id": null, - "mailing_id": 201, - "recipient_count": 0, - "cancel_ts": null, - "mailing_status": "p", - "month": null, - "failure_ts": null, - "reply_to": null, - "year": null, - "datacenter": null, - "started_or_finished": null, - "account_id": 100, - "disabled": false, - "created_ts": "@D:2013-08-22T09:41:45", - "sender": "Kevin McConnell", - "plaintext_only": false, - "name": "Cancellable mailing", - "parent_mailing_id": null, - "failure_message": null, - "send_finished": null, - "send_at": null, - "signup_form_id": null, - "subject": "Cancellable mailing", - "purged_at": null, - "archived_ts": null - }, - { - "mailing_type": "m", - "send_started": null, - "cancel_by_user_id": null, - "mailing_id": 200, - "recipient_count": 0, - "cancel_ts": null, - "mailing_status": "c", - "month": null, - "failure_ts": null, - "reply_to": null, - "year": null, - "datacenter": null, - "started_or_finished": null, - "account_id": 100, - "disabled": false, - "created_ts": "@D:2013-08-22T09:41:45", - "sender": "Kevin McConnell", - "plaintext_only": false, - "name": "Sample Mailing", - "parent_mailing_id": null, - "failure_message": null, - "send_finished": null, - "send_at": null, - "signup_form_id": null, - "subject": "Sample Mailing for [% member:first_name %] [% member:last_name %]", - "purged_at": null, - "archived_ts": null - } -] +{ + “event_name”: “order-completed” + "id": 1028374857, + "email": “cody.devos@myemma.com”, + "closed_at": null, + "created_at": "2016-04-12T11:00:00-09:00", +"total_price": “145.53”, + "total_discounts": “14.70", + "order_number": 1001, + "discount_codes": [ + { + "code": “TEN16”, + "amount": “10.00", + "type": "percentage" + } + ], + "line_items": [ + { + "id": 998327818, + "variant_id": 59284621, + "title": “Slim Short Sleeve Linen Shirt”, + "quantity": 1, + "price": “68.00", + "sku": “SLSSLNSHRT”, + "variant_title": “white”, + “size”: medium, + "product_id": 632910392, + "requires_shipping": true, + "taxable": true, + "gift_card": false, + "name": “Slim Short Sleeve Linen Shirt - White“, + ], + "tax_lines": [ + { + "title": "State Tax", + "price": “6.12”, + "rate": 0.09 + } +{ + "id": 789327523, + "variant_id": 89137513, + "title": “Slim Mens Chino”, + "quantity": 1, + "price": “79.00", + "sku": “SLMNCHNO”, + "variant_title": “green”, + “size”: 32W32L, + "product_id": 948517351, + "requires_shipping": true, + "taxable": true, + "gift_card": false, + "name": “Slim Short Sleeve Linen Shirt - White“, + ], + "tax_lines": [ + { + "title": "State Tax", + "price": “7.11”, + "rate": 0.09 + } + ] + }, + "shipping_lines": [ + { + "id": 0928273492, + "title": "Free Shipping", + "price": "0.00", + "code": "Free Shipping", + "source": "shopify", + "phone": null, + "carrier_identifier": null, + "tax_lines": [ + ] + } + ], </pre> </div> @@ -282,515 +296,6 @@ <h1>Emma Event API<a class="headerlink" href="#event_api" title="Permalink to th } ] -</pre> - </div> - </p> - </dd></dl> - - <dl class="get"> - <dt id="get--#account_id-mailings-#mailing_id"> - <tt class="descname">GET </tt><tt class="descname">/#account_id/mailings/#mailing_id</tt><a class="headerlink" href="#get--#account_id-mailings-#mailing_id" title="Permalink to this definition">¶</a></dt> - <dd><p>Get detailed information for one mailing.</p> - <table class="docutils field-list" frame="void" rules="none"> - <col class="field-name" /> - <col class="field-body" /> - <tbody valign="top"> - <tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">A mailing.</td> - </tr> - <tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no mailing is found.</td> - </tr> - </tbody> - </table> - <p> - <div class="sample-response hide-response"> - <span style="font-weight:bold;">Sample Response</span> - <a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> -<pre class="response"> -<b>GET /100/mailings/200</b> - -{ - "recipient_groups": [ - { - "member_group_id": 151, - "name": "Widget Buyers" - } - ], - "heads_up_emails": [], - "send_started": null, - "signup_form_id": null, - "links": [ - { - "mailing_id": 200, - "plaintext": false, - "link_id": 200, - "link_name": "Emma", - "link_target": "http://www.myemma.com", - "link_order": 1 - } - ], - "mailing_id": 200, - "plaintext": "Hello [% member:first_name %]!", - "recipient_count": 0, - "public_webview_url": "http://localhost/webview/uf/6db0cc7e6fdb2da589b65f29d90c96b6", - "mailing_type": "m", - "parent_mailing_id": null, - "recipient_searches": [], - "account_id": 100, - "recipient_members": [ - { - "email": "emma@myemma.com", - "member_id": 200 - } - ], - "mailing_status": "c", - "sender": "Kevin McConnell", - "name": "Sample Mailing", - "send_finished": null, - "send_at": null, - "subject": "Sample Mailing for [% member:first_name %] [% member:last_name %]", - "archived_ts": null, - "html_body": "<p>Hello [% member:first_name %]!</p>" -} -</pre> - </div> - </p> - </dd></dl> - - <dl class="get"> - <dt id="get--#account_id-mailings-#mailing_id-members"> - <tt class="descname">GET </tt><tt class="descname">/#account_id/mailings/#mailing_id/members</tt><a class="headerlink" href="#get--#account_id-mailings-#mailing_id-members" title="Permalink to this definition">¶</a></dt> - <dd><p>Get the list of members to whom the given mailing was sent. This - does not include groups or searches.</p> - <table class="docutils field-list" frame="void" rules="none"> - <col class="field-name" /> - <col class="field-body" /> - <tbody valign="top"> - <tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">An array of members including status and member fields.</td> - </tr> - <tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no mailing is found.</td> - </tr> - </tbody> - </table> - <p> - <div class="sample-response hide-response"> - <span style="font-weight:bold;">Sample Response</span> - <a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> -<pre class="response"> -<b>GET /100/mailings/200/members</b> - -[ - { - "status": "active", - "confirmed_opt_in": null, - "account_id": 100, - "fields": { - "first_name": "Emma", - "last_name": "Smith", - "favorite_food": "tacos" - }, - "member_id": 200, - "last_modified_at": null, - "member_status_id": "a", - "plaintext_preferred": false, - "email_error": null, - "member_since": "@D:2010-11-12T11:23:45", - "bounce_count": 0, - "deleted_at": null, - "email": "emma@myemma.com" - } -] - -</pre> - </div> - </p> - </dd></dl> - - <dl class="get"> - <dt id="get--#account_id-mailings-#mailing_id-messages-#member_id"> - <tt class="descname">GET </tt><tt class="descname">/#account_id/mailings/#mailing_id/messages/#member_id</tt><a class="headerlink" href="#get--#account_id-mailings-#mailing_id-messages-#member_id" title="Permalink to this definition">¶</a></dt> - <dd><p>Gets the personalized message content as sent to a specific member - as part of the specified mailing.</p> - <table class="docutils field-list" frame="void" rules="none"> - <col class="field-name" /> - <col class="field-body" /> - <tbody valign="top"> - <tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> - <li><strong>type</strong> (<em>string</em>) – Accepts: ‘all’, ‘html’, ‘plaintext’, ‘subject’. Defaults - to ‘all’, if not provided.</li> - </ul> - </td> - </tr> - <tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">Message content from a mailing, personalized for a member. - The response will contain all parts of the mailing content by - default, or just the type of content specified by <cite>type</cite>.</p> - </td> - </tr> - <tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no message is found.</p> - </td> - </tr> - </tbody> - </table> - <p> - <div class="sample-response hide-response"> - <span style="font-weight:bold;">Sample Response</span> - <a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> -<pre class="response"> -<b>GET /100/mailings/200/messages/200</b> - -{ - "plaintext": "Hello !", - "subject": "Sample Mailing for ", - "html_body": "<p>Hello !</p>" -} -</pre> - </div> - </p> - <p> - <div class="sample-response hide-response"> - <span style="font-weight:bold;">Sample Response</span> - <a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> -<pre class="response"> -<b>GET /100/mailings/200/messages/200?type=html</b> - -{ - "html_body": "<p>Hello !</p>" -} -</pre> - </div> - </p> - </dd></dl> - - <dl class="get"> - <dt id="get--#account_id-mailings-#mailing_id-groups"> - <tt class="descname">GET </tt><tt class="descname">/#account_id/mailings/#mailing_id/groups</tt><a class="headerlink" href="#get--#account_id-mailings-#mailing_id-groups" title="Permalink to this definition">¶</a></dt> - <dd><p>Get the groups to which a particular mailing was sent.</p> - <table class="docutils field-list" frame="void" rules="none"> - <col class="field-name" /> - <col class="field-body" /> - <tbody valign="top"> - <tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">An array of groups.</td> - </tr> - <tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no mailing is found.</td> - </tr> - </tbody> - </table> - <p> - <div class="sample-response hide-response"> - <span style="font-weight:bold;">Sample Response</span> - <a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> -<pre class="response"> -<b>GET /100/mailings/200/groups</b> - -[ - { - "active_count": 2, - "deleted_at": null, - "error_count": 0, - "optout_count": 0, - "group_type": "g", - "member_group_id": 151, - "purged_at": null, - "account_id": 100, - "group_name": "Widget Buyers" - } -] - -</pre> - </div> - </p> - </dd></dl> - - <dl class="get"> - <dt id="get--#account_id-mailings-#mailing_id-searches"> - <tt class="descname">GET </tt><tt class="descname">/#account_id/mailings/#mailing_id/searches</tt><a class="headerlink" href="#get--#account_id-mailings-#mailing_id-searches" title="Permalink to this definition">¶</a></dt> - <dd><p>Get all searches associated with a sent mailing.</p> - <table class="docutils field-list" frame="void" rules="none"> - <col class="field-name" /> - <col class="field-body" /> - <tbody valign="top"> - <tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">An array of searches.</td> - </tr> - <tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no mailing is found.</td> - </tr> - </tbody> - </table> - <p> - <div class="sample-response hide-response"> - <span style="font-weight:bold;">Sample Response</span> - <a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> -<pre class="response"> -<b>GET /100/mailings/200/searches</b> - -[ - -] - -</pre> - </div> - </p> - </dd></dl> - - <dl class="put"> - <dt id="put--#account_id-mailings-#mailing_id"> - <tt class="descname">PUT </tt><tt class="descname">/#account_id/mailings/#mailing_id</tt><a class="headerlink" href="#put--#account_id-mailings-#mailing_id" title="Permalink to this definition">¶</a></dt> - <dd><p>Update status of a current mailing</p> - <p>The status can be one of <tt class="docutils literal"><span class="pre">canceled</span></tt>, <tt class="docutils literal"><span class="pre">paused</span></tt> or <tt class="docutils literal"><span class="pre">ready</span></tt>. This - method can be used to control the progress of a mailing by pausing, - canceling or resuming it. Once a mailing is canceled it can’t be - resumed, and will not show in the normal <tt class="docutils literal"><span class="pre">mailing_list</span></tt> output.</p> - <p>Returns the mailing’s new status</p> - </dd></dl> - - <dl class="delete"> - <dt id="delete--#account_id-mailings-#mailing_id"> - <tt class="descname">DELETE </tt><tt class="descname">/#account_id/mailings/#mailing_id</tt><a class="headerlink" href="#delete--#account_id-mailings-#mailing_id" title="Permalink to this definition">¶</a></dt> - <dd><p>Sets archived timestamp for a mailing so it is no longer included in - mailing_list.</p> - <table class="docutils field-list" frame="void" rules="none"> - <col class="field-name" /> - <col class="field-body" /> - <tbody valign="top"> - <tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">True if the mailing is successfully archived.</td> - </tr> - </tbody> - </table> - <p> - <div class="sample-response hide-response"> - <span style="font-weight:bold;">Sample Response</span> - <a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> -<pre class="response"> -<b>DELETE /100/mailings/200</b> - -true -</pre> - </div> - </p> - </dd></dl> - - <dl class="delete"> - <dt id="delete--#account_id-mailings-cancel-#mailing_id"> - <tt class="descname">DELETE </tt><tt class="descname">/#account_id/mailings/cancel/#mailing_id</tt><a class="headerlink" href="#delete--#account_id-mailings-cancel-#mailing_id" title="Permalink to this definition">¶</a></dt> - <dd><p>Cancels a mailing that has a current status of pending or - paused. All other statuses will result in a 404.</p> - <table class="docutils field-list" frame="void" rules="none"> - <col class="field-name" /> - <col class="field-body" /> - <tbody valign="top"> - <tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">True if mailing marked as cancelled.</td> - </tr> - </tbody> - </table> - <p> - <div class="sample-response hide-response"> - <span style="font-weight:bold;">Sample Response</span> - <a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> -<pre class="response"> -<b>DELETE /100/mailings/cancel/201</b> - -true -</pre> - </div> - </p> - </dd></dl> - - <dl class="post"> - <dt id="post--#account_id-forwards-#mailing_id-#member_id"> - <tt class="descname">POST </tt><tt class="descname">/#account_id/forwards/#mailing_id/#member_id</tt><a class="headerlink" href="#post--#account_id-forwards-#mailing_id-#member_id" title="Permalink to this definition">¶</a></dt> - <dd><p>Forward a previous message to additional recipients. If these - recipients are not already in the audience, they will be added with a - status of FORWARDED.</p> - <table class="docutils field-list" frame="void" rules="none"> - <col class="field-name" /> - <col class="field-body" /> - <tbody valign="top"> - <tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> - <li><strong>recipient_emails</strong> (<em>array</em>) – An array of email addresses to which to - forward the specified message.</li> - <li><strong>note</strong> (<em>string</em>) – A note to include in the forward. This note will be HTML - encoded and is limited to 500 characters.</li> - </ul> - </td> - </tr> - <tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">A reference to the new mailing.</p> - </td> - </tr> - <tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no message is found.</p> - </td> - </tr> - </tbody> - </table> - <p> - <div class="sample-response hide-response"> - <span style="font-weight:bold;">Sample Response</span> - <a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> -<pre class="response"> -<b>POST /100/forwards/200/200</b> -{ - "recipient_emails": [ - "alex@myemma.com", - "chris@myemma.com" - ] -} - -{ - "mailing_id": 1024 -} -</pre> - </div> - </p> - </dd></dl> - - <dl class="post"> - <dt id="post--#account_id-mailings-#mailing_id"> - <tt class="descname">POST </tt><tt class="descname">/#account_id/mailings/#mailing_id</tt><a class="headerlink" href="#post--#account_id-mailings-#mailing_id" title="Permalink to this definition">¶</a></dt> - <dd><p>Send a prior mailing to additional recipients. A new mailing will be - created that inherits its content from the original.</p> - <table class="docutils field-list" frame="void" rules="none"> - <col class="field-name" /> - <col class="field-body" /> - <tbody valign="top"> - <tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> - <li><strong>sender</strong> (<em>string</em>) – The message sender. If this is not supplied, the - sender of the original mailing will be used.</li> - <li><strong>heads_up_emails</strong> (<em>array</em>) – A list of email addresses that heads up - notification emails will be sent to.</li> - <li><strong>recipient_emails</strong> (<em>array</em>) – An array of email addresses to which the new - mailing should be sent.</li> - <li><strong>recipient_groups</strong> (<em>array</em>) – An array of member groups to which the new - mailing should be sent.</li> - <li><strong>recipient_searches</strong> (<em>array</em>) – A list of searches that this mailing should - be sent to.</li> - </ul> - </td> - </tr> - <tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">A reference to the new mailing.</p> - </td> - </tr> - <tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no mailing is found.</p> - </td> - </tr> - </tbody> - </table> - <p> - <div class="sample-response hide-response"> - <span style="font-weight:bold;">Sample Response</span> - <a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> -<pre class="response"> -<b>POST /100/mailings/200</b> -{ - "recipient_emails": [ - "michelle@myemma.com" - ] -} - -{ - "mailing_id": 1024 -} -</pre> - </div> - </p> - </dd></dl> - - <dl class="get"> - <dt id="get--#account_id-mailings-#mailing_id-headsup"> - <tt class="descname">GET </tt><tt class="descname">/#account_id/mailings/#mailing_id/headsup</tt><a class="headerlink" href="#get--#account_id-mailings-#mailing_id-headsup" title="Permalink to this definition">¶</a></dt> - <dd><p>Get heads up email address(es) related to a mailing.</p> - <table class="docutils field-list" frame="void" rules="none"> - <col class="field-name" /> - <col class="field-body" /> - <tbody valign="top"> - <tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">An array of heads up email addresses.</td> - </tr> - <tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no mailing is found.</td> - </tr> - </tbody> - </table> - <p> - <div class="sample-response hide-response"> - <span style="font-weight:bold;">Sample Response</span> - <a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> -<pre class="response"> -<b>GET /100/mailings/200/headsup</b> - -[ - -] - -</pre> - </div> - </p> - </dd></dl> - - <dl class="post"> - <dt id="post--#account_id-mailings-validate"> - <tt class="descname">POST </tt><tt class="descname">/#account_id/mailings/validate</tt><a class="headerlink" href="#post--#account_id-mailings-validate" title="Permalink to this definition">¶</a></dt> - <dd><p>Validate that a mailing has valid personalization-tag syntax. Checks - tag syntax in three params:</p> - <table class="docutils field-list" frame="void" rules="none"> - <col class="field-name" /> - <col class="field-body" /> - <tbody valign="top"> - <tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> - <li><strong>html_body</strong> (<em>string</em>) – The html contents of the mailing</li> - <li><strong>plaintext</strong> (<em>string</em>) – The plaintext contents of the mailing. Unlike in - <tt class="docutils literal"><span class="pre">create_mailing</span></tt>, this param is not required.</li> - <li><strong>subject</strong> (<em>string</em>) – The subject of the mailing</li> - </ul> - </td> - </tr> - <tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">true</p> - </td> - </tr> - <tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http400</span></tt> if any tags are invalid. The response body will - have information about the invalid tags.</p> - </td> - </tr> - </tbody> - </table> - <p> - <div class="sample-response hide-response"> - <span style="font-weight:bold;">Sample Response</span> - <a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> -<pre class="response"> -<b>POST /100/mailings/validate</b> -{ - "subject": "Another Fine Test" -} - -true -</pre> - </div> - </p> - </dd></dl> - - <dl class="post"> - <dt id="post--#account_id-mailings-#mailing_id-winner-#winner_id"> - <tt class="descname">POST </tt><tt class="descname">/#account_id/mailings/#mailing_id/winner/#winner_id</tt><a class="headerlink" href="#post--#account_id-mailings-#mailing_id-winner-#winner_id" title="Permalink to this definition">¶</a></dt> - <dd><p>Declare the winner of a split test manually. In the event that the test - duration has not elapsed, the current stats for each test will be frozen - and the content defined in the user declared winner will sent to the - remaining members for the mailing. Please note, any messages that are - pending for each of the test variations will receive the content - assigned to them when the test was initially constructed.</p> - <table class="docutils field-list" frame="void" rules="none"> - <col class="field-name" /> - <col class="field-body" /> - <tbody valign="top"> - <tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">True on success.</td> - </tr> - <tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http403</span></tt> if the winner cannot be manually declared.</td> - </tr> - </tbody> - </table> - <p> - <div class="sample-response hide-response"> - <span style="font-weight:bold;">Sample Response</span> - <a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> -<pre class="response"> -<b>POST /100/mailings/202/winner/203</b> -{} - -true </pre> </div> </p> From 0d9c4d75c9308428a11d9e4391f60a8d41cd3e0f Mon Sep 17 00:00:00 2001 From: Brandon Wanamaker <bwanamaker@myemma.com> Date: Thu, 26 May 2016 15:16:21 -0500 Subject: [PATCH 106/219] Almost there. --- api/external/event_api.html | 64 +------------------------------------ 1 file changed, 1 insertion(+), 63 deletions(-) diff --git a/api/external/event_api.html b/api/external/event_api.html index 229ea10..491dcd7 100644 --- a/api/external/event_api.html +++ b/api/external/event_api.html @@ -233,69 +233,7 @@ <h1>Emma Event API<a class="headerlink" href="#event_api" title="Permalink to th <span style="font-weight:bold;">Sample Response</span> <a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> <pre class="response"> -<b>GET /100/mailings?mailing_statuses=p,c&mailing_types=m,t</b> - -[ - { - "mailing_type": "m", - "send_started": null, - "cancel_by_user_id": null, - "mailing_id": 201, - "recipient_count": 0, - "cancel_ts": null, - "mailing_status": "p", - "month": null, - "failure_ts": null, - "reply_to": null, - "year": null, - "datacenter": null, - "started_or_finished": null, - "account_id": 100, - "disabled": false, - "created_ts": "@D:2013-08-22T09:41:45", - "sender": "Kevin McConnell", - "plaintext_only": false, - "name": "Cancellable mailing", - "parent_mailing_id": null, - "failure_message": null, - "send_finished": null, - "send_at": null, - "signup_form_id": null, - "subject": "Cancellable mailing", - "purged_at": null, - "archived_ts": null - }, - { - "mailing_type": "m", - "send_started": null, - "cancel_by_user_id": null, - "mailing_id": 200, - "recipient_count": 0, - "cancel_ts": null, - "mailing_status": "c", - "month": null, - "failure_ts": null, - "reply_to": null, - "year": null, - "datacenter": null, - "started_or_finished": null, - "account_id": 100, - "disabled": false, - "created_ts": "@D:2013-08-22T09:41:45", - "sender": "Kevin McConnell", - "plaintext_only": false, - "name": "Sample Mailing", - "parent_mailing_id": null, - "failure_message": null, - "send_finished": null, - "send_at": null, - "signup_form_id": null, - "subject": "Sample Mailing for [% member:first_name %] [% member:last_name %]", - "purged_at": null, - "archived_ts": null - } -] - +<b>COMING SOON</b> </pre> </div> </p> From 04e68bdab599784c67038475b99c0cd952a73f20 Mon Sep 17 00:00:00 2001 From: Brandon Wanamaker <bwafflemaker@users.noreply.github.com> Date: Thu, 26 May 2016 15:22:31 -0500 Subject: [PATCH 107/219] Update event_api.html Yep --- api/external/event_api.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/api/external/event_api.html b/api/external/event_api.html index 491dcd7..5b806ae 100644 --- a/api/external/event_api.html +++ b/api/external/event_api.html @@ -103,7 +103,7 @@ <h3>Navigation</h3> <div class="section" id="event_api"> <h1>Emma Event API<a class="headerlink" href="#event_api" title="Permalink to this headline">¶</a></h1> - <p>Access to the Event API is available only to Emma Plus, Premium and Enterprise customers.</p> + <h3>Access to the Event API is available only to Emma Plus, Premium and Enterprise customers.</h3> <p>The Emma Event API is used to automate and personalize emails that are triggered by audience activities in other platforms. While it is often used to power automated workflows triggered by activities like purchases and event registration and attendance, the Event API can receive events and data of any type from any service.</p> <p>You can post events to Emma using the endpoint below. Workflows that are triggered by events shared to this endpoint can be configured in the Automation workflow builder (link). For more information about the event API and its capabilities, visit our Resource Center (link).</p> <dl class="post"> @@ -294,4 +294,4 @@ <h3>Interested in Emma?</h3> </script>, Emma. </div> </body> -</html> \ No newline at end of file +</html> From 2e7bc16f2e59303a44bfe1557e8ac384e47b3851 Mon Sep 17 00:00:00 2001 From: Brandon Wanamaker <bwafflemaker@users.noreply.github.com> Date: Thu, 26 May 2016 15:23:01 -0500 Subject: [PATCH 108/219] Update event_api.html Better. --- api/external/event_api.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/external/event_api.html b/api/external/event_api.html index 5b806ae..03bd7a8 100644 --- a/api/external/event_api.html +++ b/api/external/event_api.html @@ -103,7 +103,7 @@ <h3>Navigation</h3> <div class="section" id="event_api"> <h1>Emma Event API<a class="headerlink" href="#event_api" title="Permalink to this headline">¶</a></h1> - <h3>Access to the Event API is available only to Emma Plus, Premium and Enterprise customers.</h3> + <h2>Access to the Event API is available only to Emma Plus, Premium and Enterprise customers.</h2> <p>The Emma Event API is used to automate and personalize emails that are triggered by audience activities in other platforms. While it is often used to power automated workflows triggered by activities like purchases and event registration and attendance, the Event API can receive events and data of any type from any service.</p> <p>You can post events to Emma using the endpoint below. Workflows that are triggered by events shared to this endpoint can be configured in the Automation workflow builder (link). For more information about the event API and its capabilities, visit our Resource Center (link).</p> <dl class="post"> From de707486c85649a6d21ab8ccf7a7fd4ba504a391 Mon Sep 17 00:00:00 2001 From: Brandon Wanamaker <bwafflemaker@users.noreply.github.com> Date: Thu, 26 May 2016 15:34:15 -0500 Subject: [PATCH 109/219] Updates from Rodney Updates from Rodney --- api/external/event_api.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/api/external/event_api.html b/api/external/event_api.html index 03bd7a8..54e8230 100644 --- a/api/external/event_api.html +++ b/api/external/event_api.html @@ -110,10 +110,10 @@ <h2>Access to the Event API is available only to Emma Plus, Premium and Enterpr <dt id="post--#events"> <tt class="descname">POST </tt><tt class="descname">/#account_id/events</tt><a class="headerlink" href="#post--#events" title="Permalink to this definition">¶</a></dt> <dd><p>This endpoint allows you to post any type of valid JSON to Emma. In order for an event to power an automated workflow, the following conditions must be met: - <li>Must include a valid email address as a value (preferably in a clearly designated “email” field)</li> + <li>Must include a valid email address as a value with a key of "email"`</li> <li>Email address must belong to a contact who is currently in “Active” status within your audience</li> <li>Automated workflow must be configured to match key/value pairs contained within JSON post (more information here (link)).</li> - <li>JSON payload must not exceed (TK)MB</li> + <li>JSON payload must not exceed 256KB (262,035 bytes)</li> </p> <!-- <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> From eab0d3c32e85dc72da9e00a8406e65645bff739d Mon Sep 17 00:00:00 2001 From: Brandon Wanamaker <bwafflemaker@users.noreply.github.com> Date: Thu, 26 May 2016 17:24:58 -0500 Subject: [PATCH 110/219] Updated links Links are updated. --- api/external/event_api.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/api/external/event_api.html b/api/external/event_api.html index 54e8230..83ed83f 100644 --- a/api/external/event_api.html +++ b/api/external/event_api.html @@ -105,14 +105,14 @@ <h3>Navigation</h3> <h1>Emma Event API<a class="headerlink" href="#event_api" title="Permalink to this headline">¶</a></h1> <h2>Access to the Event API is available only to Emma Plus, Premium and Enterprise customers.</h2> <p>The Emma Event API is used to automate and personalize emails that are triggered by audience activities in other platforms. While it is often used to power automated workflows triggered by activities like purchases and event registration and attendance, the Event API can receive events and data of any type from any service.</p> - <p>You can post events to Emma using the endpoint below. Workflows that are triggered by events shared to this endpoint can be configured in the Automation workflow builder (link). For more information about the event API and its capabilities, visit our Resource Center (link).</p> + <p>You can post events to Emma using the endpoint below. Workflows that are triggered by events shared to this endpoint can be configured in the Automation <a href="https://support.e2ma.net/Resource_Center/Guide_to_Automation/Trigger_events%3A_custom_API_event">workflow builder</a>. For more information about the event API and its capabilities, visit our <a href="https://support.e2ma.net/Resource_Center/Account_how-to/Event_API">Resource Center</a>.</p> <dl class="post"> <dt id="post--#events"> <tt class="descname">POST </tt><tt class="descname">/#account_id/events</tt><a class="headerlink" href="#post--#events" title="Permalink to this definition">¶</a></dt> <dd><p>This endpoint allows you to post any type of valid JSON to Emma. In order for an event to power an automated workflow, the following conditions must be met: <li>Must include a valid email address as a value with a key of "email"`</li> <li>Email address must belong to a contact who is currently in “Active” status within your audience</li> - <li>Automated workflow must be configured to match key/value pairs contained within JSON post (more information here (link)).</li> + <li>Automated workflow must be configured to match key/value pairs contained within JSON post (more information <a href="https://support.e2ma.net/Resource_Center/Guide_to_Automation/Trigger_events%3A_custom_API_event">here</a>).</li> <li>JSON payload must not exceed 256KB (262,035 bytes)</li> </p> <!-- <table class="docutils field-list" frame="void" rules="none"> From 4153e05234714d2bcb38bfad38d02c8028a2be47 Mon Sep 17 00:00:00 2001 From: Brandon Wanamaker <bwafflemaker@users.noreply.github.com> Date: Thu, 26 May 2016 17:29:32 -0500 Subject: [PATCH 111/219] Updated response sample Response sample has been updated --- api/external/event_api.html | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/api/external/event_api.html b/api/external/event_api.html index 83ed83f..0221c26 100644 --- a/api/external/event_api.html +++ b/api/external/event_api.html @@ -233,7 +233,8 @@ <h2>Access to the Event API is available only to Emma Plus, Premium and Enterpr <span style="font-weight:bold;">Sample Response</span> <a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> <pre class="response"> -<b>COMING SOON</b> +<b>POST /events.e2ma.net/v1/100/events/</b> +{"success":true} </pre> </div> </p> From e8aecec05066e62b4ec9c09ae92b35a608dfacb3 Mon Sep 17 00:00:00 2001 From: msdolbey <dolbes@gmail.com> Date: Tue, 31 May 2016 11:02:48 -0500 Subject: [PATCH 112/219] no more apostrophe just a hanging apostrophe --- api/external/event_api.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/external/event_api.html b/api/external/event_api.html index 0221c26..e5b6f06 100644 --- a/api/external/event_api.html +++ b/api/external/event_api.html @@ -110,7 +110,7 @@ <h2>Access to the Event API is available only to Emma Plus, Premium and Enterpr <dt id="post--#events"> <tt class="descname">POST </tt><tt class="descname">/#account_id/events</tt><a class="headerlink" href="#post--#events" title="Permalink to this definition">¶</a></dt> <dd><p>This endpoint allows you to post any type of valid JSON to Emma. In order for an event to power an automated workflow, the following conditions must be met: - <li>Must include a valid email address as a value with a key of "email"`</li> + <li>Must include a valid email address as a value with a key of "email"</li> <li>Email address must belong to a contact who is currently in “Active” status within your audience</li> <li>Automated workflow must be configured to match key/value pairs contained within JSON post (more information <a href="https://support.e2ma.net/Resource_Center/Guide_to_Automation/Trigger_events%3A_custom_API_event">here</a>).</li> <li>JSON payload must not exceed 256KB (262,035 bytes)</li> From 3cf48279bf1b000069058f944ebd2224e4a1d4f0 Mon Sep 17 00:00:00 2001 From: Brandon Wanamaker <bwanamaker@myemma.com> Date: Fri, 3 Jun 2016 09:52:58 -0500 Subject: [PATCH 113/219] Link to the Event API doc on homepage. --- index.html | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/index.html b/index.html index f297486..dd1473b 100644 --- a/index.html +++ b/index.html @@ -258,6 +258,10 @@ <h2>API rate limit<a class="headerlink" href="#api-rate-limit" title="Permalink minute. If you exceed the limit, you‘ll receive a response of 403 Rate Limit Exceeded until enough time has elapsed between calls. </p> </div> +<div class="section" id="event-api"> +<h2>Event API<a class="headerlink" href="api/external/event_api.html" title="Event API">¶</a></h2> +<div class="toctree-wrapper compound"> +<ul> <div class="section" id="additional-documentation"> <h2>Additional documentation<a class="headerlink" href="#additional-documentation" title="Permalink to this headline">¶</a></h2> <div class="toctree-wrapper compound"> From 750a27d2bb5e8b896ce5a94c515252853457e9bc Mon Sep 17 00:00:00 2001 From: Brandon Wanamaker <bwanamaker@myemma.com> Date: Fri, 3 Jun 2016 09:53:59 -0500 Subject: [PATCH 114/219] Undo... that was bad. --- index.html | 4 ---- 1 file changed, 4 deletions(-) diff --git a/index.html b/index.html index dd1473b..f297486 100644 --- a/index.html +++ b/index.html @@ -258,10 +258,6 @@ <h2>API rate limit<a class="headerlink" href="#api-rate-limit" title="Permalink minute. If you exceed the limit, you‘ll receive a response of 403 Rate Limit Exceeded until enough time has elapsed between calls. </p> </div> -<div class="section" id="event-api"> -<h2>Event API<a class="headerlink" href="api/external/event_api.html" title="Event API">¶</a></h2> -<div class="toctree-wrapper compound"> -<ul> <div class="section" id="additional-documentation"> <h2>Additional documentation<a class="headerlink" href="#additional-documentation" title="Permalink to this headline">¶</a></h2> <div class="toctree-wrapper compound"> From 7d0e08579cc9ec7fa0c55c86895e8cbe9818a875 Mon Sep 17 00:00:00 2001 From: Brandon Wanamaker <bwanamaker@myemma.com> Date: Fri, 3 Jun 2016 10:00:48 -0500 Subject: [PATCH 115/219] This is the right spot for the menu, but not sure about the right code. Let's see. --- index.html | 3 +++ 1 file changed, 3 insertions(+) diff --git a/index.html b/index.html index f297486..1bf3072 100644 --- a/index.html +++ b/index.html @@ -302,6 +302,9 @@ <h3><a href="#">Table Of Contents</a></h3> <li><a class="reference internal" href="#api-calls-by-category">API calls by category</a> <li><a class="reference internal" href="#api-rate-limit">API Rate Limit</a><ul> </ul> + <ul> +<li><a class="reference internal" href="api/external/event_api.html">Event API</a><ul> + </ul> </li> <li><a class="reference internal" href="#additional-documentation">Additional Documentation</a><ul> </ul> From c80909872ddccba90d14826afee5dbbda2173e88 Mon Sep 17 00:00:00 2001 From: Brandon Wanamaker <bwanamaker@myemma.com> Date: Fri, 3 Jun 2016 10:02:14 -0500 Subject: [PATCH 116/219] Adjusting --- index.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/index.html b/index.html index 1bf3072..c3d111f 100644 --- a/index.html +++ b/index.html @@ -302,15 +302,15 @@ <h3><a href="#">Table Of Contents</a></h3> <li><a class="reference internal" href="#api-calls-by-category">API calls by category</a> <li><a class="reference internal" href="#api-rate-limit">API Rate Limit</a><ul> </ul> - <ul> -<li><a class="reference internal" href="api/external/event_api.html">Event API</a><ul> - </ul> </li> <li><a class="reference internal" href="#additional-documentation">Additional Documentation</a><ul> </ul> </li> </ul> </li> + <ul> +<li><a class="reference internal" href="api/external/event_api.html">Event API</a><ul> + </ul> </ul> <h3>Related Topics</h3> <ul> From 4030dc9df37718307cf47ad5075ac5c048e56dbb Mon Sep 17 00:00:00 2001 From: Brandon Wanamaker <bwanamaker@myemma.com> Date: Fri, 3 Jun 2016 10:03:16 -0500 Subject: [PATCH 117/219] HTML is hard... --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index c3d111f..4b114ba 100644 --- a/index.html +++ b/index.html @@ -308,10 +308,10 @@ <h3><a href="#">Table Of Contents</a></h3> </li> </ul> </li> +</ul> <ul> <li><a class="reference internal" href="api/external/event_api.html">Event API</a><ul> </ul> -</ul> <h3>Related Topics</h3> <ul> <li><a href="#">Documentation overview</a><ul> From 963885a672bbb9435f327e4d35c74b6a3aad5e6a Mon Sep 17 00:00:00 2001 From: Brandon Wanamaker <bwanamaker@users.noreply.github.com> Date: Fri, 6 Jan 2017 16:45:17 -0600 Subject: [PATCH 118/219] Update index.html --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index 4b114ba..5356af1 100644 --- a/index.html +++ b/index.html @@ -246,7 +246,7 @@ <h2>API calls by category<a class="headerlink" href="#api-calls-by-category" tit <li class="toctree-l1"><a class="reference internal" href="api/external/response.html">Response</a></li> <li class="toctree-l1"><a class="reference internal" href="api/external/searches.html">Searches</a></li> <li class="toctree-l1"><a class="reference internal" href="api/external/signup_forms.html">Signup Forms</a></li> -<li class="toctree-l1"><a class="reference internal" href="api/external/triggers.html">Triggers</a></li> +<!-- <li class="toctree-l1"><a class="reference internal" href="api/external/triggers.html">Triggers</a></li> --> <li class="toctree-l1"><a class="reference internal" href="api/external/webhooks.html">Webhooks</a></li> </ul> </div> From 02c651d972a19d1a3070dc45ca940bc80a0f124a Mon Sep 17 00:00:00 2001 From: Brandon Wanamaker <bwanamaker@users.noreply.github.com> Date: Fri, 6 Jan 2017 16:48:24 -0600 Subject: [PATCH 119/219] Add deprecation notice --- api/external/triggers.html | 1 + 1 file changed, 1 insertion(+) diff --git a/api/external/triggers.html b/api/external/triggers.html index 6345c9c..446398c 100644 --- a/api/external/triggers.html +++ b/api/external/triggers.html @@ -102,6 +102,7 @@ <h3>Navigation</h3> <div class="section" id="triggers"> <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this headline">¶</a></h1> +<p>NOTICE: Triggers have been deprecated.</p> <p>These endpoints provide CRUD operations for our trigger system. Viewing a trigger is probably the most widely used of these operations.</p> <dl class="get"> From d1126c93bd9031b11e24272df9a3f118a61911ed Mon Sep 17 00:00:00 2001 From: Brandon Wanamaker <brandon@huntgathergrow.me> Date: Mon, 9 Jan 2017 10:29:49 -0600 Subject: [PATCH 120/219] Updated Prev/Next navigation to skip Triggers --- api/external/signup_forms.html | 2 +- api/external/webhooks.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/api/external/signup_forms.html b/api/external/signup_forms.html index 7110104..0a50f66 100644 --- a/api/external/signup_forms.html +++ b/api/external/signup_forms.html @@ -153,7 +153,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="triggers.html" title="next chapter">Triggers</a></li> + <li>Next: <a href="webhooks.html" title="next chapter">Webhooks</a></li> </ul></li> </ul> <div id="searchbox" style="display: none"> diff --git a/api/external/webhooks.html b/api/external/webhooks.html index 38cb588..06cb5bd 100644 --- a/api/external/webhooks.html +++ b/api/external/webhooks.html @@ -449,7 +449,7 @@ <h1>Webhooks<a class="headerlink" href="#webhooks" title="Permalink to this head <div class="sphinxsidebarwrapper"><h3>Related Topics</h3> <ul> <li><a href="../../index.html">Documentation overview</a><ul> - <li>Previous: <a href="triggers.html" title="previous chapter">Triggers</a></li> + <li>Previous: <a href="signup_forms.html" title="previous chapter">Signup Forms</a></li> <li>Next: <a href="../../pagination.html" title="next chapter">Pagination</a></li> </ul></li> </ul> From 77b82c1988a40c966e675586a5bdea513d7b520e Mon Sep 17 00:00:00 2001 From: Brandon Wanamaker <brandon@huntgathergrow.me> Date: Wed, 8 Mar 2017 11:09:58 -0600 Subject: [PATCH 121/219] Update `Raises:` in `response.html` --- api/external/response.html | 60 +++++++++++++++++++------------------- 1 file changed, 30 insertions(+), 30 deletions(-) diff --git a/api/external/response.html b/api/external/response.html index cbba93d..5c5e6be 100644 --- a/api/external/response.html +++ b/api/external/response.html @@ -230,9 +230,9 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing does not exist.</td> +<tr class="field-odd field"><th class="field-name">Raises:</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing does not exist.</td> </tr> -<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing is not valid mailing type - ‘m’ for +<tr class="field-even field"><th class="field-name">Raises:</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing is not valid mailing type - ‘m’ for standard mailings, ‘t’ for test mailings and ‘r’ for trigger mailings.</td> </tr> </tbody> @@ -286,9 +286,9 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing does not exist.</td> +<tr class="field-odd field"><th class="field-name">Raises:</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing does not exist.</td> </tr> -<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing is not valid +<tr class="field-even field"><th class="field-name">Raises:</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing is not valid mailing type - ‘m’ for standard mailings, ‘t’ for test mailings and ‘r’ for trigger mailings.</td> </tr> @@ -367,9 +367,9 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing does not exist.</td> +<tr class="field-odd field"><th class="field-name">Raises:</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing does not exist.</td> </tr> -<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing is not valid +<tr class="field-even field"><th class="field-name">Raises:</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing is not valid mailing type - ‘m’ for standard mailings, ‘t’ for test mailings and ‘r’ for trigger mailings.</td> </tr> @@ -448,9 +448,9 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing does not exist.</td> +<tr class="field-odd field"><th class="field-name">Raises:</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing does not exist.</td> </tr> -<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing is not valid +<tr class="field-even field"><th class="field-name">Raises:</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing is not valid mailing type - ‘m’ for standard mailings, ‘t’ for test mailings and ‘r’ for trigger mailings.</td> </tr> @@ -506,9 +506,9 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing does not exist.</td> +<tr class="field-odd field"><th class="field-name">Raises:</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing does not exist.</td> </tr> -<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing is not valid +<tr class="field-even field"><th class="field-name">Raises:</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing is not valid mailing type - ‘m’ for standard mailings, ‘t’ for test mailings and ‘r’ for trigger mailings.</td> </tr> @@ -576,9 +576,9 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing does not exist.</td> +<tr class="field-odd field"><th class="field-name">Raises:</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing does not exist.</td> </tr> -<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing is not valid +<tr class="field-even field"><th class="field-name">Raises:</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing is not valid mailing type - ‘m’ for standard mailings, ‘t’ for test mailings and ‘r’ for trigger mailings.</td> </tr> @@ -640,9 +640,9 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing does not exist.</td> +<tr class="field-odd field"><th class="field-name">Raises:</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing does not exist.</td> </tr> -<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing is not valid +<tr class="field-even field"><th class="field-name">Raises:</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing is not valid mailing type - ‘m’ for standard mailings, ‘t’ for test mailings and ‘r’ for trigger mailings.</td> </tr> @@ -697,9 +697,9 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing does not exist.</td> +<tr class="field-odd field"><th class="field-name">Raises:</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing does not exist.</td> </tr> -<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing is not valid +<tr class="field-even field"><th class="field-name">Raises:</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing is not valid mailing type - ‘m’ for standard mailings, ‘t’ for test mailings and ‘r’ for trigger mailings.</td> </tr> @@ -741,9 +741,9 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing does not exist.</td> +<tr class="field-odd field"><th class="field-name">Raises:</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing does not exist.</td> </tr> -<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing is not valid +<tr class="field-even field"><th class="field-name">Raises:</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing is not valid mailing type - ‘m’ for standard mailings, ‘t’ for test mailings and ‘r’ for trigger mailings.</td> </tr> @@ -797,9 +797,9 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing does not exist.</td> +<tr class="field-odd field"><th class="field-name">Raises:</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing does not exist.</td> </tr> -<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing is not valid +<tr class="field-even field"><th class="field-name">Raises:</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing is not valid mailing type - ‘m’ for standard mailings, ‘t’ for test mailings and ‘r’ for trigger mailings.</td> </tr> @@ -852,9 +852,9 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing does not exist.</td> +<tr class="field-odd field"><th class="field-name">Raises:</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing does not exist.</td> </tr> -<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing is not valid +<tr class="field-even field"><th class="field-name">Raises:</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing is not valid mailing type - ‘m’ for standard mailings, ‘t’ for test mailings and ‘r’ for trigger mailings.</td> </tr> @@ -879,9 +879,9 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing does not exist.</td> +<tr class="field-odd field"><th class="field-name">Raises:</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing does not exist.</td> </tr> -<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing is not valid +<tr class="field-even field"><th class="field-name">Raises:</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing is not valid mailing type - ‘m’ for standard mailings, ‘t’ for test mailings and ‘r’ for trigger mailings.</td> </tr> @@ -907,9 +907,9 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing does not exist.</td> +<tr class="field-odd field"><th class="field-name">Raises:</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing does not exist.</td> </tr> -<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing is not valid +<tr class="field-even field"><th class="field-name">Raises:</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing is not valid mailing type - ‘m’ for standard mailings, ‘t’ for test mailings and ‘r’ for trigger mailings.</td> </tr> @@ -935,9 +935,9 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing does not exist.</td> +<tr class="field-odd field"><th class="field-name">Raises:</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing does not exist.</td> </tr> -<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing is not valid +<tr class="field-even field"><th class="field-name">Raises:</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing is not valid mailing type - ‘m’ for standard mailings, ‘t’ for test mailings and ‘r’ for trigger mailings.</td> </tr> @@ -963,9 +963,9 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing does not exist.</td> +<tr class="field-odd field"><th class="field-name">Raises:</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing does not exist.</td> </tr> -<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing is not valid</td> +<tr class="field-even field"><th class="field-name">Raises:</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing is not valid</td> </tr> </tbody> </table> From 6814971ccf357f99568b8957cc6f3e3bd082047f Mon Sep 17 00:00:00 2001 From: Brandon Wanamaker <brandon@huntgathergrow.me> Date: Wed, 8 Mar 2017 11:25:28 -0600 Subject: [PATCH 122/219] Adding automate_field_changes to Members endpoint --- api/external/members.html | 2 ++ 1 file changed, 2 insertions(+) diff --git a/api/external/members.html b/api/external/members.html index 7ce37ac..105badb 100644 --- a/api/external/members.html +++ b/api/external/members.html @@ -300,6 +300,8 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli <tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> <li><strong>deleted</strong> (<em>boolean</em>) – Accepts True or 1. Optional flag to include deleted members.</li> +<li><strong>automate_field_changes</strong> (<em>boolean</em>) – Accepts True. Optional. When set to `true`, updates made by this call will trigger +field change workflows when appropriate.</li> </ul> </td> </tr> From 0100ff823e4a2eeb589baf44803748308d1f0a04 Mon Sep 17 00:00:00 2001 From: Brandon Wanamaker <brandon@huntgathergrow.me> Date: Wed, 8 Mar 2017 11:27:36 -0600 Subject: [PATCH 123/219] Another update to Members endpoint --- api/external/members.html | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/api/external/members.html b/api/external/members.html index 105badb..2e46def 100644 --- a/api/external/members.html +++ b/api/external/members.html @@ -300,8 +300,9 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli <tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> <li><strong>deleted</strong> (<em>boolean</em>) – Accepts True or 1. Optional flag to include deleted members.</li> -<li><strong>automate_field_changes</strong> (<em>boolean</em>) – Accepts True. Optional. When set to `true`, updates made by this call will trigger -field change workflows when appropriate.</li> +<li><strong>automate_field_changes</strong> (<em>boolean</em>) – Accepts True. Optional. When set to True, updates made by this call will trigger +field change workflows when appropriate. For more information on field change automation, visit our +<a href="http://support.e2ma.net/Resource_Center/Guide_to_Automation/Trigger_events%3A_field_change">Resource Center.</a></li> </ul> </td> </tr> From c7532630f234a0c95fc2c8f1c83efb91b550b6a5 Mon Sep 17 00:00:00 2001 From: Brandon Wanamaker <brandon@huntgathergrow.me> Date: Wed, 8 Mar 2017 11:29:10 -0600 Subject: [PATCH 124/219] Correct incorrect placement --- api/external/members.html | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/api/external/members.html b/api/external/members.html index 2e46def..5d4bf6f 100644 --- a/api/external/members.html +++ b/api/external/members.html @@ -124,6 +124,11 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli <tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> <li><strong>deleted</strong> (<em>boolean</em>) – Accepts True or 1. Optional flag to include deleted members.</li> +<li><strong>deleted</strong> (<em>boolean</em>) – Accepts True or 1. Optional flag to include deleted +members.</li> +<li><strong>automate_field_changes</strong> (<em>boolean</em>) – Accepts True. Optional. When set to True, updates made by this call will trigger +field change workflows when appropriate. For more information on field change automation, visit our +<a href="http://support.e2ma.net/Resource_Center/Guide_to_Automation/Trigger_events%3A_field_change">Resource Center.</a></li> </ul> </td> </tr> @@ -298,11 +303,6 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli <col class="field-body" /> <tbody valign="top"> <tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> -<li><strong>deleted</strong> (<em>boolean</em>) – Accepts True or 1. Optional flag to include deleted -members.</li> -<li><strong>automate_field_changes</strong> (<em>boolean</em>) – Accepts True. Optional. When set to True, updates made by this call will trigger -field change workflows when appropriate. For more information on field change automation, visit our -<a href="http://support.e2ma.net/Resource_Center/Guide_to_Automation/Trigger_events%3A_field_change">Resource Center.</a></li> </ul> </td> </tr> From 10ce02cd8eff2b7755f2426e923b6e03f91d49b1 Mon Sep 17 00:00:00 2001 From: Brandon Wanamaker <brandon@huntgathergrow.me> Date: Wed, 8 Mar 2017 11:30:25 -0600 Subject: [PATCH 125/219] Changed too much last time. Correcting. --- api/external/members.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/api/external/members.html b/api/external/members.html index 5d4bf6f..bb37695 100644 --- a/api/external/members.html +++ b/api/external/members.html @@ -124,8 +124,6 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli <tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> <li><strong>deleted</strong> (<em>boolean</em>) – Accepts True or 1. Optional flag to include deleted members.</li> -<li><strong>deleted</strong> (<em>boolean</em>) – Accepts True or 1. Optional flag to include deleted -members.</li> <li><strong>automate_field_changes</strong> (<em>boolean</em>) – Accepts True. Optional. When set to True, updates made by this call will trigger field change workflows when appropriate. For more information on field change automation, visit our <a href="http://support.e2ma.net/Resource_Center/Guide_to_Automation/Trigger_events%3A_field_change">Resource Center.</a></li> @@ -303,6 +301,8 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli <col class="field-body" /> <tbody valign="top"> <tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> +<li><strong>deleted</strong> (<em>boolean</em>) – Accepts True or 1. Optional flag to include deleted +members.</li> </ul> </td> </tr> From 06af24b5247e663f9a2678a64162e2425739ff33 Mon Sep 17 00:00:00 2001 From: Brandon Wanamaker <brandon@huntgathergrow.me> Date: Wed, 8 Mar 2017 12:02:48 -0600 Subject: [PATCH 126/219] Info in wrong spot --- api/external/members.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/api/external/members.html b/api/external/members.html index bb37695..b2243a6 100644 --- a/api/external/members.html +++ b/api/external/members.html @@ -124,8 +124,6 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli <tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> <li><strong>deleted</strong> (<em>boolean</em>) – Accepts True or 1. Optional flag to include deleted members.</li> -<li><strong>automate_field_changes</strong> (<em>boolean</em>) – Accepts True. Optional. When set to True, updates made by this call will trigger -field change workflows when appropriate. For more information on field change automation, visit our <a href="http://support.e2ma.net/Resource_Center/Guide_to_Automation/Trigger_events%3A_field_change">Resource Center.</a></li> </ul> </td> @@ -420,6 +418,8 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli <tbody valign="top"> <tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first last simple"> <li><strong>members</strong> (<em>array</em>) – An array of members to update</li> +<li><strong>automate_field_changes</strong> (<em>boolean</em>) – Accepts True. Optional. When set to True, updates made by this call will trigger +field change workflows when appropriate. For more information on field change automation, visit our </ul> </td> </tr> From cc1bfcfc35f0de21ec3fe394701c4d74df879a93 Mon Sep 17 00:00:00 2001 From: Brandon Wanamaker <brandon@huntgathergrow.me> Date: Wed, 8 Mar 2017 12:04:49 -0600 Subject: [PATCH 127/219] Dumb mistake --- api/external/members.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/external/members.html b/api/external/members.html index b2243a6..16fff9f 100644 --- a/api/external/members.html +++ b/api/external/members.html @@ -124,7 +124,6 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli <tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> <li><strong>deleted</strong> (<em>boolean</em>) – Accepts True or 1. Optional flag to include deleted members.</li> -<a href="http://support.e2ma.net/Resource_Center/Guide_to_Automation/Trigger_events%3A_field_change">Resource Center.</a></li> </ul> </td> </tr> @@ -420,6 +419,7 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli <li><strong>members</strong> (<em>array</em>) – An array of members to update</li> <li><strong>automate_field_changes</strong> (<em>boolean</em>) – Accepts True. Optional. When set to True, updates made by this call will trigger field change workflows when appropriate. For more information on field change automation, visit our +<a href="http://support.e2ma.net/Resource_Center/Guide_to_Automation/Trigger_events%3A_field_change">Resource Center.</a></li> </ul> </td> </tr> From ea5b62d10c709adcd60653c32c28dac82bf078f6 Mon Sep 17 00:00:00 2001 From: Brandon Wanamaker <brandon@huntgathergrow.me> Date: Wed, 8 Mar 2017 13:42:43 -0600 Subject: [PATCH 128/219] Reformatting --- api/external/members.html | 30 ++++-------------------------- 1 file changed, 4 insertions(+), 26 deletions(-) diff --git a/api/external/members.html b/api/external/members.html index 16fff9f..c3e820b 100644 --- a/api/external/members.html +++ b/api/external/members.html @@ -416,35 +416,13 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli <col class="field-body" /> <tbody valign="top"> <tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first last simple"> -<li><strong>members</strong> (<em>array</em>) – An array of members to update</li> +<li><strong>members</strong> (<em>array</em>) – An array of members to update A member is a dictionary of member emails and field values to import. +The only required field is “email”. All other fields are treated as the name of a member field.</li> <li><strong>automate_field_changes</strong> (<em>boolean</em>) – Accepts True. Optional. When set to True, updates made by this call will trigger field change workflows when appropriate. For more information on field change automation, visit our <a href="http://support.e2ma.net/Resource_Center/Guide_to_Automation/Trigger_events%3A_field_change">Resource Center.</a></li> -</ul> -</td> -</tr> -</tbody> -</table> -<p>A member is a dictionary of member emails and field values to import. -The only required field is “email”. All other fields are treated as the -name of a member field.</p> -<table class="docutils field-list" frame="void" rules="none"> -<col class="field-name" /> -<col class="field-body" /> -<tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first last simple"> -<li><strong>source_filename</strong> (<em>string</em>) – An arbitrary string to associate with this import.</li> -</ul> -</td> -</tr> -</tbody> -</table> -<p>This should generally be set to the filename that the user uploaded.</p> -<table class="docutils field-list" frame="void" rules="none"> -<col class="field-name" /> -<col class="field-body" /> -<tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> +<li><strong>source_filename</strong> (<em>string</em>) – An arbitrary string to associate with this import. This should generally be set to the filename +that the user uploaded.</li> <li><strong>add_only</strong> (<em>boolean</em>) – Optional. Only add new members, ignore existing members.</li> <li><strong>group_ids</strong> (<em>array of integers</em>) – Optional. Add imported members to this list of groups.</li> </ul> From eb92ba180bf9e8e075ad647d71edb96404894e71 Mon Sep 17 00:00:00 2001 From: Brandon Wanamaker <brandon@huntgathergrow.me> Date: Wed, 8 Mar 2017 15:34:32 -0600 Subject: [PATCH 129/219] Updating paremeter for Members --- api/external/members.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/external/members.html b/api/external/members.html index c3e820b..12ddcf4 100644 --- a/api/external/members.html +++ b/api/external/members.html @@ -418,7 +418,7 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli <tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first last simple"> <li><strong>members</strong> (<em>array</em>) – An array of members to update A member is a dictionary of member emails and field values to import. The only required field is “email”. All other fields are treated as the name of a member field.</li> -<li><strong>automate_field_changes</strong> (<em>boolean</em>) – Accepts True. Optional. When set to True, updates made by this call will trigger +<li><strong>automate_field_changes</strong> (<em>boolean</em>) – Accepts True or False. Optional. When set to True, updates made by this call will trigger field change workflows when appropriate. For more information on field change automation, visit our <a href="http://support.e2ma.net/Resource_Center/Guide_to_Automation/Trigger_events%3A_field_change">Resource Center.</a></li> <li><strong>source_filename</strong> (<em>string</em>) – An arbitrary string to associate with this import. This should generally be set to the filename From 61918df623ec343d472a894a4be7dcf9a0fc00ac Mon Sep 17 00:00:00 2001 From: Brandon Wanamaker <bwanamaker@users.noreply.github.com> Date: Fri, 16 Jun 2017 16:44:50 -0500 Subject: [PATCH 130/219] Updating for unapproved status Adding the "unapproved" mailing status to the documentation. --- api/external/mailings.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/api/external/mailings.html b/api/external/mailings.html index dea4392..c5ba25b 100644 --- a/api/external/mailings.html +++ b/api/external/mailings.html @@ -122,7 +122,7 @@ <h1>Mailings<a class="headerlink" href="#mailings" title="Permalink to this head when none are specified.</li> <li><strong>mailing_statuses</strong> (<em>string</em>) – Accepts a comma-separated string with one or more of the following mailing statuses: ‘p’ (pending), ‘a’ (paused), -‘s’ (sending), ‘x’ (canceled), ‘c’ (complete), ‘f’ (failed). +‘s’ (sending), ‘x’ (canceled), ‘c’ (complete), ‘u’ (unapproved), ‘f’ (failed). Defaults to ‘p,a,s,x,c,f’, all statuses, when none are specified.</li> <li><strong>is_scheduled</strong> (<em>boolean</em>) – Mailings that have a scheduled timestamp.</li> <li><strong>with_html_body</strong> (<em>boolean</em>) – Include the html_body content.</li> @@ -846,4 +846,4 @@ <h3>Interested in Emma?</h3> </script>, Emma. </div> </body> -</html> \ No newline at end of file +</html> From a1f3ab8a21dc9d4e0d5c5196e5261a5545ca35d7 Mon Sep 17 00:00:00 2001 From: Brandon Wanamaker <bwanamaker@users.noreply.github.com> Date: Fri, 16 Jun 2017 16:46:04 -0500 Subject: [PATCH 131/219] Update missed doc --- api/external/mailings.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/external/mailings.html b/api/external/mailings.html index c5ba25b..7321064 100644 --- a/api/external/mailings.html +++ b/api/external/mailings.html @@ -123,7 +123,7 @@ <h1>Mailings<a class="headerlink" href="#mailings" title="Permalink to this head <li><strong>mailing_statuses</strong> (<em>string</em>) – Accepts a comma-separated string with one or more of the following mailing statuses: ‘p’ (pending), ‘a’ (paused), ‘s’ (sending), ‘x’ (canceled), ‘c’ (complete), ‘u’ (unapproved), ‘f’ (failed). -Defaults to ‘p,a,s,x,c,f’, all statuses, when none are specified.</li> +Defaults to ‘p,a,s,x,c,u,f’, all statuses, when none are specified.</li> <li><strong>is_scheduled</strong> (<em>boolean</em>) – Mailings that have a scheduled timestamp.</li> <li><strong>with_html_body</strong> (<em>boolean</em>) – Include the html_body content.</li> <li><strong>with_plaintext</strong> (<em>boolean</em>) – Include the plaintext content.</li> From e2111a7142b3705df5dc3bb025ff227ec49f6a7b Mon Sep 17 00:00:00 2001 From: Brandon Wanamaker <bwanamaker@users.noreply.github.com> Date: Wed, 23 Aug 2017 11:33:04 -0500 Subject: [PATCH 132/219] Update index.html Added info about TLS/SSL usage --- index.html | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/index.html b/index.html index 5356af1..d45dc8b 100644 --- a/index.html +++ b/index.html @@ -193,7 +193,8 @@ <h2>Quickstart<a class="headerlink" href="#quickstart" title="Permalink to this </div> <p>Please note that the <tt class="docutils literal"><span class="pre">group_ids</span></tt> hat you’re adding members to are passed as an array of integers. In addition, you’ll always want to make sure that you sanitize any of these form inputs to protect your application.</p> <p>Now we’ll need to set the URL for the API call. The endpoint for all of our API calls is -<a class="reference external" href="https://api.e2ma.net/">https://api.e2ma.net/</a>. In this case, we’re using the endpoint that corresponds to adding a single member. There’s a separate call for adding bulk members.</p> + <a class="reference external" href="https://api.e2ma.net/">https://api.e2ma.net/</a>. <b>NOTE:</b> You must use TLS version 1.1 or higher to connect. TLSv1 and all versions of SSL ciphers (e.g. SSLv2, SSLv3) are not supported.</br> +In this case, we’re using the endpoint that corresponds to adding a single member. There’s a separate call for adding bulk members.</p> <div class="highlight-php"><div class="highlight"><pre><span class="c1">// Set URL</span> <span class="nv">$url</span> <span class="o">=</span> <span class="s2">"https://api.e2ma.net/"</span><span class="o">.</span><span class="nv">$account_id</span><span class="o">.</span><span class="s2">"/members/add"</span><span class="p">;</span> </pre></div> @@ -208,6 +209,7 @@ <h2>Quickstart<a class="headerlink" href="#quickstart" title="Permalink to this </span><span class="hll"><span class="nb">curl_setopt</span><span class="p">(</span><span class="nv">$ch</span><span class="p">,</span> <span class="nx">CURLOPT_HTTPHEADER</span><span class="p">,</span> <span class="k">array</span><span class="p">(</span><span class="s1">'Content-type: application/json'</span><span class="p">));</span> </span><span class="nb">curl_setopt</span><span class="p">(</span><span class="nv">$ch</span><span class="p">,</span> <span class="nx">CURLOPT_RETURNTRANSFER</span><span class="p">,</span> <span class="k">true</span><span class="p">);</span> <span class="nb">curl_setopt</span><span class="p">(</span><span class="nv">$ch</span><span class="p">,</span> <span class="nx">CURLOPT_SSL_VERIFYPEER</span><span class="p">,</span> <span class="k">false</span><span class="p">);</span> +<span class="nb">curl_setopt</span><span class="p">(</span><span class="nv">$ch</span><span class="p">,</span> <span class="nx">CURLOPT_SSLVERSION</span><span class="p">,</span> <span class="k">6</span><span class="p">);</span> <span class="nv">$head</span> <span class="o">=</span> <span class="nb">curl_exec</span><span class="p">(</span><span class="nv">$ch</span><span class="p">);</span> <span class="nv">$http_code</span> <span class="o">=</span> <span class="nb">curl_getinfo</span><span class="p">(</span><span class="nv">$ch</span><span class="p">,</span> <span class="nx">CURLINFO_HTTP_CODE</span><span class="p">);</span> <span class="nb">curl_close</span><span class="p">(</span><span class="nv">$ch</span><span class="p">);</span> From 4b1a349aee87ae686649b02fe33a6f65bb050d45 Mon Sep 17 00:00:00 2001 From: Brandon Wanamaker <bwanamaker@users.noreply.github.com> Date: Thu, 14 Sep 2017 13:22:11 -0500 Subject: [PATCH 133/219] Update POST URL --- api/external/event_api.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/external/event_api.html b/api/external/event_api.html index e5b6f06..b19130b 100644 --- a/api/external/event_api.html +++ b/api/external/event_api.html @@ -108,7 +108,7 @@ <h2>Access to the Event API is available only to Emma Plus, Premium and Enterpr <p>You can post events to Emma using the endpoint below. Workflows that are triggered by events shared to this endpoint can be configured in the Automation <a href="https://support.e2ma.net/Resource_Center/Guide_to_Automation/Trigger_events%3A_custom_API_event">workflow builder</a>. For more information about the event API and its capabilities, visit our <a href="https://support.e2ma.net/Resource_Center/Account_how-to/Event_API">Resource Center</a>.</p> <dl class="post"> <dt id="post--#events"> - <tt class="descname">POST </tt><tt class="descname">/#account_id/events</tt><a class="headerlink" href="#post--#events" title="Permalink to this definition">¶</a></dt> + <tt class="descname">POST </tt><tt class="descname">https://events.e2ma.net/v1/#account_id/events</tt><a class="headerlink" href="#post--#events" title="Permalink to this definition">¶</a></dt> <dd><p>This endpoint allows you to post any type of valid JSON to Emma. In order for an event to power an automated workflow, the following conditions must be met: <li>Must include a valid email address as a value with a key of "email"</li> <li>Email address must belong to a contact who is currently in “Active” status within your audience</li> From 944b48475bb4ee90c39b6d3dfdabfadbfa4f66f2 Mon Sep 17 00:00:00 2001 From: Brandon Wanamaker <bwanamaker@users.noreply.github.com> Date: Thu, 14 Sep 2017 14:00:51 -0500 Subject: [PATCH 134/219] Update event_api.html --- api/external/event_api.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/external/event_api.html b/api/external/event_api.html index b19130b..b261974 100644 --- a/api/external/event_api.html +++ b/api/external/event_api.html @@ -148,7 +148,7 @@ <h2>Access to the Event API is available only to Emma Plus, Premium and Enterpr <span style="font-weight:bold;">Sample Request</span> <a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> <pre class="response"> -<b>POST /100/events</b> +<b>POST /events.e2ma.net/v1/100/events/</b> { “event_name”: “order-completed” From 9f7c2982c5d2d59893227456091dad525ab1c94e Mon Sep 17 00:00:00 2001 From: Travis Hathaway <thathaway@myemma.com> Date: Wed, 29 Nov 2017 13:21:04 -0800 Subject: [PATCH 135/219] Adding revision to quickstart guide This revision improves the section that informs users on how to generate their API keys. I have made sure to include instructions for regular and agency accounts. I have also removed the screenshot because it is out of date due to our our new settings page. --- index.html | 20 ++++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index d45dc8b..68c5998 100644 --- a/index.html +++ b/index.html @@ -164,8 +164,24 @@ <h2>API wrappers<a class="headerlink" href="#api-wrappers" title="Permalink to t <div class="section" id="quickstart"> <h2>Quickstart<a class="headerlink" href="#quickstart" title="Permalink to this headline">¶</a></h2> <p>Let’s get started by building some PHP code that will add a member to our audience.</p> -First, you’ll want to figure out how to authenticate (all calls require HTTP Basic Auth authentication). You’ll find your API keys inside your Emma account in the “Account Settings” section. There’s a public key, a private key and an account ID. It should look like this: -<div class="api_key_img"><img alt="Emma Billing & Settings API Key" src="_images/api_key.png" /></div> + +<p> + Before you do this, you will need a valid set of API keys. If you have a <b>regular account</b> you can + generate your API keys using these steps: +</p> +<ol> + <li>Go to account settings</li> + <li>Find the "API Key" tab</li> + <li>Click "Generate API Key"</li> +</ol> + +<p>If your account is part of an <b>agency account</b>, you will need to follow these steps instead:</p> +<ol> + <li>Go to "Menu" and select "Accounts"</li> + <li>Click the downward-pointing arrow to the right of the account you need a key for and select its settings</li> + <li>Scroll to the API key section to generate the key</li> +</ol> + <p>Next, let’s add these authentication bits to our code.</p> <div class="highlight-php"><div class="highlight"><pre><span class="c1">// Authentication Variables</span> <span class="nv">$account_id</span> <span class="o">=</span> <span class="s2">"xxx"</span><span class="p">;</span> From c208f639408e92a3fabc75f414977cac167f342a Mon Sep 17 00:00:00 2001 From: Travis Hathaway <thathaway@myemma.com> Date: Thu, 8 Feb 2018 09:17:07 -0800 Subject: [PATCH 136/219] Adding new resource to documentation This commit adds the "Automation" resource to the Public API documentation. --- .gitignore | 4 + api/external/automation.html | 246 +++++++++++++++++++++++++++++++++++ 2 files changed, 250 insertions(+) create mode 100644 api/external/automation.html diff --git a/.gitignore b/.gitignore index 5205c50..196c70e 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,7 @@ .DS_Store .buildinfo .idea + +*.swp +*.swo + diff --git a/api/external/automation.html b/api/external/automation.html new file mode 100644 index 0000000..a98ec3f --- /dev/null +++ b/api/external/automation.html @@ -0,0 +1,246 @@ +<!doctype html> + + +<html xmlns="http://www.w3.org/1999/xhtml"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> + + <title>Emma API Documentation | Emma, Inc.</title> + + + <link rel="stylesheet" href="../../_static/emma.css" type="text/css" /> + <link rel="stylesheet" href="../../_static/pygments.css" type="text/css" /> + + <script type="text/javascript"> + var DOCUMENTATION_OPTIONS = { + URL_ROOT: '../../', + VERSION: '0.1', + COLLAPSE_INDEX: false, + FILE_SUFFIX: '.html', + HAS_SOURCE: true + }; + </script> + + <script src="http://code.jquery.com/jquery-1.4.min.js"></script> + <script>window.jQuery || document.write('<script src="_static/jquery.js"><\/script>')</script> + + <script type="text/javascript" src="//use.typekit.net/zfm0nfo.js"></script> + <script type="text/javascript">try{Typekit.load();}catch(e){}</script> + <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="Groups" href="groups.html" /> + <link rel="prev" title="Emma API" href="../../index.html" /> + <link rel="icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> + <link rel="shortcut icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> + <link rel="apple-touch-icon-precomposed" href="http://myemma.com/static/global/favicons/apple-iphone.png" /> + <link rel="apple-touch-icon-precomposed" sizes="72x72" href="http://myemma.com/static/global/favicons/apple-ipad.png" /> + <link rel="apple-touch-icon-precomposed" sizes="114x114" href="http://myemma.com/static/global/favicons/apple-iphone-2x.png" /> + <link rel="apple-touch-icon-precomposed" sizes="144x144" href="http://myemma.com/static/global/favicons/apple-ipad-2x.png" /> + + <style type="text/css"> + .resp-trigger, .resp-trigger:hover {font-size:10pt;text-decoration:none;} + div.sample-response.hide-response pre.response {display: none;} + div.sample-response .tshow, + div.sample-response.hide-response .thide {display: none;} + div.sample-response .thide, + div.sample-response.hide-response .tshow {display: inline;} + </style> + <script> + $().ready(function() { + $("a.resp-trigger").click(function(e) { + e.preventDefault(); + $(this).parents("div.sample-response").toggleClass("hide-response"); + }); + }); + </script> + + <script type="text/javascript"> + + var _gaq = _gaq || []; + _gaq.push(['_setAccount', 'UA-512410-18']); + _gaq.push(['_trackPageview']); + + (function() { + var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; + ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; + var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); + })(); + + </script> + + </head> + <body> + <header role="banner"> + <a href="/index.html"> + <h1>Emma API Documentation</h1> + </a> + </header> + <div class="related"> + <h3>Navigation</h3> + <ul> + <li class="right" style="margin-right: 10px"> + <a href="../../genindex.html" title="General Index" + accesskey="I">index</a></li> + <li class="right" > + <a href="../../http-routingtable.html" title="HTTP Routing Table" + >routing table</a> |</li> + <li class="right" > + <a href="groups.html" title="Groups" + accesskey="N">next</a> |</li> + <li class="right" > + <a href="../../index.html" title="Emma API" + accesskey="P">previous</a> |</li> + <li><a href="../../index.html">audience 0.1 documentation</a> »</li> + </ul> + </div> + + <div class="document"> + <div class="documentwrapper"> + <div class="bodywrapper"> + <div class="body"> + + <div class="section" id="fields"> + <h1>Automation<a class="headerlink" href="#fields" title="Permalink to this headline">¶</a></h1> + <p> + These endpoints allow you access to information about workflows in Emma. + </p> + <dl class="get"> + <dt id="get--#account_id-fields"> + <tt class="descname">GET </tt><tt class="descname">/#account_id/automation/workflows</tt> + <a class="headerlink" href="#get--#account_id-fields" title="Permalink to this definition">¶</a> + </dt> + <dd> + <p>Gets a list of this account’s automation workflows.</p> + <table class="docutils field-list" frame="void" rules="none"> + <col class="field-name" /> + <col class="field-body" /> + <tbody valign="top"> + <tr class="field-odd field"> + </tr> + <tr class="field-even field"> + <th class="field-name">Returns :</th> + <td class="field-body"> + <p class="first last">A list of automation workflows in the given account.</p> + </td> + </tr> + </tbody> + </table> + <p> + <div class="sample-response hide-response"> + <span style="font-weight:bold;">Sample Response</span> + <a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> + <pre class="response"> +<b>GET /100/automation/workflows</b> +[ + { + "workflow_id": "596ee017-abf9-4884-bb43-79724422de25", + "name": "Test Workflow", + "status": "active", + "updated_at": "2017-10-30 23:31:49.661228", + "created_at": "2017-10-30 23:30:42.067754" + } +] + </pre> + </div> + </p> + </dd> + </dl> + + <dl class="get"> + <dt id="get--#account_id-fields"> + <tt class="descname">GET </tt><tt class="descname">/#account_id/automation/workflows/counts</tt> + <a class="headerlink" href="#get--#account_id-fields" title="Permalink to this definition">¶</a> + </dt> + <dd> + <p>Gets the counts of workflows for this account by workflow state.</p> + <table class="docutils field-list" frame="void" rules="none"> + <col class="field-name" /> + <col class="field-body" /> + <tbody valign="top"> + <tr class="field-odd field"> + </tr> + <tr class="field-even field"> + <th class="field-name">Returns :</th> + <td class="field-body"> + <p class="first last"> + Returns counts for the workflow by state ("active", "inactive" and "draft"). + </p> + </td> + </tr> + </tbody> + </table> + <p> + <div class="sample-response hide-response"> + <span style="font-weight:bold;">Sample Response</span> + <a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> + <pre class="response"> +<b>GET /100/automation/workflows/count</b> +{ + "account_id": "100", + "draft": 3, + "active": 12, + "inactive": 9 +} + </pre> + </div> + </p> + </dd> + </dl> + </div> + + + </div> + </div> + </div> + <div class="sphinxsidebar"> + <div class="sphinxsidebarwrapper"><h3>Related Topics</h3> +<ul> + <li><a href="../../index.html">Documentation overview</a><ul> + <li>Previous: <a href="../../index.html" title="previous chapter">Emma API</a></li> + <li>Next: <a href="groups.html" title="next chapter">Groups</a></li> + </ul></li> +</ul> +<div id="searchbox" style="display: none"> + <h3>Quick search</h3> + <form class="search" action="../../search.html" method="get"> + <input type="text" name="q" /> + <input type="submit" value="Go" /> + <input type="hidden" name="check_keywords" value="yes" /> + <input type="hidden" name="area" value="default" /> + </form> + <p class="searchtip" style="font-size: 90%"> + Enter search terms or a module, class or function name. + </p> +</div> +<script type="text/javascript">$('#searchbox').show(0);</script> +<div id="emma-links"> + <h3>Emma Links</h3> + <ul> + <li><a href="http://myemma.com" title="Visit Emma's homepage" target="_blank">Emma Home</a></li> + + <li><a href="http://myemma.com/blog" title="Visit the Emma Blog" target="_blank">Emma Blog</a></li> + <li><a href="http://myemma.com/help" title="Visit Emma's help guide" target="_blank">Emma Help</a></li> + </ul> +</div> + +<div id="inquiry"> + <h3>Interested in Emma?</h3> + <p>Emma's email marketing makes communicating simple and stylish. <a href="http://myemma.com/get-started/inquire" title="Get started today.">Get started today</a>.</p> +</div> + </div> + </div> + <div class="clearer"></div> + </div> + <div class="footer"> + © Copyright 2003-<script language="JavaScript" type="text/javascript"> + now = new Date + theYear=now.getYear() + if (theYear < 1900) + theYear=theYear+1900 + document.write(theYear) + </script>, Emma. + </div> + </body> +</html> + From cee6188cac4c3266832f86cc7188875f16bb791a Mon Sep 17 00:00:00 2001 From: Travis Hathaway <thathaway@myemma.com> Date: Thu, 8 Feb 2018 11:38:17 -0800 Subject: [PATCH 137/219] adding another API endpoint --- api/external/automation.html | 51 ++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) diff --git a/api/external/automation.html b/api/external/automation.html index a98ec3f..c4dd606 100644 --- a/api/external/automation.html +++ b/api/external/automation.html @@ -147,6 +147,57 @@ <h1>Automation<a class="headerlink" href="#fields" title="Permalink to this head </dd> </dl> + <dl class="get"> + <dt id="get--#account_id-fields"> + <tt class="descname">GET </tt><tt class="descname">/#account_id/automation/workflows/#workflow_id</tt> + <a class="headerlink" href="#get--#account_id-fields" title="Permalink to this definition">¶</a> + </dt> + <dd> + <p>Gets detailed information about a single workflow.</p> + <table class="docutils field-list" frame="void" rules="none"> + <col class="field-name" /> + <col class="field-body" /> + <tbody valign="top"> + <tr class="field-odd field"> + </tr> + <tr class="field-even field"> + <th class="field-name">Returns :</th> + <td class="field-body"> + <p class="first last"> + A single workflow if one exists + </p> + </td> + </tr> + <tr class="field-even field"> + <th class="field-name">Raises :</th> + <td class="field-body"> + <p class="first last"> + <tt class="docutils literal"><span class="pre">Http404</span></tt> + if no workflow is found. + </p> + </td> + </tr> + </tbody> + </table> + <p> + <div class="sample-response hide-response"> + <span style="font-weight:bold;">Sample Response</span> + <a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> + <pre class="response"> +<b>GET /100/automation/workflows/596ee017-abf9-4884-bb43-79724422de25</b> +{ + "workflow_id": "596ee017-abf9-4884-bb43-79724422de25", + "name": "Test", + "status": "inactive", + "updated_at": "2017-10-30 23:31:49.661228", + "created_at": "2017-10-30 23:30:42.067754" +} + </pre> + </div> + </p> + </dd> + </dl> + <dl class="get"> <dt id="get--#account_id-fields"> <tt class="descname">GET </tt><tt class="descname">/#account_id/automation/workflows/counts</tt> From 452389b85d667d80b12200ffbc6f8a225c1322d7 Mon Sep 17 00:00:00 2001 From: Travis Hathaway <thathaway@myemma.com> Date: Thu, 8 Feb 2018 12:33:17 -0800 Subject: [PATCH 138/219] change the counts endpoint --- api/external/automation.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/external/automation.html b/api/external/automation.html index c4dd606..203a94e 100644 --- a/api/external/automation.html +++ b/api/external/automation.html @@ -200,7 +200,7 @@ <h1>Automation<a class="headerlink" href="#fields" title="Permalink to this head <dl class="get"> <dt id="get--#account_id-fields"> - <tt class="descname">GET </tt><tt class="descname">/#account_id/automation/workflows/counts</tt> + <tt class="descname">GET </tt><tt class="descname">/#account_id/automation/counts</tt> <a class="headerlink" href="#get--#account_id-fields" title="Permalink to this definition">¶</a> </dt> <dd> From e75e42ad12d9f7d8cc5bf670372828cd1089f873 Mon Sep 17 00:00:00 2001 From: Travis Hathaway <thathaway@myemma.com> Date: Thu, 8 Feb 2018 12:47:17 -0800 Subject: [PATCH 139/219] adding missing menu item --- index.html | 1 + 1 file changed, 1 insertion(+) diff --git a/index.html b/index.html index d45dc8b..b8ac30b 100644 --- a/index.html +++ b/index.html @@ -250,6 +250,7 @@ <h2>API calls by category<a class="headerlink" href="#api-calls-by-category" tit <li class="toctree-l1"><a class="reference internal" href="api/external/signup_forms.html">Signup Forms</a></li> <!-- <li class="toctree-l1"><a class="reference internal" href="api/external/triggers.html">Triggers</a></li> --> <li class="toctree-l1"><a class="reference internal" href="api/external/webhooks.html">Webhooks</a></li> +<li class="toctree-l1"><a class="reference internal" href="api/external/automation.html">Automation</a></li> </ul> </div> </div> From cbc08e69e4239d43bc20c87f89f3ddeb3a82e961 Mon Sep 17 00:00:00 2001 From: Travis Hathaway <thathaway@myemma.com> Date: Thu, 12 Apr 2018 16:02:37 -0700 Subject: [PATCH 140/219] adding a new parameter to member endpoints --- api/external/members.html | 2 ++ 1 file changed, 2 insertions(+) diff --git a/api/external/members.html b/api/external/members.html index 12ddcf4..3085e53 100644 --- a/api/external/members.html +++ b/api/external/members.html @@ -478,6 +478,7 @@ <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>accepts_tracking</strong> (<em>boolean</em>) – Optional. Whether or not the user accepts tracking and analysis.</li> </ul> </td> </tr> @@ -547,6 +548,7 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli [opt_out_url].</li> <li><strong>field_triggers</strong> (<em>boolean</em>) – Optional. Fires related field change autoresponders when set to <em>true</em>.</li> <li><strong>opt_in_confirmation</strong> (<em>boolean</em>) – Optional. Sends the default plaintext confirmation email when set to <em>true</em>. NOTE: Confirmation email will be sent by default if this parameter is left out. </li> +<li><strong>accepts_tracking</strong> (<em>boolean</em>) – Optional. Whether or not the user accepts tracking and analysis. </li> </td> </ul> </tr> From a2616133e30fe4909ac5cb2a2f9da88395f39e70 Mon Sep 17 00:00:00 2001 From: Travis Hathaway <thathaway@myemma.com> Date: Fri, 13 Apr 2018 15:51:05 -0700 Subject: [PATCH 141/219] adds new param to the PUT method for udpating a member --- api/external/members.html | 1 + 1 file changed, 1 insertion(+) diff --git a/api/external/members.html b/api/external/members.html index 3085e53..2d14cfc 100644 --- a/api/external/members.html +++ b/api/external/members.html @@ -682,6 +682,7 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli <li><strong>fields</strong> (<em>array</em>) – An array of fields with associated values for this member.</li> <li><strong>field_triggers</strong> (<em>boolean</em>) – Optional. Fires related field change autoresponders when set to <em>true</em>.</li> +<li><strong>accepts_tracking</strong> (<em>boolean</em>) – Optional. Whether or not the user accepts tracking and analysis. </li> </ul> </td> </tr> From d15b88fcd24806d679e118538bf12df22ad1a63d Mon Sep 17 00:00:00 2001 From: Travis Hathaway <travis.j.hathaway@gmail.com> Date: Mon, 23 Apr 2018 14:08:27 -0700 Subject: [PATCH 142/219] Update members.html --- api/external/members.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/api/external/members.html b/api/external/members.html index 2d14cfc..3c4e689 100644 --- a/api/external/members.html +++ b/api/external/members.html @@ -478,7 +478,7 @@ <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>accepts_tracking</strong> (<em>boolean</em>) – Optional. Whether or not the user accepts tracking and analysis.</li> +<li><strong>subscriber_consent_tracking</strong> (<em>boolean</em>) – Optional. Whether or not the user accepts tracking and analysis.</li> </ul> </td> </tr> @@ -548,7 +548,7 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli [opt_out_url].</li> <li><strong>field_triggers</strong> (<em>boolean</em>) – Optional. Fires related field change autoresponders when set to <em>true</em>.</li> <li><strong>opt_in_confirmation</strong> (<em>boolean</em>) – Optional. Sends the default plaintext confirmation email when set to <em>true</em>. NOTE: Confirmation email will be sent by default if this parameter is left out. </li> -<li><strong>accepts_tracking</strong> (<em>boolean</em>) – Optional. Whether or not the user accepts tracking and analysis. </li> +<li><strong>subscriber_consent_tracking</strong> (<em>boolean</em>) – Optional. Whether or not the user accepts tracking and analysis. </li> </td> </ul> </tr> @@ -682,7 +682,7 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli <li><strong>fields</strong> (<em>array</em>) – An array of fields with associated values for this member.</li> <li><strong>field_triggers</strong> (<em>boolean</em>) – Optional. Fires related field change autoresponders when set to <em>true</em>.</li> -<li><strong>accepts_tracking</strong> (<em>boolean</em>) – Optional. Whether or not the user accepts tracking and analysis. </li> +<li><strong>subscriber_consent_tracking</strong> (<em>boolean</em>) – Optional. Whether or not the user accepts tracking and analysis. </li> </ul> </td> </tr> From cdaefd816e0d9f0620d6531ae6c1d3c944ae75cc Mon Sep 17 00:00:00 2001 From: Travis Hathaway <thathaway@myemma.com> Date: Thu, 21 Jun 2018 15:10:15 -0700 Subject: [PATCH 143/219] updating logo, text --- _static/img/logo.png | Bin 7296 -> 10110 bytes api/external/automation.html | 2 +- api/external/event_api.html | 2 +- api/external/fields.html | 2 +- api/external/groups.html | 2 +- api/external/mailings.html | 2 +- api/external/members.html | 2 +- api/external/response.html | 2 +- api/external/searches.html | 2 +- api/external/triggers.html | 2 +- api/external/webhooks.html | 2 +- genindex.html | 2 +- http-routingtable.html | 2 +- index.html | 2 +- member_search.html | 2 +- pagination.html | 2 +- php_get_member_example.html | 2 +- php_signup_example.html | 2 +- placeholders.html | 2 +- search.html | 2 +- webhooks.html | 2 +- 21 files changed, 20 insertions(+), 20 deletions(-) diff --git a/_static/img/logo.png b/_static/img/logo.png index d8cd3a183c381a1412a2412329a648b1e7407d5c..5f891acbb7f0d42894acd815ec97d87442a2cda3 100644 GIT binary patch literal 10110 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 literal 7296 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 diff --git a/api/external/automation.html b/api/external/automation.html index 203a94e..461e087 100644 --- a/api/external/automation.html +++ b/api/external/automation.html @@ -290,7 +290,7 @@ <h3>Interested in Emma?</h3> if (theYear < 1900) theYear=theYear+1900 document.write(theYear) - </script>, Emma. + </script>, Campaign Monitor </div> </body> </html> diff --git a/api/external/event_api.html b/api/external/event_api.html index b261974..b449d14 100644 --- a/api/external/event_api.html +++ b/api/external/event_api.html @@ -292,7 +292,7 @@ <h3>Interested in Emma?</h3> if (theYear < 1900) theYear=theYear+1900 document.write(theYear) -</script>, Emma. +</script>, Campaign Monitor </div> </body> </html> diff --git a/api/external/fields.html b/api/external/fields.html index 88a4018..98eece7 100644 --- a/api/external/fields.html +++ b/api/external/fields.html @@ -419,7 +419,7 @@ <h3>Interested in Emma?</h3> if (theYear < 1900) theYear=theYear+1900 document.write(theYear) - </script>, Emma. + </script>, Campaign Monitor </div> </body> </html> \ No newline at end of file diff --git a/api/external/groups.html b/api/external/groups.html index fbe420b..af8879f 100644 --- a/api/external/groups.html +++ b/api/external/groups.html @@ -702,7 +702,7 @@ <h3>Interested in Emma?</h3> if (theYear < 1900) theYear=theYear+1900 document.write(theYear) - </script>, Emma. + </script>, Campaign Monitor </div> </body> </html> \ No newline at end of file diff --git a/api/external/mailings.html b/api/external/mailings.html index 7321064..5fdb92f 100644 --- a/api/external/mailings.html +++ b/api/external/mailings.html @@ -843,7 +843,7 @@ <h3>Interested in Emma?</h3> if (theYear < 1900) theYear=theYear+1900 document.write(theYear) - </script>, Emma. + </script>, Campaign Monitor </div> </body> </html> diff --git a/api/external/members.html b/api/external/members.html index 3c4e689..81736ff 100644 --- a/api/external/members.html +++ b/api/external/members.html @@ -1266,7 +1266,7 @@ <h3>Interested in Emma?</h3> if (theYear < 1900) theYear=theYear+1900 document.write(theYear) - </script>, Emma. + </script>, Campaign Monitor </div> </body> </html> diff --git a/api/external/response.html b/api/external/response.html index 5c5e6be..b072a31 100644 --- a/api/external/response.html +++ b/api/external/response.html @@ -1023,7 +1023,7 @@ <h3>Interested in Emma?</h3> if (theYear < 1900) theYear=theYear+1900 document.write(theYear) - </script>, Emma. + </script>, Campaign Monitor </div> </body> </html> diff --git a/api/external/searches.html b/api/external/searches.html index fddaaa0..5a5177f 100644 --- a/api/external/searches.html +++ b/api/external/searches.html @@ -518,7 +518,7 @@ <h3>Interested in Emma?</h3> if (theYear < 1900) theYear=theYear+1900 document.write(theYear) - </script>, Emma. + </script>, Campaign Monitor </div> </body> </html> \ No newline at end of file diff --git a/api/external/triggers.html b/api/external/triggers.html index 446398c..ea07323 100644 --- a/api/external/triggers.html +++ b/api/external/triggers.html @@ -469,7 +469,7 @@ <h3>Interested in Emma?</h3> if (theYear < 1900) theYear=theYear+1900 document.write(theYear) - </script>, Emma. + </script>, Campaign Monitor </div> </body> </html> diff --git a/api/external/webhooks.html b/api/external/webhooks.html index 06cb5bd..e7d22bf 100644 --- a/api/external/webhooks.html +++ b/api/external/webhooks.html @@ -491,7 +491,7 @@ <h3>Interested in Emma?</h3> if (theYear < 1900) theYear=theYear+1900 document.write(theYear) - </script>, Emma. + </script>, Campaign Monitor </div> </body> </html> \ No newline at end of file diff --git a/genindex.html b/genindex.html index bbc4d50..9a71740 100644 --- a/genindex.html +++ b/genindex.html @@ -149,7 +149,7 @@ <h3>Interested in Emma?</h3> if (theYear < 1900) theYear=theYear+1900 document.write(theYear) - </script>, Emma. + </script>, Campaign Monitor </div> </body> </html> \ No newline at end of file diff --git a/http-routingtable.html b/http-routingtable.html index d58fec8..c445241 100644 --- a/http-routingtable.html +++ b/http-routingtable.html @@ -626,7 +626,7 @@ <h3>Interested in Emma?</h3> if (theYear < 1900) theYear=theYear+1900 document.write(theYear) - </script>, Emma. + </script>, Campaign Monitor </div> </body> </html> \ No newline at end of file diff --git a/index.html b/index.html index fbf7546..79f9f7e 100644 --- a/index.html +++ b/index.html @@ -375,7 +375,7 @@ <h3>Interested in Emma?</h3> if (theYear < 1900) theYear=theYear+1900 document.write(theYear) - </script>, Emma. + </script>, Campaign Monitor </div> </body> </html> diff --git a/member_search.html b/member_search.html index f13cfc7..8ca36c0 100644 --- a/member_search.html +++ b/member_search.html @@ -260,7 +260,7 @@ <h3>Interested in Emma?</h3> if (theYear < 1900) theYear=theYear+1900 document.write(theYear) - </script>, Emma. + </script>, Campaign Monitor </div> </body> </html> \ No newline at end of file diff --git a/pagination.html b/pagination.html index 1323471..1914ae4 100644 --- a/pagination.html +++ b/pagination.html @@ -172,7 +172,7 @@ <h3>Interested in Emma?</h3> if (theYear < 1900) theYear=theYear+1900 document.write(theYear) - </script>, Emma. + </script>, Campaign Monitor </div> </body> </html> \ No newline at end of file diff --git a/php_get_member_example.html b/php_get_member_example.html index 3efa3e3..842daa9 100644 --- a/php_get_member_example.html +++ b/php_get_member_example.html @@ -187,7 +187,7 @@ <h3>Interested in Emma?</h3> if (theYear < 1900) theYear=theYear+1900 document.write(theYear) - </script>, Emma. + </script>, Campaign Monitor </div> </body> </html> \ No newline at end of file diff --git a/php_signup_example.html b/php_signup_example.html index 30a83a7..16b8d0f 100644 --- a/php_signup_example.html +++ b/php_signup_example.html @@ -209,7 +209,7 @@ <h3>Interested in Emma?</h3> if (theYear < 1900) theYear=theYear+1900 document.write(theYear) - </script>, Emma. + </script>, Campaign Monitor </div> </body> </html> \ No newline at end of file diff --git a/placeholders.html b/placeholders.html index d5c746c..29c10dc 100644 --- a/placeholders.html +++ b/placeholders.html @@ -187,7 +187,7 @@ <h3>Interested in Emma?</h3> if (theYear < 1900) theYear=theYear+1900 document.write(theYear) - </script>, Emma. + </script>, Campaign Monitor </div> </body> </html> \ No newline at end of file diff --git a/search.html b/search.html index 273924d..e80fa13 100644 --- a/search.html +++ b/search.html @@ -159,7 +159,7 @@ <h3>Interested in Emma?</h3> if (theYear < 1900) theYear=theYear+1900 document.write(theYear) - </script>, Emma. + </script>, Campaign Monitor </div> </body> </html> \ No newline at end of file diff --git a/webhooks.html b/webhooks.html index e34fd75..70cfe0f 100644 --- a/webhooks.html +++ b/webhooks.html @@ -511,7 +511,7 @@ <h3>Interested in Emma?</h3> if (theYear < 1900) theYear=theYear+1900 document.write(theYear) - </script>, Emma. + </script>, Campaign Monitor </div> </body> </html> \ No newline at end of file From 074bc00a16d7abb7b0c96702a730e17ba81b210e Mon Sep 17 00:00:00 2001 From: Travis Hathaway <thathaway@myemma.com> Date: Thu, 21 Jun 2018 15:12:16 -0700 Subject: [PATCH 144/219] adding css rule --- _static/emma.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/_static/emma.css b/_static/emma.css index a7c2d0a..dad2748 100644 --- a/_static/emma.css +++ b/_static/emma.css @@ -494,7 +494,7 @@ pre { background:#fff; z-index:3; -webkit-border-radius:0; -moz-border-radius:0; /*Header - Main*/ header[role="banner"] { height:140px; max-width:940px; margin:16px auto 0; } -header[role="banner"] h1 { width:342px; height:86px; margin:0; background:url(img/logo.png) no-repeat; text-indent:-9999px; } +header[role="banner"] h1 { width:342px; height:86px; margin:0; background:url(img/logo.png) no-repeat; text-indent:-9999px; background-size: 100%; } /*Page*/ div.api_key_img { overflow: hidden; height:300px; } @@ -524,4 +524,4 @@ div.body { position:relative; padding:0 30px 30px; z-index:3; } div.body .section { margin-top:24px; } div.body .section:first-child { margin-top:0; } div.body h2 { margin-top:24px; margin-bottom:12px; font-family:"proxima-nova","Helvetica",Arial,sans-serif; font-weight:bold; font-size:20px; color:#666; } -div.body p, div.body dd, div.body li { line-height: 140%; } \ No newline at end of file +div.body p, div.body dd, div.body li { line-height: 140%; } From f514328f9963f687426444738fdf7ba1714501d9 Mon Sep 17 00:00:00 2001 From: Cale Mooth <cale@midnightcheese.com> Date: Mon, 2 Jul 2018 16:54:18 -0500 Subject: [PATCH 145/219] Reduce logo size. --- _static/emma.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_static/emma.css b/_static/emma.css index dad2748..4bc60c2 100644 --- a/_static/emma.css +++ b/_static/emma.css @@ -494,7 +494,7 @@ pre { background:#fff; z-index:3; -webkit-border-radius:0; -moz-border-radius:0; /*Header - Main*/ header[role="banner"] { height:140px; max-width:940px; margin:16px auto 0; } -header[role="banner"] h1 { width:342px; height:86px; margin:0; background:url(img/logo.png) no-repeat; text-indent:-9999px; background-size: 100%; } +header[role="banner"] h1 { width:342px; height:86px; margin:40px 0 0 0; background:url(img/logo.png) no-repeat; text-indent:-9999px; background-size: 50%; } /*Page*/ div.api_key_img { overflow: hidden; height:300px; } From 650af41a13af0eff22966226fd61e9310845164b Mon Sep 17 00:00:00 2001 From: Trey Piepmeier <trey@myemma.com> Date: Thu, 20 Sep 2018 15:21:35 -0400 Subject: [PATCH 146/219] [CAMP-2684] Whitespace. --- api/external/automation.html | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/api/external/automation.html b/api/external/automation.html index 461e087..2b67375 100644 --- a/api/external/automation.html +++ b/api/external/automation.html @@ -4,13 +4,13 @@ <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> - + <title>Emma API Documentation | Emma, Inc.</title> - + <link rel="stylesheet" href="../../_static/emma.css" type="text/css" /> <link rel="stylesheet" href="../../_static/pygments.css" type="text/css" /> - + <script type="text/javascript"> var DOCUMENTATION_OPTIONS = { URL_ROOT: '../../', @@ -20,10 +20,10 @@ HAS_SOURCE: true }; </script> - + <script src="http://code.jquery.com/jquery-1.4.min.js"></script> <script>window.jQuery || document.write('<script src="_static/jquery.js"><\/script>')</script> - + <script type="text/javascript" src="//use.typekit.net/zfm0nfo.js"></script> <script type="text/javascript">try{Typekit.load();}catch(e){}</script> <script type="text/javascript" src="../../_static/underscore.js"></script> @@ -91,15 +91,15 @@ <h3>Navigation</h3> <li class="right" > <a href="../../index.html" title="Emma API" accesskey="P">previous</a> |</li> - <li><a href="../../index.html">audience 0.1 documentation</a> »</li> + <li><a href="../../index.html">audience 0.1 documentation</a> »</li> </ul> - </div> + </div> <div class="document"> <div class="documentwrapper"> <div class="bodywrapper"> <div class="body"> - + <div class="section" id="fields"> <h1>Automation<a class="headerlink" href="#fields" title="Permalink to this headline">¶</a></h1> <p> @@ -294,4 +294,3 @@ <h3>Interested in Emma?</h3> </div> </body> </html> - From 89782bf299ee9d07f45c4497c2e954adb9b6e6b6 Mon Sep 17 00:00:00 2001 From: Donna Smith <donna.smith@myemma.com> Date: Fri, 21 Sep 2018 17:40:28 -0500 Subject: [PATCH 147/219] [CAMP-2662] Updating Public API Documentation for the mailings.py API controller --- api/external/mailings.html | 337 ++++++++++++++++++++++++++++++++++--- 1 file changed, 309 insertions(+), 28 deletions(-) diff --git a/api/external/mailings.html b/api/external/mailings.html index 5fdb92f..8b36b2e 100644 --- a/api/external/mailings.html +++ b/api/external/mailings.html @@ -116,17 +116,18 @@ <h1>Mailings<a class="headerlink" href="#mailings" title="Permalink to this head <tbody valign="top"> <tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> <li><strong>include_archived</strong> (<em>boolean</em>) – Optional flag to include archived mailings in the list.</li> -<li><strong>mailing_types</strong> (<em>string</em>) – Accepts a comma-separated string with one or more +<li><strong>mailing_types</strong> (<em>string</em>) – Optional parameter that accepts a comma-separated string with one or more of the following mailing types: ‘m’ (standard), ‘t’ (test), -‘r’ (trigger), ‘s’ (split). Defaults to ‘m,t’, standard and test mailings, +‘r’ (trigger), ‘s’ (subject line split test), ‘c’ (content split test). +Defaults to ‘m,t’, standard and test mailings, when none are specified.</li> +<li><strong>mailing_statuses</strong> (<em>string</em>) – Optional parameter that accepts a comma-separated string with one or +more of the following mailing statuses: ‘p’ (pending), ‘a’ (paused), ‘i’ (injecting), +‘s’ (sending), ‘x’ (canceled), ‘c’ (complete), ‘w’ (waiting), +‘u’ (unapproved), ‘f’ (failed). Defaults to ‘p,a,i,s,x,c,w,u,f’, all statuses, when none are specified.</li> -<li><strong>mailing_statuses</strong> (<em>string</em>) – Accepts a comma-separated string with one or -more of the following mailing statuses: ‘p’ (pending), ‘a’ (paused), -‘s’ (sending), ‘x’ (canceled), ‘c’ (complete), ‘u’ (unapproved), ‘f’ (failed). -Defaults to ‘p,a,s,x,c,u,f’, all statuses, when none are specified.</li> -<li><strong>is_scheduled</strong> (<em>boolean</em>) – Mailings that have a scheduled timestamp.</li> -<li><strong>with_html_body</strong> (<em>boolean</em>) – Include the html_body content.</li> -<li><strong>with_plaintext</strong> (<em>boolean</em>) – Include the plaintext content.</li> +<li><strong>is_scheduled</strong> (<em>boolean</em>) – Optional flag for mailings that have a scheduled timestamp.</li> +<li><strong>with_html_body</strong> (<em>boolean</em>) – Optional flag to include the html_body content.</li> +<li><strong>with_plaintext</strong> (<em>boolean</em>) – Optional flag to include the plaintext content.</li> </ul> </td> </tr> @@ -282,6 +283,110 @@ <h1>Mailings<a class="headerlink" href="#mailings" title="Permalink to this head </p> </dd></dl> +<dl class="get"> +<dt id="get--#account_id-calendar"> +<tt class="descname">GET </tt><tt class="descname">/#account_id/calendar</tt><a class="headerlink" href="#get--#account_id-calendar" title="Permalink to this definition">¶</a></dt> +<dd><p>Get information about sent and scheduled mailings for the calendar.</p> +<table class="docutils field-list" frame="void" rules="none"> +<col class="field-name" /> +<col class="field-body" /> +<tbody valign="top"> +<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> +<li><strong>start_date</strong> (<em>string</em>) – Include sent or scheduled mailings starting on this date</li> +<li><strong>end_date</strong> (<em>string</em>) – Include sent or scheduled mailings up to this end date</li> +<li><strong>with_html_body</strong> (<em>boolean</em>) – Optional flag to include the html_body content.</li> +<li><strong>with_plaintext</strong> (<em>boolean</em>) – Optional flag to include the plaintext content.</li> +</ul> +</td> +</tr> +<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><p class="first"><tt class="docutils literal"><span class="pre">Http400</span></tt> if the start and end dates are invalid or missing.</p> +</td> +</tr> +<tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body"><p class="first last">An array of mailings.</p> +</td> +</tr> +</tbody> +</table> +<p> +<div class="sample-response hide-response"> +<span style="font-weight:bold;">Sample Response</span> +<a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>GET /100/calendar?start_date=2018-09-16&end_date=2018-09-17</b> + +[ + { + "mailing_type": "m", + "send_started": "@D:2018-09-16T10:30:10", + "cancel_by_user_id": null, + "mailing_id": 210, + "recipient_count": 1, + "cancel_ts": null, + "mailing_status": "c", + "account_id": 100, + "month": 9, + "failure_ts": null, + "reply_to": null, + "year": 2018, + "deleted_at": null, + "started_or_finished": "@D:2018-09-16T10:30:10", + "subject": "Sample Mailing for [% member:first_name %] [% member:last_name %]", + "disabled": false, + "created_ts": "@D:2018-09-13T10:18:34", + "sender": "Kevin McConnell", + "plaintext_only": false, + "name": "Sample Mailing", + "hour": 10, + "parent_mailing_id": null, + "failure_message": null, + "day": 16, + "send_finished": "@D:2018-09-16T10:30:16", + "datacenter": null, + "send_at": "@D:2018-09-16T10:30:00", + "signup_form_id": null, + "purged_at: null, + archived_ts: null + }, + { + "mailing_type": "m", + "send_started": null, + "cancel_by_user_id": null, + "mailing_id": 211, + "recipient_count": 0, + "cancel_ts": null, + "mailing_status": "p", + "account_id": 100, + "month": null, + "failure_ts": null, + "reply_to": null, + "year": null, + "deleted_at": null, + "started_or_finished": null, + "subject": "Scheduled Mailing", + "disabled": false, + "created_ts": "@D:2018-09-13T10:16:54", + "sender": "Donna Smith", + "plaintext_only": false, + "name": "Scheduled Mailing", + "hour": null, + "parent_mailing_id": null, + "failure_message": null, + "day": null, + "send_finished": null, + "datacenter": null, + "send_at": "@D:2018-09-22T10:30:00", + "signup_form_id": null, + "purged_at": null, + "archived_ts": null + } +] + +</pre> +</div> +</p> +</dd></dl> + + <dl class="get"> <dt id="get--#account_id-mailings-#mailing_id"> <tt class="descname">GET </tt><tt class="descname">/#account_id/mailings/#mailing_id</tt><a class="headerlink" href="#get--#account_id-mailings-#mailing_id" title="Permalink to this definition">¶</a></dt> @@ -290,6 +395,10 @@ <h1>Mailings<a class="headerlink" href="#mailings" title="Permalink to this head <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> +<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> +<li><strong>include_segment_names</strong> (<em>boolean</em>) – Optional flag to include segment names under recipient_segments. False by default.</li> +</tr> +</li> <tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">A mailing.</td> </tr> <tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no mailing is found.</td> @@ -328,12 +437,14 @@ <h1>Mailings<a class="headerlink" href="#mailings" title="Permalink to this head "recipient_count": 0, "public_webview_url": "http://localhost/webview/uf/6db0cc7e6fdb2da589b65f29d90c96b6", "mailing_type": "m", + "recipient_segments": [], "parent_mailing_id": null, "recipient_searches": [], + "deleted_at": null, "account_id": 100, "recipient_members": [ { - "email": "emma@myemma.com", + "email": "youremma@myemma.com", "member_id": 200 } ], @@ -342,6 +453,7 @@ <h1>Mailings<a class="headerlink" href="#mailings" title="Permalink to this head "name": "Sample Mailing", "send_finished": null, "send_at": null, + "reply_to": null, "subject": "Sample Mailing for [% member:first_name %] [% member:last_name %]", "archived_ts": null, "html_body": "<p>Hello [% member:first_name %]!</p>" @@ -391,7 +503,7 @@ <h1>Mailings<a class="headerlink" href="#mailings" title="Permalink to this head "member_since": "@D:2010-11-12T11:23:45", "bounce_count": 0, "deleted_at": null, - "email": "emma@myemma.com" + "email": "youremma@myemma.com" } ] @@ -410,7 +522,7 @@ <h1>Mailings<a class="headerlink" href="#mailings" title="Permalink to this head <col class="field-body" /> <tbody valign="top"> <tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> -<li><strong>type</strong> (<em>string</em>) – Accepts: ‘all’, ‘html’, ‘plaintext’, ‘subject’. Defaults +<li><strong>type</strong> (<em>string</em>) – Accepts: ‘all’, ‘html’, ‘plaintext’, ‘subject’, ‘webview_url’. Defaults to ‘all’, if not provided.</li> </ul> </td> @@ -422,6 +534,9 @@ <h1>Mailings<a class="headerlink" href="#mailings" title="Permalink to this head </tr> <tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no message is found.</p> </td> +<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http500</span></tt> if allowed_types is not valid.</p> +</td> +</tr> </tr> </tbody> </table> @@ -435,7 +550,8 @@ <h1>Mailings<a class="headerlink" href="#mailings" title="Permalink to this head { "plaintext": "Hello !", "subject": "Sample Mailing for ", - "html_body": "<p>Hello !</p>" + "html_body": "<p>Hello !</p>", + "webview_url": "https://tracker/message/200/200" } </pre> </div> @@ -517,7 +633,128 @@ <h1>Mailings<a class="headerlink" href="#mailings" title="Permalink to this head <b>GET /100/mailings/200/searches</b> [ + { + "optout_count": 0, + "account_id": 100, + "cached_at": null, + "last_run_at": "@D:2018-02-06T16:27:06", + "active_count": 4, + "error_count": 0, + "criteria": "["and", ["and", ["member_field:name_first", "contains", "*Kevin*"]]]", + "deleted_at": null, + "purged_at": null, + "search_id": 400, + "name": "All the Kevins" + } +] + +</pre> +</div> +</p> +</dd></dl> + +<dl class="get"> +<dt id="get--#account_id-mailings-#mailing_id-suppressed-searches"> +<tt class="descname">GET </tt><tt class="descname">/#account_id/mailings/#mailing_id/suppressed_searches</tt><a class="headerlink" href="#get--#account_id-mailings-#mailing_id-suppressed-searches" title="Permalink to this definition">¶</a></dt> +<dd><p>Get all suppressed searches associated with a sent mailing.</p> +<table class="docutils field-list" frame="void" rules="none"> +<col class="field-name" /> +<col class="field-body" /> +<tbody valign="top"> +<tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">An array of suppressed searches.</td> +</tr> +<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no mailing is found.</td> +</tr> +</td> +</tbody> +</table> +<p> +<div class="sample-response hide-response"> +<span style="font-weight:bold;">Sample Response</span> +<a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>GET|/100/mailings/200/suppressed_searches</b> + +[ + { + "optout_count": 0, + "account_id": 200, + "cached_at": "@D:2018-08-13T14:28:12", + "last_run_at": "@D:2018-08-13T14:28:12", + "active_count": 772, + "error_count": 0, + "criteria": "["and", ["and", ["not", ["opened", "in last", {"week": "52"}]]]]", + "deleted_at": null, + "purged_at": null, + "search_id": 401, + "name": "Inactive 12+ Months" + } +] +</pre> +</div> +</p> +</dd></dl> + +<dl class="get"> +<dt id="get--#account_id-mailings-#mailing_id-suppressed-members"> +<tt class="descname">GET </tt><tt class="descname">/#account_id/mailings/#mailing_id/suppressed_members</tt><a class="headerlink" href="#get--#account_id-mailings-#mailing_id-suppressed-members" title="Permalink to this definition">¶</a></dt> +<dd><p>Get all suppressed members for a particular mailing.</p> +<table class="docutils field-list" frame="void" rules="none"> +<col class="field-name" /> +<col class="field-body" /> +<tbody valign="top"> +<tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">An array of suppressed members.</td> +</tr> +<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no mailing is found.</td> +</tr> +</td> +</tbody> +</table> +<p> +<div class="sample-response hide-response"> +<span style="font-weight:bold;">Sample Response</span> +<a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>GET|/100/mailings/200/suppressed_members</b> + +[ + { + "status": "active", + "confirmed_opt_in": null, + "account_id": 100, + "fields": { + "first_name": "Kevin", + "last_name": "McConnell," + }, + "member_id": 200, + "last_modified_at": "@D:2017-05-09T08:14:30", + "member_status_id": "a", + "plaintext_preferred": false, + "email_error": null, + "member_since": "@D:2017-05-09T08:14:30", + "bounce_count": 0, + "deleted_at": null, + "email": "youremma@myemma.com" + }, + { + "status": "active", + "confirmed_opt_in": null, + "account_id": 100, + "fields": { + "first_name": "Emma", + "last_name": "Smith" + }, + "member_id": 201, + "last_modified_at": "@D:2017-05-09T08:14:30", + "member_status_id": "a", + "plaintext_preferred": false, + "email_error": null, + "member_since": "@D:2017-05-09T08:14:30", + "bounce_count": 0, + "deleted_at": null, + "email": "theiremma@myemma.com" + }, ] </pre> @@ -529,11 +766,35 @@ <h1>Mailings<a class="headerlink" href="#mailings" title="Permalink to this head <dt id="put--#account_id-mailings-#mailing_id"> <tt class="descname">PUT </tt><tt class="descname">/#account_id/mailings/#mailing_id</tt><a class="headerlink" href="#put--#account_id-mailings-#mailing_id" title="Permalink to this definition">¶</a></dt> <dd><p>Update status of a current mailing</p> -<p>The status can be one of <tt class="docutils literal"><span class="pre">canceled</span></tt>, <tt class="docutils literal"><span class="pre">paused</span></tt> or <tt class="docutils literal"><span class="pre">ready</span></tt>. This +<p>The status can be one of <tt class="docutils literal"><span class="pre">canceled</span></tt>, <tt class="docutils literal"><span class="pre">paused</span></tt> or <tt class="docutils literal"><span class="pre">ready</span></tt>. This method can be used to control the progress of a mailing by pausing, -canceling or resuming it. Once a mailing is canceled it can’t be +canceling or resuming it. Once a mailing is canceled it can’t be resumed, and will not show in the normal <tt class="docutils literal"><span class="pre">mailing_list</span></tt> output.</p> -<p>Returns the mailing’s new status</p> +<table class="docutils field-list" frame="void" rules="none"> +<col class="field-name" /> +<col class="field-body" /> +<tbody valign="top"> +<tbody valign="top"> +<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> +<li><strong>status</strong> (<em>string</em>) – Accepts ‘canceled’, ‘paused’ or ‘ready’.</li> +</ul> +<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no mailing is found.</td> +</tr> +<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http400</span></tt> if the mailing is already in Completed or Sending status and cannot be updated.</td> +</tr> +<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http400</span></tt> if the mailing is in Pending or Unapproved status and the html or plaintext is missing a required tag.</td> +</tr> +<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http400</span></tt> if the mailing is in Pending or Unapproved status and cannot be rescheduled.</td> +</tr> +<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http400</span></tt> if an invalid status is passed in.</td> +</tr> +<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http400</span></tt> if the mailing is already canceled.</td> +</tr> +<tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body">The updated mailing</td> +</tr> +</td> +</tbody> +</table> </dd></dl> <dl class="delete"> @@ -566,13 +827,17 @@ <h1>Mailings<a class="headerlink" href="#mailings" title="Permalink to this head <dt id="delete--#account_id-mailings-cancel-#mailing_id"> <tt class="descname">DELETE </tt><tt class="descname">/#account_id/mailings/cancel/#mailing_id</tt><a class="headerlink" href="#delete--#account_id-mailings-cancel-#mailing_id" title="Permalink to this definition">¶</a></dt> <dd><p>Cancels a mailing that has a current status of pending or -paused. All other statuses will result in a 404.</p> +paused. All other statuses will result in a 403.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> <tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">True if mailing marked as cancelled.</td> </tr> +<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http403</span></tt> if the current mailing status is not pending or paused.</td> +</tr> +<tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no mailing is found.</td> +</tr> </tbody> </table> <p> @@ -599,14 +864,14 @@ <h1>Mailings<a class="headerlink" href="#mailings" title="Permalink to this head <col class="field-body" /> <tbody valign="top"> <tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> +<li><strong>heads_up_emails</strong> (<em>array</em>) – An array of email addresses that heads up +notification emails will be sent to.</li> <li><strong>recipient_emails</strong> (<em>array</em>) – An array of email addresses to which to forward the specified message.</li> -<li><strong>note</strong> (<em>string</em>) – A note to include in the forward. This note will be HTML -encoded and is limited to 500 characters.</li> </ul> </td> </tr> -<tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">A reference to the new mailing.</p> +<tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">A reference to the new mailing_id.</p> </td> </tr> <tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no message is found.</p> @@ -647,18 +912,22 @@ <h1>Mailings<a class="headerlink" href="#mailings" title="Permalink to this head <tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> <li><strong>sender</strong> (<em>string</em>) – The message sender. If this is not supplied, the sender of the original mailing will be used.</li> -<li><strong>heads_up_emails</strong> (<em>array</em>) – A list of email addresses that heads up +<li><strong>heads_up_emails</strong> (<em>array</em>) – An array of email addresses that heads up notification emails will be sent to.</li> <li><strong>recipient_emails</strong> (<em>array</em>) – An array of email addresses to which the new mailing should be sent.</li> <li><strong>recipient_groups</strong> (<em>array</em>) – An array of member groups to which the new mailing should be sent.</li> -<li><strong>recipient_searches</strong> (<em>array</em>) – A list of searches that this mailing should +<li><strong>recipient_searches</strong> (<em>array</em>) – An array of searches that this mailing should +be sent to.</li> +<li><strong>recipient_segments</strong> (<em>array</em>) – An array of segments that this mailing should be sent to.</li> +<li><strong>suppression_segments</strong> (<em>array</em>) – An array of suppressed segments that this mailing should +not be sent to.</li> </ul> </td> </tr> -<tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">A reference to the new mailing.</p> +<tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">A reference to the new mailing_id.</p> </td> </tr> <tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no mailing is found.</p> @@ -708,7 +977,16 @@ <h1>Mailings<a class="headerlink" href="#mailings" title="Permalink to this head <b>GET /100/mailings/200/headsup</b> [ - + { + "sent_ts": null, + "email": "myemma@myemma.com", + "mailing_id": 200 + }, + { + "sent_ts": null, + "email": "youremma@myemma.com", + "mailing_id": 200 + } ] </pre> @@ -726,10 +1004,9 @@ <h1>Mailings<a class="headerlink" href="#mailings" title="Permalink to this head <col class="field-body" /> <tbody valign="top"> <tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> -<li><strong>html_body</strong> (<em>string</em>) – The html contents of the mailing</li> -<li><strong>plaintext</strong> (<em>string</em>) – The plaintext contents of the mailing. Unlike in -<tt class="docutils literal"><span class="pre">create_mailing</span></tt>, this param is not required.</li> -<li><strong>subject</strong> (<em>string</em>) – The subject of the mailing</li> +<li><strong>html_body</strong> (<em>string</em>) – Optional html contents of the mailing.</li> +<li><strong>plaintext</strong> (<em>string</em>) – Optional plaintext contents of the mailing.</li> +<li><strong>subject</strong> (<em>string</em>) – Optional subject of the mailing.</li> </ul> </td> </tr> @@ -775,6 +1052,10 @@ <h1>Mailings<a class="headerlink" href="#mailings" title="Permalink to this head </tr> <tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http403</span></tt> if the winner cannot be manually declared.</td> </tr> +<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing is not found.</td> +</tr> +<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the winning_id mailing is not found.</td> +</tr> </tbody> </table> <p> From 576af6910036b83e98bdc1cf87905866f3cbdff8 Mon Sep 17 00:00:00 2001 From: Donna Smith <donna.smith@myemma.com> Date: Mon, 24 Sep 2018 11:28:56 -0500 Subject: [PATCH 148/219] =?UTF-8?q?[CAMP-2662]=20Changing=20=C2=B6=20=3D>?= =?UTF-8?q?=20¶?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- api/external/mailings.html | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/api/external/mailings.html b/api/external/mailings.html index 8b36b2e..a79d9b3 100644 --- a/api/external/mailings.html +++ b/api/external/mailings.html @@ -102,13 +102,13 @@ <h3>Navigation</h3> <div class="body"> <div class="section" id="mailings"> -<h1>Mailings<a class="headerlink" href="#mailings" title="Permalink to this headline">¶</a></h1> +<h1>Mailings<a class="headerlink" href="#mailings" title="Permalink to this headline">¶</a></h1> <p>With these endpoints, you can get information about your mailings including their HTML contents. You can retrieve the members to whom the mailing was sent. You can also pause mailings and cancel mailings that are pending or paused.</p> <dl class="get"> <dt id="get--#account_id-mailings"> -<tt class="descname">GET </tt><tt class="descname">/#account_id/mailings</tt><a class="headerlink" href="#get--#account_id-mailings" title="Permalink to this definition">¶</a></dt> +<tt class="descname">GET </tt><tt class="descname">/#account_id/mailings</tt><a class="headerlink" href="#get--#account_id-mailings" title="Permalink to this definition">¶</a></dt> <dd><p>Get information about current mailings.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> @@ -285,7 +285,7 @@ <h1>Mailings<a class="headerlink" href="#mailings" title="Permalink to this head <dl class="get"> <dt id="get--#account_id-calendar"> -<tt class="descname">GET </tt><tt class="descname">/#account_id/calendar</tt><a class="headerlink" href="#get--#account_id-calendar" title="Permalink to this definition">¶</a></dt> +<tt class="descname">GET </tt><tt class="descname">/#account_id/calendar</tt><a class="headerlink" href="#get--#account_id-calendar" title="Permalink to this definition">¶</a></dt> <dd><p>Get information about sent and scheduled mailings for the calendar.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> @@ -389,7 +389,7 @@ <h1>Mailings<a class="headerlink" href="#mailings" title="Permalink to this head <dl class="get"> <dt id="get--#account_id-mailings-#mailing_id"> -<tt class="descname">GET </tt><tt class="descname">/#account_id/mailings/#mailing_id</tt><a class="headerlink" href="#get--#account_id-mailings-#mailing_id" title="Permalink to this definition">¶</a></dt> +<tt class="descname">GET </tt><tt class="descname">/#account_id/mailings/#mailing_id</tt><a class="headerlink" href="#get--#account_id-mailings-#mailing_id" title="Permalink to this definition">¶</a></dt> <dd><p>Get detailed information for one mailing.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> @@ -465,7 +465,7 @@ <h1>Mailings<a class="headerlink" href="#mailings" title="Permalink to this head <dl class="get"> <dt id="get--#account_id-mailings-#mailing_id-members"> -<tt class="descname">GET </tt><tt class="descname">/#account_id/mailings/#mailing_id/members</tt><a class="headerlink" href="#get--#account_id-mailings-#mailing_id-members" title="Permalink to this definition">¶</a></dt> +<tt class="descname">GET </tt><tt class="descname">/#account_id/mailings/#mailing_id/members</tt><a class="headerlink" href="#get--#account_id-mailings-#mailing_id-members" title="Permalink to this definition">¶</a></dt> <dd><p>Get the list of members to whom the given mailing was sent. This does not include groups or searches.</p> <table class="docutils field-list" frame="void" rules="none"> @@ -514,7 +514,7 @@ <h1>Mailings<a class="headerlink" href="#mailings" title="Permalink to this head <dl class="get"> <dt id="get--#account_id-mailings-#mailing_id-messages-#member_id"> -<tt class="descname">GET </tt><tt class="descname">/#account_id/mailings/#mailing_id/messages/#member_id</tt><a class="headerlink" href="#get--#account_id-mailings-#mailing_id-messages-#member_id" title="Permalink to this definition">¶</a></dt> +<tt class="descname">GET </tt><tt class="descname">/#account_id/mailings/#mailing_id/messages/#member_id</tt><a class="headerlink" href="#get--#account_id-mailings-#mailing_id-messages-#member_id" title="Permalink to this definition">¶</a></dt> <dd><p>Gets the personalized message content as sent to a specific member as part of the specified mailing.</p> <table class="docutils field-list" frame="void" rules="none"> @@ -573,7 +573,7 @@ <h1>Mailings<a class="headerlink" href="#mailings" title="Permalink to this head <dl class="get"> <dt id="get--#account_id-mailings-#mailing_id-groups"> -<tt class="descname">GET </tt><tt class="descname">/#account_id/mailings/#mailing_id/groups</tt><a class="headerlink" href="#get--#account_id-mailings-#mailing_id-groups" title="Permalink to this definition">¶</a></dt> +<tt class="descname">GET </tt><tt class="descname">/#account_id/mailings/#mailing_id/groups</tt><a class="headerlink" href="#get--#account_id-mailings-#mailing_id-groups" title="Permalink to this definition">¶</a></dt> <dd><p>Get the groups to which a particular mailing was sent.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> @@ -613,7 +613,7 @@ <h1>Mailings<a class="headerlink" href="#mailings" title="Permalink to this head <dl class="get"> <dt id="get--#account_id-mailings-#mailing_id-searches"> -<tt class="descname">GET </tt><tt class="descname">/#account_id/mailings/#mailing_id/searches</tt><a class="headerlink" href="#get--#account_id-mailings-#mailing_id-searches" title="Permalink to this definition">¶</a></dt> +<tt class="descname">GET </tt><tt class="descname">/#account_id/mailings/#mailing_id/searches</tt><a class="headerlink" href="#get--#account_id-mailings-#mailing_id-searches" title="Permalink to this definition">¶</a></dt> <dd><p>Get all searches associated with a sent mailing.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> @@ -655,7 +655,7 @@ <h1>Mailings<a class="headerlink" href="#mailings" title="Permalink to this head <dl class="get"> <dt id="get--#account_id-mailings-#mailing_id-suppressed-searches"> -<tt class="descname">GET </tt><tt class="descname">/#account_id/mailings/#mailing_id/suppressed_searches</tt><a class="headerlink" href="#get--#account_id-mailings-#mailing_id-suppressed-searches" title="Permalink to this definition">¶</a></dt> +<tt class="descname">GET </tt><tt class="descname">/#account_id/mailings/#mailing_id/suppressed_searches</tt><a class="headerlink" href="#get--#account_id-mailings-#mailing_id-suppressed-searches" title="Permalink to this definition">¶</a></dt> <dd><p>Get all suppressed searches associated with a sent mailing.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> @@ -698,7 +698,7 @@ <h1>Mailings<a class="headerlink" href="#mailings" title="Permalink to this head <dl class="get"> <dt id="get--#account_id-mailings-#mailing_id-suppressed-members"> -<tt class="descname">GET </tt><tt class="descname">/#account_id/mailings/#mailing_id/suppressed_members</tt><a class="headerlink" href="#get--#account_id-mailings-#mailing_id-suppressed-members" title="Permalink to this definition">¶</a></dt> +<tt class="descname">GET </tt><tt class="descname">/#account_id/mailings/#mailing_id/suppressed_members</tt><a class="headerlink" href="#get--#account_id-mailings-#mailing_id-suppressed-members" title="Permalink to this definition">¶</a></dt> <dd><p>Get all suppressed members for a particular mailing.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> @@ -764,7 +764,7 @@ <h1>Mailings<a class="headerlink" href="#mailings" title="Permalink to this head <dl class="put"> <dt id="put--#account_id-mailings-#mailing_id"> -<tt class="descname">PUT </tt><tt class="descname">/#account_id/mailings/#mailing_id</tt><a class="headerlink" href="#put--#account_id-mailings-#mailing_id" title="Permalink to this definition">¶</a></dt> +<tt class="descname">PUT </tt><tt class="descname">/#account_id/mailings/#mailing_id</tt><a class="headerlink" href="#put--#account_id-mailings-#mailing_id" title="Permalink to this definition">¶</a></dt> <dd><p>Update status of a current mailing</p> <p>The status can be one of <tt class="docutils literal"><span class="pre">canceled</span></tt>, <tt class="docutils literal"><span class="pre">paused</span></tt> or <tt class="docutils literal"><span class="pre">ready</span></tt>. This method can be used to control the progress of a mailing by pausing, @@ -799,7 +799,7 @@ <h1>Mailings<a class="headerlink" href="#mailings" title="Permalink to this head <dl class="delete"> <dt id="delete--#account_id-mailings-#mailing_id"> -<tt class="descname">DELETE </tt><tt class="descname">/#account_id/mailings/#mailing_id</tt><a class="headerlink" href="#delete--#account_id-mailings-#mailing_id" title="Permalink to this definition">¶</a></dt> +<tt class="descname">DELETE </tt><tt class="descname">/#account_id/mailings/#mailing_id</tt><a class="headerlink" href="#delete--#account_id-mailings-#mailing_id" title="Permalink to this definition">¶</a></dt> <dd><p>Sets archived timestamp for a mailing so it is no longer included in mailing_list.</p> <table class="docutils field-list" frame="void" rules="none"> @@ -825,7 +825,7 @@ <h1>Mailings<a class="headerlink" href="#mailings" title="Permalink to this head <dl class="delete"> <dt id="delete--#account_id-mailings-cancel-#mailing_id"> -<tt class="descname">DELETE </tt><tt class="descname">/#account_id/mailings/cancel/#mailing_id</tt><a class="headerlink" href="#delete--#account_id-mailings-cancel-#mailing_id" title="Permalink to this definition">¶</a></dt> +<tt class="descname">DELETE </tt><tt class="descname">/#account_id/mailings/cancel/#mailing_id</tt><a class="headerlink" href="#delete--#account_id-mailings-cancel-#mailing_id" title="Permalink to this definition">¶</a></dt> <dd><p>Cancels a mailing that has a current status of pending or paused. All other statuses will result in a 403.</p> <table class="docutils field-list" frame="void" rules="none"> @@ -855,7 +855,7 @@ <h1>Mailings<a class="headerlink" href="#mailings" title="Permalink to this head <dl class="post"> <dt id="post--#account_id-forwards-#mailing_id-#member_id"> -<tt class="descname">POST </tt><tt class="descname">/#account_id/forwards/#mailing_id/#member_id</tt><a class="headerlink" href="#post--#account_id-forwards-#mailing_id-#member_id" title="Permalink to this definition">¶</a></dt> +<tt class="descname">POST </tt><tt class="descname">/#account_id/forwards/#mailing_id/#member_id</tt><a class="headerlink" href="#post--#account_id-forwards-#mailing_id-#member_id" title="Permalink to this definition">¶</a></dt> <dd><p>Forward a previous message to additional recipients. If these recipients are not already in the audience, they will be added with a status of FORWARDED.</p> @@ -902,7 +902,7 @@ <h1>Mailings<a class="headerlink" href="#mailings" title="Permalink to this head <dl class="post"> <dt id="post--#account_id-mailings-#mailing_id"> -<tt class="descname">POST </tt><tt class="descname">/#account_id/mailings/#mailing_id</tt><a class="headerlink" href="#post--#account_id-mailings-#mailing_id" title="Permalink to this definition">¶</a></dt> +<tt class="descname">POST </tt><tt class="descname">/#account_id/mailings/#mailing_id</tt><a class="headerlink" href="#post--#account_id-mailings-#mailing_id" title="Permalink to this definition">¶</a></dt> <dd><p>Send a prior mailing to additional recipients. A new mailing will be created that inherits its content from the original.</p> <table class="docutils field-list" frame="void" rules="none"> @@ -957,7 +957,7 @@ <h1>Mailings<a class="headerlink" href="#mailings" title="Permalink to this head <dl class="get"> <dt id="get--#account_id-mailings-#mailing_id-headsup"> -<tt class="descname">GET </tt><tt class="descname">/#account_id/mailings/#mailing_id/headsup</tt><a class="headerlink" href="#get--#account_id-mailings-#mailing_id-headsup" title="Permalink to this definition">¶</a></dt> +<tt class="descname">GET </tt><tt class="descname">/#account_id/mailings/#mailing_id/headsup</tt><a class="headerlink" href="#get--#account_id-mailings-#mailing_id-headsup" title="Permalink to this definition">¶</a></dt> <dd><p>Get heads up email address(es) related to a mailing.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> @@ -996,7 +996,7 @@ <h1>Mailings<a class="headerlink" href="#mailings" title="Permalink to this head <dl class="post"> <dt id="post--#account_id-mailings-validate"> -<tt class="descname">POST </tt><tt class="descname">/#account_id/mailings/validate</tt><a class="headerlink" href="#post--#account_id-mailings-validate" title="Permalink to this definition">¶</a></dt> +<tt class="descname">POST </tt><tt class="descname">/#account_id/mailings/validate</tt><a class="headerlink" href="#post--#account_id-mailings-validate" title="Permalink to this definition">¶</a></dt> <dd><p>Validate that a mailing has valid personalization-tag syntax. Checks tag syntax in three params:</p> <table class="docutils field-list" frame="void" rules="none"> @@ -1037,7 +1037,7 @@ <h1>Mailings<a class="headerlink" href="#mailings" title="Permalink to this head <dl class="post"> <dt id="post--#account_id-mailings-#mailing_id-winner-#winner_id"> -<tt class="descname">POST </tt><tt class="descname">/#account_id/mailings/#mailing_id/winner/#winner_id</tt><a class="headerlink" href="#post--#account_id-mailings-#mailing_id-winner-#winner_id" title="Permalink to this definition">¶</a></dt> +<tt class="descname">POST </tt><tt class="descname">/#account_id/mailings/#mailing_id/winner/#winner_id</tt><a class="headerlink" href="#post--#account_id-mailings-#mailing_id-winner-#winner_id" title="Permalink to this definition">¶</a></dt> <dd><p>Declare the winner of a split test manually. In the event that the test duration has not elapsed, the current stats for each test will be frozen and the content defined in the user declared winner will sent to the From 5ebc7aa52a9d6d43ab9752513a284bda1c14812a Mon Sep 17 00:00:00 2001 From: biggert <jbiggert@myemma.com> Date: Mon, 24 Sep 2018 15:37:03 -0500 Subject: [PATCH 149/219] Synchronize fields api docs to audience docs --- api/external/fields.html | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/api/external/fields.html b/api/external/fields.html index 98eece7..5954a27 100644 --- a/api/external/fields.html +++ b/api/external/fields.html @@ -296,7 +296,9 @@ <h1>Fields<a class="headerlink" href="#fields" title="Permalink to this headline <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">True if the field is deleted, False otherwise.</td> +<tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">True if the field is deleted.</td> +</tr> +<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the field does not exist.</td> </tr> </tbody> </table> From 06b0a26cf548d28b6a586b1751af595d696466fc Mon Sep 17 00:00:00 2001 From: Courey Elliott <coureyelliott@gmail.com> Date: Fri, 28 Sep 2018 09:09:53 -0500 Subject: [PATCH 150/219] updating response documentation --- api/external/response.html | 688 +++++++++++++++++++++++++++++++------ 1 file changed, 589 insertions(+), 99 deletions(-) diff --git a/api/external/response.html b/api/external/response.html index b072a31..9b520fc 100644 --- a/api/external/response.html +++ b/api/external/response.html @@ -4,13 +4,13 @@ <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> - + <title>Emma API Documentation | Emma, Inc.</title> - + <link rel="stylesheet" href="../../_static/emma.css" type="text/css" /> <link rel="stylesheet" href="../../_static/pygments.css" type="text/css" /> - + <script type="text/javascript"> var DOCUMENTATION_OPTIONS = { URL_ROOT: '../../', @@ -20,10 +20,10 @@ HAS_SOURCE: true }; </script> - + <script src="http://code.jquery.com/jquery-1.4.min.js"></script> <script>window.jQuery || document.write('<script src="_static/jquery.js"><\/script>')</script> - + <script type="text/javascript" src="//use.typekit.net/zfm0nfo.js"></script> <script type="text/javascript">try{Typekit.load();}catch(e){}</script> <script type="text/javascript" src="../../_static/underscore.js"></script> @@ -93,13 +93,13 @@ <h3>Navigation</h3> accesskey="P">previous</a> |</li> <li><a href="../../index.html">audience 0.1 documentation</a> »</li> </ul> - </div> + </div> <div class="document"> <div class="documentwrapper"> <div class="bodywrapper"> <div class="body"> - + <div class="section" id="response"> <h1>Response<a class="headerlink" href="#response" title="Permalink to this headline">¶</a></h1> <p>We know that you want to do some fancy pivot tables with your response @@ -125,7 +125,7 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head <li><strong>mailings</strong> – number of mailings sent</li> <li><strong>sent</strong> – number of messages sent</li> <li><strong>delivered</strong> – number of messages delivered</li> -<li><strong>bounced</strong> – number of messages that failed delivery due to a hard or soft bounce</li> +<li><strong>bounced</strong> – number of messages that failed delivery due to a hard or soft bounce</li> <li><strong>opened</strong> – number of messages opened</li> <li><strong>clicked_unique</strong> – link clicks, unique on message</li> <li><strong>clicked</strong> – total link clicks, including duplicates</li> @@ -136,6 +136,8 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head <li><strong>webview_share_clicked</strong> – total times a customer-shared mailing has been seen</li> <li><strong>opted_out</strong> – people who opted out based on this mailing</li> <li><strong>signed_up</strong> – people who signed up based on this mailing</li> +<li><strong>count_purchased</strong> – the total number of orders made</li> +<li><strong>sum_purchased</strong> – the total dollar amount of orders</li> </ul> </dd> </dl> @@ -144,7 +146,7 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head <col class="field-body" /> <tbody valign="top"> <tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first last simple"> -<li><strong>include_archived</strong> (<em>boolean</em>) – Accepts 1. All other values are False. +<li><strong>include_deleted</strong> (<em>boolean</em>) – Accepts 1. All other values are False. Optional flag to include archived mailings in the list.</li> <li><strong>range</strong> (<em>string</em>) – Accepts 2 dates (YYYY-MM-DD) delimited by a tilde (~). Example: <tt class="docutils literal"><span class="pre">2011-04-01~2011-09-01</span></tt> @@ -165,21 +167,48 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head <b>GET /100/response</b> [ - -] - -</pre> -</div> -</p> -<p> -<div class="sample-response hide-response"> -<span style="font-weight:bold;">Sample Response</span> -<a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> -<pre class="response"> -<b>GET /100/response?range=2011-04-01~</b> - -[ - + { + "count_purchased": 0, + "delivered": 0, + "clicked": 0, + "account_id": 100, + "clicked_unique": 0, + "shared": 0, + "mailings": 0, + "year": 2018, + "month": 4, + "opened": 7, + "opted_out": 0, + "sent": 0, + "signed_up": 0, + "webview_shared": 0, + "share_clicked": 0, + "bounced": 0, + "webview_share_clicked": 0, + "sum_purchased": 0, + "forwarded": 0 + }, + { + "count_purchased": 0, + "delivered": 0, + "clicked": 0, + "account_id": 100, + "clicked_unique": 0, + "shared": 0, + "mailings": 0, + "year": 2018, + "month": 3, + "opened": 0, + "opted_out": 0, + "sent": 0, + "signed_up": 0, + "webview_shared": 0, + "share_clicked": 0, + "bounced": 0, + "webview_share_clicked": 0, + "sum_purchased": 0, + "forwarded": 0 + } ] </pre> @@ -190,10 +219,51 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head <span style="font-weight:bold;">Sample Response</span> <a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> <pre class="response"> -<b>GET /100/response?range=2011-04-01~2011-09-01</b> +<b>GET /100/response?range=2018-04-01~2018-06-01</b> [ - + { + "count_purchased": 0, + "delivered": 0, + "clicked": 0, + "account_id": 100, + "clicked_unique": 0, + "shared": 0, + "mailings": 0, + "year": 2018, + "month": 5, + "opened": 0, + "opted_out": 0, + "sent": 0, + "signed_up": 0, + "webview_shared": 0, + "share_clicked": 0, + "bounced": 0, + "webview_share_clicked": 0, + "sum_purchased": 0, + "forwarded": 0 + }, + { + "count_purchased": 0, + "delivered": 0, + "clicked": 0, + "account_id": 100, + "clicked_unique": 0, + "shared": 0, + "mailings": 0, + "year": 2018, + "month": 4, + "opened": 0, + "opted_out": 0, + "sent": 0, + "signed_up": 0, + "webview_shared": 0, + "share_clicked": 0, + "bounced": 0, + "webview_share_clicked": 0, + "sum_purchased": 0, + "forwarded": 0 + } ] </pre> @@ -210,21 +280,30 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head <dl class="docutils"> <dt><strong>Returns:</strong></dt> <dd>A single object with the following fields: -* <strong>name</strong> – name of mailing -* <strong>subject</strong> – subject of the mailing -* <strong>sent</strong> – messages sent -* <strong>delivered</strong> – messages delivered -* <strong>bounced</strong> – messages that failed delivery due to a hard or soft bounce -* <strong>opened</strong> – messages opened -* <strong>clicked_unique</strong> – link clicks, unique on message -* <strong>clicked</strong> – total link clicks, including duplicates -* <strong>forwarded</strong> – times the mailing was forwarded -* <strong>opted_out</strong> – people who opted out based on this mailing -* <strong>signed_up</strong> – people who signed up based on this mailing -* <strong>shared</strong> – people who shared this mailing -* <strong>share_clicked</strong> – number of clicks shares of this mailing received -* <strong>webview_shared</strong> – number of times the customer has shared -* <strong>webview_share_clicked</strong> – number of clicks customer-shares of this mailing received</dd> +<li><strong>name</strong> – name of mailing</li> +<li><strong>subject</strong> – subject of the mailing</li> +<li><strong>recipient_count</strong> – count of people this mailing was sent to</li> +<li><strong>sent</strong> – messages sent</li> +<li><strong>delivered</strong> – messages delivered</li> +<li><strong>in_progress</strong> – messages still being attempted</li> +<li><strong>bounced</strong> – messages that failed delivery due to a hard or soft bounce</li> +<li><strong>opened</strong> – messages opened</li> +<li><strong>clicked_unique</strong> – link clicks, unique on message</li> +<li><strong>clicked</strong> – total link clicks, including duplicates</li> +<li><strong>forwarded</strong> – times the mailing was forwarded</li> +<li><strong>opted_out</strong> – people who opted out based on this mailing</li> +<li><strong>signed_up</strong> – people who signed up based on this mailing</li> +<li><strong>shared</strong> – people who shared this mailing</li> +<li><strong>share_clicked</strong> – number of clicks shares of this mailing received</li> +<li><strong>webview_shared</strong> – number of times the customer has shared</li> +<li><strong>webview_share_clicked</strong> – number of clicks customer-shares of this mailing received</li> +<li><strong>count_purchased</strong> – the total number of ecommerce orders +(this value will be 0 for accounts not using an ecommerce integration)</li> +<li><strong>sum_purchased</strong> – the total dollar amount of all ecommerce orders +(this value will be 0 for accounts not using an ecommerce integration)</li> +<li><strong>purchase_metrics</strong> – an object containing purchase metrics if ecommerce integrations are enabled +(this object will be empty for accounts not using an ecommerce integration)</li> +</dd> </dl> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> @@ -233,7 +312,8 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head <tr class="field-odd field"><th class="field-name">Raises:</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing does not exist.</td> </tr> <tr class="field-even field"><th class="field-name">Raises:</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing is not valid mailing type - ‘m’ for -standard mailings, ‘t’ for test mailings and ‘r’ for trigger mailings.</td> +standard mailings, ‘t’ for test mailings, ‘s’ for +subject split test mailings, and ‘r’ for trigger mailings.</td> </tr> </tbody> </table> @@ -245,23 +325,26 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head <b>GET /100/response/200</b> { - "delivered": 0, - "signed_up": 0, - "clicked": 0, - "forwarded": 0, - "clicked_unique": 0, - "webview_share_clicked": 0, - "subject": "Sample Mailing for [% member:first_name %] [% member:last_name %]", - "opened": 0, - "opted_out": 0, - "share_clicked": 0, - "shared": 0, - "webview_shared": 0, - "in_progress": 0, - "bounced": 0, - "recipient_count": 0, - "sent": 0, - "name": "Sample Mailing" + "purchase_metrics": {}, + "subject": "Sample Mailing for [% member:first_name %] [% member:last_name %]", + "count_purchased": 0, + "delivered": 0, + "clicked": 0, + "opened": 0, + "webview_shared": 0, + "recipient_count": 0, + "sent": 0, + "clicked_unique": 0, + "webview_share_clicked": 0, + "shared": 0, + "in_progress": 0, + "sum_purchased": 0, + "forwarded": 0, + "name": "Sample Mailing", + "opted_out": 0, + "signed_up": 0, + "share_clicked": 0, + "bounced": 0 } </pre> </div> @@ -278,7 +361,12 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head <ul class="last simple"> <li><strong>timestamp</strong> – time the message was sent</li> <li><strong>member_id</strong> – id of the message addressee</li> +<li><strong>member_since</strong> – time member was added to your audience</li> <li><strong>email</strong> – email of the message addressee</li> +<li><strong>email_user</strong> – email user of the message addressee</li> +<li><strong>email_domain</strong> – email domain of the message addressee</li> +<li><strong>member_status_id</strong> – addressee's status; a (active), e (error), o (opt out), or f (forward)</li> +<li><strong>fields</strong> – member field object</li> </ul> </dd> </dl> @@ -288,9 +376,10 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head <tbody valign="top"> <tr class="field-odd field"><th class="field-name">Raises:</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing does not exist.</td> </tr> -<tr class="field-even field"><th class="field-name">Raises:</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing is not valid -mailing type - ‘m’ for standard mailings, ‘t’ for test mailings and -‘r’ for trigger mailings.</td> +<tr class="field-even field"><th class="field-name">Raises:</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt>if the mailing is not valid mailing type - ‘m’ for +standard mailings, ‘t’ for test mailings, ‘s’ for +subject split test mailings, and ‘r’ for +trigger mailings.</td> </tr> </tbody> </table> @@ -308,9 +397,9 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head "last_name": "Smith", "favorite_food": "tacos" }, - "timestamp": "@D:2011-01-02T10:27:43", + "timestamp": "@D:2018-01-12T10:27:4", "member_id": 200, - "member_since": "@D:2010-11-12T11:23:45", + "member_since": "@D:2017-11-12T11:23:45", "email_domain": "myemma.com", "email_user": "emma", "email": "emma@myemma.com", @@ -322,9 +411,9 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head "last_name": "Jones", "favorite_food": "toast" }, - "timestamp": "@D:2011-01-02T10:27:43", + "timestamp": "@D:2018-01-12T10:27:4", "member_id": 201, - "member_since": "@D:2011-01-03T15:54:13", + "member_since": "@D:2018-01-03T15:54:13", "email_domain": "myemma.com", "email_user": "gladys", "email": "gladys@myemma.com", @@ -334,13 +423,27 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head "fields": { }, - "timestamp": "@D:2011-01-02T10:27:43", + "timestamp": "@D:2018-01-12T10:27:43", "member_id": 204, - "member_since": "@D:2010-12-13T23:12:44", + "member_since": "@D:2017-12-13T23:12:44", "email_domain": "myemma.com", "email_user": "bob", "email": "bob@myemma.com", - "member_status_id": "a" + "member_status_id": "e" + }, + { + "fields": { + "first_name": "Han", + "last_name": "Smith", + "favorite_food": "chocolate pudding" + }, + "timestamp": "@D:2018-01-12T10:27:43", + "member_id": 201, + "member_since": "@D:2018-01-03T15:54:13", + "email_domain": "myemma.com", + "email_user": "gladys", + "email": "gladys@myemma.com", + "member_status_id": "f" } ] @@ -360,6 +463,11 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head <ul class="last simple"> <li><strong>member_id</strong> – id of the message addressee</li> <li><strong>email</strong> – email of the message addressee</li> +<li><strong>email_user</strong> – email user of the addressee</li> +<li><strong>email_domain</strong> – email domain of the addressee</li> +<li><strong>member_since</strong> – date member was added to audience</li> +<li><strong>member_status_id</strong> – status of the member</li> +<li><strong>fields</strong> – member field object</li> </ul> </dd> </dl> @@ -370,7 +478,7 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head <tr class="field-odd field"><th class="field-name">Raises:</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing does not exist.</td> </tr> <tr class="field-even field"><th class="field-name">Raises:</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing is not valid -mailing type - ‘m’ for standard mailings, ‘t’ for test mailings and +mailing type - ‘m’ for standard mailings, ‘t’ for test mailings, ‘s’ for subject split test mailings, and ‘r’ for trigger mailings.</td> </tr> </tbody> @@ -426,8 +534,12 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head <col class="field-body" /> <tbody valign="top"> <tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first last simple"> -<li><strong>result</strong> (<em>string</em>) – Accepted options: ‘all’, ‘delivered’, +<li><strong>delivery_type</strong> (<em>string</em>) – Accepted options: ‘all’, ‘delivered’, +‘bounced’, ‘hard’, ‘soft’. Defaults to ‘all’, if not provided.</li> +<li><strong>del_status</strong> (<em>string</em>) – Accepted options: ‘all’, ‘delivered’, ‘bounced’, ‘hard’, ‘soft’. Defaults to ‘all’, if not provided.</li> +<li><strong>include_custom_fields</strong> (<em>boolean</em>) – flag to include custom member fields (defaults to true).</li> +<li><strong>include_children</strong> (<em>boolean</em>) – flag to include child mailings (defaults to true)</li> </ul> </td> </tr> @@ -441,6 +553,11 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head <li><strong>delivery_type</strong> – delivery outcome: <tt class="docutils literal"><span class="pre">delivered</span></tt>, <tt class="docutils literal"><span class="pre">hard</span></tt>, (bounce), or <tt class="docutils literal"><span class="pre">soft</span></tt> (bounce)</li> <li><strong>member_id</strong> – id of the message addressee</li> <li><strong>email</strong> – email of the message addressee</li> +<li><strong>email_user</strong> – email user of the addressee</li> +<li><strong>email_domain</strong> – email domain of the addressee</li> +<li><strong>member_since</strong> – date member was added to audience</li> +<li><strong>member_status_id</strong> – status of the member</li> +<li><strong>fields</strong> – member field object</li> </ul> </dd> </dl> @@ -451,7 +568,7 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head <tr class="field-odd field"><th class="field-name">Raises:</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing does not exist.</td> </tr> <tr class="field-even field"><th class="field-name">Raises:</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing is not valid -mailing type - ‘m’ for standard mailings, ‘t’ for test mailings and +mailing type - ‘m’ for standard mailings, ‘t’ for test mailings, ‘s’ for subject split test mailings, and ‘r’ for trigger mailings.</td> </tr> </tbody> @@ -499,6 +616,11 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head <li><strong>timestamp</strong> – time the message was opened</li> <li><strong>member_id</strong> – id of the message addressee</li> <li><strong>email</strong> – email of the message addressee</li> +<li><strong>email_user</strong> – email user of the addressee</li> +<li><strong>email_domain</strong> – email domain of the addressee</li> +<li><strong>member_since</strong> – date member was added to audience</li> +<li><strong>member_status_id</strong> – status of the member</li> +<li><strong>fields</strong> – member field object</li> </ul> </dd> </dl> @@ -509,7 +631,7 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head <tr class="field-odd field"><th class="field-name">Raises:</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing does not exist.</td> </tr> <tr class="field-even field"><th class="field-name">Raises:</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing is not valid -mailing type - ‘m’ for standard mailings, ‘t’ for test mailings and +mailing type - ‘m’ for standard mailings, ‘t’ for test mailings, ‘s’ for subject split test mailings, and ‘r’ for trigger mailings.</td> </tr> </tbody> @@ -555,6 +677,15 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head </p> </dd></dl> +<dl class="get"> +<dt id="get--#account_id-response-#mailing_id-opens"> +<tt class="descname">GET </tt><tt class="descname">/#account_id/response/#mailing_id/opens/#member_id</tt><a class="headerlink" href="#get--#account_id-response-#mailing_id-opens-#member_id" title="Permalink to this definition">¶</a></dt> +<dd><p>Determine if the specified member opened the mailing.</p> +<dl class="docutils"> +<dt><strong>Returns:</strong></dt> +<dd><p class="first">True or False depending on if the member opened the specified mailing</p> +</dd></dl></dd></dl> + <dl class="get"> <dt id="get--#account_id-response-#mailing_id-links"> <tt class="descname">GET </tt><tt class="descname">/#account_id/response/#mailing_id/links</tt><a class="headerlink" href="#get--#account_id-response-#mailing_id-links" title="Permalink to this definition">¶</a></dt> @@ -567,6 +698,7 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head <li><strong>link_order</strong> – order of the link in the mailing</li> <li><strong>link_name</strong> – friendly name for the link</li> <li><strong>link_target</strong> – link URL</li> +<li><strong>plaintext</strong> – boolean, is the link plaintext</li> <li><strong>unique_clicks</strong> – clicks on the link, unique per message</li> <li><strong>total_clicks</strong> – clicks on the link, total</li> </ul> @@ -579,7 +711,7 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head <tr class="field-odd field"><th class="field-name">Raises:</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing does not exist.</td> </tr> <tr class="field-even field"><th class="field-name">Raises:</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing is not valid -mailing type - ‘m’ for standard mailings, ‘t’ for test mailings and +mailing type - ‘m’ for standard mailings, ‘t’ for test mailings, ‘s’ for subject split test mailings, and ‘r’ for trigger mailings.</td> </tr> </tbody> @@ -620,6 +752,8 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head <tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first last simple"> <li><strong>member_id</strong> (<em>int</em>) – Limits results to a single member.</li> <li><strong>link_id</strong> (<em>int</em>) – Limits results to a single link.</li> +<li><strong>include_custom_fields</strong> (<em>boolean</em>) – flag to include custom member fields (defaults to true).</li> +<li><strong>include_children</strong> (<em>boolean</em>) – flag to include child mailings (defaults to true).</li> </ul> </td> </tr> @@ -631,8 +765,12 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head <ul class="last simple"> <li><strong>link_id</strong> – id of the clicked link</li> <li><strong>timestamp</strong> – time the link was clicked</li> -<li><strong>member_id</strong> – id of the message addressee</li> <li><strong>email</strong> – email of the message addressee</li> +<li><strong>email_user</strong> – email user of the addressee</li> +<li><strong>email_domain</strong> – email domain of the addressee</li> +<li><strong>member_since</strong> – date member was added to audience</li> +<li><strong>member_status_id</strong> – status of the member</li> +<li><strong>fields</strong> – member field object</li> </ul> </dd> </dl> @@ -643,7 +781,7 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head <tr class="field-odd field"><th class="field-name">Raises:</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing does not exist.</td> </tr> <tr class="field-even field"><th class="field-name">Raises:</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing is not valid -mailing type - ‘m’ for standard mailings, ‘t’ for test mailings and +mailing type - ‘m’ for standard mailings, ‘t’ for test mailings, ‘s’ for subject split test mailings, and ‘r’ for trigger mailings.</td> </tr> </tbody> @@ -678,6 +816,54 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head </p> </dd></dl> +<dl class="get"> +<dt id="get--#account_id-response-#mailing_id-clicks"> +<tt class="descname">GET </tt><tt class="descname">/#account_id/response/#mailing_id/clicks/#member_id</tt><a class="headerlink" href="#get--#account_id-response-#mailing_id-clicks-#member_id" title="Permalink to this definition">¶</a></dt> +<dd><p>Get the list of clicks for this mailing for the specified member.</p> +<dl class="docutils"> +<dt><strong>Returns:</strong></dt> +<dd><p class="first">An array of objects with the following fields:</p> +<ul class="last simple"> +<li><strong>link_id</strong> – id of the clicked link</li> +<li><strong>link_name</strong> – name of the link</li> +<li><strong>link_target</strong> – link url</li> +<li><strong>plaintext</strong> – bool, is link plaintext</li> +<li><strong>timestamp</strong> – timestamp when link was clicked</li> +</ul> +</dd> +</dl> +<table class="docutils field-list" frame="void" rules="none"> +<col class="field-name" /> +<col class="field-body" /> +<tbody valign="top"> +<tr class="field-odd field"><th class="field-name">Raises:</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing does not exist.</td> +</tr> +<tr class="field-even field"><th class="field-name">Raises:</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing is not valid</td> +</tr> +</tbody> +</table> +<p> +<div class="sample-response hide-response"> +<span style="font-weight:bold;">Sample Response</span> +<a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>GET /100/response/200/clicks/300</b> + +[ + { + "plaintext": false, + "timestamp": "@D:2018-09-12T15:22:03", + "link_name": "Emma", + "link_target": "http://www.myemma.com", + "link_id": 400 + } +] + +</pre> +</div> +</p> +</dd></dl> + <dl class="get"> <dt id="get--#account_id-response-#mailing_id-forwards"> <tt class="descname">GET </tt><tt class="descname">/#account_id/response/#mailing_id/forwards</tt><a class="headerlink" href="#get--#account_id-response-#mailing_id-forwards" title="Permalink to this definition">¶</a></dt> @@ -689,7 +875,12 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head <li><strong>timestamp</strong> – time the mailing was forwarded</li> <li><strong>forward_mailing_id</strong> – id of the new mailing created to send the forward</li> <li><strong>member_id</strong> – id of the forwarding member</li> -<li><strong>email</strong> – email of the forwarding member</li> +<li><strong>email</strong> – email of the message addressee</li> +<li><strong>email_user</strong> – email user of the addressee</li> +<li><strong>email_domain</strong> – email domain of the addressee</li> +<li><strong>member_since</strong> – date member was added to audience</li> +<li><strong>member_status_id</strong> – status of the member</li> +<li><strong>fields</strong> – member field object</li> </ul> </dd> </dl> @@ -700,7 +891,7 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head <tr class="field-odd field"><th class="field-name">Raises:</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing does not exist.</td> </tr> <tr class="field-even field"><th class="field-name">Raises:</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing is not valid -mailing type - ‘m’ for standard mailings, ‘t’ for test mailings and +mailing type - ‘m’ for standard mailings, ‘t’ for test mailings, ‘s’ for subject split test mailings, and ‘r’ for trigger mailings.</td> </tr> </tbody> @@ -713,7 +904,28 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head <b>GET /100/response/200/forwards</b> [ - + { + "forward_mailing_id": 401, + "fields": {}, + "timestamp": "@D:2018-05-02T14:35:38", + "member_id": 300, + "member_since": "@D:2017-01-04T08:40:06", + "email_domain": "myemma.com", + "email_user": "susansmith", + "email": "susansmit@myemma.com", + "member_status_id": "a" + }, + { + "forward_mailing_id": 400, + "fields": {}, + "timestamp": "@D:2018-05-02T14:41:16", + "member_id": 500, + "member_since": "@D:2018-01-03T09:33:24", + "email_domain": "myemma.com", + "email_user": "janedoe", + "email": "janedoe@myemma.com", + "member_status_id": "a" + } ] </pre> @@ -731,9 +943,12 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head <ul class="last simple"> <li><strong>timestamp</strong> – time of the optout</li> <li><strong>member_id</strong> – id of the opted out member</li> -<li><strong>email</strong> – email of the opted out member</li> -<li><strong>first_name</strong> – first name of the opted out member</li> -<li><strong>last_name</strong> – last name of the opted out member</li> +<li><strong>email</strong> – email of the message addressee</li> +<li><strong>email_user</strong> – email user of the addressee</li> +<li><strong>email_domain</strong> – email domain of the addressee</li> +<li><strong>member_since</strong> – date member was added to audience</li> +<li><strong>member_status_id</strong> – status of the member</li> +<li><strong>fields</strong> – member field object</li> </ul> </dd> </dl> @@ -744,7 +959,7 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head <tr class="field-odd field"><th class="field-name">Raises:</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing does not exist.</td> </tr> <tr class="field-even field"><th class="field-name">Raises:</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing is not valid -mailing type - ‘m’ for standard mailings, ‘t’ for test mailings and +mailing type - ‘m’ for standard mailings, ‘t’ for test mailings, ‘s’ for subject split test mailings, and ‘r’ for trigger mailings.</td> </tr> </tbody> @@ -758,9 +973,7 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head [ { - "fields": { - - }, + "fields": {}, "timestamp": "@D:2011-01-02T13:56:16", "member_id": 204, "member_since": "@D:2010-12-13T23:12:44", @@ -785,11 +998,14 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head <dd><p class="first">An array of objects with the following fields:</p> <ul class="last simple"> <li><strong>member_id</strong> – id of the signed up member</li> -<li><strong>email</strong> – email of the signed up member</li> <li><strong>timestamp</strong> – time of the signup</li> -<li><strong>first_name</strong> – first name of the signed up member</li> -<li><strong>last_name</strong> – last name of the signed up member</li> <li><strong>ref_member_id</strong> – id of the referring member</li> +<li><strong>email</strong> – email of the message addressee</li> +<li><strong>email_user</strong> – email user of the addressee</li> +<li><strong>email_domain</strong> – email domain of the addressee</li> +<li><strong>member_since</strong> – date member was added to audience</li> +<li><strong>member_status_id</strong> – status of the member</li> +<li><strong>fields</strong> – member field object</li> </ul> </dd> </dl> @@ -800,7 +1016,7 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head <tr class="field-odd field"><th class="field-name">Raises:</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing does not exist.</td> </tr> <tr class="field-even field"><th class="field-name">Raises:</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing is not valid -mailing type - ‘m’ for standard mailings, ‘t’ for test mailings and +mailing type - ‘m’ for standard mailings, ‘t’ for test mailings, ‘s’ for subject split test mailings, and ‘r’ for trigger mailings.</td> </tr> </tbody> @@ -816,9 +1032,7 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head { "ref_member_id": 200, "mailing_mailing_id": 200, - "fields": { - - }, + "fields": {}, "timestamp": "@D:2011-01-05T15:28:11", "member_id": 205, "member_since": "@D:2011-01-05T15:28:11", @@ -844,8 +1058,51 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head <ul class="last simple"> <li><strong>member_id</strong> – id of the shared message</li> <li><strong>network</strong> – name of the network the share happened on</li> -<li><strong>clicks</strong> – number of clicks that the shared link received</li> +<li><strong>share_clicks</strong> – number of clicks that the shared link received</li> +<li><strong>email</strong> – email of the message addressee</li> +<li><strong>email_user</strong> – email user of the addressee</li> +<li><strong>email_domain</strong> – email domain of the addressee</li> +<li><strong>member_since</strong> – date member was added to audience</li> +<li><strong>member_status_id</strong> – status of the member</li> +<li><strong>fields</strong> – member field object</li> </ul> +<p> +<div class="sample-response hide-response"> +<span style="font-weight:bold;">Sample Response</span> +<a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>GET /100/response/200/shares</b> + +[ + { + "network": "email", + "share_clicks": 0, + "fields": {}, + "timestamp": "@D:2018-05-02T14:35:25", + "member_id": 123, + "member_since": "@D:2017-01-04T08:40:06", + "email_domain": "myemma.com", + "email_user": "johnsmith", + "email": "johnsmith@myemma.com", + "member_status_id": "a" + }, + { + "network": "email", + "share_clicks": 0, + "fields": {}, + "timestamp": "@D:2018-05-02T14:40:38", + "member_id": 456, + "member_since": "@D:2018-01-03T09:33:24", + "email_domain": "myemma.com", + "email_user": "someone", + "email": "someone@myemma.com", + "member_status_id": "a" + } +] + +</pre> +</div> +</p> </dd> </dl> <table class="docutils field-list" frame="void" rules="none"> @@ -855,7 +1112,7 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head <tr class="field-odd field"><th class="field-name">Raises:</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing does not exist.</td> </tr> <tr class="field-even field"><th class="field-name">Raises:</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing is not valid -mailing type - ‘m’ for standard mailings, ‘t’ for test mailings and +mailing type - ‘m’ for standard mailings, ‘t’ for test mailings, ‘s’ for subject split test mailings, and ‘r’ for trigger mailings.</td> </tr> </tbody> @@ -872,7 +1129,26 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head <ul class="last simple"> <li><strong>timestamp</strong> – timestamp of the shared link click</li> <li><strong>network</strong> – name of the network the share happened on</li> +<li><strong>customer_shares</strong> – number of shares</li> </ul> +<p> +<div class="sample-response hide-response"> +<span style="font-weight:bold;">Sample Response</span> +<a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>GET /100/response/200/customer_shares</b> + +[ + { + "timestamp": "@D:2017-05-25T16:00:00", + "customer_shares": 0, + "network": "facebook" + } +] + +</pre> +</div> +</p> </dd> </dl> <table class="docutils field-list" frame="void" rules="none"> @@ -882,7 +1158,7 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head <tr class="field-odd field"><th class="field-name">Raises:</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing does not exist.</td> </tr> <tr class="field-even field"><th class="field-name">Raises:</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing is not valid -mailing type - ‘m’ for standard mailings, ‘t’ for test mailings and +mailing type - ‘m’ for standard mailings, ‘t’ for test mailings, ‘s’ for subject split test mailings, and ‘r’ for trigger mailings.</td> </tr> </tbody> @@ -899,8 +1175,31 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head <ul class="last simple"> <li><strong>timestamp</strong> – timestamp of the shared link click</li> <li><strong>network</strong> – name of the network the share happened on</li> -<li><strong>clicks</strong> – number of clicks that the shared link received</li> +<li><strong>customer_share_clicks</strong> – number of clicks that the shared link received</li> </ul> +<p> +<div class="sample-response hide-response"> +<span style="font-weight:bold;">Sample Response</span> +<a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>GET /100/response/200/customer_share_clicks</b> + +[ + { + "timestamp": "@D:2017-05-25T16:00:03", + "network": "facebook", + "customer_share_clicks": 1 + }, + { + "timestamp": "@D:2017-05-25T16:00:15", + "network": "facebook", + "customer_share_clicks": 1 + } +] + +</pre> +</div> +</p> </dd> </dl> <table class="docutils field-list" frame="void" rules="none"> @@ -910,7 +1209,7 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head <tr class="field-odd field"><th class="field-name">Raises:</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing does not exist.</td> </tr> <tr class="field-even field"><th class="field-name">Raises:</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing is not valid -mailing type - ‘m’ for standard mailings, ‘t’ for test mailings and +mailing type - ‘m’ for standard mailings, ‘t’ for test mailings, ‘s’ for subject split test mailings, and ‘r’ for trigger mailings.</td> </tr> </tbody> @@ -929,6 +1228,22 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head <li><strong>network</strong> – name of the network the share happened on</li> <li><strong>share_status</strong> – status of the share</li> </ul> +<p> +<div class="sample-response hide-response"> +<span style="font-weight:bold;">Sample Response</span> +<a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>GET /100/response/300/customer_share</b> + +{ + "timestamp": "@D:2018-02-17T08:33:23", + "network": "facebook", + "share_status": "c" +} + +</pre> +</div> +</p> </dd> </dl> <table class="docutils field-list" frame="void" rules="none"> @@ -938,13 +1253,50 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head <tr class="field-odd field"><th class="field-name">Raises:</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing does not exist.</td> </tr> <tr class="field-even field"><th class="field-name">Raises:</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing is not valid -mailing type - ‘m’ for standard mailings, ‘t’ for test mailings and +mailing type - ‘m’ for standard mailings, ‘t’ for test mailings, ‘s’ for subject split test mailings, and ‘r’ for trigger mailings.</td> </tr> </tbody> </table> </dd></dl> +<dl class="put"> +<dt id="get--#account_id-response-#share_id-customer_share"> +<tt class="descname">PUT </tt><tt class="descname">/#account_id/response/#mailing_id/customer_share_status</tt><a class="headerlink" href="#put--#account_id-response-#share_id-customer_share_status" title="Permalink to this definition">¶</a></dt> +<dd><p>Update a customer share status.</p> +<dl class="docutils"> + <table class="docutils field-list" frame="void" rules="none"> +<col class="field-name" /> +<col class="field-body" /> +<tbody valign="top"> +<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first last simple"> +<li><strong>status_to</strong> (<em>str</em>) – The status to which you want to change the customer share. Options include: +<span>x - mailing has been cancelled, share was not posted.</span> +<span>c - share has been successfully posted.</span> +<span>r - network access has been revoked.</span> +</li> +<li><strong>share_id</strong> (<em>int</em>) – The id of the share you want to update.</li> +</ul> +</td> +</tr> +</tbody> +</table> +<dt><strong>Returns:</strong></dt> +<dd><p class="first">The updated status of the customer share.</p> +</dd> +</dl> +<table class="docutils field-list" frame="void" rules="none"> +<col class="field-name" /> +<col class="field-body" /> +<tbody valign="top"> +<tr class="field-odd field"><th class="field-name">Raises:</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the customer share does not exist.</td> +</tr> +<tr class="field-even field"><th class="field-name">Raises:</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing does not exist</td> +</tr> +</tbody> +</table> +</dd></dl> + <dl class="get"> <dt id="get--#account_id-response-#mailing_id-shares-overview"> <tt class="descname">GET </tt><tt class="descname">/#account_id/response/#mailing_id/shares/overview</tt><a class="headerlink" href="#get--#account_id-response-#mailing_id-shares-overview" title="Permalink to this definition">¶</a></dt> @@ -969,8 +1321,146 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head </tr> </tbody> </table> +<p> +<div class="sample-response hide-response"> +<span style="font-weight:bold;">Sample Response</span> +<a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>GET /100/response/200/shares/overview</b> + +[ + { + "share_count": 0, + "share_clicks": 0, + "network": "email" + }, + { + "share_count": 0, + "share_clicks": 0, + "network": "linkedin" + }, + { + "share_count": 0, + "share_clicks": 0, + "network": "twitter" + } +] + +</pre> +</div> +</p> +</dd> +</dl> + +<dl class="get"> +<dt id="get--#account_id-response"> +<tt class="descname">GET </tt><tt class="descname">/#account_id/response/#mailing_id/split_test_info</tt><a class="headerlink" href="#get--#account_id-response-#mailing_id-split_test_info" title="Permalink to this definition">¶</a></dt> +<dd><p>Get information about the split test for the given parent mailing_id.</p> +<dl class="docutils"> +<dt><strong>Returns:</strong></dt> +<dd><p class="first">An object with the following attributes:</p> +<ul class="last simple"> +<li><strong>test_in_progress</strong> – boolean indicating whether the test is still underway</li> +<li><strong>autosend_on</strong> – boolean indicating whether the test will (or did) autosend on completion</li> +<li><strong>autosend_time</strong> – timestamp when the test will (or did) autosend. If autosend_on is false, this will be null</li> +<li><strong>num_test_recipients</strong> – number of recipients that received a test message</li> +<li><strong>test_started_ts</strong> – the timestamp of when the test started</li> +<li><strong>test_ended_ts</strong> – the timetamp of when the test ended</li> +<li><strong>winner_auto</strong> – the mailing id that was automatically determined to be the winner</li> +<li><strong>winner_manual</strong> – the mailing id that was manually chosen as the winner</li> +<li><strong>responses</strong> – an array of objects with the same fields as those returned by get_response_overview, plus: +<div><strong>variant</strong> – - an identifier for the variant this is the response data for. It will be 'a' 'b' or 'c'.</div> +<div><strong>opened_pct</strong> – - the percentage of sent emails that were opened</div> +<div><strong>clicked_pct</strong> – - the percentage of sent emails that were clicked</div> +<div><strong>shared_pct</strong> – - the percentge of opened emails that were shared</div> +<div><strong>signed_up_pct</strong> – - the percentage of opened emails that had signups</div> +<div><strong>opted_out_pct</strong> – - the percentage of delivered emails that had optouts</div> +<div><strong>winner</strong> – - if present, indicates that this variant was the winner</div> +<div><strong>subject</strong> – - the subject of the given variant</div> +</li> +</ul> +</dd> +</dl> +<table class="docutils field-list" frame="void" rules="none"> +<col class="field-name" /> +<col class="field-body" /> +<tbody valign="top"> +<tr class="field-odd field"><th class="field-name">Raises:</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing does not exist.</td> +</tr> +<tr class="field-even field"><th class="field-name">Raises:</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the mailing is not a split_test parent mailing</td> +</tr> +</tbody> +</table> +<p> +<div class="sample-response hide-response"> +<span style="font-weight:bold;">Sample Response</span> +<a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>GET /100/response/200/split_test_info</b> + +{ + "test_started_ts": "@D:2018-09-10T08:52:27", + "autosend_time": "@D:2018-09-10T09:52:27", + "responses": [ + { + "clicked_pct": 0, + "delivered": 0, + "opened_pct": 00.0, + "clicked": 0, + "opened": 0, + "clicked_unique": 0, + "opted_out_pct": 0, + "mailing_id": 300, + "is_winner": true, + "variant": "a", + "subject": "A", + "opted_out": 0, + "signed_up_pct": 0, + "signed_up": 0, + "shared": 0, + "share_clicked": 0, + "bounced": 0, + "shared_pct": 0, + "sent": 0, + "forwarded": 0 + }, + { + "clicked_pct": 0, + "delivered": 0, + "opened_pct": 0, + "clicked": 0, + "opened": 0, + "clicked_unique": 0, + "opted_out_pct": 0, + "mailing_id": 400, + "is_winner": false, + "variant": "b", + "subject": "B", + "opted_out": 0, + "signed_up_pct": 0, + "signed_up": 0, + "shared": 0, + "share_clicked": 0, + "bounced": 0, + "shared_pct": 0, + "sent": 0, + "forwarded": 0 + } + ], + "test_in_progress": false, + "test_ended_ts": "@D:2018-09-10T09:53:04", + "winner_manual": null, + "autosend_on": true, + "winner_auto": 300, + "num_test_recipients": 0 +} + +</pre> +</div> +</p> </dd></dl> + </div> From 9a0b7fdbcec4551cd78a0af6ee1a7172bb1620a0 Mon Sep 17 00:00:00 2001 From: Courey Elliott <coureyelliott@gmail.com> Date: Fri, 28 Sep 2018 14:05:37 -0500 Subject: [PATCH 151/219] tweaking hrefs --- api/external/response.html | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/api/external/response.html b/api/external/response.html index 9b520fc..5c4df8f 100644 --- a/api/external/response.html +++ b/api/external/response.html @@ -397,7 +397,7 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head "last_name": "Smith", "favorite_food": "tacos" }, - "timestamp": "@D:2018-01-12T10:27:4", + "timestamp": "@D:2018-01-12T10:27:40", "member_id": 200, "member_since": "@D:2017-11-12T11:23:45", "email_domain": "myemma.com", @@ -411,7 +411,7 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head "last_name": "Jones", "favorite_food": "toast" }, - "timestamp": "@D:2018-01-12T10:27:4", + "timestamp": "@D:2018-01-12T10:27:40", "member_id": 201, "member_since": "@D:2018-01-03T15:54:13", "email_domain": "myemma.com", @@ -678,7 +678,7 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head </dd></dl> <dl class="get"> -<dt id="get--#account_id-response-#mailing_id-opens"> +<dt id="#get--#account_id-response-#mailing_id-opens-#member_id"> <tt class="descname">GET </tt><tt class="descname">/#account_id/response/#mailing_id/opens/#member_id</tt><a class="headerlink" href="#get--#account_id-response-#mailing_id-opens-#member_id" title="Permalink to this definition">¶</a></dt> <dd><p>Determine if the specified member opened the mailing.</p> <dl class="docutils"> @@ -817,7 +817,7 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head </dd></dl> <dl class="get"> -<dt id="get--#account_id-response-#mailing_id-clicks"> +<dt id="get--#account_id-response-#mailing_id-clicks-#member_id"> <tt class="descname">GET </tt><tt class="descname">/#account_id/response/#mailing_id/clicks/#member_id</tt><a class="headerlink" href="#get--#account_id-response-#mailing_id-clicks-#member_id" title="Permalink to this definition">¶</a></dt> <dd><p>Get the list of clicks for this mailing for the specified member.</p> <dl class="docutils"> @@ -1261,7 +1261,7 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head </dd></dl> <dl class="put"> -<dt id="get--#account_id-response-#share_id-customer_share"> +<dt id="get--#account_id-response-#share_id-customer_share_status"> <tt class="descname">PUT </tt><tt class="descname">/#account_id/response/#mailing_id/customer_share_status</tt><a class="headerlink" href="#put--#account_id-response-#share_id-customer_share_status" title="Permalink to this definition">¶</a></dt> <dd><p>Update a customer share status.</p> <dl class="docutils"> @@ -1353,7 +1353,7 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head </dl> <dl class="get"> -<dt id="get--#account_id-response"> +<dt id="get--#account_id-response-#mailing_id-split_test_info"> <tt class="descname">GET </tt><tt class="descname">/#account_id/response/#mailing_id/split_test_info</tt><a class="headerlink" href="#get--#account_id-response-#mailing_id-split_test_info" title="Permalink to this definition">¶</a></dt> <dd><p>Get information about the split test for the given parent mailing_id.</p> <dl class="docutils"> From 3c65c64a89b466b557d0eeeaacb56fb3438844e4 Mon Sep 17 00:00:00 2001 From: biggert <jbiggert@myemma.com> Date: Fri, 28 Sep 2018 14:43:35 -0500 Subject: [PATCH 152/219] Synchronize members api docs to audience docs --- api/external/members.html | 93 ++++++++++++++++++++++++++++++++++----- 1 file changed, 82 insertions(+), 11 deletions(-) diff --git a/api/external/members.html b/api/external/members.html index 81736ff..4ca8fb2 100644 --- a/api/external/members.html +++ b/api/external/members.html @@ -122,8 +122,15 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli <col class="field-body" /> <tbody valign="top"> <tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> -<li><strong>deleted</strong> (<em>boolean</em>) – Accepts True or 1. Optional flag to include deleted -members.</li> + <li><strong>deleted</strong> (<em>boolean</em>) – Accepts True or 1. Optional flag to include deleted members.</li> + <li><strong>deleted_only</strong> (<em>boolean</em>) – Accepts True or 1. Optional flag to return only deleted members.</li> + <li><strong>deleted_range</strong> (<em>string</em>) – Accepts 2 dates (YYYY-MM-DD) delimited by a tilde (~). + Example: ``2011-04-01~2011-09-01`` + Optional argument to limit results to a date range. If one of the + dates is omitted, the default will be either min date or now. If + a single date is provided with no tilde, then only members deleted + on that date will be included.</li> + <li><strong>exclude_fields</strong> (<em>boolean</em>) – Accepts True or 1. Optional flag to return only the base attributes of a member</li> </ul> </td> </tr> @@ -1039,6 +1046,13 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> +<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> + <li><strong>all</strong> (<em>boolean</em>) – Accepts False or 0. Optional flag to return all members imported by this import.</li> + <li><strong>added_only</strong> (<em>boolean</em>) – Accepts False or 0. Optional flag to return only members added by this import.</li> + <li><strong>added_to_groups</strong> (<em>boolean</em>) – Accepts False or 0. Optional flag to return only members added to a group by this import.</li> +</ul> +</td> +</tr> <tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">A list of members in the given account and import.</td> </tr> </tbody> @@ -1085,19 +1099,24 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli { "import_id": 200, - "status": "o", # for okay (or "e" for error) - "style": null, - "import_started": "@D:2010-12-13T23:12:44", "account_id": 100, - "error_message": null, - "num_members_updated": 0, + "import_started": "@D:2010-12-13T23:12:44", + "import_finished": null, + "source_name": null, "source_filename": null, - "fields_updated": [], "num_members_added": 0, - "import_finished": null, - "groups_updated": [], + "num_members_updated": 0, + "num_added_by_group": [], + "num_duplicates": 0, "num_skipped": 0, - "num_duplicates": 0 + "num_members": 0, + "num_errors": 0, + "groups_updated": [], + "fields_updated": [], + "status": "o", # for okay (or "e" for error), + "error_message": null, + "style": null, + "automated_field_changes": null } </pre> </div> @@ -1213,6 +1232,58 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli </div> </p> </dd></dl> + <dl class="post"> + <dt id="post--#account_id-members-purge"> + <tt class="descname">POST </tt><tt class="descname">/#account_id/members/purge</tt><a class="headerlink" href="#post--#account_id-members-purge" title="Permalink to this definition">¶</a></dt> + <dd><dl class="docutils"> + <dt><p>Purge a list of members</p></dt> + <dt><p>This will provide compliance with GDPR right to erasure ('right to be forgotten').</p></dt> + </dl> + <table class="docutils field-list" frame="void" rules="none"> + <col class="field-name" /> + <col class="field-body" /> + <tbody valign="top"> + <tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> + <li><strong>member_ids</strong> (<em>array of integers</em>) – An array of member ids to purge</li> + </ul> + </td> + </tr> + <tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">True</p> + </td> + </tr> + <tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http400</span></tt> if the specified status is invalid</p> + </td> + </tr> + </tbody> + </table> + </dd></dl> + <dl class="put"> + <dt id="put--#account_id-members-purgeall"> + <tt class="descname">PUT </tt><tt class="descname">/#account_id/members/purgeall</tt><a class="headerlink" href="#put--#account_id-members-purgeall" title="Permalink to this definition">¶</a></dt> + <dd><dl class="docutils"> + <dt><p>Purge all deleted members</p></dt> + <dt><p>This will provide compliance with GDPR right to erasure ('right to be forgotten').</p></dt> + </dl> + <table class="docutils field-list" frame="void" rules="none"> + <col class="field-name" /> + <col class="field-body" /> + <tbody valign="top"> + <tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> + <li><strong>member_status_id</strong> (<em>string</em>) – Optional. This is 'a' (active), 'o' (optout), or 'e' (error).</li> + <li><strong>member_group_id</strong> (<em>string</em>) – Optional. This is the id of the group</li> + </ul> + </td> + </tr> + <tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first">True</p> + </td> + </tr> + <tr class="field-odd field"><th class="field-name">Raises :</th><td class="field-body"><p class="first last"><tt class="docutils literal"><span class="pre">Http400</span></tt> if the specified status is invalid</p> + </td> + </tr> + </tbody> + </table> + <p> + </dd></dl> </div> From 83191ae7257dfe5fe0f29415ccf17dd55f1b16d5 Mon Sep 17 00:00:00 2001 From: Courey Elliott <coureyelliott@gmail.com> Date: Fri, 28 Sep 2018 15:37:41 -0500 Subject: [PATCH 153/219] fiddly bits --- api/external/response.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/api/external/response.html b/api/external/response.html index 5c4df8f..150981e 100644 --- a/api/external/response.html +++ b/api/external/response.html @@ -678,7 +678,7 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head </dd></dl> <dl class="get"> -<dt id="#get--#account_id-response-#mailing_id-opens-#member_id"> +<dt id="get--#account_id-response-#mailing_id-opens-#member_id"> <tt class="descname">GET </tt><tt class="descname">/#account_id/response/#mailing_id/opens/#member_id</tt><a class="headerlink" href="#get--#account_id-response-#mailing_id-opens-#member_id" title="Permalink to this definition">¶</a></dt> <dd><p>Determine if the specified member opened the mailing.</p> <dl class="docutils"> @@ -1261,7 +1261,7 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head </dd></dl> <dl class="put"> -<dt id="get--#account_id-response-#share_id-customer_share_status"> +<dt id="put--#account_id-response-#share_id-customer_share_status"> <tt class="descname">PUT </tt><tt class="descname">/#account_id/response/#mailing_id/customer_share_status</tt><a class="headerlink" href="#put--#account_id-response-#share_id-customer_share_status" title="Permalink to this definition">¶</a></dt> <dd><p>Update a customer share status.</p> <dl class="docutils"> From 8629634b135cc00067c67718b15d57b19adcf452 Mon Sep 17 00:00:00 2001 From: biggert <jbiggert@myemma.com> Date: Fri, 28 Sep 2018 23:21:09 -0500 Subject: [PATCH 154/219] Add exports documentation --- api/external/members.html | 134 +++++++++++++++++++++++++++++++++++++- 1 file changed, 133 insertions(+), 1 deletion(-) diff --git a/api/external/members.html b/api/external/members.html index 81736ff..e95c81d 100644 --- a/api/external/members.html +++ b/api/external/members.html @@ -1213,7 +1213,139 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli </div> </p> </dd></dl> - + <dl class="get"> + <dt id="get--#account_id-exports"> + <tt class="descname">GET </tt><tt class="descname">/#account_id/exports</tt><a class="headerlink" href="#get--#account_id-exports" title="Permalink to this definition">¶</a></dt> + <dd><p>Get a listing of all exports in an account.</p> + <table class="docutils field-list" frame="void" rules="none"> + <col class="field-name" /> + <col class="field-body" /> + <tbody valign="top"> + <tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> + <li><strong>export_type</strong> (<em>string</em>) – 'a' audience, 'm' individual member export</li> + </ul> + </td> + </tr> + <tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first last">A list of exports in the given account.</p> + </td> + </tr> + </tbody> + </table> + </dd></dl> + <dl class="post"> + <dt id="post--#account_id-exports"> + <tt class="descname">POST </tt><tt class="descname">/#account_id/exports</tt><a class="headerlink" href="#post--#account_id-exports" title="Permalink to this definition">¶</a></dt> + <dd><p>Create an export of a list of members.</p> + <table class="docutils field-list" frame="void" rules="none"> + <col class="field-name" /> + <col class="field-body" /> + <tbody valign="top"> + <tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> + <li><strong>name</strong> (<em>string</em>) – Export name</li> + <li><strong>criteria</strong> (<em>dictionary</em>) – Describes what should be exported + <ul class="first simple"> + <li><strong>groups</strong> (<em>array of integers</em>) – List of Group IDs</li> + <li><strong>segments</strong> (<em>array of integers</em>) – List of Segment IDs</li> + <li><strong>member_ids</strong> (<em>array of integers</em>) – List of Member IDs</li> + <br /> + <p>The list of members to be exported will be a union of the members included + in each provided group and segment, and the list of member_ids</p> + <br /> + <li><strong>member_status_ids</strong> (<em>array of strings</em>) – Status of the members</li> + <li><strong>include_fields</strong> – Accepts True or an array of strings. Optional flag to include all member fields or a list of member fields.</li> + </ul> + </li> + </ul> + </td> + </tr> + <tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first last">Export ID</p> + </td> + </tr> + </tbody> + </table> + </dd></dl> + <dl class="get"> + <dt id="get--#account_id-exports"> + <tt class="descname">GET </tt><tt class="descname">/#account_id/exports</tt><a class="headerlink" href="#get--#account_id-exports" title="Permalink to this definition">¶</a></dt> + <dd><p>Get a listing of all exports in an account.</p> + <table class="docutils field-list" frame="void" rules="none"> + <col class="field-name" /> + <col class="field-body" /> + <tbody valign="top"> + <tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> + <li><strong>export_type</strong> (<em>string</em>) – 'a' audience, 'm' individual member export</li> + </ul> + </td> + </tr> + <tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first last">A list of exports in the given account.</p> + </td> + </tr> + </tbody> + </table> + </dd></dl> + <dl class="get"> + <dt id="get--#account_id-exports-#export_id"> + <tt class="descname">GET </tt><tt class="descname">/#account_id/exports/#export_id</tt><a class="headerlink" href="#get--#account_id-exports-#export_id" title="Permalink to this definition">¶</a></dt> + <dd><p>Get detailed information on a particular export.</p> + <table class="docutils field-list" frame="void" rules="none"> + <col class="field-name" /> + <col class="field-body" /> + <tbody valign="top"> + <tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first last">A single export if it exists</p> + </td> + </tr> + </tbody> + </table> + <p> + <div class="sample-response hide-response"> + <span style="font-weight:bold;">Sample Response</span> + <a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> + <pre class="response"> +<b>GET /100/exports/200</b> +{ + "account_id": 100, + "export_id": 200, + "user_id": 300, + "created_at": "@D:2018-09-28T23:03:33", + "completed_at": null, + "status": "p", + "criteria": {"member_status_ids": ["a"]}, + "export_type": "a", + "export_name": "All Active Members" +} +</pre> + </div> + </p> + </dd></dl> + <dl class="post"> + <dt id="post--#account_id-exports-members-#member-id"> + <tt class="descname">POST </tt><tt class="descname">/#account_id/exports/members/#member_id</tt><a class="headerlink" href="#post--#account_id-exports-members-#member-id" title="Permalink to this definition">¶</a></dt> + <dd><p>Create an export of all information for an individual member.</p> + <p>This will provide compliance with GDPR right to data portability.</p> + <table class="docutils field-list" frame="void" rules="none"> + <col class="field-name" /> + <col class="field-body" /> + <tbody valign="top"> + <tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first last">Export ID</p> + </td> + </tr> + </tbody> + </table> + </dd></dl> + <dl class="get"> + <dt id="get--#account_id-exports-#export_id-download"> + <tt class="descname">GET </tt><tt class="descname">/#account_id/exports/#export_id/download</tt><a class="headerlink" href="#get--#account_id-exports-#export_id-download" title="Permalink to this definition">¶</a></dt> + <dd><p>Download the results of the specified export.</p> + <table class="docutils field-list" frame="void" rules="none"> + <col class="field-name" /> + <col class="field-body" /> + <tbody valign="top"> + <tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first last">Export results in CSV form.</p> + </td> + </tr> + </tbody> + </table> + </dd></dl> </div> From 5757e0cd5eba8003fa28083aea082cc61e0bd83b Mon Sep 17 00:00:00 2001 From: biggert <jbiggert@myemma.com> Date: Mon, 1 Oct 2018 14:37:50 -0500 Subject: [PATCH 155/219] Update webhooks documentation; clarify export download doc --- api/external/members.html | 4 +++- webhooks.html | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/api/external/members.html b/api/external/members.html index e95c81d..ca4c515 100644 --- a/api/external/members.html +++ b/api/external/members.html @@ -1340,7 +1340,9 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> - <tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first last">Export results in CSV form.</p> + <tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"> + <p class="first last">If the export_type is 'a' audience, download results in CSV form. <br /> + If the export_type is 'm' individual member export, download results as a zip file.</p> </td> </tr> </tbody> diff --git a/webhooks.html b/webhooks.html index 70cfe0f..dc59b3f 100644 --- a/webhooks.html +++ b/webhooks.html @@ -245,7 +245,9 @@ <h3>Import Finish<a class="headerlink" href="#import-finish" title="Permalink to <span class="s">"import_id"</span><span class="p">:</span> <span class="n">import_id</span><span class="p">,</span> <span class="s">"account_id"</span><span class="p">:</span> <span class="n">account_id</span><span class="p">,</span> <span class="s">"timestamp"</span><span class="p">:</span> <span class="n">timestamp</span><span class="p">,</span> - <span class="s">"resource_url"</span><span class="p">:</span> <span class="n">resource_url</span> + <span class="s">"resource_url"</span><span class="p">:</span> <span class="n">resource_url</span><span class="p">,</span> + <span class="s">"group_ids"</span><span class="p">:</span> <span class="n">group_ids</span><span class="p">,</span> + <span class="s">"contact_count"</span><span class="p">:</span> <span class="n">contact_count</span> <span class="p">}</span> <span class="p">}</span> </pre></div> From 6283756013e77c4a4327a7d3c2a957cdcfe0495b Mon Sep 17 00:00:00 2001 From: kcampen <katycampen@gmail.com> Date: Mon, 15 Oct 2018 14:18:26 -0500 Subject: [PATCH 156/219] updating emma rebrand logo --- _static/img/logo.png | Bin 10110 -> 7892 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/_static/img/logo.png b/_static/img/logo.png index 5f891acbb7f0d42894acd815ec97d87442a2cda3..bf6aa630fd3760135735a328ef55f6ab2d6d356b 100644 GIT binary patch literal 7892 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 literal 10110 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 From 0ede5087109988e277a8d529711520685be7706c Mon Sep 17 00:00:00 2001 From: Lance Roggendorff <lance.roggendorff@myemma.com> Date: Mon, 15 Oct 2018 14:39:36 -0500 Subject: [PATCH 157/219] Adjusting background-size for new logo. --- _static/emma.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_static/emma.css b/_static/emma.css index 4bc60c2..99c9ab5 100644 --- a/_static/emma.css +++ b/_static/emma.css @@ -494,7 +494,7 @@ pre { background:#fff; z-index:3; -webkit-border-radius:0; -moz-border-radius:0; /*Header - Main*/ header[role="banner"] { height:140px; max-width:940px; margin:16px auto 0; } -header[role="banner"] h1 { width:342px; height:86px; margin:40px 0 0 0; background:url(img/logo.png) no-repeat; text-indent:-9999px; background-size: 50%; } +header[role="banner"] h1 { width:342px; height:86px; margin:40px 0 0 0; background:url(img/logo.png) no-repeat; text-indent:-9999px; background-size: 61%; } /*Page*/ div.api_key_img { overflow: hidden; height:300px; } From 710f03ceb32baa7ef480502f774f08c90e5e8617 Mon Sep 17 00:00:00 2001 From: Lance Roggendorff <lroggendorff@gmail.com> Date: Mon, 15 Oct 2018 14:41:54 -0500 Subject: [PATCH 158/219] Revert "updating emma rebrand logo" --- _static/emma.css | 2 +- _static/img/logo.png | Bin 7892 -> 10110 bytes 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/_static/emma.css b/_static/emma.css index 99c9ab5..4bc60c2 100644 --- a/_static/emma.css +++ b/_static/emma.css @@ -494,7 +494,7 @@ pre { background:#fff; z-index:3; -webkit-border-radius:0; -moz-border-radius:0; /*Header - Main*/ header[role="banner"] { height:140px; max-width:940px; margin:16px auto 0; } -header[role="banner"] h1 { width:342px; height:86px; margin:40px 0 0 0; background:url(img/logo.png) no-repeat; text-indent:-9999px; background-size: 61%; } +header[role="banner"] h1 { width:342px; height:86px; margin:40px 0 0 0; background:url(img/logo.png) no-repeat; text-indent:-9999px; background-size: 50%; } /*Page*/ div.api_key_img { overflow: hidden; height:300px; } diff --git a/_static/img/logo.png b/_static/img/logo.png index bf6aa630fd3760135735a328ef55f6ab2d6d356b..5f891acbb7f0d42894acd815ec97d87442a2cda3 100644 GIT binary patch literal 10110 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 literal 7892 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 From 3acab13f97a2622174fa072e1455c23ffcc2ffa5 Mon Sep 17 00:00:00 2001 From: Lance Roggendorff <lance.roggendorff@myemma.com> Date: Mon, 15 Oct 2018 14:47:20 -0500 Subject: [PATCH 159/219] Ok, new logo is a go! This reverts commit 710f03ceb32baa7ef480502f774f08c90e5e8617. --- _static/emma.css | 2 +- _static/img/logo.png | Bin 10110 -> 7892 bytes 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/_static/emma.css b/_static/emma.css index 4bc60c2..99c9ab5 100644 --- a/_static/emma.css +++ b/_static/emma.css @@ -494,7 +494,7 @@ pre { background:#fff; z-index:3; -webkit-border-radius:0; -moz-border-radius:0; /*Header - Main*/ header[role="banner"] { height:140px; max-width:940px; margin:16px auto 0; } -header[role="banner"] h1 { width:342px; height:86px; margin:40px 0 0 0; background:url(img/logo.png) no-repeat; text-indent:-9999px; background-size: 50%; } +header[role="banner"] h1 { width:342px; height:86px; margin:40px 0 0 0; background:url(img/logo.png) no-repeat; text-indent:-9999px; background-size: 61%; } /*Page*/ div.api_key_img { overflow: hidden; height:300px; } diff --git a/_static/img/logo.png b/_static/img/logo.png index 5f891acbb7f0d42894acd815ec97d87442a2cda3..bf6aa630fd3760135735a328ef55f6ab2d6d356b 100644 GIT binary patch literal 7892 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 literal 10110 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 From d5f1fb49093854065084aaa354937b6addc4b4ee Mon Sep 17 00:00:00 2001 From: John Peregoy <john.peregoy@myemma.com> Date: Tue, 16 Oct 2018 14:12:57 -0500 Subject: [PATCH 160/219] update to brand colors, clean up affect --- _static/emma.css | 203 +++++++++++++++++++++++++++---------------- _static/pygments.css | 20 ++--- index.html | 9 +- webhooks.html | 21 ++--- 4 files changed, 153 insertions(+), 100 deletions(-) diff --git a/_static/emma.css b/_static/emma.css index 4bc60c2..1f4a424 100644 --- a/_static/emma.css +++ b/_static/emma.css @@ -8,22 +8,22 @@ - + @import url("basic.css"); - + /* -- page layout ----------------------------------------------------------- */ - + body { - font-family: 'Georgia', serif; - font-size: 15px; + font-family: 'Roboto', 'Helvetica', sans-serif; + font-size: 16px; background-color: white; - color: #000; + color: #1b1b1b; margin: 0; padding: 0; } div.document { - width: 940px; + width: 1280px; margin: 30px auto 0 auto; } @@ -33,17 +33,17 @@ div.documentwrapper { } div.bodywrapper { - margin: 0 0 0 220px; + margin: 0 0 0 320px; } div.sphinxsidebar { - width: 220px; + width: 300px; } hr { border: 1px solid #B1B4B6; } - + div.body { padding: 0 30px 0 30px; } @@ -52,7 +52,7 @@ img.floatingflask { padding: 0 0 10px 10px; float: right; } - + div.footer { width: 450px; margin: 20px auto 30px auto; @@ -68,17 +68,17 @@ div.footer a { div.related { display: none; } - + div.sphinxsidebar a { color: #444; text-decoration: none; - border-bottom: 1px dotted #999; + /* border-bottom: 1px dotted #999; */ } div.sphinxsidebar a:hover { - border-bottom: 1px solid #999; + /* border-bottom: 1px solid #999; */ } - + div.sphinxsidebar { font-size: 14px; line-height: 1.5; @@ -93,7 +93,7 @@ div.sphinxsidebarwrapper p.logo { margin: 0; text-align: center; } - + div.sphinxsidebar h3, div.sphinxsidebar h4 { font-family: 'Garamond', 'Georgia', serif; @@ -107,7 +107,7 @@ div.sphinxsidebar h4 { div.sphinxsidebar h4 { font-size: 20px; } - + div.sphinxsidebar h3 a { color: #444; } @@ -118,7 +118,7 @@ div.sphinxsidebar p.logo a:hover, div.sphinxsidebar h3 a:hover { border: none; } - + div.sphinxsidebar p { color: #555; margin: 10px 0; @@ -129,25 +129,25 @@ div.sphinxsidebar ul { padding: 0; color: #000; } - + div.sphinxsidebar input { border: 1px solid #ccc; font-family: 'Georgia', serif; font-size: 1em; } - + /* -- body styles ----------------------------------------------------------- */ - + a { color: #004B6B; text-decoration: underline; } - + a:hover { color: #6D4100; - text-decoration: underline; + /* text-decoration: underline; */ } - + div.body h1, div.body h2, div.body h3, @@ -159,25 +159,25 @@ div.body h6 { margin: 30px 0px 10px 0px; padding: 0; } - + div.body h1 { margin-top: 0; padding-top: 0; font-size: 240%; } div.body h2 { font-size: 180%; } div.body h3 { font-size: 150%; } div.body h4 { font-size: 130%; } div.body h5 { font-size: 100%; } div.body h6 { font-size: 100%; } - + a.headerlink { color: #ddd; padding: 0 4px; text-decoration: none; } - + a.headerlink:hover { color: #444; background: #eaeaea; } - + div.body p, div.body dd, div.body li { line-height: 1.4em; } @@ -224,20 +224,20 @@ div.note { background-color: #eee; border: 1px solid #ccc; } - + div.seealso { background-color: #ffc; border: 1px solid #ff6; } - + div.topic { background-color: #eee; } - + p.admonition-title { display: inline; } - + p.admonition-title:after { content: ":"; } @@ -331,7 +331,7 @@ ul, ol { margin: 10px 0 10px 30px; padding: 0; } - + pre { background: #eee; padding: 7px 30px; @@ -354,7 +354,7 @@ dl dl pre { margin-left: -90px; padding-left: 90px; } - + tt { background-color: #ecf0f3; color: #222; @@ -368,11 +368,11 @@ tt.xref, a tt { a.reference { text-decoration: none; - border-bottom: 1px dotted #004B6B; + /* border-bottom: 1px dotted #004B6B; */ } a.reference:hover { - border-bottom: 1px solid #6D4100; + /* border-bottom: 1px solid #6D4100; */ } a.footnote-reference { @@ -383,7 +383,7 @@ a.footnote-reference { } a.footnote-reference:hover { - border-bottom: 1px solid #6D4100; + /* border-bottom: 1px solid #6D4100; */ } a:hover tt { @@ -408,38 +408,38 @@ a:hover tt { * we normalize monospace styles ourselves * table font-size is reset in the HTML5 reset above so there is no need to repeat */ -body { font:15px/1.231 sans-serif; *font-size:small; } /* hack retained to preserve specificity */ +body { font:16px/1.231 sans-serif; *font-size:small; } /* hack retained to preserve specificity */ -body { font-family: "proxima-nova", sans-serif} +body { font-family: 'Roboto', 'Helvetica', sans-serif; } select, input, textarea, button { font:99% sans-serif; } -/* normalize monospace sizing +/* normalize monospace sizing * en.wikipedia.org/wiki/MediaWiki_talk:Common.css/Archive_11#Teletype_style_fix_for_Chrome */ pre, code, kbd, samp { font-family: monospace, sans-serif; } - -/* - * minimal base styles + +/* + * minimal base styles */ -body, select, input, textarea { - /* #444 looks better than black: twitter.com/H_FJ/statuses/11800719859 */ - color: #444; +body, select, input, textarea { + /* #444 looks better than black: twitter.com/H_FJ/statuses/11800719859 */ + color: #1b1b1b; /* set your base font here, to apply evenly */ - /* font-family: Georgia, serif; */ + /* font-family: Georgia, serif; */ } /* Headers (h1,h2,etc) have no default font-size or margin, - you'll want to define those yourself. */ -h1,h2,h3,h4,h5,h6 { font-weight: bold; } + you'll want to define those yourself. */ +h1,h2,h3,h4,h5,h6 { font-weight: 700; } -/* always force a scrollbar in non-IE */ +/* always force a scrollbar in non-IE */ html { overflow-y: scroll; } - + /* Accessible focus treatment: people.opera.com/patrickl/experiments/keyboard/test */ a:hover, a:active, a:focus, a::-moz-focus-inner { outline: none; } button::-moz-focus-inner, @@ -448,32 +448,32 @@ input[type="button"]::-moz-focus-inner, input[type="submit"]::-moz-focus-inner, input[type="file"] > input[type="button"]::-moz-focus-inner { border: none; } -a, a:active, a:visited { color: #607890; } -a:hover { color: #036; } +a, a:active, a:visited { color: #1b1b1b; } +a:hover { color: #1ac0b4; } ul, ol { margin-left: 1.8em; } ol { list-style-type: decimal; } /* Remove margins for navigation lists */ -nav ul, nav li { margin: 0; } +nav ul, nav li { margin: 0; } small { font-size: 85%; } strong, th { font-weight: bold; } -td, td img { vertical-align: top; } +td, td img { vertical-align: top; } sub { vertical-align: sub; font-size: smaller; } sup { vertical-align: super; font-size: smaller; } -pre { - padding: 15px; - +pre { + padding: 15px; + /* www.pathf.com/blogs/2008/05/formatting-quoted-code-in-blog-posts-css21-white-space-pre-wrap/ */ white-space: pre; /* CSS2 */ word-wrap: break-word; /* IE */ } - + textarea { overflow: auto; } /* thnx ivannikolic! www.sitepoint.com/blogs/2010/08/20/ie-remove-textarea-scrollbars/ */ .clearer { display:none; } @@ -485,7 +485,43 @@ textarea { overflow: auto; } /* thnx ivannikolic! www.sitepoint.com/blogs/2010/0 ********************************************************* ********************************************************/ -body { background:url(img/bg-header.png) 0 -10px repeat-x, url(img/bg-body.jpg); } +/* body { background:url(img/bg-header.png) 0 -10px repeat-x, url(img/bg-body.jpg); } */ + +div.sphinxsidebar { + width: 300px; +} +div.sphinxsidebarwrapper { + padding: 0 16px; +} + +/* searchbox */ +div.sphinxsidebarwrapper form.search { + display: -webkit-flex; + display: flex; + font-size: 14px; +} +div.sphinxsidebar #searchbox input[type=text] { + border-top-left-radius: 4px; + border-bottom-left-radius: 4px; + border-right: 0; + padding: 10px; + font-family: 'Roboto', sans-serif; + color: #1b1b1b; + flex: 1; +} +div.sphinxsidebar #searchbox input[type=text]:focus { outline: none; } +div.sphinxsidebar #searchbox input[type=submit] { + width: 50px; + background: #FF7055; + border-top-right-radius: 4px; + border-bottom-right-radius: 4px; + border-color: #FF7055; + font-family: 'Roboto', sans-serif; + color: white; + font-weight: 700; + text-transform: uppercase; + text-align: center; +} .highlight-python { position:relative; z-index:2; margin-bottom:12px; } .highlight-python:before { position:absolute; left:0; top:0; content:''; display:block; width:100%; height:100%; background:#ccc; -webkit-box-shadow:0 4px 4px #ccc; -moz-box-shadow:0 4px 4px #ccc; box-shadow:0 4px 4px #ccc; z-index:-1; opacity:.5; } @@ -493,7 +529,7 @@ pre { background:#fff; z-index:3; -webkit-border-radius:0; -moz-border-radius:0; /*Header - Main*/ -header[role="banner"] { height:140px; max-width:940px; margin:16px auto 0; } +header[role="banner"] { height:140px; max-width:1280px; margin:16px auto 0; } header[role="banner"] h1 { width:342px; height:86px; margin:40px 0 0 0; background:url(img/logo.png) no-repeat; text-indent:-9999px; background-size: 50%; } /*Page*/ @@ -503,25 +539,40 @@ div.document { position:relative; margin-top:0; } /*Sidebar*/ div.sphinxsidebar { } div.sphinxsidebarwrapper { } -div.sphinxsidebar a { color:#507B9B; } -div.sphinxsidebar h3, div.sphinxsidebar h3 a { position:relative; margin-top:24px; padding-top:6px; font-family:'proxima-nova-alt-ext-cond'; /*border-top:3px solid #666;*/ color:#999; font-weight: 600; text-transform: uppercase; text-decoration:none; border:none; } +div.sphinxsidebar a, div.sphinxsidebarwrapper > ul > li > a { color:#a1a1a1; transition: all .1s ease } +div.sphinxsidebar a:hover { color:#FF7055; } +div.sphinxsidebar h3, div.sphinxsidebar h3 a { position:relative; font-size:18px; margin-top:24px; padding-top:6px; font-family:'Roboto', 'Helvetica', sans-serif; /*border-top:3px solid #bababa;*/ color:#1B1B1B; font-weight: 700; text-transform: uppercase; text-decoration:none; border:none; } div.sphinxsidebar h3 a { border:none; } - div.sphinxsidebar h3:first-child { margin-top:0; } -/* div.sphinxsidebar h3:before { content:''; display:block; position:absolute; left:0; top:3px; width:100%; height:100%; border-top:1px solid #666; }*/ -div.sphinxsidebarwrapper > ul > li { margin-bottom:24px; } -div.sphinxsidebarwrapper > ul > li > a { } -div.sphinxsidebarwrapper > ul > li > a:hover { border:none; } +div.sphinxsidebar h3:first-child { margin-top:0; padding-top: 0; } +/* div.sphinxsidebar h3:before { content:''; display:block; position:absolute; left:0; top:3px; width:100%; height:100%; border-top:1px solid #bababa; }*/ +div.sphinxsidebarwrapper > ul > li { margin-bottom:36px; } +div.sphinxsidebarwrapper > ul > li > a:hover { color: #FF7055; } div.sphinxsidebar ul ul { margin-top:8px; } div.sphinxsidebar ul ul ul { margin-top:8px; } -div.sphinxsidebar li { margin-bottom:12px; /*font-weight:bold;*/ font-size:14px; } -div.sphinxsidebar li li { font-weight:normal; font-size:14px; } - div.sphinxsidebar li li a { color:#507B9B; } +div.sphinxsidebar li { margin-bottom:12px; font-size:16px; } +div.sphinxsidebar li li { font-weight:normal; font-size:16px; } +div.sphinxsidebar li ul { list-style: none; } +div.sphinxsidebar li li a { color: #BABABA; } +div.sphinxsidebar p.searchtip { font-size: 12px !important; } /*Main Content*/ div.bodywrapper { position:relative; z-index:2; } div.body { position:relative; padding:0 30px 30px; z-index:3; } - div.body h1 { margin-bottom:24px; font-family:"proxima-nova","Helvetica",Arial,sans-serif; font-weight:bold; font-size:32px; } - div.body .section { margin-top:24px; } - div.body .section:first-child { margin-top:0; } - div.body h2 { margin-top:24px; margin-bottom:12px; font-family:"proxima-nova","Helvetica",Arial,sans-serif; font-weight:bold; font-size:20px; color:#666; } -div.body p, div.body dd, div.body li { line-height: 140%; } +div.body h1 { margin-bottom:36px; font-family:'Roboto', 'Helvetica', sans-serif; font-weight:700; font-size:32px; } +div.body .section { margin-top:24px; } +div.body .section:first-child { margin-top:0; } +div.body h2 { margin-top:24px; margin-bottom:12px; font-family:'Roboto', 'Helvetica', sans-serif; font-weight:700; font-size:20px; color: #00B9AC; } +div.body p, div.body dd, div.body li { line-height: 170%; } +div.body a.reference { text-decoration: none; font-weight: 700; } +div.body dt { font-size: 18px; } +div.body dl dd { margin: 14px 0;} +div.body dd { + border: 1px solid #eaeaea; + border-radius: 4px; + background: #F0F4F7; + padding: 15px; +} +div.body dd ul { + margin: 0; + list-style: none; +} \ No newline at end of file diff --git a/_static/pygments.css b/_static/pygments.css index 1a14f2a..c9a3f41 100644 --- a/_static/pygments.css +++ b/_static/pygments.css @@ -1,12 +1,12 @@ -.highlight .hll { background-color: #ffffcc } +.highlight .hll { background-color: rgba(221,236,255,.5) } .highlight { background: #eeffcc; } -.highlight .c { color: #408090; font-style: italic } /* Comment */ +.highlight .c { color: #dbdbdb; font-style: italic } /* Comment */ .highlight .err { border: 1px solid #FF0000 } /* Error */ -.highlight .k { color: #007020; font-weight: bold } /* Keyword */ +.highlight .k { color: #00AFFF; font-weight: bold } /* Keyword */ .highlight .o { color: #666666 } /* Operator */ -.highlight .cm { color: #408090; font-style: italic } /* Comment.Multiline */ +.highlight .cm { color: #bababa; font-style: italic } /* Comment.Multiline */ .highlight .cp { color: #007020 } /* Comment.Preproc */ -.highlight .c1 { color: #408090; font-style: italic } /* Comment.Single */ +.highlight .c1 { color: #bababa; font-style: italic } /* Comment.Single */ .highlight .cs { color: #408090; background-color: #fff0f0 } /* Comment.Special */ .highlight .gd { color: #A00000 } /* Generic.Deleted */ .highlight .ge { font-style: italic } /* Generic.Emph */ @@ -27,7 +27,7 @@ .highlight .m { color: #208050 } /* Literal.Number */ .highlight .s { color: #4070a0 } /* Literal.String */ .highlight .na { color: #4070a0 } /* Name.Attribute */ -.highlight .nb { color: #007020 } /* Name.Builtin */ +.highlight .nb { color: #00AFFF } /* Name.Builtin */ .highlight .nc { color: #0e84b5; font-weight: bold } /* Name.Class */ .highlight .no { color: #60add5 } /* Name.Constant */ .highlight .nd { color: #555555; font-weight: bold } /* Name.Decorator */ @@ -37,23 +37,23 @@ .highlight .nl { color: #002070; font-weight: bold } /* Name.Label */ .highlight .nn { color: #0e84b5; font-weight: bold } /* Name.Namespace */ .highlight .nt { color: #062873; font-weight: bold } /* Name.Tag */ -.highlight .nv { color: #bb60d5 } /* Name.Variable */ +.highlight .nv { color: #ff7055 } /* Name.Variable */ .highlight .ow { color: #007020; font-weight: bold } /* Operator.Word */ .highlight .w { color: #bbbbbb } /* Text.Whitespace */ .highlight .mf { color: #208050 } /* Literal.Number.Float */ .highlight .mh { color: #208050 } /* Literal.Number.Hex */ -.highlight .mi { color: #208050 } /* Literal.Number.Integer */ +.highlight .mi { color: #053A5E } /* Literal.Number.Integer */ .highlight .mo { color: #208050 } /* Literal.Number.Oct */ .highlight .sb { color: #4070a0 } /* Literal.String.Backtick */ .highlight .sc { color: #4070a0 } /* Literal.String.Char */ .highlight .sd { color: #4070a0; font-style: italic } /* Literal.String.Doc */ -.highlight .s2 { color: #4070a0 } /* Literal.String.Double */ +.highlight .s2 { color: #053A5E } /* Literal.String.Double */ .highlight .se { color: #4070a0; font-weight: bold } /* Literal.String.Escape */ .highlight .sh { color: #4070a0 } /* Literal.String.Heredoc */ .highlight .si { color: #70a0d0; font-style: italic } /* Literal.String.Interpol */ .highlight .sx { color: #c65d09 } /* Literal.String.Other */ .highlight .sr { color: #235388 } /* Literal.String.Regex */ -.highlight .s1 { color: #4070a0 } /* Literal.String.Single */ +.highlight .s1 { color: #053A5E } /* Literal.String.Single */ .highlight .ss { color: #517918 } /* Literal.String.Symbol */ .highlight .bp { color: #007020 } /* Name.Builtin.Pseudo */ .highlight .vc { color: #bb60d5 } /* Name.Variable.Class */ diff --git a/index.html b/index.html index 79f9f7e..058ea25 100644 --- a/index.html +++ b/index.html @@ -24,8 +24,9 @@ <script src="http://code.jquery.com/jquery-1.4.min.js"></script> <script>window.jQuery || document.write('<script src="_static/jquery.js"><\/script>')</script> - <script type="text/javascript" src="//use.typekit.net/zfm0nfo.js"></script> - <script type="text/javascript">try{Typekit.load();}catch(e){}</script> + <!-- <script type="text/javascript" src="//use.typekit.net/zfm0nfo.js"></script> + <script type="text/javascript">try{Typekit.load();}catch(e){}</script> --> + <link href="https://fonts.googleapis.com/css?family=Roboto:400,700" rel="stylesheet"> <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="#" /> @@ -142,7 +143,7 @@ <h2>Overview<a class="headerlink" href="#overview" title="Permalink to this head <div class="section" id="api-wrappers"> <h2>API wrappers<a class="headerlink" href="#api-wrappers" title="Permalink to this headline">¶</a></h2> <p>Emma’s wrappers make it a breeze to connect to our API no matter which programming language you like to use. Just select your language and you’ll be able to integrate with Emma without the hassle of having to study all the ins and outs of our API first.</p> -<p>This collection is young (but growing!) and includes wrappers commissioned by Emma as well as some built by members of our community. Unless otherwise noted, all wrappers provide full coverage of our current API. If you see something that needs to be fixed or improved, please don’t hesitate submit a pull request. And if you’ve built a wrapper that you’d like to have listed here,<a class="reference external" href="mailto:integrations%40myemma.com">let us know!</a></p> +<p>This collection is young (but growing!) and includes wrappers commissioned by Emma as well as some built by members of our community. Unless otherwise noted, all wrappers provide full coverage of our current API. If you see something that needs to be fixed or improved, please don’t hesitate submit a pull request. And if you’ve built a wrapper that you’d like to have listed here, <a class="reference external" href="mailto:integrations%40myemma.com">let us know!</a></p> <dl class="docutils"> <dt><strong>PHP</strong></dt> <dd><p class="first"><a class="reference external" href="https://github.com/myemma/EmmaPHP">EmmaPHP</a> : Commissioned by Emma and built by Nashville developer <a class="reference external" href="https://github.com/dennismonsewicz">Dennis Monsewicz</a>.</p> @@ -273,7 +274,7 @@ <h2>API calls by category<a class="headerlink" href="#api-calls-by-category" tit <div class="section" id="api-rate-limit"> <h2>API rate limit<a class="headerlink" href="#api-rate-limit" title="Permalink to this headline">¶</a></h2> <p> - To prevent accidental overuse, calls to Emma's API are limited to 180 calls per + To prevent accidental overuse, calls to Emma's API are limited to 180 calls per minute. If you exceed the limit, you‘ll receive a response of 403 Rate Limit Exceeded until enough time has elapsed between calls. </p> </div> diff --git a/webhooks.html b/webhooks.html index dc59b3f..ad287cc 100644 --- a/webhooks.html +++ b/webhooks.html @@ -5,13 +5,13 @@ <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> - + <title>Emma API Documentation | Emma, Inc.</title> - + <link rel="stylesheet" href="_static/emma.css" type="text/css" /> <link rel="stylesheet" href="_static/pygments.css" type="text/css" /> - + <script type="text/javascript"> var DOCUMENTATION_OPTIONS = { URL_ROOT: './', @@ -21,12 +21,13 @@ HAS_SOURCE: true }; </script> - + <script src="http://code.jquery.com/jquery-1.4.min.js"></script> <script>window.jQuery || document.write('<script src="_static/jquery.js"><\/script>')</script> - - <script type="text/javascript" src="//use.typekit.net/zfm0nfo.js"></script> - <script type="text/javascript">try{Typekit.load();}catch(e){}</script> + + <!-- <script type="text/javascript" src="//use.typekit.net/zfm0nfo.js"></script> + <script type="text/javascript">try{Typekit.load();}catch(e){}</script> --> + <link href="https://fonts.googleapis.com/css?family=Roboto:400,700" rel="stylesheet"> <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" /> @@ -92,15 +93,15 @@ <h3>Navigation</h3> <li class="right" > <a href="member_search.html" title="Search Syntax" accesskey="P">previous</a> |</li> - <li><a href="index.html">audience 0.1 documentation</a> »</li> + <li><a href="index.html">audience 0.1 documentation</a> »</li> </ul> - </div> + </div> <div class="document"> <div class="documentwrapper"> <div class="bodywrapper"> <div class="body"> - + <div class="section" id="webhook-usage"> <span id="id1"></span><h1>Webhook Usage<a class="headerlink" href="#webhook-usage" title="Permalink to this headline">¶</a></h1> <div class="section" id="webhook-overview"> From ba3d768c2095b58e003c787153b0170171b055a7 Mon Sep 17 00:00:00 2001 From: John Peregoy <john.peregoy@myemma.com> Date: Tue, 16 Oct 2018 14:48:11 -0500 Subject: [PATCH 161/219] Replace Proxima with Roboto sitewide --- api/external/automation.html | 3 +- api/external/event_api.html | 3 +- api/external/fields.html | 45 +++++++------- api/external/groups.html | 41 ++++++------- api/external/mailings.html | 83 +++++++++++++------------ api/external/members.html | 9 ++- api/external/response.html | 5 +- api/external/searches.html | 63 ++++++++++--------- api/external/signup_forms.html | 3 +- api/external/triggers.html | 107 ++++++++++++++++----------------- api/external/webhooks.html | 27 ++++----- genindex.html | 21 +++---- http-routingtable.html | 19 +++--- index.html | 2 - member_search.html | 19 +++--- pagination.html | 19 +++--- php_get_member_example.html | 19 +++--- php_signup_example.html | 19 +++--- placeholders.html | 19 +++--- search.html | 27 ++++----- webhooks.html | 2 - 21 files changed, 266 insertions(+), 289 deletions(-) diff --git a/api/external/automation.html b/api/external/automation.html index 2b67375..c3bbca6 100644 --- a/api/external/automation.html +++ b/api/external/automation.html @@ -24,8 +24,7 @@ <script src="http://code.jquery.com/jquery-1.4.min.js"></script> <script>window.jQuery || document.write('<script src="_static/jquery.js"><\/script>')</script> - <script type="text/javascript" src="//use.typekit.net/zfm0nfo.js"></script> - <script type="text/javascript">try{Typekit.load();}catch(e){}</script> + <link href="https://fonts.googleapis.com/css?family=Roboto:400,700" rel="stylesheet"> <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" /> diff --git a/api/external/event_api.html b/api/external/event_api.html index b449d14..4684834 100644 --- a/api/external/event_api.html +++ b/api/external/event_api.html @@ -25,8 +25,7 @@ <script src="http://code.jquery.com/jquery-1.4.min.js"></script> <script>window.jQuery || document.write('<script src="_static/jquery.js"><\/script>')</script> - <script type="text/javascript" src="//use.typekit.net/zfm0nfo.js"></script> - <script type="text/javascript">try{Typekit.load();}catch(e){}</script> + <link href="https://fonts.googleapis.com/css?family=Roboto:400,700" rel="stylesheet"> <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" /> diff --git a/api/external/fields.html b/api/external/fields.html index 5954a27..6e0288f 100644 --- a/api/external/fields.html +++ b/api/external/fields.html @@ -5,13 +5,13 @@ <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> - + <title>Emma API Documentation | Emma, Inc.</title> - + <link rel="stylesheet" href="../../_static/emma.css" type="text/css" /> <link rel="stylesheet" href="../../_static/pygments.css" type="text/css" /> - + <script type="text/javascript"> var DOCUMENTATION_OPTIONS = { URL_ROOT: '../../', @@ -21,12 +21,11 @@ HAS_SOURCE: true }; </script> - + <script src="http://code.jquery.com/jquery-1.4.min.js"></script> <script>window.jQuery || document.write('<script src="_static/jquery.js"><\/script>')</script> - - <script type="text/javascript" src="//use.typekit.net/zfm0nfo.js"></script> - <script type="text/javascript">try{Typekit.load();}catch(e){}</script> + + <link href="https://fonts.googleapis.com/css?family=Roboto:400,700" rel="stylesheet"> <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" /> @@ -92,15 +91,15 @@ <h3>Navigation</h3> <li class="right" > <a href="../../index.html" title="Emma API" accesskey="P">previous</a> |</li> - <li><a href="../../index.html">audience 0.1 documentation</a> »</li> + <li><a href="../../index.html">audience 0.1 documentation</a> »</li> </ul> - </div> + </div> <div class="document"> <div class="documentwrapper"> <div class="bodywrapper"> <div class="body"> - + <div class="section" id="fields"> <h1>Fields<a class="headerlink" href="#fields" title="Permalink to this headline">¶</a></h1> <p>These endpoints let you create, edit, update and delete all of the custom @@ -225,16 +224,16 @@ <h1>Fields<a class="headerlink" href="#fields" title="Permalink to this headline <b>GET /100/fields/200</b> { - "shortcut_name": "first_name", - "display_name": "First Name", - "account_id": 100, - "field_type": "text", - "required": false, - "field_id": 200, - "widget_type": "text", - "short_display_name": null, - "column_order": 1, - "deleted_at": null, + "shortcut_name": "first_name", + "display_name": "First Name", + "account_id": 100, + "field_type": "text", + "required": false, + "field_id": 200, + "widget_type": "text", + "short_display_name": null, + "column_order": 1, + "deleted_at": null, "options": null } </pre> @@ -276,9 +275,9 @@ <h1>Fields<a class="headerlink" href="#fields" title="Permalink to this headline <pre class="response"> <b>POST /100/fields</b> { - "shortcut_name": "new_boolean", - "column_order": 3, - "display_name": "A New Boolean Field", + "shortcut_name": "new_boolean", + "column_order": 3, + "display_name": "A New Boolean Field", "field_type": "boolean" } diff --git a/api/external/groups.html b/api/external/groups.html index af8879f..f2767ef 100644 --- a/api/external/groups.html +++ b/api/external/groups.html @@ -5,13 +5,13 @@ <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> - + <title>Emma API Documentation | Emma, Inc.</title> - + <link rel="stylesheet" href="../../_static/emma.css" type="text/css" /> <link rel="stylesheet" href="../../_static/pygments.css" type="text/css" /> - + <script type="text/javascript"> var DOCUMENTATION_OPTIONS = { URL_ROOT: '../../', @@ -21,12 +21,11 @@ HAS_SOURCE: true }; </script> - + <script src="http://code.jquery.com/jquery-1.4.min.js"></script> <script>window.jQuery || document.write('<script src="_static/jquery.js"><\/script>')</script> - - <script type="text/javascript" src="//use.typekit.net/zfm0nfo.js"></script> - <script type="text/javascript">try{Typekit.load();}catch(e){}</script> + + <link href="https://fonts.googleapis.com/css?family=Roboto:400,700" rel="stylesheet"> <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" /> @@ -92,15 +91,15 @@ <h3>Navigation</h3> <li class="right" > <a href="fields.html" title="Fields" accesskey="P">previous</a> |</li> - <li><a href="../../index.html">audience 0.1 documentation</a> »</li> + <li><a href="../../index.html">audience 0.1 documentation</a> »</li> </ul> - </div> + </div> <div class="document"> <div class="documentwrapper"> <div class="bodywrapper"> <div class="body"> - + <div class="section" id="groups"> <h1>Groups<a class="headerlink" href="#groups" title="Permalink to this headline">¶</a></h1> <p>With these endpoints, you can manage all aspects of the groups in @@ -258,7 +257,7 @@ <h1>Groups<a class="headerlink" href="#groups" title="Permalink to this headline [ { - "member_group_id": 1024, + "member_group_id": 1024, "group_name": "My Grp" } ] @@ -289,14 +288,14 @@ <h1>Groups<a class="headerlink" href="#groups" title="Permalink to this headline <b>GET /100/groups/150</b> { - "active_count": 1, - "deleted_at": null, - "error_count": 0, - "optout_count": 1, - "group_type": "g", - "member_group_id": 150, - "purged_at": null, - "account_id": 100, + "active_count": 1, + "deleted_at": null, + "error_count": 0, + "optout_count": 1, + "group_type": "g", + "member_group_id": 150, + "purged_at": null, + "account_id": 100, "group_name": "Monthly Newsletter" } </pre> @@ -514,13 +513,13 @@ <h1>Groups<a class="headerlink" href="#groups" title="Permalink to this headline <b>PUT /100/groups/150/members/remove</b> { "member_ids": [ - 200, + 200, 201 ] } [ - 200, + 200, 201 ] </pre> diff --git a/api/external/mailings.html b/api/external/mailings.html index a79d9b3..6890004 100644 --- a/api/external/mailings.html +++ b/api/external/mailings.html @@ -5,13 +5,13 @@ <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> - + <title>Emma API Documentation | Emma, Inc.</title> - + <link rel="stylesheet" href="../../_static/emma.css" type="text/css" /> <link rel="stylesheet" href="../../_static/pygments.css" type="text/css" /> - + <script type="text/javascript"> var DOCUMENTATION_OPTIONS = { URL_ROOT: '../../', @@ -21,12 +21,11 @@ HAS_SOURCE: true }; </script> - + <script src="http://code.jquery.com/jquery-1.4.min.js"></script> <script>window.jQuery || document.write('<script src="_static/jquery.js"><\/script>')</script> - - <script type="text/javascript" src="//use.typekit.net/zfm0nfo.js"></script> - <script type="text/javascript">try{Typekit.load();}catch(e){}</script> + + <link href="https://fonts.googleapis.com/css?family=Roboto:400,700" rel="stylesheet"> <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" /> @@ -92,15 +91,15 @@ <h3>Navigation</h3> <li class="right" > <a href="groups.html" title="Groups" accesskey="P">previous</a> |</li> - <li><a href="../../index.html">audience 0.1 documentation</a> »</li> + <li><a href="../../index.html">audience 0.1 documentation</a> »</li> </ul> - </div> + </div> <div class="document"> <div class="documentwrapper"> <div class="bodywrapper"> <div class="body"> - + <div class="section" id="mailings"> <h1>Mailings<a class="headerlink" href="#mailings" title="Permalink to this headline">¶</a></h1> <p>With these endpoints, you can get information about your mailings including @@ -415,47 +414,47 @@ <h1>Mailings<a class="headerlink" href="#mailings" title="Permalink to this head { "recipient_groups": [ { - "member_group_id": 151, + "member_group_id": 151, "name": "Widget Buyers" } - ], - "heads_up_emails": [], - "send_started": null, - "signup_form_id": null, + ], + "heads_up_emails": [], + "send_started": null, + "signup_form_id": null, "links": [ { - "mailing_id": 200, - "plaintext": false, - "link_id": 200, - "link_name": "Emma", - "link_target": "http://www.myemma.com", + "mailing_id": 200, + "plaintext": false, + "link_id": 200, + "link_name": "Emma", + "link_target": "http://www.myemma.com", "link_order": 1 } - ], - "mailing_id": 200, - "plaintext": "Hello [% member:first_name %]!", - "recipient_count": 0, - "public_webview_url": "http://localhost/webview/uf/6db0cc7e6fdb2da589b65f29d90c96b6", - "mailing_type": "m", + ], + "mailing_id": 200, + "plaintext": "Hello [% member:first_name %]!", + "recipient_count": 0, + "public_webview_url": "http://localhost/webview/uf/6db0cc7e6fdb2da589b65f29d90c96b6", + "mailing_type": "m", "recipient_segments": [], - "parent_mailing_id": null, - "recipient_searches": [], + "parent_mailing_id": null, + "recipient_searches": [], "deleted_at": null, - "account_id": 100, + "account_id": 100, "recipient_members": [ { - "email": "youremma@myemma.com", + "email": "youremma@myemma.com", "member_id": 200 } - ], - "mailing_status": "c", - "sender": "Kevin McConnell", - "name": "Sample Mailing", - "send_finished": null, - "send_at": null, + ], + "mailing_status": "c", + "sender": "Kevin McConnell", + "name": "Sample Mailing", + "send_finished": null, + "send_at": null, "reply_to": null, - "subject": "Sample Mailing for [% member:first_name %] [% member:last_name %]", - "archived_ts": null, + "subject": "Sample Mailing for [% member:first_name %] [% member:last_name %]", + "archived_ts": null, "html_body": "<p>Hello [% member:first_name %]!</p>" } </pre> @@ -548,8 +547,8 @@ <h1>Mailings<a class="headerlink" href="#mailings" title="Permalink to this head <b>GET /100/mailings/200/messages/200</b> { - "plaintext": "Hello !", - "subject": "Sample Mailing for ", + "plaintext": "Hello !", + "subject": "Sample Mailing for ", "html_body": "<p>Hello !</p>", "webview_url": "https://tracker/message/200/200" } @@ -737,7 +736,7 @@ <h1>Mailings<a class="headerlink" href="#mailings" title="Permalink to this head "deleted_at": null, "email": "youremma@myemma.com" }, - { + { "status": "active", "confirmed_opt_in": null, "account_id": 100, @@ -887,7 +886,7 @@ <h1>Mailings<a class="headerlink" href="#mailings" title="Permalink to this head <b>POST /100/forwards/200/200</b> { "recipient_emails": [ - "alex@myemma.com", + "alex@myemma.com", "chris@myemma.com" ] } diff --git a/api/external/members.html b/api/external/members.html index 947363d..eb8a925 100644 --- a/api/external/members.html +++ b/api/external/members.html @@ -24,8 +24,7 @@ <script src="http://code.jquery.com/jquery-1.4.min.js"></script> <script>window.jQuery || document.write('<script src="_static/jquery.js"><\/script>')</script> - <script type="text/javascript" src="//use.typekit.net/zfm0nfo.js"></script> - <script type="text/javascript">try{Typekit.load();}catch(e){}</script> + <link href="https://fonts.googleapis.com/css?family=Roboto:400,700" rel="stylesheet"> <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" /> @@ -425,10 +424,10 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli <tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first last simple"> <li><strong>members</strong> (<em>array</em>) – An array of members to update A member is a dictionary of member emails and field values to import. The only required field is “email”. All other fields are treated as the name of a member field.</li> -<li><strong>automate_field_changes</strong> (<em>boolean</em>) – Accepts True or False. Optional. When set to True, updates made by this call will trigger -field change workflows when appropriate. For more information on field change automation, visit our +<li><strong>automate_field_changes</strong> (<em>boolean</em>) – Accepts True or False. Optional. When set to True, updates made by this call will trigger +field change workflows when appropriate. For more information on field change automation, visit our <a href="http://support.e2ma.net/Resource_Center/Guide_to_Automation/Trigger_events%3A_field_change">Resource Center.</a></li> -<li><strong>source_filename</strong> (<em>string</em>) – An arbitrary string to associate with this import. This should generally be set to the filename +<li><strong>source_filename</strong> (<em>string</em>) – An arbitrary string to associate with this import. This should generally be set to the filename that the user uploaded.</li> <li><strong>add_only</strong> (<em>boolean</em>) – Optional. Only add new members, ignore existing members.</li> <li><strong>group_ids</strong> (<em>array of integers</em>) – Optional. Add imported members to this list of groups.</li> diff --git a/api/external/response.html b/api/external/response.html index 150981e..ea499d7 100644 --- a/api/external/response.html +++ b/api/external/response.html @@ -24,8 +24,7 @@ <script src="http://code.jquery.com/jquery-1.4.min.js"></script> <script>window.jQuery || document.write('<script src="_static/jquery.js"><\/script>')</script> - <script type="text/javascript" src="//use.typekit.net/zfm0nfo.js"></script> - <script type="text/javascript">try{Typekit.load();}catch(e){}</script> + <link href="https://fonts.googleapis.com/css?family=Roboto:400,700" rel="stylesheet"> <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" /> @@ -91,7 +90,7 @@ <h3>Navigation</h3> <li class="right" > <a href="members.html" title="Members" accesskey="P">previous</a> |</li> - <li><a href="../../index.html">audience 0.1 documentation</a> »</li> + <li><a href="../../index.html">audience 0.1 documentation</a> »</li> </ul> </div> diff --git a/api/external/searches.html b/api/external/searches.html index 5a5177f..d8a8412 100644 --- a/api/external/searches.html +++ b/api/external/searches.html @@ -5,13 +5,13 @@ <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> - + <title>Emma API Documentation | Emma, Inc.</title> - + <link rel="stylesheet" href="../../_static/emma.css" type="text/css" /> <link rel="stylesheet" href="../../_static/pygments.css" type="text/css" /> - + <script type="text/javascript"> var DOCUMENTATION_OPTIONS = { URL_ROOT: '../../', @@ -21,12 +21,11 @@ HAS_SOURCE: true }; </script> - + <script src="http://code.jquery.com/jquery-1.4.min.js"></script> <script>window.jQuery || document.write('<script src="_static/jquery.js"><\/script>')</script> - - <script type="text/javascript" src="//use.typekit.net/zfm0nfo.js"></script> - <script type="text/javascript">try{Typekit.load();}catch(e){}</script> + + <link href="https://fonts.googleapis.com/css?family=Roboto:400,700" rel="stylesheet"> <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" /> @@ -92,15 +91,15 @@ <h3>Navigation</h3> <li class="right" > <a href="response.html" title="Response" accesskey="P">previous</a> |</li> - <li><a href="../../index.html">audience 0.1 documentation</a> »</li> + <li><a href="../../index.html">audience 0.1 documentation</a> »</li> </ul> - </div> + </div> <div class="document"> <div class="documentwrapper"> <div class="bodywrapper"> <div class="body"> - + <div class="section" id="searches"> <h1>Searches<a class="headerlink" href="#searches" title="Permalink to this headline">¶</a></h1> <p>These endpoints allow you to create, edit, and delete searches. You can also @@ -194,15 +193,15 @@ <h1>Searches<a class="headerlink" href="#searches" title="Permalink to this head <b>GET /100/searches/200</b> { - "search_id": 200, - "optout_count": 0, - "error_count": 0, - "name": "Test Search", - "criteria": "[\"or\", [\"group\", \"eq\", \"Monthly Newsletter\"],[\"group\", \"eq\", \"Widget Buyers\"]]", - "deleted_at": null, - "purged_at": null, - "last_run_at": null, - "active_count": 0, + "search_id": 200, + "optout_count": 0, + "error_count": 0, + "name": "Test Search", + "criteria": "[\"or\", [\"group\", \"eq\", \"Monthly Newsletter\"],[\"group\", \"eq\", \"Widget Buyers\"]]", + "deleted_at": null, + "purged_at": null, + "last_run_at": null, + "active_count": 0, "account_id": 100 } </pre> @@ -257,17 +256,17 @@ <h1>Searches<a class="headerlink" href="#searches" title="Permalink to this head <pre class="response"> <b>POST /100/searches</b> { - "name": "New Search", + "name": "New Search", "criteria": [ - "or", + "or", [ - "group", - "eq", + "group", + "eq", "Monthly Newsletter" - ], + ], [ - "group", - "eq", + "group", + "eq", "Widget Buyers" ] ] @@ -315,15 +314,15 @@ <h1>Searches<a class="headerlink" href="#searches" title="Permalink to this head <b>PUT /100/searches/200</b> { "criteria": [ - "or", + "or", [ - "group", - "eq", + "group", + "eq", "Monthly Newsletter" - ], + ], [ - "group", - "eq", + "group", + "eq", "Special Events" ] ] diff --git a/api/external/signup_forms.html b/api/external/signup_forms.html index 0a50f66..8b03800 100644 --- a/api/external/signup_forms.html +++ b/api/external/signup_forms.html @@ -25,8 +25,7 @@ <script src="http://code.jquery.com/jquery-1.4.min.js"></script> <script>window.jQuery || document.write('<script src="_static/jquery.js"><\/script>')</script> - <script type="text/javascript" src="//use.typekit.net/zfm0nfo.js"></script> - <script type="text/javascript">try{Typekit.load();}catch(e){}</script> + <link href="https://fonts.googleapis.com/css?family=Roboto:400,700" rel="stylesheet"> <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" /> diff --git a/api/external/triggers.html b/api/external/triggers.html index ea07323..79c4636 100644 --- a/api/external/triggers.html +++ b/api/external/triggers.html @@ -4,13 +4,13 @@ <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> - + <title>Emma API Documentation | Emma, Inc.</title> - + <link rel="stylesheet" href="../../_static/emma.css" type="text/css" /> <link rel="stylesheet" href="../../_static/pygments.css" type="text/css" /> - + <script type="text/javascript"> var DOCUMENTATION_OPTIONS = { URL_ROOT: '../../', @@ -20,12 +20,11 @@ HAS_SOURCE: true }; </script> - + <script src="http://code.jquery.com/jquery-1.4.min.js"></script> <script>window.jQuery || document.write('<script src="_static/jquery.js"><\/script>')</script> - - <script type="text/javascript" src="//use.typekit.net/zfm0nfo.js"></script> - <script type="text/javascript">try{Typekit.load();}catch(e){}</script> + + <link href="https://fonts.googleapis.com/css?family=Roboto:400,700" rel="stylesheet"> <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" /> @@ -91,15 +90,15 @@ <h3>Navigation</h3> <li class="right" > <a href="signup_forms.html" title="Signup Forms" accesskey="P">previous</a> |</li> - <li><a href="../../index.html">audience 0.1 documentation</a> »</li> + <li><a href="../../index.html">audience 0.1 documentation</a> »</li> </ul> - </div> + </div> <div class="document"> <div class="documentwrapper"> <div class="bodywrapper"> <div class="body"> - + <div class="section" id="triggers"> <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this headline">¶</a></h1> <p>NOTICE: Triggers have been deprecated.</p> @@ -248,51 +247,51 @@ <h1>Triggers<a class="headerlink" href="#triggers" title="Permalink to this head { "parent_mailing": { - "mailing_type": "m", - "send_started": null, - "signup_form_id": null, - "mailing_id": 200, - "plaintext": "Hello [% member:first_name %]!", - "recipient_count": 0, - "cancel_ts": null, - "created_ts": "@D:2013-08-22T09:41:45", - "month": null, - "failure_ts": null, - "year": null, - "datacenter": null, - "started_or_finished": null, - "account_id": 100, - "disabled": false, - "mailing_status": "c", - "plaintext_only": false, - "sender": "Kevin McConnell", - "parent_mailing_id": null, - "failure_message": null, - "name": "Sample Mailing", - "send_finished": null, - "cancel_by_user_id": null, - "send_at": null, - "reply_to": null, - "subject": "Sample Mailing for [% member:first_name %] [% member:last_name %]", - "purged_at": null, - "archived_ts": null, + "mailing_type": "m", + "send_started": null, + "signup_form_id": null, + "mailing_id": 200, + "plaintext": "Hello [% member:first_name %]!", + "recipient_count": 0, + "cancel_ts": null, + "created_ts": "@D:2013-08-22T09:41:45", + "month": null, + "failure_ts": null, + "year": null, + "datacenter": null, + "started_or_finished": null, + "account_id": 100, + "disabled": false, + "mailing_status": "c", + "plaintext_only": false, + "sender": "Kevin McConnell", + "parent_mailing_id": null, + "failure_message": null, + "name": "Sample Mailing", + "send_finished": null, + "cancel_by_user_id": null, + "send_at": null, + "reply_to": null, + "subject": "Sample Mailing for [% member:first_name %] [% member:last_name %]", + "purged_at": null, + "archived_ts": null, "html_body": "<p>Hello [% member:first_name %]!</p>" - }, - "surveys": null, - "event_type": "r", - "links": null, - "field_id": 203, - "signup_integrations": null, - "push_offset_units": "0:-14:0:0", - "start_ts": "@D:2013-08-22T09:41:45", - "trigger_id": 100, - "name": "Birthday triggers", - "signups": null, - "push_offset": "@I:-1209600.0", - "groups": null, - "parent_mailing_id": 200, - "deleted_at": null, - "is_disabled": false, + }, + "surveys": null, + "event_type": "r", + "links": null, + "field_id": 203, + "signup_integrations": null, + "push_offset_units": "0:-14:0:0", + "start_ts": "@D:2013-08-22T09:41:45", + "trigger_id": 100, + "name": "Birthday triggers", + "signups": null, + "push_offset": "@I:-1209600.0", + "groups": null, + "parent_mailing_id": 200, + "deleted_at": null, + "is_disabled": false, "account_id": 100 } </pre> diff --git a/api/external/webhooks.html b/api/external/webhooks.html index e7d22bf..5f6c95c 100644 --- a/api/external/webhooks.html +++ b/api/external/webhooks.html @@ -5,13 +5,13 @@ <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> - + <title>Emma API Documentation | Emma, Inc.</title> - + <link rel="stylesheet" href="../../_static/emma.css" type="text/css" /> <link rel="stylesheet" href="../../_static/pygments.css" type="text/css" /> - + <script type="text/javascript"> var DOCUMENTATION_OPTIONS = { URL_ROOT: '../../', @@ -21,12 +21,11 @@ HAS_SOURCE: true }; </script> - + <script src="http://code.jquery.com/jquery-1.4.min.js"></script> <script>window.jQuery || document.write('<script src="_static/jquery.js"><\/script>')</script> - <script type="text/javascript" src="//use.typekit.net/zfm0nfo.js"></script> - <script type="text/javascript">try{Typekit.load();}catch(e){}</script> + <link href="https://fonts.googleapis.com/css?family=Roboto:400,700" rel="stylesheet"> <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" /> @@ -92,15 +91,15 @@ <h3>Navigation</h3> <li class="right" > <a href="triggers.html" title="Triggers" accesskey="P">previous</a> |</li> - <li><a href="../../index.html">audience 0.1 documentation</a> »</li> + <li><a href="../../index.html">audience 0.1 documentation</a> »</li> </ul> - </div> + </div> <div class="document"> <div class="documentwrapper"> <div class="bodywrapper"> <div class="body"> - + <div class="section" id="webhooks"> <h1>Webhooks<a class="headerlink" href="#webhooks" title="Permalink to this headline">¶</a></h1> <p>You can manage your webhooks with these endpoints. Of particular interest @@ -170,10 +169,10 @@ <h1>Webhooks<a class="headerlink" href="#webhooks" title="Permalink to this head <b>GET /100/webhooks/100</b> { - "url": "http://myemma.com", - "event": "mailing_finish", - "method": "POST", - "account_id": 100, + "url": "http://myemma.com", + "event": "mailing_finish", + "method": "POST", + "account_id": 100, "webhook_id": 100 } </pre> @@ -347,7 +346,7 @@ <h1>Webhooks<a class="headerlink" href="#webhooks" title="Permalink to this head <pre class="response"> <b>POST /100/webhooks</b> { - "url": "http://myemma.com/blog/", + "url": "http://myemma.com/blog/", "event": "mailing_finish" } diff --git a/genindex.html b/genindex.html index 9a71740..8ec73f0 100644 --- a/genindex.html +++ b/genindex.html @@ -6,13 +6,13 @@ <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> - + <title>Emma API Documentation | Emma, Inc.</title> - + <link rel="stylesheet" href="_static/emma.css" type="text/css" /> <link rel="stylesheet" href="_static/pygments.css" type="text/css" /> - + <script type="text/javascript"> var DOCUMENTATION_OPTIONS = { URL_ROOT: './', @@ -22,12 +22,11 @@ HAS_SOURCE: true }; </script> - + <script src="http://code.jquery.com/jquery-1.4.min.js"></script> <script>window.jQuery || document.write('<script src="_static/jquery.js"><\/script>')</script> - - <script type="text/javascript" src="//use.typekit.net/zfm0nfo.js"></script> - <script type="text/javascript">try{Typekit.load();}catch(e){}</script> + + <link href="https://fonts.googleapis.com/css?family=Roboto:400,700" rel="stylesheet"> <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" /> @@ -85,20 +84,20 @@ <h3>Navigation</h3> <li class="right" > <a href="http-routingtable.html" title="HTTP Routing Table" >routing table</a> |</li> - <li><a href="index.html">audience 0.1 documentation</a> »</li> + <li><a href="index.html">audience 0.1 documentation</a> »</li> </ul> - </div> + </div> <div class="document"> <div class="documentwrapper"> <div class="bodywrapper"> <div class="body"> - + <h1 id="index">Index</h1> <div class="genindex-jumpbox"> - + </div> diff --git a/http-routingtable.html b/http-routingtable.html index c445241..0ca2d92 100644 --- a/http-routingtable.html +++ b/http-routingtable.html @@ -5,13 +5,13 @@ <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> - + <title>Emma API Documentation | Emma, Inc.</title> - + <link rel="stylesheet" href="_static/emma.css" type="text/css" /> <link rel="stylesheet" href="_static/pygments.css" type="text/css" /> - + <script type="text/javascript"> var DOCUMENTATION_OPTIONS = { URL_ROOT: './', @@ -21,12 +21,11 @@ HAS_SOURCE: true }; </script> - + <script src="http://code.jquery.com/jquery-1.4.min.js"></script> <script>window.jQuery || document.write('<script src="_static/jquery.js"><\/script>')</script> - - <script type="text/javascript" src="//use.typekit.net/zfm0nfo.js"></script> - <script type="text/javascript">try{Typekit.load();}catch(e){}</script> + + <link href="https://fonts.googleapis.com/css?family=Roboto:400,700" rel="stylesheet"> <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" /> @@ -91,15 +90,15 @@ <h3>Navigation</h3> <li class="right" > <a href="#" title="HTTP Routing Table" >routing table</a> |</li> - <li><a href="index.html">audience 0.1 documentation</a> »</li> + <li><a href="index.html">audience 0.1 documentation</a> »</li> </ul> - </div> + </div> <div class="document"> <div class="documentwrapper"> <div class="bodywrapper"> <div class="body"> - + <h1>HTTP Routing Table</h1> diff --git a/index.html b/index.html index a3cd483..0da81f8 100644 --- a/index.html +++ b/index.html @@ -24,8 +24,6 @@ <script src="http://code.jquery.com/jquery-1.4.min.js"></script> <script>window.jQuery || document.write('<script src="_static/jquery.js"><\/script>')</script> - <!-- <script type="text/javascript" src="//use.typekit.net/zfm0nfo.js"></script> - <script type="text/javascript">try{Typekit.load();}catch(e){}</script> --> <link href="https://fonts.googleapis.com/css?family=Roboto:400,700" rel="stylesheet"> <script type="text/javascript" src="_static/underscore.js"></script> <script type="text/javascript" src="_static/doctools.js"></script> diff --git a/member_search.html b/member_search.html index 8ca36c0..71c7cf9 100644 --- a/member_search.html +++ b/member_search.html @@ -5,13 +5,13 @@ <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> - + <title>Emma API Documentation | Emma, Inc.</title> - + <link rel="stylesheet" href="_static/emma.css" type="text/css" /> <link rel="stylesheet" href="_static/pygments.css" type="text/css" /> - + <script type="text/javascript"> var DOCUMENTATION_OPTIONS = { URL_ROOT: './', @@ -21,12 +21,11 @@ HAS_SOURCE: true }; </script> - + <script src="http://code.jquery.com/jquery-1.4.min.js"></script> <script>window.jQuery || document.write('<script src="_static/jquery.js"><\/script>')</script> - - <script type="text/javascript" src="//use.typekit.net/zfm0nfo.js"></script> - <script type="text/javascript">try{Typekit.load();}catch(e){}</script> + + <link href="https://fonts.googleapis.com/css?family=Roboto:400,700" rel="stylesheet"> <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" /> @@ -92,15 +91,15 @@ <h3>Navigation</h3> <li class="right" > <a href="placeholders.html" title="Placeholder Syntax" accesskey="P">previous</a> |</li> - <li><a href="index.html">audience 0.1 documentation</a> »</li> + <li><a href="index.html">audience 0.1 documentation</a> »</li> </ul> - </div> + </div> <div class="document"> <div class="documentwrapper"> <div class="bodywrapper"> <div class="body"> - + <div class="section" id="search-syntax"> <span id="id1"></span><h1>Search Syntax<a class="headerlink" href="#search-syntax" title="Permalink to this headline">¶</a></h1> <div class="section" id="syntax-overview"> diff --git a/pagination.html b/pagination.html index 1914ae4..d457847 100644 --- a/pagination.html +++ b/pagination.html @@ -5,13 +5,13 @@ <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> - + <title>Emma API Documentation | Emma, Inc.</title> - + <link rel="stylesheet" href="_static/emma.css" type="text/css" /> <link rel="stylesheet" href="_static/pygments.css" type="text/css" /> - + <script type="text/javascript"> var DOCUMENTATION_OPTIONS = { URL_ROOT: './', @@ -21,12 +21,11 @@ HAS_SOURCE: true }; </script> - + <script src="http://code.jquery.com/jquery-1.4.min.js"></script> <script>window.jQuery || document.write('<script src="_static/jquery.js"><\/script>')</script> - - <script type="text/javascript" src="//use.typekit.net/zfm0nfo.js"></script> - <script type="text/javascript">try{Typekit.load();}catch(e){}</script> + + <link href="https://fonts.googleapis.com/css?family=Roboto:400,700" rel="stylesheet"> <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" /> @@ -92,15 +91,15 @@ <h3>Navigation</h3> <li class="right" > <a href="api/external/webhooks.html" title="Webhooks" accesskey="P">previous</a> |</li> - <li><a href="index.html">audience 0.1 documentation</a> »</li> + <li><a href="index.html">audience 0.1 documentation</a> »</li> </ul> - </div> + </div> <div class="document"> <div class="documentwrapper"> <div class="bodywrapper"> <div class="body"> - + <div class="section" id="pagination"> <span id="id1"></span><h1>Pagination<a class="headerlink" href="#pagination" title="Permalink to this headline">¶</a></h1> <p>Responses with a large number of results should be paginated; the query diff --git a/php_get_member_example.html b/php_get_member_example.html index 842daa9..75ff41f 100644 --- a/php_get_member_example.html +++ b/php_get_member_example.html @@ -5,13 +5,13 @@ <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> - + <title>Emma API Documentation | Emma, Inc.</title> - + <link rel="stylesheet" href="_static/emma.css" type="text/css" /> <link rel="stylesheet" href="_static/pygments.css" type="text/css" /> - + <script type="text/javascript"> var DOCUMENTATION_OPTIONS = { URL_ROOT: './', @@ -21,12 +21,11 @@ HAS_SOURCE: true }; </script> - + <script src="http://code.jquery.com/jquery-1.4.min.js"></script> <script>window.jQuery || document.write('<script src="_static/jquery.js"><\/script>')</script> - - <script type="text/javascript" src="//use.typekit.net/zfm0nfo.js"></script> - <script type="text/javascript">try{Typekit.load();}catch(e){}</script> + + <link href="https://fonts.googleapis.com/css?family=Roboto:400,700" rel="stylesheet"> <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" /> @@ -88,15 +87,15 @@ <h3>Navigation</h3> <li class="right" > <a href="php_signup_example.html" title="PHP Signup Example" accesskey="P">previous</a> |</li> - <li><a href="index.html">audience 0.1 documentation</a> »</li> + <li><a href="index.html">audience 0.1 documentation</a> »</li> </ul> - </div> + </div> <div class="document"> <div class="documentwrapper"> <div class="bodywrapper"> <div class="body"> - + <div class="section" id="php-get-member-by-email-example"> <h1>PHP Get Member By Email Example<a class="headerlink" href="#php-get-member-by-email-example" title="Permalink to this headline">¶</a></h1> <p>Here’s the complete example of the PHP code to find a member by email address.</p> diff --git a/php_signup_example.html b/php_signup_example.html index 16b8d0f..cf824b1 100644 --- a/php_signup_example.html +++ b/php_signup_example.html @@ -5,13 +5,13 @@ <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> - + <title>Emma API Documentation | Emma, Inc.</title> - + <link rel="stylesheet" href="_static/emma.css" type="text/css" /> <link rel="stylesheet" href="_static/pygments.css" type="text/css" /> - + <script type="text/javascript"> var DOCUMENTATION_OPTIONS = { URL_ROOT: './', @@ -21,12 +21,11 @@ HAS_SOURCE: true }; </script> - + <script src="http://code.jquery.com/jquery-1.4.min.js"></script> <script>window.jQuery || document.write('<script src="_static/jquery.js"><\/script>')</script> - - <script type="text/javascript" src="//use.typekit.net/zfm0nfo.js"></script> - <script type="text/javascript">try{Typekit.load();}catch(e){}</script> + + <link href="https://fonts.googleapis.com/css?family=Roboto:400,700" rel="stylesheet"> <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" /> @@ -92,15 +91,15 @@ <h3>Navigation</h3> <li class="right" > <a href="webhooks.html" title="Webhook Usage" accesskey="P">previous</a> |</li> - <li><a href="index.html">audience 0.1 documentation</a> »</li> + <li><a href="index.html">audience 0.1 documentation</a> »</li> </ul> - </div> + </div> <div class="document"> <div class="documentwrapper"> <div class="bodywrapper"> <div class="body"> - + <div class="section" id="php-signup-example"> <h1>PHP Signup Example<a class="headerlink" href="#php-signup-example" title="Permalink to this headline">¶</a></h1> <p>Here’s the complete example of the PHP code to signup a single member.</p> diff --git a/placeholders.html b/placeholders.html index 29c10dc..0c30725 100644 --- a/placeholders.html +++ b/placeholders.html @@ -5,13 +5,13 @@ <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> - + <title>Emma API Documentation | Emma, Inc.</title> - + <link rel="stylesheet" href="_static/emma.css" type="text/css" /> <link rel="stylesheet" href="_static/pygments.css" type="text/css" /> - + <script type="text/javascript"> var DOCUMENTATION_OPTIONS = { URL_ROOT: './', @@ -21,12 +21,11 @@ HAS_SOURCE: true }; </script> - + <script src="http://code.jquery.com/jquery-1.4.min.js"></script> <script>window.jQuery || document.write('<script src="_static/jquery.js"><\/script>')</script> - - <script type="text/javascript" src="//use.typekit.net/zfm0nfo.js"></script> - <script type="text/javascript">try{Typekit.load();}catch(e){}</script> + + <link href="https://fonts.googleapis.com/css?family=Roboto:400,700" rel="stylesheet"> <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" /> @@ -92,15 +91,15 @@ <h3>Navigation</h3> <li class="right" > <a href="pagination.html" title="Pagination" accesskey="P">previous</a> |</li> - <li><a href="index.html">audience 0.1 documentation</a> »</li> + <li><a href="index.html">audience 0.1 documentation</a> »</li> </ul> - </div> + </div> <div class="document"> <div class="documentwrapper"> <div class="bodywrapper"> <div class="body"> - + <div class="section" id="placeholder-syntax"> <span id="id1"></span><h1>Placeholder Syntax<a class="headerlink" href="#placeholder-syntax" title="Permalink to this headline">¶</a></h1> <div class="section" id="syntax-overview"> diff --git a/search.html b/search.html index e80fa13..c697bd2 100644 --- a/search.html +++ b/search.html @@ -5,13 +5,13 @@ <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> - + <title>Emma API Documentation | Emma, Inc.</title> - + <link rel="stylesheet" href="_static/emma.css" type="text/css" /> <link rel="stylesheet" href="_static/pygments.css" type="text/css" /> - + <script type="text/javascript"> var DOCUMENTATION_OPTIONS = { URL_ROOT: './', @@ -21,12 +21,11 @@ HAS_SOURCE: true }; </script> - + <script src="http://code.jquery.com/jquery-1.4.min.js"></script> <script>window.jQuery || document.write('<script src="_static/jquery.js"><\/script>')</script> - - <script type="text/javascript" src="//use.typekit.net/zfm0nfo.js"></script> - <script type="text/javascript">try{Typekit.load();}catch(e){}</script> + + <link href="https://fonts.googleapis.com/css?family=Roboto:400,700" rel="stylesheet"> <script type="text/javascript" src="_static/underscore.js"></script> <script type="text/javascript" src="_static/doctools.js"></script> <script type="text/javascript" src="_static/searchtools.js"></script> @@ -34,9 +33,9 @@ <script type="text/javascript"> jQuery(function() { Search.loadIndex("searchindex.js"); }); </script> - + <script type="text/javascript" id="searchindexloader"></script> - + <link rel="icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> <link rel="shortcut icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> <link rel="apple-touch-icon-precomposed" href="http://myemma.com/static/global/favicons/apple-iphone.png" /> @@ -92,15 +91,15 @@ <h3>Navigation</h3> <li class="right" > <a href="http-routingtable.html" title="HTTP Routing Table" >routing table</a> |</li> - <li><a href="index.html">audience 0.1 documentation</a> »</li> + <li><a href="index.html">audience 0.1 documentation</a> »</li> </ul> - </div> + </div> <div class="document"> <div class="documentwrapper"> <div class="bodywrapper"> <div class="body"> - + <h1 id="search-documentation">Search</h1> <div id="fallback" class="admonition warning"> <script type="text/javascript">$('#fallback').hide();</script> @@ -120,9 +119,9 @@ <h1 id="search-documentation">Search</h1> <input type="submit" value="search" /> <span id="search-progress" style="padding-left: 10px"></span> </form> - + <div id="search-results"> - + </div> </div> diff --git a/webhooks.html b/webhooks.html index ad287cc..ac038a7 100644 --- a/webhooks.html +++ b/webhooks.html @@ -25,8 +25,6 @@ <script src="http://code.jquery.com/jquery-1.4.min.js"></script> <script>window.jQuery || document.write('<script src="_static/jquery.js"><\/script>')</script> - <!-- <script type="text/javascript" src="//use.typekit.net/zfm0nfo.js"></script> - <script type="text/javascript">try{Typekit.load();}catch(e){}</script> --> <link href="https://fonts.googleapis.com/css?family=Roboto:400,700" rel="stylesheet"> <script type="text/javascript" src="_static/underscore.js"></script> <script type="text/javascript" src="_static/doctools.js"></script> From ffa0c83d0475cf358be1d96e5ca6609a85671339 Mon Sep 17 00:00:00 2001 From: John Peregoy <john.peregoy@myemma.com> Date: Tue, 16 Oct 2018 16:50:13 -0500 Subject: [PATCH 162/219] remove errant commented code from css --- _static/emma.css | 18 ++++-------------- 1 file changed, 4 insertions(+), 14 deletions(-) diff --git a/_static/emma.css b/_static/emma.css index 495e05f..133bf5e 100644 --- a/_static/emma.css +++ b/_static/emma.css @@ -72,12 +72,9 @@ div.related { div.sphinxsidebar a { color: #444; text-decoration: none; - /* border-bottom: 1px dotted #999; */ } -div.sphinxsidebar a:hover { - /* border-bottom: 1px solid #999; */ -} +div.sphinxsidebar a:hover { } div.sphinxsidebar { font-size: 14px; @@ -358,7 +355,6 @@ dl dl pre { tt { background-color: #ecf0f3; color: #222; - /* padding: 1px 2px; */ } tt.xref, a tt { @@ -368,12 +364,9 @@ tt.xref, a tt { a.reference { text-decoration: none; - /* border-bottom: 1px dotted #004B6B; */ } -a.reference:hover { - /* border-bottom: 1px solid #6D4100; */ -} +a.reference:hover { } a.footnote-reference { text-decoration: none; @@ -382,9 +375,7 @@ a.footnote-reference { border-bottom: 1px dotted #004B6B; } -a.footnote-reference:hover { - /* border-bottom: 1px solid #6D4100; */ -} +a.footnote-reference:hover { } a:hover tt { background: #EEE; @@ -485,7 +476,7 @@ textarea { overflow: auto; } /* thnx ivannikolic! www.sitepoint.com/blogs/2010/0 ********************************************************* ********************************************************/ -/* body { background:url(img/bg-header.png) 0 -10px repeat-x, url(img/bg-body.jpg); } */ +body { } div.sphinxsidebar { width: 300px; @@ -545,7 +536,6 @@ div.sphinxsidebar a:hover { color:#FF7055; } div.sphinxsidebar h3, div.sphinxsidebar h3 a { position:relative; font-size:18px; margin-top:24px; padding-top:6px; font-family:'Roboto', 'Helvetica', sans-serif; /*border-top:3px solid #bababa;*/ color:#1B1B1B; font-weight: 700; text-transform: uppercase; text-decoration:none; border:none; } div.sphinxsidebar h3 a { border:none; } div.sphinxsidebar h3:first-child { margin-top:0; padding-top: 0; } -/* div.sphinxsidebar h3:before { content:''; display:block; position:absolute; left:0; top:3px; width:100%; height:100%; border-top:1px solid #bababa; }*/ div.sphinxsidebarwrapper > ul > li { margin-bottom:36px; } div.sphinxsidebarwrapper > ul > li > a:hover { color: #FF7055; } div.sphinxsidebar ul ul { margin-top:8px; } From c2ac3c59ee75e50736eae998c28c1125f642ad7e Mon Sep 17 00:00:00 2001 From: biggert <jbiggert@myemma.com> Date: Mon, 11 Mar 2019 16:43:58 -0500 Subject: [PATCH 163/219] Add the import status of q --- api/external/members.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/external/members.html b/api/external/members.html index eb8a925..956dabb 100644 --- a/api/external/members.html +++ b/api/external/members.html @@ -1112,7 +1112,7 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli "num_errors": 0, "groups_updated": [], "fields_updated": [], - "status": "o", # for okay (or "e" for error), + "status": "o", # for okay (or "e" for error, "q" for queued), "error_message": null, "style": null, "automated_field_changes": null From b40bee9f073febf19da42b5770655a02f1d0ed94 Mon Sep 17 00:00:00 2001 From: Samantha Yeargin <syeargin@myemma.com> Date: Tue, 16 Apr 2019 16:11:00 -0500 Subject: [PATCH 164/219] Resolves CSE-2645. --- pagination.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pagination.html b/pagination.html index d457847..3979ff7 100644 --- a/pagination.html +++ b/pagination.html @@ -109,11 +109,11 @@ <h3>Navigation</h3> of the results themselves) by appending a query parameter of <tt class="docutils literal"><span class="pre">count=true</span></tt>.</p> <p>So, to pull a large number of results, you start with a count:</p> <blockquote> -<div><a class="reference external" href="https://api.e2ma.net/123/members?count=true">https://api.e2ma.net/123/members?count=true</a></div></blockquote> +<div>https://api.e2ma.net/123/members?count=true</div></blockquote> <p>Then, iterate over the list in blocks of 500:</p> <blockquote> -<div><p><a class="reference external" href="https://api.e2ma.net/123/members?start=0&end=500">https://api.e2ma.net/123/members?start=0&end=500</a></p> -<p><a class="reference external" href="https://api.e2ma.net/123/members?start=500&end=1000">https://api.e2ma.net/123/members?start=500&end=1000</a></p> +<div><p>https://api.e2ma.net/123/members?start=0&end=500</p> +<p>https://api.e2ma.net/123/members?start=500&end=1000</p> </div></blockquote> <p>Requests for page sizes larger than 500 will limited to <tt class="docutils literal"><span class="pre">start</span></tt> + 500.</p> <p>Calls are rate-limited to prevent accidental overuse. If you exceed the limit From 1c920065a864929211e291b4462a789f4c22e3f4 Mon Sep 17 00:00:00 2001 From: Samantha Yeargin <syeargin@myemma.com> Date: Tue, 16 Apr 2019 16:30:10 -0500 Subject: [PATCH 165/219] Wrapping, escaping link. --- pagination.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pagination.html b/pagination.html index 3979ff7..1e033ef 100644 --- a/pagination.html +++ b/pagination.html @@ -109,11 +109,11 @@ <h3>Navigation</h3> of the results themselves) by appending a query parameter of <tt class="docutils literal"><span class="pre">count=true</span></tt>.</p> <p>So, to pull a large number of results, you start with a count:</p> <blockquote> -<div>https://api.e2ma.net/123/members?count=true</div></blockquote> +<div><tt class="docutils literal"><span class="pre">`https://api.e2ma.net/123/members?count=true`</span></tt></div></blockquote> <p>Then, iterate over the list in blocks of 500:</p> <blockquote> -<div><p>https://api.e2ma.net/123/members?start=0&end=500</p> -<p>https://api.e2ma.net/123/members?start=500&end=1000</p> +<div><p><tt class="docutils literal"><span class="pre">`https://api.e2ma.net/123/members?start=0&end=500`</span></tt></p> +<p><tt class="docutils literal"><span class="pre">`https://api.e2ma.net/123/members?start=500&end=1000`</span></tt></p> </div></blockquote> <p>Requests for page sizes larger than 500 will limited to <tt class="docutils literal"><span class="pre">start</span></tt> + 500.</p> <p>Calls are rate-limited to prevent accidental overuse. If you exceed the limit From dc167bdda8dc5b6e750e5226f9d5e5b91b51282e Mon Sep 17 00:00:00 2001 From: Samantha Yeargin <syeargin@myemma.com> Date: Tue, 16 Apr 2019 16:43:08 -0500 Subject: [PATCH 166/219] Without backticks, this time. --- pagination.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pagination.html b/pagination.html index d457847..993b3b9 100644 --- a/pagination.html +++ b/pagination.html @@ -109,11 +109,11 @@ <h3>Navigation</h3> of the results themselves) by appending a query parameter of <tt class="docutils literal"><span class="pre">count=true</span></tt>.</p> <p>So, to pull a large number of results, you start with a count:</p> <blockquote> -<div><a class="reference external" href="https://api.e2ma.net/123/members?count=true">https://api.e2ma.net/123/members?count=true</a></div></blockquote> +<div><tt class="docutils literal"><span class="pre">https://api.e2ma.net/123/members?count=true</span></tt></div></blockquote> <p>Then, iterate over the list in blocks of 500:</p> <blockquote> -<div><p><a class="reference external" href="https://api.e2ma.net/123/members?start=0&end=500">https://api.e2ma.net/123/members?start=0&end=500</a></p> -<p><a class="reference external" href="https://api.e2ma.net/123/members?start=500&end=1000">https://api.e2ma.net/123/members?start=500&end=1000</a></p> +<div><tt class="docutils literal"><span class="pre">https://api.e2ma.net/123/members?start=0&end=500</span></tt></p> +<p><tt class="docutils literal"><span class="pre">https://api.e2ma.net/123/members?start=500&end=1000</span></tt></p> </div></blockquote> <p>Requests for page sizes larger than 500 will limited to <tt class="docutils literal"><span class="pre">start</span></tt> + 500.</p> <p>Calls are rate-limited to prevent accidental overuse. If you exceed the limit From e667ac1741bc5f73b32a660811a26c9b67b54ceb Mon Sep 17 00:00:00 2001 From: Justin Seiter <justinseiter@gmail.com> Date: Wed, 1 May 2019 13:27:12 -0500 Subject: [PATCH 167/219] Updates links to use ssl where appropriate --- README.md | 2 +- _sources/index.txt | 2 +- api/external/automation.html | 22 +++++++++++----------- api/external/event_api.html | 22 +++++++++++----------- api/external/fields.html | 22 +++++++++++----------- api/external/groups.html | 22 +++++++++++----------- api/external/mailings.html | 22 +++++++++++----------- api/external/members.html | 22 +++++++++++----------- api/external/response.html | 22 +++++++++++----------- api/external/searches.html | 22 +++++++++++----------- api/external/signup_forms.html | 22 +++++++++++----------- api/external/triggers.html | 22 +++++++++++----------- api/external/webhooks.html | 30 +++++++++++++++--------------- genindex.html | 22 +++++++++++----------- http-routingtable.html | 22 +++++++++++----------- index.html | 24 ++++++++++++------------ member_search.html | 22 +++++++++++----------- pagination.html | 22 +++++++++++----------- php_get_member_example.html | 22 +++++++++++----------- php_signup_example.html | 22 +++++++++++----------- placeholders.html | 22 +++++++++++----------- search.html | 22 +++++++++++----------- webhooks.html | 22 +++++++++++----------- 23 files changed, 238 insertions(+), 238 deletions(-) diff --git a/README.md b/README.md index 86f16e3..2741196 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ emma-api-documentation ====================== -Comprehensive documentation on Emma's public API can be found on the 'gh-pages' branch of this repository or at http://api.myemma.com/. +Comprehensive documentation on Emma's public API can be found on the 'gh-pages' branch of this repository or at https://api.myemma.com/. diff --git a/_sources/index.txt b/_sources/index.txt index 7439230..58d2e79 100644 --- a/_sources/index.txt +++ b/_sources/index.txt @@ -6,7 +6,7 @@ A Word To The Wise... Use the documentation here to set up and troubleshoot your API calls. We don't offer one-on-one support for Emma's public API, but our system is monitored around the clock. If there's ever a dropped connection -or outage, we'll notify users on our `status page <http://myemma.com/status>`_. +or outage, we'll notify users on our `status page <https://myemma.com/status>`_. Overview -------- diff --git a/api/external/automation.html b/api/external/automation.html index c3bbca6..87b93b4 100644 --- a/api/external/automation.html +++ b/api/external/automation.html @@ -21,7 +21,7 @@ }; </script> - <script src="http://code.jquery.com/jquery-1.4.min.js"></script> + <script src="https://code.jquery.com/jquery-1.4.min.js"></script> <script>window.jQuery || document.write('<script src="_static/jquery.js"><\/script>')</script> <link href="https://fonts.googleapis.com/css?family=Roboto:400,700" rel="stylesheet"> @@ -30,12 +30,12 @@ <link rel="top" title="audience 0.1 documentation" href="../../index.html" /> <link rel="next" title="Groups" href="groups.html" /> <link rel="prev" title="Emma API" href="../../index.html" /> - <link rel="icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> - <link rel="shortcut icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> - <link rel="apple-touch-icon-precomposed" href="http://myemma.com/static/global/favicons/apple-iphone.png" /> - <link rel="apple-touch-icon-precomposed" sizes="72x72" href="http://myemma.com/static/global/favicons/apple-ipad.png" /> - <link rel="apple-touch-icon-precomposed" sizes="114x114" href="http://myemma.com/static/global/favicons/apple-iphone-2x.png" /> - <link rel="apple-touch-icon-precomposed" sizes="144x144" href="http://myemma.com/static/global/favicons/apple-ipad-2x.png" /> + <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"> + <link rel="apple-touch-icon-precomposed" href="https://myemma.com/static/global/favicons/apple-iphone.png" /> + <link rel="apple-touch-icon-precomposed" sizes="72x72" href="https://myemma.com/static/global/favicons/apple-ipad.png" /> + <link rel="apple-touch-icon-precomposed" sizes="114x114" href="https://myemma.com/static/global/favicons/apple-iphone-2x.png" /> + <link rel="apple-touch-icon-precomposed" sizes="144x144" href="https://myemma.com/static/global/favicons/apple-ipad-2x.png" /> <style type="text/css"> .resp-trigger, .resp-trigger:hover {font-size:10pt;text-decoration:none;} @@ -267,16 +267,16 @@ <h3>Quick search</h3> <div id="emma-links"> <h3>Emma Links</h3> <ul> - <li><a href="http://myemma.com" title="Visit Emma's homepage" target="_blank">Emma Home</a></li> + <li><a href="https://myemma.com" title="Visit Emma's homepage" target="_blank">Emma Home</a></li> - <li><a href="http://myemma.com/blog" title="Visit the Emma Blog" target="_blank">Emma Blog</a></li> - <li><a href="http://myemma.com/help" title="Visit Emma's help guide" target="_blank">Emma Help</a></li> + <li><a href="https://myemma.com/blog" title="Visit the Emma Blog" target="_blank">Emma Blog</a></li> + <li><a href="https://myemma.com/help" title="Visit Emma's help guide" target="_blank">Emma Help</a></li> </ul> </div> <div id="inquiry"> <h3>Interested in Emma?</h3> - <p>Emma's email marketing makes communicating simple and stylish. <a href="http://myemma.com/get-started/inquire" title="Get started today.">Get started today</a>.</p> + <p>Emma's email marketing makes communicating simple and stylish. <a href="https://myemma.com/get-started/inquire" title="Get started today.">Get started today</a>.</p> </div> </div> </div> diff --git a/api/external/event_api.html b/api/external/event_api.html index 4684834..88d0c13 100644 --- a/api/external/event_api.html +++ b/api/external/event_api.html @@ -22,7 +22,7 @@ }; </script> - <script src="http://code.jquery.com/jquery-1.4.min.js"></script> + <script src="https://code.jquery.com/jquery-1.4.min.js"></script> <script>window.jQuery || document.write('<script src="_static/jquery.js"><\/script>')</script> <link href="https://fonts.googleapis.com/css?family=Roboto:400,700" rel="stylesheet"> @@ -31,12 +31,12 @@ <link rel="top" title="audience 0.1 documentation" href="../../index.html" /> <link rel="next" title="Members" href="members.html" /> <link rel="prev" title="Groups" href="groups.html" /> - <link rel="icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> - <link rel="shortcut icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> - <link rel="apple-touch-icon-precomposed" href="http://myemma.com/static/global/favicons/apple-iphone.png" /> - <link rel="apple-touch-icon-precomposed" sizes="72x72" href="http://myemma.com/static/global/favicons/apple-ipad.png" /> - <link rel="apple-touch-icon-precomposed" sizes="114x114" href="http://myemma.com/static/global/favicons/apple-iphone-2x.png" /> - <link rel="apple-touch-icon-precomposed" sizes="144x144" href="http://myemma.com/static/global/favicons/apple-ipad-2x.png" /> + <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"> + <link rel="apple-touch-icon-precomposed" href="https://myemma.com/static/global/favicons/apple-iphone.png" /> + <link rel="apple-touch-icon-precomposed" sizes="72x72" href="https://myemma.com/static/global/favicons/apple-ipad.png" /> + <link rel="apple-touch-icon-precomposed" sizes="114x114" href="https://myemma.com/static/global/favicons/apple-iphone-2x.png" /> + <link rel="apple-touch-icon-precomposed" sizes="144x144" href="https://myemma.com/static/global/favicons/apple-ipad-2x.png" /> <style type="text/css"> .resp-trigger, .resp-trigger:hover {font-size:10pt;text-decoration:none;} @@ -269,16 +269,16 @@ <h3>Quick search</h3> <div id="emma-links"> <h3>Emma Links</h3> <ul> - <li><a href="http://myemma.com" title="Visit Emma's homepage" target="_blank">Emma Home</a></li> + <li><a href="https://myemma.com" title="Visit Emma's homepage" target="_blank">Emma Home</a></li> - <li><a href="http://myemma.com/blog" title="Visit the Emma Blog" target="_blank">Emma Blog</a></li> - <li><a href="http://myemma.com/help" title="Visit Emma's help guide" target="_blank">Emma Help</a></li> + <li><a href="https://myemma.com/blog" title="Visit the Emma Blog" target="_blank">Emma Blog</a></li> + <li><a href="https://myemma.com/help" title="Visit Emma's help guide" target="_blank">Emma Help</a></li> </ul> </div> <div id="inquiry"> <h3>Interested in Emma?</h3> - <p>Emma's email marketing makes communicating simple and stylish. <a href="http://myemma.com/get-started/inquire" title="Get started today.">Get started today</a>.</p> + <p>Emma's email marketing makes communicating simple and stylish. <a href="https://myemma.com/get-started/inquire" title="Get started today.">Get started today</a>.</p> </div> </div> </div> diff --git a/api/external/fields.html b/api/external/fields.html index 6e0288f..f50b6e1 100644 --- a/api/external/fields.html +++ b/api/external/fields.html @@ -22,7 +22,7 @@ }; </script> - <script src="http://code.jquery.com/jquery-1.4.min.js"></script> + <script src="https://code.jquery.com/jquery-1.4.min.js"></script> <script>window.jQuery || document.write('<script src="_static/jquery.js"><\/script>')</script> <link href="https://fonts.googleapis.com/css?family=Roboto:400,700" rel="stylesheet"> @@ -31,12 +31,12 @@ <link rel="top" title="audience 0.1 documentation" href="../../index.html" /> <link rel="next" title="Groups" href="groups.html" /> <link rel="prev" title="Emma API" href="../../index.html" /> - <link rel="icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> - <link rel="shortcut icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> - <link rel="apple-touch-icon-precomposed" href="http://myemma.com/static/global/favicons/apple-iphone.png" /> - <link rel="apple-touch-icon-precomposed" sizes="72x72" href="http://myemma.com/static/global/favicons/apple-ipad.png" /> - <link rel="apple-touch-icon-precomposed" sizes="114x114" href="http://myemma.com/static/global/favicons/apple-iphone-2x.png" /> - <link rel="apple-touch-icon-precomposed" sizes="144x144" href="http://myemma.com/static/global/favicons/apple-ipad-2x.png" /> + <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"> + <link rel="apple-touch-icon-precomposed" href="https://myemma.com/static/global/favicons/apple-iphone.png" /> + <link rel="apple-touch-icon-precomposed" sizes="72x72" href="https://myemma.com/static/global/favicons/apple-ipad.png" /> + <link rel="apple-touch-icon-precomposed" sizes="114x114" href="https://myemma.com/static/global/favicons/apple-iphone-2x.png" /> + <link rel="apple-touch-icon-precomposed" sizes="144x144" href="https://myemma.com/static/global/favicons/apple-ipad-2x.png" /> <style type="text/css"> .resp-trigger, .resp-trigger:hover {font-size:10pt;text-decoration:none;} @@ -398,16 +398,16 @@ <h3>Quick search</h3> <div id="emma-links"> <h3>Emma Links</h3> <ul> - <li><a href="http://myemma.com" title="Visit Emma's homepage" target="_blank">Emma Home</a></li> + <li><a href="https://myemma.com" title="Visit Emma's homepage" target="_blank">Emma Home</a></li> - <li><a href="http://myemma.com/blog" title="Visit the Emma Blog" target="_blank">Emma Blog</a></li> - <li><a href="http://myemma.com/help" title="Visit Emma's help guide" target="_blank">Emma Help</a></li> + <li><a href="https://myemma.com/blog" title="Visit the Emma Blog" target="_blank">Emma Blog</a></li> + <li><a href="https://myemma.com/help" title="Visit Emma's help guide" target="_blank">Emma Help</a></li> </ul> </div> <div id="inquiry"> <h3>Interested in Emma?</h3> - <p>Emma's email marketing makes communicating simple and stylish. <a href="http://myemma.com/get-started/inquire" title="Get started today.">Get started today</a>.</p> + <p>Emma's email marketing makes communicating simple and stylish. <a href="https://myemma.com/get-started/inquire" title="Get started today.">Get started today</a>.</p> </div> </div> </div> diff --git a/api/external/groups.html b/api/external/groups.html index f2767ef..ed104e2 100644 --- a/api/external/groups.html +++ b/api/external/groups.html @@ -22,7 +22,7 @@ }; </script> - <script src="http://code.jquery.com/jquery-1.4.min.js"></script> + <script src="https://code.jquery.com/jquery-1.4.min.js"></script> <script>window.jQuery || document.write('<script src="_static/jquery.js"><\/script>')</script> <link href="https://fonts.googleapis.com/css?family=Roboto:400,700" rel="stylesheet"> @@ -31,12 +31,12 @@ <link rel="top" title="audience 0.1 documentation" href="../../index.html" /> <link rel="next" title="Mailings" href="mailings.html" /> <link rel="prev" title="Fields" href="fields.html" /> - <link rel="icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> - <link rel="shortcut icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> - <link rel="apple-touch-icon-precomposed" href="http://myemma.com/static/global/favicons/apple-iphone.png" /> - <link rel="apple-touch-icon-precomposed" sizes="72x72" href="http://myemma.com/static/global/favicons/apple-ipad.png" /> - <link rel="apple-touch-icon-precomposed" sizes="114x114" href="http://myemma.com/static/global/favicons/apple-iphone-2x.png" /> - <link rel="apple-touch-icon-precomposed" sizes="144x144" href="http://myemma.com/static/global/favicons/apple-ipad-2x.png" /> + <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"> + <link rel="apple-touch-icon-precomposed" href="https://myemma.com/static/global/favicons/apple-iphone.png" /> + <link rel="apple-touch-icon-precomposed" sizes="72x72" href="https://myemma.com/static/global/favicons/apple-ipad.png" /> + <link rel="apple-touch-icon-precomposed" sizes="114x114" href="https://myemma.com/static/global/favicons/apple-iphone-2x.png" /> + <link rel="apple-touch-icon-precomposed" sizes="144x144" href="https://myemma.com/static/global/favicons/apple-ipad-2x.png" /> <style type="text/css"> .resp-trigger, .resp-trigger:hover {font-size:10pt;text-decoration:none;} @@ -679,16 +679,16 @@ <h3>Quick search</h3> <div id="emma-links"> <h3>Emma Links</h3> <ul> - <li><a href="http://myemma.com" title="Visit Emma's homepage" target="_blank">Emma Home</a></li> + <li><a href="https://myemma.com" title="Visit Emma's homepage" target="_blank">Emma Home</a></li> - <li><a href="http://myemma.com/blog" title="Visit the Emma Blog" target="_blank">Emma Blog</a></li> - <li><a href="http://myemma.com/help" title="Visit Emma's help guide" target="_blank">Emma Help</a></li> + <li><a href="https://myemma.com/blog" title="Visit the Emma Blog" target="_blank">Emma Blog</a></li> + <li><a href="https://myemma.com/help" title="Visit Emma's help guide" target="_blank">Emma Help</a></li> </ul> </div> <div id="inquiry"> <h3>Interested in Emma?</h3> - <p>Emma's email marketing makes communicating simple and stylish. <a href="http://myemma.com/get-started/inquire" title="Get started today.">Get started today</a>.</p> + <p>Emma's email marketing makes communicating simple and stylish. <a href="https://myemma.com/get-started/inquire" title="Get started today.">Get started today</a>.</p> </div> </div> </div> diff --git a/api/external/mailings.html b/api/external/mailings.html index 6890004..8e19f52 100644 --- a/api/external/mailings.html +++ b/api/external/mailings.html @@ -22,7 +22,7 @@ }; </script> - <script src="http://code.jquery.com/jquery-1.4.min.js"></script> + <script src="https://code.jquery.com/jquery-1.4.min.js"></script> <script>window.jQuery || document.write('<script src="_static/jquery.js"><\/script>')</script> <link href="https://fonts.googleapis.com/css?family=Roboto:400,700" rel="stylesheet"> @@ -31,12 +31,12 @@ <link rel="top" title="audience 0.1 documentation" href="../../index.html" /> <link rel="next" title="Members" href="members.html" /> <link rel="prev" title="Groups" href="groups.html" /> - <link rel="icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> - <link rel="shortcut icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> - <link rel="apple-touch-icon-precomposed" href="http://myemma.com/static/global/favicons/apple-iphone.png" /> - <link rel="apple-touch-icon-precomposed" sizes="72x72" href="http://myemma.com/static/global/favicons/apple-ipad.png" /> - <link rel="apple-touch-icon-precomposed" sizes="114x114" href="http://myemma.com/static/global/favicons/apple-iphone-2x.png" /> - <link rel="apple-touch-icon-precomposed" sizes="144x144" href="http://myemma.com/static/global/favicons/apple-ipad-2x.png" /> + <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"> + <link rel="apple-touch-icon-precomposed" href="https://myemma.com/static/global/favicons/apple-iphone.png" /> + <link rel="apple-touch-icon-precomposed" sizes="72x72" href="https://myemma.com/static/global/favicons/apple-ipad.png" /> + <link rel="apple-touch-icon-precomposed" sizes="114x114" href="https://myemma.com/static/global/favicons/apple-iphone-2x.png" /> + <link rel="apple-touch-icon-precomposed" sizes="144x144" href="https://myemma.com/static/global/favicons/apple-ipad-2x.png" /> <style type="text/css"> .resp-trigger, .resp-trigger:hover {font-size:10pt;text-decoration:none;} @@ -1101,16 +1101,16 @@ <h3>Quick search</h3> <div id="emma-links"> <h3>Emma Links</h3> <ul> - <li><a href="http://myemma.com" title="Visit Emma's homepage" target="_blank">Emma Home</a></li> + <li><a href="https://myemma.com" title="Visit Emma's homepage" target="_blank">Emma Home</a></li> - <li><a href="http://myemma.com/blog" title="Visit the Emma Blog" target="_blank">Emma Blog</a></li> - <li><a href="http://myemma.com/help" title="Visit Emma's help guide" target="_blank">Emma Help</a></li> + <li><a href="https://myemma.com/blog" title="Visit the Emma Blog" target="_blank">Emma Blog</a></li> + <li><a href="https://myemma.com/help" title="Visit Emma's help guide" target="_blank">Emma Help</a></li> </ul> </div> <div id="inquiry"> <h3>Interested in Emma?</h3> - <p>Emma's email marketing makes communicating simple and stylish. <a href="http://myemma.com/get-started/inquire" title="Get started today.">Get started today</a>.</p> + <p>Emma's email marketing makes communicating simple and stylish. <a href="https://myemma.com/get-started/inquire" title="Get started today.">Get started today</a>.</p> </div> </div> </div> diff --git a/api/external/members.html b/api/external/members.html index 956dabb..992f60b 100644 --- a/api/external/members.html +++ b/api/external/members.html @@ -21,7 +21,7 @@ }; </script> - <script src="http://code.jquery.com/jquery-1.4.min.js"></script> + <script src="https://code.jquery.com/jquery-1.4.min.js"></script> <script>window.jQuery || document.write('<script src="_static/jquery.js"><\/script>')</script> <link href="https://fonts.googleapis.com/css?family=Roboto:400,700" rel="stylesheet"> @@ -30,12 +30,12 @@ <link rel="top" title="audience 0.1 documentation" href="../../index.html" /> <link rel="next" title="Response" href="response.html" /> <link rel="prev" title="Mailings" href="mailings.html" /> - <link rel="icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> - <link rel="shortcut icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> - <link rel="apple-touch-icon-precomposed" href="http://myemma.com/static/global/favicons/apple-iphone.png" /> - <link rel="apple-touch-icon-precomposed" sizes="72x72" href="http://myemma.com/static/global/favicons/apple-ipad.png" /> - <link rel="apple-touch-icon-precomposed" sizes="114x114" href="http://myemma.com/static/global/favicons/apple-iphone-2x.png" /> - <link rel="apple-touch-icon-precomposed" sizes="144x144" href="http://myemma.com/static/global/favicons/apple-ipad-2x.png" /> + <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"> + <link rel="apple-touch-icon-precomposed" href="https://myemma.com/static/global/favicons/apple-iphone.png" /> + <link rel="apple-touch-icon-precomposed" sizes="72x72" href="https://myemma.com/static/global/favicons/apple-ipad.png" /> + <link rel="apple-touch-icon-precomposed" sizes="114x114" href="https://myemma.com/static/global/favicons/apple-iphone-2x.png" /> + <link rel="apple-touch-icon-precomposed" sizes="144x144" href="https://myemma.com/static/global/favicons/apple-ipad-2x.png" /> <style type="text/css"> .resp-trigger, .resp-trigger:hover {font-size:10pt;text-decoration:none;} @@ -1449,16 +1449,16 @@ <h3>Quick search</h3> <div id="emma-links"> <h3>Emma Links</h3> <ul> - <li><a href="http://myemma.com" title="Visit Emma's homepage" target="_blank">Emma Home</a></li> + <li><a href="https://myemma.com" title="Visit Emma's homepage" target="_blank">Emma Home</a></li> - <li><a href="http://myemma.com/blog" title="Visit the Emma Blog" target="_blank">Emma Blog</a></li> - <li><a href="http://myemma.com/help" title="Visit Emma's help guide" target="_blank">Emma Help</a></li> + <li><a href="https://myemma.com/blog" title="Visit the Emma Blog" target="_blank">Emma Blog</a></li> + <li><a href="https://myemma.com/help" title="Visit Emma's help guide" target="_blank">Emma Help</a></li> </ul> </div> <div id="inquiry"> <h3>Interested in Emma?</h3> - <p>Emma's email marketing makes communicating simple and stylish. <a href="http://myemma.com/get-started/inquire" title="Get started today.">Get started today</a>.</p> + <p>Emma's email marketing makes communicating simple and stylish. <a href="https://myemma.com/get-started/inquire" title="Get started today.">Get started today</a>.</p> </div> </div> </div> diff --git a/api/external/response.html b/api/external/response.html index ea499d7..5f20f09 100644 --- a/api/external/response.html +++ b/api/external/response.html @@ -21,7 +21,7 @@ }; </script> - <script src="http://code.jquery.com/jquery-1.4.min.js"></script> + <script src="https://code.jquery.com/jquery-1.4.min.js"></script> <script>window.jQuery || document.write('<script src="_static/jquery.js"><\/script>')</script> <link href="https://fonts.googleapis.com/css?family=Roboto:400,700" rel="stylesheet"> @@ -30,12 +30,12 @@ <link rel="top" title="audience 0.1 documentation" href="../../index.html" /> <link rel="next" title="Searches" href="searches.html" /> <link rel="prev" title="Members" href="members.html" /> - <link rel="icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> - <link rel="shortcut icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> - <link rel="apple-touch-icon-precomposed" href="http://myemma.com/static/global/favicons/apple-iphone.png" /> - <link rel="apple-touch-icon-precomposed" sizes="72x72" href="http://myemma.com/static/global/favicons/apple-ipad.png" /> - <link rel="apple-touch-icon-precomposed" sizes="114x114" href="http://myemma.com/static/global/favicons/apple-iphone-2x.png" /> - <link rel="apple-touch-icon-precomposed" sizes="144x144" href="http://myemma.com/static/global/favicons/apple-ipad-2x.png" /> + <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"> + <link rel="apple-touch-icon-precomposed" href="https://myemma.com/static/global/favicons/apple-iphone.png" /> + <link rel="apple-touch-icon-precomposed" sizes="72x72" href="https://myemma.com/static/global/favicons/apple-ipad.png" /> + <link rel="apple-touch-icon-precomposed" sizes="114x114" href="https://myemma.com/static/global/favicons/apple-iphone-2x.png" /> + <link rel="apple-touch-icon-precomposed" sizes="144x144" href="https://myemma.com/static/global/favicons/apple-ipad-2x.png" /> <style type="text/css"> .resp-trigger, .resp-trigger:hover {font-size:10pt;text-decoration:none;} @@ -1490,16 +1490,16 @@ <h3>Quick search</h3> <div id="emma-links"> <h3>Emma Links</h3> <ul> - <li><a href="http://myemma.com" title="Visit Emma's homepage" target="_blank">Emma Home</a></li> + <li><a href="https://myemma.com" title="Visit Emma's homepage" target="_blank">Emma Home</a></li> - <li><a href="http://myemma.com/blog" title="Visit the Emma Blog" target="_blank">Emma Blog</a></li> - <li><a href="http://myemma.com/help" title="Visit Emma's help guide" target="_blank">Emma Help</a></li> + <li><a href="https://myemma.com/blog" title="Visit the Emma Blog" target="_blank">Emma Blog</a></li> + <li><a href="https://myemma.com/help" title="Visit Emma's help guide" target="_blank">Emma Help</a></li> </ul> </div> <div id="inquiry"> <h3>Interested in Emma?</h3> - <p>Emma's email marketing makes communicating simple and stylish. <a href="http://myemma.com/get-started/inquire" title="Get started today.">Get started today</a>.</p> + <p>Emma's email marketing makes communicating simple and stylish. <a href="https://myemma.com/get-started/inquire" title="Get started today.">Get started today</a>.</p> </div> </div> </div> diff --git a/api/external/searches.html b/api/external/searches.html index d8a8412..5c0f175 100644 --- a/api/external/searches.html +++ b/api/external/searches.html @@ -22,7 +22,7 @@ }; </script> - <script src="http://code.jquery.com/jquery-1.4.min.js"></script> + <script src="https://code.jquery.com/jquery-1.4.min.js"></script> <script>window.jQuery || document.write('<script src="_static/jquery.js"><\/script>')</script> <link href="https://fonts.googleapis.com/css?family=Roboto:400,700" rel="stylesheet"> @@ -31,12 +31,12 @@ <link rel="top" title="audience 0.1 documentation" href="../../index.html" /> <link rel="next" title="Signup Forms" href="signup_forms.html" /> <link rel="prev" title="Response" href="response.html" /> - <link rel="icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> - <link rel="shortcut icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> - <link rel="apple-touch-icon-precomposed" href="http://myemma.com/static/global/favicons/apple-iphone.png" /> - <link rel="apple-touch-icon-precomposed" sizes="72x72" href="http://myemma.com/static/global/favicons/apple-ipad.png" /> - <link rel="apple-touch-icon-precomposed" sizes="114x114" href="http://myemma.com/static/global/favicons/apple-iphone-2x.png" /> - <link rel="apple-touch-icon-precomposed" sizes="144x144" href="http://myemma.com/static/global/favicons/apple-ipad-2x.png" /> + <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"> + <link rel="apple-touch-icon-precomposed" href="https://myemma.com/static/global/favicons/apple-iphone.png" /> + <link rel="apple-touch-icon-precomposed" sizes="72x72" href="https://myemma.com/static/global/favicons/apple-ipad.png" /> + <link rel="apple-touch-icon-precomposed" sizes="114x114" href="https://myemma.com/static/global/favicons/apple-iphone-2x.png" /> + <link rel="apple-touch-icon-precomposed" sizes="144x144" href="https://myemma.com/static/global/favicons/apple-ipad-2x.png" /> <style type="text/css"> .resp-trigger, .resp-trigger:hover {font-size:10pt;text-decoration:none;} @@ -495,16 +495,16 @@ <h3>Quick search</h3> <div id="emma-links"> <h3>Emma Links</h3> <ul> - <li><a href="http://myemma.com" title="Visit Emma's homepage" target="_blank">Emma Home</a></li> + <li><a href="https://myemma.com" title="Visit Emma's homepage" target="_blank">Emma Home</a></li> - <li><a href="http://myemma.com/blog" title="Visit the Emma Blog" target="_blank">Emma Blog</a></li> - <li><a href="http://myemma.com/help" title="Visit Emma's help guide" target="_blank">Emma Help</a></li> + <li><a href="https://myemma.com/blog" title="Visit the Emma Blog" target="_blank">Emma Blog</a></li> + <li><a href="https://myemma.com/help" title="Visit Emma's help guide" target="_blank">Emma Help</a></li> </ul> </div> <div id="inquiry"> <h3>Interested in Emma?</h3> - <p>Emma's email marketing makes communicating simple and stylish. <a href="http://myemma.com/get-started/inquire" title="Get started today.">Get started today</a>.</p> + <p>Emma's email marketing makes communicating simple and stylish. <a href="https://myemma.com/get-started/inquire" title="Get started today.">Get started today</a>.</p> </div> </div> </div> diff --git a/api/external/signup_forms.html b/api/external/signup_forms.html index 8b03800..3f337f4 100644 --- a/api/external/signup_forms.html +++ b/api/external/signup_forms.html @@ -22,7 +22,7 @@ }; </script> - <script src="http://code.jquery.com/jquery-1.4.min.js"></script> + <script src="https://code.jquery.com/jquery-1.4.min.js"></script> <script>window.jQuery || document.write('<script src="_static/jquery.js"><\/script>')</script> <link href="https://fonts.googleapis.com/css?family=Roboto:400,700" rel="stylesheet"> @@ -31,12 +31,12 @@ <link rel="top" title="audience 0.1 documentation" href="../../index.html" /> <link rel="next" title="Triggers" href="triggers.html" /> <link rel="prev" title="Searches" href="searches.html" /> - <link rel="icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> - <link rel="shortcut icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> - <link rel="apple-touch-icon-precomposed" href="http://myemma.com/static/global/favicons/apple-iphone.png" /> - <link rel="apple-touch-icon-precomposed" sizes="72x72" href="http://myemma.com/static/global/favicons/apple-ipad.png" /> - <link rel="apple-touch-icon-precomposed" sizes="114x114" href="http://myemma.com/static/global/favicons/apple-iphone-2x.png" /> - <link rel="apple-touch-icon-precomposed" sizes="144x144" href="http://myemma.com/static/global/favicons/apple-ipad-2x.png" /> + <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"> + <link rel="apple-touch-icon-precomposed" href="https://myemma.com/static/global/favicons/apple-iphone.png" /> + <link rel="apple-touch-icon-precomposed" sizes="72x72" href="https://myemma.com/static/global/favicons/apple-ipad.png" /> + <link rel="apple-touch-icon-precomposed" sizes="114x114" href="https://myemma.com/static/global/favicons/apple-iphone-2x.png" /> + <link rel="apple-touch-icon-precomposed" sizes="144x144" href="https://myemma.com/static/global/favicons/apple-ipad-2x.png" /> <style type="text/css"> .resp-trigger, .resp-trigger:hover {font-size:10pt;text-decoration:none;} @@ -171,16 +171,16 @@ <h3>Quick search</h3> <div id="emma-links"> <h3>Emma Links</h3> <ul> - <li><a href="http://myemma.com" title="Visit Emma's homepage" target="_blank">Emma Home</a></li> + <li><a href="https://myemma.com" title="Visit Emma's homepage" target="_blank">Emma Home</a></li> - <li><a href="http://myemma.com/blog" title="Visit the Emma Blog" target="_blank">Emma Blog</a></li> - <li><a href="http://myemma.com/help" title="Visit Emma's help guide" target="_blank">Emma Help</a></li> + <li><a href="https://myemma.com/blog" title="Visit the Emma Blog" target="_blank">Emma Blog</a></li> + <li><a href="https://myemma.com/help" title="Visit Emma's help guide" target="_blank">Emma Help</a></li> </ul> </div> <div id="inquiry"> <h3>Interested in Emma?</h3> - <p>Emma's email marketing makes communicating simple and stylish. <a href="http://myemma.com/get-started/inquire" title="Get started today.">Get started today</a>.</p> + <p>Emma's email marketing makes communicating simple and stylish. <a href="https://myemma.com/get-started/inquire" title="Get started today.">Get started today</a>.</p> </div> </div> </div> diff --git a/api/external/triggers.html b/api/external/triggers.html index 79c4636..dcc2ef8 100644 --- a/api/external/triggers.html +++ b/api/external/triggers.html @@ -21,7 +21,7 @@ }; </script> - <script src="http://code.jquery.com/jquery-1.4.min.js"></script> + <script src="https://code.jquery.com/jquery-1.4.min.js"></script> <script>window.jQuery || document.write('<script src="_static/jquery.js"><\/script>')</script> <link href="https://fonts.googleapis.com/css?family=Roboto:400,700" rel="stylesheet"> @@ -30,12 +30,12 @@ <link rel="top" title="audience 0.1 documentation" href="../../index.html" /> <link rel="next" title="Webhooks" href="webhooks.html" /> <link rel="prev" title="Signup Forms" href="signup_forms.html" /> - <link rel="icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> - <link rel="shortcut icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> - <link rel="apple-touch-icon-precomposed" href="http://myemma.com/static/global/favicons/apple-iphone.png" /> - <link rel="apple-touch-icon-precomposed" sizes="72x72" href="http://myemma.com/static/global/favicons/apple-ipad.png" /> - <link rel="apple-touch-icon-precomposed" sizes="114x114" href="http://myemma.com/static/global/favicons/apple-iphone-2x.png" /> - <link rel="apple-touch-icon-precomposed" sizes="144x144" href="http://myemma.com/static/global/favicons/apple-ipad-2x.png" /> + <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"> + <link rel="apple-touch-icon-precomposed" href="https://myemma.com/static/global/favicons/apple-iphone.png" /> + <link rel="apple-touch-icon-precomposed" sizes="72x72" href="https://myemma.com/static/global/favicons/apple-ipad.png" /> + <link rel="apple-touch-icon-precomposed" sizes="114x114" href="https://myemma.com/static/global/favicons/apple-iphone-2x.png" /> + <link rel="apple-touch-icon-precomposed" sizes="144x144" href="https://myemma.com/static/global/favicons/apple-ipad-2x.png" /> <style type="text/css"> .resp-trigger, .resp-trigger:hover {font-size:10pt;text-decoration:none;} @@ -446,16 +446,16 @@ <h3>Quick search</h3> <div id="emma-links"> <h3>Emma Links</h3> <ul> - <li><a href="http://myemma.com" title="Visit Emma's homepage" target="_blank">Emma Home</a></li> + <li><a href="https://myemma.com" title="Visit Emma's homepage" target="_blank">Emma Home</a></li> - <li><a href="http://myemma.com/blog" title="Visit the Emma Blog" target="_blank">Emma Blog</a></li> - <li><a href="http://myemma.com/help" title="Visit Emma's help guide" target="_blank">Emma Help</a></li> + <li><a href="https://myemma.com/blog" title="Visit the Emma Blog" target="_blank">Emma Blog</a></li> + <li><a href="https://myemma.com/help" title="Visit Emma's help guide" target="_blank">Emma Help</a></li> </ul> </div> <div id="inquiry"> <h3>Interested in Emma?</h3> - <p>Emma's email marketing makes communicating simple and stylish. <a href="http://myemma.com/get-started/inquire" title="Get started today.">Get started today</a>.</p> + <p>Emma's email marketing makes communicating simple and stylish. <a href="https://myemma.com/get-started/inquire" title="Get started today.">Get started today</a>.</p> </div> </div> </div> diff --git a/api/external/webhooks.html b/api/external/webhooks.html index 5f6c95c..b328b40 100644 --- a/api/external/webhooks.html +++ b/api/external/webhooks.html @@ -22,21 +22,21 @@ }; </script> - <script src="http://code.jquery.com/jquery-1.4.min.js"></script> + <script src="https://code.jquery.com/jquery-1.4.min.js"></script> <script>window.jQuery || document.write('<script src="_static/jquery.js"><\/script>')</script> - + <link href="https://fonts.googleapis.com/css?family=Roboto:400,700" rel="stylesheet"> <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="Pagination" href="../../pagination.html" /> <link rel="prev" title="Triggers" href="triggers.html" /> - <link rel="icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> - <link rel="shortcut icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> - <link rel="apple-touch-icon-precomposed" href="http://myemma.com/static/global/favicons/apple-iphone.png" /> - <link rel="apple-touch-icon-precomposed" sizes="72x72" href="http://myemma.com/static/global/favicons/apple-ipad.png" /> - <link rel="apple-touch-icon-precomposed" sizes="114x114" href="http://myemma.com/static/global/favicons/apple-iphone-2x.png" /> - <link rel="apple-touch-icon-precomposed" sizes="144x144" href="http://myemma.com/static/global/favicons/apple-ipad-2x.png" /> + <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"> + <link rel="apple-touch-icon-precomposed" href="https://myemma.com/static/global/favicons/apple-iphone.png" /> + <link rel="apple-touch-icon-precomposed" sizes="72x72" href="https://myemma.com/static/global/favicons/apple-ipad.png" /> + <link rel="apple-touch-icon-precomposed" sizes="114x114" href="https://myemma.com/static/global/favicons/apple-iphone-2x.png" /> + <link rel="apple-touch-icon-precomposed" sizes="144x144" href="https://myemma.com/static/global/favicons/apple-ipad-2x.png" /> <style type="text/css"> .resp-trigger, .resp-trigger:hover {font-size:10pt;text-decoration:none;} @@ -127,7 +127,7 @@ <h1>Webhooks<a class="headerlink" href="#webhooks" title="Permalink to this head [ { - "url": "http://myemma.com", + "url": "https://myemma.com", "webhook_id": 100, "method": "POST", "account_id": 100, @@ -169,7 +169,7 @@ <h1>Webhooks<a class="headerlink" href="#webhooks" title="Permalink to this head <b>GET /100/webhooks/100</b> { - "url": "http://myemma.com", + "url": "https://myemma.com", "event": "mailing_finish", "method": "POST", "account_id": 100, @@ -346,7 +346,7 @@ <h1>Webhooks<a class="headerlink" href="#webhooks" title="Permalink to this head <pre class="response"> <b>POST /100/webhooks</b> { - "url": "http://myemma.com/blog/", + "url": "https://myemma.com/blog/", "event": "mailing_finish" } @@ -468,16 +468,16 @@ <h3>Quick search</h3> <div id="emma-links"> <h3>Emma Links</h3> <ul> - <li><a href="http://myemma.com" title="Visit Emma's homepage" target="_blank">Emma Home</a></li> + <li><a href="https://myemma.com" title="Visit Emma's homepage" target="_blank">Emma Home</a></li> - <li><a href="http://myemma.com/blog" title="Visit the Emma Blog" target="_blank">Emma Blog</a></li> - <li><a href="http://myemma.com/help" title="Visit Emma's help guide" target="_blank">Emma Help</a></li> + <li><a href="https://myemma.com/blog" title="Visit the Emma Blog" target="_blank">Emma Blog</a></li> + <li><a href="https://myemma.com/help" title="Visit Emma's help guide" target="_blank">Emma Help</a></li> </ul> </div> <div id="inquiry"> <h3>Interested in Emma?</h3> - <p>Emma's email marketing makes communicating simple and stylish. <a href="http://myemma.com/get-started/inquire" title="Get started today.">Get started today</a>.</p> + <p>Emma's email marketing makes communicating simple and stylish. <a href="https://myemma.com/get-started/inquire" title="Get started today.">Get started today</a>.</p> </div> </div> </div> diff --git a/genindex.html b/genindex.html index 8ec73f0..2c629b5 100644 --- a/genindex.html +++ b/genindex.html @@ -23,19 +23,19 @@ }; </script> - <script src="http://code.jquery.com/jquery-1.4.min.js"></script> + <script src="https://code.jquery.com/jquery-1.4.min.js"></script> <script>window.jQuery || document.write('<script src="_static/jquery.js"><\/script>')</script> <link href="https://fonts.googleapis.com/css?family=Roboto:400,700" rel="stylesheet"> <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="icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> - <link rel="shortcut icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> - <link rel="apple-touch-icon-precomposed" href="http://myemma.com/static/global/favicons/apple-iphone.png" /> - <link rel="apple-touch-icon-precomposed" sizes="72x72" href="http://myemma.com/static/global/favicons/apple-ipad.png" /> - <link rel="apple-touch-icon-precomposed" sizes="114x114" href="http://myemma.com/static/global/favicons/apple-iphone-2x.png" /> - <link rel="apple-touch-icon-precomposed" sizes="144x144" href="http://myemma.com/static/global/favicons/apple-ipad-2x.png" /> + <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"> + <link rel="apple-touch-icon-precomposed" href="https://myemma.com/static/global/favicons/apple-iphone.png" /> + <link rel="apple-touch-icon-precomposed" sizes="72x72" href="https://myemma.com/static/global/favicons/apple-ipad.png" /> + <link rel="apple-touch-icon-precomposed" sizes="114x114" href="https://myemma.com/static/global/favicons/apple-iphone-2x.png" /> + <link rel="apple-touch-icon-precomposed" sizes="144x144" href="https://myemma.com/static/global/favicons/apple-ipad-2x.png" /> <style type="text/css"> .resp-trigger, .resp-trigger:hover {font-size:10pt;text-decoration:none;} @@ -126,16 +126,16 @@ <h3>Quick search</h3> <div id="emma-links"> <h3>Emma Links</h3> <ul> - <li><a href="http://myemma.com" title="Visit Emma's homepage" target="_blank">Emma Home</a></li> + <li><a href="https://myemma.com" title="Visit Emma's homepage" target="_blank">Emma Home</a></li> - <li><a href="http://myemma.com/blog" title="Visit the Emma Blog" target="_blank">Emma Blog</a></li> - <li><a href="http://myemma.com/help" title="Visit Emma's help guide" target="_blank">Emma Help</a></li> + <li><a href="https://myemma.com/blog" title="Visit the Emma Blog" target="_blank">Emma Blog</a></li> + <li><a href="https://myemma.com/help" title="Visit Emma's help guide" target="_blank">Emma Help</a></li> </ul> </div> <div id="inquiry"> <h3>Interested in Emma?</h3> - <p>Emma's email marketing makes communicating simple and stylish. <a href="http://myemma.com/get-started/inquire" title="Get started today.">Get started today</a>.</p> + <p>Emma's email marketing makes communicating simple and stylish. <a href="https://myemma.com/get-started/inquire" title="Get started today.">Get started today</a>.</p> </div> </div> </div> diff --git a/http-routingtable.html b/http-routingtable.html index 0ca2d92..19b9926 100644 --- a/http-routingtable.html +++ b/http-routingtable.html @@ -22,7 +22,7 @@ }; </script> - <script src="http://code.jquery.com/jquery-1.4.min.js"></script> + <script src="https://code.jquery.com/jquery-1.4.min.js"></script> <script>window.jQuery || document.write('<script src="_static/jquery.js"><\/script>')</script> <link href="https://fonts.googleapis.com/css?family=Roboto:400,700" rel="stylesheet"> @@ -30,12 +30,12 @@ <script type="text/javascript" src="_static/doctools.js"></script> <link rel="top" title="audience 0.1 documentation" href="index.html" /> - <link rel="icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> - <link rel="shortcut icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> - <link rel="apple-touch-icon-precomposed" href="http://myemma.com/static/global/favicons/apple-iphone.png" /> - <link rel="apple-touch-icon-precomposed" sizes="72x72" href="http://myemma.com/static/global/favicons/apple-ipad.png" /> - <link rel="apple-touch-icon-precomposed" sizes="114x114" href="http://myemma.com/static/global/favicons/apple-iphone-2x.png" /> - <link rel="apple-touch-icon-precomposed" sizes="144x144" href="http://myemma.com/static/global/favicons/apple-ipad-2x.png" /> + <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"> + <link rel="apple-touch-icon-precomposed" href="https://myemma.com/static/global/favicons/apple-iphone.png" /> + <link rel="apple-touch-icon-precomposed" sizes="72x72" href="https://myemma.com/static/global/favicons/apple-ipad.png" /> + <link rel="apple-touch-icon-precomposed" sizes="114x114" href="https://myemma.com/static/global/favicons/apple-iphone-2x.png" /> + <link rel="apple-touch-icon-precomposed" sizes="144x144" href="https://myemma.com/static/global/favicons/apple-ipad-2x.png" /> <style type="text/css"> .resp-trigger, .resp-trigger:hover {font-size:10pt;text-decoration:none;} @@ -603,16 +603,16 @@ <h3>Quick search</h3> <div id="emma-links"> <h3>Emma Links</h3> <ul> - <li><a href="http://myemma.com" title="Visit Emma's homepage" target="_blank">Emma Home</a></li> + <li><a href="https://myemma.com" title="Visit Emma's homepage" target="_blank">Emma Home</a></li> - <li><a href="http://myemma.com/blog" title="Visit the Emma Blog" target="_blank">Emma Blog</a></li> - <li><a href="http://myemma.com/help" title="Visit Emma's help guide" target="_blank">Emma Help</a></li> + <li><a href="https://myemma.com/blog" title="Visit the Emma Blog" target="_blank">Emma Blog</a></li> + <li><a href="https://myemma.com/help" title="Visit Emma's help guide" target="_blank">Emma Help</a></li> </ul> </div> <div id="inquiry"> <h3>Interested in Emma?</h3> - <p>Emma's email marketing makes communicating simple and stylish. <a href="http://myemma.com/get-started/inquire" title="Get started today.">Get started today</a>.</p> + <p>Emma's email marketing makes communicating simple and stylish. <a href="https://myemma.com/get-started/inquire" title="Get started today.">Get started today</a>.</p> </div> </div> </div> diff --git a/index.html b/index.html index 0da81f8..cd22388 100644 --- a/index.html +++ b/index.html @@ -21,7 +21,7 @@ }; </script> - <script src="http://code.jquery.com/jquery-1.4.min.js"></script> + <script src="https://code.jquery.com/jquery-1.4.min.js"></script> <script>window.jQuery || document.write('<script src="_static/jquery.js"><\/script>')</script> <link href="https://fonts.googleapis.com/css?family=Roboto:400,700" rel="stylesheet"> @@ -29,12 +29,12 @@ <script type="text/javascript" src="_static/doctools.js"></script> <link rel="top" title="audience 0.1 documentation" href="#" /> <link rel="next" title="Fields" href="api/external/fields.html" /> - <link rel="icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> - <link rel="shortcut icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> - <link rel="apple-touch-icon-precomposed" href="http://myemma.com/static/global/favicons/apple-iphone.png" /> - <link rel="apple-touch-icon-precomposed" sizes="72x72" href="http://myemma.com/static/global/favicons/apple-ipad.png" /> - <link rel="apple-touch-icon-precomposed" sizes="114x114" href="http://myemma.com/static/global/favicons/apple-iphone-2x.png" /> - <link rel="apple-touch-icon-precomposed" sizes="144x144" href="http://myemma.com/static/global/favicons/apple-ipad-2x.png" /> + <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"> + <link rel="apple-touch-icon-precomposed" href="https://myemma.com/static/global/favicons/apple-iphone.png" /> + <link rel="apple-touch-icon-precomposed" sizes="72x72" href="https://myemma.com/static/global/favicons/apple-ipad.png" /> + <link rel="apple-touch-icon-precomposed" sizes="114x114" href="https://myemma.com/static/global/favicons/apple-iphone-2x.png" /> + <link rel="apple-touch-icon-precomposed" sizes="144x144" href="https://myemma.com/static/global/favicons/apple-ipad-2x.png" /> <style type="text/css"> .resp-trigger, .resp-trigger:hover {font-size:10pt;text-decoration:none;} @@ -101,7 +101,7 @@ <h1>Emma API<a class="headerlink" href="#emma-api" title="Permalink to this head <div class="section" id="a-word-to-the-wise"> <h2>A word to the wise...<a class="headerlink" href="#a-word-to-the-wise" title="Permalink to this headline">¶</a></h2> <p> - Use the information on this page to set up and troubleshoot your API calls. If you are interested in paid API support, visit our <a class="reference external" target="_blank" href="http://myemma.com/services/custom-integrations">Custom Integrations</a> page and fill out a request. Our system is monitored around the clock – and if there’s ever a dropped connection or outage, we’ll be sure to notify users on our <a class="reference external" target="_blank" href="http://myemma.com/status">status page</a>. + Use the information on this page to set up and troubleshoot your API calls. If you are interested in paid API support, visit our <a class="reference external" target="_blank" href="https://myemma.com/services/custom-integrations">Custom Integrations</a> page and fill out a request. Our system is monitored around the clock – and if there’s ever a dropped connection or outage, we’ll be sure to notify users on our <a class="reference external" target="_blank" href="https://myemma.com/status">status page</a>. <br /><br /> All JSON payloads must not exceed <b>10MB</b> </p> </div> @@ -353,16 +353,16 @@ <h3>Quick search</h3> <div id="emma-links"> <h3>Emma Links</h3> <ul> - <li><a href="http://myemma.com" title="Visit Emma's homepage" target="_blank">Emma Home</a></li> + <li><a href="https://myemma.com" title="Visit Emma's homepage" target="_blank">Emma Home</a></li> - <li><a href="http://myemma.com/blog" title="Visit the Emma Blog" target="_blank">Emma Blog</a></li> - <li><a href="http://myemma.com/help" title="Visit Emma's help guide" target="_blank">Emma Help</a></li> + <li><a href="https://myemma.com/blog" title="Visit the Emma Blog" target="_blank">Emma Blog</a></li> + <li><a href="https://myemma.com/help" title="Visit Emma's help guide" target="_blank">Emma Help</a></li> </ul> </div> <div id="inquiry"> <h3>Interested in Emma?</h3> - <p>Emma's email marketing makes communicating simple and stylish. <a href="http://myemma.com/get-started/inquire" title="Get started today.">Get started today</a>.</p> + <p>Emma's email marketing makes communicating simple and stylish. <a href="https://myemma.com/get-started/inquire" title="Get started today.">Get started today</a>.</p> </div> </div> </div> diff --git a/member_search.html b/member_search.html index 71c7cf9..672abd5 100644 --- a/member_search.html +++ b/member_search.html @@ -22,7 +22,7 @@ }; </script> - <script src="http://code.jquery.com/jquery-1.4.min.js"></script> + <script src="https://code.jquery.com/jquery-1.4.min.js"></script> <script>window.jQuery || document.write('<script src="_static/jquery.js"><\/script>')</script> <link href="https://fonts.googleapis.com/css?family=Roboto:400,700" rel="stylesheet"> @@ -31,12 +31,12 @@ <link rel="top" title="audience 0.1 documentation" href="index.html" /> <link rel="next" title="Webhook Usage" href="webhooks.html" /> <link rel="prev" title="Placeholder Syntax" href="placeholders.html" /> - <link rel="icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> - <link rel="shortcut icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> - <link rel="apple-touch-icon-precomposed" href="http://myemma.com/static/global/favicons/apple-iphone.png" /> - <link rel="apple-touch-icon-precomposed" sizes="72x72" href="http://myemma.com/static/global/favicons/apple-ipad.png" /> - <link rel="apple-touch-icon-precomposed" sizes="114x114" href="http://myemma.com/static/global/favicons/apple-iphone-2x.png" /> - <link rel="apple-touch-icon-precomposed" sizes="144x144" href="http://myemma.com/static/global/favicons/apple-ipad-2x.png" /> + <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"> + <link rel="apple-touch-icon-precomposed" href="https://myemma.com/static/global/favicons/apple-iphone.png" /> + <link rel="apple-touch-icon-precomposed" sizes="72x72" href="https://myemma.com/static/global/favicons/apple-ipad.png" /> + <link rel="apple-touch-icon-precomposed" sizes="114x114" href="https://myemma.com/static/global/favicons/apple-iphone-2x.png" /> + <link rel="apple-touch-icon-precomposed" sizes="144x144" href="https://myemma.com/static/global/favicons/apple-ipad-2x.png" /> <style type="text/css"> .resp-trigger, .resp-trigger:hover {font-size:10pt;text-decoration:none;} @@ -237,16 +237,16 @@ <h3>Quick search</h3> <div id="emma-links"> <h3>Emma Links</h3> <ul> - <li><a href="http://myemma.com" title="Visit Emma's homepage" target="_blank">Emma Home</a></li> + <li><a href="https://myemma.com" title="Visit Emma's homepage" target="_blank">Emma Home</a></li> - <li><a href="http://myemma.com/blog" title="Visit the Emma Blog" target="_blank">Emma Blog</a></li> - <li><a href="http://myemma.com/help" title="Visit Emma's help guide" target="_blank">Emma Help</a></li> + <li><a href="https://myemma.com/blog" title="Visit the Emma Blog" target="_blank">Emma Blog</a></li> + <li><a href="https://myemma.com/help" title="Visit Emma's help guide" target="_blank">Emma Help</a></li> </ul> </div> <div id="inquiry"> <h3>Interested in Emma?</h3> - <p>Emma's email marketing makes communicating simple and stylish. <a href="http://myemma.com/get-started/inquire" title="Get started today.">Get started today</a>.</p> + <p>Emma's email marketing makes communicating simple and stylish. <a href="https://myemma.com/get-started/inquire" title="Get started today.">Get started today</a>.</p> </div> </div> </div> diff --git a/pagination.html b/pagination.html index 993b3b9..b1e4f2a 100644 --- a/pagination.html +++ b/pagination.html @@ -22,7 +22,7 @@ }; </script> - <script src="http://code.jquery.com/jquery-1.4.min.js"></script> + <script src="https://code.jquery.com/jquery-1.4.min.js"></script> <script>window.jQuery || document.write('<script src="_static/jquery.js"><\/script>')</script> <link href="https://fonts.googleapis.com/css?family=Roboto:400,700" rel="stylesheet"> @@ -31,12 +31,12 @@ <link rel="top" title="audience 0.1 documentation" href="index.html" /> <link rel="next" title="Placeholder Syntax" href="placeholders.html" /> <link rel="prev" title="Webhooks" href="api/external/webhooks.html" /> - <link rel="icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> - <link rel="shortcut icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> - <link rel="apple-touch-icon-precomposed" href="http://myemma.com/static/global/favicons/apple-iphone.png" /> - <link rel="apple-touch-icon-precomposed" sizes="72x72" href="http://myemma.com/static/global/favicons/apple-ipad.png" /> - <link rel="apple-touch-icon-precomposed" sizes="114x114" href="http://myemma.com/static/global/favicons/apple-iphone-2x.png" /> - <link rel="apple-touch-icon-precomposed" sizes="144x144" href="http://myemma.com/static/global/favicons/apple-ipad-2x.png" /> + <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"> + <link rel="apple-touch-icon-precomposed" href="https://myemma.com/static/global/favicons/apple-iphone.png" /> + <link rel="apple-touch-icon-precomposed" sizes="72x72" href="https://myemma.com/static/global/favicons/apple-ipad.png" /> + <link rel="apple-touch-icon-precomposed" sizes="114x114" href="https://myemma.com/static/global/favicons/apple-iphone-2x.png" /> + <link rel="apple-touch-icon-precomposed" sizes="144x144" href="https://myemma.com/static/global/favicons/apple-ipad-2x.png" /> <style type="text/css"> .resp-trigger, .resp-trigger:hover {font-size:10pt;text-decoration:none;} @@ -149,16 +149,16 @@ <h3>Quick search</h3> <div id="emma-links"> <h3>Emma Links</h3> <ul> - <li><a href="http://myemma.com" title="Visit Emma's homepage" target="_blank">Emma Home</a></li> + <li><a href="https://myemma.com" title="Visit Emma's homepage" target="_blank">Emma Home</a></li> - <li><a href="http://myemma.com/blog" title="Visit the Emma Blog" target="_blank">Emma Blog</a></li> - <li><a href="http://myemma.com/help" title="Visit Emma's help guide" target="_blank">Emma Help</a></li> + <li><a href="https://myemma.com/blog" title="Visit the Emma Blog" target="_blank">Emma Blog</a></li> + <li><a href="https://myemma.com/help" title="Visit Emma's help guide" target="_blank">Emma Help</a></li> </ul> </div> <div id="inquiry"> <h3>Interested in Emma?</h3> - <p>Emma's email marketing makes communicating simple and stylish. <a href="http://myemma.com/get-started/inquire" title="Get started today.">Get started today</a>.</p> + <p>Emma's email marketing makes communicating simple and stylish. <a href="https://myemma.com/get-started/inquire" title="Get started today.">Get started today</a>.</p> </div> </div> </div> diff --git a/php_get_member_example.html b/php_get_member_example.html index 75ff41f..6c5c463 100644 --- a/php_get_member_example.html +++ b/php_get_member_example.html @@ -22,7 +22,7 @@ }; </script> - <script src="http://code.jquery.com/jquery-1.4.min.js"></script> + <script src="https://code.jquery.com/jquery-1.4.min.js"></script> <script>window.jQuery || document.write('<script src="_static/jquery.js"><\/script>')</script> <link href="https://fonts.googleapis.com/css?family=Roboto:400,700" rel="stylesheet"> @@ -30,12 +30,12 @@ <script type="text/javascript" src="_static/doctools.js"></script> <link rel="top" title="audience 0.1 documentation" href="index.html" /> <link rel="prev" title="PHP Signup Example" href="php_signup_example.html" /> - <link rel="icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> - <link rel="shortcut icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> - <link rel="apple-touch-icon-precomposed" href="http://myemma.com/static/global/favicons/apple-iphone.png" /> - <link rel="apple-touch-icon-precomposed" sizes="72x72" href="http://myemma.com/static/global/favicons/apple-ipad.png" /> - <link rel="apple-touch-icon-precomposed" sizes="114x114" href="http://myemma.com/static/global/favicons/apple-iphone-2x.png" /> - <link rel="apple-touch-icon-precomposed" sizes="144x144" href="http://myemma.com/static/global/favicons/apple-ipad-2x.png" /> + <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"> + <link rel="apple-touch-icon-precomposed" href="https://myemma.com/static/global/favicons/apple-iphone.png" /> + <link rel="apple-touch-icon-precomposed" sizes="72x72" href="https://myemma.com/static/global/favicons/apple-ipad.png" /> + <link rel="apple-touch-icon-precomposed" sizes="114x114" href="https://myemma.com/static/global/favicons/apple-iphone-2x.png" /> + <link rel="apple-touch-icon-precomposed" sizes="144x144" href="https://myemma.com/static/global/favicons/apple-ipad-2x.png" /> <style type="text/css"> .resp-trigger, .resp-trigger:hover {font-size:10pt;text-decoration:none;} @@ -164,16 +164,16 @@ <h3>Quick search</h3> <div id="emma-links"> <h3>Emma Links</h3> <ul> - <li><a href="http://myemma.com" title="Visit Emma's homepage" target="_blank">Emma Home</a></li> + <li><a href="https://myemma.com" title="Visit Emma's homepage" target="_blank">Emma Home</a></li> - <li><a href="http://myemma.com/blog" title="Visit the Emma Blog" target="_blank">Emma Blog</a></li> - <li><a href="http://myemma.com/help" title="Visit Emma's help guide" target="_blank">Emma Help</a></li> + <li><a href="https://myemma.com/blog" title="Visit the Emma Blog" target="_blank">Emma Blog</a></li> + <li><a href="https://myemma.com/help" title="Visit Emma's help guide" target="_blank">Emma Help</a></li> </ul> </div> <div id="inquiry"> <h3>Interested in Emma?</h3> - <p>Emma's email marketing makes communicating simple and stylish. <a href="http://myemma.com/get-started/inquire" title="Get started today.">Get started today</a>.</p> + <p>Emma's email marketing makes communicating simple and stylish. <a href="https://myemma.com/get-started/inquire" title="Get started today.">Get started today</a>.</p> </div> </div> </div> diff --git a/php_signup_example.html b/php_signup_example.html index cf824b1..c5b9227 100644 --- a/php_signup_example.html +++ b/php_signup_example.html @@ -22,7 +22,7 @@ }; </script> - <script src="http://code.jquery.com/jquery-1.4.min.js"></script> + <script src="https://code.jquery.com/jquery-1.4.min.js"></script> <script>window.jQuery || document.write('<script src="_static/jquery.js"><\/script>')</script> <link href="https://fonts.googleapis.com/css?family=Roboto:400,700" rel="stylesheet"> @@ -31,12 +31,12 @@ <link rel="top" title="audience 0.1 documentation" href="index.html" /> <link rel="next" title="PHP Get Member By Email Example" href="php_get_member_example.html" /> <link rel="prev" title="Webhook Usage" href="webhooks.html" /> - <link rel="icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> - <link rel="shortcut icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> - <link rel="apple-touch-icon-precomposed" href="http://myemma.com/static/global/favicons/apple-iphone.png" /> - <link rel="apple-touch-icon-precomposed" sizes="72x72" href="http://myemma.com/static/global/favicons/apple-ipad.png" /> - <link rel="apple-touch-icon-precomposed" sizes="114x114" href="http://myemma.com/static/global/favicons/apple-iphone-2x.png" /> - <link rel="apple-touch-icon-precomposed" sizes="144x144" href="http://myemma.com/static/global/favicons/apple-ipad-2x.png" /> + <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"> + <link rel="apple-touch-icon-precomposed" href="https://myemma.com/static/global/favicons/apple-iphone.png" /> + <link rel="apple-touch-icon-precomposed" sizes="72x72" href="https://myemma.com/static/global/favicons/apple-ipad.png" /> + <link rel="apple-touch-icon-precomposed" sizes="114x114" href="https://myemma.com/static/global/favicons/apple-iphone-2x.png" /> + <link rel="apple-touch-icon-precomposed" sizes="144x144" href="https://myemma.com/static/global/favicons/apple-ipad-2x.png" /> <style type="text/css"> .resp-trigger, .resp-trigger:hover {font-size:10pt;text-decoration:none;} @@ -186,16 +186,16 @@ <h3>Quick search</h3> <div id="emma-links"> <h3>Emma Links</h3> <ul> - <li><a href="http://myemma.com" title="Visit Emma's homepage" target="_blank">Emma Home</a></li> + <li><a href="https://myemma.com" title="Visit Emma's homepage" target="_blank">Emma Home</a></li> - <li><a href="http://myemma.com/blog" title="Visit the Emma Blog" target="_blank">Emma Blog</a></li> - <li><a href="http://myemma.com/help" title="Visit Emma's help guide" target="_blank">Emma Help</a></li> + <li><a href="https://myemma.com/blog" title="Visit the Emma Blog" target="_blank">Emma Blog</a></li> + <li><a href="https://myemma.com/help" title="Visit Emma's help guide" target="_blank">Emma Help</a></li> </ul> </div> <div id="inquiry"> <h3>Interested in Emma?</h3> - <p>Emma's email marketing makes communicating simple and stylish. <a href="http://myemma.com/get-started/inquire" title="Get started today.">Get started today</a>.</p> + <p>Emma's email marketing makes communicating simple and stylish. <a href="https://myemma.com/get-started/inquire" title="Get started today.">Get started today</a>.</p> </div> </div> </div> diff --git a/placeholders.html b/placeholders.html index 0c30725..860c734 100644 --- a/placeholders.html +++ b/placeholders.html @@ -22,7 +22,7 @@ }; </script> - <script src="http://code.jquery.com/jquery-1.4.min.js"></script> + <script src="https://code.jquery.com/jquery-1.4.min.js"></script> <script>window.jQuery || document.write('<script src="_static/jquery.js"><\/script>')</script> <link href="https://fonts.googleapis.com/css?family=Roboto:400,700" rel="stylesheet"> @@ -31,12 +31,12 @@ <link rel="top" title="audience 0.1 documentation" href="index.html" /> <link rel="next" title="Search Syntax" href="member_search.html" /> <link rel="prev" title="Pagination" href="pagination.html" /> - <link rel="icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> - <link rel="shortcut icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> - <link rel="apple-touch-icon-precomposed" href="http://myemma.com/static/global/favicons/apple-iphone.png" /> - <link rel="apple-touch-icon-precomposed" sizes="72x72" href="http://myemma.com/static/global/favicons/apple-ipad.png" /> - <link rel="apple-touch-icon-precomposed" sizes="114x114" href="http://myemma.com/static/global/favicons/apple-iphone-2x.png" /> - <link rel="apple-touch-icon-precomposed" sizes="144x144" href="http://myemma.com/static/global/favicons/apple-ipad-2x.png" /> + <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"> + <link rel="apple-touch-icon-precomposed" href="https://myemma.com/static/global/favicons/apple-iphone.png" /> + <link rel="apple-touch-icon-precomposed" sizes="72x72" href="https://myemma.com/static/global/favicons/apple-ipad.png" /> + <link rel="apple-touch-icon-precomposed" sizes="114x114" href="https://myemma.com/static/global/favicons/apple-iphone-2x.png" /> + <link rel="apple-touch-icon-precomposed" sizes="144x144" href="https://myemma.com/static/global/favicons/apple-ipad-2x.png" /> <style type="text/css"> .resp-trigger, .resp-trigger:hover {font-size:10pt;text-decoration:none;} @@ -164,16 +164,16 @@ <h3>Quick search</h3> <div id="emma-links"> <h3>Emma Links</h3> <ul> - <li><a href="http://myemma.com" title="Visit Emma's homepage" target="_blank">Emma Home</a></li> + <li><a href="https://myemma.com" title="Visit Emma's homepage" target="_blank">Emma Home</a></li> - <li><a href="http://myemma.com/blog" title="Visit the Emma Blog" target="_blank">Emma Blog</a></li> - <li><a href="http://myemma.com/help" title="Visit Emma's help guide" target="_blank">Emma Help</a></li> + <li><a href="https://myemma.com/blog" title="Visit the Emma Blog" target="_blank">Emma Blog</a></li> + <li><a href="https://myemma.com/help" title="Visit Emma's help guide" target="_blank">Emma Help</a></li> </ul> </div> <div id="inquiry"> <h3>Interested in Emma?</h3> - <p>Emma's email marketing makes communicating simple and stylish. <a href="http://myemma.com/get-started/inquire" title="Get started today.">Get started today</a>.</p> + <p>Emma's email marketing makes communicating simple and stylish. <a href="https://myemma.com/get-started/inquire" title="Get started today.">Get started today</a>.</p> </div> </div> </div> diff --git a/search.html b/search.html index c697bd2..e070998 100644 --- a/search.html +++ b/search.html @@ -22,7 +22,7 @@ }; </script> - <script src="http://code.jquery.com/jquery-1.4.min.js"></script> + <script src="https://code.jquery.com/jquery-1.4.min.js"></script> <script>window.jQuery || document.write('<script src="_static/jquery.js"><\/script>')</script> <link href="https://fonts.googleapis.com/css?family=Roboto:400,700" rel="stylesheet"> @@ -36,12 +36,12 @@ <script type="text/javascript" id="searchindexloader"></script> - <link rel="icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> - <link rel="shortcut icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> - <link rel="apple-touch-icon-precomposed" href="http://myemma.com/static/global/favicons/apple-iphone.png" /> - <link rel="apple-touch-icon-precomposed" sizes="72x72" href="http://myemma.com/static/global/favicons/apple-ipad.png" /> - <link rel="apple-touch-icon-precomposed" sizes="114x114" href="http://myemma.com/static/global/favicons/apple-iphone-2x.png" /> - <link rel="apple-touch-icon-precomposed" sizes="144x144" href="http://myemma.com/static/global/favicons/apple-ipad-2x.png" /> + <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"> + <link rel="apple-touch-icon-precomposed" href="https://myemma.com/static/global/favicons/apple-iphone.png" /> + <link rel="apple-touch-icon-precomposed" sizes="72x72" href="https://myemma.com/static/global/favicons/apple-ipad.png" /> + <link rel="apple-touch-icon-precomposed" sizes="114x114" href="https://myemma.com/static/global/favicons/apple-iphone-2x.png" /> + <link rel="apple-touch-icon-precomposed" sizes="144x144" href="https://myemma.com/static/global/favicons/apple-ipad-2x.png" /> <style type="text/css"> .resp-trigger, .resp-trigger:hover {font-size:10pt;text-decoration:none;} @@ -136,16 +136,16 @@ <h1 id="search-documentation">Search</h1> <div id="emma-links"> <h3>Emma Links</h3> <ul> - <li><a href="http://myemma.com" title="Visit Emma's homepage" target="_blank">Emma Home</a></li> + <li><a href="https://myemma.com" title="Visit Emma's homepage" target="_blank">Emma Home</a></li> - <li><a href="http://myemma.com/blog" title="Visit the Emma Blog" target="_blank">Emma Blog</a></li> - <li><a href="http://myemma.com/help" title="Visit Emma's help guide" target="_blank">Emma Help</a></li> + <li><a href="https://myemma.com/blog" title="Visit the Emma Blog" target="_blank">Emma Blog</a></li> + <li><a href="https://myemma.com/help" title="Visit Emma's help guide" target="_blank">Emma Help</a></li> </ul> </div> <div id="inquiry"> <h3>Interested in Emma?</h3> - <p>Emma's email marketing makes communicating simple and stylish. <a href="http://myemma.com/get-started/inquire" title="Get started today.">Get started today</a>.</p> + <p>Emma's email marketing makes communicating simple and stylish. <a href="https://myemma.com/get-started/inquire" title="Get started today.">Get started today</a>.</p> </div> </div> </div> diff --git a/webhooks.html b/webhooks.html index ac038a7..e686992 100644 --- a/webhooks.html +++ b/webhooks.html @@ -22,7 +22,7 @@ }; </script> - <script src="http://code.jquery.com/jquery-1.4.min.js"></script> + <script src="https://code.jquery.com/jquery-1.4.min.js"></script> <script>window.jQuery || document.write('<script src="_static/jquery.js"><\/script>')</script> <link href="https://fonts.googleapis.com/css?family=Roboto:400,700" rel="stylesheet"> @@ -31,12 +31,12 @@ <link rel="top" title="audience 0.1 documentation" href="index.html" /> <link rel="next" title="PHP Signup Example" href="php_signup_example.html" /> <link rel="prev" title="Search Syntax" href="member_search.html" /> - <link rel="icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> - <link rel="shortcut icon" href="http://myemma.com/static/global/favicons/favicon.ico?v=2" type="image/x-icon"> - <link rel="apple-touch-icon-precomposed" href="http://myemma.com/static/global/favicons/apple-iphone.png" /> - <link rel="apple-touch-icon-precomposed" sizes="72x72" href="http://myemma.com/static/global/favicons/apple-ipad.png" /> - <link rel="apple-touch-icon-precomposed" sizes="114x114" href="http://myemma.com/static/global/favicons/apple-iphone-2x.png" /> - <link rel="apple-touch-icon-precomposed" sizes="144x144" href="http://myemma.com/static/global/favicons/apple-ipad-2x.png" /> + <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"> + <link rel="apple-touch-icon-precomposed" href="https://myemma.com/static/global/favicons/apple-iphone.png" /> + <link rel="apple-touch-icon-precomposed" sizes="72x72" href="https://myemma.com/static/global/favicons/apple-ipad.png" /> + <link rel="apple-touch-icon-precomposed" sizes="114x114" href="https://myemma.com/static/global/favicons/apple-iphone-2x.png" /> + <link rel="apple-touch-icon-precomposed" sizes="144x144" href="https://myemma.com/static/global/favicons/apple-ipad-2x.png" /> <style type="text/css"> .resp-trigger, .resp-trigger:hover {font-size:10pt;text-decoration:none;} @@ -490,16 +490,16 @@ <h3>Quick search</h3> <div id="emma-links"> <h3>Emma Links</h3> <ul> - <li><a href="http://myemma.com" title="Visit Emma's homepage" target="_blank">Emma Home</a></li> + <li><a href="https://myemma.com" title="Visit Emma's homepage" target="_blank">Emma Home</a></li> - <li><a href="http://myemma.com/blog" title="Visit the Emma Blog" target="_blank">Emma Blog</a></li> - <li><a href="http://myemma.com/help" title="Visit Emma's help guide" target="_blank">Emma Help</a></li> + <li><a href="https://myemma.com/blog" title="Visit the Emma Blog" target="_blank">Emma Blog</a></li> + <li><a href="https://myemma.com/help" title="Visit Emma's help guide" target="_blank">Emma Help</a></li> </ul> </div> <div id="inquiry"> <h3>Interested in Emma?</h3> - <p>Emma's email marketing makes communicating simple and stylish. <a href="http://myemma.com/get-started/inquire" title="Get started today.">Get started today</a>.</p> + <p>Emma's email marketing makes communicating simple and stylish. <a href="https://myemma.com/get-started/inquire" title="Get started today.">Get started today</a>.</p> </div> </div> </div> From ed1d509857e8e2592ffbff7dc6dc363197510003 Mon Sep 17 00:00:00 2001 From: biggert <jbiggert@myemma.com> Date: Mon, 29 Jul 2019 09:56:02 -0500 Subject: [PATCH 168/219] Add document for sending mailings to subscriptions --- api/external/mailings.html | 51 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) diff --git a/api/external/mailings.html b/api/external/mailings.html index 8e19f52..09afcef 100644 --- a/api/external/mailings.html +++ b/api/external/mailings.html @@ -396,6 +396,7 @@ <h1>Mailings<a class="headerlink" href="#mailings" title="Permalink to this head <tbody valign="top"> <tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> <li><strong>include_segment_names</strong> (<em>boolean</em>) – Optional flag to include segment names under recipient_segments. False by default.</li> +<li><strong>include_subscription_names</strong> (<em>boolean</em>) – Optional flag to include subscription names under recipient_subscriptions. False by default.</li> </tr> </li> <tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">A mailing.</td> @@ -418,6 +419,12 @@ <h1>Mailings<a class="headerlink" href="#mailings" title="Permalink to this head "name": "Widget Buyers" } ], + "recipient_subscriptions": [ + { + "subscription_id": 200, + "subscription_name": "Widgets" + } + ], "heads_up_emails": [], "send_started": null, "signup_form_id": null, @@ -610,6 +617,48 @@ <h1>Mailings<a class="headerlink" href="#mailings" title="Permalink to this head </p> </dd></dl> +<dl class="get"> +<dt id="get--#account_id-mailings-#mailing_id-subscriptions"> +<tt class="descname">GET </tt><tt class="descname">/#account_id/mailings/#mailing_id/subscriptions</tt><a class="headerlink" href="#get--#account_id-mailings-#mailing_id-subscriptions" title="Permalink to this definition">¶</a></dt> +<dd><p>Get the subscriptions to which a particular mailing was sent.</p> +<table class="docutils field-list" frame="void" rules="none"> +<col class="field-name" /> +<col class="field-body" /> +<tbody valign="top"> +<tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">An array of subscriptions.</td> +</tr> +<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no mailing is found.</td> +</tr> +</tbody> +</table> +<p> +<div class="sample-response hide-response"> +<span style="font-weight:bold;">Sample Response</span> +<a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>GET /100/mailings/200/subscriptions</b> + +[ + { + "subscription_name": "Widgets", + "account_id": 100, + "member_count": 100, + "settings": { + "show_on_default_preference_form": false + }, + "created_at": "Mon, 22 Jul 2019 18:45:47 GMT", + "description": "Widgets Subscription", + "modified_at": "Mon, 22 Jul 2019 18:45:47 GMT", + "optout_count": 0, + "subscription_id": 300 + } +] + +</pre> +</div> +</p> +</dd></dl> + <dl class="get"> <dt id="get--#account_id-mailings-#mailing_id-searches"> <tt class="descname">GET </tt><tt class="descname">/#account_id/mailings/#mailing_id/searches</tt><a class="headerlink" href="#get--#account_id-mailings-#mailing_id-searches" title="Permalink to this definition">¶</a></dt> @@ -917,6 +966,8 @@ <h1>Mailings<a class="headerlink" href="#mailings" title="Permalink to this head mailing should be sent.</li> <li><strong>recipient_groups</strong> (<em>array</em>) – An array of member groups to which the new mailing should be sent.</li> +<li><strong>recipient_subscriptions</strong> (<em>array</em>) – An array of subscriptions to which the new + mailing should be sent.</li> <li><strong>recipient_searches</strong> (<em>array</em>) – An array of searches that this mailing should be sent to.</li> <li><strong>recipient_segments</strong> (<em>array</em>) – An array of segments that this mailing should From a088cbfa7ef1767ffe7074be1f425e8f0fa3757a Mon Sep 17 00:00:00 2001 From: Brandon Henry <bhenry@campaignmonitor.com> Date: Wed, 14 Aug 2019 10:52:41 -0400 Subject: [PATCH 169/219] new import status --- api/external/members.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/external/members.html b/api/external/members.html index 992f60b..ac9b430 100644 --- a/api/external/members.html +++ b/api/external/members.html @@ -1112,7 +1112,7 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli "num_errors": 0, "groups_updated": [], "fields_updated": [], - "status": "o", # for okay (or "e" for error, "q" for queued), + "status": "o", # for okay (or "e" for error, "q" for queued, "p" for in progress), "error_message": null, "style": null, "automated_field_changes": null From 574b0e31c4c3aebeced0676ac17e8093513bdbe0 Mon Sep 17 00:00:00 2001 From: Megan Morris <mmorris@myemma.com> Date: Tue, 17 Sep 2019 17:55:42 -0400 Subject: [PATCH 170/219] Adding Exports-API documentation (#29) * Adding exports-api documentation file and definitions * Updating side navigation throughout pages * Removing exports-api stuff from this members section since it has its own section now --- api/external/automation.html | 6 +- api/external/exports.html | 365 +++++++++++++++++++++++++++++++++ api/external/fields.html | 6 +- api/external/members.html | 136 ------------ api/external/signup_forms.html | 4 +- api/external/webhooks.html | 6 +- index.html | 9 +- 7 files changed, 381 insertions(+), 151 deletions(-) create mode 100644 api/external/exports.html diff --git a/api/external/automation.html b/api/external/automation.html index 87b93b4..e50c7fb 100644 --- a/api/external/automation.html +++ b/api/external/automation.html @@ -28,7 +28,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="Groups" href="groups.html" /> + <link rel="next" title="Exports" href="exports.html" /> <link rel="prev" title="Emma API" href="../../index.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"> @@ -85,7 +85,7 @@ <h3>Navigation</h3> <a href="../../http-routingtable.html" title="HTTP Routing Table" >routing table</a> |</li> <li class="right" > - <a href="groups.html" title="Groups" + <a href="exports.html" title="Exports" accesskey="N">next</a> |</li> <li class="right" > <a href="../../index.html" title="Emma API" @@ -248,7 +248,7 @@ <h1>Automation<a class="headerlink" href="#fields" title="Permalink to this head <ul> <li><a href="../../index.html">Documentation overview</a><ul> <li>Previous: <a href="../../index.html" title="previous chapter">Emma API</a></li> - <li>Next: <a href="groups.html" title="next chapter">Groups</a></li> + <li>Next: <a href="exports.html" title="next chapter">Exports</a></li> </ul></li> </ul> <div id="searchbox" style="display: none"> diff --git a/api/external/exports.html b/api/external/exports.html new file mode 100644 index 0000000..7d90aea --- /dev/null +++ b/api/external/exports.html @@ -0,0 +1,365 @@ + +<!doctype html> + + +<html xmlns="http://www.w3.org/1999/xhtml"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> + + <title>Emma API Documentation | Emma, Inc.</title> + + + <link rel="stylesheet" href="../../_static/emma.css" type="text/css" /> + <link rel="stylesheet" href="../../_static/pygments.css" type="text/css" /> + + <script type="text/javascript"> + var DOCUMENTATION_OPTIONS = { + URL_ROOT: '../../', + VERSION: '0.1', + COLLAPSE_INDEX: false, + FILE_SUFFIX: '.html', + HAS_SOURCE: true + }; + </script> + + <script src="https://code.jquery.com/jquery-1.4.min.js"></script> + <script>window.jQuery || document.write('<script src="_static/jquery.js"><\/script>')</script> + + <link href="https://fonts.googleapis.com/css?family=Roboto:400,700" rel="stylesheet"> + <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="Fields" href="fields.html" /> + <link rel="prev" title="Automation" href="automation.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"> + <link rel="apple-touch-icon-precomposed" href="https://myemma.com/static/global/favicons/apple-iphone.png" /> + <link rel="apple-touch-icon-precomposed" sizes="72x72" href="https://myemma.com/static/global/favicons/apple-ipad.png" /> + <link rel="apple-touch-icon-precomposed" sizes="114x114" href="https://myemma.com/static/global/favicons/apple-iphone-2x.png" /> + <link rel="apple-touch-icon-precomposed" sizes="144x144" href="https://myemma.com/static/global/favicons/apple-ipad-2x.png" /> + + <style type="text/css"> + .resp-trigger, .resp-trigger:hover {font-size:10pt;text-decoration:none;} + div.sample-response.hide-response pre.response {display: none;} + div.sample-response .tshow, + div.sample-response.hide-response .thide {display: none;} + div.sample-response .thide, + div.sample-response.hide-response .tshow {display: inline;} + </style> + <script> + $().ready(function() { + $("a.resp-trigger").click(function(e) { + e.preventDefault(); + $(this).parents("div.sample-response").toggleClass("hide-response"); + }); + }); + </script> + + <script type="text/javascript"> + + var _gaq = _gaq || []; + _gaq.push(['_setAccount', 'UA-512410-18']); + _gaq.push(['_trackPageview']); + + (function() { + var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; + ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; + var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); + })(); + + </script> + + </head> + <body> + <header role="banner"> + <a href="/index.html"> + <h1>Emma API Documentation</h1> + </a> + </header> + <div class="related"> + <h3>Navigation</h3> + <ul> + <li class="right" style="margin-right: 10px"> + <a href="../../genindex.html" title="General Index" + accesskey="I">index</a></li> + <li class="right" > + <a href="../../http-routingtable.html" title="HTTP Routing Table" + >routing table</a> |</li> + <li class="right" > + <a href="fields.html" title="Fields" + accesskey="N">next</a> |</li> + <li class="right" > + <a href="automation.html" title="Automation" + accesskey="P">previous</a> |</li> + <li><a href="../../index.html">audience 0.1 documentation</a> »</li> + </ul> + </div> + + <div class="document"> + <div class="documentwrapper"> + <div class="bodywrapper"> + <div class="body"> + + <div class="section" id="exports"> +<h1>Exports<a class="headerlink" href="#exports" title="Permalink to this headline">¶</a></h1> +<p>With these endpoints, you can create member exports and view information about specific exports already created in your account.</p> +<dl class="get"> +<dt id="get--#account_id-exports"> +<tt class="descname">GET </tt><tt class="descname">/#account_id/exports</tt><a class="headerlink" href="#get--#account_id-exports" title="Permalink to this definition">¶</a></dt> +<dd><p>Get a list of all exports created for an account.</p> +<table class="docutils field-list" frame="void" rules="none"> +<col class="field-name" /> +<col class="field-body" /> +<tbody valign="top"> +<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> +<li><strong>export_type</strong> (<em>string</em>) – 'a' audience, 'm' individual member export. Defaults to 'a' if no export type is specified.</li> +</ul> +</td> +</tr> +<tr class="field-odd field"><th class="field-name">Returns:</th><td class="field-body"><p class="first last">A list of exports created in the specified account over the past seven days. Status: "o" for OK, "e" for error, "q" for queued, "p" for in progress.</p> +</td> +</tr> +</tbody> +</table> +<p> +<div class="sample-response hide-response"> +<span style="font-weight:bold;">Sample Response</span> +<a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>GET /100/exports</b> + +[ + { + "account_id": 100, + "completed_at": "2019-09-06T19:34:30.962114+00:00", + "created_at": "2019-09-06T19:34:30.628190+00:00", + "criteria": { + "groups": [ + 1234 + ], + "include_fields": true, + "member_ids": null, + "member_status_ids": [ + "a", + "o", + "e" + ], + "mfv_delimiter": ",", + "segments": null, + "subscriptions": null + }, + "export_id": 1, + "export_name": "Weekly Update", + "export_type": "a", + "status": "o", + "user_id": "name@myemma.com" + } +] +</pre> +</div> +</p> +</dd></dl> + +<dl class="get"> +<dt id="get--#account_id-exports-#export_id"> +<tt class="descname">GET </tt><tt class="descname">/#account_id/exports/#export_id</tt><a class="headerlink" href="#get--#account_id-exports-#export_id" title="Permalink to this definition">¶</a></dt> +<dd><p>Get detailed information for a specific export.</p> +<table class="docutils field-list" frame="void" rules="none"> +<col class="field-name" /> +<col class="field-body" /> +<tbody valign="top"> +<tr class="field-odd field"><th class="field-name">Returns:</th><td class="field-body">Information about an export. Status: "o" for OK, "e" for error, "q" for queued, "p" for in progress.</td> +</tr> +<tr class="field-even field"><th class="field-name">Raises:</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no export with the specified ID is found.</td> +</tr> +</tbody> +</table> +<p> +<div class="sample-response hide-response"> +<span style="font-weight:bold;">Sample Response</span> +<a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>GET /100/exports/200</b> + +{ + "account_id": 100, + "completed_at": "2019-09-06T19:34:30.962114+00:00", + "created_at": "2019-09-06T19:34:30.628190+00:00", + "criteria": { + "groups": [ + 1234 + ], + "include_fields": true, + "member_ids": null, + "member_status_ids": [ + "a", + "o", + "e" + ], + "mfv_delimiter": ",", + "segments": null, + "subscriptions": null + }, + "export_id": 200, + "export_name": "Product Release News", + "export_type": "a", + "status": "o", + "user_id": "name@myemma.com" +} +</pre> +</div> +</p> +</dd></dl> + +<dl class="get"> +<dt id="get--#account_id-exports-#export_id-download"> +<tt class="descname">GET </tt><tt class="descname">/#account_id/exports/#export_id/download</tt><a class="headerlink" href="#get--#account_id-exports-#export_id-download" title="Permalink to this definition">¶</a></dt> +<dd><p>Get a CSV for the requested export.</p> +<table class="docutils field-list" frame="void" rules="none"> +<col class="field-name" /> +<col class="field-body" /> +<tbody valign="top"> +<tr class="field-odd field"><th class="field-name">Returns:</th><td class="field-body">A file stream of the export document. If the export_type is 'a' (audience), download results in CSV form. If the export_type is 'm' (individual member), download results as a zip file.</td> +</tr> +<tr class="field-even field"><th class="field-name">Raises:</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no export with the specified ID is found.</td> +</tr> +</tbody> +</table> +<p> +<div class="sample-response hide-response"> +<span style="font-weight:bold;">Sample Response</span> +<a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>GET /100/exports/200/download</b> + +email,member_id,member_since,plaintext_preferred,bounce_count,status_name,last_modified_at,status-name,last_name,custom-field-name +email@email.com,123456789,2016-10-28T15:05:52 UTC,f,0,active,2019-05-07T20:44:21 UTC,,Last_name,,,2.0,37210,,,,b,,,,,,,,,,,,, +email1@email.com,234567890,2019-05-02T17:47:11 UTC,f,0,active,2019-05-02T17:47:11 UTC,,Member,,,,,,,,, + +</pre> +</div> +</p> +</dd></dl> + +<dl class="post"> +<dt id="post--#account_id-exports"> +<tt class="descname">POST </tt><tt class="descname">/#account_id/exports</tt><a class="headerlink" href="#post--#account_id-exports" title="Permalink to this definition">¶</a></dt> +<dd><p>Creates an export of members.</p> +<table class="docutils field-list" frame="void" rules="none"> +<col class="field-name" /> +<col class="field-body" /> +<tbody valign="top"> +<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> +<li><strong>user_id</strong> (<em>string</em>) – Required.</li> +<li><strong>criteria</strong> (<em>dictionary</em>) – Describes what should be exported. + <ul class="first simple"> + <li><strong>groups</strong> (<em>array of integers</em>) – List of group IDs</li> + <li><strong>segments</strong> (<em>array of integers</em>) – List of segment IDs</li> + <li><strong>member_ids</strong> (<em>array of integers</em>) – List of member IDs</li> + <br /> + <p>The list of members to be exported will be a union of the members included + in each provided group and segment, and the list of member_ids</p> + <br /> + <li><strong>member_status_ids</strong> (<em>array of strings</em>) – Status of the members</li> + <li><strong>include_fields</strong> – Accepts True or an array of strings. Optional flag to include all member fields or a list of member fields.</li> + </ul> + +</li> +</ul> +</td> +</tr> +<tr class="field-even field"><th class="field-name">Returns:</th><td class="field-body"><p class="first">An export ID.</p> +</td> +</tr> +</tbody> +</table> +<p> + <div class="sample-response hide-response"> + <span style="font-weight:bold;">Sample Response</span> + <a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> + <pre class="response"> + <b>POST /100/exports</b> + { + "user_id": "name@myemma.com", + "criteria": { + "groups": [12345, 67890], + "member_status_ids": ["a"], + "include_fields": true + } + } + + { + "export_id": 1234 + } + </pre> + </div> + </p> +</dd></dl> + +<dl class="post"> + <dt id="post--#account_id-exports-#members-#member_id"> + <tt class="descname">POST </tt><tt class="descname">/#account_id/exports/#members/member_id</tt><a class="headerlink" href="#post--#account_id-exports-#members-#member_id" title="Permalink to this definition">¶</a></dt> + <dd><p>Create an export of all information for an individual member. This will provide compliance with GDPR right to data portability.</p> + <table class="docutils field-list" frame="void" rules="none"> + <col class="field-name" /> + <col class="field-body" /> + <tbody valign="top"> + <tr class="field-odd field"><th class="field-name">Returns:</th><td class="field-body">An export ID.</td> + </tr> + </tbody> + </table> + </dd></dl> +</div> + </div> + </div> + </div> + <div class="sphinxsidebar"> + <div class="sphinxsidebarwrapper"><h3>Related Topics</h3> +<ul> + <li><a href="../../index.html">Documentation overview</a><ul> + <li>Previous: <a href="automation.html" title="previous chapter">Automation</a></li> + <li>Next: <a href="fields.html" title="next chapter">Fields</a></li> + </ul></li> +</ul> +<div id="searchbox" style="display: none"> + <h3>Quick search</h3> + <form class="search" action="../../search.html" method="get"> + <input type="text" name="q" /> + <input type="submit" value="Go" /> + <input type="hidden" name="check_keywords" value="yes" /> + <input type="hidden" name="area" value="default" /> + </form> + <p class="searchtip" style="font-size: 90%"> + Enter search terms or a module, class or function name. + </p> +</div> +<script type="text/javascript">$('#searchbox').show(0);</script> +<div id="emma-links"> + <h3>Emma Links</h3> + <ul> + <li><a href="https://myemma.com" title="Visit Emma's homepage" target="_blank">Emma Home</a></li> + + <li><a href="https://myemma.com/blog" title="Visit the Emma Blog" target="_blank">Emma Blog</a></li> + <li><a href="https://myemma.com/help" title="Visit Emma's help guide" target="_blank">Emma Help</a></li> + </ul> +</div> + +<div id="inquiry"> + <h3>Interested in Emma?</h3> + <p>Emma's email marketing makes communicating simple and stylish. <a href="https://myemma.com/get-started/inquire" title="Get started today.">Get started today</a>.</p> +</div> + </div> + </div> + <div class="clearer"></div> + </div> + <div class="footer"> + © Copyright 2003-<script language="JavaScript" type="text/javascript"> + now = new Date + theYear=now.getYear() + if (theYear < 1900) + theYear=theYear+1900 + document.write(theYear) + </script>, Campaign Monitor + </div> + </body> +</html> diff --git a/api/external/fields.html b/api/external/fields.html index f50b6e1..9f167f9 100644 --- a/api/external/fields.html +++ b/api/external/fields.html @@ -30,7 +30,7 @@ <script type="text/javascript" src="../../_static/doctools.js"></script> <link rel="top" title="audience 0.1 documentation" href="../../index.html" /> <link rel="next" title="Groups" href="groups.html" /> - <link rel="prev" title="Emma API" href="../../index.html" /> + <link rel="prev" title="Exports" href="exports.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"> <link rel="apple-touch-icon-precomposed" href="https://myemma.com/static/global/favicons/apple-iphone.png" /> @@ -89,7 +89,7 @@ <h3>Navigation</h3> <a href="groups.html" title="Groups" accesskey="N">next</a> |</li> <li class="right" > - <a href="../../index.html" title="Emma API" + <a href="exports.html" title="Exports" accesskey="P">previous</a> |</li> <li><a href="../../index.html">audience 0.1 documentation</a> »</li> </ul> @@ -378,7 +378,7 @@ <h1>Fields<a class="headerlink" href="#fields" title="Permalink to this headline <div class="sphinxsidebarwrapper"><h3>Related Topics</h3> <ul> <li><a href="../../index.html">Documentation overview</a><ul> - <li>Previous: <a href="../../index.html" title="previous chapter">Emma API</a></li> + <li>Previous: <a href="exports.html" title="previous chapter">Exports</a></li> <li>Next: <a href="groups.html" title="next chapter">Groups</a></li> </ul></li> </ul> diff --git a/api/external/members.html b/api/external/members.html index ac9b430..b1f854a 100644 --- a/api/external/members.html +++ b/api/external/members.html @@ -1283,142 +1283,6 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli </table> <p> </dd></dl> - - <dl class="get"> - <dt id="get--#account_id-exports"> - <tt class="descname">GET </tt><tt class="descname">/#account_id/exports</tt><a class="headerlink" href="#get--#account_id-exports" title="Permalink to this definition">¶</a></dt> - <dd><p>Get a listing of all exports in an account.</p> - <table class="docutils field-list" frame="void" rules="none"> - <col class="field-name" /> - <col class="field-body" /> - <tbody valign="top"> - <tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> - <li><strong>export_type</strong> (<em>string</em>) – 'a' audience, 'm' individual member export</li> - </ul> - </td> - </tr> - <tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first last">A list of exports in the given account.</p> - </td> - </tr> - </tbody> - </table> - </dd></dl> - <dl class="post"> - <dt id="post--#account_id-exports"> - <tt class="descname">POST </tt><tt class="descname">/#account_id/exports</tt><a class="headerlink" href="#post--#account_id-exports" title="Permalink to this definition">¶</a></dt> - <dd><p>Create an export of a list of members.</p> - <table class="docutils field-list" frame="void" rules="none"> - <col class="field-name" /> - <col class="field-body" /> - <tbody valign="top"> - <tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> - <li><strong>name</strong> (<em>string</em>) – Export name</li> - <li><strong>criteria</strong> (<em>dictionary</em>) – Describes what should be exported - <ul class="first simple"> - <li><strong>groups</strong> (<em>array of integers</em>) – List of Group IDs</li> - <li><strong>segments</strong> (<em>array of integers</em>) – List of Segment IDs</li> - <li><strong>member_ids</strong> (<em>array of integers</em>) – List of Member IDs</li> - <br /> - <p>The list of members to be exported will be a union of the members included - in each provided group and segment, and the list of member_ids</p> - <br /> - <li><strong>member_status_ids</strong> (<em>array of strings</em>) – Status of the members</li> - <li><strong>include_fields</strong> – Accepts True or an array of strings. Optional flag to include all member fields or a list of member fields.</li> - </ul> - </li> - </ul> - </td> - </tr> - <tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first last">Export ID</p> - </td> - </tr> - </tbody> - </table> - </dd></dl> - <dl class="get"> - <dt id="get--#account_id-exports"> - <tt class="descname">GET </tt><tt class="descname">/#account_id/exports</tt><a class="headerlink" href="#get--#account_id-exports" title="Permalink to this definition">¶</a></dt> - <dd><p>Get a listing of all exports in an account.</p> - <table class="docutils field-list" frame="void" rules="none"> - <col class="field-name" /> - <col class="field-body" /> - <tbody valign="top"> - <tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> - <li><strong>export_type</strong> (<em>string</em>) – 'a' audience, 'm' individual member export</li> - </ul> - </td> - </tr> - <tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first last">A list of exports in the given account.</p> - </td> - </tr> - </tbody> - </table> - </dd></dl> - <dl class="get"> - <dt id="get--#account_id-exports-#export_id"> - <tt class="descname">GET </tt><tt class="descname">/#account_id/exports/#export_id</tt><a class="headerlink" href="#get--#account_id-exports-#export_id" title="Permalink to this definition">¶</a></dt> - <dd><p>Get detailed information on a particular export.</p> - <table class="docutils field-list" frame="void" rules="none"> - <col class="field-name" /> - <col class="field-body" /> - <tbody valign="top"> - <tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first last">A single export if it exists</p> - </td> - </tr> - </tbody> - </table> - <p> - <div class="sample-response hide-response"> - <span style="font-weight:bold;">Sample Response</span> - <a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> - <pre class="response"> -<b>GET /100/exports/200</b> -{ - "account_id": 100, - "export_id": 200, - "user_id": 300, - "created_at": "@D:2018-09-28T23:03:33", - "completed_at": null, - "status": "p", - "criteria": {"member_status_ids": ["a"]}, - "export_type": "a", - "export_name": "All Active Members" -} -</pre> - </div> - </p> - </dd></dl> - <dl class="post"> - <dt id="post--#account_id-exports-members-#member-id"> - <tt class="descname">POST </tt><tt class="descname">/#account_id/exports/members/#member_id</tt><a class="headerlink" href="#post--#account_id-exports-members-#member-id" title="Permalink to this definition">¶</a></dt> - <dd><p>Create an export of all information for an individual member.</p> - <p>This will provide compliance with GDPR right to data portability.</p> - <table class="docutils field-list" frame="void" rules="none"> - <col class="field-name" /> - <col class="field-body" /> - <tbody valign="top"> - <tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first last">Export ID</p> - </td> - </tr> - </tbody> - </table> - </dd></dl> - <dl class="get"> - <dt id="get--#account_id-exports-#export_id-download"> - <tt class="descname">GET </tt><tt class="descname">/#account_id/exports/#export_id/download</tt><a class="headerlink" href="#get--#account_id-exports-#export_id-download" title="Permalink to this definition">¶</a></dt> - <dd><p>Download the results of the specified export.</p> - <table class="docutils field-list" frame="void" rules="none"> - <col class="field-name" /> - <col class="field-body" /> - <tbody valign="top"> - <tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"> - <p class="first last">If the export_type is 'a' audience, download results in CSV form. <br /> - If the export_type is 'm' individual member export, download results as a zip file.</p> - </td> - </tr> - </tbody> - </table> - </dd></dl> </div> diff --git a/api/external/signup_forms.html b/api/external/signup_forms.html index 3f337f4..bcb87b2 100644 --- a/api/external/signup_forms.html +++ b/api/external/signup_forms.html @@ -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="Triggers" href="triggers.html" /> + <link rel="next" title="Webhooks" href="webhooks.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"> @@ -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="triggers.html" title="Triggers" + <a href="webhooks.html" title="Webhooks" accesskey="N">next</a> |</li> <li class="right" > <a href="searches.html" title="Searches" diff --git a/api/external/webhooks.html b/api/external/webhooks.html index b328b40..3894601 100644 --- a/api/external/webhooks.html +++ b/api/external/webhooks.html @@ -30,7 +30,7 @@ <script type="text/javascript" src="../../_static/doctools.js"></script> <link rel="top" title="audience 0.1 documentation" href="../../index.html" /> <link rel="next" title="Pagination" href="../../pagination.html" /> - <link rel="prev" title="Triggers" href="triggers.html" /> + <link rel="prev" title="Signup Forms" href="signup_forms.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"> <link rel="apple-touch-icon-precomposed" href="https://myemma.com/static/global/favicons/apple-iphone.png" /> @@ -86,10 +86,10 @@ <h3>Navigation</h3> <a href="../../http-routingtable.html" title="HTTP Routing Table" >routing table</a> |</li> <li class="right" > - <a href="../../pagination.html" title="Pagination" + <a href="pagination.html" title="Pagination" accesskey="N">next</a> |</li> <li class="right" > - <a href="triggers.html" title="Triggers" + <a href="signup_forms.html" title="Signup Forms" accesskey="P">previous</a> |</li> <li><a href="../../index.html">audience 0.1 documentation</a> »</li> </ul> diff --git a/index.html b/index.html index cd22388..431b4a9 100644 --- a/index.html +++ b/index.html @@ -28,7 +28,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="#" /> - <link rel="next" title="Fields" href="api/external/fields.html" /> + <link rel="next" title="Automation" href="api/external/automation.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"> <link rel="apple-touch-icon-precomposed" href="https://myemma.com/static/global/favicons/apple-iphone.png" /> @@ -85,7 +85,7 @@ <h3>Navigation</h3> <a href="http-routingtable.html" title="HTTP Routing Table" >routing table</a> |</li> <li class="right" > - <a href="api/external/fields.html" title="Fields" + <a href="api/external/automation.html" title="Automation" accesskey="N">next</a> |</li> <li><a href="#">audience 0.1 documentation</a> »</li> </ul> @@ -257,6 +257,8 @@ <h2>API calls by category<a class="headerlink" href="#api-calls-by-category" tit </p> <div class="toctree-wrapper compound"> <ul> +<li class="toctree-l1"><a class="reference internal" href="api/external/automation.html">Automation</a></li> +<li class="toctree-l1"><a class="reference internal" href="api/external/exports.html">Exports</a></li> <li class="toctree-l1"><a class="reference internal" href="api/external/fields.html">Fields</a></li> <li class="toctree-l1"><a class="reference internal" href="api/external/groups.html">Groups</a></li> <li class="toctree-l1"><a class="reference internal" href="api/external/mailings.html">Mailings</a></li> @@ -266,7 +268,6 @@ <h2>API calls by category<a class="headerlink" href="#api-calls-by-category" tit <li class="toctree-l1"><a class="reference internal" href="api/external/signup_forms.html">Signup Forms</a></li> <!-- <li class="toctree-l1"><a class="reference internal" href="api/external/triggers.html">Triggers</a></li> --> <li class="toctree-l1"><a class="reference internal" href="api/external/webhooks.html">Webhooks</a></li> -<li class="toctree-l1"><a class="reference internal" href="api/external/automation.html">Automation</a></li> </ul> </div> </div> @@ -334,7 +335,7 @@ <h3><a href="#">Table Of Contents</a></h3> <h3>Related Topics</h3> <ul> <li><a href="#">Documentation overview</a><ul> - <li>Next: <a href="api/external/fields.html" title="next chapter">Fields</a></li> + <li>Next: <a href="api/external/automation.html" title="next chapter">Automation</a></li> </ul></li> </ul> <div id="searchbox" style="display: none"> From 185a90e440aeb1df288776abcf2fda4d1e0b75a3 Mon Sep 17 00:00:00 2001 From: Megan Morris <mmorris@myemma.com> Date: Fri, 27 Sep 2019 12:38:26 -0400 Subject: [PATCH 171/219] Adding documentation for subscriptions-api to public documentation (#30) * Adding new page, documenting * Updating navigation to account for new subscriptions page * Making requested changes --- api/external/exports.html | 6 +- api/external/signup_forms.html | 6 +- api/external/subscriptions.html | 518 ++++++++++++++++++++++++++++++++ api/external/webhooks.html | 6 +- index.html | 1 + 5 files changed, 528 insertions(+), 9 deletions(-) create mode 100644 api/external/subscriptions.html diff --git a/api/external/exports.html b/api/external/exports.html index 7d90aea..4836d07 100644 --- a/api/external/exports.html +++ b/api/external/exports.html @@ -244,7 +244,7 @@ <h1>Exports<a class="headerlink" href="#exports" title="Permalink to this headli <dl class="post"> <dt id="post--#account_id-exports"> <tt class="descname">POST </tt><tt class="descname">/#account_id/exports</tt><a class="headerlink" href="#post--#account_id-exports" title="Permalink to this definition">¶</a></dt> -<dd><p>Creates an export of members.</p> +<dd><p>Create an export of members.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> @@ -297,8 +297,8 @@ <h1>Exports<a class="headerlink" href="#exports" title="Permalink to this headli </dd></dl> <dl class="post"> - <dt id="post--#account_id-exports-#members-#member_id"> - <tt class="descname">POST </tt><tt class="descname">/#account_id/exports/#members/member_id</tt><a class="headerlink" href="#post--#account_id-exports-#members-#member_id" title="Permalink to this definition">¶</a></dt> + <dt id="post--#account_id-exports-members-#member_id"> + <tt class="descname">POST </tt><tt class="descname">/#account_id/exports/members/#member_id</tt><a class="headerlink" href="#post--#account_id-exports-members-#member_id" title="Permalink to this definition">¶</a></dt> <dd><p>Create an export of all information for an individual member. This will provide compliance with GDPR right to data portability.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> diff --git a/api/external/signup_forms.html b/api/external/signup_forms.html index bcb87b2..669f8b0 100644 --- a/api/external/signup_forms.html +++ b/api/external/signup_forms.html @@ -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="Webhooks" href="webhooks.html" /> + <link rel="next" title="Subscriptions" href="subscriptions.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"> @@ -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="webhooks.html" title="Webhooks" + <a href="subscriptions.html" title="Subscriptions" accesskey="N">next</a> |</li> <li class="right" > <a href="searches.html" title="Searches" @@ -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="webhooks.html" title="next chapter">Webhooks</a></li> + <li>Next: <a href="subscriptions.html" title="next chapter">Subscriptions</a></li> </ul></li> </ul> <div id="searchbox" style="display: none"> diff --git a/api/external/subscriptions.html b/api/external/subscriptions.html new file mode 100644 index 0000000..5163b4b --- /dev/null +++ b/api/external/subscriptions.html @@ -0,0 +1,518 @@ + +<!doctype html> + + +<html xmlns="http://www.w3.org/1999/xhtml"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> + + <title>Emma API Documentation | Emma, Inc.</title> + + + <link rel="stylesheet" href="../../_static/emma.css" type="text/css" /> + <link rel="stylesheet" href="../../_static/pygments.css" type="text/css" /> + + <script type="text/javascript"> + var DOCUMENTATION_OPTIONS = { + URL_ROOT: '../../', + VERSION: '0.1', + COLLAPSE_INDEX: false, + FILE_SUFFIX: '.html', + HAS_SOURCE: true + }; + </script> + + <script src="https://code.jquery.com/jquery-1.4.min.js"></script> + <script>window.jQuery || document.write('<script src="_static/jquery.js"><\/script>')</script> + + <link href="https://fonts.googleapis.com/css?family=Roboto:400,700" rel="stylesheet"> + <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="Webhooks" href="webhooks.html" /> + <link rel="prev" title="Signup Forms" href="signup_forms.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"> + <link rel="apple-touch-icon-precomposed" href="https://myemma.com/static/global/favicons/apple-iphone.png" /> + <link rel="apple-touch-icon-precomposed" sizes="72x72" href="https://myemma.com/static/global/favicons/apple-ipad.png" /> + <link rel="apple-touch-icon-precomposed" sizes="114x114" href="https://myemma.com/static/global/favicons/apple-iphone-2x.png" /> + <link rel="apple-touch-icon-precomposed" sizes="144x144" href="https://myemma.com/static/global/favicons/apple-ipad-2x.png" /> + + <style type="text/css"> + .resp-trigger, .resp-trigger:hover {font-size:10pt;text-decoration:none;} + div.sample-response.hide-response pre.response {display: none;} + div.sample-response .tshow, + div.sample-response.hide-response .thide {display: none;} + div.sample-response .thide, + div.sample-response.hide-response .tshow {display: inline;} + </style> + <script> + $().ready(function() { + $("a.resp-trigger").click(function(e) { + e.preventDefault(); + $(this).parents("div.sample-response").toggleClass("hide-response"); + }); + }); + </script> + + <script type="text/javascript"> + + var _gaq = _gaq || []; + _gaq.push(['_setAccount', 'UA-512410-18']); + _gaq.push(['_trackPageview']); + + (function() { + var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; + ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; + var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); + })(); + + </script> + + </head> + <body> + <header role="banner"> + <a href="/index.html"> + <h1>Emma API Documentation</h1> + </a> + </header> + <div class="related"> + <h3>Navigation</h3> + <ul> + <li class="right" style="margin-right: 10px"> + <a href="../../genindex.html" title="General Index" + accesskey="I">index</a></li> + <li class="right" > + <a href="../../http-routingtable.html" title="HTTP Routing Table" + >routing table</a> |</li> + <li class="right" > + <a href="webhooks.html" title="Webhooks" + accesskey="N">next</a> |</li> + <li class="right" > + <a href="signup_forms.html" title="Signup Forms" + accesskey="P">previous</a> |</li> + <li><a href="../../index.html">audience 0.1 documentation</a> »</li> + </ul> + </div> + + <div class="document"> + <div class="documentwrapper"> + <div class="bodywrapper"> + <div class="body"> + + <div class="section" id="subscriptions"> +<h1>Subscriptions<a class="headerlink" href="#subscriptions" title="Permalink to this headline">¶</a></h1> +<p>Using these endpoints you can create, edit, delete and get information about subscriptions in your account.</p> +<dl class="get"> +<dt id="get--#account_id-subscriptions"> +<tt class="descname">GET </tt><tt class="descname">/#account_id/subscriptions</tt><a class="headerlink" href="#get--#account_id-subscriptions" title="Permalink to this definition">¶</a></dt> +<dd><p>Get a list of all subscriptions in an account.</p> +<table class="docutils field-list" frame="void" rules="none"> +<col class="field-name" /> +<col class="field-body" /> +<tbody valign="top"> +<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> +<li><strong>deleted_only</strong> – true or false. Returns deleted subscriptions only. Optional, defaults to false.</li> +<li><strong>include_deleted</strong> – true or false. Returns deleted subscriptions along with active. Optional, defaults to false.</li> +</ul> +</td> +</tr> +<tr class="field-odd field"><th class="field-name">Returns:</th><td class="field-body"><p class="first last">A list of subscriptions in an account along with related information, including member count and subscription ID. </p> +</td> +</tr> +</tbody> +</table> +<p> +<div class="sample-response hide-response"> +<span style="font-weight:bold;">Sample Response</span> +<a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>GET /100/subscriptions</b> + +[ + { + "account_id": 100, + "created_at": "Mon, 01 Apr 2019 18:40:58 GMT", + "deleted_at": null, + "description": "Company updates and news", + "import_status": null, + "member_count": 984, + "modified_at": "Mon, 01 Apr 2019 18:40:58 GMT", + "optout_count": 1, + "purged_at": null, + "settings": { + "show_on_default_preference_form": true + }, + "subscription_id": 1, + "subscription_name": "General News", + "subscription_order": 1 + } +] +</pre> +</div> +</p> +</dd></dl> + +<dl class="get"> +<dt id="get--#account_id-subscriptions-#subscription_id"> +<tt class="descname">GET </tt><tt class="descname">/#account_id/subscriptions/subscription_id</tt><a class="headerlink" href="#get--#account_id-subscriptions-#subscription_id" title="Permalink to this definition">¶</a></dt> +<dd><p>Get detailed information for a specific subscription.</p> +<table class="docutils field-list" frame="void" rules="none"> +<col class="field-name" /> +<col class="field-body" /> +<tbody valign="top"> +<tr class="field-odd field"><th class="field-name">Returns:</th><td class="field-body">Information about a subscription.</td> +</tr> +</tbody> +</table> +<p> +<div class="sample-response hide-response"> +<span style="font-weight:bold;">Sample Response</span> +<a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>GET /100/subscriptions/200</b> + +{ + "account_id": 100, + "created_at": "Wed, 25 Sep 2019 21:39:34 GMT", + "deleted_at": null, + "description": "Regularly donate $1,500 or more.", + "member_count": 0, + "modified_at": "Wed, 25 Sep 2019 21:39:34 GMT", + "optout_count": 0, + "purged_at": null, + "settings": null, + "subscription_id": 200, + "subscription_name": "Gold-Level Donors", + "subscription_order": null +} +</pre> +</div> +</p> +</dd></dl> + +<dl class="get"> +<dt id="get--#account_id-subscriptions-#subscription_id-members"> +<tt class="descname">GET </tt><tt class="descname">/#account_id/subscriptions/#subscription_id/members</tt><a class="headerlink" href="#get--#account_id-subscriptions-#subscription_id-members" title="Permalink to this definition">¶</a></dt> +<dd><p>Get a list of member IDs for members subscribed to a specific subscription.</p> +<table class="docutils field-list" frame="void" rules="none"> +<col class="field-name" /> +<col class="field-body" /> +<tbody valign="top"> +<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> +<li><strong>start</strong> – Defaults to 0 if not specified.</li> +<li><strong>end</strong> – Defaults to 500 if not specified.</li> +</ul> +</td> +</tr> +<tr class="field-odd field"><th class="field-name">Returns:</th><td class="field-body">A list of member IDs.</td> +</tr> +</tbody> +</table> +<p> +<div class="sample-response hide-response"> +<span style="font-weight:bold;">Sample Response</span> +<a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>GET /100/subscriptions/200/members</b> + +[ + { + "member_id": 1 + }, + { + "member_id": 2 + }, + { + "member_id": 3 + }, + { + "member_id": 4 + } +] + +</pre> +</div> +</p> +</dd></dl> + +<dl class="get"> +<dt id="get--#account_id-subscriptions-#subscription_id-optouts"> +<tt class="descname">GET </tt><tt class="descname">/#account_id/subscriptions/#subscription_id/optouts</tt><a class="headerlink" href="#get--#account_id-subscriptions-#subscription_id-optouts" title="Permalink to this definition">¶</a></dt> +<dd><p>Get a list of member IDs for members who have opted out of a specific subscription.</p> +<table class="docutils field-list" frame="void" rules="none"> +<col class="field-name" /> +<col class="field-body" /> +<tbody valign="top"> +<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> +<li><strong>start</strong> – Defaults to 0 if not specified.</li> +<li><strong>end</strong> – Defaults to 500 if not specified.</li> +</ul> +</td> +</tr> +<tr class="field-odd field"><th class="field-name">Returns:</th><td class="field-body">A list of member IDs.</td> +</tr> +</tbody> +</table> +<p> +<div class="sample-response hide-response"> +<span style="font-weight:bold;">Sample Response</span> +<a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>GET /100/subscriptions/200/optouts</b> + +[ + { + "member_id": 5 + }, + { + "member_id": 6 + }, + { + "member_id": 7 + }, + { + "member_id": 8 + } +] + +</pre> +</div> +</p> +</dd></dl> + +<dl class="post"> +<dt id="post--#account_id-subscriptions"> +<tt class="descname">POST </tt><tt class="descname">/#account_id/subscriptions</tt><a class="headerlink" href="#post--#account_id-subscriptions" title="Permalink to this definition">¶</a></dt> +<dd><p>Create a subscription.</p> +<table class="docutils field-list" frame="void" rules="none"> +<col class="field-name" /> +<col class="field-body" /> +<tbody valign="top"> +<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> +<li><strong>name</strong> (<em>string</em>) – Required. Names the subscription, and will be visible in the Subscription Center.</li> +<li><strong>description</strong> (<em>string</em>) – Describes the subscription, and will be visible in the Subscription Center. +</li> +</ul> +</td> +</tr> +<tr class="field-even field"><th class="field-name">Returns:</th><td class="field-body"><p class="first">Information about the created subscription, including the subscription ID.</p> +</td> +</tr> +</tbody> +</table> +<p> + <div class="sample-response hide-response"> + <span style="font-weight:bold;">Sample Response</span> + <a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> + <pre class="response"> + <b>POST /100/subscriptions</b> + + { + "name": "Cat Fanatics", + "description": "Cat-only newsletter subscribers" + } + + { + "account_id": 100, + "created_at": "Wed, 25 Sep 2019 21:39:34 GMT", + "deleted_at": null, + "description": "Cat-only newsletter subscribers", + "member_count": 0, + "modified_at": "Wed, 25 Sep 2019 21:39:34 GMT", + "optout_count": 0, + "purged_at": null, + "settings": null, + "subscription_id": 300, + "subscription_name": "Cat Fanatics", + "subscription_order": null + } + </pre> + </div> +</p> +</dd></dl> + +<dl class="post"> + <dt id="post--#account_id-subscriptions-#subscription_id-members-bulk"> + <tt class="descname">POST </tt><tt class="descname">/#account_id/subscriptions/#subscription_id/members/bulk</tt><a class="headerlink" href="#post--#account_id-subscriptions-#subscription_id-members-bulk" title="Permalink to this definition">¶</a></dt> + <dd><p>Bulk subscribe members to a subscription using either a list of member IDs or a single import ID.</p> + <table class="docutils field-list" frame="void" rules="none"> + <col class="field-name" /> + <col class="field-body" /> + <tbody valign="top"> + <tr class="field-odd field"><th class="field-name">Returns:</th><td class="field-body">True if successful.</td> + </tr> + </tbody> + </table> + <p> + <div class="sample-response hide-response"> + <span style="font-weight:bold;">Sample Response</span> + <a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> + <pre class="response"> + <b>POST /100/subscriptions/200/members/bulk</b> + { + "member_ids": [1, 2, 3, 4] + } + + true + </pre> + </div> + </p> + + <p> + <div class="sample-response hide-response"> + <span style="font-weight:bold;">Sample Response</span> + <a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> + <pre class="response"> + <b>POST /100/subscriptions/200/members/bulk</b> + { + "import_id": 1 + } + + true + </pre> + </div> + </p> +</dd></dl> + +<dl class="put"> +<dt id="put--#account_id-subscriptions-#subscription_id"> +<tt class="descname">PUT </tt><tt class="descname">/#account_id/subscriptions/#subscription_id</tt><a class="headerlink" href="#put--#account_id-subscriptions-#subscription_id" title="Permalink to this definition">¶</a></dt> +<dd><p>Edit a subscription's name or description.</p> +<table class="docutils field-list" frame="void" rules="none"> +<col class="field-name" /> +<col class="field-body" /> +<tbody valign="top"> +<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> +<li><strong>name</strong> (<em>string</em>) – Only required if updating the name. Visible in the Subscription Center.</li> +<li><strong>description</strong> (<em>string</em>) – Describes the subscription, and is visible in the Subscription Center. +</li> +</ul> +</td> +</tr> +<tr class="field-even field"><th class="field-name">Returns:</th><td class="field-body"><p class="first">Information about the updated subscription.</p> +</td> +</tr> +</tbody> +</table> +<p> +<div class="sample-response hide-response"> +<span style="font-weight:bold;">Sample Response</span> +<a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> + <b>PUT /100/subscriptions/300</b> + { + "name": "Cat Fanatics Only", + "description": "A newsletter for those only interested in cat products" + } + + { + "account_id": 100, + "created_at": "Wed, 25 Sep 2019 21:39:34 GMT", + "deleted_at": null, + "description": "A newsletter for those only interested in cat products", + "member_count": 0, + "modified_at": "Fri, 27 Sep 2019 21:43:22 GMT", + "optout_count": 0, + "purged_at": null, + "settings": null, + "subscription_id": 300, + "subscription_name": "Cat Fanatics Only", + "subscription_order": null + } +</pre> +</div> +</p> +</dd></dl> + +<dl class="delete"> +<dt id="delete--#account_id-subscriptions-#subscription_id"> +<tt class="descname">DELETE </tt><tt class="descname">/#account_id/subscriptions/subscription_id</tt><a class="headerlink" href="#delete--#account_id-subscriptions-#subscription_id" title="Permalink to this definition">¶</a></dt> +<dd><p>Delete a subscription.</p> +<table class="docutils field-list" frame="void" rules="none"> +<col class="field-name" /> +<col class="field-body" /> +<tbody valign="top"> +<tr class="field-odd field"><th class="field-name">Returns:</th><td class="field-body">Information about the subscription, including the date and time it was deleted.</td> +</tr> +</tbody> +</table> +<p> +<div class="sample-response hide-response"> +<span style="font-weight:bold;">Sample Response</span> +<a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> + <b>DELETE /100/subscriptions/200</b> + + { + "account_id": 100, + "created_at": "Wed, 25 Sep 2019 21:39:34 GMT", + "deleted_at": "Thu, 26 Sep 2019 20:29:33 GMT", + "description": "Regularly donate $1,500 or more.", + "member_count": 150, + "modified_at": "Wed, 25 Sep 2019 21:39:34 GMT", + "optout_count": 8, + "purged_at": null, + "settings": null, + "subscription_id": 200, + "subscription_name": "Gold-Level Donors", + "subscription_order": null + } +</pre> +</div> +</p> +</dd></dl> +</div> + </div> + </div> + </div> + <div class="sphinxsidebar"> + <div class="sphinxsidebarwrapper"><h3>Related Topics</h3> +<ul> + <li><a href="../../index.html">Documentation overview</a><ul> + <li>Previous: <a href="signup_forms.html" title="previous chapter">Signup Forms</a></li> + <li>Next: <a href="webhooks.html" title="next chapter">Webhooks</a></li> + </ul></li> +</ul> +<div id="searchbox" style="display: none"> + <h3>Quick search</h3> + <form class="search" action="../../search.html" method="get"> + <input type="text" name="q" /> + <input type="submit" value="Go" /> + <input type="hidden" name="check_keywords" value="yes" /> + <input type="hidden" name="area" value="default" /> + </form> + <p class="searchtip" style="font-size: 90%"> + Enter search terms or a module, class or function name. + </p> +</div> +<script type="text/javascript">$('#searchbox').show(0);</script> +<div id="emma-links"> + <h3>Emma Links</h3> + <ul> + <li><a href="https://myemma.com" title="Visit Emma's homepage" target="_blank">Emma Home</a></li> + + <li><a href="https://myemma.com/blog" title="Visit the Emma Blog" target="_blank">Emma Blog</a></li> + <li><a href="https://myemma.com/help" title="Visit Emma's help guide" target="_blank">Emma Help</a></li> + </ul> +</div> + +<div id="inquiry"> + <h3>Interested in Emma?</h3> + <p>Emma's email marketing makes communicating simple and stylish. <a href="https://myemma.com/get-started/inquire" title="Get started today.">Get started today</a>.</p> +</div> + </div> + </div> + <div class="clearer"></div> + </div> + <div class="footer"> + © Copyright 2003-<script language="JavaScript" type="text/javascript"> + now = new Date + theYear=now.getYear() + if (theYear < 1900) + theYear=theYear+1900 + document.write(theYear) + </script>, Campaign Monitor + </div> + </body> +</html> diff --git a/api/external/webhooks.html b/api/external/webhooks.html index 3894601..cc574ab 100644 --- a/api/external/webhooks.html +++ b/api/external/webhooks.html @@ -30,7 +30,7 @@ <script type="text/javascript" src="../../_static/doctools.js"></script> <link rel="top" title="audience 0.1 documentation" href="../../index.html" /> <link rel="next" title="Pagination" href="../../pagination.html" /> - <link rel="prev" title="Signup Forms" href="signup_forms.html" /> + <link rel="prev" title="Subscriptions" href="subscriptions.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"> <link rel="apple-touch-icon-precomposed" href="https://myemma.com/static/global/favicons/apple-iphone.png" /> @@ -89,7 +89,7 @@ <h3>Navigation</h3> <a href="pagination.html" title="Pagination" accesskey="N">next</a> |</li> <li class="right" > - <a href="signup_forms.html" title="Signup Forms" + <a href="subscriptions.html" title="Subscriptions" accesskey="P">previous</a> |</li> <li><a href="../../index.html">audience 0.1 documentation</a> »</li> </ul> @@ -448,7 +448,7 @@ <h1>Webhooks<a class="headerlink" href="#webhooks" title="Permalink to this head <div class="sphinxsidebarwrapper"><h3>Related Topics</h3> <ul> <li><a href="../../index.html">Documentation overview</a><ul> - <li>Previous: <a href="signup_forms.html" title="previous chapter">Signup Forms</a></li> + <li>Previous: <a href="subscriptions.html" title="previous chapter">Subscriptions</a></li> <li>Next: <a href="../../pagination.html" title="next chapter">Pagination</a></li> </ul></li> </ul> diff --git a/index.html b/index.html index 431b4a9..faf5f9d 100644 --- a/index.html +++ b/index.html @@ -266,6 +266,7 @@ <h2>API calls by category<a class="headerlink" href="#api-calls-by-category" tit <li class="toctree-l1"><a class="reference internal" href="api/external/response.html">Response</a></li> <li class="toctree-l1"><a class="reference internal" href="api/external/searches.html">Searches</a></li> <li class="toctree-l1"><a class="reference internal" href="api/external/signup_forms.html">Signup Forms</a></li> +<li class="toctree-l1"><a class="reference internal" href="api/external/subscriptions.html">Subscriptions</a></li> <!-- <li class="toctree-l1"><a class="reference internal" href="api/external/triggers.html">Triggers</a></li> --> <li class="toctree-l1"><a class="reference internal" href="api/external/webhooks.html">Webhooks</a></li> </ul> From 022fe9c2aeb6be5271d793e13dfda02b4f8ea99d Mon Sep 17 00:00:00 2001 From: Donna Smith <donna.smith@myemma.com> Date: Tue, 15 Oct 2019 14:18:50 -0500 Subject: [PATCH 172/219] [CAMP-3664] Adding line about automate_contact_imports to API documentation --- api/external/members.html | 2 ++ 1 file changed, 2 insertions(+) diff --git a/api/external/members.html b/api/external/members.html index b1f854a..fc004ee 100644 --- a/api/external/members.html +++ b/api/external/members.html @@ -427,6 +427,8 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli <li><strong>automate_field_changes</strong> (<em>boolean</em>) – Accepts True or False. Optional. When set to True, updates made by this call will trigger field change workflows when appropriate. For more information on field change automation, visit our <a href="http://support.e2ma.net/Resource_Center/Guide_to_Automation/Trigger_events%3A_field_change">Resource Center.</a></li> +<li><strong>automate_contact_imports</strong> (<em>boolean</em>) – Accepts True or False. Optional. When set to True, updates made by this call will +trigger contact import workflows when appropriate.</li> <li><strong>source_filename</strong> (<em>string</em>) – An arbitrary string to associate with this import. This should generally be set to the filename that the user uploaded.</li> <li><strong>add_only</strong> (<em>boolean</em>) – Optional. Only add new members, ignore existing members.</li> From 401b10d87361d6f5db8b8b80153b1c26546b44ea Mon Sep 17 00:00:00 2001 From: Brandon Henry <bhenry@campaignmonitor.com> Date: Thu, 9 Jan 2020 15:17:25 -0500 Subject: [PATCH 173/219] first, and most importantly --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index faf5f9d..0c49e8b 100644 --- a/index.html +++ b/index.html @@ -207,7 +207,7 @@ <h2>Quickstart<a class="headerlink" href="#quickstart" title="Permalink to this <span class="p">);</span> </pre></div> </div> -<p>Please note that the <tt class="docutils literal"><span class="pre">group_ids</span></tt> hat you’re adding members to are passed as an array of integers. In addition, you’ll always want to make sure that you sanitize any of these form inputs to protect your application.</p> +<p>Please note that the <tt class="docutils literal"><span class="pre">group_ids</span></tt> that you’re adding members to are passed as an array of integers. In addition, you’ll always want to make sure that you sanitize any of these form inputs to protect your application.</p> <p>Now we’ll need to set the URL for the API call. The endpoint for all of our API calls is <a class="reference external" href="https://api.e2ma.net/">https://api.e2ma.net/</a>. <b>NOTE:</b> You must use TLS version 1.1 or higher to connect. TLSv1 and all versions of SSL ciphers (e.g. SSLv2, SSLv3) are not supported.</br> In this case, we’re using the endpoint that corresponds to adding a single member. There’s a separate call for adding bulk members.</p> From fbc8b8d7cda27ceefa4103a379c58ed7114f338d Mon Sep 17 00:00:00 2001 From: Brandon Henry <bhenry@campaignmonitor.com> Date: Fri, 10 Jan 2020 09:20:17 -0500 Subject: [PATCH 174/219] include details about valid widget types --- api/external/fields.html | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/api/external/fields.html b/api/external/fields.html index 9f167f9..ad9746a 100644 --- a/api/external/fields.html +++ b/api/external/fields.html @@ -256,9 +256,13 @@ <h1>Fields<a class="headerlink" href="#fields" title="Permalink to this headline <li><strong>field_type</strong> (<em>string</em>) – The type of value this field will contain. Accepts one of <tt class="docutils literal"><span class="pre">text</span></tt>, <tt class="docutils literal"><span class="pre">text[]</span></tt>, <tt class="docutils literal"><span class="pre">numeric</span></tt>, <tt class="docutils literal"><span class="pre">boolean</span></tt>, <tt class="docutils literal"><span class="pre">date</span></tt>, <tt class="docutils literal"><span class="pre">timestamp</span></tt>.</li> -<li><strong>widget_type</strong> (<em>string</em>) – The type of widget this field will display as. -Accepts one of <tt class="docutils literal"><span class="pre">text</span></tt>, <tt class="docutils literal"><span class="pre">long</span></tt>, <tt class="docutils literal"><span class="pre">checkbox</span></tt>, <tt class="docutils literal"><span class="pre">select</span> <span class="pre">multiple</span></tt>, -<tt class="docutils literal"><span class="pre">check_multiple</span></tt>, <tt class="docutils literal"><span class="pre">radio</span></tt>, <tt class="docutils literal"><span class="pre">date</span></tt>, <tt class="docutils literal"><span class="pre">select</span> <span class="pre">one</span></tt>, <tt class="docutils literal"><span class="pre">number</span></tt>.</li> +<li><strong>widget_type</strong> (<em>string</em>) – The type of widget this field will display as. Valid values are based on <tt class="docutils literal"><span class="pre">field_type</span></tt>.<br/> +   <tt class="docutils literal"><span class="pre">text</span></tt> => <tt class="docutils literal"><span class="pre">text</span></tt>, <tt class="docutils literal"><span class="pre">long</span></tt>, <tt class="docutils literal"><span class="pre">radio</span></tt><tt class="docutils literal"><span class="pre">select one</span></tt>.<br/> +   <tt class="docutils literal"><span class="pre">text[]</span></tt> => <tt class="docutils literal"><span class="pre">select multiple</span></tt>, <tt class="docutils literal"><span class="pre">check_multiple</span></tt>.<br/> +   <tt class="docutils literal"><span class="pre">numeric</span></tt> => <tt class="docutils literal"><span class="pre">number</span></tt>.<br/> +   <tt class="docutils literal"><span class="pre">boolean</span></tt> => <tt class="docutils literal"><span class="pre">checkbox</span></tt>.<br/> +   <tt class="docutils literal"><span class="pre">date</span></tt> and <tt class="docutils literal"><span class="pre">timestamp</span></tt> => <tt class="docutils literal"><span class="pre">date</span></tt>. + </li> <li><strong>column_order</strong> (<em>integer</em>) – Order of this column in lists.</li> </ul> </td> @@ -423,4 +427,4 @@ <h3>Interested in Emma?</h3> </script>, Campaign Monitor </div> </body> -</html> \ No newline at end of file +</html> From 75fc175885dbe8e6d800dcd6c373023bb2b32bfd Mon Sep 17 00:00:00 2001 From: Brandon Henry <bhenry@campaignmonitor.com> Date: Fri, 10 Jan 2020 09:22:02 -0500 Subject: [PATCH 175/219] fix typo --- api/external/fields.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/external/fields.html b/api/external/fields.html index ad9746a..b0b4611 100644 --- a/api/external/fields.html +++ b/api/external/fields.html @@ -257,7 +257,7 @@ <h1>Fields<a class="headerlink" href="#fields" title="Permalink to this headline Accepts one of <tt class="docutils literal"><span class="pre">text</span></tt>, <tt class="docutils literal"><span class="pre">text[]</span></tt>, <tt class="docutils literal"><span class="pre">numeric</span></tt>, <tt class="docutils literal"><span class="pre">boolean</span></tt>, <tt class="docutils literal"><span class="pre">date</span></tt>, <tt class="docutils literal"><span class="pre">timestamp</span></tt>.</li> <li><strong>widget_type</strong> (<em>string</em>) – The type of widget this field will display as. Valid values are based on <tt class="docutils literal"><span class="pre">field_type</span></tt>.<br/> -   <tt class="docutils literal"><span class="pre">text</span></tt> => <tt class="docutils literal"><span class="pre">text</span></tt>, <tt class="docutils literal"><span class="pre">long</span></tt>, <tt class="docutils literal"><span class="pre">radio</span></tt><tt class="docutils literal"><span class="pre">select one</span></tt>.<br/> +   <tt class="docutils literal"><span class="pre">text</span></tt> => <tt class="docutils literal"><span class="pre">text</span></tt>, <tt class="docutils literal"><span class="pre">long</span></tt>, <tt class="docutils literal"><span class="pre">radio</span></tt>, <tt class="docutils literal"><span class="pre">select one</span></tt>.<br/>   <tt class="docutils literal"><span class="pre">text[]</span></tt> => <tt class="docutils literal"><span class="pre">select multiple</span></tt>, <tt class="docutils literal"><span class="pre">check_multiple</span></tt>.<br/>   <tt class="docutils literal"><span class="pre">numeric</span></tt> => <tt class="docutils literal"><span class="pre">number</span></tt>.<br/>   <tt class="docutils literal"><span class="pre">boolean</span></tt> => <tt class="docutils literal"><span class="pre">checkbox</span></tt>.<br/> From 449af407e98094af00d9b832b9bd2b28c07e0c0e Mon Sep 17 00:00:00 2001 From: Brandon Henry <bhenry@campaignmonitor.com> Date: Fri, 10 Jan 2020 09:27:44 -0500 Subject: [PATCH 176/219] use more realistic example request --- api/external/fields.html | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/api/external/fields.html b/api/external/fields.html index b0b4611..1bcd11c 100644 --- a/api/external/fields.html +++ b/api/external/fields.html @@ -279,10 +279,12 @@ <h1>Fields<a class="headerlink" href="#fields" title="Permalink to this headline <pre class="response"> <b>POST /100/fields</b> { - "shortcut_name": "new_boolean", + "shortcut_name": "new_dropdown", "column_order": 3, - "display_name": "A New Boolean Field", - "field_type": "boolean" + "display_name": "A New Select Box Field", + "field_type": "text", + "widget_type": "select one", + "options": ["first", "second", "third"] } 1024 From 82e7243974cf7c35dec95b70e5672182d5f0153e Mon Sep 17 00:00:00 2001 From: Brandon Henry <bhenry@campaignmonitor.com> Date: Fri, 10 Jan 2020 09:34:05 -0500 Subject: [PATCH 177/219] add options parameter to field docs --- api/external/fields.html | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/api/external/fields.html b/api/external/fields.html index 1bcd11c..a6bb2c4 100644 --- a/api/external/fields.html +++ b/api/external/fields.html @@ -263,7 +263,12 @@ <h1>Fields<a class="headerlink" href="#fields" title="Permalink to this headline   <tt class="docutils literal"><span class="pre">boolean</span></tt> => <tt class="docutils literal"><span class="pre">checkbox</span></tt>.<br/>   <tt class="docutils literal"><span class="pre">date</span></tt> and <tt class="docutils literal"><span class="pre">timestamp</span></tt> => <tt class="docutils literal"><span class="pre">date</span></tt>. </li> -<li><strong>column_order</strong> (<em>integer</em>) – Order of this column in lists.</li> + <li><strong>options</strong> (<em>array</em>) – Options for a + <tt class="docutils literal"><span class="pre">check_multiple</span></tt>, + <tt class="docutils literal"><span class="pre">select multiple</span></tt>, + <tt class="docutils literal"><span class="pre">select one</span></tt>, or + <tt class="docutils literal"><span class="pre">radio</span></tt> widget.</li> + <li><strong>column_order</strong> (<em>integer</em>) – Order of this column in lists.</li> </ul> </td> </tr> From 43c7cdabee4642894067d5e6ef2c2dac23788b83 Mon Sep 17 00:00:00 2001 From: Brandon Henry <bhenry@campaignmonitor.com> Date: Fri, 10 Jan 2020 10:28:16 -0500 Subject: [PATCH 178/219] verbiage --- api/external/fields.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/external/fields.html b/api/external/fields.html index a6bb2c4..2362800 100644 --- a/api/external/fields.html +++ b/api/external/fields.html @@ -256,7 +256,7 @@ <h1>Fields<a class="headerlink" href="#fields" title="Permalink to this headline <li><strong>field_type</strong> (<em>string</em>) – The type of value this field will contain. Accepts one of <tt class="docutils literal"><span class="pre">text</span></tt>, <tt class="docutils literal"><span class="pre">text[]</span></tt>, <tt class="docutils literal"><span class="pre">numeric</span></tt>, <tt class="docutils literal"><span class="pre">boolean</span></tt>, <tt class="docutils literal"><span class="pre">date</span></tt>, <tt class="docutils literal"><span class="pre">timestamp</span></tt>.</li> -<li><strong>widget_type</strong> (<em>string</em>) – The type of widget this field will display as. Valid values are based on <tt class="docutils literal"><span class="pre">field_type</span></tt>.<br/> +<li><strong>widget_type</strong> (<em>string</em>) – The widget used to accept field input. Valid values are based on <tt class="docutils literal"><span class="pre">field_type</span></tt>.<br/>   <tt class="docutils literal"><span class="pre">text</span></tt> => <tt class="docutils literal"><span class="pre">text</span></tt>, <tt class="docutils literal"><span class="pre">long</span></tt>, <tt class="docutils literal"><span class="pre">radio</span></tt>, <tt class="docutils literal"><span class="pre">select one</span></tt>.<br/>   <tt class="docutils literal"><span class="pre">text[]</span></tt> => <tt class="docutils literal"><span class="pre">select multiple</span></tt>, <tt class="docutils literal"><span class="pre">check_multiple</span></tt>.<br/>   <tt class="docutils literal"><span class="pre">numeric</span></tt> => <tt class="docutils literal"><span class="pre">number</span></tt>.<br/> From 5361d3a714017f6d907cf8a9ec5b9765e5438fc6 Mon Sep 17 00:00:00 2001 From: Megan Morris <mmorris@myemma.com> Date: Fri, 12 Jun 2020 16:05:53 -0400 Subject: [PATCH 179/219] Update member delete verbiage in API docs (#35) changing verbiage to indicate members are archived, not actually deleted --- api/external/members.html | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/api/external/members.html b/api/external/members.html index fc004ee..dd5c976 100644 --- a/api/external/members.html +++ b/api/external/members.html @@ -597,8 +597,8 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli <dl class="put"> <dt id="put--#account_id-members-delete"> <tt class="descname">PUT </tt><tt class="descname">/#account_id/members/delete</tt><a class="headerlink" href="#put--#account_id-members-delete" title="Permalink to this definition">¶</a></dt> -<dd><p>Delete an array of members.</p> -<p>The members will be marked as deleted and cannot be retrieved.</p> +<dd><p>Archive an array of members.</p> +<p>The members will be archived and will be appear in the account's Archived Items section.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> @@ -726,9 +726,8 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli <dl class="delete"> <dt id="delete--#account_id-members-#member_id"> <tt class="descname">DELETE </tt><tt class="descname">/#account_id/members/#member_id</tt><a class="headerlink" href="#delete--#account_id-members-#member_id" title="Permalink to this definition">¶</a></dt> -<dd><p>Delete the specified member.</p> -<p>The member, along with any associated response and history -information, will be completely removed from the database.</p> +<dd><p>Archive the specified member.</p> +<p>The member will be archived and will appear in the account's Archived Items section.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> @@ -901,7 +900,7 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli <dl class="delete"> <dt id="delete--#account_id-members"> <tt class="descname">DELETE </tt><tt class="descname">/#account_id/members</tt><a class="headerlink" href="#delete--#account_id-members" title="Permalink to this definition">¶</a></dt> -<dd><p>Delete all members.</p> +<dd><p>Archive all members.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> @@ -1262,7 +1261,7 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli <dt id="put--#account_id-members-purgeall"> <tt class="descname">PUT </tt><tt class="descname">/#account_id/members/purgeall</tt><a class="headerlink" href="#put--#account_id-members-purgeall" title="Permalink to this definition">¶</a></dt> <dd><dl class="docutils"> - <dt><p>Purge all deleted members</p></dt> + <dt><p>Purge all archived members</p></dt> <dt><p>This will provide compliance with GDPR right to erasure ('right to be forgotten').</p></dt> </dl> <table class="docutils field-list" frame="void" rules="none"> From c3f76a8cd355088871566b9929f9951978309f95 Mon Sep 17 00:00:00 2001 From: Megan Morris <mmorris@myemma.com> Date: Tue, 23 Feb 2021 16:12:19 -0500 Subject: [PATCH 180/219] Response Exports API documentation (#36) * adding response exports file and documentation * pagination updates --- api/external/exports.html | 2 +- api/external/response.html | 6 +- api/external/response_exports.html | 343 +++++++++++++++++++++++++++++ index.html | 1 + 4 files changed, 348 insertions(+), 4 deletions(-) create mode 100644 api/external/response_exports.html diff --git a/api/external/exports.html b/api/external/exports.html index 4836d07..61062d0 100644 --- a/api/external/exports.html +++ b/api/external/exports.html @@ -219,7 +219,7 @@ <h1>Exports<a class="headerlink" href="#exports" title="Permalink to this headli <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Returns:</th><td class="field-body">A file stream of the export document. If the export_type is 'a' (audience), download results in CSV form. If the export_type is 'm' (individual member), download results as a zip file.</td> +<tr class="field-odd field"><th class="field-name">Returns:</th><td class="field-body">If the export_type is 'a' (audience), download results in CSV form. If the export_type is 'm' (individual member), download results in a zip file.</td> </tr> <tr class="field-even field"><th class="field-name">Raises:</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no export with the specified ID is found.</td> </tr> diff --git a/api/external/response.html b/api/external/response.html index 5f20f09..106d98b 100644 --- a/api/external/response.html +++ b/api/external/response.html @@ -28,7 +28,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="Searches" href="searches.html" /> + <link rel="next" title="Response Exports" href="response_exports.html" /> <link rel="prev" title="Members" href="members.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"> @@ -85,7 +85,7 @@ <h3>Navigation</h3> <a href="../../http-routingtable.html" title="HTTP Routing Table" >routing table</a> |</li> <li class="right" > - <a href="searches.html" title="Searches" + <a href="response_exports.html" title="Response Exports" accesskey="N">next</a> |</li> <li class="right" > <a href="members.html" title="Members" @@ -1471,7 +1471,7 @@ <h1>Response<a class="headerlink" href="#response" title="Permalink to this head <ul> <li><a href="../../index.html">Documentation overview</a><ul> <li>Previous: <a href="members.html" title="previous chapter">Members</a></li> - <li>Next: <a href="searches.html" title="next chapter">Searches</a></li> + <li>Next: <a href="response_exports.html" title="next chapter">Response Exports</a></li> </ul></li> </ul> <div id="searchbox" style="display: none"> diff --git a/api/external/response_exports.html b/api/external/response_exports.html new file mode 100644 index 0000000..889d1ec --- /dev/null +++ b/api/external/response_exports.html @@ -0,0 +1,343 @@ + +<!doctype html> + + +<html xmlns="http://www.w3.org/1999/xhtml"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> + + <title>Emma API Documentation | Emma, Inc.</title> + + + <link rel="stylesheet" href="../../_static/emma.css" type="text/css" /> + <link rel="stylesheet" href="../../_static/pygments.css" type="text/css" /> + + <script type="text/javascript"> + var DOCUMENTATION_OPTIONS = { + URL_ROOT: '../../', + VERSION: '0.1', + COLLAPSE_INDEX: false, + FILE_SUFFIX: '.html', + HAS_SOURCE: true + }; + </script> + + <script src="https://code.jquery.com/jquery-1.4.min.js"></script> + <script>window.jQuery || document.write('<script src="_static/jquery.js"><\/script>')</script> + + <link href="https://fonts.googleapis.com/css?family=Roboto:400,700" rel="stylesheet"> + <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="Searches" href="searches.html" /> + <link rel="prev" title="Response" href="response.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"> + <link rel="apple-touch-icon-precomposed" href="https://myemma.com/static/global/favicons/apple-iphone.png" /> + <link rel="apple-touch-icon-precomposed" sizes="72x72" href="https://myemma.com/static/global/favicons/apple-ipad.png" /> + <link rel="apple-touch-icon-precomposed" sizes="114x114" href="https://myemma.com/static/global/favicons/apple-iphone-2x.png" /> + <link rel="apple-touch-icon-precomposed" sizes="144x144" href="https://myemma.com/static/global/favicons/apple-ipad-2x.png" /> + + <style type="text/css"> + .resp-trigger, .resp-trigger:hover {font-size:10pt;text-decoration:none;} + div.sample-response.hide-response pre.response {display: none;} + div.sample-response .tshow, + div.sample-response.hide-response .thide {display: none;} + div.sample-response .thide, + div.sample-response.hide-response .tshow {display: inline;} + </style> + <script> + $().ready(function() { + $("a.resp-trigger").click(function(e) { + e.preventDefault(); + $(this).parents("div.sample-response").toggleClass("hide-response"); + }); + }); + </script> + + <script type="text/javascript"> + + var _gaq = _gaq || []; + _gaq.push(['_setAccount', 'UA-512410-18']); + _gaq.push(['_trackPageview']); + + (function() { + var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; + ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; + var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); + })(); + + </script> + + </head> + <body> + <header role="banner"> + <a href="/index.html"> + <h1>Emma API Documentation</h1> + </a> + </header> + <div class="related"> + <h3>Navigation</h3> + <ul> + <li class="right" style="margin-right: 10px"> + <a href="../../genindex.html" title="General Index" + accesskey="I">index</a></li> + <li class="right" > + <a href="../../http-routingtable.html" title="HTTP Routing Table" + >routing table</a> |</li> + <li class="right" > + <a href="searches.html" title="Searches" + accesskey="N">next</a> |</li> + <li class="right" > + <a href="response.html" title="Response" + accesskey="P">previous</a> |</li> + <li><a href="../../index.html">audience 0.1 documentation</a> »</li> + </ul> + </div> + + <div class="document"> + <div class="documentwrapper"> + <div class="bodywrapper"> + <div class="body"> + + <div class="section" id="response_exports"> +<h1>Response Exports<a class="headerlink" href="#response_exports" title="Permalink to this headline">¶</a></h1> +<p>These endpoints allow you to create and interact with exports of response data in your account. Please note that these endpoints only provide information about response exports created using this API and will not return information or files related to response exports generated via Emma's UI.</p> +<dl class="post"> +<dt id="post--#account_id-response_exports"> +<tt class="descname">POST </tt><tt class="descname">/#account_id/exports/response</tt><a class="headerlink" href="#post--#account_id-exports-response" title="Permalink to this definition">¶</a></dt> +<dd><p>Create a response export. If no criteria is specified, the export created will contain response data for all mailings in the account from the last 30 days.</p> +<table class="docutils field-list" frame="void" rules="none"> +<col class="field-name" /> +<col class="field-body" /> +<tbody valign="top"> +<tr class="field-odd field"><th class="field-name">Supported criteria:</th><td class="field-body"><ul class="first simple"> +<li><strong>include_fields</strong> (<em>boolean, list of strings</em>) – <strong>Defaults to false.</strong> If <tt class="docutils literal"><span class="pre"></span>true</span></tt>, export will include all member fields in the account. If list of strings, export will include all member fields by <tt class="docutils literal"><span class="pre"></span>shortcut_name</span></tt> that exist in the account.</li> +<li><strong>mailing_ids</strong> (<em>array of integers</em>) - <strong>Defaults to empty list.</strong> If no <tt class="docutils literal"><span class="pre"></span>mailing_ids</span></tt> are specified, the last 50 mailings ordered by <tt class="docutils literal"><span class="pre"></span>send_started</span></tt> (most recently sent mailings) will be included in the export. The maximum number of <tt class="docutils literal"><span class="pre"></span>mailing_ids</span></tt> supported is 50.</li> +<li><strong>from_date</strong> (<em>datetime</em>) - <strong>Defaults to none.</strong> Exports response data starting from the date specified, and cannot be farther back than the previous 18 months. If paired with <tt class="docutils literal"><span class="pre">to_date</span></tt>, the export will be rejected if the total time period is greater than 90 days.</li> +<li><strong>to_date</strong> (<em>datetime</em>) - <strong>Defaults to none.</strong> Limits the response data exported up to the specified date. If paired with <tt class="docutils literal"><span class="pre"></span>from_date</span></tt>, the export will be rejected if the total time period is greater than 90 days.</li> +</ul> +</td> +</tr> +<tr class="field-odd field"><th class="field-name">Returns:</th><td class="field-body"><p class="first last"> An export ID. </p> +</td> +</tr> +<tr class="field-even field"><th class="field-name">Raises:</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http400</span></tt> if time between <tt class="docutils literal"><span class="pre"></span>from_date</span></tt> and <tt class="docutils literal"><span class="pre"></span>to_date</span></tt> is greater than 90 days or if more than 50 <tt class="docutils literal"><span class="pre"></span>mailing_ids</span></tt> are requested.</td> +</tbody> +</table> +<p> +<div class="sample-response hide-response"> +<span style="font-weight:bold;">Sample Response</span> +<a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>POST /100/exports/response</b> + +{ + "criteria": { + "mailing_ids": [1234], + "from_date": "2021-02-01", + "to_date": "2021-02-17" + } +} + +{ + "export_id: 200" +} +</pre> +</div> +</p> +</dd></dl> + +<dl class="get"> +<dt id="get--#account_id-exports-#export_id"> +<tt class="descname">GET </tt><tt class="descname">/#account_id/exports/response</tt><a class="headerlink" href="#get--#account_id-exports-#export_id" title="Permalink to this definition">¶</a></dt> +<dd><p>Get a list of response exports.</p> +<table class="docutils field-list" frame="void" rules="none"> +<col class="field-name" /> +<col class="field-body" /> +<tbody valign="top"> +<tr class="field-odd field"><th class="field-name">Returns:</th><td class="field-body">A detailed list of response exports for an account.</td> +</tr> +</tbody> +</table> +<p> +<div class="sample-response hide-response"> +<span style="font-weight:bold;">Sample Response</span> +<a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>GET /100/exports/response</b> + +[ + { + "account_id": 100, + "completed_at": "2021-02-08T23:11:35.746244+00:00", + "created_at": "2021-02-08T23:11:33.463881+00:00", + "criteria": { + "from_date": "2021-01-10T00:00:00+00:00", + "include_fields": false, + "mailing_ids": [], + "to_date": "2021-02-10T00:00:00+00:00" + }, + "export_id": 200, + "export_name": "response_export_2021-02-08_23:11", + "export_type": "r", + "status": "o", + "user_id": null + }, + { + "account_id": 100, + "completed_at": "2021-02-08T22:10:41.846488+00:00", + "created_at": "2021-02-08T22:10:39.473941+00:00", + "criteria": { + "from_date": "2021-02-01T00:00:00+00:00", + "include_fields": false, + "mailing_ids": [], + "to_date": "2021-02-15T00:00:00+00:00" + }, + "export_id": 300, + "export_name": "response_export_2021-02-08_22:10", + "export_type": "r", + "status": "o", + "user_id": null + } +] +</pre> +</div> +</p> +</dd></dl> + +<dl class="get"> +<dt id="get--#account_id-exports-response-#export_id"> +<tt class="descname">GET </tt><tt class="descname">/#account_id/exports/response/#export_id</tt><a class="headerlink" href="#get--#account_id-exports-response-#export_id" title="Permalink to this definition">¶</a></dt> +<dd><p>Get details about a specific response export.</p> +<table class="docutils field-list" frame="void" rules="none"> +<col class="field-name" /> +<col class="field-body" /> +<tbody valign="top"> +<tr class="field-odd field"><th class="field-name">Returns:</th><td class="field-body">Information about the specified response export, including export criteria and date the export was created.</td> +</tr> +<tr class="field-even field"><th class="field-name">Raises:</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no response export with the specified ID is found.</td> +</tr> +</tbody> +</table> +<p> +<div class="sample-response hide-response"> +<span style="font-weight:bold;">Sample Response</span> +<a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>GET /100/exports/response/200</b> + +{ + "account_id": 100, + "completed_at": "2021-02-08T23:11:35.746244+00:00", + "created_at": "2021-02-08T23:11:33.463881+00:00", + "criteria": { + "from_date": "2021-01-10T00:00:00+00:00", + "include_fields": false, + "mailing_ids": [], + "to_date": "2021-02-10T00:00:00+00:00" + }, + "export_id": 200, + "export_name": "response_export_2021-02-08_23:11", + "export_type": "r", + "status": "o", + "user_id": "abcdefg" +} + +</pre> +</div> +</p> +</dd></dl> + +<dl class="get"> +<dt id="get--#account_id-exports-response-#export_id-download"> +<tt class="descname">GET </tt><tt class="descname">/#account_id/exports/response/#export_id/download</tt><a class="headerlink" href="#get--#account_id-exports-response-#export_id" title="Permalink to this definition">¶</a></dt> +<dd><p>Download a file stream for the requested response export.</p> +<table class="docutils field-list" frame="void" rules="none"> +<col class="field-name" /> +<col class="field-body" /> +<tbody valign="top"> +<tr class="field-even field"><th class="field-name">Returns:</th><td class="field-body">A zip file stream containing the following files in CSV format: +<ul> + <li>#export_id_bounces.csv</li> + <li>#export_id_clicks.csv (includes link_id, and link_name if specified)</li> + <li>#export_id_in_progress.csv (no timestamp included)</li> + <li>#export_id_opens.csv</li> + <li>#export_id_optout.csv</li> + <li>#export_id_received.csv</li> + <li>#export_id_sent_to.csv</li> + <li>#export_id_shares.csv</li> + <li>#export_id_signups.csv</li> +</ul> +</td> +</tr> +<tr class="field-even field"><th class="field-name">Raises:</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if no response export with the specified ID is found.</td> +</tr> +</tbody> +</table> +<p> +<div class="sample-response hide-response"> +<span style="font-weight:bold;">Sample Response</span> +<a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> +<pre class="response"> +<b>POST /100/exports/response/200/download</b> + +mailing_id,timestamp (in UTC),email,member_id,member_since,plaintext_preferred,bounce_count,status-name,last_modified_at,(member fields if set to 'true' in response export criteria) +</pre> +</div> +</p> +</dd></dl> +</div> + </div> + </div> + </div> + <div class="sphinxsidebar"> + <div class="sphinxsidebarwrapper"><h3>Related Topics</h3> +<ul> + <li><a href="../../index.html">Documentation overview</a><ul> + <li>Previous: <a href="response.html" title="previous chapter">Response</a></li> + <li>Next: <a href="searches.html" title="next chapter">Searches</a></li> + </ul></li> +</ul> +<div id="searchbox" style="display: none"> + <h3>Quick search</h3> + <form class="search" action="../../search.html" method="get"> + <input type="text" name="q" /> + <input type="submit" value="Go" /> + <input type="hidden" name="check_keywords" value="yes" /> + <input type="hidden" name="area" value="default" /> + </form> + <p class="searchtip" style="font-size: 90%"> + Enter search terms or a module, class or function name. + </p> +</div> +<script type="text/javascript">$('#searchbox').show(0);</script> +<div id="emma-links"> + <h3>Emma Links</h3> + <ul> + <li><a href="https://myemma.com" title="Visit Emma's homepage" target="_blank">Emma Home</a></li> + + <li><a href="https://myemma.com/blog" title="Visit the Emma Blog" target="_blank">Emma Blog</a></li> + <li><a href="https://myemma.com/help" title="Visit Emma's help guide" target="_blank">Emma Help</a></li> + </ul> +</div> + +<div id="inquiry"> + <h3>Interested in Emma?</h3> + <p>Emma's email marketing makes communicating simple and stylish. <a href="https://myemma.com/get-started/inquire" title="Get started today.">Get started today</a>.</p> +</div> + </div> + </div> + <div class="clearer"></div> + </div> + <div class="footer"> + © Copyright 2003-<script language="JavaScript" type="text/javascript"> + now = new Date + theYear=now.getYear() + if (theYear < 1900) + theYear=theYear+1900 + document.write(theYear) + </script>, Campaign Monitor + </div> + </body> +</html> diff --git a/index.html b/index.html index 0c49e8b..16c2d73 100644 --- a/index.html +++ b/index.html @@ -264,6 +264,7 @@ <h2>API calls by category<a class="headerlink" href="#api-calls-by-category" tit <li class="toctree-l1"><a class="reference internal" href="api/external/mailings.html">Mailings</a></li> <li class="toctree-l1"><a class="reference internal" href="api/external/members.html">Members</a></li> <li class="toctree-l1"><a class="reference internal" href="api/external/response.html">Response</a></li> +<li class="toctree-l1"><a class="reference internal" href="api/external/response_exports.html">Response Exports</a></li> <li class="toctree-l1"><a class="reference internal" href="api/external/searches.html">Searches</a></li> <li class="toctree-l1"><a class="reference internal" href="api/external/signup_forms.html">Signup Forms</a></li> <li class="toctree-l1"><a class="reference internal" href="api/external/subscriptions.html">Subscriptions</a></li> From b735ddbee292c951ce78cd9ba3a67e7291ef01dd Mon Sep 17 00:00:00 2001 From: Megan Morris <mmorris@myemma.com> Date: Tue, 27 Apr 2021 12:53:03 -0400 Subject: [PATCH 181/219] Adding tip about account ID for HQ accounts (#37) adding verbiage about using a subaccount ID --- index.html | 3 +++ 1 file changed, 3 insertions(+) diff --git a/index.html b/index.html index 16c2d73..aefa71c 100644 --- a/index.html +++ b/index.html @@ -138,6 +138,9 @@ <h2>Overview<a class="headerlink" href="#overview" title="Permalink to this head </dl> </li> </ul> +<p> +<b>Note:</b> If you are an HQ customer, please be sure to use a subaccount's ID in the path of your API call. +</p> </div> <div class="section" id="api-wrappers"> <h2>API wrappers<a class="headerlink" href="#api-wrappers" title="Permalink to this headline">¶</a></h2> From 98402ede6ee4ae2bfa0bb7e42e888f0bc9c1003c Mon Sep 17 00:00:00 2001 From: nathanwritescode <ntalley@campaignmonitor.com> Date: Thu, 15 Jul 2021 10:10:01 -0500 Subject: [PATCH 182/219] Add subaccount create documentation --- api/external/accounts.html | 221 +++++++++++++++++++++++++++++++++++ api/external/automation.html | 2 +- index.html | 1 + 3 files changed, 223 insertions(+), 1 deletion(-) create mode 100644 api/external/accounts.html diff --git a/api/external/accounts.html b/api/external/accounts.html new file mode 100644 index 0000000..a17b62d --- /dev/null +++ b/api/external/accounts.html @@ -0,0 +1,221 @@ +<!doctype html> + + +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> + + <title>Emma API Documentation | Emma, Inc.</title> + + + <link rel="stylesheet" href="../../_static/emma.css" type="text/css" /> + <link rel="stylesheet" href="../../_static/pygments.css" type="text/css" /> + + <script type="text/javascript"> + var DOCUMENTATION_OPTIONS = { + URL_ROOT: '../../', + VERSION: '0.1', + COLLAPSE_INDEX: false, + FILE_SUFFIX: '.html', + HAS_SOURCE: true + }; + </script> + + <script src="https://code.jquery.com/jquery-1.4.min.js"></script> + <script>window.jQuery || document.write('<script src="_static/jquery.js"><\/script>')</script> + + <link href="https://fonts.googleapis.com/css?family=Roboto:400,700" rel="stylesheet"> + <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="Automation" href="automation.html" /> + <link rel="prev" title="Emma API" href="../../index.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"> + <link rel="apple-touch-icon-precomposed" href="https://myemma.com/static/global/favicons/apple-iphone.png" /> + <link rel="apple-touch-icon-precomposed" sizes="72x72" href="https://myemma.com/static/global/favicons/apple-ipad.png" /> + <link rel="apple-touch-icon-precomposed" sizes="114x114" href="https://myemma.com/static/global/favicons/apple-iphone-2x.png" /> + <link rel="apple-touch-icon-precomposed" sizes="144x144" href="https://myemma.com/static/global/favicons/apple-ipad-2x.png" /> + + <style type="text/css"> + .resp-trigger, .resp-trigger:hover {font-size:10pt;text-decoration:none;} + div.sample-response.hide-response pre.response {display: none;} + div.sample-response .tshow, + div.sample-response.hide-response .thide {display: none;} + div.sample-response .thide, + div.sample-response.hide-response .tshow {display: inline;} + </style> + <script> + $().ready(function() { + $("a.resp-trigger").click(function(e) { + e.preventDefault(); + $(this).parents("div.sample-response").toggleClass("hide-response"); + }); + }); + </script> + + <script type="text/javascript"> + + var _gaq = _gaq || []; + _gaq.push(['_setAccount', 'UA-512410-18']); + _gaq.push(['_trackPageview']); + + (function() { + var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; + ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; + var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); + })(); + + </script> + +</head> +<body> +<header role="banner"> + <a href="/index.html"> + <h1>Emma API Documentation</h1> + </a> +</header> +<div class="related"> + <h3>Navigation</h3> + <ul> + <li class="right" style="margin-right: 10px"> + <a href="../../genindex.html" title="General Index" + accesskey="I">index</a></li> + <li class="right" > + <a href="../../http-routingtable.html" title="HTTP Routing Table" + >routing table</a> |</li> + <li class="right" > + <a href="automation.html" title="Automation" + accesskey="N">next</a> |</li> + <li class="right" > + <a href="../../index.html" title="Emma API" + accesskey="P">previous</a> |</li> + <li><a href="../../index.html">audience 0.1 documentation</a> »</li> + </ul> +</div> + +<div class="document"> + <div class="documentwrapper"> + <div class="bodywrapper"> + <div class="body"> + + <div class="section" id="fields"> + <h1>Accounts<a class="headerlink" href="#fields" title="Permalink to this headline">¶</a></h1> + <p> + This endpoint allows you to create new subaccounts under an HQ parent account. + </p> + <dl class="post"> + <dt id="post--#account_id-fields"> + <tt class="descname">POST </tt><tt class="descname">/#parent_account_id/enterprise/subaccount</tt> + <a class="headerlink" href="#POST--#account_id-fields" title="Permalink to this definition">¶</a> + </dt> + <dd> + <p>Creates a subaccount under the given parent account</p> + <table class="docutils field-list" frame="void" rules="none"> + <col class="field-name" /> + <col class="field-body" /> + <tbody valign="top"> + <tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> + <li><strong>account_name</strong> (<em>string</em>) – Required. The name of the subaccount.<li> + <li><strong>account_rsvp_email</strong> (<em>string</em>) – Optional (recommended.) This is the ‘sender email’ that the subaccount’s mailings will be shown as sent from.</li> + <li><strong>account_rsvp_name</strong> (<em>string</em>) – Optional (recommended.) This is the ‘sender name’ displayed on the subaccount’s mailings.</li> + <li><strong>account_rsvp_address_1</strong> (<em>string</em>) – Optional (recommended.) First line of the address for the subaccount.</li> + <li><strong>account_rsvp_address_2</strong> (<em>string</em>) – Optional. Second line of the address for the subaccount.</li> + <li><strong>account_rsvp_country</strong> (<em>string</em>) – Optional (recommended.) Country for the subaccount (must match 2 letter iso code or capitalized country name.) + Including this additionally requires city & state parameters (or city & province if outside the US.)</li> + <li><strong>account_rsvp_city</strong> (<em>string</em>) – Optional (recommended.) City for the subaccount.</li> + <li><strong>account_rsvp_province</strong> (<em>string</em>) – Optional. Province for the subaccount (only for accounts outside the US.)</li> + <li><strong>account_rsvp_state</strong> (<em>string</em>) – Optional (recommended.) State for the subaccount (full capitalized state name or capitalized 2 + letter abbreviation.)</li> + <li><strong>account_rsvp_zip_code</strong> (<em>string</em>) – Optional (recommended.) Zipcode or postal code for the subaccount.</li> + <li><strong>account_status</strong> (<em>string</em>) – Optional. This sets the status of the subaccount; must be ‘active’ or ‘trial’. HQ parent accounts in + ‘trial’ status that attempt to create ‘active’ subaccounts will have those subaccounts created as ‘trial’.</li> + <li><strong>account_timezone</strong> (<em>string</em>) – Optional (recommended.) Time zone information for the subaccount formatted in the + <a href="https://en.wikipedia.org/wiki/List_of_tz_database_time_zones">tz database name</a> standard.</li> + <li><strong>country_abbrev</strong> (<em>boolean string</em>) – Optional. ‘true’ or ‘false’ (used for personalization.)</li> + <li><strong>send_response_summary</strong> (<em>boolean</em>) – Optional. This setting sends relevant subaccount users a response summary email 24 hours after mailing has been sent.</li> + <li><strong>show_code_your_own</strong> (<em>boolean</em>) – Optional, This setting allows subaccount to use HTML to create mailings instead of the drag & drop editor.</li> + <li><strong>show_blank_template</strong> (<em>boolean</em>) – Optional. This setting makes a blank template available for customization.</li> + </ul> + </td> + </tr> + <tr class="field-even field"> + <th class="field-name">Returns :</th> + <td class="field-body"> + <p class="first last">A response with the newly created subaccount's ‘account_id’, the ‘account_name’ of the newly created subaccount, + and the ‘parent_account_id’ of the HQ parent. + </p> + </td> + </tr> + </tbody> + </table> + <p> + <div class="sample-response hide-response"> + <span style="font-weight:bold;">Sample Response</span> + <a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> + <pre class="response"> +<b>POST /100/enterprise/subaccount</b> +{ + "account_name": "Test Account Name", + "account_id": 101, + "parent_account_id": 100, +} + </pre> + </div> + </p> + </dd> + </dl> + </div> + </div> + </div> + </div> + <div class="sphinxsidebar"> + <div class="sphinxsidebarwrapper"><h3>Related Topics</h3> + <ul> + <li><a href="../../index.html">Documentation overview</a><ul> + <li>Previous: <a href="../../index.html" title="previous chapter">Emma API</a></li> + <li>Next: <a href="automation.html" title="next chapter">Automation</a></li> + </ul></li> + </ul> + <div id="searchbox" style="display: none"> + <h3>Quick search</h3> + <form class="search" action="../../search.html" method="get"> + <input type="text" name="q" /> + <input type="submit" value="Go" /> + <input type="hidden" name="check_keywords" value="yes" /> + <input type="hidden" name="area" value="default" /> + </form> + <p class="searchtip" style="font-size: 90%"> + Enter search terms or a module, class or function name. + </p> + </div> + <script type="text/javascript">$('#searchbox').show(0);</script> + <div id="emma-links"> + <h3>Emma Links</h3> + <ul> + <li><a href="https://myemma.com" title="Visit Emma's homepage" target="_blank">Emma Home</a></li> + + <li><a href="https://myemma.com/blog" title="Visit the Emma Blog" target="_blank">Emma Blog</a></li> + <li><a href="https://myemma.com/help" title="Visit Emma's help guide" target="_blank">Emma Help</a></li> + </ul> + </div> + + <div id="inquiry"> + <h3>Interested in Emma?</h3> + <p>Emma's email marketing makes communicating simple and stylish. <a href="https://myemma.com/get-started/inquire" title="Get started today.">Get started today</a>.</p> + </div> + </div> + </div> + <div class="clearer"></div> +</div> +<div class="footer"> + © Copyright 2003-<script language="JavaScript" type="text/javascript"> + now = new Date + theYear=now.getYear() + if (theYear < 1900) + theYear=theYear+1900 + document.write(theYear) +</script>, Campaign Monitor +</div> +</body> +</html> diff --git a/api/external/automation.html b/api/external/automation.html index e50c7fb..5e88d61 100644 --- a/api/external/automation.html +++ b/api/external/automation.html @@ -247,7 +247,7 @@ <h1>Automation<a class="headerlink" href="#fields" title="Permalink to this head <div class="sphinxsidebarwrapper"><h3>Related Topics</h3> <ul> <li><a href="../../index.html">Documentation overview</a><ul> - <li>Previous: <a href="../../index.html" title="previous chapter">Emma API</a></li> + <li>Previous: <a href="accounts.html" title="previous chapter">Accounts</a></li> <li>Next: <a href="exports.html" title="next chapter">Exports</a></li> </ul></li> </ul> diff --git a/index.html b/index.html index aefa71c..b4fd371 100644 --- a/index.html +++ b/index.html @@ -260,6 +260,7 @@ <h2>API calls by category<a class="headerlink" href="#api-calls-by-category" tit </p> <div class="toctree-wrapper compound"> <ul> +<li class="toctree-l1"><a class="reference internal" href="api/external/accounts.html">Accounts</a></li> <li class="toctree-l1"><a class="reference internal" href="api/external/automation.html">Automation</a></li> <li class="toctree-l1"><a class="reference internal" href="api/external/exports.html">Exports</a></li> <li class="toctree-l1"><a class="reference internal" href="api/external/fields.html">Fields</a></li> From 5ad95a6369831f66830ca594f20ed04a314390f8 Mon Sep 17 00:00:00 2001 From: nathanwritescode <ntalley@campaignmonitor.com> Date: Thu, 15 Jul 2021 10:26:36 -0500 Subject: [PATCH 183/219] remove from index, leave automation in it's current state --- api/external/automation.html | 2 +- index.html | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/api/external/automation.html b/api/external/automation.html index 5e88d61..e50c7fb 100644 --- a/api/external/automation.html +++ b/api/external/automation.html @@ -247,7 +247,7 @@ <h1>Automation<a class="headerlink" href="#fields" title="Permalink to this head <div class="sphinxsidebarwrapper"><h3>Related Topics</h3> <ul> <li><a href="../../index.html">Documentation overview</a><ul> - <li>Previous: <a href="accounts.html" title="previous chapter">Accounts</a></li> + <li>Previous: <a href="../../index.html" title="previous chapter">Emma API</a></li> <li>Next: <a href="exports.html" title="next chapter">Exports</a></li> </ul></li> </ul> diff --git a/index.html b/index.html index b4fd371..aefa71c 100644 --- a/index.html +++ b/index.html @@ -260,7 +260,6 @@ <h2>API calls by category<a class="headerlink" href="#api-calls-by-category" tit </p> <div class="toctree-wrapper compound"> <ul> -<li class="toctree-l1"><a class="reference internal" href="api/external/accounts.html">Accounts</a></li> <li class="toctree-l1"><a class="reference internal" href="api/external/automation.html">Automation</a></li> <li class="toctree-l1"><a class="reference internal" href="api/external/exports.html">Exports</a></li> <li class="toctree-l1"><a class="reference internal" href="api/external/fields.html">Fields</a></li> From 953cae14cbe5cea38905ce017fdcdfb36582ad53 Mon Sep 17 00:00:00 2001 From: nathanwritescode <ntalley@campaignmonitor.com> Date: Wed, 21 Jul 2021 10:02:26 -0500 Subject: [PATCH 184/219] add documentation for retiring a subaccount --- api/external/accounts.html | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/api/external/accounts.html b/api/external/accounts.html index a17b62d..c9e5907 100644 --- a/api/external/accounts.html +++ b/api/external/accounts.html @@ -165,6 +165,36 @@ <h1>Accounts<a class="headerlink" href="#fields" title="Permalink to this headli </p> </dd> </dl> + <dl class="delete"> + <dt id="delete--#account_id-fields-#subaccount_id"> + <tt class="descname">DELETE </tt><tt class="descname">/#parent_account_id/enterprise/subaccount/#subaccount_id</tt><a class="headerlink" href="#delete--#account_id-fields-#subaccount_id" title="Permalink to this definition">¶</a></dt> + <dd><p>Retires a subaccount.</p> + <p>Be advised that using this endpoint will remove the subaccount from the HQ account, and <b>all of the data associated with the subaccount will be purged completely from our system and will be unretrievable after 30 days.</b> If you accidentally retire a subaccount, you will need to reach out to our Support team for assistance, as the subaccount cannot be re-instituted through the API.</p> + <table class="docutils field-list" frame="void" rules="none"> + <col class="field-name" /> + <col class="field-body" /> + <tbody valign="top"> + <tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">A response with the subaccount's ‘account_name’ and the ‘status’ of ‘retired’.</td> + </tr> + <tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the subaccount does not exist.</td> + </tr> + </tbody> + </table> + <p> + <div class="sample-response hide-response"> + <span style="font-weight:bold;">Sample Response</span> + <a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> + <pre class="response"> +<b>DELETE /100/enterprise/subaccount/101</b> +{ + "account_name": "Test Account Name", + "status": "retired", +} + </pre> + </div> + </p> + </dd></dl> + </div> </div> </div> From f619a8013ea45771cdfebd5496be35bb3c05585a Mon Sep 17 00:00:00 2001 From: nathanwritescode <ntalley@campaignmonitor.com> Date: Mon, 26 Jul 2021 14:26:39 -0500 Subject: [PATCH 185/219] add documentation for listing subaccounts --- api/external/accounts.html | 45 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) diff --git a/api/external/accounts.html b/api/external/accounts.html index c9e5907..3b9b491 100644 --- a/api/external/accounts.html +++ b/api/external/accounts.html @@ -189,6 +189,51 @@ <h1>Accounts<a class="headerlink" href="#fields" title="Permalink to this headli { "account_name": "Test Account Name", "status": "retired", +} + </pre> + </div> + </p> + </dd></dl> + <dl class="get"> + <dt id="get--#account_id"> + <tt class="descname">GET</tt><tt class="descname">/#parent_account_id/enterprise/subaccounts</tt><a class="headerlink" href="#get--#account_id" title="Permalink to this definition">¶</a></dt> + <dd><p>Gets a list of subaccounts.</p> + <p>This endpoint provides a list of subaccounts that the requesting user has access to. Calling this endpoint with no query parameters will return subaccounts in ‘active’, ‘trial’, ‘pending_retirement’, and ‘retired’ status. This endpoint is paginated, so if you have more than 500 subaccounts, you'll need to make multiple requests using the pagination params.</p> + <table class="docutils field-list" frame="void" rules="none"> + <col class="field-name" /> + <col class="field-body" /> + <tbody valign="top"> + <tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> + <li><strong>statuses</strong> (<em>comma separated string</em>) – Optional. Allows filtering based on subaccount status. Valid statuses are: ‘active’, ‘trial’, ‘pending_retirement’, and ‘retired’.<li> + <li><strong>searchterm</strong> (<em>string</em>) – Optional. Allows searching by the ‘account_name’ value.</li> + </ul> + </td> + </tr> + <tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">A response with a list of subaccounts including their ‘account_name’, ‘account_id’, and their ‘account_status’.</td> + </tr> + <tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the parent account does not exist.</td> + </tr> + </tbody> + </table> + <p> + <div class="sample-response hide-response"> + <span style="font-weight:bold;">Sample Response</span> + <a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> + <pre class="response"> +<b>GET /100/enterprise/subaccounts?start=0&end=2</b> +{ + "subaccounts": [ + { + "account_id": 101, + "account_name": "Test Account Name", + "account_status": "active" + }, + { + "account_id": 102, + "account_name": "Test Account Name 2", + "account_status": "retired" + } + ] } </pre> </div> From a83ee6ad9a71e58842c5d4bb6d3c7096a149aaaf Mon Sep 17 00:00:00 2001 From: nathanwritescode <ntalley@campaignmonitor.com> Date: Mon, 26 Jul 2021 14:35:11 -0500 Subject: [PATCH 186/219] query param is status not statuses --- api/external/accounts.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/external/accounts.html b/api/external/accounts.html index 3b9b491..a6d4432 100644 --- a/api/external/accounts.html +++ b/api/external/accounts.html @@ -204,7 +204,7 @@ <h1>Accounts<a class="headerlink" href="#fields" title="Permalink to this headli <col class="field-body" /> <tbody valign="top"> <tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> - <li><strong>statuses</strong> (<em>comma separated string</em>) – Optional. Allows filtering based on subaccount status. Valid statuses are: ‘active’, ‘trial’, ‘pending_retirement’, and ‘retired’.<li> + <li><strong>status</strong> (<em>comma separated string</em>) – Optional. Allows filtering based on subaccount status. Valid statuses are: ‘active’, ‘trial’, ‘pending_retirement’, and ‘retired’.<li> <li><strong>searchterm</strong> (<em>string</em>) – Optional. Allows searching by the ‘account_name’ value.</li> </ul> </td> From 7db4811a8d8384f4efd820d3601e655767d9c8e6 Mon Sep 17 00:00:00 2001 From: nathanwritescode <ntalley@campaignmonitor.com> Date: Wed, 28 Jul 2021 15:40:03 -0500 Subject: [PATCH 187/219] add invite user endpoint documentation, change accounts description --- api/external/accounts.html | 2 +- api/external/users.html | 198 +++++++++++++++++++++++++++++++++++++ 2 files changed, 199 insertions(+), 1 deletion(-) create mode 100644 api/external/users.html diff --git a/api/external/accounts.html b/api/external/accounts.html index a6d4432..7908eb7 100644 --- a/api/external/accounts.html +++ b/api/external/accounts.html @@ -102,7 +102,7 @@ <h3>Navigation</h3> <div class="section" id="fields"> <h1>Accounts<a class="headerlink" href="#fields" title="Permalink to this headline">¶</a></h1> <p> - This endpoint allows you to create new subaccounts under an HQ parent account. + These endpoints allow you to manage subaccounts under an HQ parent account. </p> <dl class="post"> <dt id="post--#account_id-fields"> diff --git a/api/external/users.html b/api/external/users.html new file mode 100644 index 0000000..66d161a --- /dev/null +++ b/api/external/users.html @@ -0,0 +1,198 @@ + +<!doctype html> + + +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> + + <title>Emma API Documentation | Emma, Inc.</title> + + + <link rel="stylesheet" href="../../_static/emma.css" type="text/css" /> + <link rel="stylesheet" href="../../_static/pygments.css" type="text/css" /> + + <script type="text/javascript"> + var DOCUMENTATION_OPTIONS = { + URL_ROOT: '../../', + VERSION: '0.1', + COLLAPSE_INDEX: false, + FILE_SUFFIX: '.html', + HAS_SOURCE: true + }; + </script> + + <script src="https://code.jquery.com/jquery-1.4.min.js"></script> + <script>window.jQuery || document.write('<script src="_static/jquery.js"><\/script>')</script> + + <link href="https://fonts.googleapis.com/css?family=Roboto:400,700" rel="stylesheet"> + <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="Pagination" href="../../pagination.html" /> + <link rel="prev" title="Subscriptions" href="subscriptions.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"> + <link rel="apple-touch-icon-precomposed" href="https://myemma.com/static/global/favicons/apple-iphone.png" /> + <link rel="apple-touch-icon-precomposed" sizes="72x72" href="https://myemma.com/static/global/favicons/apple-ipad.png" /> + <link rel="apple-touch-icon-precomposed" sizes="114x114" href="https://myemma.com/static/global/favicons/apple-iphone-2x.png" /> + <link rel="apple-touch-icon-precomposed" sizes="144x144" href="https://myemma.com/static/global/favicons/apple-ipad-2x.png" /> + + <style type="text/css"> + .resp-trigger, .resp-trigger:hover {font-size:10pt;text-decoration:none;} + div.sample-response.hide-response pre.response {display: none;} + div.sample-response .tshow, + div.sample-response.hide-response .thide {display: none;} + div.sample-response .thide, + div.sample-response.hide-response .tshow {display: inline;} + </style> + <script> + $().ready(function() { + $("a.resp-trigger").click(function(e) { + e.preventDefault(); + $(this).parents("div.sample-response").toggleClass("hide-response"); + }); + }); + </script> + + <script type="text/javascript"> + + var _gaq = _gaq || []; + _gaq.push(['_setAccount', 'UA-512410-18']); + _gaq.push(['_trackPageview']); + + (function() { + var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; + ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; + var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); + })(); + + </script> + +</head> +<body> +<header role="banner"> + <a href="/index.html"> + <h1>Emma API Documentation</h1> + </a> +</header> +<div class="related"> + <h3>Navigation</h3> + <ul> + <li class="right" style="margin-right: 10px"> + <a href="../../genindex.html" title="General Index" + accesskey="I">index</a></li> + <li class="right" > + <a href="../../http-routingtable.html" title="HTTP Routing Table" + >routing table</a> |</li> + <li class="right" > + <a href="pagination.html" title="Pagination" + accesskey="N">next</a> |</li> + <li class="right" > + <a href="subscriptions.html" title="Subscriptions" + accesskey="P">previous</a> |</li> + <li><a href="../../index.html">audience 0.1 documentation</a> »</li> + </ul> +</div> + +<div class="document"> + <div class="documentwrapper"> + <div class="bodywrapper"> + <div class="body"> + + <div class="section" id="users"> + <h1>Users<a class="headerlink" href="#users" title="Permalink to this headline">¶</a></h1> + <p>These endpoints allow for the invitation and management of users to an HQ subaccount.</p> + <dl class="post"> + <dt id="post--#subaccount_id-users"> + <tt class="descname">POST </tt><tt class="descname">/#subccount_id/invitation/team</tt><a class="headerlink" href="#post--#subaccount_id-users" title="Permalink to this definition">¶</a></dt> + <dd><p>Invite a new user to a subaccount.</p> + <p>Users can only be invited to a single subaccount via the public api. To assign multiple subaccounts to a newly invited user, please do so via the web application.</p> + <p>Additionally, adding further permissions to a newly invited user must also be completed via the web application; this endpoint will assign role type only.</p> + <table class="docutils field-list" frame="void" rules="none"> + <col class="field-name" /> + <col class="field-body" /> + <tbody valign="top"> + <tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first last simple"> + <li><strong>invitee_email_address</strong> (<em>string</em>) – Required. The email address of the user you'd like to invite.</li> + <li><strong>role</strong> (<em>string</em>) – Required. The role assigned to the newly created user. The invited user's role must be below your own assigned role. + Valid values include: ‘response_only’, ‘author’, ‘editor‘, ‘full’, ‘owner’ (defined as ‘administrator’ in app), and ‘manager’. + Role hierarchy is as follows: ‘parent’ > ‘manager’ > ‘owner’ (‘administrator’ in app) > ‘full’ > ‘editor’ > ‘author’ > ‘response_only’ + </li> + </ul> + </td> + </tr> + <tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http201</span></tt> along with a response message confirming the invite was created.</td> + </tr> + <tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http400</span></tt> if the role provided is invalid.</td> + <tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http401</span></tt> if the requesting user is unable to create a user of that role type.</td> + </tr> + </tbody> + </table> + <p> + <div class="sample-response hide-response"> + <span style="font-weight:bold;">Sample Response</span> + <a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> + <pre class="response"> +<b>POST /100/invitation/team</b> +{ + "User invitation created" +} +</pre> + </div> + </dd> + </dl> + </div> + </div> + </div> + </div> + <div class="sphinxsidebar"> + <div class="sphinxsidebarwrapper"><h3>Related Topics</h3> + <ul> + <li><a href="../../index.html">Documentation overview</a><ul> + <li>Previous: <a href="triggers.html" title="previous chapter">Triggers</a></li> + <li>Next: <a href="webhooks.html" title="next chapter">Webhooks</a></li> + </ul></li> + </ul> + <div id="searchbox" style="display: none"> + <h3>Quick search</h3> + <form class="search" action="../../search.html" method="get"> + <input type="text" name="q" /> + <input type="submit" value="Go" /> + <input type="hidden" name="check_keywords" value="yes" /> + <input type="hidden" name="area" value="default" /> + </form> + <p class="searchtip" style="font-size: 90%"> + Enter search terms or a module, class or function name. + </p> + </div> + <script type="text/javascript">$('#searchbox').show(0);</script> + <div id="emma-links"> + <h3>Emma Links</h3> + <ul> + <li><a href="https://myemma.com" title="Visit Emma's homepage" target="_blank">Emma Home</a></li> + + <li><a href="https://myemma.com/blog" title="Visit the Emma Blog" target="_blank">Emma Blog</a></li> + <li><a href="https://myemma.com/help" title="Visit Emma's help guide" target="_blank">Emma Help</a></li> + </ul> + </div> + + <div id="inquiry"> + <h3>Interested in Emma?</h3> + <p>Emma's email marketing makes communicating simple and stylish. <a href="https://myemma.com/get-started/inquire" title="Get started today.">Get started today</a>.</p> + </div> + </div> + </div> + <div class="clearer"></div> +</div> +<div class="footer"> + © Copyright 2003-<script language="JavaScript" type="text/javascript"> + now = new Date + theYear=now.getYear() + if (theYear < 1900) + theYear=theYear+1900 + document.write(theYear) +</script>, Campaign Monitor +</div> +</body> +</html> From 37f9d16176c5954f75d31879bf4b12ab8f10d81c Mon Sep 17 00:00:00 2001 From: nathanwritescode <ntalley@campaignmonitor.com> Date: Wed, 28 Jul 2021 15:46:37 -0500 Subject: [PATCH 188/219] remove empty line at top of file, fix links to next page --- api/external/users.html | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/api/external/users.html b/api/external/users.html index 66d161a..7f80ae2 100644 --- a/api/external/users.html +++ b/api/external/users.html @@ -1,4 +1,3 @@ - <!doctype html> @@ -29,7 +28,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="Pagination" href="../../pagination.html" /> + <link rel="next" title="Webhooks" href="../../webhooks.html" /> <link rel="prev" title="Subscriptions" href="subscriptions.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"> @@ -86,7 +85,7 @@ <h3>Navigation</h3> <a href="../../http-routingtable.html" title="HTTP Routing Table" >routing table</a> |</li> <li class="right" > - <a href="pagination.html" title="Pagination" + <a href="webhooks.html" title="Webhooks" accesskey="N">next</a> |</li> <li class="right" > <a href="subscriptions.html" title="Subscriptions" From d98e9b9ce3acee7b5aa2731f82cecd069c73f216 Mon Sep 17 00:00:00 2001 From: nathanwritescode <ntalley@campaignmonitor.com> Date: Mon, 2 Aug 2021 11:07:56 -0500 Subject: [PATCH 189/219] correct user invite response shape to final version, remove returns section --- api/external/users.html | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/api/external/users.html b/api/external/users.html index 7f80ae2..439be56 100644 --- a/api/external/users.html +++ b/api/external/users.html @@ -121,8 +121,6 @@ <h1>Users<a class="headerlink" href="#users" title="Permalink to this headline"> </ul> </td> </tr> - <tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http201</span></tt> along with a response message confirming the invite was created.</td> - </tr> <tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http400</span></tt> if the role provided is invalid.</td> <tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http401</span></tt> if the requesting user is unable to create a user of that role type.</td> </tr> @@ -135,7 +133,7 @@ <h1>Users<a class="headerlink" href="#users" title="Permalink to this headline"> <pre class="response"> <b>POST /100/invitation/team</b> { - "User invitation created" + "message": true } </pre> </div> From 70a083ec3794f60db44647feeb71e04f0e15ebe3 Mon Sep 17 00:00:00 2001 From: nathanwritescode <ntalley@campaignmonitor.com> Date: Fri, 6 Aug 2021 11:03:31 -0500 Subject: [PATCH 190/219] add update_user_subaccounts endpoint, link Accounts and Users pages up --- api/external/accounts.html | 38 ++++++++++++++++++++++++++++++++- api/external/automation.html | 6 +++--- api/external/subscriptions.html | 14 ++++++------ api/external/users.html | 2 +- api/external/webhooks.html | 8 +++---- index.html | 3 +++ 6 files changed, 55 insertions(+), 16 deletions(-) diff --git a/api/external/accounts.html b/api/external/accounts.html index 7908eb7..712b3a1 100644 --- a/api/external/accounts.html +++ b/api/external/accounts.html @@ -239,7 +239,43 @@ <h1>Accounts<a class="headerlink" href="#fields" title="Permalink to this headli </div> </p> </dd></dl> - + <dl class="put"> + <dt id="put--#account_id"> + <tt class="descname">PUT</tt><tt class="descname">/#parent_account_id/enterprise/#user_id/subaccounts</tt><a class="headerlink" href="#put--#account_id" title="Permalink to this definition">¶</a></dt> + <dd><p>Assign subaccounts to a user.</p> + <p>This endpoint allows owners, and managers with the ‘manage_users’ permission, to assign subaccounts to a specific ‘user_id’. + The list of subaccounts provided in the call will overwrite the current list of subaccounts the user has access to, so you’ll need to ensure you’ve included every subaccount ID applicable to the user you are editing. + </p> + <table class="docutils field-list" frame="void" rules="none"> + <col class="field-name" /> + <col class="field-body" /> + <tbody valign="top"> + <tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> + <li><strong>accounts</strong> (<em>list of integers</em>) – Required. The list of subaccounts to assign to the user.</li> + </ul> + </td> + </tr> + <tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http400</span></tt> if a non parent account is used in the route.</td> + </tr> + <tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http400</span></tt> if the requesting user does not have access to all accounts provided in the request body.</td> + </tr> + <tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http401</span></tt> if the requesting user is trying to edit a user with an equal or higher role.</td> + </tr> + </tbody> + </table> + <p> + <div class="sample-response hide-response"> + <span style="font-weight:bold;">Sample Response</span> + <a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> + <pre class="response"> +<b>GET /100/enterprise/name@myemma.com/subaccounts</b> +{ + "message": true +} + </pre> + </div> + </p> + </dd></dl> </div> </div> </div> diff --git a/api/external/automation.html b/api/external/automation.html index e50c7fb..9274cad 100644 --- a/api/external/automation.html +++ b/api/external/automation.html @@ -29,7 +29,7 @@ <script type="text/javascript" src="../../_static/doctools.js"></script> <link rel="top" title="audience 0.1 documentation" href="../../index.html" /> <link rel="next" title="Exports" href="exports.html" /> - <link rel="prev" title="Emma API" href="../../index.html" /> + <link rel="prev" title="Accounts" href="accounts.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"> <link rel="apple-touch-icon-precomposed" href="https://myemma.com/static/global/favicons/apple-iphone.png" /> @@ -88,7 +88,7 @@ <h3>Navigation</h3> <a href="exports.html" title="Exports" accesskey="N">next</a> |</li> <li class="right" > - <a href="../../index.html" title="Emma API" + <a href="accounts.html" title="Accounts" accesskey="P">previous</a> |</li> <li><a href="../../index.html">audience 0.1 documentation</a> »</li> </ul> @@ -247,7 +247,7 @@ <h1>Automation<a class="headerlink" href="#fields" title="Permalink to this head <div class="sphinxsidebarwrapper"><h3>Related Topics</h3> <ul> <li><a href="../../index.html">Documentation overview</a><ul> - <li>Previous: <a href="../../index.html" title="previous chapter">Emma API</a></li> + <li>Previous: <a href="accounts.html" title="previous chapter">Accounts</a></li> <li>Next: <a href="exports.html" title="next chapter">Exports</a></li> </ul></li> </ul> diff --git a/api/external/subscriptions.html b/api/external/subscriptions.html index 5163b4b..9a01034 100644 --- a/api/external/subscriptions.html +++ b/api/external/subscriptions.html @@ -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="Webhooks" href="webhooks.html" /> + <link rel="next" title="Users" href="users.html" /> <link rel="prev" title="Signup Forms" href="signup_forms.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"> @@ -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="webhooks.html" title="Webhooks" + <a href="users.html" title="Users" accesskey="N">next</a> |</li> <li class="right" > <a href="signup_forms.html" title="Signup Forms" @@ -312,7 +312,7 @@ <h1>Subscriptions<a class="headerlink" href="#subscriptions" title="Permalink to "name": "Cat Fanatics", "description": "Cat-only newsletter subscribers" } - + { "account_id": 100, "created_at": "Wed, 25 Sep 2019 21:39:34 GMT", @@ -368,7 +368,7 @@ <h1>Subscriptions<a class="headerlink" href="#subscriptions" title="Permalink to { "import_id": 1 } - + true </pre> </div> @@ -405,7 +405,7 @@ <h1>Subscriptions<a class="headerlink" href="#subscriptions" title="Permalink to "name": "Cat Fanatics Only", "description": "A newsletter for those only interested in cat products" } - + { "account_id": 100, "created_at": "Wed, 25 Sep 2019 21:39:34 GMT", @@ -443,7 +443,7 @@ <h1>Subscriptions<a class="headerlink" href="#subscriptions" title="Permalink to <a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> <pre class="response"> <b>DELETE /100/subscriptions/200</b> - + { "account_id": 100, "created_at": "Wed, 25 Sep 2019 21:39:34 GMT", @@ -471,7 +471,7 @@ <h1>Subscriptions<a class="headerlink" href="#subscriptions" title="Permalink to <ul> <li><a href="../../index.html">Documentation overview</a><ul> <li>Previous: <a href="signup_forms.html" title="previous chapter">Signup Forms</a></li> - <li>Next: <a href="webhooks.html" title="next chapter">Webhooks</a></li> + <li>Next: <a href="users.html" title="next chapter">Users</a></li> </ul></li> </ul> <div id="searchbox" style="display: none"> diff --git a/api/external/users.html b/api/external/users.html index 439be56..2fca9d3 100644 --- a/api/external/users.html +++ b/api/external/users.html @@ -147,7 +147,7 @@ <h1>Users<a class="headerlink" href="#users" title="Permalink to this headline"> <div class="sphinxsidebarwrapper"><h3>Related Topics</h3> <ul> <li><a href="../../index.html">Documentation overview</a><ul> - <li>Previous: <a href="triggers.html" title="previous chapter">Triggers</a></li> + <li>Previous: <a href="subscriptions.html" title="previous chapter">Subscriptions</a></li> <li>Next: <a href="webhooks.html" title="next chapter">Webhooks</a></li> </ul></li> </ul> diff --git a/api/external/webhooks.html b/api/external/webhooks.html index cc574ab..360125d 100644 --- a/api/external/webhooks.html +++ b/api/external/webhooks.html @@ -30,7 +30,7 @@ <script type="text/javascript" src="../../_static/doctools.js"></script> <link rel="top" title="audience 0.1 documentation" href="../../index.html" /> <link rel="next" title="Pagination" href="../../pagination.html" /> - <link rel="prev" title="Subscriptions" href="subscriptions.html" /> + <link rel="prev" title="Users" href="users.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"> <link rel="apple-touch-icon-precomposed" href="https://myemma.com/static/global/favicons/apple-iphone.png" /> @@ -89,7 +89,7 @@ <h3>Navigation</h3> <a href="pagination.html" title="Pagination" accesskey="N">next</a> |</li> <li class="right" > - <a href="subscriptions.html" title="Subscriptions" + <a href="users.html" title="Users" accesskey="P">previous</a> |</li> <li><a href="../../index.html">audience 0.1 documentation</a> »</li> </ul> @@ -448,7 +448,7 @@ <h1>Webhooks<a class="headerlink" href="#webhooks" title="Permalink to this head <div class="sphinxsidebarwrapper"><h3>Related Topics</h3> <ul> <li><a href="../../index.html">Documentation overview</a><ul> - <li>Previous: <a href="subscriptions.html" title="previous chapter">Subscriptions</a></li> + <li>Previous: <a href="users.html" title="previous chapter">Users</a></li> <li>Next: <a href="../../pagination.html" title="next chapter">Pagination</a></li> </ul></li> </ul> @@ -493,4 +493,4 @@ <h3>Interested in Emma?</h3> </script>, Campaign Monitor </div> </body> -</html> \ No newline at end of file +</html> diff --git a/index.html b/index.html index aefa71c..c87b91b 100644 --- a/index.html +++ b/index.html @@ -260,6 +260,7 @@ <h2>API calls by category<a class="headerlink" href="#api-calls-by-category" tit </p> <div class="toctree-wrapper compound"> <ul> +<li class="toctree-l1"><a class="reference internal" href="api/external/accounts.html">Accounts</a></li> <li class="toctree-l1"><a class="reference internal" href="api/external/automation.html">Automation</a></li> <li class="toctree-l1"><a class="reference internal" href="api/external/exports.html">Exports</a></li> <li class="toctree-l1"><a class="reference internal" href="api/external/fields.html">Fields</a></li> @@ -272,6 +273,7 @@ <h2>API calls by category<a class="headerlink" href="#api-calls-by-category" tit <li class="toctree-l1"><a class="reference internal" href="api/external/signup_forms.html">Signup Forms</a></li> <li class="toctree-l1"><a class="reference internal" href="api/external/subscriptions.html">Subscriptions</a></li> <!-- <li class="toctree-l1"><a class="reference internal" href="api/external/triggers.html">Triggers</a></li> --> +<li class="toctree-l1"><a class="reference internal" href="api/external/users.html">Users</a></li> <li class="toctree-l1"><a class="reference internal" href="api/external/webhooks.html">Webhooks</a></li> </ul> </div> @@ -370,6 +372,7 @@ <h3>Emma Links</h3> <h3>Interested in Emma?</h3> <p>Emma's email marketing makes communicating simple and stylish. <a href="https://myemma.com/get-started/inquire" title="Get started today.">Get started today</a>.</p> </div> + </ul> </div> </div> <div class="clearer"></div> From c1c923057019afab2a5ddcd21cd0bdc58f635b09 Mon Sep 17 00:00:00 2001 From: nathanwritescode <ntalley@campaignmonitor.com> Date: Tue, 10 Aug 2021 11:31:02 -0500 Subject: [PATCH 191/219] add list users endpoint --- api/external/users.html | 69 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 69 insertions(+) diff --git a/api/external/users.html b/api/external/users.html index 2fca9d3..3d8550f 100644 --- a/api/external/users.html +++ b/api/external/users.html @@ -139,6 +139,75 @@ <h1>Users<a class="headerlink" href="#users" title="Permalink to this headline"> </div> </dd> </dl> + <dl class="get"> + <dt id="get--#account_id"> + <tt class="descname">GET</tt><tt class="descname">/#account_id/account/users</tt><a class="headerlink" href="#get--#account_id" title="Permalink to this definition">¶</a></dt> + <dd><p>Lists the users of an account.</p> + <p>This endpoint allows owners and managers with the ‘manage_users’ permission to list the users for either the parent account, the parent account and all subs, or a particular subaccount.The list returned will include users that have accepted their invitation, and users that have not.</p> + <p>Additionally, there are params to include subaccount users, to filter via ‘account_id’, and to search for a specific user. This endpoint is paginated and will need to be called with pagination params if the response includes more than 500 users.</p> + <table class="docutils field-list" frame="void" rules="none"> + <col class="field-name" /> + <col class="field-body" /> + <tbody valign="top"> + <tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> + <li><strong>include_sub_users</strong> (<em>boolean</em>) – Optional. Calling the endpoint using the ‘parent_account_id’ and this param set to ‘true’ will return the users associated with the parent account along with any users associated with any of the parent's subaccounts as well.<li> + <li><strong>searchterm</strong> (<em>string</em>) – Optional. Allows searching by the ‘user_id’, ‘user_name_first’, and ‘user_name_last’ values.</li> + <li><strong>filter_accounts</strong> (<em>comma separated string</em>) – Optional. Allows filtering of the results by returning users who have access to one of the passed accounts.</li> + </ul> + </td> + </tr> + <tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">A response with a list of users including the accounts they have access to, the permissions they have, their role, and other user related data.</td> + </tr> + <tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the parent account or requesting user does not exist.</td> + <tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http401</span></tt> if the requesting user does not have access to the account or the ‘manage_users’ permission.</td> + </tr> + </tbody> + </table> + <p> + <div class="sample-response hide-response"> + <span style="font-weight:bold;">Sample Response</span> + <a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> + <pre class="response"> +<b>GET /100/account/users</b> +{ + "users": [ + { + "accounts": [ + { + "account_id": 100, + "account_name": "Test Parent Account" + } + ], + "create_ts": "Jun 21, 2012", + "email": "emmaHQowner@myemma.com", + "last_login_attempt": "Jul 22, 2021 02:47 PM", + "role": "Parent", + "user_group_list": [ + "account_create", + "assets_access", + "billing_access", + "emma_account_default", + "emma_agency_default", + "emma_audience_default", + "emma_campaigns_default", + "emma_response_default", + "exporting_access", + "manage_api_key", + "manage_sso", + "manage_team", + "public", + "purging_access" + ], + "user_id": "emmaHQowner@myemma.com", + "user_name_first": “Test”, + "user_name_last": “Owner” + } + ] +} + </pre> + </div> + </p> + </dd></dl> </div> </div> </div> From 67a0e0108d618f43c9bd4f045527a161186f5c75 Mon Sep 17 00:00:00 2001 From: Megan Morris <mmorris@myemma.com> Date: Wed, 29 Sep 2021 16:52:33 -0400 Subject: [PATCH 192/219] fixing link for download endpoint (#44) --- api/external/response_exports.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/external/response_exports.html b/api/external/response_exports.html index 889d1ec..a5c5bbb 100644 --- a/api/external/response_exports.html +++ b/api/external/response_exports.html @@ -251,7 +251,7 @@ <h1>Response Exports<a class="headerlink" href="#response_exports" title="Permal <dl class="get"> <dt id="get--#account_id-exports-response-#export_id-download"> -<tt class="descname">GET </tt><tt class="descname">/#account_id/exports/response/#export_id/download</tt><a class="headerlink" href="#get--#account_id-exports-response-#export_id" title="Permalink to this definition">¶</a></dt> +<tt class="descname">GET </tt><tt class="descname">/#account_id/exports/response/#export_id/download</tt><a class="headerlink" href="#get--#account_id-exports-response-#export_id-download" title="Permalink to this definition">¶</a></dt> <dd><p>Download a file stream for the requested response export.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> From 7db4c1b50bfc7b4d59a52be476688c473b2f994a Mon Sep 17 00:00:00 2001 From: Nathan Talley <ntalley@campaignmonitor.com> Date: Wed, 13 Apr 2022 15:11:10 -0500 Subject: [PATCH 193/219] add updated route --- api/external/users.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/external/users.html b/api/external/users.html index 3d8550f..efdf15a 100644 --- a/api/external/users.html +++ b/api/external/users.html @@ -141,7 +141,7 @@ <h1>Users<a class="headerlink" href="#users" title="Permalink to this headline"> </dl> <dl class="get"> <dt id="get--#account_id"> - <tt class="descname">GET</tt><tt class="descname">/#account_id/account/users</tt><a class="headerlink" href="#get--#account_id" title="Permalink to this definition">¶</a></dt> + <tt class="descname">GET</tt><tt class="descname">/#account_id/accounts/users</tt><a class="headerlink" href="#get--#account_id" title="Permalink to this definition">¶</a></dt> <dd><p>Lists the users of an account.</p> <p>This endpoint allows owners and managers with the ‘manage_users’ permission to list the users for either the parent account, the parent account and all subs, or a particular subaccount.The list returned will include users that have accepted their invitation, and users that have not.</p> <p>Additionally, there are params to include subaccount users, to filter via ‘account_id’, and to search for a specific user. This endpoint is paginated and will need to be called with pagination params if the response includes more than 500 users.</p> From 2cfd7cf5f954feeadb308612c3ad3f916bb89120 Mon Sep 17 00:00:00 2001 From: epeatfield <peatfieldemma0@gmail.com> Date: Thu, 23 Mar 2023 15:03:31 -0500 Subject: [PATCH 194/219] member responses updated --- api/external/members.html | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/api/external/members.html b/api/external/members.html index dd5c976..2964028 100644 --- a/api/external/members.html +++ b/api/external/members.html @@ -156,6 +156,14 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli "favorite_food": "tacos" }, "member_id": 200, + "sms": { + "phone_number": "+11234567890", + "region_code": "US", + "transactional_status": "a", + "transactional_status_updated_at": "2023-02-14T21:27:20.723208+00:00", + "promotional_status": "o", + "promotional_status_updated_at": "2023-02-14T21:27:20.723208+00:00" + }, "last_modified_at": null, "member_status_id": "a", "plaintext_preferred": false, @@ -175,6 +183,7 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli "favorite_food": "toast" }, "member_id": 201, + "sms": null, "last_modified_at": null, "member_status_id": "o", "plaintext_preferred": false, @@ -207,6 +216,14 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli "favorite_food": "pizza" }, "member_id": 202, + "sms": { + "phone_number": "+11234567891", + "region_code": "US", + "transactional_status": "a", + "transactional_status_updated_at": "2023-02-14T21:27:20.723208+00:00", + "promotional_status": "o", + "promotional_status_updated_at": "2023-02-14T21:27:20.723208+00:00" + }, "last_modified_at": null, "member_status_id": "a", "plaintext_preferred": false, @@ -224,6 +241,7 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli }, "member_id": 203, + "sms": null, "last_modified_at": null, "member_status_id": "a", "plaintext_preferred": false, @@ -280,6 +298,14 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli "favorite_food": "toast" }, "member_id": 201, + "sms": { + "phone_number": "+11234567890", + "region_code": "US", + "transactional_status": "a", + "transactional_status_updated_at": "2023-02-14T21:27:20.723208+00:00", + "promotional_status": "o", + "promotional_status_updated_at": "2023-02-14T21:27:20.723208+00:00" + }, "last_modified_at": null, "member_status_id": "o", "plaintext_preferred": false, @@ -334,6 +360,7 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli "favorite_food": "pizza" }, "member_id": 202, + "sms": null, "last_modified_at": null, "member_status_id": "a", "plaintext_preferred": false, From b83d50af45fc08687118b942229d208edc5df197 Mon Sep 17 00:00:00 2001 From: epeatfield <peatfieldemma0@gmail.com> Date: Thu, 23 Mar 2023 16:09:30 -0500 Subject: [PATCH 195/219] adding phone number for adding or updating a member --- api/external/members.html | 30 +++++++++++++++++++++++++----- 1 file changed, 25 insertions(+), 5 deletions(-) diff --git a/api/external/members.html b/api/external/members.html index 2964028..4503d0b 100644 --- a/api/external/members.html +++ b/api/external/members.html @@ -449,7 +449,7 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli <col class="field-body" /> <tbody valign="top"> <tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first last simple"> -<li><strong>members</strong> (<em>array</em>) – An array of members to update A member is a dictionary of member emails and field values to import. +<li><strong>members</strong> (<em>array</em>) – An array of members to update A member is a dictionary of member emails, phone numbers, and field values to import. The only required field is “email”. All other fields are treated as the name of a member field.</li> <li><strong>automate_field_changes</strong> (<em>boolean</em>) – Accepts True or False. Optional. When set to True, updates made by this call will trigger field change workflows when appropriate. For more information on field change automation, visit our @@ -477,12 +477,24 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli { "members": [ { - "email": "michelle@myemma.com" + "email": "michelle@myemma.com", + "sms": { + "phone_number": "1234567891", + } }, { - "email": "nathan@myemma.com" + "email": "nathan@myemma.com", + "sms": { + "phone_number": "1234567890", + } } - ] + ], + "criteria": { + "sms": { + "transactional_status": "a", + "promotional_status": "a" + } + } } { @@ -510,6 +522,7 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli <tbody valign="top"> <tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> <li><strong>email</strong> (<em>string</em>) – Email address of member to add or update</li> +<li><strong>phone_number</strong> (<em>string</em>) – A phone number of the member to add or update.</li> <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> @@ -534,7 +547,10 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli "fields": { "first_name": "Benjamin" }, - "email": "benjamin@myemma.com" + "email": "benjamin@myemma.com", + "sms": { + "phone_number": "1234567890" + } } { @@ -712,6 +728,7 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli <tbody valign="top"> <tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> <li><strong>email</strong> (<em>string</em>) – A new email address for the member.</li> +<li><strong>phone_number</strong> (<em>string</em>) – A new phone number for the member.</li> <li><strong>status_to</strong> (<em>string</em>) – A new status for the member. Accepts one of ‘a’ (active), ‘e’ (error), ‘o’ (opt-out).</li> <li><strong>fields</strong> (<em>array</em>) – An array of fields with associated values for this @@ -741,6 +758,9 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli "last_name": "Jones" }, "email": "ella@myemma.com", + "sms": { + "phone_number": "1234567891" + }, "status_to": "a" } From c4e562fc40746f0c418577bad248851cc61754a5 Mon Sep 17 00:00:00 2001 From: epeatfield <peatfieldemma0@gmail.com> Date: Mon, 27 Mar 2023 16:11:13 -0500 Subject: [PATCH 196/219] Adding desciption for criteria --- api/external/members.html | 1 + 1 file changed, 1 insertion(+) diff --git a/api/external/members.html b/api/external/members.html index 4503d0b..389497e 100644 --- a/api/external/members.html +++ b/api/external/members.html @@ -460,6 +460,7 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli that the user uploaded.</li> <li><strong>add_only</strong> (<em>boolean</em>) – Optional. Only add new members, ignore existing members.</li> <li><strong>group_ids</strong> (<em>array of integers</em>) – Optional. Add imported members to this list of groups.</li> +<li><strong>criteria</strong> (<em>dictionary</em>) – Optional. Set the sms promotional/transactional statuses for imported members.</li> </ul> </td> </tr> From 94168304bb70d713431a81cf09071d72a869a3f1 Mon Sep 17 00:00:00 2001 From: epeatfield <peatfieldemma0@gmail.com> Date: Tue, 28 Mar 2023 12:50:46 -0500 Subject: [PATCH 197/219] update to sms --- api/external/members.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/external/members.html b/api/external/members.html index 389497e..f221ecc 100644 --- a/api/external/members.html +++ b/api/external/members.html @@ -449,7 +449,7 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli <col class="field-body" /> <tbody valign="top"> <tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first last simple"> -<li><strong>members</strong> (<em>array</em>) – An array of members to update A member is a dictionary of member emails, phone numbers, and field values to import. +<li><strong>members</strong> (<em>array</em>) – An array of members to update A member is a dictionary of member emails, SMS phone numbers, and field values to import. The only required field is “email”. All other fields are treated as the name of a member field.</li> <li><strong>automate_field_changes</strong> (<em>boolean</em>) – Accepts True or False. Optional. When set to True, updates made by this call will trigger field change workflows when appropriate. For more information on field change automation, visit our From 7d42ad56395be37099eed40f83ea0f6431296fe6 Mon Sep 17 00:00:00 2001 From: biggert <jbiggert@myemma.com> Date: Mon, 10 Jul 2023 14:55:47 -0500 Subject: [PATCH 198/219] Update plan names to latest offerings --- api/external/event_api.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/external/event_api.html b/api/external/event_api.html index 88d0c13..72c8f0f 100644 --- a/api/external/event_api.html +++ b/api/external/event_api.html @@ -102,7 +102,7 @@ <h3>Navigation</h3> <div class="section" id="event_api"> <h1>Emma Event API<a class="headerlink" href="#event_api" title="Permalink to this headline">¶</a></h1> - <h2>Access to the Event API is available only to Emma Plus, Premium and Enterprise customers.</h2> + <h2>Access to the Event API is available only to Emma Essentials, Emma for Teams and Emma Corporate customers.</h2> <p>The Emma Event API is used to automate and personalize emails that are triggered by audience activities in other platforms. While it is often used to power automated workflows triggered by activities like purchases and event registration and attendance, the Event API can receive events and data of any type from any service.</p> <p>You can post events to Emma using the endpoint below. Workflows that are triggered by events shared to this endpoint can be configured in the Automation <a href="https://support.e2ma.net/Resource_Center/Guide_to_Automation/Trigger_events%3A_custom_API_event">workflow builder</a>. For more information about the event API and its capabilities, visit our <a href="https://support.e2ma.net/Resource_Center/Account_how-to/Event_API">Resource Center</a>.</p> <dl class="post"> From d34acfd8bd1d63cc07db104d4bde9f56d0f350ca Mon Sep 17 00:00:00 2001 From: Nathan Talley <ntalley@campaignmonitor.com> Date: Fri, 4 Aug 2023 15:20:41 -0400 Subject: [PATCH 199/219] remove calendar call from documentation --- api/external/mailings.html | 104 ------------------------------------- 1 file changed, 104 deletions(-) diff --git a/api/external/mailings.html b/api/external/mailings.html index 09afcef..f63d201 100644 --- a/api/external/mailings.html +++ b/api/external/mailings.html @@ -282,110 +282,6 @@ <h1>Mailings<a class="headerlink" href="#mailings" title="Permalink to this head </p> </dd></dl> -<dl class="get"> -<dt id="get--#account_id-calendar"> -<tt class="descname">GET </tt><tt class="descname">/#account_id/calendar</tt><a class="headerlink" href="#get--#account_id-calendar" title="Permalink to this definition">¶</a></dt> -<dd><p>Get information about sent and scheduled mailings for the calendar.</p> -<table class="docutils field-list" frame="void" rules="none"> -<col class="field-name" /> -<col class="field-body" /> -<tbody valign="top"> -<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> -<li><strong>start_date</strong> (<em>string</em>) – Include sent or scheduled mailings starting on this date</li> -<li><strong>end_date</strong> (<em>string</em>) – Include sent or scheduled mailings up to this end date</li> -<li><strong>with_html_body</strong> (<em>boolean</em>) – Optional flag to include the html_body content.</li> -<li><strong>with_plaintext</strong> (<em>boolean</em>) – Optional flag to include the plaintext content.</li> -</ul> -</td> -</tr> -<tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><p class="first"><tt class="docutils literal"><span class="pre">Http400</span></tt> if the start and end dates are invalid or missing.</p> -</td> -</tr> -<tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body"><p class="first last">An array of mailings.</p> -</td> -</tr> -</tbody> -</table> -<p> -<div class="sample-response hide-response"> -<span style="font-weight:bold;">Sample Response</span> -<a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> -<pre class="response"> -<b>GET /100/calendar?start_date=2018-09-16&end_date=2018-09-17</b> - -[ - { - "mailing_type": "m", - "send_started": "@D:2018-09-16T10:30:10", - "cancel_by_user_id": null, - "mailing_id": 210, - "recipient_count": 1, - "cancel_ts": null, - "mailing_status": "c", - "account_id": 100, - "month": 9, - "failure_ts": null, - "reply_to": null, - "year": 2018, - "deleted_at": null, - "started_or_finished": "@D:2018-09-16T10:30:10", - "subject": "Sample Mailing for [% member:first_name %] [% member:last_name %]", - "disabled": false, - "created_ts": "@D:2018-09-13T10:18:34", - "sender": "Kevin McConnell", - "plaintext_only": false, - "name": "Sample Mailing", - "hour": 10, - "parent_mailing_id": null, - "failure_message": null, - "day": 16, - "send_finished": "@D:2018-09-16T10:30:16", - "datacenter": null, - "send_at": "@D:2018-09-16T10:30:00", - "signup_form_id": null, - "purged_at: null, - archived_ts: null - }, - { - "mailing_type": "m", - "send_started": null, - "cancel_by_user_id": null, - "mailing_id": 211, - "recipient_count": 0, - "cancel_ts": null, - "mailing_status": "p", - "account_id": 100, - "month": null, - "failure_ts": null, - "reply_to": null, - "year": null, - "deleted_at": null, - "started_or_finished": null, - "subject": "Scheduled Mailing", - "disabled": false, - "created_ts": "@D:2018-09-13T10:16:54", - "sender": "Donna Smith", - "plaintext_only": false, - "name": "Scheduled Mailing", - "hour": null, - "parent_mailing_id": null, - "failure_message": null, - "day": null, - "send_finished": null, - "datacenter": null, - "send_at": "@D:2018-09-22T10:30:00", - "signup_form_id": null, - "purged_at": null, - "archived_ts": null - } -] - -</pre> -</div> -</p> -</dd></dl> - - <dl class="get"> <dt id="get--#account_id-mailings-#mailing_id"> <tt class="descname">GET </tt><tt class="descname">/#account_id/mailings/#mailing_id</tt><a class="headerlink" href="#get--#account_id-mailings-#mailing_id" title="Permalink to this definition">¶</a></dt> From 9782daa5f7d2e8e7372f01f5147ed6e0c61937b1 Mon Sep 17 00:00:00 2001 From: Emma Peatfield <epeatfield@Marigold-Emma.local> Date: Fri, 17 Nov 2023 10:51:04 -0600 Subject: [PATCH 200/219] set up & adding first endpoint --- api/external/signup_forms.html | 2 +- api/external/sms.html | 220 ++++++++++++++++++++++++++++++++ api/external/subscriptions.html | 2 +- 3 files changed, 222 insertions(+), 2 deletions(-) create mode 100644 api/external/sms.html diff --git a/api/external/signup_forms.html b/api/external/signup_forms.html index 669f8b0..9cb5d9f 100644 --- a/api/external/signup_forms.html +++ b/api/external/signup_forms.html @@ -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"> diff --git a/api/external/sms.html b/api/external/sms.html new file mode 100644 index 0000000..eddd4dc --- /dev/null +++ b/api/external/sms.html @@ -0,0 +1,220 @@ +<!doctype html> + + +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> + + <title>Emma API Documentation | Emma, Inc.</title> + + + <link rel="stylesheet" href="../../_static/emma.css" type="text/css" /> + <link rel="stylesheet" href="../../_static/pygments.css" type="text/css" /> + + <script type="text/javascript"> + var DOCUMENTATION_OPTIONS = { + URL_ROOT: '../../', + VERSION: '0.1', + COLLAPSE_INDEX: false, + FILE_SUFFIX: '.html', + HAS_SOURCE: true + }; + </script> + + <script src="https://code.jquery.com/jquery-1.4.min.js"></script> + <script>window.jQuery || document.write('<script src="_static/jquery.js"><\/script>')</script> + + <link href="https://fonts.googleapis.com/css?family=Roboto:400,700" rel="stylesheet"> + <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="Webhooks" href="../../webhooks.html" /> + <link rel="prev" title="Subscriptions" href="subscriptions.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"> + <link rel="apple-touch-icon-precomposed" href="https://myemma.com/static/global/favicons/apple-iphone.png" /> + <link rel="apple-touch-icon-precomposed" sizes="72x72" href="https://myemma.com/static/global/favicons/apple-ipad.png" /> + <link rel="apple-touch-icon-precomposed" sizes="114x114" href="https://myemma.com/static/global/favicons/apple-iphone-2x.png" /> + <link rel="apple-touch-icon-precomposed" sizes="144x144" href="https://myemma.com/static/global/favicons/apple-ipad-2x.png" /> + + <style type="text/css"> + .resp-trigger, .resp-trigger:hover {font-size:10pt;text-decoration:none;} + div.sample-response.hide-response pre.response {display: none;} + div.sample-response .tshow, + div.sample-response.hide-response .thide {display: none;} + div.sample-response .thide, + div.sample-response.hide-response .tshow {display: inline;} + </style> + <script> + $().ready(function() { + $("a.resp-trigger").click(function(e) { + e.preventDefault(); + $(this).parents("div.sample-response").toggleClass("hide-response"); + }); + }); + </script> + + <script type="text/javascript"> + + var _gaq = _gaq || []; + _gaq.push(['_setAccount', 'UA-512410-18']); + _gaq.push(['_trackPageview']); + + (function() { + var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; + ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; + var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); + })(); + + </script> + +</head> +<body> +<header role="banner"> + <a href="/index.html"> + <h1>Emma API Documentation</h1> + </a> +</header> +<div class="related"> + <h3>Navigation</h3> + <ul> + <li class="right" style="margin-right: 10px"> + <a href="../../genindex.html" title="General Index" + accesskey="I">index</a></li> + <li class="right" > + <a href="../../http-routingtable.html" title="HTTP Routing Table" + >routing table</a> |</li> + <li class="right" > + <a href="webhooks.html" title="Webhooks" + accesskey="N">next</a> |</li> + <li class="right" > + <a href="subscriptions.html" title="Subscriptions" + accesskey="P">previous</a> |</li> + <li><a href="../../index.html">audience 0.1 documentation</a> »</li> + </ul> +</div> + +<div class="document"> + <div class="documentwrapper"> + <div class="bodywrapper"> + <div class="body"> + + <div class="section" id="users"> + <h1>SMS<a class="headerlink" href="#sms" title="Permalink to this headline">¶</a></h1> + <p>These endpoints allow for sms changes CHANGE</p> + <dl class="post"> + <dt id="get--#account_id-sms-campaigns"> + <tt class="descname">GET </tt><tt class="descname">/#account_id/sms/campaigns</tt><a class="headerlink" href="#get--#account_id-sms-campaigns" title="Permalink to this definition">¶</a></dt> + <dd><p>Get SMS Campaigns for account.</p> + <p>This endpoint will return a list of sms campaigns for the account.</p> + <table class="docutils field-list" frame="void" rules="none"> + <col class="field-name" /> + <col class="field-body" /> + <tbody valign="top"> + <tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">A response with a list of of campaigns for the given account id.</td> + </tr> + </tbody> + </table> + <p> + <div class="sample-response hide-response"> + <span style="font-weight:bold;">Sample Response</span> + <a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> + <pre class="response"> + <b>GET /100/sms/campaigns</b> + [{ + "account_id": 100, + "archived_at": null, + "bounces": 0, + "canceled_by_user_id": null, + "copied_from_sms_campaign_id": null, + "created_at": "2023-09-05T16:22:17.738757+00:00", + "deliveries": 0, + "from_phone_number": "+12345678910", + "is_promotional": true, + "is_test": false, + "media_url": null, + "message": "Hi this is a test", + "message_segments": 0, + "opt_outs": 0, + "pending_at": null, + "recipients": { + "groups": [ + 1234 + ], + "members": [], + "segments": [], + "suppression_segments": [] + }, + "results_message": null, + "scheduled_at": null, + "scheduled_by_user_id": null, + "send_finished": null, + "send_started": null, + "send_status": "d", + "shorten_links": false, + "sms_campaign_id": 123, + "sms_campaign_name": "Test SMS Campaign", + "sms_campaign_type": "m", + "total_clicks": 0, + "total_sent": 0, + "unique_clicks": 0, + "updated_at": "2023-09-05T16:23:43.498598+00:00" + }] + </pre> + </div> + </dd> + </dl> + </div> + </div> + </div> + </div> + <div class="sphinxsidebar"> + <div class="sphinxsidebarwrapper"><h3>Related Topics</h3> + <ul> + <li><a href="../../index.html">Documentation overview</a><ul> + <li>Previous: <a href="signup_forms.html" title="previous chapter">Signup Forms</a></li> + <li>Next: <a href="subscriptions.html" title="next chapter">Subscriptions</a></li> + </ul></li> + </ul> + <div id="searchbox" style="display: none"> + <h3>Quick search</h3> + <form class="search" action="../../search.html" method="get"> + <input type="text" name="q" /> + <input type="submit" value="Go" /> + <input type="hidden" name="check_keywords" value="yes" /> + <input type="hidden" name="area" value="default" /> + </form> + <p class="searchtip" style="font-size: 90%"> + Enter search terms or a module, class or function name. + </p> + </div> + <script type="text/javascript">$('#searchbox').show(0);</script> + <div id="emma-links"> + <h3>Emma Links</h3> + <ul> + <li><a href="https://myemma.com" title="Visit Emma's homepage" target="_blank">Emma Home</a></li> + + <li><a href="https://myemma.com/blog" title="Visit the Emma Blog" target="_blank">Emma Blog</a></li> + <li><a href="https://myemma.com/help" title="Visit Emma's help guide" target="_blank">Emma Help</a></li> + </ul> + </div> + + <div id="inquiry"> + <h3>Interested in Emma?</h3> + <p>Emma's email marketing makes communicating simple and stylish. <a href="https://myemma.com/get-started/inquire" title="Get started today.">Get started today</a>.</p> + </div> + </div> + </div> + <div class="clearer"></div> +</div> +<div class="footer"> + © Copyright 2003-<script language="JavaScript" type="text/javascript"> + now = new Date + theYear=now.getYear() + if (theYear < 1900) + theYear=theYear+1900 + document.write(theYear) +</script>, Campaign Monitor +</div> +</body> +</html> diff --git a/api/external/subscriptions.html b/api/external/subscriptions.html index 9a01034..142cd2a 100644 --- a/api/external/subscriptions.html +++ b/api/external/subscriptions.html @@ -470,7 +470,7 @@ <h1>Subscriptions<a class="headerlink" href="#subscriptions" title="Permalink to <div class="sphinxsidebarwrapper"><h3>Related Topics</h3> <ul> <li><a href="../../index.html">Documentation overview</a><ul> - <li>Previous: <a href="signup_forms.html" title="previous chapter">Signup Forms</a></li> + <li>Previous: <a href="sms.html" title="previous chapter">SMS</a></li> <li>Next: <a href="users.html" title="next chapter">Users</a></li> </ul></li> </ul> From 199992c42bd10fdd80abd187f3f05d2eacaf799c Mon Sep 17 00:00:00 2001 From: Emma Peatfield <epeatfield@Marigold-Emma.local> Date: Fri, 17 Nov 2023 10:55:12 -0600 Subject: [PATCH 201/219] fix navigation --- api/external/signup_forms.html | 2 +- api/external/sms.html | 6 +++--- api/external/subscriptions.html | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/api/external/signup_forms.html b/api/external/signup_forms.html index 9cb5d9f..111f9f2 100644 --- a/api/external/signup_forms.html +++ b/api/external/signup_forms.html @@ -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" diff --git a/api/external/sms.html b/api/external/sms.html index eddd4dc..923e2dc 100644 --- a/api/external/sms.html +++ b/api/external/sms.html @@ -85,10 +85,10 @@ <h3>Navigation</h3> <a href="../../http-routingtable.html" title="HTTP Routing Table" >routing table</a> |</li> <li class="right" > - <a href="webhooks.html" title="Webhooks" + <a href="subscriptions.html" title="Subscriptions" accesskey="N">next</a> |</li> <li class="right" > - <a href="subscriptions.html" title="Subscriptions" + <a href="signup_forms.html" title="Signup Forms" accesskey="P">previous</a> |</li> <li><a href="../../index.html">audience 0.1 documentation</a> »</li> </ul> @@ -99,7 +99,7 @@ <h3>Navigation</h3> <div class="bodywrapper"> <div class="body"> - <div class="section" id="users"> + <div class="section" id="sms"> <h1>SMS<a class="headerlink" href="#sms" title="Permalink to this headline">¶</a></h1> <p>These endpoints allow for sms changes CHANGE</p> <dl class="post"> diff --git a/api/external/subscriptions.html b/api/external/subscriptions.html index 142cd2a..06e9943 100644 --- a/api/external/subscriptions.html +++ b/api/external/subscriptions.html @@ -89,7 +89,7 @@ <h3>Navigation</h3> <a href="users.html" title="Users" accesskey="N">next</a> |</li> <li class="right" > - <a href="signup_forms.html" title="Signup Forms" + <a href="sms.html" title="SMS" accesskey="P">previous</a> |</li> <li><a href="../../index.html">audience 0.1 documentation</a> »</li> </ul> From c8571bf5e815ee63c21012f209b8e5c71108a7a1 Mon Sep 17 00:00:00 2001 From: Emma Peatfield <epeatfield@Marigold-Emma.local> Date: Fri, 17 Nov 2023 11:08:05 -0600 Subject: [PATCH 202/219] second endpoint & adding to index --- api/external/sms.html | 66 ++++++++++++++++++++++++++++++++++++++++++- index.html | 1 + 2 files changed, 66 insertions(+), 1 deletion(-) diff --git a/api/external/sms.html b/api/external/sms.html index 923e2dc..c335a61 100644 --- a/api/external/sms.html +++ b/api/external/sms.html @@ -102,7 +102,7 @@ <h3>Navigation</h3> <div class="section" id="sms"> <h1>SMS<a class="headerlink" href="#sms" title="Permalink to this headline">¶</a></h1> <p>These endpoints allow for sms changes CHANGE</p> - <dl class="post"> + <dl class="get"> <dt id="get--#account_id-sms-campaigns"> <tt class="descname">GET </tt><tt class="descname">/#account_id/sms/campaigns</tt><a class="headerlink" href="#get--#account_id-sms-campaigns" title="Permalink to this definition">¶</a></dt> <dd><p>Get SMS Campaigns for account.</p> @@ -164,6 +164,70 @@ <h1>SMS<a class="headerlink" href="#sms" title="Permalink to this headline">¶</ </div> </dd> </dl> + <dl class="get"> + <dt id="get--#account_id-sms-campaigns-#campaign_id"> + <tt class="descname">GET </tt><tt class="descname">/#account_id/sms/campaigns/#campaign_id</tt><a class="headerlink" href="#get--#account_id-sms-campaigns-#campaign_id" title="Permalink to this definition">¶</a></dt> + <dd><p>Get specific SMS Campaign for account.</p> + <p>This endpoint will return a campaign for the account that matches the given campaign ID.</p> + <table class="docutils field-list" frame="void" rules="none"> + <col class="field-name" /> + <col class="field-body" /> + <tbody valign="top"> + <tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">A response with a campaign for a specified campaign ID.</td> + </tr> + <tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the given campaign id for that account does not exist.</td> + </tr> + </tbody> + </table> + <p> + <div class="sample-response hide-response"> + <span style="font-weight:bold;">Sample Response</span> + <a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> + <pre class="response"> + <b>GET /100/sms/campaigns/123</b> + { + "account_id": 100, + "archived_at": null, + "bounces": 0, + "canceled_by_user_id": null, + "copied_from_sms_campaign_id": null, + "created_at": "2023-09-05T16:22:17.738757+00:00", + "deliveries": 0, + "from_phone_number": "+12345678910", + "is_promotional": true, + "is_test": false, + "media_url": null, + "message": "Hi this is a test", + "message_segments": 0, + "opt_outs": 0, + "pending_at": null, + "recipients": { + "groups": [ + 1234 + ], + "members": [], + "segments": [], + "suppression_segments": [] + }, + "results_message": null, + "scheduled_at": null, + "scheduled_by_user_id": null, + "send_finished": null, + "send_started": null, + "send_status": "d", + "shorten_links": false, + "sms_campaign_id": 123, + "sms_campaign_name": "Test SMS Campaign", + "sms_campaign_type": "m", + "total_clicks": 0, + "total_sent": 0, + "unique_clicks": 0, + "updated_at": "2023-09-05T16:23:43.498598+00:00" + } + </pre> + </div> + </dd> + </dl> </div> </div> </div> diff --git a/index.html b/index.html index c87b91b..aaa59a7 100644 --- a/index.html +++ b/index.html @@ -271,6 +271,7 @@ <h2>API calls by category<a class="headerlink" href="#api-calls-by-category" tit <li class="toctree-l1"><a class="reference internal" href="api/external/response_exports.html">Response Exports</a></li> <li class="toctree-l1"><a class="reference internal" href="api/external/searches.html">Searches</a></li> <li class="toctree-l1"><a class="reference internal" href="api/external/signup_forms.html">Signup Forms</a></li> +<li class="toctree-l1"><a class="reference internal" href="api/external/sms.html">SMS</a></li> <li class="toctree-l1"><a class="reference internal" href="api/external/subscriptions.html">Subscriptions</a></li> <!-- <li class="toctree-l1"><a class="reference internal" href="api/external/triggers.html">Triggers</a></li> --> <li class="toctree-l1"><a class="reference internal" href="api/external/users.html">Users</a></li> From e857e2bf7a389d82123ba89296925b6a1508b435 Mon Sep 17 00:00:00 2001 From: Emma Peatfield <epeatfield@Marigold-Emma.local> Date: Fri, 17 Nov 2023 11:16:32 -0600 Subject: [PATCH 203/219] third endpoint --- api/external/sms.html | 207 ++++++++++++++++++++++++++---------------- 1 file changed, 127 insertions(+), 80 deletions(-) diff --git a/api/external/sms.html b/api/external/sms.html index c335a61..0542467 100644 --- a/api/external/sms.html +++ b/api/external/sms.html @@ -120,46 +120,46 @@ <h1>SMS<a class="headerlink" href="#sms" title="Permalink to this headline">¶</ <span style="font-weight:bold;">Sample Response</span> <a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> <pre class="response"> - <b>GET /100/sms/campaigns</b> - [{ - "account_id": 100, - "archived_at": null, - "bounces": 0, - "canceled_by_user_id": null, - "copied_from_sms_campaign_id": null, - "created_at": "2023-09-05T16:22:17.738757+00:00", - "deliveries": 0, - "from_phone_number": "+12345678910", - "is_promotional": true, - "is_test": false, - "media_url": null, - "message": "Hi this is a test", - "message_segments": 0, - "opt_outs": 0, - "pending_at": null, - "recipients": { - "groups": [ - 1234 - ], - "members": [], - "segments": [], - "suppression_segments": [] - }, - "results_message": null, - "scheduled_at": null, - "scheduled_by_user_id": null, - "send_finished": null, - "send_started": null, - "send_status": "d", - "shorten_links": false, - "sms_campaign_id": 123, - "sms_campaign_name": "Test SMS Campaign", - "sms_campaign_type": "m", - "total_clicks": 0, - "total_sent": 0, - "unique_clicks": 0, - "updated_at": "2023-09-05T16:23:43.498598+00:00" - }] +<b>GET /100/sms/campaigns</b> +[{ + "account_id": 100, + "archived_at": null, + "bounces": 0, + "canceled_by_user_id": null, + "copied_from_sms_campaign_id": null, + "created_at": "2023-09-05T16:22:17.738757+00:00", + "deliveries": 0, + "from_phone_number": "+12345678910", + "is_promotional": true, + "is_test": false, + "media_url": null, + "message": "Hi this is a test", + "message_segments": 0, + "opt_outs": 0, + "pending_at": null, + "recipients": { + "groups": [ + 1234 + ], + "members": [], + "segments": [], + "suppression_segments": [] + }, + "results_message": null, + "scheduled_at": null, + "scheduled_by_user_id": null, + "send_finished": null, + "send_started": null, + "send_status": "d", + "shorten_links": false, + "sms_campaign_id": 123, + "sms_campaign_name": "Test SMS Campaign", + "sms_campaign_type": "m", + "total_clicks": 0, + "total_sent": 0, + "unique_clicks": 0, + "updated_at": "2023-09-05T16:23:43.498598+00:00" +}] </pre> </div> </dd> @@ -184,46 +184,93 @@ <h1>SMS<a class="headerlink" href="#sms" title="Permalink to this headline">¶</ <span style="font-weight:bold;">Sample Response</span> <a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> <pre class="response"> - <b>GET /100/sms/campaigns/123</b> - { - "account_id": 100, - "archived_at": null, - "bounces": 0, - "canceled_by_user_id": null, - "copied_from_sms_campaign_id": null, - "created_at": "2023-09-05T16:22:17.738757+00:00", - "deliveries": 0, - "from_phone_number": "+12345678910", - "is_promotional": true, - "is_test": false, - "media_url": null, - "message": "Hi this is a test", - "message_segments": 0, - "opt_outs": 0, - "pending_at": null, - "recipients": { - "groups": [ - 1234 - ], - "members": [], - "segments": [], - "suppression_segments": [] - }, - "results_message": null, - "scheduled_at": null, - "scheduled_by_user_id": null, - "send_finished": null, - "send_started": null, - "send_status": "d", - "shorten_links": false, - "sms_campaign_id": 123, - "sms_campaign_name": "Test SMS Campaign", - "sms_campaign_type": "m", - "total_clicks": 0, - "total_sent": 0, - "unique_clicks": 0, - "updated_at": "2023-09-05T16:23:43.498598+00:00" - } +<b>GET /100/sms/campaigns/123</b> +{ + "account_id": 100, + "archived_at": null, + "bounces": 0, + "canceled_by_user_id": null, + "copied_from_sms_campaign_id": null, + "created_at": "2023-09-05T16:22:17.738757+00:00", + "deliveries": 2, + "from_phone_number": "+12345678910", + "is_promotional": true, + "is_test": false, + "media_url": null, + "message": "Hi this is a test", + "message_segments": 0, + "opt_outs": 0, + "pending_at": null, + "recipients": { + "groups": [ + 1234 + ], + "members": [], + "segments": [], + "suppression_segments": [] + }, + "results_message": null, + "scheduled_at": null, + "scheduled_by_user_id": null, + "send_finished": null, + "send_started": null, + "send_status": "d", + "shorten_links": false, + "sms_campaign_id": 123, + "sms_campaign_name": "Test SMS Campaign", + "sms_campaign_type": "m", + "total_clicks": 0, + "total_sent": 0, + "unique_clicks": 0, + "updated_at": "2023-09-05T16:23:43.498598+00:00" +} + </pre> + </div> + </dd> + </dl> + <dl class="get"> + <dt id="get--#account_id-sms-campaigns-#campaign_id-deliveries"> + <tt class="descname">GET </tt><tt class="descname">/#account_id/sms/campaigns/#campaign_id/deliveries</tt><a class="headerlink" href="#get--#account_id-sms-campaigns-#campaign_id-deliveries" title="Permalink to this definition">¶</a></dt> + <dd><p>Get a list of deliveries for a specific SMS Campaign for the account ID.</p> + <p>This endpoint will return a list of recipients that the specific campaign was delivered to.</p> + <table class="docutils field-list" frame="void" rules="none"> + <col class="field-name" /> + <col class="field-body" /> + <tbody valign="top"> + <tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">A response with a list of recipients for a specified campaign ID.</td> + </tr> + <tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the given campaign id for that account does not exist.</td> + </tr> + </tbody> + </table> + <p> + <div class="sample-response hide-response"> + <span style="font-weight:bold;">Sample Response</span> + <a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> + <pre class="response"> +<b>GET /100/sms/campaigns/123/deliveries</b> +[ + { + "account_id": 100, + "bounce_type": null, + "delivery_type": "d", + "from_phone_number": "+12345678910", + "member_id": 110, + "opted_out_at": null, + "sms_campaign_id": 123, + "to_phone_number": "+11098765432" + }, + { + "account_id": 100, + "bounce_type": null, + "delivery_type": "d", + "from_phone_number": "+12345678910", + "member_id": 111, + "opted_out_at": null, + "sms_campaign_id": 123, + "to_phone_number": "+11098765433" + } +] </pre> </div> </dd> From 91f0b6ff1553a1a28e04bbf01a18718be4c3c045 Mon Sep 17 00:00:00 2001 From: Emma Peatfield <epeatfield@Marigold-Emma.local> Date: Fri, 17 Nov 2023 11:20:06 -0600 Subject: [PATCH 204/219] fourth endpoint --- api/external/sms.html | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) diff --git a/api/external/sms.html b/api/external/sms.html index 0542467..d5c8598 100644 --- a/api/external/sms.html +++ b/api/external/sms.html @@ -270,6 +270,49 @@ <h1>SMS<a class="headerlink" href="#sms" title="Permalink to this headline">¶</ "sms_campaign_id": 123, "to_phone_number": "+11098765433" } +] + </pre> + </div> + </dd> + </dl> + <dl class="get"> + <dt id="get--#account_id-sms-campaigns-#campaign_id-clicks"> + <tt class="descname">GET </tt><tt class="descname">/#account_id/sms/campaigns/#campaign_id/clicks</tt><a class="headerlink" href="#get--#account_id-sms-campaigns-#campaign_id-clicks" title="Permalink to this definition">¶</a></dt> + <dd><p>Get a list of clicks for a specific SMS Campaign for the account ID.</p> + <p>This endpoint will return a list of clicks that the specific campaign was delivered to.</p> + <table class="docutils field-list" frame="void" rules="none"> + <col class="field-name" /> + <col class="field-body" /> + <tbody valign="top"> + <tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">A response with a list of clicks for a specified campaign ID.</td> + </tr> + <tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the given campaign id for that account does not exist.</td> + </tr> + </tbody> + </table> + <p> + <div class="sample-response hide-response"> + <span style="font-weight:bold;">Sample Response</span> + <a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> + <pre class="response"> +<b>GET /100/sms/campaigns/123/clicks</b> +[ + { + "click_timestamp": "2023-03-31T18:19:28.547464+00:00", + "member_id": 110, + "sms_campaign_id": 123, + "sms_link_id": 43, + "sms_link_target": "http://www.meetmarigold.com", + "to_phone_number": "+11098765432" + }, + { + "click_timestamp": "2023-03-31T18:19:22.383613+00:00", + "member_id": 111, + "sms_campaign_id": 123, + "sms_link_id": 43, + "sms_link_target": "http://www.meetmarigold.com", + "to_phone_number": "+11098765433" + } ] </pre> </div> From 8438cf978505da94c63eb2ea01c733b2adf35c6d Mon Sep 17 00:00:00 2001 From: Emma Peatfield <epeatfield@Marigold-Emma.local> Date: Fri, 17 Nov 2023 11:33:30 -0600 Subject: [PATCH 205/219] descriptions updates --- api/external/sms.html | 140 +++++++++++++++++++++--------------------- 1 file changed, 71 insertions(+), 69 deletions(-) diff --git a/api/external/sms.html b/api/external/sms.html index d5c8598..a20b37f 100644 --- a/api/external/sms.html +++ b/api/external/sms.html @@ -101,17 +101,17 @@ <h3>Navigation</h3> <div class="section" id="sms"> <h1>SMS<a class="headerlink" href="#sms" title="Permalink to this headline">¶</a></h1> - <p>These endpoints allow for sms changes CHANGE</p> + <p>These endpoints allow for users to get information about their sms campaigns.</p> <dl class="get"> <dt id="get--#account_id-sms-campaigns"> <tt class="descname">GET </tt><tt class="descname">/#account_id/sms/campaigns</tt><a class="headerlink" href="#get--#account_id-sms-campaigns" title="Permalink to this definition">¶</a></dt> - <dd><p>Get SMS Campaigns for account.</p> - <p>This endpoint will return a list of sms campaigns for the account.</p> + <dd><p>Get sms campaigns for account.</p> + <p>This endpoint will return a list of sms campaigns for the account ID.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> - <tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">A response with a list of of campaigns for the given account id.</td> + <tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">A response with a list of of campaigns for the given account ID.</td> </tr> </tbody> </table> @@ -121,45 +121,47 @@ <h1>SMS<a class="headerlink" href="#sms" title="Permalink to this headline">¶</ <a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> <pre class="response"> <b>GET /100/sms/campaigns</b> -[{ - "account_id": 100, - "archived_at": null, - "bounces": 0, - "canceled_by_user_id": null, - "copied_from_sms_campaign_id": null, - "created_at": "2023-09-05T16:22:17.738757+00:00", - "deliveries": 0, - "from_phone_number": "+12345678910", - "is_promotional": true, - "is_test": false, - "media_url": null, - "message": "Hi this is a test", - "message_segments": 0, - "opt_outs": 0, - "pending_at": null, - "recipients": { - "groups": [ - 1234 - ], - "members": [], - "segments": [], - "suppression_segments": [] - }, - "results_message": null, - "scheduled_at": null, - "scheduled_by_user_id": null, - "send_finished": null, - "send_started": null, - "send_status": "d", - "shorten_links": false, - "sms_campaign_id": 123, - "sms_campaign_name": "Test SMS Campaign", - "sms_campaign_type": "m", - "total_clicks": 0, - "total_sent": 0, - "unique_clicks": 0, - "updated_at": "2023-09-05T16:23:43.498598+00:00" -}] +[ + { + "account_id": 100, + "archived_at": null, + "bounces": 0, + "canceled_by_user_id": null, + "copied_from_sms_campaign_id": null, + "created_at": "2023-09-05T16:22:17.738757+00:00", + "deliveries": 0, + "from_phone_number": "+12345678910", + "is_promotional": true, + "is_test": false, + "media_url": null, + "message": "Hi this is a test", + "message_segments": 0, + "opt_outs": 0, + "pending_at": null, + "recipients": { + "groups": [ + 1234 + ], + "members": [], + "segments": [], + "suppression_segments": [] + }, + "results_message": null, + "scheduled_at": null, + "scheduled_by_user_id": null, + "send_finished": null, + "send_started": null, + "send_status": "d", + "shorten_links": false, + "sms_campaign_id": 123, + "sms_campaign_name": "Test SMS Campaign", + "sms_campaign_type": "m", + "total_clicks": 0, + "total_sent": 0, + "unique_clicks": 0, + "updated_at": "2023-09-05T16:23:43.498598+00:00" + } +] </pre> </div> </dd> @@ -167,7 +169,7 @@ <h1>SMS<a class="headerlink" href="#sms" title="Permalink to this headline">¶</ <dl class="get"> <dt id="get--#account_id-sms-campaigns-#campaign_id"> <tt class="descname">GET </tt><tt class="descname">/#account_id/sms/campaigns/#campaign_id</tt><a class="headerlink" href="#get--#account_id-sms-campaigns-#campaign_id" title="Permalink to this definition">¶</a></dt> - <dd><p>Get specific SMS Campaign for account.</p> + <dd><p>Get specific sms campaign.</p> <p>This endpoint will return a campaign for the account that matches the given campaign ID.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> @@ -231,13 +233,13 @@ <h1>SMS<a class="headerlink" href="#sms" title="Permalink to this headline">¶</ <dl class="get"> <dt id="get--#account_id-sms-campaigns-#campaign_id-deliveries"> <tt class="descname">GET </tt><tt class="descname">/#account_id/sms/campaigns/#campaign_id/deliveries</tt><a class="headerlink" href="#get--#account_id-sms-campaigns-#campaign_id-deliveries" title="Permalink to this definition">¶</a></dt> - <dd><p>Get a list of deliveries for a specific SMS Campaign for the account ID.</p> - <p>This endpoint will return a list of recipients that the specific campaign was delivered to.</p> + <dd><p>Get a list of deliveries for an sms campaign.</p> + <p>This endpoint will return a list of deliveries for the given campaign ID.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> - <tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">A response with a list of recipients for a specified campaign ID.</td> + <tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">A response with a list of deliveries for a specified campaign ID.</td> </tr> <tr class="field-even field"><th class="field-name">Raises :</th><td class="field-body"><tt class="docutils literal"><span class="pre">Http404</span></tt> if the given campaign id for that account does not exist.</td> </tr> @@ -250,26 +252,26 @@ <h1>SMS<a class="headerlink" href="#sms" title="Permalink to this headline">¶</ <pre class="response"> <b>GET /100/sms/campaigns/123/deliveries</b> [ - { - "account_id": 100, - "bounce_type": null, - "delivery_type": "d", - "from_phone_number": "+12345678910", - "member_id": 110, - "opted_out_at": null, - "sms_campaign_id": 123, - "to_phone_number": "+11098765432" - }, - { - "account_id": 100, - "bounce_type": null, - "delivery_type": "d", - "from_phone_number": "+12345678910", - "member_id": 111, - "opted_out_at": null, - "sms_campaign_id": 123, - "to_phone_number": "+11098765433" - } + { + "account_id": 100, + "bounce_type": null, + "delivery_type": "d", + "from_phone_number": "+12345678910", + "member_id": 110, + "opted_out_at": null, + "sms_campaign_id": 123, + "to_phone_number": "+11098765432" + }, + { + "account_id": 100, + "bounce_type": null, + "delivery_type": "d", + "from_phone_number": "+12345678910", + "member_id": 111, + "opted_out_at": null, + "sms_campaign_id": 123, + "to_phone_number": "+11098765433" + } ] </pre> </div> @@ -278,8 +280,8 @@ <h1>SMS<a class="headerlink" href="#sms" title="Permalink to this headline">¶</ <dl class="get"> <dt id="get--#account_id-sms-campaigns-#campaign_id-clicks"> <tt class="descname">GET </tt><tt class="descname">/#account_id/sms/campaigns/#campaign_id/clicks</tt><a class="headerlink" href="#get--#account_id-sms-campaigns-#campaign_id-clicks" title="Permalink to this definition">¶</a></dt> - <dd><p>Get a list of clicks for a specific SMS Campaign for the account ID.</p> - <p>This endpoint will return a list of clicks that the specific campaign was delivered to.</p> + <dd><p>Get a list of clicks for an sms campaign.</p> + <p>This endpoint will return a list of clicks for the given campaign ID.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> From 8232cc6bdc1cecb765d73e2c54a9a631b53a8121 Mon Sep 17 00:00:00 2001 From: Emma Peatfield <epeatfield@Marigold-Emma.local> Date: Fri, 17 Nov 2023 11:38:52 -0600 Subject: [PATCH 206/219] branding --- api/external/sms.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/external/sms.html b/api/external/sms.html index a20b37f..11549fd 100644 --- a/api/external/sms.html +++ b/api/external/sms.html @@ -370,7 +370,7 @@ <h3>Interested in Emma?</h3> if (theYear < 1900) theYear=theYear+1900 document.write(theYear) -</script>, Campaign Monitor +</script>, Marigold </div> </body> </html> From 1d726100f28262accf33ba1914fe1a7972dfed29 Mon Sep 17 00:00:00 2001 From: Emma Peatfield <36430657+epeatfield@users.noreply.github.com> Date: Fri, 17 Nov 2023 14:31:12 -0600 Subject: [PATCH 207/219] Update api/external/sms.html Co-authored-by: Jackson Streeter <jstreeter@meetmarigold.com> --- api/external/sms.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/external/sms.html b/api/external/sms.html index a20b37f..34a5d2b 100644 --- a/api/external/sms.html +++ b/api/external/sms.html @@ -28,7 +28,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="Webhooks" href="../../webhooks.html" /> + <link rel="next" title="Signup Forms" href="signup_forms.html" /> <link rel="prev" title="Subscriptions" href="subscriptions.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"> From 436e1d8c7c4caa66da6445ed1ac70bb8fe10ea57 Mon Sep 17 00:00:00 2001 From: Emma Peatfield <epeatfield@Marigold-Emma.home> Date: Fri, 17 Nov 2023 14:46:17 -0600 Subject: [PATCH 208/219] fixing next & previous --- api/external/signup_forms.html | 2 +- api/external/sms.html | 4 ++-- api/external/subscriptions.html | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/api/external/signup_forms.html b/api/external/signup_forms.html index 111f9f2..93ebaa3 100644 --- a/api/external/signup_forms.html +++ b/api/external/signup_forms.html @@ -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"> diff --git a/api/external/sms.html b/api/external/sms.html index 6f22ccf..f2a314b 100644 --- a/api/external/sms.html +++ b/api/external/sms.html @@ -28,8 +28,8 @@ <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="Signup Forms" href="signup_forms.html" /> - <link rel="prev" title="Subscriptions" href="subscriptions.html" /> + <link rel="next" title="Subscriptions" href="subscriptions.html" /> + <link rel="prev" title="Signup Forms" href="signup_forms.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"> <link rel="apple-touch-icon-precomposed" href="https://myemma.com/static/global/favicons/apple-iphone.png" /> diff --git a/api/external/subscriptions.html b/api/external/subscriptions.html index 06e9943..620b371 100644 --- a/api/external/subscriptions.html +++ b/api/external/subscriptions.html @@ -30,7 +30,7 @@ <script type="text/javascript" src="../../_static/doctools.js"></script> <link rel="top" title="audience 0.1 documentation" href="../../index.html" /> <link rel="next" title="Users" href="users.html" /> - <link rel="prev" title="Signup Forms" href="signup_forms.html" /> + <link rel="prev" title="SMS" href="sms.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"> <link rel="apple-touch-icon-precomposed" href="https://myemma.com/static/global/favicons/apple-iphone.png" /> From e63834d24a5e940c7355eb24e57b7068a82b27d3 Mon Sep 17 00:00:00 2001 From: Emma Peatfield <epeatfield@Marigold-Emma.local> Date: Mon, 20 Nov 2023 11:02:41 -0600 Subject: [PATCH 209/219] adding sms key to individual member add --- api/external/members.html | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/api/external/members.html b/api/external/members.html index f221ecc..bb771e2 100644 --- a/api/external/members.html +++ b/api/external/members.html @@ -527,6 +527,7 @@ <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> <li><strong>subscriber_consent_tracking</strong> (<em>boolean</em>) – Optional. Whether or not the user accepts tracking and analysis.</li> </ul> </td> @@ -550,7 +551,9 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli }, "email": "benjamin@myemma.com", "sms": { - "phone_number": "1234567890" + "phone_number": "1234567890", + "promotional_status": "o", + "transactional_status": "a" } } From cf9d25ddc2dab1936ded3984d52dfa8a22d80354 Mon Sep 17 00:00:00 2001 From: Emma Peatfield <epeatfield@Marigold-Emma.local> Date: Mon, 20 Nov 2023 11:54:16 -0600 Subject: [PATCH 210/219] final points for sms stuff --- api/external/members.html | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/api/external/members.html b/api/external/members.html index bb771e2..8eac6b7 100644 --- a/api/external/members.html +++ b/api/external/members.html @@ -528,6 +528,11 @@ <h1>Members<a class="headerlink" href="#members" title="Permalink to this headli <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> From 88939af86891e80cbd2264a327b5f5d4d7e2c6bb Mon Sep 17 00:00:00 2001 From: Brandon Henry <bhenry@campaignmonitor.com> Date: Mon, 8 Jan 2024 14:57:58 -0500 Subject: [PATCH 211/219] bare minimum change to documentation (#50) i think this can read better with a few tweaks. i will open it up for discussion on the pr. --- api/external/response_exports.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/external/response_exports.html b/api/external/response_exports.html index a5c5bbb..4bf2182 100644 --- a/api/external/response_exports.html +++ b/api/external/response_exports.html @@ -114,7 +114,7 @@ <h1>Response Exports<a class="headerlink" href="#response_exports" title="Permal <tr class="field-odd field"><th class="field-name">Supported criteria:</th><td class="field-body"><ul class="first simple"> <li><strong>include_fields</strong> (<em>boolean, list of strings</em>) – <strong>Defaults to false.</strong> If <tt class="docutils literal"><span class="pre"></span>true</span></tt>, export will include all member fields in the account. If list of strings, export will include all member fields by <tt class="docutils literal"><span class="pre"></span>shortcut_name</span></tt> that exist in the account.</li> <li><strong>mailing_ids</strong> (<em>array of integers</em>) - <strong>Defaults to empty list.</strong> If no <tt class="docutils literal"><span class="pre"></span>mailing_ids</span></tt> are specified, the last 50 mailings ordered by <tt class="docutils literal"><span class="pre"></span>send_started</span></tt> (most recently sent mailings) will be included in the export. The maximum number of <tt class="docutils literal"><span class="pre"></span>mailing_ids</span></tt> supported is 50.</li> -<li><strong>from_date</strong> (<em>datetime</em>) - <strong>Defaults to none.</strong> Exports response data starting from the date specified, and cannot be farther back than the previous 18 months. If paired with <tt class="docutils literal"><span class="pre">to_date</span></tt>, the export will be rejected if the total time period is greater than 90 days.</li> +<li><strong>from_date</strong> (<em>datetime</em>) - <strong>Defaults to none.</strong> Exports response data starting from the date specified, and cannot be farther back than the previous 18 months. If paired with <tt class="docutils literal"><span class="pre">to_date</span></tt>, the export will be rejected if the total time period is greater than 90 days. If <tt class="docutils literal"><span class="pre">mailing_ids</span></tt> are provided, the time period is not restricted.</li> <li><strong>to_date</strong> (<em>datetime</em>) - <strong>Defaults to none.</strong> Limits the response data exported up to the specified date. If paired with <tt class="docutils literal"><span class="pre"></span>from_date</span></tt>, the export will be rejected if the total time period is greater than 90 days.</li> </ul> </td> From 8ae82faf43aba753cbaa4d93f54b49e630174321 Mon Sep 17 00:00:00 2001 From: Emma Peatfield <epeatfield@Marigold-Emma.local> Date: Thu, 15 Feb 2024 10:34:54 -0600 Subject: [PATCH 212/219] adding billing credit usage endpoint --- api/external/sms.html | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/api/external/sms.html b/api/external/sms.html index f2a314b..3d7f795 100644 --- a/api/external/sms.html +++ b/api/external/sms.html @@ -320,6 +320,30 @@ <h1>SMS<a class="headerlink" href="#sms" title="Permalink to this headline">¶</ </div> </dd> </dl> + <dl class="get"> + <dt id="get--#account_id-sms-billing-credit-usage"> + <tt class="descname">GET </tt><tt class="descname">/#account_id/sms/billing/credit_usage</tt><a class="headerlink" href="#get--#account_id-sms-billing-credit-usage" title="Permalink to this definition">¶</a></dt> + <dd><p>Get sms credit usage for account.</p> + <p>This endpoint will return the credit usage for the account ID.</p> + <table class="docutils field-list" frame="void" rules="none"> + <col class="field-name" /> + <col class="field-body" /> + <tbody valign="top"> + <tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">A response with an integer that is the credit usage for the given account ID.</td> + </tr> + </tbody> + </table> + <p> + <div class="sample-response hide-response"> + <span style="font-weight:bold;">Sample Response</span> + <a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> + <pre class="response"> +<b>GET /100/sms/billing/credit_usage</b> +123 + </pre> + </div> + </dd> + </dl> </div> </div> </div> From 98383be23eda63b61a041348622dc556e5dc6147 Mon Sep 17 00:00:00 2001 From: Emma Peatfield <epeatfield@Marigold-Emma.local> Date: Thu, 15 Feb 2024 11:07:32 -0600 Subject: [PATCH 213/219] Adding parameters --- api/external/sms.html | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/api/external/sms.html b/api/external/sms.html index 3d7f795..643fa26 100644 --- a/api/external/sms.html +++ b/api/external/sms.html @@ -324,11 +324,17 @@ <h1>SMS<a class="headerlink" href="#sms" title="Permalink to this headline">¶</ <dt id="get--#account_id-sms-billing-credit-usage"> <tt class="descname">GET </tt><tt class="descname">/#account_id/sms/billing/credit_usage</tt><a class="headerlink" href="#get--#account_id-sms-billing-credit-usage" title="Permalink to this definition">¶</a></dt> <dd><p>Get sms credit usage for account.</p> - <p>This endpoint will return the credit usage for the account ID.</p> + <p>This endpoint will return the credit usage for the account ID. You must specify query parameters 'from_date' and 'to_date'.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> + <tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> + <li><strong>from_date</strong> (<em>string</em>) – Required. The start date of the requested credit usage in ISO format (YYYY-MM-DD)</li> + <li><strong>to_date</strong> (<em>string</em>) – Required. The end date of the requested credit usage in ISO format (YYYY-MM-DD)</li> + </ul> + </td> + </tr> <tr class="field-odd field"><th class="field-name">Returns :</th><td class="field-body">A response with an integer that is the credit usage for the given account ID.</td> </tr> </tbody> @@ -338,7 +344,7 @@ <h1>SMS<a class="headerlink" href="#sms" title="Permalink to this headline">¶</ <span style="font-weight:bold;">Sample Response</span> <a href="#" class="resp-trigger">[<span class="tshow">show</span><span class="thide">hide</span>]</a> <pre class="response"> -<b>GET /100/sms/billing/credit_usage</b> +<b>GET /100/sms/billing/credit_usage?from_date=2023-03-22&to_date=2024-01-29</b> 123 </pre> </div> From 308ab58bc5b40fe9ade777075c61ce563e7e3c1d Mon Sep 17 00:00:00 2001 From: Emma Peatfield <36430657+epeatfield@users.noreply.github.com> Date: Thu, 15 Feb 2024 13:18:12 -0600 Subject: [PATCH 214/219] Update api/external/sms.html Co-authored-by: Jackson Streeter <jstreeter@meetmarigold.com> --- api/external/sms.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/external/sms.html b/api/external/sms.html index 643fa26..d9f9d13 100644 --- a/api/external/sms.html +++ b/api/external/sms.html @@ -324,7 +324,7 @@ <h1>SMS<a class="headerlink" href="#sms" title="Permalink to this headline">¶</ <dt id="get--#account_id-sms-billing-credit-usage"> <tt class="descname">GET </tt><tt class="descname">/#account_id/sms/billing/credit_usage</tt><a class="headerlink" href="#get--#account_id-sms-billing-credit-usage" title="Permalink to this definition">¶</a></dt> <dd><p>Get sms credit usage for account.</p> - <p>This endpoint will return the credit usage for the account ID. You must specify query parameters 'from_date' and 'to_date'.</p> + <p>This endpoint will return the credit usage for the account ID. You must specify query parameters 'from_date' and 'to_date'. The returned credit usage is inclusive of the the 'from_date' and exclusive of the 'from_date'. The dates are based in the UTC timezone.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> From d7a22d8937b9e44634a430f4b0e14c926521fcd0 Mon Sep 17 00:00:00 2001 From: Emma Peatfield <epeatfield@Marigold-Emma.local> Date: Thu, 15 Feb 2024 13:19:49 -0600 Subject: [PATCH 215/219] adding some extra info --- api/external/sms.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/external/sms.html b/api/external/sms.html index d9f9d13..b5fa8cb 100644 --- a/api/external/sms.html +++ b/api/external/sms.html @@ -324,7 +324,7 @@ <h1>SMS<a class="headerlink" href="#sms" title="Permalink to this headline">¶</ <dt id="get--#account_id-sms-billing-credit-usage"> <tt class="descname">GET </tt><tt class="descname">/#account_id/sms/billing/credit_usage</tt><a class="headerlink" href="#get--#account_id-sms-billing-credit-usage" title="Permalink to this definition">¶</a></dt> <dd><p>Get sms credit usage for account.</p> - <p>This endpoint will return the credit usage for the account ID. You must specify query parameters 'from_date' and 'to_date'. The returned credit usage is inclusive of the the 'from_date' and exclusive of the 'from_date'. The dates are based in the UTC timezone.</p> + <p>This endpoint will return the credit usage for the account ID. You must specify query parameters 'from_date' and 'to_date'. The returned credit usage is inclusive of the 'from_date' and exclusive of the 'to_date'. The dates are based in the UTC timezone.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> From 674f4821454f90394becb4ab3850d81c2bd68b20 Mon Sep 17 00:00:00 2001 From: Bri Wyatt <mbriwyatt@gmail.com> Date: Tue, 23 Jul 2024 17:23:17 -0500 Subject: [PATCH 216/219] add section of documentation for new webhook --- webhooks.html | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/webhooks.html b/webhooks.html index e686992..0887007 100644 --- a/webhooks.html +++ b/webhooks.html @@ -427,6 +427,19 @@ <h3>Member Status Update<a class="headerlink" href="#member-status-update" title </pre></div> </div> </div> +<div class="section" id="member-opted-out"> +<h3>Member Opted Out<a class="headerlink" href="#member-opted-out" title="Permalink to this headline">¶</a></h3> +<div class="highlight-python"><div class="highlight"><pre><span class="p">{</span> + <span class="s">"event_name"</span><span class="p">:</span> <span class="s">"member-opted-out"</span><span class="p">,</span> + <span class="s">"data"</span><span class="p">:</span> <span class="p">{</span> + <span class="s">"member_id"</span><span class="p">:</span> <span class="n">member_id</span><span class="p">,</span> + <span class="s">"subscripition_id"</span><span class="p">:</span> <span class="n">subscripition_id</span><span class="p">,</span> + <span class="s">"account_id"</span><span class="p">:</span> <span class="n">account_id</span><span class="p">,</span> + <span class="p">}</span> +<span class="p">}</span> +</pre></div> +</div> +</div> </div> </div> From 5558c5c412bb31db96d10dcbfa4eb50346dc6aa0 Mon Sep 17 00:00:00 2001 From: Bri Wyatt <mbriwyatt@gmail.com> Date: Wed, 24 Jul 2024 13:59:31 -0500 Subject: [PATCH 217/219] add link --- webhooks.html | 1 + 1 file changed, 1 insertion(+) diff --git a/webhooks.html b/webhooks.html index 0887007..3ce3288 100644 --- a/webhooks.html +++ b/webhooks.html @@ -475,6 +475,7 @@ <h3><a href="index.html">Table Of Contents</a></h3> <li><a class="reference internal" href="#field-delete">Field Delete</a></li> <li><a class="reference internal" href="#field-update">Field Update</a></li> <li><a class="reference internal" href="#member-status-update">Member Status Update</a></li> +<li><a class="reference internal" href="#member-opted-out">Member Opted Out</a></li> </ul> </li> </ul> From fab38e31b068e8cab6dd5906c7953717b39aa2ba Mon Sep 17 00:00:00 2001 From: Bri Wyatt <mbriwyatt@gmail.com> Date: Wed, 24 Jul 2024 15:01:46 -0500 Subject: [PATCH 218/219] member opt out --- webhooks.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/webhooks.html b/webhooks.html index 3ce3288..b6f59bd 100644 --- a/webhooks.html +++ b/webhooks.html @@ -427,10 +427,10 @@ <h3>Member Status Update<a class="headerlink" href="#member-status-update" title </pre></div> </div> </div> -<div class="section" id="member-opted-out"> -<h3>Member Opted Out<a class="headerlink" href="#member-opted-out" title="Permalink to this headline">¶</a></h3> +<div class="section" id="member-opt-out"> +<h3>Member Opt Out<a class="headerlink" href="#member-opt-out" title="Permalink to this headline">¶</a></h3> <div class="highlight-python"><div class="highlight"><pre><span class="p">{</span> - <span class="s">"event_name"</span><span class="p">:</span> <span class="s">"member-opted-out"</span><span class="p">,</span> + <span class="s">"event_name"</span><span class="p">:</span> <span class="s">"member-opt-out"</span><span class="p">,</span> <span class="s">"data"</span><span class="p">:</span> <span class="p">{</span> <span class="s">"member_id"</span><span class="p">:</span> <span class="n">member_id</span><span class="p">,</span> <span class="s">"subscripition_id"</span><span class="p">:</span> <span class="n">subscripition_id</span><span class="p">,</span> @@ -475,7 +475,7 @@ <h3><a href="index.html">Table Of Contents</a></h3> <li><a class="reference internal" href="#field-delete">Field Delete</a></li> <li><a class="reference internal" href="#field-update">Field Update</a></li> <li><a class="reference internal" href="#member-status-update">Member Status Update</a></li> -<li><a class="reference internal" href="#member-opted-out">Member Opted Out</a></li> +<li><a class="reference internal" href="#member-opt-out">Member Opt Out</a></li> </ul> </li> </ul> From d324e36b5a03ee2bf38f3f5dfb2533cb9798fdf8 Mon Sep 17 00:00:00 2001 From: Bri Wyatt <mbriwyatt@gmail.com> Date: Wed, 24 Jul 2024 15:13:52 -0500 Subject: [PATCH 219/219] change name --- webhooks.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/webhooks.html b/webhooks.html index b6f59bd..7dd1636 100644 --- a/webhooks.html +++ b/webhooks.html @@ -427,10 +427,10 @@ <h3>Member Status Update<a class="headerlink" href="#member-status-update" title </pre></div> </div> </div> -<div class="section" id="member-opt-out"> -<h3>Member Opt Out<a class="headerlink" href="#member-opt-out" title="Permalink to this headline">¶</a></h3> +<div class="section" id="subscriptions-member-opted-out"> +<h3>Subscriptions Member Opted Out<a class="headerlink" href="#subscriptions-member-opted-out" title="Permalink to this headline">¶</a></h3> <div class="highlight-python"><div class="highlight"><pre><span class="p">{</span> - <span class="s">"event_name"</span><span class="p">:</span> <span class="s">"member-opt-out"</span><span class="p">,</span> + <span class="s">"event_name"</span><span class="p">:</span> <span class="s">"subscriptions-member-opted-out"</span><span class="p">,</span> <span class="s">"data"</span><span class="p">:</span> <span class="p">{</span> <span class="s">"member_id"</span><span class="p">:</span> <span class="n">member_id</span><span class="p">,</span> <span class="s">"subscripition_id"</span><span class="p">:</span> <span class="n">subscripition_id</span><span class="p">,</span> @@ -475,7 +475,7 @@ <h3><a href="index.html">Table Of Contents</a></h3> <li><a class="reference internal" href="#field-delete">Field Delete</a></li> <li><a class="reference internal" href="#field-update">Field Update</a></li> <li><a class="reference internal" href="#member-status-update">Member Status Update</a></li> -<li><a class="reference internal" href="#member-opt-out">Member Opt Out</a></li> +<li><a class="reference internal" href="#subscriptions-member-opted-out">Subscriptions Member Opted Out</a></li> </ul> </li> </ul>