import Whop from '@whop/sdk';
const client = new Whop({
apiKey: process.env['WHOP_API_KEY'], // This is the default and can be omitted
});
const dmMember = await client.dmMembers.delete('id');
console.log(dmMember);trueRemove a user from a DM channel. An admin can remove any member, and a member can remove themselves.
Required permissions:
dms:channel:manageimport Whop from '@whop/sdk';
const client = new Whop({
apiKey: process.env['WHOP_API_KEY'], // This is the default and can be omitted
});
const dmMember = await client.dmMembers.delete('id');
console.log(dmMember);trueA company API key, company scoped JWT, app API key, or user OAuth token. You must prepend your key/token with the word 'Bearer', which will look like Bearer ***************************
The unique identifier of the DM channel member to remove.
A successful response
Represents true or false values.
Was this page helpful?