Javascript
import Supermemory from 'supermemory'; const client = new Supermemory({ apiKey: 'My API Key', }); const response = await client.connections.deleteByID('connectionId'); console.log(response.id);
{ "id": "<string>", "provider": "<string>" }
Delete a specific connection by ID
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Connection deleted successfully
The response is of type object.
object
Was this page helpful?