## Delete `client.users.delete(stringusername, RequestOptionsoptions?): void` **delete** `/user/{username}` This can only be done by the logged in user. ### Parameters - `username: string` ### Example ```typescript import JustinDocsTest from 'justin-docs-test'; const client = new JustinDocsTest({ apiKey: 'My API Key', }); await client.users.delete('username'); ```