zebleck
05/03/2023, 4:13 PMrp_st
05/03/2023, 4:56 PMzebleck
05/03/2023, 5:52 PMrp_st
05/03/2023, 6:08 PMzebleck
05/04/2023, 11:14 AMimport {deleteUser} from "supertokens-node";
async function deleteUserForId() {
let userId = "..." // get the user ID
await deleteUser(userId); // this will succeed even if the userId didn't exist.
}
rp_st
05/04/2023, 11:37 AMawait deleteUser(userId);
, you can run your post delete operaitons..zebleck
05/04/2023, 12:40 PM