For more information about Subusers, visit the longform Subusers documentation. You can also manage Subusers in the SendGrid console.
This endpoint allows you to delete a subuser.
This is a permanent action. Once deleted, a subuser cannot be retrieved.
Bearer <<YOUR_API_KEY_HERE>>
The username of the Subuser.
No properties defined
1const client = require('@sendgrid/client');2client.setApiKey(process.env.SENDGRID_API_KEY);34const subuser_name = "Miss Christine Morgan";56const request = {7url: `/v3/subusers/${subuser_name}`,8method: 'DELETE',910}1112client.request(request)13.then(([response, body]) => {14console.log(response.statusCode);15console.log(response.body);16})17.catch(error => {18console.error(error);19});