DELETE
/
v1
/
extensions
/
{id}
JavaScript
import Anchorbrowser from 'anchorbrowser';

const client = new Anchorbrowser({
  apiKey: 'sk-1jdfiaj0advpoaskdfpoks',
});

const extension = await client.extensions.delete('550e8400-e29b-41d4-a716-446655440000');

console.log(extension.data);
{
  "data": {
    "data": {
      "status": "success"
    }
  }
}

Authorizations

anchor-api-key
string
header
required

API key passed in the header

Path Parameters

id
string<uuid>
required

The ID of the extension to delete

Example:

"550e8400-e29b-41d4-a716-446655440000"

Response

200
application/json

Extension deleted successfully

The response is of type object.