We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
What is the API for mentioning users with a bot?
I'm trying to mention specific users with a bot, but I am unable to do so. I am trying the below POST message body but the user isn't mentioned.
await axios({ method: "post", url: GROUPME_API, data: { bot_id: botName, text: " - you've been mentioned!", attachments: [ { type: "mentions", user_ids: [1234, 4567], loci: [[0, 0]], }, ], }, })
I am expecting the above to send a message: @user - you've been mentioned! but the @user is not being added.
@user - you've been mentioned!
@user
The text was updated successfully, but these errors were encountered:
No branches or pull requests
What is the API for mentioning users with a bot?
I'm trying to mention specific users with a bot, but I am unable to do so. I am trying the below POST message body but the user isn't mentioned.
I am expecting the above to send a message:
@user - you've been mentioned!
but the@user
is not being added.The text was updated successfully, but these errors were encountered: