# InstalledAddOns Resource

> \[!WARNING]
>
> The Preview API for this resource is deprecated. To migrate from Preview to V1, refer to the Marketplace API migration guide for [users](/docs/marketplace/listings/api-migration-users) or [publishers](/docs/marketplace/publishers/api-migration-publishers).

The InstalledAddOns resource allows you to install, configure, and manage installed Add-on Listings for an Account. Multiple instances of an Add-on Listing can be installed on an Account, each with a different configuration.

> \[!NOTE]
>
> This API only supports Add-on Listings that are in General Availability (GA) or Beta state. Listings that are labeled as Coming Soon or Developer Preview are not accessible via the API and must be managed in the Console.

## InstalledAddOn Properties

```json
{"type":"object","refName":"marketplace.v1.installed_add_on","modelName":"marketplace_v1_installed_add_on","properties":{"sid":{"type":"string","minLength":34,"maxLength":34,"pattern":"^XE[0-9a-fA-F]{32}$","nullable":true,"description":"The unique string that we created to identify the InstalledAddOn resource. This Sid can also be found in the Console on that specific Add-ons page as the 'Available Add-on Sid'."},"account_sid":{"type":"string","minLength":34,"maxLength":34,"pattern":"^AC[0-9a-fA-F]{32}$","nullable":true,"description":"The SID of the [Account](/docs/iam/api/account) that created the InstalledAddOn resource."},"friendly_name":{"type":"string","nullable":true,"description":"The string that you assigned to describe the resource."},"description":{"type":"string","nullable":true,"description":"A short description of the Add-on's functionality."},"configuration":{"nullable":true,"type":"object","description":"The JSON object that represents the current configuration of installed Add-on."},"unique_name":{"type":"string","nullable":true,"description":"An application-defined string that uniquely identifies the resource."},"date_created":{"type":"string","format":"date-time","nullable":true,"description":"The date and time in GMT when the resource was created specified in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format."},"date_updated":{"type":"string","format":"date-time","nullable":true,"description":"The date and time in GMT when the resource was last updated specified in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format."},"url":{"type":"string","format":"uri","nullable":true,"description":"The absolute URL of the resource."},"links":{"type":"object","format":"uri-map","nullable":true,"description":"The URLs of related resources."}}}
```

## Install an Add-on Listing

`POST https://marketplace.twilio.com/v1/InstalledAddOns`

