Revamp CRM

Sales & Marketing Automation CRM for small business

Go to site
Explore
/
Apps
/
Revamp CRM

Revamp CRM API Integrations

Build and run workflows using the Revamp CRM API. Use 1000s of source-available triggers and actions across 1000+ apps. Or write custom code to integrate any app or API in seconds.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    revamp_crm: {
      type: "app",
      app: "revamp_crm",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://app.revampcrm.com/api/1.0/User/WhoAmI`,
      auth: {
        username: `${this.revamp_crm.$auth.email}`,
        password: `${this.revamp_crm.$auth.api_key}`,
      },
    })
  },
})

Choose an API to Connect with Revamp CRM API

1
-
12
of
1000+
apps by most popular

Authentication

Revamp CRM uses API keys for authentication. When you connect your Revamp CRM account, Pipedream securely stores the keys so you can easily authenticate to Revamp CRM APIs in both code and no-code steps.

To retrieve your API Key,

  • Navigate to your Revamp CRM account and sign in
  • Click on the Settings menu with the gear icon on the top right
  • Go to “Personal” > “API Key”

Revamp CRM requires their users enter their Revamp CRM email in order to connect to their API. For more info, refer to Revamp CRM’s documentation.