GET
/
ee
/
connectors
/
{connector_type}
/
auth_status
JavaScript
import Morphik from 'morphik';

const client = new Morphik({
  apiKey: 'My API Key',
});

const response = await client.ee.connectors.getAuthStatus('connector_type');

console.log(response.is_authenticated);
{
  "is_authenticated": true,
  "message": "<string>",
  "auth_url": "<string>"
}

Headers

authorization
string

Path Parameters

connector_type
string
required

Response

200
application/json

Successful Response

The response is of type object.