Skip to content

Commit

Permalink
fix links in workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
danidelcar committed Dec 18, 2024
1 parent ba65c70 commit b696a1f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,23 +16,23 @@ These steps describe the flow of requests and responses required to complete a t

![Payment Services sequence diagram](../../../_images/graphql/payment-services.svg)

1. Run the [`getPaymentConfig`](../../schema/checkout/queries/get-payment-config.md) query to fetch the payment configuration needed to render details about PayPal components, such as hosted fields, smart buttons, and Apple Pay.
1. Run the [`getPaymentConfig`](../../payment-services-extension/queries/get-payment-config.md) query to fetch the payment configuration needed to render details about PayPal components, such as hosted fields, smart buttons, and Apple Pay.

1. Commerce returns payment configuration information.

1. Run [`setPaymentMethodOnCart`](../../schema/cart/mutations/set-payment-method.md) to [set the payment method](../tutorials/checkout/set-payment-method.md).
1. Run [`setPaymentMethodOnCart`](../../schema/cart/mutations/set-payment-method.md) to [set the payment method](../../tutorials/checkout/set-payment-method.md).

1. Adobe Commerce returns a `Cart` object.

1. Run [`createPaymentOrder`](../../schema/checkout/mutations/create-payment-order.md) to begin the authorization process.
1. Run [`createPaymentOrder`](../../payment-services-extension/mutations/create-payment-order.md) to begin the authorization process.

1. Commerce forwards the request to PayPal.

1. PayPal returns an `id` value.

1. Adobe Commerce generates a `order_id` and forwards the value in the `mp_order_id` field and the PayPal response in the `id` field.

1. (Optional) If hosted fields and the Signifyd integration are enabled, run [`getPaymentOrder`](../../schema/checkout/queries/get-payment-order.md).
1. (Optional) If hosted fields and the Signifyd integration are enabled, run [`getPaymentOrder`](../../payment-services-extension/queries/get-payment-order.md).

1. (Optional) Adobe Commerce returns details about the payment order.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,19 +14,19 @@ These steps describe the additional flow of requests and responses required to p

![Payment Services sequence diagram](../../../_images/graphql/payment-services-minicart.svg)

1. Run the [`getPaymentConfig`](../../schema/checkout/queries/get-payment-config.md) query to fetch the payment configuration needed to render details about PayPal components, such as hosted fields, smart buttons, and Apple Pay.
1. Run the [`getPaymentConfig`](../../payment-services-extension/queries/get-payment-config.md) query to fetch the payment configuration needed to render details about PayPal components, such as hosted fields, smart buttons, and Apple Pay.

1. Adobe Commerce returns payment configuration information.

1. Run [`createPaymentOrder`](../../schema/checkout/mutations/create-payment-order.md) to begin the authorization process.
1. Run [`createPaymentOrder`](../../payment-services-extension/mutations/create-payment-order.md) to begin the authorization process.

1. Commerce forwards the request to PayPal.

1. PayPal returns an `id` value.

1. Commerce generates an `order_id` and forwards the value in the `mp_order_id` field and in the PayPal response in the `id` field.

1. Run the [`syncPaymentOrder`](../../schema/checkout/mutations/sync-payment-order.md) mutation to get payment details and update the quote with shipping, billing, email, and phone number details.
1. Run the [`syncPaymentOrder`](../../payment-services-extension/mutations/sync-payment-order.md) mutation to get payment details and update the quote with shipping, billing, email, and phone number details.

1. Commerce returns details about the payment order.

Expand Down

0 comments on commit b696a1f

Please sign in to comment.