DELETE
/
connection
/
{id}
import Openint from '@openint/sdk';

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

async function main() {
  const response = await client.deleteConnection('conn_');

  console.log(response.id);
}

main();
{
  "id": "<string>"
}

Authorizations

Authorization
string
header
required

Organization API key generated in the OpenInt Console and passed in the authorization header with format: Bearer {apiKey}

Path Parameters

id
string
required

The id of the connection, starts with conn_

Response

200
application/json
Successful response
id
string
required

The id of the connection, starts with conn_