Slack
SLACKBOT_ADD_EMOJI
Adds a custom emoji to a Slack workspace given a unique name and an image URL; subject to workspace emoji limits.
Remote slackbot
Other tools also called SLACKBOT_ADD_EMOJI?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"url": {
"type": "string",
"title": "Url",
"examples": [
"https://example.com/emoji/partyparrot.gif",
"https://cdn.example.com/images/approved_stamp.png"
],
"description": "The URL of the image file to be used as the custom emoji. The image should be accessible via HTTP/HTTPS and meet Slack's emoji requirements (e.g., size, format). Supported formats typically include PNG, GIF, and JPEG."
},
"name": {
"type": "string",
"title": "Name",
"examples": [
"partyparrot",
"approved_stamp",
"team_logo_small"
],
"description": "The desired name for the new custom emoji. This name will be used to invoke the emoji (e.g., if name is 'partyparrot', it's used as ':partyparrot:'). Colons around the name are not required when providing this field."
},
"token": {
"type": "string",
"title": "Token",
"description": "Authentication token used to authorize the request to add a custom emoji to the Slack workspace."
}
}
}