The Twilio SendGrid Account Provisioning API provides a platform for Twilio SendGrid resellers to manage their customers. This API is for companies that have a formal reseller partnership with Twilio SendGrid.
You can access Twilio SendGrid sub-account functionality without becoming a reseller. If you require sub-account functionality, see the Twilio SendGrid Subusers feature, which is available with Pro and Premier plans.
The Account Provisioning API offering operations allow you to update and list Twilio SendGrid features or offerings available for your customer accounts.
The Get Account Offerings operation allows you to retrieve the offerings assigned to a specific customer account. Offerings are Twilio SendGrid features or offerings such as a dedicated IP address or Marketing Campaigns package. Offerings can be added to or removed from a customer account using the Update Account Offerings operation.
Retrieves offering information about the specified account.
Bearer <<YOUR_API_KEY_HERE>>
Twilio SendGrid account ID
OK
1const client = require('@sendgrid/client');2client.setApiKey(process.env.SENDGRID_API_KEY);34const accountID = "ZGkrHSypTsudrGkmdpJJ";56const request = {7url: `/v3/partners/accounts/${accountID}/offerings`,8method: 'GET',910}1112client.request(request)13.then(([response, body]) => {14console.log(response.statusCode);15console.log(response.body);16})17.catch(error => {18console.error(error);19});