Bot framework V4 how to add facebook receipt with discount





.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}







0















Is it possible to use the Discount option from Facebook Messenger's Receipt Template with Bot Framework V4?



Because I tried searching the samples, but they require string values, while the Facebook Template requires arrays.



Example:



"adjustments":[
{
"name":"New Customer Discount",
"amount":20
},
{
"name":"$10 Off Coupon",
"amount":10
}
],









share|improve this question































    0















    Is it possible to use the Discount option from Facebook Messenger's Receipt Template with Bot Framework V4?



    Because I tried searching the samples, but they require string values, while the Facebook Template requires arrays.



    Example:



    "adjustments":[
    {
    "name":"New Customer Discount",
    "amount":20
    },
    {
    "name":"$10 Off Coupon",
    "amount":10
    }
    ],









    share|improve this question



























      0












      0








      0








      Is it possible to use the Discount option from Facebook Messenger's Receipt Template with Bot Framework V4?



      Because I tried searching the samples, but they require string values, while the Facebook Template requires arrays.



      Example:



      "adjustments":[
      {
      "name":"New Customer Discount",
      "amount":20
      },
      {
      "name":"$10 Off Coupon",
      "amount":10
      }
      ],









      share|improve this question
















      Is it possible to use the Discount option from Facebook Messenger's Receipt Template with Bot Framework V4?



      Because I tried searching the samples, but they require string values, while the Facebook Template requires arrays.



      Example:



      "adjustments":[
      {
      "name":"New Customer Discount",
      "amount":20
      },
      {
      "name":"$10 Off Coupon",
      "amount":10
      }
      ],






      node.js botframework






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Jan 3 at 19:58









      mdrichardson - MSFT

      1,1231111




      1,1231111










      asked Jan 3 at 2:20









      EugeneEugene

      204




      204
























          1 Answer
          1






          active

          oldest

          votes


















          1














          Facebook Templates can be sent using ChannelData. Here is an example of a receipt template with adjustments:



          await context.sendActivity({
          text: 'Receipt',
          channelData: {
          "attachment":{
          "type":"template",
          "payload": {
          "template_type": "receipt",
          "recipient_name": "Stephane Crozatier",
          "order_number": "12345678902",
          "currency": "USD",
          "payment_method": "Visa 2345",
          "order_url": "http://petersapparel.parseapp.com/order?order_id=123456",
          "timestamp": "1428444852",
          "address": {
          "street_1": "1 Hacker Way",
          "street_2": "",
          "city": "Menlo Park",
          "postal_code": "94025",
          "state": "CA",
          "country": "US"
          },
          "summary": {
          "subtotal": 75.00,
          "shipping_cost": 4.95,
          "total_tax": 6.19,
          "total_cost": 56.14
          },
          "adjustments": [{
          "name": "New Customer Discount",
          "amount": 20
          },
          {
          "name": "$10 Off Coupon",
          "amount": 10
          }
          ],
          "elements": [{
          "title": "Classic White T-Shirt",
          "subtitle": "100% Soft and Luxurious Cotton",
          "quantity": 2,
          "price": 50,
          "currency": "USD",
          "image_url": "http://petersapparel.parseapp.com/img/whiteshirt.png"
          },
          {
          "title": "Classic Gray T-Shirt",
          "subtitle": "100% Soft and Luxurious Cotton",
          "quantity": 1,
          "price": 25,
          "currency": "USD",
          "image_url": "http://petersapparel.parseapp.com/img/grayshirt.png"
          }
          ]
          }
          }
          }
          });





          share|improve this answer


























          • hi I try using this template but facebook only response me with the Receipt text but not the actual receipt?

            – Eugene
            Jan 3 at 21:40













          • ok after removing the the facebook object inside channelData everything worked. Thanks!

            – Eugene
            Jan 3 at 21:55













          • @Eugene I've removed that portion from the answer. Thanks.

            – Eric Dahlvang
            Jan 4 at 17:05












          Your Answer






          StackExchange.ifUsing("editor", function () {
          StackExchange.using("externalEditor", function () {
          StackExchange.using("snippets", function () {
          StackExchange.snippets.init();
          });
          });
          }, "code-snippets");

          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "1"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });














          draft saved

          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54015545%2fbot-framework-v4-how-to-add-facebook-receipt-with-discount%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes









          1














          Facebook Templates can be sent using ChannelData. Here is an example of a receipt template with adjustments:



          await context.sendActivity({
          text: 'Receipt',
          channelData: {
          "attachment":{
          "type":"template",
          "payload": {
          "template_type": "receipt",
          "recipient_name": "Stephane Crozatier",
          "order_number": "12345678902",
          "currency": "USD",
          "payment_method": "Visa 2345",
          "order_url": "http://petersapparel.parseapp.com/order?order_id=123456",
          "timestamp": "1428444852",
          "address": {
          "street_1": "1 Hacker Way",
          "street_2": "",
          "city": "Menlo Park",
          "postal_code": "94025",
          "state": "CA",
          "country": "US"
          },
          "summary": {
          "subtotal": 75.00,
          "shipping_cost": 4.95,
          "total_tax": 6.19,
          "total_cost": 56.14
          },
          "adjustments": [{
          "name": "New Customer Discount",
          "amount": 20
          },
          {
          "name": "$10 Off Coupon",
          "amount": 10
          }
          ],
          "elements": [{
          "title": "Classic White T-Shirt",
          "subtitle": "100% Soft and Luxurious Cotton",
          "quantity": 2,
          "price": 50,
          "currency": "USD",
          "image_url": "http://petersapparel.parseapp.com/img/whiteshirt.png"
          },
          {
          "title": "Classic Gray T-Shirt",
          "subtitle": "100% Soft and Luxurious Cotton",
          "quantity": 1,
          "price": 25,
          "currency": "USD",
          "image_url": "http://petersapparel.parseapp.com/img/grayshirt.png"
          }
          ]
          }
          }
          }
          });





          share|improve this answer


























          • hi I try using this template but facebook only response me with the Receipt text but not the actual receipt?

            – Eugene
            Jan 3 at 21:40













          • ok after removing the the facebook object inside channelData everything worked. Thanks!

            – Eugene
            Jan 3 at 21:55













          • @Eugene I've removed that portion from the answer. Thanks.

            – Eric Dahlvang
            Jan 4 at 17:05
















          1














          Facebook Templates can be sent using ChannelData. Here is an example of a receipt template with adjustments:



          await context.sendActivity({
          text: 'Receipt',
          channelData: {
          "attachment":{
          "type":"template",
          "payload": {
          "template_type": "receipt",
          "recipient_name": "Stephane Crozatier",
          "order_number": "12345678902",
          "currency": "USD",
          "payment_method": "Visa 2345",
          "order_url": "http://petersapparel.parseapp.com/order?order_id=123456",
          "timestamp": "1428444852",
          "address": {
          "street_1": "1 Hacker Way",
          "street_2": "",
          "city": "Menlo Park",
          "postal_code": "94025",
          "state": "CA",
          "country": "US"
          },
          "summary": {
          "subtotal": 75.00,
          "shipping_cost": 4.95,
          "total_tax": 6.19,
          "total_cost": 56.14
          },
          "adjustments": [{
          "name": "New Customer Discount",
          "amount": 20
          },
          {
          "name": "$10 Off Coupon",
          "amount": 10
          }
          ],
          "elements": [{
          "title": "Classic White T-Shirt",
          "subtitle": "100% Soft and Luxurious Cotton",
          "quantity": 2,
          "price": 50,
          "currency": "USD",
          "image_url": "http://petersapparel.parseapp.com/img/whiteshirt.png"
          },
          {
          "title": "Classic Gray T-Shirt",
          "subtitle": "100% Soft and Luxurious Cotton",
          "quantity": 1,
          "price": 25,
          "currency": "USD",
          "image_url": "http://petersapparel.parseapp.com/img/grayshirt.png"
          }
          ]
          }
          }
          }
          });





          share|improve this answer


























          • hi I try using this template but facebook only response me with the Receipt text but not the actual receipt?

            – Eugene
            Jan 3 at 21:40













          • ok after removing the the facebook object inside channelData everything worked. Thanks!

            – Eugene
            Jan 3 at 21:55













          • @Eugene I've removed that portion from the answer. Thanks.

            – Eric Dahlvang
            Jan 4 at 17:05














          1












          1








          1







          Facebook Templates can be sent using ChannelData. Here is an example of a receipt template with adjustments:



          await context.sendActivity({
          text: 'Receipt',
          channelData: {
          "attachment":{
          "type":"template",
          "payload": {
          "template_type": "receipt",
          "recipient_name": "Stephane Crozatier",
          "order_number": "12345678902",
          "currency": "USD",
          "payment_method": "Visa 2345",
          "order_url": "http://petersapparel.parseapp.com/order?order_id=123456",
          "timestamp": "1428444852",
          "address": {
          "street_1": "1 Hacker Way",
          "street_2": "",
          "city": "Menlo Park",
          "postal_code": "94025",
          "state": "CA",
          "country": "US"
          },
          "summary": {
          "subtotal": 75.00,
          "shipping_cost": 4.95,
          "total_tax": 6.19,
          "total_cost": 56.14
          },
          "adjustments": [{
          "name": "New Customer Discount",
          "amount": 20
          },
          {
          "name": "$10 Off Coupon",
          "amount": 10
          }
          ],
          "elements": [{
          "title": "Classic White T-Shirt",
          "subtitle": "100% Soft and Luxurious Cotton",
          "quantity": 2,
          "price": 50,
          "currency": "USD",
          "image_url": "http://petersapparel.parseapp.com/img/whiteshirt.png"
          },
          {
          "title": "Classic Gray T-Shirt",
          "subtitle": "100% Soft and Luxurious Cotton",
          "quantity": 1,
          "price": 25,
          "currency": "USD",
          "image_url": "http://petersapparel.parseapp.com/img/grayshirt.png"
          }
          ]
          }
          }
          }
          });





          share|improve this answer















          Facebook Templates can be sent using ChannelData. Here is an example of a receipt template with adjustments:



          await context.sendActivity({
          text: 'Receipt',
          channelData: {
          "attachment":{
          "type":"template",
          "payload": {
          "template_type": "receipt",
          "recipient_name": "Stephane Crozatier",
          "order_number": "12345678902",
          "currency": "USD",
          "payment_method": "Visa 2345",
          "order_url": "http://petersapparel.parseapp.com/order?order_id=123456",
          "timestamp": "1428444852",
          "address": {
          "street_1": "1 Hacker Way",
          "street_2": "",
          "city": "Menlo Park",
          "postal_code": "94025",
          "state": "CA",
          "country": "US"
          },
          "summary": {
          "subtotal": 75.00,
          "shipping_cost": 4.95,
          "total_tax": 6.19,
          "total_cost": 56.14
          },
          "adjustments": [{
          "name": "New Customer Discount",
          "amount": 20
          },
          {
          "name": "$10 Off Coupon",
          "amount": 10
          }
          ],
          "elements": [{
          "title": "Classic White T-Shirt",
          "subtitle": "100% Soft and Luxurious Cotton",
          "quantity": 2,
          "price": 50,
          "currency": "USD",
          "image_url": "http://petersapparel.parseapp.com/img/whiteshirt.png"
          },
          {
          "title": "Classic Gray T-Shirt",
          "subtitle": "100% Soft and Luxurious Cotton",
          "quantity": 1,
          "price": 25,
          "currency": "USD",
          "image_url": "http://petersapparel.parseapp.com/img/grayshirt.png"
          }
          ]
          }
          }
          }
          });






          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited Jan 4 at 17:05

























          answered Jan 3 at 20:02









          Eric DahlvangEric Dahlvang

          6,75742244




          6,75742244













          • hi I try using this template but facebook only response me with the Receipt text but not the actual receipt?

            – Eugene
            Jan 3 at 21:40













          • ok after removing the the facebook object inside channelData everything worked. Thanks!

            – Eugene
            Jan 3 at 21:55













          • @Eugene I've removed that portion from the answer. Thanks.

            – Eric Dahlvang
            Jan 4 at 17:05



















          • hi I try using this template but facebook only response me with the Receipt text but not the actual receipt?

            – Eugene
            Jan 3 at 21:40













          • ok after removing the the facebook object inside channelData everything worked. Thanks!

            – Eugene
            Jan 3 at 21:55













          • @Eugene I've removed that portion from the answer. Thanks.

            – Eric Dahlvang
            Jan 4 at 17:05

















          hi I try using this template but facebook only response me with the Receipt text but not the actual receipt?

          – Eugene
          Jan 3 at 21:40







          hi I try using this template but facebook only response me with the Receipt text but not the actual receipt?

          – Eugene
          Jan 3 at 21:40















          ok after removing the the facebook object inside channelData everything worked. Thanks!

          – Eugene
          Jan 3 at 21:55







          ok after removing the the facebook object inside channelData everything worked. Thanks!

          – Eugene
          Jan 3 at 21:55















          @Eugene I've removed that portion from the answer. Thanks.

          – Eric Dahlvang
          Jan 4 at 17:05





          @Eugene I've removed that portion from the answer. Thanks.

          – Eric Dahlvang
          Jan 4 at 17:05




















          draft saved

          draft discarded




















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54015545%2fbot-framework-v4-how-to-add-facebook-receipt-with-discount%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          MongoDB - Not Authorized To Execute Command

          in spring boot 2.1 many test slices are not allowed anymore due to multiple @BootstrapWith

          Npm cannot find a required file even through it is in the searched directory