Try our new Claude Code Skill to automatically integrate Hyperspell into your project
import Hyperspell from 'hyperspell';
const client = new Hyperspell({
apiKey: process.env['HYPERSPELL_API_KEY'], // This is the default and can be omitted
});
const response = await client.auth.deleteUser();
console.log(response.message);{
"success": true,
"message": "<string>"
}Endpoint to delete user.
import Hyperspell from 'hyperspell';
const client = new Hyperspell({
apiKey: process.env['HYPERSPELL_API_KEY'], // This is the default and can be omitted
});
const response = await client.auth.deleteUser();
console.log(response.message);{
"success": true,
"message": "<string>"
}Was this page helpful?