Advertisement
shingz96

Update FB Comment Sequence

Nov 5th, 2020 (edited)
1,572
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. {
  2.     "fb_live_video_id": 77, //fb live video id
  3.     "comment_sequences": [
  4.         {
  5.             "id": 25, // fb comment sequence id , when have this id, the fb comment sequence will be update
  6.             "fb_live_video_id": 77,
  7.             "comment_template_id": "", //pass empty string to set null (for others, so can use custom message)
  8.             "start_after": 0,
  9.             "sequence_type": "message",
  10.             "message": "hellow all new"
  11.         },
  12.         {
  13.             "comment_template_id": "", // this fb comment sequence will be created instead of update
  14.             "start_after": 0,
  15.             "sequence_type": "message",
  16.             "message": "hellow all new"
  17.         },
  18.         {
  19.             "id": 59,
  20.             "fb_live_video_id": 77,
  21.             "comment_template_id": null,
  22.             "start_after": 1200,
  23.             "sequence_type": "product",
  24.             "message": "selling product 59 99",
  25.             "live_product": {
  26.                 "id": 65, // live product id, must have if need update
  27.                 "trigger_keyword": "xyza",
  28.                 "markup_price": "30.0",
  29.                 "max_qty_per_user": 10,
  30.                 "quantity_to_sell": 100,
  31.                 "expire_minute": 360
  32.             }
  33.         },
  34.         {
  35.             "id": 60,
  36.             "fb_live_video_id": 77,
  37.             "comment_template_id": null,
  38.             "start_after": 1200,
  39.             "sequence_type": "product",
  40.             "message": "selling 77",
  41.             "live_product": {
  42.                 "id": 66,
  43.                 "fb_live_video_id": 77,
  44.                 "trigger_keyword": "xyza00",
  45.                 "markup_price": "30.0",
  46.                 "max_qty_per_user": 10,
  47.                 "quantity_to_sell": 100,
  48.                 "status": "active",
  49.                 "expire_minute": 720
  50.             }
  51.         },
  52.         {
  53.             "id": 61,
  54.             "fb_live_video_id": 77,
  55.             "comment_template_id": null,
  56.             "start_after": 1200,
  57.             "sequence_type": "product",
  58.             "message": "selling heng77 99",
  59.             "live_product": {
  60.                 "id": 67,
  61.                 "reseller_id": 5,
  62.                 "fb_live_video_id": 77,
  63.                 "trigger_keyword": "qweasd",
  64.                 "markup_price": "30.0",
  65.                 "max_qty_per_user": 10,
  66.                 "quantity_to_sell": 100,
  67.                 "expire_minute": 7
  68.             }
  69.         },
  70.         {
  71.             "id": 62,
  72.             "live_product": {
  73.                 "id": 67,
  74.                 "trigger_keyword": "qweasd11",
  75.                 "markup_price": "300.0",
  76.                 "max_qty_per_user": 100,
  77.                 "quantity_to_sell": 1000,
  78.                 "reseller_id": 99,
  79.                 "reseller_product_ids": [1,2,3]
  80.             },
  81.             "message": "selling heng huat"
  82.         }
  83.     ]
  84. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement