hamhus / StripeIntegrationWithCRM

0 stars 0 forks source link

Stripe Integration With CRM

  1. Register an account on Stripe
  2. Create a payment page with a credit card
  3. Stripe gives you access to Webhook to perform integration. The webhooks lets you choose triggers to fire your webhook when an action (payment) is performed.
  4. Create an Azure function that accepts this json when a webhook is fired.
  5. Parson the JSON file in your Azure function and create/update invoices in CRM

Rough Architecture:

StripeIntegrationWithCRMArchitecture

Azure function receives the JSON from Stripe:

AzureFunction_StripePayment