Headers
Response
Successful Response
The response is of type any.
import Morphik from 'morphik';
const client = new Morphik({
apiKey: 'My API Key',
});
const response = await client.ee.connectors.finalizeAuth({
auth_response_data: {},
connector_type: 'connector_type',
});
console.log(response);"<any>"Finalize the OAuth flow and exchange the code for a token.
import Morphik from 'morphik';
const client = new Morphik({
apiKey: 'My API Key',
});
const response = await client.ee.connectors.finalizeAuth({
auth_response_data: {},
connector_type: 'connector_type',
});
console.log(response);"<any>"Successful Response
The response is of type any.
Was this page helpful?