feat(hubspot): Implement create contact action
This commit is contained in:

committed by
Faruk AYDIN

parent
9fbc9d59f5
commit
8ea8067788
18
packages/backend/src/apps/hubspot/index.ts
Normal file
18
packages/backend/src/apps/hubspot/index.ts
Normal file
@@ -0,0 +1,18 @@
|
||||
import defineApp from '../../helpers/define-app';
|
||||
import addAuthHeader from './common/add-auth-header';
|
||||
import actions from './actions';
|
||||
import auth from './auth';
|
||||
|
||||
export default defineApp({
|
||||
name: 'Hubspot',
|
||||
key: 'hubspot',
|
||||
iconUrl: '{BASE_URL}/apps/hubspot/assets/favicon.svg',
|
||||
authDocUrl: 'https://developers.hubspot.com/docs/api/crm/contacts',
|
||||
supportsConnections: true,
|
||||
baseUrl: 'https://www.hubspot.com',
|
||||
apiBaseUrl: 'https://api.hubapi.com',
|
||||
primaryColor: '000000',
|
||||
beforeRequest: [addAuthHeader],
|
||||
auth,
|
||||
actions,
|
||||
});
|
Reference in New Issue
Block a user