Eversign

Free, Legally Binding Online Signatures

Go to site
Explore
/
Apps
/
Eversign

Eversign API Integrations

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

Overview

With the Eversign API, you can easily integrate electronic signatures into your own web applications. Here are some examples of what you can build with the Eversign API:

  • A web form that allows users to sign documents electronically
  • An online contract management system that allows users to sign contracts electronically
  • A document management system that allows users to sign documents electronically
  • A human resources management system that allows employees to sign documents electronically
  • An inventory management system that allows users to sign documents electronically
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    eversign: {
      type: "app",
      app: "eversign",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.eversign.com/api/business`,
      headers: {
        Authorization: `Bearer ${this.eversign.$auth.oauth_access_token}`,
      },
    })
  },
})
Send Message (Advanced) with Discord Webhook API on New Event from Eversign API
Eversign + Discord Webhook
 
Try it
Get Film with SWAPI - Star Wars API on New Event from Eversign API
Eversign + SWAPI - Star Wars
 
Try it
Delete Record with Airtable API on New Event from Eversign API
Eversign + Airtable
 
Try it
Send any HTTP Request with HTTP / Webhook API on New Event from Eversign API
Eversign + HTTP / Webhook
 
Try it
Create Image with OpenAI (ChatGPT) API on New Event from Eversign API
Eversign + OpenAI (ChatGPT)
 
Try it
New Event from the Eversign API

Emit new event when a new event occurs in EverSign. To begin receiving events, navigate to your Developer dashboard, and enter the URL of this source/workflow as the Webhook URL. https://eversign.com/api/documentation/webhooks

 
Try it

Authentication

Eversign uses OAuth authentication. When you connect your Eversign account, Pipedream will open a popup window where you can sign into Eversign and grant Pipedream permission to connect to your account. Pipedream securely stores and automatically refreshes the OAuth tokens so you can easily authenticate any Eversign API.

Pipedream requests the following authorization scopes when you connect your account:

OAuth Request Configurations:
  1. authorization
    GEThttps://eversign.com/oauth/authorize?client_id={{oauth.client_id}}&redirect_uri={{oauth.redirect_uri}}&state={{oauth.state}}&response_type=code&scope={{oauth.space_separated_scopes}}
  2. accessToken
    POSThttps://eversign.com/oauth/tokencontent-type: application/x-www-form-urlencodedaccept: application/json
    client_id={{oauth.client_id}}&client_secret={{oauth.client_secret}}&redirect_uri={{oauth.redirect_uri}}&grant_type=authorization_code&code={{oauth.code}}&state={{custom_fields.state}}