DELETE
/
v3
/
connections
/
{connectionId}
JavaScript
import Supermemory from 'supermemory';

const client = new Supermemory({
  apiKey: process.env['SUPERMEMORY_API_KEY'], // This is the default and can be omitted
});

const response = await client.connections.deleteByID('connectionId');

console.log(response.id);
{
  "id": "<string>",
  "provider": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

connectionId
string
required

Response

200
application/json

Connection deleted successfully

The response is of type object.