Jotform enables you to create online forms, collect responses directly in your email, and create fillable PDF forms.
Generate a Match Report using a dataset table or file (CSV/TSV/Excel). See the documentation
Retrieve a match score (likelihood of matching) between two individual names on a scale of 0-100. See the documentation
Gets number of form submissions received this month. Also, get number of SSL form submissions, payment form submissions and upload space used by user See the docs here
Retrieve a match score (likelihood of matching) from 0-100 between two organization names. See the documentation
Jotform’s API is a powerhouse for automating form and survey data management. With Pipedream, harness this API to trigger workflows from new form submissions, manipulate and analyze your form data, and sync it across various platforms. Think streamlined data entry to CRMs, instant notifications for new leads or feedback, and timely data backups to cloud storage.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
jotform: {
type: "app",
app: "jotform",
}
},
methods: {
_getBaseUrl() {
let baseUrl = `https://${this.jotform.$auth.region}.jotform.com/`;
const standardSubdomains = [
"api",
"eu-api",
"hipaa-api",
];
if (!standardSubdomains.includes(this.jotform.$auth.region)) {
baseUrl += "API/";
}
return baseUrl;
},
},
async run({steps, $}) {
const baseUrl = this._getBaseUrl();
return await axios($, {
url: `${baseUrl}user`,
params: {
apiKey: `${this.jotform.$auth.api_key}`,
},
})
},
})
The Interzoid API offers a plethora of data-driven APIs that enable you to enrich, standardize, and deduplicate data across various fields such as demographics, financials, and text. With these capabilities, you can enhance data quality, drive better analytics, and create more intelligent workflows and applications. In Pipedream, you can integrate these APIs into serverless workflows, triggering actions based on various events, manipulating and routing data to other apps, services, or data stores with ease.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
interzoid: {
type: "app",
app: "interzoid",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.interzoid.com/getremainingcredits`,
params: {
license: `${this.interzoid.$auth.api_key}`,
},
})
},
})