@vesselapi/sdk
v1.0.35
Published
Vessel is a native integrations platform making it easy to provide customer-facing integrations for Salesforce, HubSpot, Outreach, Ringcentral, and much more. Use our Unified API, Actions API, or Managed ETL to pull and push data to these end platforms in
Downloads
59
Readme
About
Vessel is a native integrations platform making it easy to provide customer-facing integrations for Salesforce, HubSpot, Outreach, Ringcentral, and much more. Use our Unified API, Actions API, or Managed ETL to pull and push data to these end platforms in a variety of ways and schemas.
For more information including an in-depth tutorial and documentation visit docs.vessel.dev
Installing
npm install @vesselapi/sdk
yarn add @vesselapi/sdk
Usage
Call a Unified API Endpoint
import Vessel from '@vesselapi/sdk';
const vessel = Vessel({
apiToken: API_KEY,
accessToken,
});
vessel.unifications.engagement.users.list({}).then((res) => {
console.log('Users:', res.body.result);
});
Call an Action API Endpoint
import Vessel from '@vesselapi/sdk';
const vessel = Vessel({
apiToken: API_KEY,
accessToken,
});
vessel.actions.salesforce.users.list({}).then((res) => {
console.log('Users:', res.body.result);
});
Issues/Questions
Contact us at [email protected]