To install an Add-on Listing within your Account, you need to find its AvailableAddOn SID. You can do this by [listing all AvailableAddOn resources](/docs/marketplace/api/available-add-ons#list-all-availableaddon-resources) and finding the SID of the one you wish to install. The AvailableAddOn resource also shows the information required for installing the Add-on Listing.

### Request body parameters

```json
{"schema":{"type":"object","title":"CreateInstalledAddOnRequest","required":["AvailableAddOnSid","AcceptTermsOfService"],"properties":{"AvailableAddOnSid":{"type":"string","minLength":34,"maxLength":34,"pattern":"^XB[0-9a-fA-F]{32}$","description":"The SID of the AvaliableAddOn to install."},"AcceptTermsOfService":{"type":"boolean","description":"Whether the Terms of Service were accepted."},"Configuration":{"description":"The JSON object that represents the configuration of the new Add-on being installed."},"UniqueName":{"type":"string","description":"An application-defined string that uniquely identifies the resource. This value must be unique within the Account."}}},"examples":{"create":{"value":{"lang":"json","value":"{\n  \"AvailableAddOnSid\": \"XBaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\",\n  \"AcceptTermsOfService\": true,\n  \"Configuration\": \"{\\\"bad_words\\\": true}\",\n  \"UniqueName\": \"voicebase_high_accuracy_transcription_1\"\n}","meta":"","code":"{\n  \"AvailableAddOnSid\": \"XBaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\",\n  \"AcceptTermsOfService\": true,\n  \"Configuration\": \"{\\\"bad_words\\\": true}\",\n  \"UniqueName\": \"voicebase_high_accuracy_transcription_1\"\n}","tokens":[["{","#C9D1D9"],"\n  ",["\"AvailableAddOnSid\"","#7EE787"],[":","#C9D1D9"]," ",["\"XBaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\"","#A5D6FF"],[",","#C9D1D9"],"\n  ",["\"AcceptTermsOfService\"","#7EE787"],[":","#C9D1D9"]," ",["true","#79C0FF"],[",","#C9D1D9"],"\n  ",["\"Configuration\"","#7EE787"],[":","#C9D1D9"]," ",["\"{","#A5D6FF"],["\\\"","#79C0FF"],["bad_words","#A5D6FF"],["\\\"","#79C0FF"],[": true}\"","#A5D6FF"],[",","#C9D1D9"],"\n  ",["\"UniqueName\"","#7EE787"],[":","#C9D1D9"]," ",["\"voicebase_high_accuracy_transcription_1\"","#A5D6FF"],"\n",["}","#C9D1D9"]],"annotations":[],"themeName":"github-dark","style":{"color":"#c9d1d9","background":"#0d1117"}}}},"encodingType":"application/x-www-form-urlencoded","conditionalParameterMap":{}}
```

Install an available Add-on

```js
// Download the helper library from https://www.twilio.com/docs/node/install
const twilio = require("twilio"); // Or, for ESM: import twilio from "twilio";

// Find your Account SID and Auth Token at twilio.com/console
// and set the environment variables. See http://twil.io/secure
const accountSid = process.env.TWILIO_ACCOUNT_SID;
const authToken = process.env.TWILIO_AUTH_TOKEN;
const client = twilio(accountSid, authToken);

async function createInstalledAddOn() {
  const installedAddOn = await client.marketplace.v1.installedAddOns.create({
    acceptTermsOfService: true,
    availableAddOnSid: "XB85b56ed9ce713e0ac62342b901233193",
    configuration: {
      callback_method: "POST",
      callback_url: "https://example.com/your-callback-url",
      "include-keywords": true,
      "include-topics": true,
    },
  });

  console.log(installedAddOn.sid);
}

createInstalledAddOn();
```

```python
# Download the helper library from https://www.twilio.com/docs/python/install
import os
from twilio.rest import Client

# Find your Account SID and Auth Token at twilio.com/console
# and set the environment variables. See http://twil.io/secure
account_sid = os.environ["TWILIO_ACCOUNT_SID"]
auth_token = os.environ["TWILIO_AUTH_TOKEN"]
client = Client(account_sid, auth_token)

installed_add_on = client.marketplace.v1.installed_add_ons.create(
    accept_terms_of_service=True,
    available_add_on_sid="XB85b56ed9ce713e0ac62342b901233193",
    configuration={
        "callback_method": "POST",
        "callback_url": "https://example.com/your-callback-url",
        "include-keywords": True,
        "include-topics": True,
    },
)

print(installed_add_on.sid)
```

```csharp
// Install the C# / .NET helper library from twilio.com/docs/csharp/install

using System;
using Twilio;
using Twilio.Rest.Marketplace.V1;
using System.Threading.Tasks;
using System.Collections.Generic;

class Program {
    public static async Task Main(string[] args) {
        // Find your Account SID and Auth Token at twilio.com/console
        // and set the environment variables. See http://twil.io/secure
        string accountSid = Environment.GetEnvironmentVariable("TWILIO_ACCOUNT_SID");
        string authToken = Environment.GetEnvironmentVariable("TWILIO_AUTH_TOKEN");

        TwilioClient.Init(accountSid, authToken);

        var installedAddOn = await InstalledAddOnResource.CreateAsync(
            acceptTermsOfService: true,
            availableAddOnSid: "XB85b56ed9ce713e0ac62342b901233193",
            configuration: new Dictionary<string, Object>() {
                { "callback_method", "POST" },
                { "callback_url", "https://example.com/your-callback-url" },
                { "include-keywords", true },
                { "include-topics", true }
            });

        Console.WriteLine(installedAddOn.Sid);
    }
}
```

```java
// Install the Java helper library from twilio.com/docs/java/install

import java.util.HashMap;
import com.twilio.Twilio;
import com.twilio.rest.marketplace.v1.InstalledAddOn;

public class Example {
    // Find your Account SID and Auth Token at twilio.com/console
    // and set the environment variables. See http://twil.io/secure
    public static final String ACCOUNT_SID = System.getenv("TWILIO_ACCOUNT_SID");
    public static final String AUTH_TOKEN = System.getenv("TWILIO_AUTH_TOKEN");

    public static void main(String[] args) {
        Twilio.init(ACCOUNT_SID, AUTH_TOKEN);
        InstalledAddOn installedAddOn = InstalledAddOn.creator("XB85b56ed9ce713e0ac62342b901233193", true)
                                            .setConfiguration(new HashMap<String, Object>() {
                                                {
                                                    put("callback_method", "POST");
                                                    put("callback_url", "https://example.com/your-callback-url");
                                                    put("include-keywords", true);
                                                    put("include-topics", true);
                                                }
                                            })
                                            .create();

        System.out.println(installedAddOn.getSid());
    }
}
```

```go
// Download the helper library from https://www.twilio.com/docs/go/install
package main

import (
	"fmt"
	"github.com/twilio/twilio-go"
	marketplace "github.com/twilio/twilio-go/rest/marketplace/v1"
	"os"
)

func main() {
	// Find your Account SID and Auth Token at twilio.com/console
	// and set the environment variables. See http://twil.io/secure
	// Make sure TWILIO_ACCOUNT_SID and TWILIO_AUTH_TOKEN exists in your environment
	client := twilio.NewRestClient()

	params := &marketplace.CreateInstalledAddOnParams{}
	params.SetAcceptTermsOfService(true)
	params.SetAvailableAddOnSid("XB85b56ed9ce713e0ac62342b901233193")
	params.SetConfiguration(map[string]interface{}{
		"callback_method":  "POST",
		"callback_url":     "https://example.com/your-callback-url",
		"include-keywords": true,
		"include-topics":   true,
	})

	resp, err := client.MarketplaceV1.CreateInstalledAddOn(params)
	if err != nil {
		fmt.Println(err.Error())
		os.Exit(1)
	} else {
		if resp.Sid != nil {
			fmt.Println(*resp.Sid)
		} else {
			fmt.Println(resp.Sid)
		}
	}
}
```

```php
<?php

// Update the path below to your autoload.php,
// see https://getcomposer.org/doc/01-basic-usage.md
require_once "/path/to/vendor/autoload.php";

use Twilio\Rest\Client;

// Find your Account SID and Auth Token at twilio.com/console
// and set the environment variables. See http://twil.io/secure
$sid = getenv("TWILIO_ACCOUNT_SID");
$token = getenv("TWILIO_AUTH_TOKEN");
$twilio = new Client($sid, $token);

$installed_add_on = $twilio->marketplace->v1->installedAddOns->create(
    "XB85b56ed9ce713e0ac62342b901233193", // AvailableAddOnSid
    true, // AcceptTermsOfService
    [
        "configuration" => [
            "callback_method" => "POST",
            "callback_url" => "https://example.com/your-callback-url",
            "include-keywords" => true,
            "include-topics" => true,
        ],
    ]
);

print $installed_add_on->sid;
```

```ruby
# Download the helper library from https://www.twilio.com/docs/ruby/install
require 'twilio-ruby'

# Find your Account SID and Auth Token at twilio.com/console
# and set the environment variables. See http://twil.io/secure
account_sid = ENV['TWILIO_ACCOUNT_SID']
auth_token = ENV['TWILIO_AUTH_TOKEN']
@client = Twilio::REST::Client.new(account_sid, auth_token)

installed_add_on = @client
                   .marketplace
                   .v1
                   .installed_add_ons
                   .create(
                     accept_terms_of_service: true,
                     available_add_on_sid: 'XB85b56ed9ce713e0ac62342b901233193',
                     configuration: {
                       'callback_method' => 'POST',
                       'callback_url' => 'https://example.com/your-callback-url',
                       'include-keywords' => true,
                       'include-topics' => true
                     }
                   )

puts installed_add_on.sid
```

```bash
# Install the twilio-cli from https://twil.io/cli

twilio api:marketplace:v1:installed-add-ons:create \
   --accept-terms-of-service \
   --available-add-on-sid XB85b56ed9ce713e0ac62342b901233193 \
   --configuration "{\"callback_method\":\"POST\",\"callback_url\":\"https://example.com/your-callback-url\",\"include-keywords\":true,\"include-topics\":true}"
```

```bash
CONFIGURATION_OBJ=$(cat << EOF
{
  "callback_method": "POST",
  "callback_url": "https://example.com/your-callback-url",
  "include-keywords": true,
  "include-topics": true
}
EOF
)
curl -X POST "https://marketplace.twilio.com/v1/InstalledAddOns" \
--data-urlencode "AcceptTermsOfService=true" \
--data-urlencode "AvailableAddOnSid=XB85b56ed9ce713e0ac62342b901233193" \
--data-urlencode "Configuration=$CONFIGURATION_OBJ" \
-u $TWILIO_ACCOUNT_SID:$TWILIO_AUTH_TOKEN
```

```json
{
  "sid": "XEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
  "account_sid": "ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
  "friendly_name": "VoiceBase High Accuracy Transcription",
  "description": "Automatic Transcription and Keyword Extract...",
  "configuration": {
    "callback_method": "POST",
    "callback_url": "https://example.com/your-callback-url",
    "include-keywords": true,
    "include-topics": true
  },
  "unique_name": "voicebase_high_accuracy_transcription_1",
  "date_created": "2016-04-07T23:52:28Z",
  "date_updated": "2016-04-07T23:52:28Z",
  "url": "https://marketplace.twilio.com/v1/InstalledAddOns/XEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
  "links": {
    "extensions": "https://marketplace.twilio.com/v1/InstalledAddOns/XEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Extensions",
    "available_add_on": "https://marketplace.twilio.com/v1/AvailableAddOns/XBaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
  }
}
```

## Fetch an instance of an Add-on currently installed on this Account.

`GET https://marketplace.twilio.com/v1/InstalledAddOns/{Sid}`

### Path parameters

```json
[{"name":"Sid","in":"path","description":"The SID of the InstalledAddOn resource to fetch.","schema":{"type":"string","minLength":34,"maxLength":34,"pattern":"^XE[0-9a-fA-F]{32}$"},"required":true}]
```

Fetch an InstalledAddOn

```js
// Download the helper library from https://www.twilio.com/docs/node/install
const twilio = require("twilio"); // Or, for ESM: import twilio from "twilio";

// Find your Account SID and Auth Token at twilio.com/console
// and set the environment variables. See http://twil.io/secure
const accountSid = process.env.TWILIO_ACCOUNT_SID;
const authToken = process.env.TWILIO_AUTH_TOKEN;
const client = twilio(accountSid, authToken);

async function fetchInstalledAddOn() {
  const installedAddOn = await client.marketplace.v1
    .installedAddOns("XEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa")
    .fetch();

  console.log(installedAddOn.sid);
}

fetchInstalledAddOn();
```

```python
# Download the helper library from https://www.twilio.com/docs/python/install
import os
from twilio.rest import Client

# Find your Account SID and Auth Token at twilio.com/console
# and set the environment variables. See http://twil.io/secure
account_sid = os.environ["TWILIO_ACCOUNT_SID"]
auth_token = os.environ["TWILIO_AUTH_TOKEN"]
client = Client(account_sid, auth_token)

installed_add_on = client.marketplace.v1.installed_add_ons(
    "XEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
).fetch()

print(installed_add_on.sid)
```

```csharp
// Install the C# / .NET helper library from twilio.com/docs/csharp/install

using System;
using Twilio;
using Twilio.Rest.Marketplace.V1;
using System.Threading.Tasks;

class Program {
    public static async Task Main(string[] args) {
        // Find your Account SID and Auth Token at twilio.com/console
        // and set the environment variables. See http://twil.io/secure
        string accountSid = Environment.GetEnvironmentVariable("TWILIO_ACCOUNT_SID");
        string authToken = Environment.GetEnvironmentVariable("TWILIO_AUTH_TOKEN");

        TwilioClient.Init(accountSid, authToken);

        var installedAddOn =
            await InstalledAddOnResource.FetchAsync(pathSid: "XEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa");

        Console.WriteLine(installedAddOn.Sid);
    }
}
```

```java
// Install the Java helper library from twilio.com/docs/java/install

import com.twilio.Twilio;
import com.twilio.rest.marketplace.v1.InstalledAddOn;

public class Example {
    // Find your Account SID and Auth Token at twilio.com/console
    // and set the environment variables. See http://twil.io/secure
    public static final String ACCOUNT_SID = System.getenv("TWILIO_ACCOUNT_SID");
    public static final String AUTH_TOKEN = System.getenv("TWILIO_AUTH_TOKEN");

    public static void main(String[] args) {
        Twilio.init(ACCOUNT_SID, AUTH_TOKEN);
        InstalledAddOn installedAddOn = InstalledAddOn.fetcher("XEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa").fetch();

        System.out.println(installedAddOn.getSid());
    }
}
```

```go
// Download the helper library from https://www.twilio.com/docs/go/install
package main

import (
	"fmt"
	"github.com/twilio/twilio-go"
	"os"
)

func main() {
	// Find your Account SID and Auth Token at twilio.com/console
	// and set the environment variables. See http://twil.io/secure
	// Make sure TWILIO_ACCOUNT_SID and TWILIO_AUTH_TOKEN exists in your environment
	client := twilio.NewRestClient()

	resp, err := client.MarketplaceV1.FetchInstalledAddOn("XEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa")
	if err != nil {
		fmt.Println(err.Error())
		os.Exit(1)
	} else {
		if resp.Sid != nil {
			fmt.Println(*resp.Sid)
		} else {
			fmt.Println(resp.Sid)
		}
	}
}
```

```php
<?php

// Update the path below to your autoload.php,
// see https://getcomposer.org/doc/01-basic-usage.md
require_once "/path/to/vendor/autoload.php";

use Twilio\Rest\Client;

// Find your Account SID and Auth Token at twilio.com/console
// and set the environment variables. See http://twil.io/secure
$sid = getenv("TWILIO_ACCOUNT_SID");
$token = getenv("TWILIO_AUTH_TOKEN");
$twilio = new Client($sid, $token);

$installed_add_on = $twilio->marketplace->v1
    ->installedAddOns("XEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa")
    ->fetch();

print $installed_add_on->sid;
```

```ruby
# Download the helper library from https://www.twilio.com/docs/ruby/install
require 'twilio-ruby'

# Find your Account SID and Auth Token at twilio.com/console
# and set the environment variables. See http://twil.io/secure
account_sid = ENV['TWILIO_ACCOUNT_SID']
auth_token = ENV['TWILIO_AUTH_TOKEN']
@client = Twilio::REST::Client.new(account_sid, auth_token)

installed_add_on = @client
                   .marketplace
                   .v1
                   .installed_add_ons('XEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa')
                   .fetch

puts installed_add_on.sid
```

```bash
# Install the twilio-cli from https://twil.io/cli

twilio api:marketplace:v1:installed-add-ons:fetch \
   --sid XEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
```

```bash
curl -X GET "https://marketplace.twilio.com/v1/InstalledAddOns/XEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" \
-u $TWILIO_ACCOUNT_SID:$TWILIO_AUTH_TOKEN
```

```json
{
  "sid": "XEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
  "account_sid": "ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
  "friendly_name": "VoiceBase High Accuracy Transcription",
  "description": "Automatic Transcription and Keyword Extract...",
  "configuration": {
    "bad_words": true
  },
  "unique_name": "voicebase_high_accuracy_transcription",
  "date_created": "2016-04-07T23:52:28Z",
  "date_updated": "2016-04-07T23:52:28Z",
  "url": "https://marketplace.twilio.com/v1/InstalledAddOns/XEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
  "links": {
    "extensions": "https://marketplace.twilio.com/v1/InstalledAddOns/XEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Extensions",
    "available_add_on": "https://marketplace.twilio.com/v1/AvailableAddOns/XBaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
  }
}
```

## Retrieve a list of Add-ons currently installed on this Account.

`GET https://marketplace.twilio.com/v1/InstalledAddOns`

### Query parameters

```json
[{"name":"PageSize","in":"query","description":"How many resources to return in each list page. The default is 50, and the maximum is 1000.","schema":{"type":"integer","minimum":1,"maximum":1000}},{"name":"Page","in":"query","description":"The page index. This value is simply for client state.","schema":{"type":"integer","minimum":0}},{"name":"PageToken","in":"query","description":"The page token. This is provided by the API.","schema":{"type":"string"}}]
```

List multiple InstalledAddOns

```js
// Download the helper library from https://www.twilio.com/docs/node/install
const twilio = require("twilio"); // Or, for ESM: import twilio from "twilio";

// Find your Account SID and Auth Token at twilio.com/console
// and set the environment variables. See http://twil.io/secure
const accountSid = process.env.TWILIO_ACCOUNT_SID;
const authToken = process.env.TWILIO_AUTH_TOKEN;
const client = twilio(accountSid, authToken);

async function listInstalledAddOn() {
  const installedAddOns = await client.marketplace.v1.installedAddOns.list({
    limit: 20,
  });

  installedAddOns.forEach((i) => console.log(i.sid));
}

listInstalledAddOn();
```

```python
# Download the helper library from https://www.twilio.com/docs/python/install
import os
from twilio.rest import Client

# Find your Account SID and Auth Token at twilio.com/console
# and set the environment variables. See http://twil.io/secure
account_sid = os.environ["TWILIO_ACCOUNT_SID"]
auth_token = os.environ["TWILIO_AUTH_TOKEN"]
client = Client(account_sid, auth_token)

installed_add_ons = client.marketplace.v1.installed_add_ons.list(limit=20)

for record in installed_add_ons:
    print(record.sid)
```

```csharp
// Install the C# / .NET helper library from twilio.com/docs/csharp/install

using System;
using Twilio;
using Twilio.Rest.Marketplace.V1;
using System.Threading.Tasks;

class Program {
    public static async Task Main(string[] args) {
        // Find your Account SID and Auth Token at twilio.com/console
        // and set the environment variables. See http://twil.io/secure
        string accountSid = Environment.GetEnvironmentVariable("TWILIO_ACCOUNT_SID");
        string authToken = Environment.GetEnvironmentVariable("TWILIO_AUTH_TOKEN");

        TwilioClient.Init(accountSid, authToken);

        var installedAddOns = await InstalledAddOnResource.ReadAsync(limit: 20);

        foreach (var record in installedAddOns) {
            Console.WriteLine(record.Sid);
        }
    }
}
```

```java
// Install the Java helper library from twilio.com/docs/java/install

import com.twilio.Twilio;
import com.twilio.rest.marketplace.v1.InstalledAddOn;
import com.twilio.base.ResourceSet;

public class Example {
    // Find your Account SID and Auth Token at twilio.com/console
    // and set the environment variables. See http://twil.io/secure
    public static final String ACCOUNT_SID = System.getenv("TWILIO_ACCOUNT_SID");
    public static final String AUTH_TOKEN = System.getenv("TWILIO_AUTH_TOKEN");

    public static void main(String[] args) {
        Twilio.init(ACCOUNT_SID, AUTH_TOKEN);
        ResourceSet<InstalledAddOn> installedAddOns = InstalledAddOn.reader().limit(20).read();

        for (InstalledAddOn record : installedAddOns) {
            System.out.println(record.getSid());
        }
    }
}
```

```go
// Download the helper library from https://www.twilio.com/docs/go/install
package main

import (
	"fmt"
	"github.com/twilio/twilio-go"
	marketplace "github.com/twilio/twilio-go/rest/marketplace/v1"
	"os"
)

func main() {
	// Find your Account SID and Auth Token at twilio.com/console
	// and set the environment variables. See http://twil.io/secure
	// Make sure TWILIO_ACCOUNT_SID and TWILIO_AUTH_TOKEN exists in your environment
	client := twilio.NewRestClient()

	params := &marketplace.ListInstalledAddOnParams{}
	params.SetLimit(20)

	resp, err := client.MarketplaceV1.ListInstalledAddOn(params)
	if err != nil {
		fmt.Println(err.Error())
		os.Exit(1)
	} else {
		for record := range resp {
			if resp[record].Sid != nil {
				fmt.Println(*resp[record].Sid)
			} else {
				fmt.Println(resp[record].Sid)
			}
		}
	}
}
```

```php
<?php

// Update the path below to your autoload.php,
// see https://getcomposer.org/doc/01-basic-usage.md
require_once "/path/to/vendor/autoload.php";

use Twilio\Rest\Client;

// Find your Account SID and Auth Token at twilio.com/console
// and set the environment variables. See http://twil.io/secure
$sid = getenv("TWILIO_ACCOUNT_SID");
$token = getenv("TWILIO_AUTH_TOKEN");
$twilio = new Client($sid, $token);

$installedAddOns = $twilio->marketplace->v1->installedAddOns->read(20);

foreach ($installedAddOns as $record) {
    print $record->sid;
}
```

```ruby
# Download the helper library from https://www.twilio.com/docs/ruby/install
require 'twilio-ruby'

# Find your Account SID and Auth Token at twilio.com/console
# and set the environment variables. See http://twil.io/secure
account_sid = ENV['TWILIO_ACCOUNT_SID']
auth_token = ENV['TWILIO_AUTH_TOKEN']
@client = Twilio::REST::Client.new(account_sid, auth_token)

installed_add_ons = @client
                    .marketplace
                    .v1
                    .installed_add_ons
                    .list(limit: 20)

installed_add_ons.each do |record|
   puts record.sid
end
```

```bash
# Install the twilio-cli from https://twil.io/cli

twilio api:marketplace:v1:installed-add-ons:list
```

```bash
curl -X GET "https://marketplace.twilio.com/v1/InstalledAddOns?PageSize=20" \
-u $TWILIO_ACCOUNT_SID:$TWILIO_AUTH_TOKEN
```

```json
{
  "installed_add_ons": [
    {
      "sid": "XEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
      "account_sid": "ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
      "friendly_name": "VoiceBase High Accuracy Transcription",
      "description": "Automatic Transcription and Keyword Extract...",
      "configuration": {
        "bad_words": true
      },
      "unique_name": "voicebase_high_accuracy_transcription",
      "date_created": "2016-04-07T23:52:28Z",
      "date_updated": "2016-04-07T23:52:28Z",
      "url": "https://marketplace.twilio.com/v1/InstalledAddOns/XEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
      "links": {
        "extensions": "https://marketplace.twilio.com/v1/InstalledAddOns/XEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Extensions",
        "available_add_on": "https://marketplace.twilio.com/v1/AvailableAddOns/XBaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
      }
    }
  ],
  "meta": {
    "page": 0,
    "page_size": 50,
    "first_page_url": "https://marketplace.twilio.com/v1/InstalledAddOns?PageSize=50&Page=0",
    "previous_page_url": null,
    "url": "https://marketplace.twilio.com/v1/InstalledAddOns?PageSize=50&Page=0",
    "next_page_url": null,
    "key": "installed_add_ons"
  }
}
```

## Update an Add-on installation for the Account specified.

`POST https://marketplace.twilio.com/v1/InstalledAddOns/{Sid}`

### Path parameters

```json
[{"name":"Sid","in":"path","description":"The SID of the InstalledAddOn resource to update.","schema":{"type":"string","minLength":34,"maxLength":34,"pattern":"^XE[0-9a-fA-F]{32}$"},"required":true}]
```

### Request body parameters

```json
{"schema":{"type":"object","title":"UpdateInstalledAddOnRequest","properties":{"Configuration":{"description":"Valid JSON object that conform to the configuration schema exposed by the associated AvailableAddOn resource. This is only required by Add-ons that need to be configured"},"UniqueName":{"type":"string","description":"An application-defined string that uniquely identifies the resource. This value must be unique within the Account."}}},"examples":{"update":{"value":{"lang":"json","value":"{\n  \"Configuration\": \"{\\\"bad_words\\\": true}\",\n  \"UniqueName\": \"voicebase_high_accuracy_transcription_2\"\n}","meta":"","code":"{\n  \"Configuration\": \"{\\\"bad_words\\\": true}\",\n  \"UniqueName\": \"voicebase_high_accuracy_transcription_2\"\n}","tokens":[["{","#C9D1D9"],"\n  ",["\"Configuration\"","#7EE787"],[":","#C9D1D9"]," ",["\"{","#A5D6FF"],["\\\"","#79C0FF"],["bad_words","#A5D6FF"],["\\\"","#79C0FF"],[": true}\"","#A5D6FF"],[",","#C9D1D9"],"\n  ",["\"UniqueName\"","#7EE787"],[":","#C9D1D9"]," ",["\"voicebase_high_accuracy_transcription_2\"","#A5D6FF"],"\n",["}","#C9D1D9"]],"annotations":[],"themeName":"github-dark","style":{"color":"#c9d1d9","background":"#0d1117"}}}},"encodingType":"application/x-www-form-urlencoded","conditionalParameterMap":{}}
```

Update an InstalledAddOn

```js
// Download the helper library from https://www.twilio.com/docs/node/install
const twilio = require("twilio"); // Or, for ESM: import twilio from "twilio";

// Find your Account SID and Auth Token at twilio.com/console
// and set the environment variables. See http://twil.io/secure
const accountSid = process.env.TWILIO_ACCOUNT_SID;
const authToken = process.env.TWILIO_AUTH_TOKEN;
const client = twilio(accountSid, authToken);

async function updateInstalledAddOn() {
  const installedAddOn = await client.marketplace.v1
    .installedAddOns("XEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa")
    .update({ configuration: {} });

  console.log(installedAddOn.sid);
}

updateInstalledAddOn();
```

```python
# Download the helper library from https://www.twilio.com/docs/python/install
import os
from twilio.rest import Client

# Find your Account SID and Auth Token at twilio.com/console
# and set the environment variables. See http://twil.io/secure
account_sid = os.environ["TWILIO_ACCOUNT_SID"]
auth_token = os.environ["TWILIO_AUTH_TOKEN"]
client = Client(account_sid, auth_token)

installed_add_on = client.marketplace.v1.installed_add_ons(
    "XEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
).update(configuration={})

print(installed_add_on.sid)
```

```csharp
// Install the C# / .NET helper library from twilio.com/docs/csharp/install

using System;
using Twilio;
using Twilio.Rest.Marketplace.V1;
using System.Threading.Tasks;
using System.Collections.Generic;

class Program {
    public static async Task Main(string[] args) {
        // Find your Account SID and Auth Token at twilio.com/console
        // and set the environment variables. See http://twil.io/secure
        string accountSid = Environment.GetEnvironmentVariable("TWILIO_ACCOUNT_SID");
        string authToken = Environment.GetEnvironmentVariable("TWILIO_AUTH_TOKEN");

        TwilioClient.Init(accountSid, authToken);

        var installedAddOn = await InstalledAddOnResource.UpdateAsync(
            configuration: new Dictionary<string, Object>() {

            }, pathSid: "XEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa");

        Console.WriteLine(installedAddOn.Sid);
    }
}
```

```java
// Install the Java helper library from twilio.com/docs/java/install

import java.util.HashMap;
import com.twilio.Twilio;
import com.twilio.rest.marketplace.v1.InstalledAddOn;

public class Example {
    // Find your Account SID and Auth Token at twilio.com/console
    // and set the environment variables. See http://twil.io/secure
    public static final String ACCOUNT_SID = System.getenv("TWILIO_ACCOUNT_SID");
    public static final String AUTH_TOKEN = System.getenv("TWILIO_AUTH_TOKEN");

    public static void main(String[] args) {
        Twilio.init(ACCOUNT_SID, AUTH_TOKEN);
        InstalledAddOn installedAddOn = InstalledAddOn.updater("XEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa")
                                            .setConfiguration(new HashMap<String, Object>() {
                                                {
                                                }
                                            })
                                            .update();

        System.out.println(installedAddOn.getSid());
    }
}
```

```go
// Download the helper library from https://www.twilio.com/docs/go/install
package main

import (
	"fmt"
	"github.com/twilio/twilio-go"
	marketplace "github.com/twilio/twilio-go/rest/marketplace/v1"
	"os"
)

func main() {
	// Find your Account SID and Auth Token at twilio.com/console
	// and set the environment variables. See http://twil.io/secure
	// Make sure TWILIO_ACCOUNT_SID and TWILIO_AUTH_TOKEN exists in your environment
	client := twilio.NewRestClient()

	params := &marketplace.UpdateInstalledAddOnParams{}
	params.SetConfiguration(map[string]interface{}{})

	resp, err := client.MarketplaceV1.UpdateInstalledAddOn("XEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
		params)
	if err != nil {
		fmt.Println(err.Error())
		os.Exit(1)
	} else {
		if resp.Sid != nil {
			fmt.Println(*resp.Sid)
		} else {
			fmt.Println(resp.Sid)
		}
	}
}
```

```php
<?php

// Update the path below to your autoload.php,
// see https://getcomposer.org/doc/01-basic-usage.md
require_once "/path/to/vendor/autoload.php";

use Twilio\Rest\Client;

// Find your Account SID and Auth Token at twilio.com/console
// and set the environment variables. See http://twil.io/secure
$sid = getenv("TWILIO_ACCOUNT_SID");
$token = getenv("TWILIO_AUTH_TOKEN");
$twilio = new Client($sid, $token);

$installed_add_on = $twilio->marketplace->v1
    ->installedAddOns("XEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa")
    ->update(["configuration" => []]);

print $installed_add_on->sid;
```

```ruby
# Download the helper library from https://www.twilio.com/docs/ruby/install
require 'twilio-ruby'

# Find your Account SID and Auth Token at twilio.com/console
# and set the environment variables. See http://twil.io/secure
account_sid = ENV['TWILIO_ACCOUNT_SID']
auth_token = ENV['TWILIO_AUTH_TOKEN']
@client = Twilio::REST::Client.new(account_sid, auth_token)

installed_add_on = @client
                   .marketplace
                   .v1
                   .installed_add_ons('XEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa')
                   .update(configuration: {

                     })

puts installed_add_on.sid
```

```bash
# Install the twilio-cli from https://twil.io/cli

twilio api:marketplace:v1:installed-add-ons:update \
   --sid XEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa \
   --configuration "{}"
```

```bash
CONFIGURATION_OBJ=$(cat << EOF
{

}
EOF
)
curl -X POST "https://marketplace.twilio.com/v1/InstalledAddOns/XEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" \
--data-urlencode "Configuration=$CONFIGURATION_OBJ" \
-u $TWILIO_ACCOUNT_SID:$TWILIO_AUTH_TOKEN
```

```json
{
  "sid": "XEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
  "account_sid": "ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
  "friendly_name": "VoiceBase High Accuracy Transcription",
  "description": "Automatic Transcription and Keyword Extract...",
  "configuration": {},
  "unique_name": "voicebase_high_accuracy_transcription_2",
  "date_created": "2016-04-07T23:52:28Z",
  "date_updated": "2016-04-07T23:52:28Z",
  "url": "https://marketplace.twilio.com/v1/InstalledAddOns/XEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
  "links": {
    "extensions": "https://marketplace.twilio.com/v1/InstalledAddOns/XEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Extensions",
    "available_add_on": "https://marketplace.twilio.com/v1/AvailableAddOns/XBaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
  }
}
```

## Remove an Add-on installation from your account

`DELETE https://marketplace.twilio.com/v1/InstalledAddOns/{Sid}`

### Path parameters

```json
[{"name":"Sid","in":"path","description":"The SID of the InstalledAddOn resource to delete.","schema":{"type":"string","minLength":34,"maxLength":34,"pattern":"^XE[0-9a-fA-F]{32}$"},"required":true}]
```

Delete an InstalledAddOn

```js
// Download the helper library from https://www.twilio.com/docs/node/install
const twilio = require("twilio"); // Or, for ESM: import twilio from "twilio";

// Find your Account SID and Auth Token at twilio.com/console
// and set the environment variables. See http://twil.io/secure
const accountSid = process.env.TWILIO_ACCOUNT_SID;
const authToken = process.env.TWILIO_AUTH_TOKEN;
const client = twilio(accountSid, authToken);

async function deleteInstalledAddOn() {
  await client.marketplace.v1
    .installedAddOns("XEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa")
    .remove();
}

deleteInstalledAddOn();
```

```python
# Download the helper library from https://www.twilio.com/docs/python/install
import os
from twilio.rest import Client

# Find your Account SID and Auth Token at twilio.com/console
# and set the environment variables. See http://twil.io/secure
account_sid = os.environ["TWILIO_ACCOUNT_SID"]
auth_token = os.environ["TWILIO_AUTH_TOKEN"]
client = Client(account_sid, auth_token)

client.marketplace.v1.installed_add_ons(
    "XEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
).delete()
```

```csharp
// Install the C# / .NET helper library from twilio.com/docs/csharp/install

using System;
using Twilio;
using Twilio.Rest.Marketplace.V1;
using System.Threading.Tasks;

class Program {
    public static async Task Main(string[] args) {
        // Find your Account SID and Auth Token at twilio.com/console
        // and set the environment variables. See http://twil.io/secure
        string accountSid = Environment.GetEnvironmentVariable("TWILIO_ACCOUNT_SID");
        string authToken = Environment.GetEnvironmentVariable("TWILIO_AUTH_TOKEN");

        TwilioClient.Init(accountSid, authToken);

        await InstalledAddOnResource.DeleteAsync(pathSid: "XEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa");
    }
}
```

```java
// Install the Java helper library from twilio.com/docs/java/install

import com.twilio.Twilio;
import com.twilio.rest.marketplace.v1.InstalledAddOn;

public class Example {
    // Find your Account SID and Auth Token at twilio.com/console
    // and set the environment variables. See http://twil.io/secure
    public static final String ACCOUNT_SID = System.getenv("TWILIO_ACCOUNT_SID");
    public static final String AUTH_TOKEN = System.getenv("TWILIO_AUTH_TOKEN");

    public static void main(String[] args) {
        Twilio.init(ACCOUNT_SID, AUTH_TOKEN);
        InstalledAddOn.deleter("XEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa").delete();
    }
}
```

```go
// Download the helper library from https://www.twilio.com/docs/go/install
package main

import (
	"fmt"
	"github.com/twilio/twilio-go"
	"os"
)

func main() {
	// Find your Account SID and Auth Token at twilio.com/console
	// and set the environment variables. See http://twil.io/secure
	// Make sure TWILIO_ACCOUNT_SID and TWILIO_AUTH_TOKEN exists in your environment
	client := twilio.NewRestClient()

	err := client.MarketplaceV1.DeleteInstalledAddOn("XEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa")
	if err != nil {
		fmt.Println(err.Error())
		os.Exit(1)
	}
}
```

```php
<?php

// Update the path below to your autoload.php,
// see https://getcomposer.org/doc/01-basic-usage.md
require_once "/path/to/vendor/autoload.php";

use Twilio\Rest\Client;

// Find your Account SID and Auth Token at twilio.com/console
// and set the environment variables. See http://twil.io/secure
$sid = getenv("TWILIO_ACCOUNT_SID");
$token = getenv("TWILIO_AUTH_TOKEN");
$twilio = new Client($sid, $token);

$twilio->marketplace->v1
    ->installedAddOns("XEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa")
    ->delete();
```

```ruby
# Download the helper library from https://www.twilio.com/docs/ruby/install
require 'twilio-ruby'

# Find your Account SID and Auth Token at twilio.com/console
# and set the environment variables. See http://twil.io/secure
account_sid = ENV['TWILIO_ACCOUNT_SID']
auth_token = ENV['TWILIO_AUTH_TOKEN']
@client = Twilio::REST::Client.new(account_sid, auth_token)

@client
  .marketplace
  .v1
  .installed_add_ons('XEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa')
  .delete
```

```bash
# Install the twilio-cli from https://twil.io/cli

twilio api:marketplace:v1:installed-add-ons:remove \
   --sid XEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
```

```bash
curl -X DELETE "https://marketplace.twilio.com/v1/InstalledAddOns/XEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" \
-u $TWILIO_ACCOUNT_SID:$TWILIO_AUTH_TOKEN
```
