Fidel API

Make money programmable: Fidel API enables developers to build transformative experiences on top of payment cards.

Integrate the Fidel API API with the Supabase API

Setup the Fidel API API trigger to run a workflow which integrates with the Supabase API. Pipedream's integration platform allows you to integrate Fidel API and Supabase remarkably fast. Free for developers.

Create Program with Fidel API API on New Row Added from Supabase API
Supabase + Fidel API
 
Try it
Create Program with Fidel API API on New Webhook Event (Instant) from Supabase API
Supabase + Fidel API
 
Try it
Delete Card with Fidel API API on New Row Added from Supabase API
Supabase + Fidel API
 
Try it
Delete Card with Fidel API API on New Webhook Event (Instant) from Supabase API
Supabase + Fidel API
 
Try it
Delete Row with Supabase API on New Card Linked (Instant) from Fidel API API
Fidel API + Supabase
 
Try it
New Row Added from the Supabase API

Emit new event for every new row added in a table. See documentation here

 
Try it
New Card Linked (Instant) from the Fidel API API

Emit new event each time a new card is linked to the Fidel API.

 
Try it
New Webhook Event (Instant) from the Supabase API

Emit new event for every insert, update, or delete operation in a table. This source requires user configuration using the Supabase website. More information in the README. Also see documentation here

 
Try it
New Transaction Completed (Instant) from the Fidel API API

Emit new event when a transaction is completed using a card linked to the Fidel API.

 
Try it
Create Program with the Fidel API API

Creates a new card-linked program in the Fidel API. See the documentation

 
Try it
Delete Row with the Supabase API

Deletes row(s) in a database. See the docs here

 
Try it
Delete Card with the Fidel API API

Allows for the removal of a previously linked card from the Fidel API. See the documentation

 
Try it
Insert Row with the Supabase API

Inserts a new row into a database. See the docs here

 
Try it
Link Card with the Fidel API API

Links a new card to the Fidel API for monitoring transactions. See the documentation

 
Try it

Overview of Fidel API

The Fidel API allows you to link credit and debit cards to specific offers or programs, track transactions in real-time, and receive event-driven data. It's a powerful tool for creating loyalty and reward programs, providing insights into customer spending patterns, and automating financial operations. With Pipedream, you can craft workflows that leverage Fidel API's capabilities to trigger actions, sync data, and connect with other apps for enhanced automation.

Connect Fidel API

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: {
    fidel_api: {
      type: "app",
      app: "fidel_api",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.fidel.uk/v1/programs`,
      headers: {
        "Content-Type": `application/json`,
        "Fidel-Key": `${this.fidel_api.$auth.api_key}`,
      },
    })
  },
})

Overview of Supabase

Supabase is a real-time backend-as-a-service that provides developers with a suite of tools to quickly build and scale their applications. It offers database storage, authentication, instant APIs, and real-time subscriptions. With the Supabase API, you can perform CRUD operations on your database, manage users, and listen to database changes in real time. When integrated with Pipedream, you can automate workflows that react to these database events, synchronize data across multiple services, or streamline user management processes.

Connect Supabase

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: {
    supabase: {
      type: "app",
      app: "supabase",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://${this.supabase.$auth.subdomain}.supabase.co/rest/v1/`,
      headers: {
        Authorization: `Bearer ${this.supabase.$auth.service_key}`,
        "apikey": `${this.supabase.$auth.service_key}`,
      },
    })
  },
})