Skip to content

Commit 747a10f

Browse files
authored
Fixed grammar and langauge
1 parent 63acfeb commit 747a10f

File tree

1 file changed

+18
-17
lines changed

1 file changed

+18
-17
lines changed

15/umbraco-commerce/how-to-guides/payment-links.md

Lines changed: 18 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,54 +1,55 @@
11
---
2-
description: Learn how to send a payment links to customers in Umbraco Commerce.
2+
description: Learn how to send a payment link to customers in Umbraco Commerce.
33
---
44

55
# Sending Payment Links to Customers
66

7-
A common scenario in ecommerce can be when a store owner wants to send a pre-filled cart to a customer for them to complete. This can be useful in many scenarios. For example, if a customer has requested a quote and the store owner wants to send a link to the customer to make payment.
7+
A common scenario in e-commerce is when a store owner wants to send a pre-filled cart to a customer for them to complete. This can be useful in many scenarios, such as when a customer has requested a quote and the store owner wants to send a link to the customer to make payment.
88

9-
In Umbraco Commerce it take but a few clicks to create and send a payment link. The customer can then click on the link and complete the purchase.
9+
In Umbraco Commerce, it only takes a few clicks to create and send a payment link. The customer can then click the link and complete the purchase.
1010

1111
{% hint style="info" %}
1212
The payment links feature was introduced in Umbraco Commerce version 15.3.0
1313
{% endhint %}
1414

1515
## Generating a Payment Link
1616

17-
1. In the Umbraco backoffice, go to the **Commerce** section, expand the associated store and click on the **Carts** menu item.
18-
2. Click on the **Create Cart** button.
19-
3. Populate the cart with the products you want to include in the payment link.
20-
4. Click on the **Save** button to save the cart.
21-
5. Click on the **Generate Payment Link** button to launch the payment link generator modal.
17+
1. Go to the **Commerce** section in the Umbraco backoffice.
18+
2. Expand the associated store and click on the **Carts** menu item.
19+
3. Click on the **Create Cart** button.
20+
4. Populate the cart with the products you want to include in the payment link.
21+
5. Click on the **Save** button to save the cart.
22+
6. Click on the **Generate Payment Link** button to launch the payment link generator modal.
2223

2324
![Generate Payment Link](images/payment-links/generate-payment-link-button.png)
2425

25-
6. In the payment link generator modal, you can configure the payment link settings. You can set the following options:
26+
7. Configure the payment link settings in the Payment Link Generator modal. You can set the following options:
2627

2728
- **Validity Period**: The period in minutes for which the payment link will be valid.
2829
- **Landing Page URL**: The URL to which the customer will be directed when clicking on the payment link.
2930

3031
![Payment Link Generator](images/payment-links/generate-payment-link-modal.png)
3132

32-
7. With the form filled out, you now have two options to send the payment link to the customer:
33+
8. Use one of the two options to send the payment link to the customer:
3334

3435
- [**Copy to Clipboard**](#copy-to-clipboard)
3536
- [**Send via Email**](#send-via-email)
3637

3738
### Copy to Clipboard
3839

39-
Clicking on the **Copy to Clipboard** button will generate the payment link and then copy it to the clipboard. A notification will display to confirm the copy was successful. You can then paste the link into an email or other communication method.
40+
Clicking on the **Copy to Clipboard** button generates the payment link and then copies it to the clipboard. A notification will display to confirm the copy was successful. You can paste the link into an email or other communication form.
4041

4142
![Copy to Clipboard Notification](images/payment-links/payment-link-copied-to-clipboard.png)
4243

4344
### Send via Email
4445

45-
Clicking on the **Send via Email** button will launch the send email modal. From here you can select the email template to use, along with the email address of the recipient.
46+
Clicking on the **Send via Email** button launches the Send Email modal. From here, you can select an email template and set the recipient's email address.
4647

4748
![Email Template Selection](images/payment-links/choose-payment-link-email-template.png)
4849

4950
![Recipient Configuration](images/payment-links/send-payment-link-email.png)
5051

51-
Clicking on the **Send** button will send the email to the recipient with the payment link included.
52+
Clicking the **Send** button will send the email to the recipient with the payment link.
5253

5354
![Email Payment Link Example](images/payment-links/email.png)
5455

@@ -62,7 +63,7 @@ When the customer receives the payment link, they can click on the link to open
6263

6364
![Payment Link Populated Cart](images/payment-links/checkout.png)
6465

65-
The customer can then proceed to the checkout and complete the purchase as normal.
66+
The customer can proceed to the checkout and complete the purchase as normal.
6667

6768
{% hint style="info" %}
6869
The payment link cart will be held in session until the cart is completed or the session expires. Once completed, any previously open carts will be restored.
@@ -76,13 +77,13 @@ Developers should use this querystring parameter to display a message to the cus
7677

7778
## Headless Considerations
7879

79-
For standard Razor site implementations the handling of the payment links is done automatically. For headless headless Storefront API implementations however, you will need to handle the payment links manually.
80+
The payment links handling is done automatically for standard Razor site implementations. You need to handle the payment links manually for headless Storefront API implementations.
8081

8182
Developers should check for a `payment_link_token` querystring parameter when a customer lands on the site. If present, the developer should use the [Storefront API](../reference/storefront-api/endpoints/order.md#umbraco-commerce-storefront-api-v1-order-paymentlinktoken) to retrieve the cart associated with the payment link token. This can then be loaded into the session for the customer to complete payment.
8283

8384
## Configuration Options
8485

85-
The payment links feature has a number of configuration options you can set via `appsettings.json`:
86+
The payment links feature has several configuration options you can set via `appsettings.json`:
8687

8788
{% code title="appsettings.json" %}
8889
```json
@@ -100,4 +101,4 @@ The payment links feature has a number of configuration options you can set via
100101
```
101102
{% endcode %}
102103

103-
By default Umbraco Commerce payment link tokens are based on the JWT format and are signed using the `TokenSigningSecret` value. The `TokenQueryParameterName` value is used to configure the querystring parameter name used for the payment link token. The `ErrorQueryParameterName` value is used to configure the querystring parameter name used for an error message.
104+
By default, Umbraco Commerce payment link tokens are based on the JSON Web Token (JWT) format and are signed using the `TokenSigningSecret` value. The `TokenQueryParameterName` value is used to configure the querystring parameter name used for the payment link token. The `ErrorQueryParameterName` value is used to configure the querystring parameter name used for an error message.

0 commit comments

Comments
 (0)