Application Commands
Application commands are commands that an application can register to Discord. They provide users a first-class way of interacting directly with your application that feels deeply integrated into Discord.
Application Command Object
Application Command Structure
Field | Type | Description | Valid Types |
---|---|---|---|
id | snowflake | unique id of the command | all |
type? | one of application command type | the type of command, defaults 1 if not set | all |
application_id | snowflake | unique id of the parent application | all |
guild_id? | snowflake | guild id of the command, if not global | all |
name | string | 1-32 character name | all |
description | string | 1-100 character description for CHAT_INPUT commands, empty string for USER and MESSAGE commands | all |
options? | array of application command option | the parameters for the command, max 25 | CHAT_INPUT |
default_permission? | boolean (default true ) | whether the command is enabled by default when the app is added to a guild | all |
Application Command Types
Name | Type | Description |
---|---|---|
CHAT_INPUT | 1 | Slash commands; a text-based command that shows up when a user types / |
USER | 2 | A UI-based command that shows up when you right click or tap on a user |
MESSAGE | 3 | A UI-based command that shows up when you right click or tap on a message |
Application Command Option Structure
Field | Type | Description |
---|---|---|
type | one of application command option type | the type of option |
name | string | 1-32 lowercase character name matching ^[\w-]{1,32}$ |
description | string | 1-100 character description |
required? | boolean | if the parameter is required or optional--default false |
choices? | array of application command option choice | choices for STRING , INTEGER , and NUMBER types for the user to pick from, max 25 |
options? | array of application command option | if the option is a subcommand or subcommand group type, this nested options will be the parameters |
Application Command Option Type
Name | Value | Note |
---|---|---|
SUB_COMMAND | 1 | |
SUB_COMMAND_GROUP | 2 | |
STRING | 3 | |
INTEGER | 4 | Any integer between -253 and 253 |
BOOLEAN | 5 | |
USER | 6 | |
CHANNEL | 7 | Includes all channel types + categories |
ROLE | 8 | |
MENTIONABLE | 9 | Includes users and roles |
NUMBER | 10 | Any double between -253 and 253 |
Application Command Option Choice Structure
If you specify choices
for an option, they are the only valid values for a user to pick
Field | Type | Description |
---|---|---|
name | string | 1-100 character choice name |
value | string, integer, or double | value of the choice, up to 100 characters if string |
Application Command Interaction Data Option Structure
All options have names, and an option can either be a parameter and input value--in which case value
will be set--or it can denote a subcommand or group--in which case it will contain a top-level key and another array of options
.
value
and options
are mutually exclusive.
Field | Type | Description |
---|---|---|
name | string | the name of the parameter |
type | integer | value of application command option type |
value? | application command option type | the value of the pair |
options? | array of application command interaction data option | present if this option is a group or subcommand |
Authorizing Your Application
Application commands do not depend on a bot user in the guild; they use the interactions model. To create commands in a guild, your app must be authorized with the applications.commands
scope.
When requesting this scope, we "shortcut" the OAuth2 flow similar to adding a bot. You don't need to complete the flow, exchange for a token, or any of that.
If your application does not require a bot user within the guild for its commands to work, you no longer need to add for the bot scope or specific permissions.
Registering a Command
Commands can be scoped either globally or to a specific guild. Global commands are available for every guild that adds your app. An individual app's global commands are also available in DMs if that app has a bot that shares a mutual guild with the user.
Guild commands are specific to the guild you specify when making them. Guild commands are not available in DMs. Command names are unique per application, per type, within each scope (global and guild). That means:
- Your app cannot have two global
CHAT_INPUT
commands with the same name - Your app cannot have two guild
CHAT_INPUT
commands within the same name on the same guild - Your app cannot have two global
USER
commands with the same name - Your app can have a global and guild
CHAT_INPUT
command with the same name - Your app can have a global
CHAT_INPUT
andUSER
command with the same name - Multiple apps can have commands with the same names
This list is non-exhaustive. In general, remember that command names must be unique per application, per type, and within each scope (global and guild).
An app can have the following number of commands:
- 100 global
CHAT_INPUT
commands - 5 global
USER
commands - 5 global
MESSAGE
commands
As well as the same amount of guild-specific commands per guild.
Making a Global Command
Global commands are available on all your app's guilds. Global commands are cached for 1 hour. That means that new global commands will fan out slowly across all guilds, and will be guaranteed to be updated in an hour.
Global commands have inherent read-repair functionality. That means that if you make an update to a global command, and a user tries to use that command before it has updated for them, Discord will do an internal version check and reject the command, and trigger a reload for that command.
To make a global command, make an HTTP POST call like this:
Making a Guild Command
Guild commands are available only within the guild specified on creation. Guild commands update instantly. We recommend you use guild commands for quick testing, and global commands when they're ready for public use.
To make a guild command, make a similar HTTP POST call, but scope it to a specific guild_id
:
Updating and Deleting a Command
Commands can be deleted and updated by making DELETE
and PATCH
calls to the command endpoint. Those endpoints are
applications/<my_application_id>/commands/<command_id>
for global commands, orapplications/<my_application_id>/guilds/<guild_id>/commands/<command_id>
for guild commands
Because commands have unique names within a type and scope, we treat POST
requests for new commands as upserts. That means making a new command with an already-used name for your application will update the existing command.
Full documentation of endpoints can be found here.
Permissions
Application Command Permissions Object
Guild Application Command Permissions Structure
Returned when fetching the permissions for a command in a guild.
Field | Type | Description |
---|---|---|
id | snowflake | the id of the command |
application_id | snowflake | the id of the application the command belongs to |
guild_id | snowflake | the id of the guild |
permissions | array of application command permissions | the permissions for the command in the guild |
Application Command Permissions Structure
Application command permissions allow you to enable or disable commands for specific users or roles within a guild.
Field | Type | Description |
---|---|---|
id | snowflake | the id of the role or user |
type | application command permission type | role or user |
permission | boolean | true to allow, false , to disallow |
Application Command Permission Type
Name | Value |
---|---|
ROLE | 1 |
USER | 2 |
Need to keep some of your commands safe from prying eyes, or only available to the right people? Commands support permission overwrites! For both guild and global commands of all types, you can enable or disable a specific user or role in a guild from using a command.
You can also set a default_permission
on your commands if you want them to be disabled by default when your app is added to a new guild. Setting default_permission
to false
will disallow anyone in a guild from using the command—even Administrators and guild owners—unless a specific overwrite is configured. It will also disable the command from being usable in DMs.
For example, this command will not be usable by anyone in any guilds by default:
{"name": "permissions_test","description": "A test of default permissions","type": 1,"default_permission": false}
To enable it just for a moderator role:
Slash Commands
Slash commands—the CHAT_INPUT
type—are a type of application command. They're made up of a name, description, and a block of options
, which you can think of like arguments to a function. The name and description help users find your command among many others, and the options
validate user input as they fill out your command.
Slash commands can also have groups and subcommands to further organize commands. More on those later.
Example Slash Command
{"name": "blep","type": 1,"description": "Send a random adorable animal photo","options": [{"name": "animal","description": "The type of animal","type": 3,"required": true,"choices": [{"name": "Dog","value": "animal_dog"},{"name": "Cat","value": "animal_cat"},{"name": "Penguin","value": "animal_penguin"}]},{"name": "only_smol","description": "Whether to show only baby animals","type": 5,"required": false}]}
When someone uses a slash command, your application will receive an interaction:
Example Slash Command Interaction
{"type": 2,"token": "A_UNIQUE_TOKEN","member": {"user": {"id": "53908232506183680","username": "mason","global_name": "Mason","avatar": "a_d5efa99b3eeaa7dd43acca82f5692432","discriminator": "0","public_flags": 131141,"avatar_decoration_data": null},"roles": ["539082325061836999"],"premium_since": null,"permissions": "2147483647","pending": false,"nick": null,"mute": false,"joined_at": "2017-03-13T19:19:14.040000+00:00","deaf": false},"id": "786008729715212338","guild_id": "290926798626357999","data": {"options": [{"name": "cardname","value": "The Gitrog Monster"}],"name": "cardsearch","id": "771825006014889984"},"channel_id": "645027906669510667"}
Subcommands and Subcommand Groups
For those developers looking to make more organized and complex groups of commands, look no further than subcommands and groups.
Subcommands organize your commands by specifying actions within a command or group.
Subcommand Groups organize your subcommands by grouping subcommands by similar action or resource within a command.
These are not enforced rules. You are free to use subcommands and groups however you'd like; it's just how we think about them.
We support nesting one level deep within a group, meaning your top level command can contain subcommand groups, and those groups can contain subcommands. That is the only kind of nesting supported. Here's some visual examples:
Example Walkthrough
Let's look at an example. Let's imagine you run a moderation bot. You want to make a /permissions
command that can do the following:
- Get the guild permissions for a user or a role
- Get the permissions for a user or a role on a specific channel
- Change the guild permissions for a user or a role
- Change the permissions for a user or a role on a specific channel
We'll start by defining the top-level information for /permissions
:
Now we have a command named permissions
. We want this command to be able to affect users and roles. Rather than making two separate commands, we can use subcommand groups. We want to use subcommand groups here because we are grouping commands on a similar resource: user
or role
.
You'll notice that a command like this will not show up in the command explorer. That's because groups are effectively "folders" for commands, and we've made two empty folders. So let's continue.
Now that we've effectively made user
and role
"folders", we want to be able to either get
and edit
permissions. Within the subcommand groups, we can make subcommands for get
and edit
:
Now, we need some arguments! If we chose user
, we need to be able to pick a user; if we chose role
, we need to be able to pick a role. We also want to be able to pick between guild-level permissions and channel-specific permissions. For that, we can use optional arguments:
And, done! The JSON looks a bit complicated, but what we've ended up with is a single command that can be scoped to multiple actions, and then further scoped to a particular resource, and then even further scope with optional arguments. Here's what it looks like all put together.
User Commands
User commands are application commands that appear on the context menu (right click or tap) of users. They're a great way to surface quick actions for your app that target users. They don't take any arguments, and will return the user on whom you clicked or tapped in the interaction response.
Example User Command
{"name": "High Five","type": 2}
When someone uses a user command, your application will receive an interaction:
Example User Command Interaction
{"application_id": "775799577604522054","channel_id": "772908445358620702","data": {"id": "866818195033292850","name": "context-menu-user-2","resolved": {"members": {"809850198683418695": {"avatar": null,"joined_at": "2021-02-12T18:25:07.972000+00:00","nick": null,"pending": false,"permissions": "246997699136","premium_since": null,"roles": []}},"users": {"809850198683418695": {"id": "809850198683418695","username": "voltydemo","global_name": "VoltyDemo","avatar": "afc428077119df8aabbbd84b0dc90c74","discriminator": "0","public_flags": 0,"bot": true,"avatar_decoration_data": null}}},"target_id": "809850198683418695","type": 2},"guild_id": "772904309264089089","id": "867794291820986368","member": {"avatar": null,"deaf": false,"joined_at": "2020-11-02T20:46:57.364000+00:00","mute": false,"nick": null,"pending": false,"permissions": "274877906943","premium_since": null,"roles": ["785609923542777878"],"user": {"id": "167348773423415296","username": "ian","global_name": "Ian","avatar": "a_f03401914fb4f3caa9037578ab980920","discriminator": "0","public_flags": 131141,"avatar_decoration_data": null}},"token": "UNIQUE_TOKEN","type": 2,"version": 1}
Message Commands
Message commands are application commands that appear on the context menu (right click or tap) of messages. They're a great way to surface quick actions for your app that target messages. They don't take any arguments, and will return the message on whom you clicked or tapped in the interaction response.
Example Message Command
{"name": "Bookmark","type": 3}
When someone uses a message command, your application will receive an interaction:
Example Message Command Interaction
{"application_id": "775799577604522054","channel_id": "772908445358620702","data": {"id": "866818195033292851","name": "context-menu-message-2","resolved": {"messages": {"867793854505943041": {"attachments": [],"author": {"id": "167348773423415296","username": "ian","global_name": "Ian","avatar": "a_f03401914fb4f3caa9037578ab980920","discriminator": "0","public_flags": 131141,"avatar_decoration_data": null},"channel_id": "772908445358620702","components": [],"content": "some message","edited_timestamp": null,"embeds": [],"flags": 0,"id": "867793854505943041","mention_everyone": false,"mention_roles": [],"mentions": [],"pinned": false,"timestamp": "2021-07-22T15:42:57.744000+00:00","tts": false,"type": 0}}},"target_id": "867793854505943041","type": 3},"guild_id": "772904309264089089","id": "867793873336926249","member": {"avatar": null,"deaf": false,"joined_at": "2020-11-02T20:46:57.364000+00:00","mute": false,"nick": null,"pending": false,"permissions": "274877906943","premium_since": null,"roles": ["785609923542777878"],"user": {"id": "167348773423415296","username": "ian","global_name": "Ian","avatar": "a_f03401914fb4f3caa9037578ab980920","discriminator": "0","public_flags": 131141,"avatar_decoration_data": null}},"token": "UNIQUE_TOKEN","type": 2,"version": 1}
Endpoints
Get Global Application Commands
GET
/applications/{application.id}/commands
Get Global Application Commands
GET
/applications/{application.id}/commands
Fetch all of the global commands for your application. Returns an array of application command objects.
Create Global Application Command
POST
/applications/{application.id}/commands
Create Global Application Command
POST
/applications/{application.id}/commands
Create a new global command. New global commands will be available in all guilds after 1 hour. Returns 201
and an application command object.
JSON Params
Field | Type | Description |
---|---|---|
name | string | 1-32 lowercase character name matching ^[\w-]{1,32}$ |
description | string | 1-100 character description |
options? | array of application command option | the parameters for the command |
default_permission? | boolean (default true ) | whether the command is enabled by default when the app is added to a guild |
type? | one of application command type | the type of command, defaults 1 if not set |
Get Global Application Command
GET
/applications/{application.id}/commands/{command.id}
Fetch a global command for your application. Returns an application command object.
Edit Global Application Command
PATCH
/applications/{application.id}/commands/{command.id}
Edit a global command. Updates will be available in all guilds after 1 hour. Returns 200
and an application command object.
JSON Params
Field | Type | Description |
---|---|---|
name? | string | 1-32 lowercase character name matching ^[\w-]{1,32}$ |
description? | string | 1-100 character description |
options? | array of application command option | the parameters for the command |
default_permission? | boolean (default true ) | whether the command is enabled by default when the app is added to a guild |
Delete Global Application Command
DELETE
/applications/{application.id}/commands/{command.id}
Deletes a global command. Returns 204
.
Bulk Overwrite Global Application Commands
PUT
/applications/{application.id}/commands
Takes a list of application commands, overwriting existing commands that are registered globally for this application. Updates will be available in all guilds after 1 hour. Returns 200
and a list of application command objects. Commands that do not already exist will count toward daily application command create limits.
Get Guild Application Commands
GET
/applications/{application.id}/guilds/{guild.id}/commands
Fetch all of the guild commands for your application for a specific guild. Returns an array of application command objects.
Create Guild Application Command
POST
/applications/{application.id}/guilds/{guild.id}/commands
Create a new guild command. New guild commands will be available in the guild immediately. Returns 201
and an application command object. If the command did not already exist, it will count toward daily application command create limits.
JSON Params
Field | Type | Description |
---|---|---|
name | string | 1-32 lowercase character name matching ^[\w-]{1,32}$ |
description | string | 1-100 character description |
options? | array of application command option | the parameters for the command |
default_permission? | boolean (default true ) | whether the command is enabled by default when the app is added to a guild |
type? | one of application command type | the type of command, defaults 1 if not set |
Get Guild Application Command
GET
/applications/{application.id}/guilds/{guild.id}/commands/{command.id}
Fetch a guild command for your application. Returns an application command object.
Edit Guild Application Command
PATCH
/applications/{application.id}/guilds/{guild.id}/commands/{command.id}
Edit a guild command. Updates for guild commands will be available immediately. Returns 200
and an application command object.
JSON Params
Field | Type | Description |
---|---|---|
name? | string | 1-32 lowercase character name matching ^[\w-]{1,32}$ |
description? | string | 1-100 character description |
options? | array of application command option | the parameters for the command |
default_permission? | boolean (default true ) | whether the command is enabled by default when the app is added to a guild |
Delete Guild Application Command
DELETE
/applications/{application.id}/guilds/{guild.id}/commands/{command.id}
Delete a guild command. Returns 204
on success.
Bulk Overwrite Guild Application Commands
PUT
/applications/{application.id}/guilds/{guild.id}/commands
Takes a list of application commands, overwriting existing commands for the guild. Returns 200
and a list of application command objects.
Get Guild Application Command Permissions
GET
/applications/{application.id}/guilds/{guild.id}/commands/permissions
Fetches command permissions for all commands for your application in a guild. Returns an array of guild application command permissions objects.
Get Application Command Permissions
GET
/applications/{application.id}/guilds/{guild.id}/commands/{command.id}/permissions
Fetches command permissions for a specific command for your application in a guild. Returns a guild application command permissions object.
Edit Application Command Permissions
PUT
/applications/{application.id}/guilds/{guild.id}/commands/{command.id}/permissions
Edits command permissions for a specific command for your application in a guild. You can only add up to 10 permission overwrites for a command. Returns a GuildApplicationCommandPermissions object.
JSON Params
Field | Type | Description |
---|---|---|
permissions | array of application command permissions | the permissions for the command in the guild |
Batch Edit Application Command Permissions
PUT
/applications/{application.id}/guilds/{guild.id}/commands/permissions
Batch edits permissions for all commands in a guild. Takes an array of partial guild application command permissions objects including id
and permissions
.
You can only add up to 10 permission overwrites for a command.
Returns an array of GuildApplicationCommandPermissions objects.