We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 690f239 commit a5e9abeCopy full SHA for a5e9abe
src/Discord/Endpoint.php
@@ -81,7 +81,7 @@ class Endpoint
81
public const THREAD = 'channels/:thread_id';
82
// GET
83
public const THREAD_MEMBERS = self::THREAD.'/thread-members';
84
- // PUT, DELETE
+ // GET, PUT, DELETE
85
public const THREAD_MEMBER = self::THREAD_MEMBERS.'/:user_id';
86
// PUT, DELETE
87
public const THREAD_MEMBER_ME = self::THREAD_MEMBERS.'/@me';
@@ -107,6 +107,8 @@ class Endpoint
107
108
109
public const GUILD_MEMBERS = self::GUILD.'/members';
110
+ // GET
111
+ public const GUILD_MEMBERS_SEARCH = self::GUILD.'/members/search';
112
// GET, PATCH, PUT, DELETE
113
public const GUILD_MEMBER = self::GUILD.'/members/:user_id';
114
// PATCH
0 commit comments