Edits history of script submission #22543 for ' Create a Customer (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) {
      const STRIPE_CREATE_CUSTOMER_URL = `https://api.stripe.com/v1/customers`;
    
      const token = stripe_con["token"];
    
      const response = await fetch(STRIPE_CREATE_CUSTOMER_URL, {
        method: "POST",
        headers: {
          Authorization: "Bearer " + token,
          "Content-Type": "application/json",
        },
      });
    
      return await response.json();
    }
    

    Submitted by hugo989 7 days ago