import { whopApi } from "@/lib/whop-api"; const result = await whopApi.sendDirectMessageToUser({ toUserIdOrUsername: "xxxxxxxxxxx" /* Required! */, message: "some string" /* Required! */, });
Example output:
const response = { // Sends a message to a user sendMessage: "some string", };
Was this page helpful?