What do you want to automate

with Jenkins and Equifax?

Prompt, edit and deploy AI agents that connect to Jenkins, Equifax and 2,500+ other apps in seconds.

Trusted by 1,000,000+ developers from startups to Fortune 500 companies

Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
New Jenkins Job Status Notification (Instant) from the Jenkins API

Emit new event when a Jenkins job sends a status notification via the notification plugin. See the documentation

 
Try it
Integrate the Jenkins API with the Equifax API
Setup the Jenkins API trigger to run a workflow which integrates with the Equifax API. Pipedream's integration platform allows you to integrate Jenkins and Equifax remarkably fast. Free for developers.

Connect Jenkins

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: {
    jenkins: {
      type: "app",
      app: "jenkins",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `${this.jenkins.$auth.api_url}/me/api/json`,
      auth: {
        username: `${this.jenkins.$auth.username}`,
        password: `${this.jenkins.$auth.api_token}`,
      },
    })
  },
})

Connect Equifax

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
/**
* 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,
    })
  },
})

Trusted by 1,000,000+ developers from startups to Fortune 500 companies

Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo