Edits history of script submission #22540 for ' Cancel a Payment Intent (stripe)'

  • bunnative
    One script reply has been approved by the moderators
    Ap­pro­ved
    //native
    
    type Stripe = {
      token: string;
    };
    export async function main(stripe_con: Stripe, cancel_id: string) {
      const STRIPE_CANCEL_PAYOUT_URL = `https://api.stripe.com/v1/payouts/:${cancel_id}/cancel`;
    
      const token = stripe_con["token"];
    
      const response = await fetch(STRIPE_CANCEL_PAYOUT_URL, {
        method: "POST",
        headers: {
          Authorization: "Bearer " + token,
          "Content-Type": "application/json",
        },
      });
    
      return await response.json();
    }
    

    Submitted by hugo989 4 days ago