Search + K

Command Palette

Search for a command to run...

Sign In

create_application_emoji

POST /applications/{application_id}/emojis
Copy endpoint
https://discord.com/api/v10

Parameters

path Path Parameters

Name Type
application_id required
type SnowflakeType = string

Request Body

application/json required
{ name: string;image: string; }

Responses

201 application/json

201 response for create_application_emoji

interface EmojiResponse {
id: SnowflakeType
type SnowflakeType = string
;
name: string;
user?: UserResponse
interface UserResponse {
id: SnowflakeType;
username: string;
avatar?: string | null;
discriminator: string;
public_flags: number;
flags: Int53Type;
bot?: boolean;
system?: boolean;
banner?: string | null;
accent_color?: number | null;
global_name?: string | null;
avatar_decoration_data?: UserAvatarDecorationResponse | null;
collectibles?: UserCollectiblesResponse | null;
primary_guild?: UserPrimaryGuildResponse | null;
}
;
roles: SnowflakeType
type SnowflakeType = string
[]
;
require_colons: boolean;
managed: boolean;
animated: boolean;
available: boolean;
}

Client Errors

429 application/json

Client ratelimited response

type RatelimitedResponse = never
4XX application/json

Client error response

type ErrorResponse = never