import Reminix from '@reminix/sdk';const client = new Reminix({ apiKey: process.env['REMINIX_API_KEY'], // This is the default and can be omitted});await client.oauthConnections.delete('name');
{ "error": "Invalid request"}
OAuth Connections
Delete an OAuth connection
Delete an OAuth connection by name. This revokes access and removes the stored tokens. This action cannot be undone.
DELETE
/
oauth-connections
/
{name}
JavaScript
import Reminix from '@reminix/sdk';const client = new Reminix({ apiKey: process.env['REMINIX_API_KEY'], // This is the default and can be omitted});await client.oauthConnections.delete('name');