Guest User

Untitled

a guest
Nov 15th, 2018
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. $.ajax({
  2. url: botPostUrl,
  3. type:"POST",
  4. success: function(result){
  5. console.log(result);
  6. },
  7. error: function(error){
  8. console.log(`Error ${error}`);
  9. },
  10. data: {
  11. "text" : messageContents + "n" + mentionedMessageBlock,
  12. "bot_id" : "my_bot_id",
  13. "attachments": [
  14. {
  15. "type": "mentions",
  16. "user_ids": [mentionedMembersUserIds],
  17. "loci": [loci]
  18. }
  19. ]
  20. },
  21. async: false
  22. });
Add Comment
Please, Sign In to add comment