Skip to content

Commit 758eda3

Browse files
committed
Move note to right step
1 parent 4208c3d commit 758eda3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,12 +109,12 @@ _Note: Your application must be public to test the billing process. To test on a
109109
})
110110
# Redirect user to application_charge.confirmation_url so they can approve the charge
111111
```
112-
1. After approving the charge, the user is redirected to `return_url` with `charge_id` parameter
112+
1. After approving the charge, the user is redirected to `return_url` with `charge_id` parameter (_Note: This action is no longer necessary if the charge is created with [API version 2021-01 or later](https://shopify.dev/changelog/auto-activation-of-charges-and-subscriptions)_)
113113
```python
114114
charge = shopify.ApplicationCharge.find(charge_id)
115115
shopify.ApplicationCharge.activate(charge)
116116
```
117-
1. Check that `activated_charge` status is `active` (_Note: This action is no longer necessary if the charge is created with [API version 2021-01 or later](https://shopify.dev/changelog/auto-activation-of-charges-and-subscriptions)_)
117+
1. Check that `activated_charge` status is `active`
118118
```python
119119
activated_charge = shopify.ApplicationCharge.find(charge_id)
120120
has_been_billed = activated_charge.status == 'active'

0 commit comments

Comments
 (0)