Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
api-automation [2017/01/19 17:11]
ben created
api-automation [2018/02/19 11:21] (current)
benc
Line 23: Line 23:
 When preparing the Emails to use in your Autoresponder,​ you can manually enter "​Transaction Data" Mergefields into the Email content where you'd like to merge in values from this JSON data. When preparing the Emails to use in your Autoresponder,​ you can manually enter "​Transaction Data" Mergefields into the Email content where you'd like to merge in values from this JSON data.
  
-The syntax for Transaction Data Mergefields is <​nowiki>​{{trx:​MergefieldName}}</​nowiki>​ and "​MergefieldName"​ must exactly ​match the name in the JSON data.  You can also include a default value which is used if either the property isn't found in the JSON data or its value is blank, e.g. <​nowiki>​{{trx:​DiscountCode default=n/​a}}</​nowiki>​+The syntax for Transaction Data Mergefields is <​nowiki>​{{trx:​MergefieldName}}</​nowiki>​ and "​MergefieldName"​ must match the name in the JSON data.  You can also include a default value which is used if either the property isn't found in the JSON data or its value is blank, e.g. <​nowiki>​{{trx:​DiscountCode default=n/​a}}</​nowiki>​
  
 The JSON data must describe a single "​flat"​ object (i.e. one consisting only of name/value pairs as shown in the example below), it cannot be an array. The JSON data must describe a single "​flat"​ object (i.e. one consisting only of name/value pairs as shown in the example below), it cannot be an array.
Line 56: Line 56:
  
 For other response codes, see the [[api-errors|Error List]]. For other response codes, see the [[api-errors|Error List]].
 +
 +\\
 +\\
 +
 +===== Get All Autoresponders =====
 +
 +This endpoint is used to get a list of all the [[automation|Autoresponders]] in your Sentori Account.
 +
 +
 +==== Endpoint ====
 +
 +|URI|<​nowiki>​https://​api.sentoriapp.com/​v2.0/​automation/​autoresponders/</​nowiki>​|
 +|Method|GET|
 +
 +
 +
 +==== Response ====
 +
 +|Field| Type|Description |
 +|ExternalID| string| ID of the Autoresponder.|
 +|Name|string| Name of the Autoresponder.|
 +|Description| string| Description of the Autoresponder.|
 +
 +|Example|<​code javascript>​
 +[
 + {
 + "​ExternalID":​ "​ABCD1234",​
 + "​Name":​ "New signups",​
 + "​Description":​ "Send new signups some initial offers."​
 + },
 + {
 + "​ExternalID":​ "​ABCD1235",​
 + "​Name":​ "10 step course",​
 + "​Description":​ "Send the 10 emails about the course each week."
 + }
 +]
 +</​code>​|