What do you want to automate

with Checkout.com and End?

Prompt, edit and deploy AI agents that connect to Checkout.com, End 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
End Workflow with the End API

Terminate workflow execution

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

Connect Checkout.com

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
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    checkout_com: {
      type: "app",
      app: "checkout_com",
    }
  },
  async run({steps, $}) {
    const timestamp = Date.now()
    const data = {
      "email": `test-${timestamp}@example.com`
    }
    
    return await axios($, {
      method: "post",
      url: `https://api.${this.checkout_com.$auth.authorization_server}/customers`,
      headers: {
        Authorization: `Bearer ${this.checkout_com.$auth.oauth_access_token}`,
        "accept": `application/json`,
      },
      data,
    })
  },
})

Connect End

1
2
3
4
5
export default defineComponent({
  async run({ $ }) {
    $.flow.exit('Reason for ending the workflow');
  },
});

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