Securely access Equifax's credit reporting and identity verification services to automate credit checks, fraud prevention, and consumer data validation workflows.
Go to site/**
* REQUIRED SCOPE: https://api.equifax.com/business/cnl-address/v1
*
* This test request uses the Equifax Address Insights API.
* Before using:
* 1. Enable the proper scope on your app
* 2. Modify the code to use your intended API endpoint
* 3. Verify your environment (sandbox, test, production)
*/
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
equifax: {
type: "app",
app: "equifax",
}
},
async run({steps, $}) {
const data = {
"context": {
"memberId": "311JA11903",
"referenceId": "1234ABCD"
},
"address": {
"line1": "4201 W KLING ST",
"line2": "",
"city": "BURBANK",
"stateProvince": "CA",
"postalCode": "91505"
}
}
return await axios($, {
method: "post",
url: `https://api.sandbox.equifax.com/business/cnl-address/v1/addressInsights`,
headers: {
Authorization: `Bearer ${this.equifax.$auth.oauth_access_token}`,
},
data,
})
},
})
Equifax uses OAuth authentication. When you connect your Equifax account, Pipedream will open a popup window where you can sign into Equifax and grant Pipedream permission to connect to your account. Pipedream securely stores and automatically refreshes the OAuth tokens so you can easily authenticate any Equifax API.
Pipedream requests the following authorization scopes when you connect your account:
POST
https://api.{{custom_fields.environment}}/v2/oauth/token
content-type: application/x-www-form-urlencoded
accept: application/json
grant_type=client_credentials
POST
https://api.{{custom_fields.environment}}/v2/oauth/token
content-type: application/x-www-form-urlencoded
accept: application/json
grant_type=client_credentials