Skip to content
Snippets Groups Projects
Commit b69c6718 authored by mattwire's avatar mattwire
Browse files

Further tweaks to documentation

parent 1ee88a90
No related branches found
No related tags found
No related merge requests found
...@@ -11,6 +11,7 @@ A CiviCRM **Contact** is the equivalent of a Stripe **Customer**. ...@@ -11,6 +11,7 @@ A CiviCRM **Contact** is the equivalent of a Stripe **Customer**.
For a **one-off contribution** an invoice is *NOT* created, so we have to use the Stripe `Charge ID`. In this case we set the contribution `trxn_id` = Stripe `Charge ID`. For a **one-off contribution** an invoice is *NOT* created, so we have to use the Stripe `Charge ID`. In this case we set the contribution `trxn_id` = Stripe `Charge ID`.
For a **recurring contribution** an invoice is created for each contribution: For a **recurring contribution** an invoice is created for each contribution:
* We set the contribution `trxn_id` = Stripe `Invoice ID`. * We set the contribution `trxn_id` = Stripe `Invoice ID`.
* We set individual payments on that contribution (which could be a payment, a failed payment, a refund) to have `trxn_id` = Stripe `Charge ID` * We set individual payments on that contribution (which could be a payment, a failed payment, a refund) to have `trxn_id` = Stripe `Charge ID`
......
...@@ -6,7 +6,7 @@ The CiviCRM Recurring Contribution `trxn_id` = Stripe `subscription ID`. ...@@ -6,7 +6,7 @@ The CiviCRM Recurring Contribution `trxn_id` = Stripe `subscription ID`.
When you create a recurring contribution in CiviCRM using the Stripe payment processor it is linked via the trxn_id to a Stripe subscription. When you create a recurring contribution in CiviCRM using the Stripe payment processor it is linked via the trxn_id to a Stripe subscription.
!!! tip If you are using recurring contributions make sure you have webhooks configured correctly !!! tip "If you are using recurring contributions make sure you have webhooks configured correctly"
See [Webhooks](/webhook) See [Webhooks](/webhook)
## Cancelling Recurring Contributions ## Cancelling Recurring Contributions
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment