• Resolved maxhuch

    (@maxhuch)


    Hello,

    so the full Error is “UNPROCESSABLE_ENTITY – Should equal sum of (unit_amount * quantity) across all items for a given purchase_unit”.

    I found the same issue in a other topic and they switch the smart button to express button, but this is not a solution for me.

    And i deactivated all other plugins, but get still this error.

    So i tested with some Products and different Prices and found this.
    In my Order i bought a product with 738.71€ and one with 713.45€
    The total must be 1452.16€ ( class-paypal-rest-request-builder.php, line 255 => $line_item_total_amount is 1452.16€ )
    Now the code generated the Extra line item with a unit_amount value 0.01€
    And in the next calculation (class-paypal-rest-request-builder.php, line off the line 316) is total 1452.15€.

    Maybe i′m totaly lost in this code, but maybe there is a mistake somewhere.
    Can you check this plz?

    Thy,
    Max

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author WebToffee

    (@webtoffee)

    Hi @maxhuch,

    Thank you for reaching out to us

    Can you please share the PayPal log file and mention if you are using any third-party plugin on your site to add extra fees or charges?

    Thread Starter maxhuch

    (@maxhuch)

    So here is my log from yesterday

    2022-07-19T08:00:27+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Create Order API ) ------------------->
    {
        "intent": "CAPTURE",
        "application_context": {
            "brand_name": "Meindl Fashion Sandbox",
            "locale": "de-DE",
            "landing_page": "BILLING",
            "shipping_preference": "SET_PROVIDED_ADDRESS",
            "user_action": "PAY_NOW",
            "return_url": "https:\/\/stage.meindl-fashion.de\/wc-api\/Eh_PayPal_Express_Payment\/?c=order_details&p=https:\/\/stage.meindl-fashion.de\/kasse\/&intent=CAPTURE",
            "cancel_url": "https:\/\/stage.meindl-fashion.de\/kasse\/?cancel_express_checkout=cancel"
        },
        "purchase_units": [
            {
                "items": [
                    {
                        "name": "Test-Artikel x 1",
                        "description": "Gr\u00f6\u00dfe : 3",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 4201.68
                        }
                    }
                ],
                "amount": {
                    "currency_code": "EUR",
                    "value": 5003.99,
                    "breakdown": {
                        "item_total": {
                            "currency_code": "EUR",
                            "value": 4201.68
                        },
                        "shipping": {
                            "currency_code": "EUR",
                            "value": 3.99
                        },
                        "tax_total": {
                            "currency_code": "EUR",
                            "value": 798.32
                        },
                        "shipping_discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "handling": {
                            "currency_code": "EUR",
                            "value": 0
                        }
                    }
                },
                "shipping": {
                    "name": {
                        "full_name": "Max Huch"
                    },
                    "address": {
                        "address_line_1": "Ferdinand-Wallbrecht-Stra\u00dfe 4",
                        "address_line_2": "",
                        "admin_area_2": "Hannover",
                        "admin_area_1": "",
                        "postal_code": "30163",
                        "country_code": "DE"
                    }
                }
            }
        ]
    }
    2022-07-19T08:00:28+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Response on Create Order API ) ------------------->
    {
        "id": "8C1562347G621392J",
        "status": "CREATED",
        "links": [
            {
                "href": "https:\/\/api.sandbox.paypal.com\/v2\/checkout\/orders\/8C1562347G621392J",
                "rel": "self",
                "method": "GET"
            },
            {
                "href": "https:\/\/www.sandbox.paypal.com\/checkoutnow?token=8C1562347G621392J",
                "rel": "approve",
                "method": "GET"
            },
            {
                "href": "https:\/\/api.sandbox.paypal.com\/v2\/checkout\/orders\/8C1562347G621392J",
                "rel": "update",
                "method": "PATCH"
            },
            {
                "href": "https:\/\/api.sandbox.paypal.com\/v2\/checkout\/orders\/8C1562347G621392J\/capture",
                "rel": "capture",
                "method": "POST"
            }
        ]
    }
    2022-07-19T08:06:09+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Create Order API ) ------------------->
    {
        "intent": "CAPTURE",
        "application_context": {
            "brand_name": "Meindl Fashion Sandbox",
            "locale": "de-DE",
            "landing_page": "BILLING",
            "shipping_preference": "SET_PROVIDED_ADDRESS",
            "user_action": "PAY_NOW",
            "return_url": "https:\/\/stage.meindl-fashion.de\/wc-api\/Eh_PayPal_Express_Payment\/?c=order_details&p=https:\/\/stage.meindl-fashion.de\/kasse\/&intent=CAPTURE",
            "cancel_url": "https:\/\/stage.meindl-fashion.de\/kasse\/?cancel_express_checkout=cancel"
        },
        "purchase_units": [
            {
                "items": [
                    {
                        "name": "Test-Artikel x 1",
                        "description": "Gr\u00f6\u00dfe : 3",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 4201.68
                        }
                    },
                    {
                        "name": "Stiefelette \"Noel\", Meindl X Kennel & Schmenger x 1",
                        "description": "Gr\u00f6\u00dfe : 45",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 226.05
                        }
                    },
                    {
                        "name": "Stiefelette \"Noel\", Meindl X Kennel & Schmenger x 1",
                        "description": "Gr\u00f6\u00dfe : 6",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 226.05
                        }
                    }
                ],
                "amount": {
                    "currency_code": "EUR",
                    "value": 5541.99,
                    "breakdown": {
                        "item_total": {
                            "currency_code": "EUR",
                            "value": 4653.78
                        },
                        "shipping": {
                            "currency_code": "EUR",
                            "value": 3.99
                        },
                        "tax_total": {
                            "currency_code": "EUR",
                            "value": 884.22
                        },
                        "shipping_discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "handling": {
                            "currency_code": "EUR",
                            "value": 0
                        }
                    }
                },
                "shipping": {
                    "name": {
                        "full_name": "Max Huch"
                    },
                    "address": {
                        "address_line_1": "Ferdinand-Wallbrecht-Stra\u00dfe 4",
                        "address_line_2": "",
                        "admin_area_2": "Hannover",
                        "admin_area_1": "",
                        "postal_code": "30163",
                        "country_code": "DE"
                    }
                }
            }
        ]
    }
    2022-07-19T08:06:10+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Response on Create Order API ) ------------------->
    {
        "id": "3SN71140RC288373A",
        "status": "CREATED",
        "links": [
            {
                "href": "https:\/\/api.sandbox.paypal.com\/v2\/checkout\/orders\/3SN71140RC288373A",
                "rel": "self",
                "method": "GET"
            },
            {
                "href": "https:\/\/www.sandbox.paypal.com\/checkoutnow?token=3SN71140RC288373A",
                "rel": "approve",
                "method": "GET"
            },
            {
                "href": "https:\/\/api.sandbox.paypal.com\/v2\/checkout\/orders\/3SN71140RC288373A",
                "rel": "update",
                "method": "PATCH"
            },
            {
                "href": "https:\/\/api.sandbox.paypal.com\/v2\/checkout\/orders\/3SN71140RC288373A\/capture",
                "rel": "capture",
                "method": "POST"
            }
        ]
    }
    2022-07-19T08:06:53+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Create Order API ) ------------------->
    {
        "intent": "CAPTURE",
        "application_context": {
            "brand_name": "Meindl Fashion Sandbox",
            "locale": "de-DE",
            "landing_page": "BILLING",
            "shipping_preference": "SET_PROVIDED_ADDRESS",
            "user_action": "PAY_NOW",
            "return_url": "https:\/\/stage.meindl-fashion.de\/wc-api\/Eh_PayPal_Express_Payment\/?c=order_details&p=https:\/\/stage.meindl-fashion.de\/kasse\/&intent=CAPTURE",
            "cancel_url": "https:\/\/stage.meindl-fashion.de\/kasse\/?cancel_express_checkout=cancel"
        },
        "purchase_units": [
            {
                "items": [
                    {
                        "name": "Test-Artikel x 1",
                        "description": "Gr\u00f6\u00dfe : 3",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 4201.68
                        }
                    },
                    {
                        "name": "Stiefelette \"Noel\", Meindl X Kennel & Schmenger x 1",
                        "description": "Gr\u00f6\u00dfe : 45",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 226.05
                        }
                    },
                    {
                        "name": "Stiefelette \"Noel\", Meindl X Kennel & Schmenger x 1",
                        "description": "Gr\u00f6\u00dfe : 6",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 226.05
                        }
                    },
                    {
                        "name": "Rehlederhose Herren \"Montgomery Bermuda\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 44",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 738.66
                        }
                    }
                ],
                "amount": {
                    "currency_code": "EUR",
                    "value": 6420.99,
                    "breakdown": {
                        "item_total": {
                            "currency_code": "EUR",
                            "value": 5392.44
                        },
                        "shipping": {
                            "currency_code": "EUR",
                            "value": 3.99
                        },
                        "tax_total": {
                            "currency_code": "EUR",
                            "value": 1024.56
                        },
                        "shipping_discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "handling": {
                            "currency_code": "EUR",
                            "value": 0
                        }
                    }
                },
                "shipping": {
                    "name": {
                        "full_name": "Max Huch"
                    },
                    "address": {
                        "address_line_1": "Ferdinand-Wallbrecht-Stra\u00dfe 4",
                        "address_line_2": "",
                        "admin_area_2": "Hannover",
                        "admin_area_1": "",
                        "postal_code": "30163",
                        "country_code": "DE"
                    }
                }
            }
        ]
    }
    2022-07-19T08:06:54+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Response on Create Order API ) ------------------->
    {
        "id": "7D150259BC3272603",
        "status": "CREATED",
        "links": [
            {
                "href": "https:\/\/api.sandbox.paypal.com\/v2\/checkout\/orders\/7D150259BC3272603",
                "rel": "self",
                "method": "GET"
            },
            {
                "href": "https:\/\/www.sandbox.paypal.com\/checkoutnow?token=7D150259BC3272603",
                "rel": "approve",
                "method": "GET"
            },
            {
                "href": "https:\/\/api.sandbox.paypal.com\/v2\/checkout\/orders\/7D150259BC3272603",
                "rel": "update",
                "method": "PATCH"
            },
            {
                "href": "https:\/\/api.sandbox.paypal.com\/v2\/checkout\/orders\/7D150259BC3272603\/capture",
                "rel": "capture",
                "method": "POST"
            }
        ]
    }
    2022-07-19T08:08:43+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Create Order API ) ------------------->
    {
        "intent": "CAPTURE",
        "application_context": {
            "brand_name": "Meindl Fashion Sandbox",
            "locale": "de-DE",
            "landing_page": "BILLING",
            "shipping_preference": "SET_PROVIDED_ADDRESS",
            "user_action": "PAY_NOW",
            "return_url": "https:\/\/stage.meindl-fashion.de\/wc-api\/Eh_PayPal_Express_Payment\/?c=order_details&p=https:\/\/stage.meindl-fashion.de\/kasse\/&intent=CAPTURE",
            "cancel_url": "https:\/\/stage.meindl-fashion.de\/kasse\/?cancel_express_checkout=cancel"
        },
        "purchase_units": [
            {
                "items": [
                    {
                        "name": "Test-Artikel x 1",
                        "description": "Gr\u00f6\u00dfe : 3",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 4201.68
                        }
                    },
                    {
                        "name": "Stiefelette \"Noel\", Meindl X Kennel & Schmenger x 1",
                        "description": "Gr\u00f6\u00dfe : 45",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 226.05
                        }
                    },
                    {
                        "name": "Stiefelette \"Noel\", Meindl X Kennel & Schmenger x 1",
                        "description": "Gr\u00f6\u00dfe : 6",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 226.05
                        }
                    },
                    {
                        "name": "Rehlederhose Herren \"Montgomery Bermuda\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 44",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 738.66
                        }
                    },
                    {
                        "name": "Rehlederhose Herren \"Montgomery Bermuda\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 50",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 738.66
                        }
                    },
                    {
                        "name": "Extra line item",
                        "description": "",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 0.01
                        }
                    }
                ],
                "amount": {
                    "currency_code": "EUR",
                    "value": 7299.99,
                    "breakdown": {
                        "item_total": {
                            "currency_code": "EUR",
                            "value": 6131.09
                        },
                        "shipping": {
                            "currency_code": "EUR",
                            "value": 3.99
                        },
                        "tax_total": {
                            "currency_code": "EUR",
                            "value": 1164.91
                        },
                        "shipping_discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "handling": {
                            "currency_code": "EUR",
                            "value": 0
                        }
                    }
                },
                "shipping": {
                    "name": {
                        "full_name": "Max Huch"
                    },
                    "address": {
                        "address_line_1": "Ferdinand-Wallbrecht-Stra\u00dfe 4",
                        "address_line_2": "",
                        "admin_area_2": "Hannover",
                        "admin_area_1": "",
                        "postal_code": "30163",
                        "country_code": "DE"
                    }
                }
            }
        ]
    }
    2022-07-19T08:08:44+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Response on Create Order API ) ------------------->
    {
        "name": "UNPROCESSABLE_ENTITY",
        "details": [
            {
                "field": "\/purchase_units\/@reference_id=='default'\/amount\/breakdown\/item_total\/value",
                "value": "6131.09",
                "issue": "ITEM_TOTAL_MISMATCH",
                "description": "Should equal sum of (unit_amount * quantity) across all items for a given purchase_unit"
            }
        ],
        "message": "The requested action could not be performed, semantically incorrect, or failed business validation.",
        "debug_id": "da378146c8521",
        "links": [
            {
                "href": "https:\/\/developer.paypal.com\/docs\/api\/orders\/v2\/#error-ITEM_TOTAL_MISMATCH",
                "rel": "information_link",
                "method": "GET"
            }
        ]
    }
    2022-07-19T08:08:57+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Create Order API ) ------------------->
    {
        "intent": "CAPTURE",
        "application_context": {
            "brand_name": "Meindl Fashion Sandbox",
            "locale": "de-DE",
            "landing_page": "BILLING",
            "shipping_preference": "SET_PROVIDED_ADDRESS",
            "user_action": "PAY_NOW",
            "return_url": "https:\/\/stage.meindl-fashion.de\/wc-api\/Eh_PayPal_Express_Payment\/?c=order_details&p=https:\/\/stage.meindl-fashion.de\/kasse\/&intent=CAPTURE",
            "cancel_url": "https:\/\/stage.meindl-fashion.de\/kasse\/?cancel_express_checkout=cancel"
        },
        "purchase_units": [
            {
                "items": [
                    {
                        "name": "Test-Artikel x 1",
                        "description": "Gr\u00f6\u00dfe : 3",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 4201.68
                        }
                    },
                    {
                        "name": "Stiefelette \"Noel\", Meindl X Kennel & Schmenger x 1",
                        "description": "Gr\u00f6\u00dfe : 45",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 226.05
                        }
                    },
                    {
                        "name": "Stiefelette \"Noel\", Meindl X Kennel & Schmenger x 1",
                        "description": "Gr\u00f6\u00dfe : 6",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 226.05
                        }
                    },
                    {
                        "name": "Rehlederhose Herren \"Montgomery Bermuda\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 50",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 738.66
                        }
                    }
                ],
                "amount": {
                    "currency_code": "EUR",
                    "value": 6420.99,
                    "breakdown": {
                        "item_total": {
                            "currency_code": "EUR",
                            "value": 5392.44
                        },
                        "shipping": {
                            "currency_code": "EUR",
                            "value": 3.99
                        },
                        "tax_total": {
                            "currency_code": "EUR",
                            "value": 1024.56
                        },
                        "shipping_discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "handling": {
                            "currency_code": "EUR",
                            "value": 0
                        }
                    }
                },
                "shipping": {
                    "name": {
                        "full_name": "Max Huch"
                    },
                    "address": {
                        "address_line_1": "Ferdinand-Wallbrecht-Stra\u00dfe 4",
                        "address_line_2": "",
                        "admin_area_2": "Hannover",
                        "admin_area_1": "",
                        "postal_code": "30163",
                        "country_code": "DE"
                    }
                }
            }
        ]
    }
    2022-07-19T08:08:58+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Response on Create Order API ) ------------------->
    {
        "id": "6RN03233PX5051138",
        "status": "CREATED",
        "links": [
            {
                "href": "https:\/\/api.sandbox.paypal.com\/v2\/checkout\/orders\/6RN03233PX5051138",
                "rel": "self",
                "method": "GET"
            },
            {
                "href": "https:\/\/www.sandbox.paypal.com\/checkoutnow?token=6RN03233PX5051138",
                "rel": "approve",
                "method": "GET"
            },
            {
                "href": "https:\/\/api.sandbox.paypal.com\/v2\/checkout\/orders\/6RN03233PX5051138",
                "rel": "update",
                "method": "PATCH"
            },
            {
                "href": "https:\/\/api.sandbox.paypal.com\/v2\/checkout\/orders\/6RN03233PX5051138\/capture",
                "rel": "capture",
                "method": "POST"
            }
        ]
    }
    2022-07-19T08:09:23+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Create Order API ) ------------------->
    {
        "intent": "CAPTURE",
        "application_context": {
            "brand_name": "Meindl Fashion Sandbox",
            "locale": "de-DE",
            "landing_page": "BILLING",
            "shipping_preference": "SET_PROVIDED_ADDRESS",
            "user_action": "PAY_NOW",
            "return_url": "https:\/\/stage.meindl-fashion.de\/wc-api\/Eh_PayPal_Express_Payment\/?c=order_details&p=https:\/\/stage.meindl-fashion.de\/kasse\/&intent=CAPTURE",
            "cancel_url": "https:\/\/stage.meindl-fashion.de\/kasse\/?cancel_express_checkout=cancel"
        },
        "purchase_units": [
            {
                "items": [
                    {
                        "name": "Test-Artikel x 1",
                        "description": "Gr\u00f6\u00dfe : 3",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 4201.68
                        }
                    },
                    {
                        "name": "Stiefelette \"Noel\", Meindl X Kennel & Schmenger x 1",
                        "description": "Gr\u00f6\u00dfe : 45",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 226.05
                        }
                    },
                    {
                        "name": "Stiefelette \"Noel\", Meindl X Kennel & Schmenger x 1",
                        "description": "Gr\u00f6\u00dfe : 6",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 226.05
                        }
                    },
                    {
                        "name": "Rehlederhose Herren \"Montgomery Bermuda\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 50",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 738.66
                        }
                    },
                    {
                        "name": "Rehlederhose Herren \"Wildwood Short\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 54",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 713.45
                        }
                    },
                    {
                        "name": "Extra line item",
                        "description": "",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 0.01
                        }
                    }
                ],
                "amount": {
                    "currency_code": "EUR",
                    "value": 7269.99,
                    "breakdown": {
                        "item_total": {
                            "currency_code": "EUR",
                            "value": 6105.88
                        },
                        "shipping": {
                            "currency_code": "EUR",
                            "value": 3.99
                        },
                        "tax_total": {
                            "currency_code": "EUR",
                            "value": 1160.12
                        },
                        "shipping_discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "handling": {
                            "currency_code": "EUR",
                            "value": 0
                        }
                    }
                },
                "shipping": {
                    "name": {
                        "full_name": "Max Huch"
                    },
                    "address": {
                        "address_line_1": "Ferdinand-Wallbrecht-Stra\u00dfe 4",
                        "address_line_2": "",
                        "admin_area_2": "Hannover",
                        "admin_area_1": "",
                        "postal_code": "30163",
                        "country_code": "DE"
                    }
                }
            }
        ]
    }
    2022-07-19T08:09:23+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Response on Create Order API ) ------------------->
    {
        "name": "UNPROCESSABLE_ENTITY",
        "details": [
            {
                "field": "\/purchase_units\/@reference_id=='default'\/amount\/breakdown\/item_total\/value",
                "value": "6105.88",
                "issue": "ITEM_TOTAL_MISMATCH",
                "description": "Should equal sum of (unit_amount * quantity) across all items for a given purchase_unit"
            }
        ],
        "message": "The requested action could not be performed, semantically incorrect, or failed business validation.",
        "debug_id": "d208d31723643",
        "links": [
            {
                "href": "https:\/\/developer.paypal.com\/docs\/api\/orders\/v2\/#error-ITEM_TOTAL_MISMATCH",
                "rel": "information_link",
                "method": "GET"
            }
        ]
    }
    2022-07-19T08:13:07+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Create Order API ) ------------------->
    {
        "intent": "CAPTURE",
        "application_context": {
            "brand_name": "Meindl Fashion Sandbox",
            "locale": "de-DE",
            "landing_page": "BILLING",
            "shipping_preference": "SET_PROVIDED_ADDRESS",
            "user_action": "PAY_NOW",
            "return_url": "https:\/\/stage.meindl-fashion.de\/wc-api\/Eh_PayPal_Express_Payment\/?c=order_details&p=https:\/\/stage.meindl-fashion.de\/kasse\/&intent=CAPTURE",
            "cancel_url": "https:\/\/stage.meindl-fashion.de\/kasse\/?cancel_express_checkout=cancel"
        },
        "purchase_units": [
            {
                "items": [
                    {
                        "name": "Rehlederhose Herren \"Montgomery Bermuda\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 50",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 738.66
                        }
                    },
                    {
                        "name": "Rehlederhose Herren \"Wildwood Short\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 54",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 713.45
                        }
                    },
                    {
                        "name": "Extra line item",
                        "description": "",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 0.01
                        }
                    }
                ],
                "amount": {
                    "currency_code": "EUR",
                    "value": 1731.99,
                    "breakdown": {
                        "item_total": {
                            "currency_code": "EUR",
                            "value": 1452.1
                        },
                        "shipping": {
                            "currency_code": "EUR",
                            "value": 3.99
                        },
                        "tax_total": {
                            "currency_code": "EUR",
                            "value": 275.9
                        },
                        "shipping_discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "handling": {
                            "currency_code": "EUR",
                            "value": 0
                        }
                    }
                },
                "shipping": {
                    "name": {
                        "full_name": "Max Huch"
                    },
                    "address": {
                        "address_line_1": "Ferdinand-Wallbrecht-Stra\u00dfe 4",
                        "address_line_2": "",
                        "admin_area_2": "Hannover",
                        "admin_area_1": "",
                        "postal_code": "30163",
                        "country_code": "DE"
                    }
                }
            }
        ]
    }
    2022-07-19T08:13:07+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Response on Create Order API ) ------------------->
    {
        "name": "UNPROCESSABLE_ENTITY",
        "details": [
            {
                "field": "\/purchase_units\/@reference_id=='default'\/amount\/breakdown\/item_total\/value",
                "value": "1452.1",
                "issue": "ITEM_TOTAL_MISMATCH",
                "description": "Should equal sum of (unit_amount * quantity) across all items for a given purchase_unit"
            }
        ],
        "message": "The requested action could not be performed, semantically incorrect, or failed business validation.",
        "debug_id": "db02407dd141e",
        "links": [
            {
                "href": "https:\/\/developer.paypal.com\/docs\/api\/orders\/v2\/#error-ITEM_TOTAL_MISMATCH",
                "rel": "information_link",
                "method": "GET"
            }
        ]
    }
    2022-07-19T08:16:54+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Create Order API ) ------------------->
    {
        "intent": "CAPTURE",
        "application_context": {
            "brand_name": "Meindl Fashion Sandbox",
            "locale": "de-DE",
            "landing_page": "BILLING",
            "shipping_preference": "SET_PROVIDED_ADDRESS",
            "user_action": "PAY_NOW",
            "return_url": "https:\/\/stage.meindl-fashion.de\/wc-api\/Eh_PayPal_Express_Payment\/?c=order_details&p=https:\/\/stage.meindl-fashion.de\/kasse\/&intent=CAPTURE",
            "cancel_url": "https:\/\/stage.meindl-fashion.de\/kasse\/?cancel_express_checkout=cancel"
        },
        "purchase_units": [
            {
                "items": [
                    {
                        "name": "Rehlederhose Herren \"Wildwood Short\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 54",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 713.45
                        }
                    }
                ],
                "amount": {
                    "currency_code": "EUR",
                    "value": 852.99,
                    "breakdown": {
                        "item_total": {
                            "currency_code": "EUR",
                            "value": 713.45
                        },
                        "shipping": {
                            "currency_code": "EUR",
                            "value": 3.99
                        },
                        "tax_total": {
                            "currency_code": "EUR",
                            "value": 135.55
                        },
                        "shipping_discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "handling": {
                            "currency_code": "EUR",
                            "value": 0
                        }
                    }
                },
                "shipping": {
                    "name": {
                        "full_name": "Max Huch"
                    },
                    "address": {
                        "address_line_1": "Ferdinand-Wallbrecht-Stra\u00dfe 4",
                        "address_line_2": "",
                        "admin_area_2": "Hannover",
                        "admin_area_1": "",
                        "postal_code": "30163",
                        "country_code": "DE"
                    }
                }
            }
        ]
    }
    2022-07-19T08:16:54+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Response on Create Order API ) ------------------->
    {
        "id": "68C079440U940081A",
        "status": "CREATED",
        "links": [
            {
                "href": "https:\/\/api.sandbox.paypal.com\/v2\/checkout\/orders\/68C079440U940081A",
                "rel": "self",
                "method": "GET"
            },
            {
                "href": "https:\/\/www.sandbox.paypal.com\/checkoutnow?token=68C079440U940081A",
                "rel": "approve",
                "method": "GET"
            },
            {
                "href": "https:\/\/api.sandbox.paypal.com\/v2\/checkout\/orders\/68C079440U940081A",
                "rel": "update",
                "method": "PATCH"
            },
            {
                "href": "https:\/\/api.sandbox.paypal.com\/v2\/checkout\/orders\/68C079440U940081A\/capture",
                "rel": "capture",
                "method": "POST"
            }
        ]
    }
    2022-07-19T08:17:16+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Create Order API ) ------------------->
    {
        "intent": "CAPTURE",
        "application_context": {
            "brand_name": "Meindl Fashion Sandbox",
            "locale": "de-DE",
            "landing_page": "BILLING",
            "shipping_preference": "SET_PROVIDED_ADDRESS",
            "user_action": "PAY_NOW",
            "return_url": "https:\/\/stage.meindl-fashion.de\/wc-api\/Eh_PayPal_Express_Payment\/?c=order_details&p=https:\/\/stage.meindl-fashion.de\/kasse\/&intent=CAPTURE",
            "cancel_url": "https:\/\/stage.meindl-fashion.de\/kasse\/?cancel_express_checkout=cancel"
        },
        "purchase_units": [
            {
                "items": [
                    {
                        "name": "Rehlederhose Herren \"Wildwood Short\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 54",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 713.45
                        }
                    },
                    {
                        "name": "Rock \"Daisy\", kabok x 1",
                        "description": "Gr\u00f6\u00dfe : 42",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 1157.98
                        }
                    }
                ],
                "amount": {
                    "currency_code": "EUR",
                    "value": 2230.99,
                    "breakdown": {
                        "item_total": {
                            "currency_code": "EUR",
                            "value": 1871.43
                        },
                        "shipping": {
                            "currency_code": "EUR",
                            "value": 3.99
                        },
                        "tax_total": {
                            "currency_code": "EUR",
                            "value": 355.57
                        },
                        "shipping_discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "handling": {
                            "currency_code": "EUR",
                            "value": 0
                        }
                    }
                },
                "shipping": {
                    "name": {
                        "full_name": "Max Huch"
                    },
                    "address": {
                        "address_line_1": "Ferdinand-Wallbrecht-Stra\u00dfe 4",
                        "address_line_2": "",
                        "admin_area_2": "Hannover",
                        "admin_area_1": "",
                        "postal_code": "30163",
                        "country_code": "DE"
                    }
                }
            }
        ]
    }
    2022-07-19T08:17:17+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Response on Create Order API ) ------------------->
    {
        "id": "5AD92888YS1618003",
        "status": "CREATED",
        "links": [
            {
                "href": "https:\/\/api.sandbox.paypal.com\/v2\/checkout\/orders\/5AD92888YS1618003",
                "rel": "self",
                "method": "GET"
            },
            {
                "href": "https:\/\/www.sandbox.paypal.com\/checkoutnow?token=5AD92888YS1618003",
                "rel": "approve",
                "method": "GET"
            },
            {
                "href": "https:\/\/api.sandbox.paypal.com\/v2\/checkout\/orders\/5AD92888YS1618003",
                "rel": "update",
                "method": "PATCH"
            },
            {
                "href": "https:\/\/api.sandbox.paypal.com\/v2\/checkout\/orders\/5AD92888YS1618003\/capture",
                "rel": "capture",
                "method": "POST"
            }
        ]
    }
    2022-07-19T08:17:51+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Create Order API ) ------------------->
    {
        "intent": "CAPTURE",
        "application_context": {
            "brand_name": "Meindl Fashion Sandbox",
            "locale": "de-DE",
            "landing_page": "BILLING",
            "shipping_preference": "SET_PROVIDED_ADDRESS",
            "user_action": "PAY_NOW",
            "return_url": "https:\/\/stage.meindl-fashion.de\/wc-api\/Eh_PayPal_Express_Payment\/?c=order_details&p=https:\/\/stage.meindl-fashion.de\/kasse\/&intent=CAPTURE",
            "cancel_url": "https:\/\/stage.meindl-fashion.de\/kasse\/?cancel_express_checkout=cancel"
        },
        "purchase_units": [
            {
                "items": [
                    {
                        "name": "Rehlederhose Herren \"Wildwood Short\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 54",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 713.45
                        }
                    },
                    {
                        "name": "Rock \"Daisy\", kabok x 1",
                        "description": "Gr\u00f6\u00dfe : 42",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 1157.98
                        }
                    },
                    {
                        "name": "Rehlederhose Herren \"Wildwood Short\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 46",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 713.45
                        }
                    },
                    {
                        "name": "Extra line item",
                        "description": "",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 0.01
                        }
                    }
                ],
                "amount": {
                    "currency_code": "EUR",
                    "value": 3079.99,
                    "breakdown": {
                        "item_total": {
                            "currency_code": "EUR",
                            "value": 2584.87
                        },
                        "shipping": {
                            "currency_code": "EUR",
                            "value": 3.99
                        },
                        "tax_total": {
                            "currency_code": "EUR",
                            "value": 491.13
                        },
                        "shipping_discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "handling": {
                            "currency_code": "EUR",
                            "value": 0
                        }
                    }
                },
                "shipping": {
                    "name": {
                        "full_name": "Max Huch"
                    },
                    "address": {
                        "address_line_1": "Ferdinand-Wallbrecht-Stra\u00dfe 4",
                        "address_line_2": "",
                        "admin_area_2": "Hannover",
                        "admin_area_1": "",
                        "postal_code": "30163",
                        "country_code": "DE"
                    }
                }
            }
        ]
    }
    2022-07-19T08:17:51+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Response on Create Order API ) ------------------->
    {
        "name": "UNPROCESSABLE_ENTITY",
        "details": [
            {
                "field": "\/purchase_units\/@reference_id=='default'\/amount\/breakdown\/item_total\/value",
                "value": "2584.87",
                "issue": "ITEM_TOTAL_MISMATCH",
                "description": "Should equal sum of (unit_amount * quantity) across all items for a given purchase_unit"
            }
        ],
        "message": "The requested action could not be performed, semantically incorrect, or failed business validation.",
        "debug_id": "a16ea9d43317d",
        "links": [
            {
                "href": "https:\/\/developer.paypal.com\/docs\/api\/orders\/v2\/#error-ITEM_TOTAL_MISMATCH",
                "rel": "information_link",
                "method": "GET"
            }
        ]
    }
    2022-07-19T08:18:59+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Create Order API ) ------------------->
    {
        "intent": "CAPTURE",
        "application_context": {
            "brand_name": "Meindl Fashion Sandbox",
            "locale": "de-DE",
            "landing_page": "BILLING",
            "shipping_preference": "SET_PROVIDED_ADDRESS",
            "user_action": "PAY_NOW",
            "return_url": "https:\/\/stage.meindl-fashion.de\/wc-api\/Eh_PayPal_Express_Payment\/?c=order_details&p=https:\/\/stage.meindl-fashion.de\/kasse\/&intent=CAPTURE",
            "cancel_url": "https:\/\/stage.meindl-fashion.de\/kasse\/?cancel_express_checkout=cancel"
        },
        "purchase_units": [
            {
                "items": [
                    {
                        "name": "Rehlederhose Herren \"Wildwood Short\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 54",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 713.45
                        }
                    },
                    {
                        "name": "Rehlederhose Herren \"Long Island Short\" - Fb. glacier x 1",
                        "description": "Gr\u00f6\u00dfe : 48",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 964.71
                        }
                    },
                    {
                        "name": "Extra line item",
                        "description": "",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 0.01
                        }
                    }
                ],
                "amount": {
                    "currency_code": "EUR",
                    "value": 2000.99,
                    "breakdown": {
                        "item_total": {
                            "currency_code": "EUR",
                            "value": 1678.15
                        },
                        "shipping": {
                            "currency_code": "EUR",
                            "value": 3.99
                        },
                        "tax_total": {
                            "currency_code": "EUR",
                            "value": 318.85
                        },
                        "shipping_discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "handling": {
                            "currency_code": "EUR",
                            "value": 0
                        }
                    }
                },
                "shipping": {
                    "name": {
                        "full_name": "Max Huch"
                    },
                    "address": {
                        "address_line_1": "Ferdinand-Wallbrecht-Stra\u00dfe 4",
                        "address_line_2": "",
                        "admin_area_2": "Hannover",
                        "admin_area_1": "",
                        "postal_code": "30163",
                        "country_code": "DE"
                    }
                }
            }
        ]
    }
    2022-07-19T08:19:00+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Response on Create Order API ) ------------------->
    {
        "name": "UNPROCESSABLE_ENTITY",
        "details": [
            {
                "field": "\/purchase_units\/@reference_id=='default'\/amount\/breakdown\/item_total\/value",
                "value": "1678.15",
                "issue": "ITEM_TOTAL_MISMATCH",
                "description": "Should equal sum of (unit_amount * quantity) across all items for a given purchase_unit"
            }
        ],
        "message": "The requested action could not be performed, semantically incorrect, or failed business validation.",
        "debug_id": "c83418eddf4b9",
        "links": [
            {
                "href": "https:\/\/developer.paypal.com\/docs\/api\/orders\/v2\/#error-ITEM_TOTAL_MISMATCH",
                "rel": "information_link",
                "method": "GET"
            }
        ]
    }
    2022-07-19T08:30:23+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Create Order API ) ------------------->
    {
        "intent": "CAPTURE",
        "application_context": {
            "brand_name": "Meindl Fashion Sandbox",
            "locale": "de-DE",
            "landing_page": "BILLING",
            "shipping_preference": "SET_PROVIDED_ADDRESS",
            "user_action": "PAY_NOW",
            "return_url": "https:\/\/stage.meindl-fashion.de\/wc-api\/Eh_PayPal_Express_Payment\/?c=order_details&p=https:\/\/stage.meindl-fashion.de\/kasse\/&intent=CAPTURE",
            "cancel_url": "https:\/\/stage.meindl-fashion.de\/kasse\/?cancel_express_checkout=cancel"
        },
        "purchase_units": [
            {
                "items": [
                    {
                        "name": "Rehlederhose Herren \"Wildwood Short\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 54",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 713.45
                        }
                    },
                    {
                        "name": "Max - Rehlederhose Herren \"Long Island Short\" - Fb. glacier x 1",
                        "description": "Gr\u00f6\u00dfe : 46",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 1217.65
                        }
                    },
                    {
                        "name": "Extra line item",
                        "description": "",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 0.01
                        }
                    }
                ],
                "amount": {
                    "currency_code": "EUR",
                    "value": 2301.99,
                    "breakdown": {
                        "item_total": {
                            "currency_code": "EUR",
                            "value": 1931.09
                        },
                        "shipping": {
                            "currency_code": "EUR",
                            "value": 3.99
                        },
                        "tax_total": {
                            "currency_code": "EUR",
                            "value": 366.91
                        },
                        "shipping_discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "handling": {
                            "currency_code": "EUR",
                            "value": 0
                        }
                    }
                },
                "shipping": {
                    "name": {
                        "full_name": "Max Huch"
                    },
                    "address": {
                        "address_line_1": "Ferdinand-Wallbrecht-Stra\u00dfe 4",
                        "address_line_2": "",
                        "admin_area_2": "Hannover",
                        "admin_area_1": "",
                        "postal_code": "30163",
                        "country_code": "DE"
                    }
                }
            }
        ]
    }
    2022-07-19T08:30:23+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Response on Create Order API ) ------------------->
    {
        "name": "UNPROCESSABLE_ENTITY",
        "details": [
            {
                "field": "\/purchase_units\/@reference_id=='default'\/amount\/breakdown\/item_total\/value",
                "value": "1931.09",
                "issue": "ITEM_TOTAL_MISMATCH",
                "description": "Should equal sum of (unit_amount * quantity) across all items for a given purchase_unit"
            }
        ],
        "message": "The requested action could not be performed, semantically incorrect, or failed business validation.",
        "debug_id": "ca53fa5d11dd4",
        "links": [
            {
                "href": "https:\/\/developer.paypal.com\/docs\/api\/orders\/v2\/#error-ITEM_TOTAL_MISMATCH",
                "rel": "information_link",
                "method": "GET"
            }
        ]
    }
    2022-07-19T08:30:34+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Create Order API ) ------------------->
    {
        "intent": "CAPTURE",
        "application_context": {
            "brand_name": "Meindl Fashion Sandbox",
            "locale": "de-DE",
            "landing_page": "BILLING",
            "shipping_preference": "SET_PROVIDED_ADDRESS",
            "user_action": "PAY_NOW",
            "return_url": "https:\/\/stage.meindl-fashion.de\/wc-api\/Eh_PayPal_Express_Payment\/?c=order_details&p=https:\/\/stage.meindl-fashion.de\/kasse\/&intent=CAPTURE",
            "cancel_url": "https:\/\/stage.meindl-fashion.de\/kasse\/?cancel_express_checkout=cancel"
        },
        "purchase_units": [
            {
                "items": [
                    {
                        "name": "Rehlederhose Herren \"Wildwood Short\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 54",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 713.45
                        }
                    },
                    {
                        "name": "Max - Rehlederhose Herren \"Long Island Short\" - Fb. glacier x 1",
                        "description": "Gr\u00f6\u00dfe : 46",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 1217.65
                        }
                    },
                    {
                        "name": "Extra line item",
                        "description": "",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 0.01
                        }
                    }
                ],
                "amount": {
                    "currency_code": "EUR",
                    "value": 2301.99,
                    "breakdown": {
                        "item_total": {
                            "currency_code": "EUR",
                            "value": 1931.09
                        },
                        "shipping": {
                            "currency_code": "EUR",
                            "value": 3.99
                        },
                        "tax_total": {
                            "currency_code": "EUR",
                            "value": 366.91
                        },
                        "shipping_discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "handling": {
                            "currency_code": "EUR",
                            "value": 0
                        }
                    }
                },
                "shipping": {
                    "name": {
                        "full_name": "Max Huch"
                    },
                    "address": {
                        "address_line_1": "Ferdinand-Wallbrecht-Stra\u00dfe 4",
                        "address_line_2": "",
                        "admin_area_2": "Hannover",
                        "admin_area_1": "",
                        "postal_code": "30163",
                        "country_code": "DE"
                    }
                }
            }
        ]
    }
    2022-07-19T08:30:34+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Response on Create Order API ) ------------------->
    {
        "name": "UNPROCESSABLE_ENTITY",
        "details": [
            {
                "field": "\/purchase_units\/@reference_id=='default'\/amount\/breakdown\/item_total\/value",
                "value": "1931.09",
                "issue": "ITEM_TOTAL_MISMATCH",
                "description": "Should equal sum of (unit_amount * quantity) across all items for a given purchase_unit"
            }
        ],
        "message": "The requested action could not be performed, semantically incorrect, or failed business validation.",
        "debug_id": "3ccffb143bd76",
        "links": [
            {
                "href": "https:\/\/developer.paypal.com\/docs\/api\/orders\/v2\/#error-ITEM_TOTAL_MISMATCH",
                "rel": "information_link",
                "method": "GET"
            }
        ]
    }
    2022-07-19T08:31:20+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Create Order API ) ------------------->
    {
        "intent": "CAPTURE",
        "application_context": {
            "brand_name": "Meindl Fashion Sandbox",
            "locale": "de-DE",
            "landing_page": "BILLING",
            "shipping_preference": "SET_PROVIDED_ADDRESS",
            "user_action": "PAY_NOW",
            "return_url": "https:\/\/stage.meindl-fashion.de\/wc-api\/Eh_PayPal_Express_Payment\/?c=order_details&p=https:\/\/stage.meindl-fashion.de\/kasse\/&intent=CAPTURE",
            "cancel_url": "https:\/\/stage.meindl-fashion.de\/kasse\/?cancel_express_checkout=cancel"
        },
        "purchase_units": [
            {
                "items": [
                    {
                        "name": "Rehlederhose Herren \"Wildwood Short\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 54",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 713.45
                        }
                    },
                    {
                        "name": "Max - Rehlederhose Herren \"Long Island Short\" - Fb. glacier x 1",
                        "description": "Gr\u00f6\u00dfe : 46",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 1217.65
                        }
                    },
                    {
                        "name": "Extra line item",
                        "description": "",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 0.01
                        }
                    }
                ],
                "amount": {
                    "currency_code": "EUR",
                    "value": 2301.99,
                    "breakdown": {
                        "item_total": {
                            "currency_code": "EUR",
                            "value": 1931.09
                        },
                        "shipping": {
                            "currency_code": "EUR",
                            "value": 3.99
                        },
                        "tax_total": {
                            "currency_code": "EUR",
                            "value": 366.91
                        },
                        "shipping_discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "handling": {
                            "currency_code": "EUR",
                            "value": 0
                        }
                    }
                },
                "shipping": {
                    "name": {
                        "full_name": "Max Huch"
                    },
                    "address": {
                        "address_line_1": "Ferdinand-Wallbrecht-Stra\u00dfe 4",
                        "address_line_2": "",
                        "admin_area_2": "Hannover",
                        "admin_area_1": "",
                        "postal_code": "30163",
                        "country_code": "DE"
                    }
                }
            }
        ]
    }
    2022-07-19T08:31:21+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Response on Create Order API ) ------------------->
    {
        "name": "UNPROCESSABLE_ENTITY",
        "details": [
            {
                "field": "\/purchase_units\/@reference_id=='default'\/amount\/breakdown\/item_total\/value",
                "value": "1931.09",
                "issue": "ITEM_TOTAL_MISMATCH",
                "description": "Should equal sum of (unit_amount * quantity) across all items for a given purchase_unit"
            }
        ],
        "message": "The requested action could not be performed, semantically incorrect, or failed business validation.",
        "debug_id": "e3b21e5f4de35",
        "links": [
            {
                "href": "https:\/\/developer.paypal.com\/docs\/api\/orders\/v2\/#error-ITEM_TOTAL_MISMATCH",
                "rel": "information_link",
                "method": "GET"
            }
        ]
    }
    2022-07-19T08:31:45+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Create Order API ) ------------------->
    {
        "intent": "CAPTURE",
        "application_context": {
            "brand_name": "Meindl Fashion Sandbox",
            "locale": "de-DE",
            "landing_page": "BILLING",
            "shipping_preference": "SET_PROVIDED_ADDRESS",
            "user_action": "PAY_NOW",
            "return_url": "https:\/\/stage.meindl-fashion.de\/wc-api\/Eh_PayPal_Express_Payment\/?c=order_details&p=https:\/\/stage.meindl-fashion.de\/kasse\/&intent=CAPTURE",
            "cancel_url": "https:\/\/stage.meindl-fashion.de\/kasse\/?cancel_express_checkout=cancel"
        },
        "purchase_units": [
            {
                "items": [
                    {
                        "name": "Rehlederhose Herren \"Wildwood Short\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 54",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 713.45
                        }
                    },
                    {
                        "name": "Max Rehlederhose Herren x 1",
                        "description": "Gr\u00f6\u00dfe : 46",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 1217.65
                        }
                    },
                    {
                        "name": "Extra line item",
                        "description": "",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 0.01
                        }
                    }
                ],
                "amount": {
                    "currency_code": "EUR",
                    "value": 2301.99,
                    "breakdown": {
                        "item_total": {
                            "currency_code": "EUR",
                            "value": 1931.09
                        },
                        "shipping": {
                            "currency_code": "EUR",
                            "value": 3.99
                        },
                        "tax_total": {
                            "currency_code": "EUR",
                            "value": 366.91
                        },
                        "shipping_discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "handling": {
                            "currency_code": "EUR",
                            "value": 0
                        }
                    }
                },
                "shipping": {
                    "name": {
                        "full_name": "Max Huch"
                    },
                    "address": {
                        "address_line_1": "Ferdinand-Wallbrecht-Stra\u00dfe 4",
                        "address_line_2": "",
                        "admin_area_2": "Hannover",
                        "admin_area_1": "",
                        "postal_code": "30163",
                        "country_code": "DE"
                    }
                }
            }
        ]
    }
    2022-07-19T08:31:45+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Response on Create Order API ) ------------------->
    {
        "name": "UNPROCESSABLE_ENTITY",
        "details": [
            {
                "field": "\/purchase_units\/@reference_id=='default'\/amount\/breakdown\/item_total\/value",
                "value": "1931.09",
                "issue": "ITEM_TOTAL_MISMATCH",
                "description": "Should equal sum of (unit_amount * quantity) across all items for a given purchase_unit"
            }
        ],
        "message": "The requested action could not be performed, semantically incorrect, or failed business validation.",
        "debug_id": "f56b3ab758241",
        "links": [
            {
                "href": "https:\/\/developer.paypal.com\/docs\/api\/orders\/v2\/#error-ITEM_TOTAL_MISMATCH",
                "rel": "information_link",
                "method": "GET"
            }
        ]
    }
    2022-07-19T08:32:05+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Create Order API ) ------------------->
    {
        "intent": "CAPTURE",
        "application_context": {
            "brand_name": "Meindl Fashion Sandbox",
            "locale": "de-DE",
            "landing_page": "BILLING",
            "shipping_preference": "SET_PROVIDED_ADDRESS",
            "user_action": "PAY_NOW",
            "return_url": "https:\/\/stage.meindl-fashion.de\/wc-api\/Eh_PayPal_Express_Payment\/?c=order_details&p=https:\/\/stage.meindl-fashion.de\/kasse\/&intent=CAPTURE",
            "cancel_url": "https:\/\/stage.meindl-fashion.de\/kasse\/?cancel_express_checkout=cancel"
        },
        "purchase_units": [
            {
                "items": [
                    {
                        "name": "Rehlederhose Herren \"Wildwood Short\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 54",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 713.45
                        }
                    },
                    {
                        "name": "Max dsadasd x 1",
                        "description": "Gr\u00f6\u00dfe : 46",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 1217.65
                        }
                    },
                    {
                        "name": "Extra line item",
                        "description": "",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 0.01
                        }
                    }
                ],
                "amount": {
                    "currency_code": "EUR",
                    "value": 2301.99,
                    "breakdown": {
                        "item_total": {
                            "currency_code": "EUR",
                            "value": 1931.09
                        },
                        "shipping": {
                            "currency_code": "EUR",
                            "value": 3.99
                        },
                        "tax_total": {
                            "currency_code": "EUR",
                            "value": 366.91
                        },
                        "shipping_discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "handling": {
                            "currency_code": "EUR",
                            "value": 0
                        }
                    }
                },
                "shipping": {
                    "name": {
                        "full_name": "Max Huch"
                    },
                    "address": {
                        "address_line_1": "Ferdinand-Wallbrecht-Stra\u00dfe 4",
                        "address_line_2": "",
                        "admin_area_2": "Hannover",
                        "admin_area_1": "",
                        "postal_code": "30163",
                        "country_code": "DE"
                    }
                }
            }
        ]
    }
    2022-07-19T08:32:06+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Response on Create Order API ) ------------------->
    {
        "name": "UNPROCESSABLE_ENTITY",
        "details": [
            {
                "field": "\/purchase_units\/@reference_id=='default'\/amount\/breakdown\/item_total\/value",
                "value": "1931.09",
                "issue": "ITEM_TOTAL_MISMATCH",
                "description": "Should equal sum of (unit_amount * quantity) across all items for a given purchase_unit"
            }
        ],
        "message": "The requested action could not be performed, semantically incorrect, or failed business validation.",
        "debug_id": "1581a6f606e2c",
        "links": [
            {
                "href": "https:\/\/developer.paypal.com\/docs\/api\/orders\/v2\/#error-ITEM_TOTAL_MISMATCH",
                "rel": "information_link",
                "method": "GET"
            }
        ]
    }
    2022-07-19T08:33:49+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Create Order API ) ------------------->
    {
        "intent": "CAPTURE",
        "application_context": {
            "brand_name": "Meindl Fashion Sandbox",
            "locale": "de-DE",
            "landing_page": "BILLING",
            "shipping_preference": "SET_PROVIDED_ADDRESS",
            "user_action": "PAY_NOW",
            "return_url": "https:\/\/stage.meindl-fashion.de\/wc-api\/Eh_PayPal_Express_Payment\/?c=order_details&p=https:\/\/stage.meindl-fashion.de\/kasse\/&intent=CAPTURE",
            "cancel_url": "https:\/\/stage.meindl-fashion.de\/kasse\/?cancel_express_checkout=cancel"
        },
        "purchase_units": [
            {
                "items": [
                    {
                        "name": "Rehlederhose Herren \"Wildwood Short\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 54",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 713.45
                        }
                    },
                    {
                        "name": "Max dsadasd x 1",
                        "description": "Gr\u00f6\u00dfe : 46",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 1217.65
                        }
                    },
                    {
                        "name": "Extra line item",
                        "description": "",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 0.01
                        }
                    }
                ],
                "amount": {
                    "currency_code": "EUR",
                    "value": 2301.99,
                    "breakdown": {
                        "item_total": {
                            "currency_code": "EUR",
                            "value": 1931.09
                        },
                        "shipping": {
                            "currency_code": "EUR",
                            "value": 3.99
                        },
                        "tax_total": {
                            "currency_code": "EUR",
                            "value": 366.91
                        },
                        "shipping_discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "handling": {
                            "currency_code": "EUR",
                            "value": 0
                        }
                    }
                },
                "shipping": {
                    "name": {
                        "full_name": "Max Huch"
                    },
                    "address": {
                        "address_line_1": "Ferdinand-Wallbrecht-Stra\u00dfe 4",
                        "address_line_2": "",
                        "admin_area_2": "Hannover",
                        "admin_area_1": "",
                        "postal_code": "30163",
                        "country_code": "DE"
                    }
                }
            }
        ]
    }
    2022-07-19T08:33:49+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Response on Create Order API ) ------------------->
    {
        "name": "UNPROCESSABLE_ENTITY",
        "details": [
            {
                "field": "\/purchase_units\/@reference_id=='default'\/amount\/breakdown\/item_total\/value",
                "value": "1931.09",
                "issue": "ITEM_TOTAL_MISMATCH",
                "description": "Should equal sum of (unit_amount * quantity) across all items for a given purchase_unit"
            }
        ],
        "message": "The requested action could not be performed, semantically incorrect, or failed business validation.",
        "debug_id": "2318cad4f1fea",
        "links": [
            {
                "href": "https:\/\/developer.paypal.com\/docs\/api\/orders\/v2\/#error-ITEM_TOTAL_MISMATCH",
                "rel": "information_link",
                "method": "GET"
            }
        ]
    }
    2022-07-19T08:34:21+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Create Order API ) ------------------->
    {
        "intent": "CAPTURE",
        "application_context": {
            "brand_name": "Meindl Fashion Sandbox",
            "locale": "de-DE",
            "landing_page": "BILLING",
            "shipping_preference": "SET_PROVIDED_ADDRESS",
            "user_action": "PAY_NOW",
            "return_url": "https:\/\/stage.meindl-fashion.de\/wc-api\/Eh_PayPal_Express_Payment\/?c=order_details&p=https:\/\/stage.meindl-fashion.de\/kasse\/&intent=CAPTURE",
            "cancel_url": "https:\/\/stage.meindl-fashion.de\/kasse\/?cancel_express_checkout=cancel"
        },
        "purchase_units": [
            {
                "items": [
                    {
                        "name": "Rehlederhose Herren \"Wildwood Short\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 54",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 713.45
                        }
                    },
                    {
                        "name": "Max dsadasd x 1",
                        "description": "Gr\u00f6\u00dfe : 46",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 1217.65
                        }
                    },
                    {
                        "name": "Extra line item",
                        "description": "",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 0.01
                        }
                    }
                ],
                "amount": {
                    "currency_code": "EUR",
                    "value": 2301.99,
                    "breakdown": {
                        "item_total": {
                            "currency_code": "EUR",
                            "value": 1931.09
                        },
                        "shipping": {
                            "currency_code": "EUR",
                            "value": 3.99
                        },
                        "tax_total": {
                            "currency_code": "EUR",
                            "value": 366.91
                        },
                        "shipping_discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "handling": {
                            "currency_code": "EUR",
                            "value": 0
                        }
                    }
                },
                "shipping": {
                    "name": {
                        "full_name": "Max Huch"
                    },
                    "address": {
                        "address_line_1": "Ferdinand-Wallbrecht-Stra\u00dfe 4",
                        "address_line_2": "",
                        "admin_area_2": "Hannover",
                        "admin_area_1": "",
                        "postal_code": "30163",
                        "country_code": "DE"
                    }
                }
            }
        ]
    }
    2022-07-19T08:34:21+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Response on Create Order API ) ------------------->
    {
        "name": "UNPROCESSABLE_ENTITY",
        "details": [
            {
                "field": "\/purchase_units\/@reference_id=='default'\/amount\/breakdown\/item_total\/value",
                "value": "1931.09",
                "issue": "ITEM_TOTAL_MISMATCH",
                "description": "Should equal sum of (unit_amount * quantity) across all items for a given purchase_unit"
            }
        ],
        "message": "The requested action could not be performed, semantically incorrect, or failed business validation.",
        "debug_id": "2bdf97056d48c",
        "links": [
            {
                "href": "https:\/\/developer.paypal.com\/docs\/api\/orders\/v2\/#error-ITEM_TOTAL_MISMATCH",
                "rel": "information_link",
                "method": "GET"
            }
        ]
    }
    2022-07-19T08:35:05+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Create Order API ) ------------------->
    {
        "intent": "CAPTURE",
        "application_context": {
            "brand_name": "Meindl Fashion Sandbox",
            "locale": "de-DE",
            "landing_page": "BILLING",
            "shipping_preference": "SET_PROVIDED_ADDRESS",
            "user_action": "PAY_NOW",
            "return_url": "https:\/\/stage.meindl-fashion.de\/wc-api\/Eh_PayPal_Express_Payment\/?c=order_details&p=https:\/\/stage.meindl-fashion.de\/kasse\/&intent=CAPTURE",
            "cancel_url": "https:\/\/stage.meindl-fashion.de\/kasse\/?cancel_express_checkout=cancel"
        },
        "purchase_units": [
            {
                "items": [
                    {
                        "name": "Rehlederhose Herren \"Wildwood Short\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 54",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 713.45
                        }
                    },
                    {
                        "name": "Max dsadasd x 1",
                        "description": "",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 1260.5
                        }
                    }
                ],
                "amount": {
                    "currency_code": "EUR",
                    "value": 2352.99,
                    "breakdown": {
                        "item_total": {
                            "currency_code": "EUR",
                            "value": 1973.95
                        },
                        "shipping": {
                            "currency_code": "EUR",
                            "value": 3.99
                        },
                        "tax_total": {
                            "currency_code": "EUR",
                            "value": 375.05
                        },
                        "shipping_discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "handling": {
                            "currency_code": "EUR",
                            "value": 0
                        }
                    }
                },
                "shipping": {
                    "name": {
                        "full_name": "Max Huch"
                    },
                    "address": {
                        "address_line_1": "Ferdinand-Wallbrecht-Stra\u00dfe 4",
                        "address_line_2": "",
                        "admin_area_2": "Hannover",
                        "admin_area_1": "",
                        "postal_code": "30163",
                        "country_code": "DE"
                    }
                }
            }
        ]
    }
    2022-07-19T08:35:05+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Response on Create Order API ) ------------------->
    {
        "id": "2UU1045802795621C",
        "status": "CREATED",
        "links": [
            {
                "href": "https:\/\/api.sandbox.paypal.com\/v2\/checkout\/orders\/2UU1045802795621C",
                "rel": "self",
                "method": "GET"
            },
            {
                "href": "https:\/\/www.sandbox.paypal.com\/checkoutnow?token=2UU1045802795621C",
                "rel": "approve",
                "method": "GET"
            },
            {
                "href": "https:\/\/api.sandbox.paypal.com\/v2\/checkout\/orders\/2UU1045802795621C",
                "rel": "update",
                "method": "PATCH"
            },
            {
                "href": "https:\/\/api.sandbox.paypal.com\/v2\/checkout\/orders\/2UU1045802795621C\/capture",
                "rel": "capture",
                "method": "POST"
            }
        ]
    }
    2022-07-19T08:37:04+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Create Order API ) ------------------->
    {
        "intent": "CAPTURE",
        "application_context": {
            "brand_name": "Meindl Fashion Sandbox",
            "locale": "de-DE",
            "landing_page": "BILLING",
            "shipping_preference": "SET_PROVIDED_ADDRESS",
            "user_action": "PAY_NOW",
            "return_url": "https:\/\/stage.meindl-fashion.de\/wc-api\/Eh_PayPal_Express_Payment\/?c=order_details&p=https:\/\/stage.meindl-fashion.de\/kasse\/&intent=CAPTURE",
            "cancel_url": "https:\/\/stage.meindl-fashion.de\/kasse\/?cancel_express_checkout=cancel"
        },
        "purchase_units": [
            {
                "items": [
                    {
                        "name": "Rehlederhose Herren \"Wildwood Short\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 54",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 713.45
                        }
                    },
                    {
                        "name": "Max dsadasd x 1",
                        "description": "Gr\u00f6\u00dfe : 110",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 1260.5
                        }
                    }
                ],
                "amount": {
                    "currency_code": "EUR",
                    "value": 2352.99,
                    "breakdown": {
                        "item_total": {
                            "currency_code": "EUR",
                            "value": 1973.95
                        },
                        "shipping": {
                            "currency_code": "EUR",
                            "value": 3.99
                        },
                        "tax_total": {
                            "currency_code": "EUR",
                            "value": 375.05
                        },
                        "shipping_discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "handling": {
                            "currency_code": "EUR",
                            "value": 0
                        }
                    }
                },
                "shipping": {
                    "name": {
                        "full_name": "Max Huch"
                    },
                    "address": {
                        "address_line_1": "Ferdinand-Wallbrecht-Stra\u00dfe 4",
                        "address_line_2": "",
                        "admin_area_2": "Hannover",
                        "admin_area_1": "",
                        "postal_code": "30163",
                        "country_code": "DE"
                    }
                }
            }
        ]
    }
    2022-07-19T08:37:04+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Response on Create Order API ) ------------------->
    {
        "id": "41731808SN1442416",
        "status": "CREATED",
        "links": [
            {
                "href": "https:\/\/api.sandbox.paypal.com\/v2\/checkout\/orders\/41731808SN1442416",
                "rel": "self",
                "method": "GET"
            },
            {
                "href": "https:\/\/www.sandbox.paypal.com\/checkoutnow?token=41731808SN1442416",
                "rel": "approve",
                "method": "GET"
            },
            {
                "href": "https:\/\/api.sandbox.paypal.com\/v2\/checkout\/orders\/41731808SN1442416",
                "rel": "update",
                "method": "PATCH"
            },
            {
                "href": "https:\/\/api.sandbox.paypal.com\/v2\/checkout\/orders\/41731808SN1442416\/capture",
                "rel": "capture",
                "method": "POST"
            }
        ]
    }
    2022-07-19T08:38:01+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Create Order API ) ------------------->
    {
        "intent": "CAPTURE",
        "application_context": {
            "brand_name": "Meindl Fashion Sandbox",
            "locale": "de-DE",
            "landing_page": "BILLING",
            "shipping_preference": "SET_PROVIDED_ADDRESS",
            "user_action": "PAY_NOW",
            "return_url": "https:\/\/stage.meindl-fashion.de\/wc-api\/Eh_PayPal_Express_Payment\/?c=order_details&p=https:\/\/stage.meindl-fashion.de\/kasse\/&intent=CAPTURE",
            "cancel_url": "https:\/\/stage.meindl-fashion.de\/kasse\/?cancel_express_checkout=cancel"
        },
        "purchase_units": [
            {
                "items": [
                    {
                        "name": "Rehlederhose Herren \"Wildwood Short\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 54",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 713.45
                        }
                    },
                    {
                        "name": "Max dsadasd x 1",
                        "description": "Gr\u00f6\u00dfe : 110",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 1260.5
                        }
                    }
                ],
                "amount": {
                    "currency_code": "EUR",
                    "value": 2352.99,
                    "breakdown": {
                        "item_total": {
                            "currency_code": "EUR",
                            "value": 1973.95
                        },
                        "shipping": {
                            "currency_code": "EUR",
                            "value": 3.99
                        },
                        "tax_total": {
                            "currency_code": "EUR",
                            "value": 375.05
                        },
                        "shipping_discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "handling": {
                            "currency_code": "EUR",
                            "value": 0
                        }
                    }
                },
                "shipping": {
                    "name": {
                        "full_name": "Max Huch"
                    },
                    "address": {
                        "address_line_1": "Ferdinand-Wallbrecht-Stra\u00dfe 4",
                        "address_line_2": "",
                        "admin_area_2": "Hannover",
                        "admin_area_1": "",
                        "postal_code": "30163",
                        "country_code": "DE"
                    }
                }
            }
        ]
    }
    2022-07-19T08:38:02+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Response on Create Order API ) ------------------->
    {
        "id": "0YL21704V3163484E",
        "status": "CREATED",
        "links": [
            {
                "href": "https:\/\/api.sandbox.paypal.com\/v2\/checkout\/orders\/0YL21704V3163484E",
                "rel": "self",
                "method": "GET"
            },
            {
                "href": "https:\/\/www.sandbox.paypal.com\/checkoutnow?token=0YL21704V3163484E",
                "rel": "approve",
                "method": "GET"
            },
            {
                "href": "https:\/\/api.sandbox.paypal.com\/v2\/checkout\/orders\/0YL21704V3163484E",
                "rel": "update",
                "method": "PATCH"
            },
            {
                "href": "https:\/\/api.sandbox.paypal.com\/v2\/checkout\/orders\/0YL21704V3163484E\/capture",
                "rel": "capture",
                "method": "POST"
            }
        ]
    }
    2022-07-19T08:39:08+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Create Order API ) ------------------->
    {
        "intent": "CAPTURE",
        "application_context": {
            "brand_name": "Meindl Fashion Sandbox",
            "locale": "de-DE",
            "landing_page": "BILLING",
            "shipping_preference": "SET_PROVIDED_ADDRESS",
            "user_action": "PAY_NOW",
            "return_url": "https:\/\/stage.meindl-fashion.de\/wc-api\/Eh_PayPal_Express_Payment\/?c=order_details&p=https:\/\/stage.meindl-fashion.de\/kasse\/&intent=CAPTURE",
            "cancel_url": "https:\/\/stage.meindl-fashion.de\/kasse\/?cancel_express_checkout=cancel"
        },
        "purchase_units": [
            {
                "items": [
                    {
                        "name": "Rehlederhose Herren \"Wildwood Short\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 54",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 713.45
                        }
                    },
                    {
                        "name": "Max dsadasd x 1",
                        "description": "Gr\u00f6\u00dfe : 50",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 1261.34
                        }
                    }
                ],
                "amount": {
                    "currency_code": "EUR",
                    "value": 2353.99,
                    "breakdown": {
                        "item_total": {
                            "currency_code": "EUR",
                            "value": 1974.79
                        },
                        "shipping": {
                            "currency_code": "EUR",
                            "value": 3.99
                        },
                        "tax_total": {
                            "currency_code": "EUR",
                            "value": 375.21
                        },
                        "shipping_discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "handling": {
                            "currency_code": "EUR",
                            "value": 0
                        }
                    }
                },
                "shipping": {
                    "name": {
                        "full_name": "Max Huch"
                    },
                    "address": {
                        "address_line_1": "Ferdinand-Wallbrecht-Stra\u00dfe 4",
                        "address_line_2": "",
                        "admin_area_2": "Hannover",
                        "admin_area_1": "",
                        "postal_code": "30163",
                        "country_code": "DE"
                    }
                }
            }
        ]
    }
    2022-07-19T08:39:09+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Response on Create Order API ) ------------------->
    {
        "id": "7ML707570B4357833",
        "status": "CREATED",
        "links": [
            {
                "href": "https:\/\/api.sandbox.paypal.com\/v2\/checkout\/orders\/7ML707570B4357833",
                "rel": "self",
                "method": "GET"
            },
            {
                "href": "https:\/\/www.sandbox.paypal.com\/checkoutnow?token=7ML707570B4357833",
                "rel": "approve",
                "method": "GET"
            },
            {
                "href": "https:\/\/api.sandbox.paypal.com\/v2\/checkout\/orders\/7ML707570B4357833",
                "rel": "update",
                "method": "PATCH"
            },
            {
                "href": "https:\/\/api.sandbox.paypal.com\/v2\/checkout\/orders\/7ML707570B4357833\/capture",
                "rel": "capture",
                "method": "POST"
            }
        ]
    }
    2022-07-19T08:40:47+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Create Order API ) ------------------->
    {
        "intent": "CAPTURE",
        "application_context": {
            "brand_name": "Meindl Fashion Sandbox",
            "locale": "de-DE",
            "landing_page": "BILLING",
            "shipping_preference": "SET_PROVIDED_ADDRESS",
            "user_action": "PAY_NOW",
            "return_url": "https:\/\/stage.meindl-fashion.de\/wc-api\/Eh_PayPal_Express_Payment\/?c=order_details&p=https:\/\/stage.meindl-fashion.de\/kasse\/&intent=CAPTURE",
            "cancel_url": "https:\/\/stage.meindl-fashion.de\/kasse\/?cancel_express_checkout=cancel"
        },
        "purchase_units": [
            {
                "items": [
                    {
                        "name": "Rehlederhose Herren \"Wildwood Short\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 54",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 713.45
                        }
                    },
                    {
                        "name": "Max dsadasd x 1",
                        "description": "Gr\u00f6\u00dfe : 50",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 1261.34
                        }
                    },
                    {
                        "name": "Max paypal Test 2 x 1",
                        "description": "Gr\u00f6\u00dfe : 50",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 1260.5
                        }
                    }
                ],
                "amount": {
                    "currency_code": "EUR",
                    "value": 3853.99,
                    "breakdown": {
                        "item_total": {
                            "currency_code": "EUR",
                            "value": 3235.29
                        },
                        "shipping": {
                            "currency_code": "EUR",
                            "value": 3.99
                        },
                        "tax_total": {
                            "currency_code": "EUR",
                            "value": 614.71
                        },
                        "shipping_discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "handling": {
                            "currency_code": "EUR",
                            "value": 0
                        }
                    }
                },
                "shipping": {
                    "name": {
                        "full_name": "Max Huch"
                    },
                    "address": {
                        "address_line_1": "Ferdinand-Wallbrecht-Stra\u00dfe 4",
                        "address_line_2": "",
                        "admin_area_2": "Hannover",
                        "admin_area_1": "",
                        "postal_code": "30163",
                        "country_code": "DE"
                    }
                }
            }
        ]
    }
    2022-07-19T08:40:48+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Response on Create Order API ) ------------------->
    {
        "id": "6AA10426R69426419",
        "status": "CREATED",
        "links": [
            {
                "href": "https:\/\/api.sandbox.paypal.com\/v2\/checkout\/orders\/6AA10426R69426419",
                "rel": "self",
                "method": "GET"
            },
            {
                "href": "https:\/\/www.sandbox.paypal.com\/checkoutnow?token=6AA10426R69426419",
                "rel": "approve",
                "method": "GET"
            },
            {
                "href": "https:\/\/api.sandbox.paypal.com\/v2\/checkout\/orders\/6AA10426R69426419",
                "rel": "update",
                "method": "PATCH"
            },
            {
                "href": "https:\/\/api.sandbox.paypal.com\/v2\/checkout\/orders\/6AA10426R69426419\/capture",
                "rel": "capture",
                "method": "POST"
            }
        ]
    }
    2022-07-19T08:42:44+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Create Order API ) ------------------->
    {
        "intent": "CAPTURE",
        "application_context": {
            "brand_name": "Meindl Fashion Sandbox",
            "locale": "de-DE",
            "landing_page": "BILLING",
            "shipping_preference": "SET_PROVIDED_ADDRESS",
            "user_action": "PAY_NOW",
            "return_url": "https:\/\/stage.meindl-fashion.de\/wc-api\/Eh_PayPal_Express_Payment\/?c=order_details&p=https:\/\/stage.meindl-fashion.de\/kasse\/&intent=CAPTURE",
            "cancel_url": "https:\/\/stage.meindl-fashion.de\/kasse\/?cancel_express_checkout=cancel"
        },
        "purchase_units": [
            {
                "items": [
                    {
                        "name": "Rehlederhose Herren \"Wildwood Short\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 54",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 713.45
                        }
                    },
                    {
                        "name": "Rehlederhose Herren \"Long Island Short\" - Fb. glacier x 1",
                        "description": "Gr\u00f6\u00dfe : 48",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 964.71
                        }
                    },
                    {
                        "name": "Extra line item",
                        "description": "",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 0.01
                        }
                    }
                ],
                "amount": {
                    "currency_code": "EUR",
                    "value": 2000.99,
                    "breakdown": {
                        "item_total": {
                            "currency_code": "EUR",
                            "value": 1678.15
                        },
                        "shipping": {
                            "currency_code": "EUR",
                            "value": 3.99
                        },
                        "tax_total": {
                            "currency_code": "EUR",
                            "value": 318.85
                        },
                        "shipping_discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "handling": {
                            "currency_code": "EUR",
                            "value": 0
                        }
                    }
                },
                "shipping": {
                    "name": {
                        "full_name": "Max Huch"
                    },
                    "address": {
                        "address_line_1": "Ferdinand-Wallbrecht-Stra\u00dfe 4",
                        "address_line_2": "",
                        "admin_area_2": "Hannover",
                        "admin_area_1": "",
                        "postal_code": "30163",
                        "country_code": "DE"
                    }
                }
            }
        ]
    }
    2022-07-19T08:42:45+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Response on Create Order API ) ------------------->
    {
        "name": "UNPROCESSABLE_ENTITY",
        "details": [
            {
                "field": "\/purchase_units\/@reference_id=='default'\/amount\/breakdown\/item_total\/value",
                "value": "1678.15",
                "issue": "ITEM_TOTAL_MISMATCH",
                "description": "Should equal sum of (unit_amount * quantity) across all items for a given purchase_unit"
            }
        ],
        "message": "The requested action could not be performed, semantically incorrect, or failed business validation.",
        "debug_id": "b51ff798304d6",
        "links": [
            {
                "href": "https:\/\/developer.paypal.com\/docs\/api\/orders\/v2\/#error-ITEM_TOTAL_MISMATCH",
                "rel": "information_link",
                "method": "GET"
            }
        ]
    }
    2022-07-19T08:44:27+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Create Order API ) ------------------->
    {
        "intent": "CAPTURE",
        "application_context": {
            "brand_name": "Meindl Fashion Sandbox",
            "locale": "de-DE",
            "landing_page": "BILLING",
            "shipping_preference": "SET_PROVIDED_ADDRESS",
            "user_action": "PAY_NOW",
            "return_url": "https:\/\/stage.meindl-fashion.de\/wc-api\/Eh_PayPal_Express_Payment\/?c=order_details&p=https:\/\/stage.meindl-fashion.de\/kasse\/&intent=CAPTURE",
            "cancel_url": "https:\/\/stage.meindl-fashion.de\/kasse\/?cancel_express_checkout=cancel"
        },
        "purchase_units": [
            {
                "items": [
                    {
                        "name": "Rehlederhose Herren \"Wildwood Short\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 54",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 713.45
                        }
                    },
                    {
                        "name": "Rehlederhose Herren \"Long Island Short\" - Fb. glacier x 1",
                        "description": "Gr\u00f6\u00dfe : 44",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 0.96
                        }
                    }
                ],
                "amount": {
                    "currency_code": "EUR",
                    "value": 854.14,
                    "breakdown": {
                        "item_total": {
                            "currency_code": "EUR",
                            "value": 714.41
                        },
                        "shipping": {
                            "currency_code": "EUR",
                            "value": 3.99
                        },
                        "tax_total": {
                            "currency_code": "EUR",
                            "value": 135.74
                        },
                        "shipping_discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "handling": {
                            "currency_code": "EUR",
                            "value": 0
                        }
                    }
                },
                "shipping": {
                    "name": {
                        "full_name": "Max Huch"
                    },
                    "address": {
                        "address_line_1": "Ferdinand-Wallbrecht-Stra\u00dfe 4",
                        "address_line_2": "",
                        "admin_area_2": "Hannover",
                        "admin_area_1": "",
                        "postal_code": "30163",
                        "country_code": "DE"
                    }
                }
            }
        ]
    }
    2022-07-19T08:44:27+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Response on Create Order API ) ------------------->
    {
        "id": "6UW69418SG4407743",
        "status": "CREATED",
        "links": [
            {
                "href": "https:\/\/api.sandbox.paypal.com\/v2\/checkout\/orders\/6UW69418SG4407743",
                "rel": "self",
                "method": "GET"
            },
            {
                "href": "https:\/\/www.sandbox.paypal.com\/checkoutnow?token=6UW69418SG4407743",
                "rel": "approve",
                "method": "GET"
            },
            {
                "href": "https:\/\/api.sandbox.paypal.com\/v2\/checkout\/orders\/6UW69418SG4407743",
                "rel": "update",
                "method": "PATCH"
            },
            {
                "href": "https:\/\/api.sandbox.paypal.com\/v2\/checkout\/orders\/6UW69418SG4407743\/capture",
                "rel": "capture",
                "method": "POST"
            }
        ]
    }
    2022-07-19T08:45:50+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Create Order API ) ------------------->
    {
        "intent": "CAPTURE",
        "application_context": {
            "brand_name": "Meindl Fashion Sandbox",
            "locale": "de-DE",
            "landing_page": "BILLING",
            "shipping_preference": "SET_PROVIDED_ADDRESS",
            "user_action": "PAY_NOW",
            "return_url": "https:\/\/stage.meindl-fashion.de\/wc-api\/Eh_PayPal_Express_Payment\/?c=order_details&p=https:\/\/stage.meindl-fashion.de\/kasse\/&intent=CAPTURE",
            "cancel_url": "https:\/\/stage.meindl-fashion.de\/kasse\/?cancel_express_checkout=cancel"
        },
        "purchase_units": [
            {
                "items": [
                    {
                        "name": "Rehlederhose Herren \"Wildwood Short\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 54",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 713.45
                        }
                    },
                    {
                        "name": "Rehlederhose Herren \"Long Island Short\" - Fb. glacier x 1",
                        "description": "Gr\u00f6\u00dfe : 44",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 0.96
                        }
                    }
                ],
                "amount": {
                    "currency_code": "EUR",
                    "value": 854.14,
                    "breakdown": {
                        "item_total": {
                            "currency_code": "EUR",
                            "value": 714.41
                        },
                        "shipping": {
                            "currency_code": "EUR",
                            "value": 3.99
                        },
                        "tax_total": {
                            "currency_code": "EUR",
                            "value": 135.74
                        },
                        "shipping_discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "handling": {
                            "currency_code": "EUR",
                            "value": 0
                        }
                    }
                },
                "shipping": {
                    "name": {
                        "full_name": "Max Huch"
                    },
                    "address": {
                        "address_line_1": "Ferdinand-Wallbrecht-Stra\u00dfe 4",
                        "address_line_2": "",
                        "admin_area_2": "Hannover",
                        "admin_area_1": "",
                        "postal_code": "30163",
                        "country_code": "DE"
                    }
                }
            }
        ]
    }
    2022-07-19T08:45:50+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Response on Create Order API ) ------------------->
    {
        "id": "0PC46182RG0946713",
        "status": "CREATED",
        "links": [
            {
                "href": "https:\/\/api.sandbox.paypal.com\/v2\/checkout\/orders\/0PC46182RG0946713",
                "rel": "self",
                "method": "GET"
            },
            {
                "href": "https:\/\/www.sandbox.paypal.com\/checkoutnow?token=0PC46182RG0946713",
                "rel": "approve",
                "method": "GET"
            },
            {
                "href": "https:\/\/api.sandbox.paypal.com\/v2\/checkout\/orders\/0PC46182RG0946713",
                "rel": "update",
                "method": "PATCH"
            },
            {
                "href": "https:\/\/api.sandbox.paypal.com\/v2\/checkout\/orders\/0PC46182RG0946713\/capture",
                "rel": "capture",
                "method": "POST"
            }
        ]
    }
    2022-07-19T08:55:37+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Create Order API ) ------------------->
    {
        "intent": "CAPTURE",
        "application_context": {
            "brand_name": "Meindl Fashion Sandbox",
            "locale": "de-DE",
            "landing_page": "BILLING",
            "shipping_preference": "SET_PROVIDED_ADDRESS",
            "user_action": "PAY_NOW",
            "return_url": "https:\/\/stage.meindl-fashion.de\/wc-api\/Eh_PayPal_Express_Payment\/?c=order_details&p=https:\/\/stage.meindl-fashion.de\/kasse\/&intent=CAPTURE",
            "cancel_url": "https:\/\/stage.meindl-fashion.de\/kasse\/?cancel_express_checkout=cancel"
        },
        "purchase_units": [
            {
                "items": [
                    {
                        "name": "Rehlederhose Herren \"Wildwood Short\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 54",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 713.45
                        }
                    },
                    {
                        "name": "Rehlederhose Herren \"Long Island Short\" - Fb. glacier x 2",
                        "description": "Gr\u00f6\u00dfe : 44",
                        "quantity": 2,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 0.96
                        }
                    }
                ],
                "amount": {
                    "currency_code": "EUR",
                    "value": 855.29,
                    "breakdown": {
                        "item_total": {
                            "currency_code": "EUR",
                            "value": 715.37
                        },
                        "shipping": {
                            "currency_code": "EUR",
                            "value": 3.99
                        },
                        "tax_total": {
                            "currency_code": "EUR",
                            "value": 135.93
                        },
                        "shipping_discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "handling": {
                            "currency_code": "EUR",
                            "value": 0
                        }
                    }
                },
                "shipping": {
                    "name": {
                        "full_name": "Max Huch"
                    },
                    "address": {
                        "address_line_1": "Ferdinand-Wallbrecht-Stra\u00dfe 4",
                        "address_line_2": "",
                        "admin_area_2": "Hannover",
                        "admin_area_1": "",
                        "postal_code": "30163",
                        "country_code": "DE"
                    }
                }
            }
        ]
    }
    2022-07-19T08:55:38+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Response on Create Order API ) ------------------->
    {
        "id": "9XG03406VX202400J",
        "status": "CREATED",
        "links": [
            {
                "href": "https:\/\/api.sandbox.paypal.com\/v2\/checkout\/orders\/9XG03406VX202400J",
                "rel": "self",
                "method": "GET"
            },
            {
                "href": "https:\/\/www.sandbox.paypal.com\/checkoutnow?token=9XG03406VX202400J",
                "rel": "approve",
                "method": "GET"
            },
            {
                "href": "https:\/\/api.sandbox.paypal.com\/v2\/checkout\/orders\/9XG03406VX202400J",
                "rel": "update",
                "method": "PATCH"
            },
            {
                "href": "https:\/\/api.sandbox.paypal.com\/v2\/checkout\/orders\/9XG03406VX202400J\/capture",
                "rel": "capture",
                "method": "POST"
            }
        ]
    }
    2022-07-19T08:56:20+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Create Order API ) ------------------->
    {
        "intent": "CAPTURE",
        "application_context": {
            "brand_name": "Meindl Fashion Sandbox",
            "locale": "de-DE",
            "landing_page": "BILLING",
            "shipping_preference": "SET_PROVIDED_ADDRESS",
            "user_action": "PAY_NOW",
            "return_url": "https:\/\/stage.meindl-fashion.de\/wc-api\/Eh_PayPal_Express_Payment\/?c=order_details&p=https:\/\/stage.meindl-fashion.de\/kasse\/&intent=CAPTURE",
            "cancel_url": "https:\/\/stage.meindl-fashion.de\/kasse\/?cancel_express_checkout=cancel"
        },
        "purchase_units": [
            {
                "items": [
                    {
                        "name": "Rehlederhose Herren \"Wildwood Short\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 54",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 713.45
                        }
                    },
                    {
                        "name": "Rehlederhose Herren \"Long Island Short\" - Fb. glacier x 2",
                        "description": "Gr\u00f6\u00dfe : 44",
                        "quantity": 2,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 0.96
                        }
                    },
                    {
                        "name": "Lederhose Herren \"Bullrider Short\", bisam x 1",
                        "description": "Gr\u00f6\u00dfe : 48",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 494.96
                        }
                    }
                ],
                "amount": {
                    "currency_code": "EUR",
                    "value": 1444.29,
                    "breakdown": {
                        "item_total": {
                            "currency_code": "EUR",
                            "value": 1210.33
                        },
                        "shipping": {
                            "currency_code": "EUR",
                            "value": 3.99
                        },
                        "tax_total": {
                            "currency_code": "EUR",
                            "value": 229.97
                        },
                        "shipping_discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "handling": {
                            "currency_code": "EUR",
                            "value": 0
                        }
                    }
                },
                "shipping": {
                    "name": {
                        "full_name": "Max Huch"
                    },
                    "address": {
                        "address_line_1": "Ferdinand-Wallbrecht-Stra\u00dfe 4",
                        "address_line_2": "",
                        "admin_area_2": "Hannover",
                        "admin_area_1": "",
                        "postal_code": "30163",
                        "country_code": "DE"
                    }
                }
            }
        ]
    }
    2022-07-19T08:56:21+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Response on Create Order API ) ------------------->
    {
        "id": "4AB51171LG430691G",
        "status": "CREATED",
        "links": [
            {
                "href": "https:\/\/api.sandbox.paypal.com\/v2\/checkout\/orders\/4AB51171LG430691G",
                "rel": "self",
                "method": "GET"
            },
            {
                "href": "https:\/\/www.sandbox.paypal.com\/checkoutnow?token=4AB51171LG430691G",
                "rel": "approve",
                "method": "GET"
            },
            {
                "href": "https:\/\/api.sandbox.paypal.com\/v2\/checkout\/orders\/4AB51171LG430691G",
                "rel": "update",
                "method": "PATCH"
            },
            {
                "href": "https:\/\/api.sandbox.paypal.com\/v2\/checkout\/orders\/4AB51171LG430691G\/capture",
                "rel": "capture",
                "method": "POST"
            }
        ]
    }
    2022-07-19T08:56:36+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Create Order API ) ------------------->
    {
        "intent": "CAPTURE",
        "application_context": {
            "brand_name": "Meindl Fashion Sandbox",
            "locale": "de-DE",
            "landing_page": "BILLING",
            "shipping_preference": "SET_PROVIDED_ADDRESS",
            "user_action": "PAY_NOW",
            "return_url": "https:\/\/stage.meindl-fashion.de\/wc-api\/Eh_PayPal_Express_Payment\/?c=order_details&p=https:\/\/stage.meindl-fashion.de\/kasse\/&intent=CAPTURE",
            "cancel_url": "https:\/\/stage.meindl-fashion.de\/kasse\/?cancel_express_checkout=cancel"
        },
        "purchase_units": [
            {
                "items": [
                    {
                        "name": "Rehlederhose Herren \"Wildwood Short\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 54",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 713.45
                        }
                    },
                    {
                        "name": "Lederhose Herren \"Bullrider Short\", bisam x 1",
                        "description": "Gr\u00f6\u00dfe : 48",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 494.96
                        }
                    },
                    {
                        "name": "Extra line item",
                        "description": "",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 0.01
                        }
                    }
                ],
                "amount": {
                    "currency_code": "EUR",
                    "value": 1441.99,
                    "breakdown": {
                        "item_total": {
                            "currency_code": "EUR",
                            "value": 1208.4
                        },
                        "shipping": {
                            "currency_code": "EUR",
                            "value": 3.99
                        },
                        "tax_total": {
                            "currency_code": "EUR",
                            "value": 229.6
                        },
                        "shipping_discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "handling": {
                            "currency_code": "EUR",
                            "value": 0
                        }
                    }
                },
                "shipping": {
                    "name": {
                        "full_name": "Max Huch"
                    },
                    "address": {
                        "address_line_1": "Ferdinand-Wallbrecht-Stra\u00dfe 4",
                        "address_line_2": "",
                        "admin_area_2": "Hannover",
                        "admin_area_1": "",
                        "postal_code": "30163",
                        "country_code": "DE"
                    }
                }
            }
        ]
    }
    2022-07-19T08:56:37+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Response on Create Order API ) ------------------->
    {
        "name": "UNPROCESSABLE_ENTITY",
        "details": [
            {
                "field": "\/purchase_units\/@reference_id=='default'\/amount\/breakdown\/item_total\/value",
                "value": "1208.4",
                "issue": "ITEM_TOTAL_MISMATCH",
                "description": "Should equal sum of (unit_amount * quantity) across all items for a given purchase_unit"
            }
        ],
        "message": "The requested action could not be performed, semantically incorrect, or failed business validation.",
        "debug_id": "67f569069bcdd",
        "links": [
            {
                "href": "https:\/\/developer.paypal.com\/docs\/api\/orders\/v2\/#error-ITEM_TOTAL_MISMATCH",
                "rel": "information_link",
                "method": "GET"
            }
        ]
    }
    2022-07-19T08:57:51+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Create Order API ) ------------------->
    {
        "intent": "CAPTURE",
        "application_context": {
            "brand_name": "Meindl Fashion Sandbox",
            "locale": "de-DE",
            "landing_page": "BILLING",
            "shipping_preference": "SET_PROVIDED_ADDRESS",
            "user_action": "PAY_NOW",
            "return_url": "https:\/\/stage.meindl-fashion.de\/wc-api\/Eh_PayPal_Express_Payment\/?c=order_details&p=https:\/\/stage.meindl-fashion.de\/kasse\/&intent=CAPTURE",
            "cancel_url": "https:\/\/stage.meindl-fashion.de\/kasse\/?cancel_express_checkout=cancel"
        },
        "purchase_units": [
            {
                "items": [
                    {
                        "name": "Rehlederhose Herren \"Wildwood Short\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 54",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 713.45
                        }
                    },
                    {
                        "name": "Lederhose Herren \"Bullrider Short\", bisam x 1",
                        "description": "Gr\u00f6\u00dfe : 48",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 494.96
                        }
                    },
                    {
                        "name": "Rehlederhose Herren \"Long Island Short\" - Fb. glacier x 1",
                        "description": "Gr\u00f6\u00dfe : 44",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 0.96
                        }
                    }
                ],
                "amount": {
                    "currency_code": "EUR",
                    "value": 1443.14,
                    "breakdown": {
                        "item_total": {
                            "currency_code": "EUR",
                            "value": 1209.37
                        },
                        "shipping": {
                            "currency_code": "EUR",
                            "value": 3.99
                        },
                        "tax_total": {
                            "currency_code": "EUR",
                            "value": 229.78
                        },
                        "shipping_discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "handling": {
                            "currency_code": "EUR",
                            "value": 0
                        }
                    }
                },
                "shipping": {
                    "name": {
                        "full_name": "Max Huch"
                    },
                    "address": {
                        "address_line_1": "Ferdinand-Wallbrecht-Stra\u00dfe 4",
                        "address_line_2": "",
                        "admin_area_2": "Hannover",
                        "admin_area_1": "",
                        "postal_code": "30163",
                        "country_code": "DE"
                    }
                }
            }
        ]
    }
    2022-07-19T08:57:52+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Response on Create Order API ) ------------------->
    {
        "id": "3D407536S6216142X",
        "status": "CREATED",
        "links": [
            {
                "href": "https:\/\/api.sandbox.paypal.com\/v2\/checkout\/orders\/3D407536S6216142X",
                "rel": "self",
                "method": "GET"
            },
            {
                "href": "https:\/\/www.sandbox.paypal.com\/checkoutnow?token=3D407536S6216142X",
                "rel": "approve",
                "method": "GET"
            },
            {
                "href": "https:\/\/api.sandbox.paypal.com\/v2\/checkout\/orders\/3D407536S6216142X",
                "rel": "update",
                "method": "PATCH"
            },
            {
                "href": "https:\/\/api.sandbox.paypal.com\/v2\/checkout\/orders\/3D407536S6216142X\/capture",
                "rel": "capture",
                "method": "POST"
            }
        ]
    }
    2022-07-19T08:58:21+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Create Order API ) ------------------->
    {
        "intent": "CAPTURE",
        "application_context": {
            "brand_name": "Meindl Fashion Sandbox",
            "locale": "de-DE",
            "landing_page": "BILLING",
            "shipping_preference": "SET_PROVIDED_ADDRESS",
            "user_action": "PAY_NOW",
            "return_url": "https:\/\/stage.meindl-fashion.de\/wc-api\/Eh_PayPal_Express_Payment\/?c=order_details&p=https:\/\/stage.meindl-fashion.de\/kasse\/&intent=CAPTURE",
            "cancel_url": "https:\/\/stage.meindl-fashion.de\/kasse\/?cancel_express_checkout=cancel"
        },
        "purchase_units": [
            {
                "items": [
                    {
                        "name": "Rehlederhose Herren \"Wildwood Short\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 54",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 713.45
                        }
                    },
                    {
                        "name": "Lederhose Herren \"Bullrider Short\", bisam x 1",
                        "description": "Gr\u00f6\u00dfe : 48",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 494.96
                        }
                    },
                    {
                        "name": "Extra line item",
                        "description": "",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 0.01
                        }
                    }
                ],
                "amount": {
                    "currency_code": "EUR",
                    "value": 1441.99,
                    "breakdown": {
                        "item_total": {
                            "currency_code": "EUR",
                            "value": 1208.4
                        },
                        "shipping": {
                            "currency_code": "EUR",
                            "value": 3.99
                        },
                        "tax_total": {
                            "currency_code": "EUR",
                            "value": 229.6
                        },
                        "shipping_discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "handling": {
                            "currency_code": "EUR",
                            "value": 0
                        }
                    }
                },
                "shipping": {
                    "name": {
                        "full_name": "Max Huch"
                    },
                    "address": {
                        "address_line_1": "Ferdinand-Wallbrecht-Stra\u00dfe 4",
                        "address_line_2": "",
                        "admin_area_2": "Hannover",
                        "admin_area_1": "",
                        "postal_code": "30163",
                        "country_code": "DE"
                    }
                }
            }
        ]
    }
    2022-07-19T08:58:21+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Response on Create Order API ) ------------------->
    {
        "name": "UNPROCESSABLE_ENTITY",
        "details": [
            {
                "field": "\/purchase_units\/@reference_id=='default'\/amount\/breakdown\/item_total\/value",
                "value": "1208.4",
                "issue": "ITEM_TOTAL_MISMATCH",
                "description": "Should equal sum of (unit_amount * quantity) across all items for a given purchase_unit"
            }
        ],
        "message": "The requested action could not be performed, semantically incorrect, or failed business validation.",
        "debug_id": "9fb40cf063e14",
        "links": [
            {
                "href": "https:\/\/developer.paypal.com\/docs\/api\/orders\/v2\/#error-ITEM_TOTAL_MISMATCH",
                "rel": "information_link",
                "method": "GET"
            }
        ]
    }
    2022-07-19T09:00:46+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Create Order API ) ------------------->
    {
        "intent": "CAPTURE",
        "application_context": {
            "brand_name": "Meindl Fashion Sandbox",
            "locale": "de-DE",
            "landing_page": "BILLING",
            "shipping_preference": "SET_PROVIDED_ADDRESS",
            "user_action": "PAY_NOW",
            "return_url": "https:\/\/stage.meindl-fashion.de\/wc-api\/Eh_PayPal_Express_Payment\/?c=order_details&p=https:\/\/stage.meindl-fashion.de\/kasse\/&intent=CAPTURE",
            "cancel_url": "https:\/\/stage.meindl-fashion.de\/kasse\/?cancel_express_checkout=cancel"
        },
        "purchase_units": [
            {
                "items": [
                    {
                        "name": "Rehlederhose Herren \"Wildwood Short\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 54",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 713.45
                        }
                    },
                    {
                        "name": "Lederhose Herren \"Bullrider Short\", bisam x 1",
                        "description": "Gr\u00f6\u00dfe : 50",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 494.96
                        }
                    },
                    {
                        "name": "Extra line item",
                        "description": "",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 0.01
                        }
                    }
                ],
                "amount": {
                    "currency_code": "EUR",
                    "value": 1441.99,
                    "breakdown": {
                        "item_total": {
                            "currency_code": "EUR",
                            "value": 1208.4
                        },
                        "shipping": {
                            "currency_code": "EUR",
                            "value": 3.99
                        },
                        "tax_total": {
                            "currency_code": "EUR",
                            "value": 229.6
                        },
                        "shipping_discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "handling": {
                            "currency_code": "EUR",
                            "value": 0
                        }
                    }
                },
                "shipping": {
                    "name": {
                        "full_name": "Max Huch"
                    },
                    "address": {
                        "address_line_1": "Ferdinand-Wallbrecht-Stra\u00dfe 4",
                        "address_line_2": "",
                        "admin_area_2": "Hannover",
                        "admin_area_1": "",
                        "postal_code": "30163",
                        "country_code": "DE"
                    }
                }
            }
        ]
    }
    2022-07-19T09:00:46+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Response on Create Order API ) ------------------->
    {
        "name": "UNPROCESSABLE_ENTITY",
        "details": [
            {
                "field": "\/purchase_units\/@reference_id=='default'\/amount\/breakdown\/item_total\/value",
                "value": "1208.4",
                "issue": "ITEM_TOTAL_MISMATCH",
                "description": "Should equal sum of (unit_amount * quantity) across all items for a given purchase_unit"
            }
        ],
        "message": "The requested action could not be performed, semantically incorrect, or failed business validation.",
        "debug_id": "21e9e9bd50e76",
        "links": [
            {
                "href": "https:\/\/developer.paypal.com\/docs\/api\/orders\/v2\/#error-ITEM_TOTAL_MISMATCH",
                "rel": "information_link",
                "method": "GET"
            }
        ]
    }
    2022-07-19T09:02:44+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Create Order API ) ------------------->
    {
        "intent": "CAPTURE",
        "application_context": {
            "brand_name": "Meindl Fashion Sandbox",
            "locale": "de-DE",
            "landing_page": "BILLING",
            "shipping_preference": "SET_PROVIDED_ADDRESS",
            "user_action": "PAY_NOW",
            "return_url": "https:\/\/stage.meindl-fashion.de\/wc-api\/Eh_PayPal_Express_Payment\/?c=order_details&p=https:\/\/stage.meindl-fashion.de\/kasse\/&intent=CAPTURE",
            "cancel_url": "https:\/\/stage.meindl-fashion.de\/kasse\/?cancel_express_checkout=cancel"
        },
        "purchase_units": [
            {
                "items": [
                    {
                        "name": "Rehlederhose Herren \"Wildwood Short\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 54",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 713.45
                        }
                    },
                    {
                        "name": "Lederhose Herren \"Bullrider Short\", bisam x 2",
                        "description": "Gr\u00f6\u00dfe : 44",
                        "quantity": 2,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 964.71
                        }
                    },
                    {
                        "name": "Extra line item",
                        "description": "",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 0.01
                        }
                    }
                ],
                "amount": {
                    "currency_code": "EUR",
                    "value": 3148.99,
                    "breakdown": {
                        "item_total": {
                            "currency_code": "EUR",
                            "value": 2642.86
                        },
                        "shipping": {
                            "currency_code": "EUR",
                            "value": 3.99
                        },
                        "tax_total": {
                            "currency_code": "EUR",
                            "value": 502.14
                        },
                        "shipping_discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "handling": {
                            "currency_code": "EUR",
                            "value": 0
                        }
                    }
                },
                "shipping": {
                    "name": {
                        "full_name": "Max Huch"
                    },
                    "address": {
                        "address_line_1": "Ferdinand-Wallbrecht-Stra\u00dfe 4",
                        "address_line_2": "",
                        "admin_area_2": "Hannover",
                        "admin_area_1": "",
                        "postal_code": "30163",
                        "country_code": "DE"
                    }
                }
            }
        ]
    }
    2022-07-19T09:02:44+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Response on Create Order API ) ------------------->
    {
        "name": "UNPROCESSABLE_ENTITY",
        "details": [
            {
                "field": "\/purchase_units\/@reference_id=='default'\/amount\/breakdown\/item_total\/value",
                "value": "2642.86",
                "issue": "ITEM_TOTAL_MISMATCH",
                "description": "Should equal sum of (unit_amount * quantity) across all items for a given purchase_unit"
            }
        ],
        "message": "The requested action could not be performed, semantically incorrect, or failed business validation.",
        "debug_id": "8c2d318675ad5",
        "links": [
            {
                "href": "https:\/\/developer.paypal.com\/docs\/api\/orders\/v2\/#error-ITEM_TOTAL_MISMATCH",
                "rel": "information_link",
                "method": "GET"
            }
        ]
    }
    2022-07-19T09:03:07+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Create Order API ) ------------------->
    {
        "intent": "CAPTURE",
        "application_context": {
            "brand_name": "Meindl Fashion Sandbox",
            "locale": "de-DE",
            "landing_page": "BILLING",
            "shipping_preference": "SET_PROVIDED_ADDRESS",
            "user_action": "PAY_NOW",
            "return_url": "https:\/\/stage.meindl-fashion.de\/wc-api\/Eh_PayPal_Express_Payment\/?c=order_details&p=https:\/\/stage.meindl-fashion.de\/kasse\/&intent=CAPTURE",
            "cancel_url": "https:\/\/stage.meindl-fashion.de\/kasse\/?cancel_express_checkout=cancel"
        },
        "purchase_units": [
            {
                "items": [
                    {
                        "name": "Rehlederhose Herren \"Wildwood Short\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 54",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 713.45
                        }
                    },
                    {
                        "name": "Lederhose Herren \"Bullrider Short\", bisam x 1",
                        "description": "Gr\u00f6\u00dfe : 44",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 964.71
                        }
                    },
                    {
                        "name": "Extra line item",
                        "description": "",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 0.01
                        }
                    }
                ],
                "amount": {
                    "currency_code": "EUR",
                    "value": 2000.99,
                    "breakdown": {
                        "item_total": {
                            "currency_code": "EUR",
                            "value": 1678.15
                        },
                        "shipping": {
                            "currency_code": "EUR",
                            "value": 3.99
                        },
                        "tax_total": {
                            "currency_code": "EUR",
                            "value": 318.85
                        },
                        "shipping_discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "handling": {
                            "currency_code": "EUR",
                            "value": 0
                        }
                    }
                },
                "shipping": {
                    "name": {
                        "full_name": "Max Huch"
                    },
                    "address": {
                        "address_line_1": "Ferdinand-Wallbrecht-Stra\u00dfe 4",
                        "address_line_2": "",
                        "admin_area_2": "Hannover",
                        "admin_area_1": "",
                        "postal_code": "30163",
                        "country_code": "DE"
                    }
                }
            }
        ]
    }
    2022-07-19T09:03:08+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Response on Create Order API ) ------------------->
    {
        "name": "UNPROCESSABLE_ENTITY",
        "details": [
            {
                "field": "\/purchase_units\/@reference_id=='default'\/amount\/breakdown\/item_total\/value",
                "value": "1678.15",
                "issue": "ITEM_TOTAL_MISMATCH",
                "description": "Should equal sum of (unit_amount * quantity) across all items for a given purchase_unit"
            }
        ],
        "message": "The requested action could not be performed, semantically incorrect, or failed business validation.",
        "debug_id": "7f35f111042f9",
        "links": [
            {
                "href": "https:\/\/developer.paypal.com\/docs\/api\/orders\/v2\/#error-ITEM_TOTAL_MISMATCH",
                "rel": "information_link",
                "method": "GET"
            }
        ]
    }
    2022-07-19T09:04:35+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Create Order API ) ------------------->
    {
        "intent": "CAPTURE",
        "application_context": {
            "brand_name": "Meindl Fashion Sandbox",
            "locale": "de-DE",
            "landing_page": "BILLING",
            "shipping_preference": "SET_PROVIDED_ADDRESS",
            "user_action": "PAY_NOW",
            "return_url": "https:\/\/stage.meindl-fashion.de\/wc-api\/Eh_PayPal_Express_Payment\/?c=order_details&p=https:\/\/stage.meindl-fashion.de\/kasse\/&intent=CAPTURE",
            "cancel_url": "https:\/\/stage.meindl-fashion.de\/kasse\/?cancel_express_checkout=cancel"
        },
        "purchase_units": [
            {
                "items": [
                    {
                        "name": "Rehlederhose Herren \"Wildwood Short\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 54",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 713.45
                        }
                    },
                    {
                        "name": "Lederhose Herren \"Bullrider Short\", bisam x 2",
                        "description": "Gr\u00f6\u00dfe : 44",
                        "quantity": 2,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 964.71
                        }
                    },
                    {
                        "name": "Extra line item",
                        "description": "",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 0.01
                        }
                    }
                ],
                "amount": {
                    "currency_code": "EUR",
                    "value": 3148.99,
                    "breakdown": {
                        "item_total": {
                            "currency_code": "EUR",
                            "value": 2642.86
                        },
                        "shipping": {
                            "currency_code": "EUR",
                            "value": 3.99
                        },
                        "tax_total": {
                            "currency_code": "EUR",
                            "value": 502.14
                        },
                        "shipping_discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "handling": {
                            "currency_code": "EUR",
                            "value": 0
                        }
                    }
                },
                "shipping": {
                    "name": {
                        "full_name": "Max Huch"
                    },
                    "address": {
                        "address_line_1": "Ferdinand-Wallbrecht-Stra\u00dfe 4",
                        "address_line_2": "",
                        "admin_area_2": "Hannover",
                        "admin_area_1": "",
                        "postal_code": "30163",
                        "country_code": "DE"
                    }
                }
            }
        ]
    }
    2022-07-19T09:04:35+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Response on Create Order API ) ------------------->
    {
        "name": "UNPROCESSABLE_ENTITY",
        "details": [
            {
                "field": "\/purchase_units\/@reference_id=='default'\/amount\/breakdown\/item_total\/value",
                "value": "2642.86",
                "issue": "ITEM_TOTAL_MISMATCH",
                "description": "Should equal sum of (unit_amount * quantity) across all items for a given purchase_unit"
            }
        ],
        "message": "The requested action could not be performed, semantically incorrect, or failed business validation.",
        "debug_id": "2365771bc7f0e",
        "links": [
            {
                "href": "https:\/\/developer.paypal.com\/docs\/api\/orders\/v2\/#error-ITEM_TOTAL_MISMATCH",
                "rel": "information_link",
                "method": "GET"
            }
        ]
    }
    2022-07-19T09:04:50+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Create Order API ) ------------------->
    {
        "intent": "CAPTURE",
        "application_context": {
            "brand_name": "Meindl Fashion Sandbox",
            "locale": "de-DE",
            "landing_page": "BILLING",
            "shipping_preference": "SET_PROVIDED_ADDRESS",
            "user_action": "PAY_NOW",
            "return_url": "https:\/\/stage.meindl-fashion.de\/wc-api\/Eh_PayPal_Express_Payment\/?c=order_details&p=https:\/\/stage.meindl-fashion.de\/kasse\/&intent=CAPTURE",
            "cancel_url": "https:\/\/stage.meindl-fashion.de\/kasse\/?cancel_express_checkout=cancel"
        },
        "purchase_units": [
            {
                "items": [
                    {
                        "name": "Rehlederhose Herren \"Wildwood Short\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 54",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 713.45
                        }
                    },
                    {
                        "name": "Lederhose Herren \"Bullrider Short\", bisam x 1",
                        "description": "Gr\u00f6\u00dfe : 44",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 964.71
                        }
                    },
                    {
                        "name": "Extra line item",
                        "description": "",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 0.01
                        }
                    }
                ],
                "amount": {
                    "currency_code": "EUR",
                    "value": 2000.99,
                    "breakdown": {
                        "item_total": {
                            "currency_code": "EUR",
                            "value": 1678.15
                        },
                        "shipping": {
                            "currency_code": "EUR",
                            "value": 3.99
                        },
                        "tax_total": {
                            "currency_code": "EUR",
                            "value": 318.85
                        },
                        "shipping_discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "handling": {
                            "currency_code": "EUR",
                            "value": 0
                        }
                    }
                },
                "shipping": {
                    "name": {
                        "full_name": "Max Huch"
                    },
                    "address": {
                        "address_line_1": "Ferdinand-Wallbrecht-Stra\u00dfe 4",
                        "address_line_2": "",
                        "admin_area_2": "Hannover",
                        "admin_area_1": "",
                        "postal_code": "30163",
                        "country_code": "DE"
                    }
                }
            }
        ]
    }
    2022-07-19T09:04:50+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Response on Create Order API ) ------------------->
    {
        "name": "UNPROCESSABLE_ENTITY",
        "details": [
            {
                "field": "\/purchase_units\/@reference_id=='default'\/amount\/breakdown\/item_total\/value",
                "value": "1678.15",
                "issue": "ITEM_TOTAL_MISMATCH",
                "description": "Should equal sum of (unit_amount * quantity) across all items for a given purchase_unit"
            }
        ],
        "message": "The requested action could not be performed, semantically incorrect, or failed business validation.",
        "debug_id": "d6df4ca9c2392",
        "links": [
            {
                "href": "https:\/\/developer.paypal.com\/docs\/api\/orders\/v2\/#error-ITEM_TOTAL_MISMATCH",
                "rel": "information_link",
                "method": "GET"
            }
        ]
    }
    2022-07-19T09:07:53+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Create Order API ) ------------------->
    {
        "intent": "CAPTURE",
        "application_context": {
            "brand_name": "Meindl Fashion Sandbox",
            "locale": "de-DE",
            "landing_page": "BILLING",
            "shipping_preference": "SET_PROVIDED_ADDRESS",
            "user_action": "PAY_NOW",
            "return_url": "https:\/\/stage.meindl-fashion.de\/wc-api\/Eh_PayPal_Express_Payment\/?c=order_details&p=https:\/\/stage.meindl-fashion.de\/kasse\/&intent=CAPTURE",
            "cancel_url": "https:\/\/stage.meindl-fashion.de\/kasse\/?cancel_express_checkout=cancel"
        },
        "purchase_units": [
            {
                "items": [
                    {
                        "name": "Rehlederhose Herren \"Wildwood Short\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 54",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 713.45
                        }
                    },
                    {
                        "name": "Lederhose Herren \"Bullrider Short\", bisam x 1",
                        "description": "Gr\u00f6\u00dfe : 44",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 1.24
                        }
                    },
                    {
                        "name": "Extra line item",
                        "description": "",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 0.01
                        }
                    }
                ],
                "amount": {
                    "currency_code": "EUR",
                    "value": 854.46,
                    "breakdown": {
                        "item_total": {
                            "currency_code": "EUR",
                            "value": 714.68
                        },
                        "shipping": {
                            "currency_code": "EUR",
                            "value": 3.99
                        },
                        "tax_total": {
                            "currency_code": "EUR",
                            "value": 135.79
                        },
                        "shipping_discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "handling": {
                            "currency_code": "EUR",
                            "value": 0
                        }
                    }
                },
                "shipping": {
                    "name": {
                        "full_name": "Max Huch"
                    },
                    "address": {
                        "address_line_1": "Ferdinand-Wallbrecht-Stra\u00dfe 4",
                        "address_line_2": "",
                        "admin_area_2": "Hannover",
                        "admin_area_1": "",
                        "postal_code": "30163",
                        "country_code": "DE"
                    }
                }
            }
        ]
    }
    2022-07-19T09:07:53+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Response on Create Order API ) ------------------->
    {
        "name": "UNPROCESSABLE_ENTITY",
        "details": [
            {
                "field": "\/purchase_units\/@reference_id=='default'\/amount\/breakdown\/item_total\/value",
                "value": "714.68",
                "issue": "ITEM_TOTAL_MISMATCH",
                "description": "Should equal sum of (unit_amount * quantity) across all items for a given purchase_unit"
            }
        ],
        "message": "The requested action could not be performed, semantically incorrect, or failed business validation.",
        "debug_id": "887bcb6b32ce3",
        "links": [
            {
                "href": "https:\/\/developer.paypal.com\/docs\/api\/orders\/v2\/#error-ITEM_TOTAL_MISMATCH",
                "rel": "information_link",
                "method": "GET"
            }
        ]
    }
    2022-07-19T09:09:48+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Create Order API ) ------------------->
    {
        "intent": "CAPTURE",
        "application_context": {
            "brand_name": "Meindl Fashion Sandbox",
            "locale": "de-DE",
            "landing_page": "BILLING",
            "shipping_preference": "SET_PROVIDED_ADDRESS",
            "user_action": "PAY_NOW",
            "return_url": "https:\/\/stage.meindl-fashion.de\/wc-api\/Eh_PayPal_Express_Payment\/?c=order_details&p=https:\/\/stage.meindl-fashion.de\/kasse\/&intent=CAPTURE",
            "cancel_url": "https:\/\/stage.meindl-fashion.de\/kasse\/?cancel_express_checkout=cancel"
        },
        "purchase_units": [
            {
                "items": [
                    {
                        "name": "Rehlederhose Herren \"Wildwood Short\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 54",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 713.45
                        }
                    },
                    {
                        "name": "Lederhose Herren \"Bullrider Short\", bisam x 1",
                        "description": "Gr\u00f6\u00dfe : 44",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 1.24
                        }
                    },
                    {
                        "name": "Rehlederhose Herren \"Long Island Short\" - Fb. glacier x 1",
                        "description": "Gr\u00f6\u00dfe : 44",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 964.71
                        }
                    },
                    {
                        "name": "Extra line item",
                        "description": "",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 0.01
                        }
                    }
                ],
                "amount": {
                    "currency_code": "EUR",
                    "value": 2002.46,
                    "breakdown": {
                        "item_total": {
                            "currency_code": "EUR",
                            "value": 1679.39
                        },
                        "shipping": {
                            "currency_code": "EUR",
                            "value": 3.99
                        },
                        "tax_total": {
                            "currency_code": "EUR",
                            "value": 319.08
                        },
                        "shipping_discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "handling": {
                            "currency_code": "EUR",
                            "value": 0
                        }
                    }
                },
                "shipping": {
                    "name": {
                        "full_name": "Max Huch"
                    },
                    "address": {
                        "address_line_1": "Ferdinand-Wallbrecht-Stra\u00dfe 4",
                        "address_line_2": "",
                        "admin_area_2": "Hannover",
                        "admin_area_1": "",
                        "postal_code": "30163",
                        "country_code": "DE"
                    }
                }
            }
        ]
    }
    2022-07-19T09:09:48+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Response on Create Order API ) ------------------->
    {
        "name": "UNPROCESSABLE_ENTITY",
        "details": [
            {
                "field": "\/purchase_units\/@reference_id=='default'\/amount\/breakdown\/item_total\/value",
                "value": "1679.39",
                "issue": "ITEM_TOTAL_MISMATCH",
                "description": "Should equal sum of (unit_amount * quantity) across all items for a given purchase_unit"
            }
        ],
        "message": "The requested action could not be performed, semantically incorrect, or failed business validation.",
        "debug_id": "e94425deb4893",
        "links": [
            {
                "href": "https:\/\/developer.paypal.com\/docs\/api\/orders\/v2\/#error-ITEM_TOTAL_MISMATCH",
                "rel": "information_link",
                "method": "GET"
            }
        ]
    }
    2022-07-19T09:10:00+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Create Order API ) ------------------->
    {
        "intent": "CAPTURE",
        "application_context": {
            "brand_name": "Meindl Fashion Sandbox",
            "locale": "de-DE",
            "landing_page": "BILLING",
            "shipping_preference": "SET_PROVIDED_ADDRESS",
            "user_action": "PAY_NOW",
            "return_url": "https:\/\/stage.meindl-fashion.de\/wc-api\/Eh_PayPal_Express_Payment\/?c=order_details&p=https:\/\/stage.meindl-fashion.de\/kasse\/&intent=CAPTURE",
            "cancel_url": "https:\/\/stage.meindl-fashion.de\/kasse\/?cancel_express_checkout=cancel"
        },
        "purchase_units": [
            {
                "items": [
                    {
                        "name": "Rehlederhose Herren \"Wildwood Short\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 54",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 713.45
                        }
                    },
                    {
                        "name": "Rehlederhose Herren \"Long Island Short\" - Fb. glacier x 1",
                        "description": "Gr\u00f6\u00dfe : 44",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 964.71
                        }
                    },
                    {
                        "name": "Extra line item",
                        "description": "",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 0.01
                        }
                    }
                ],
                "amount": {
                    "currency_code": "EUR",
                    "value": 2000.99,
                    "breakdown": {
                        "item_total": {
                            "currency_code": "EUR",
                            "value": 1678.15
                        },
                        "shipping": {
                            "currency_code": "EUR",
                            "value": 3.99
                        },
                        "tax_total": {
                            "currency_code": "EUR",
                            "value": 318.85
                        },
                        "shipping_discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "handling": {
                            "currency_code": "EUR",
                            "value": 0
                        }
                    }
                },
                "shipping": {
                    "name": {
                        "full_name": "Max Huch"
                    },
                    "address": {
                        "address_line_1": "Ferdinand-Wallbrecht-Stra\u00dfe 4",
                        "address_line_2": "",
                        "admin_area_2": "Hannover",
                        "admin_area_1": "",
                        "postal_code": "30163",
                        "country_code": "DE"
                    }
                }
            }
        ]
    }
    2022-07-19T09:10:00+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Response on Create Order API ) ------------------->
    {
        "name": "UNPROCESSABLE_ENTITY",
        "details": [
            {
                "field": "\/purchase_units\/@reference_id=='default'\/amount\/breakdown\/item_total\/value",
                "value": "1678.15",
                "issue": "ITEM_TOTAL_MISMATCH",
                "description": "Should equal sum of (unit_amount * quantity) across all items for a given purchase_unit"
            }
        ],
        "message": "The requested action could not be performed, semantically incorrect, or failed business validation.",
        "debug_id": "aec517453ca75",
        "links": [
            {
                "href": "https:\/\/developer.paypal.com\/docs\/api\/orders\/v2\/#error-ITEM_TOTAL_MISMATCH",
                "rel": "information_link",
                "method": "GET"
            }
        ]
    }
    2022-07-19T09:11:47+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Create Order API ) ------------------->
    {
        "intent": "CAPTURE",
        "application_context": {
            "brand_name": "Meindl Fashion Sandbox",
            "locale": "de-DE",
            "landing_page": "BILLING",
            "shipping_preference": "SET_PROVIDED_ADDRESS",
            "user_action": "PAY_NOW",
            "return_url": "https:\/\/stage.meindl-fashion.de\/wc-api\/Eh_PayPal_Express_Payment\/?c=order_details&p=https:\/\/stage.meindl-fashion.de\/kasse\/&intent=CAPTURE",
            "cancel_url": "https:\/\/stage.meindl-fashion.de\/kasse\/?cancel_express_checkout=cancel"
        },
        "purchase_units": [
            {
                "items": [
                    {
                        "name": "Rehlederhose Herren \"Wildwood Short\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 54",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 713.45
                        }
                    },
                    {
                        "name": "Rehlederhose Herren \"Long Island Short\" - Fb. glacier x 1",
                        "description": "Gr\u00f6\u00dfe : 44",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 964.71
                        }
                    },
                    {
                        "name": "Extra line item",
                        "description": "",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 0.01
                        }
                    }
                ],
                "amount": {
                    "currency_code": "EUR",
                    "value": 2000.99,
                    "breakdown": {
                        "item_total": {
                            "currency_code": "EUR",
                            "value": 1678.15
                        },
                        "shipping": {
                            "currency_code": "EUR",
                            "value": 3.99
                        },
                        "tax_total": {
                            "currency_code": "EUR",
                            "value": 318.85
                        },
                        "shipping_discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "handling": {
                            "currency_code": "EUR",
                            "value": 0
                        }
                    }
                },
                "shipping": {
                    "name": {
                        "full_name": "Max Huch"
                    },
                    "address": {
                        "address_line_1": "Ferdinand-Wallbrecht-Stra\u00dfe 4",
                        "address_line_2": "",
                        "admin_area_2": "Hannover",
                        "admin_area_1": "",
                        "postal_code": "30163",
                        "country_code": "DE"
                    }
                }
            }
        ]
    }
    2022-07-19T09:11:47+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Response on Create Order API ) ------------------->
    {
        "name": "UNPROCESSABLE_ENTITY",
        "details": [
            {
                "field": "\/purchase_units\/@reference_id=='default'\/amount\/breakdown\/item_total\/value",
                "value": "1678.15",
                "issue": "ITEM_TOTAL_MISMATCH",
                "description": "Should equal sum of (unit_amount * quantity) across all items for a given purchase_unit"
            }
        ],
        "message": "The requested action could not be performed, semantically incorrect, or failed business validation.",
        "debug_id": "aa428ea54e41d",
        "links": [
            {
                "href": "https:\/\/developer.paypal.com\/docs\/api\/orders\/v2\/#error-ITEM_TOTAL_MISMATCH",
                "rel": "information_link",
                "method": "GET"
            }
        ]
    }
    2022-07-19T09:12:50+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Create Order API ) ------------------->
    {
        "intent": "CAPTURE",
        "application_context": {
            "brand_name": "Meindl Fashion Sandbox",
            "locale": "de-DE",
            "landing_page": "BILLING",
            "shipping_preference": "SET_PROVIDED_ADDRESS",
            "user_action": "PAY_NOW",
            "return_url": "https:\/\/stage.meindl-fashion.de\/wc-api\/Eh_PayPal_Express_Payment\/?c=order_details&p=https:\/\/stage.meindl-fashion.de\/kasse\/&intent=CAPTURE",
            "cancel_url": "https:\/\/stage.meindl-fashion.de\/kasse\/?cancel_express_checkout=cancel"
        },
        "purchase_units": [
            {
                "items": [
                    {
                        "name": "Rehlederhose Herren \"Wildwood Short\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 54",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 713.45
                        }
                    },
                    {
                        "name": "Rehlederhose Herren \"Long Island Short\" - Fb. glacier x 1",
                        "description": "Gr\u00f6\u00dfe : 44",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 964.71
                        }
                    },
                    {
                        "name": "Extra line item",
                        "description": "",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 0.01
                        }
                    }
                ],
                "amount": {
                    "currency_code": "EUR",
                    "value": 2000.99,
                    "breakdown": {
                        "item_total": {
                            "currency_code": "EUR",
                            "value": 1678.15
                        },
                        "shipping": {
                            "currency_code": "EUR",
                            "value": 3.99
                        },
                        "tax_total": {
                            "currency_code": "EUR",
                            "value": 318.85
                        },
                        "shipping_discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "handling": {
                            "currency_code": "EUR",
                            "value": 0
                        }
                    }
                },
                "shipping": {
                    "name": {
                        "full_name": "Max Huch"
                    },
                    "address": {
                        "address_line_1": "Ferdinand-Wallbrecht-Stra\u00dfe 4",
                        "address_line_2": "",
                        "admin_area_2": "Hannover",
                        "admin_area_1": "",
                        "postal_code": "30163",
                        "country_code": "DE"
                    }
                }
            }
        ]
    }
    2022-07-19T09:12:50+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Response on Create Order API ) ------------------->
    {
        "name": "UNPROCESSABLE_ENTITY",
        "details": [
            {
                "field": "\/purchase_units\/@reference_id=='default'\/amount\/breakdown\/item_total\/value",
                "value": "1678.15",
                "issue": "ITEM_TOTAL_MISMATCH",
                "description": "Should equal sum of (unit_amount * quantity) across all items for a given purchase_unit"
            }
        ],
        "message": "The requested action could not be performed, semantically incorrect, or failed business validation.",
        "debug_id": "78d80b8ab12ff",
        "links": [
            {
                "href": "https:\/\/developer.paypal.com\/docs\/api\/orders\/v2\/#error-ITEM_TOTAL_MISMATCH",
                "rel": "information_link",
                "method": "GET"
            }
        ]
    }
    2022-07-19T09:14:25+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Create Order API ) ------------------->
    {
        "intent": "CAPTURE",
        "application_context": {
            "brand_name": "Meindl Fashion Sandbox",
            "locale": "de-DE",
            "landing_page": "BILLING",
            "shipping_preference": "SET_PROVIDED_ADDRESS",
            "user_action": "PAY_NOW",
            "return_url": "https:\/\/stage.meindl-fashion.de\/wc-api\/Eh_PayPal_Express_Payment\/?c=order_details&p=https:\/\/stage.meindl-fashion.de\/kasse\/&intent=CAPTURE",
            "cancel_url": "https:\/\/stage.meindl-fashion.de\/kasse\/?cancel_express_checkout=cancel"
        },
        "purchase_units": [
            {
                "items": [
                    {
                        "name": "Rehlederhose Herren \"Wildwood Short\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 54",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 713.45
                        }
                    },
                    {
                        "name": "Rehlederhose Herren \"Long Island Short\" - Fb. glacier x 1",
                        "description": "Gr\u00f6\u00dfe : 44",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 964.71
                        }
                    },
                    {
                        "name": "Extra line item",
                        "description": "",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 0.01
                        }
                    }
                ],
                "amount": {
                    "currency_code": "EUR",
                    "value": 2000.99,
                    "breakdown": {
                        "item_total": {
                            "currency_code": "EUR",
                            "value": 1678.15
                        },
                        "shipping": {
                            "currency_code": "EUR",
                            "value": 3.99
                        },
                        "tax_total": {
                            "currency_code": "EUR",
                            "value": 318.85
                        },
                        "shipping_discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "handling": {
                            "currency_code": "EUR",
                            "value": 0
                        }
                    }
                },
                "shipping": {
                    "name": {
                        "full_name": "Max Huch"
                    },
                    "address": {
                        "address_line_1": "Ferdinand-Wallbrecht-Stra\u00dfe 4",
                        "address_line_2": "",
                        "admin_area_2": "Hannover",
                        "admin_area_1": "",
                        "postal_code": "30163",
                        "country_code": "DE"
                    }
                }
            }
        ]
    }
    2022-07-19T09:14:25+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Response on Create Order API ) ------------------->
    {
        "name": "UNPROCESSABLE_ENTITY",
        "details": [
            {
                "field": "\/purchase_units\/@reference_id=='default'\/amount\/breakdown\/item_total\/value",
                "value": "1678.15",
                "issue": "ITEM_TOTAL_MISMATCH",
                "description": "Should equal sum of (unit_amount * quantity) across all items for a given purchase_unit"
            }
        ],
        "message": "The requested action could not be performed, semantically incorrect, or failed business validation.",
        "debug_id": "51b1a7c524f50",
        "links": [
            {
                "href": "https:\/\/developer.paypal.com\/docs\/api\/orders\/v2\/#error-ITEM_TOTAL_MISMATCH",
                "rel": "information_link",
                "method": "GET"
            }
        ]
    }
    2022-07-19T09:14:55+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Create Order API ) ------------------->
    {
        "intent": "CAPTURE",
        "application_context": {
            "brand_name": "Meindl Fashion Sandbox",
            "locale": "de-DE",
            "landing_page": "BILLING",
            "shipping_preference": "SET_PROVIDED_ADDRESS",
            "user_action": "PAY_NOW",
            "return_url": "https:\/\/stage.meindl-fashion.de\/wc-api\/Eh_PayPal_Express_Payment\/?c=order_details&p=https:\/\/stage.meindl-fashion.de\/kasse\/&intent=CAPTURE",
            "cancel_url": "https:\/\/stage.meindl-fashion.de\/kasse\/?cancel_express_checkout=cancel"
        },
        "purchase_units": [
            {
                "items": [
                    {
                        "name": "Rehlederhose Herren \"Wildwood Short\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 54",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 713.45
                        }
                    }
                ],
                "amount": {
                    "currency_code": "EUR",
                    "value": 852.99,
                    "breakdown": {
                        "item_total": {
                            "currency_code": "EUR",
                            "value": 713.45
                        },
                        "shipping": {
                            "currency_code": "EUR",
                            "value": 3.99
                        },
                        "tax_total": {
                            "currency_code": "EUR",
                            "value": 135.55
                        },
                        "shipping_discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "handling": {
                            "currency_code": "EUR",
                            "value": 0
                        }
                    }
                },
                "shipping": {
                    "name": {
                        "full_name": "Max Huch"
                    },
                    "address": {
                        "address_line_1": "Ferdinand-Wallbrecht-Stra\u00dfe 4",
                        "address_line_2": "",
                        "admin_area_2": "Hannover",
                        "admin_area_1": "",
                        "postal_code": "30163",
                        "country_code": "DE"
                    }
                }
            }
        ]
    }
    2022-07-19T09:14:56+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Response on Create Order API ) ------------------->
    {
        "id": "1XT137409B8367819",
        "status": "CREATED",
        "links": [
            {
                "href": "https:\/\/api.sandbox.paypal.com\/v2\/checkout\/orders\/1XT137409B8367819",
                "rel": "self",
                "method": "GET"
            },
            {
                "href": "https:\/\/www.sandbox.paypal.com\/checkoutnow?token=1XT137409B8367819",
                "rel": "approve",
                "method": "GET"
            },
            {
                "href": "https:\/\/api.sandbox.paypal.com\/v2\/checkout\/orders\/1XT137409B8367819",
                "rel": "update",
                "method": "PATCH"
            },
            {
                "href": "https:\/\/api.sandbox.paypal.com\/v2\/checkout\/orders\/1XT137409B8367819\/capture",
                "rel": "capture",
                "method": "POST"
            }
        ]
    }
    2022-07-19T09:16:29+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Create Order API ) ------------------->
    {
        "intent": "CAPTURE",
        "application_context": {
            "brand_name": "Meindl Fashion Sandbox",
            "locale": "de-DE",
            "landing_page": "BILLING",
            "shipping_preference": "SET_PROVIDED_ADDRESS",
            "user_action": "PAY_NOW",
            "return_url": "https:\/\/stage.meindl-fashion.de\/wc-api\/Eh_PayPal_Express_Payment\/?c=order_details&p=https:\/\/stage.meindl-fashion.de\/kasse\/&intent=CAPTURE",
            "cancel_url": "https:\/\/stage.meindl-fashion.de\/kasse\/?cancel_express_checkout=cancel"
        },
        "purchase_units": [
            {
                "items": [
                    {
                        "name": "Rehlederhose Herren \"Wildwood Short\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 54",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 713.45
                        }
                    },
                    {
                        "name": "Lederhose Herren \"Bullrider Short\", bisam x 1",
                        "description": "Gr\u00f6\u00dfe : 44",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 1.24
                        }
                    },
                    {
                        "name": "Rehlederhose Herren \"Long Island Short\" - Fb. glacier x 1",
                        "description": "Gr\u00f6\u00dfe : 44",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 964.71
                        }
                    },
                    {
                        "name": "Extra line item",
                        "description": "",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 0.01
                        }
                    }
                ],
                "amount": {
                    "currency_code": "EUR",
                    "value": 2002.46,
                    "breakdown": {
                        "item_total": {
                            "currency_code": "EUR",
                            "value": 1679.39
                        },
                        "shipping": {
                            "currency_code": "EUR",
                            "value": 3.99
                        },
                        "tax_total": {
                            "currency_code": "EUR",
                            "value": 319.08
                        },
                        "shipping_discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "handling": {
                            "currency_code": "EUR",
                            "value": 0
                        }
                    }
                },
                "shipping": {
                    "name": {
                        "full_name": "Max Huch"
                    },
                    "address": {
                        "address_line_1": "Ferdinand-Wallbrecht-Stra\u00dfe 4",
                        "address_line_2": "",
                        "admin_area_2": "Hannover",
                        "admin_area_1": "",
                        "postal_code": "30163",
                        "country_code": "DE"
                    }
                }
            }
        ]
    }
    2022-07-19T09:16:30+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Response on Create Order API ) ------------------->
    {
        "name": "UNPROCESSABLE_ENTITY",
        "details": [
            {
                "field": "\/purchase_units\/@reference_id=='default'\/amount\/breakdown\/item_total\/value",
                "value": "1679.39",
                "issue": "ITEM_TOTAL_MISMATCH",
                "description": "Should equal sum of (unit_amount * quantity) across all items for a given purchase_unit"
            }
        ],
        "message": "The requested action could not be performed, semantically incorrect, or failed business validation.",
        "debug_id": "80b8a44561e3c",
        "links": [
            {
                "href": "https:\/\/developer.paypal.com\/docs\/api\/orders\/v2\/#error-ITEM_TOTAL_MISMATCH",
                "rel": "information_link",
                "method": "GET"
            }
        ]
    }
    2022-07-19T09:17:16+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Create Order API ) ------------------->
    {
        "intent": "CAPTURE",
        "application_context": {
            "brand_name": "Meindl Fashion Sandbox",
            "locale": "de-DE",
            "landing_page": "BILLING",
            "shipping_preference": "SET_PROVIDED_ADDRESS",
            "user_action": "PAY_NOW",
            "return_url": "https:\/\/stage.meindl-fashion.de\/wc-api\/Eh_PayPal_Express_Payment\/?c=order_details&p=https:\/\/stage.meindl-fashion.de\/kasse\/&intent=CAPTURE",
            "cancel_url": "https:\/\/stage.meindl-fashion.de\/kasse\/?cancel_express_checkout=cancel"
        },
        "purchase_units": [
            {
                "items": [
                    {
                        "name": "Rehlederhose Herren \"Wildwood Short\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 54",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 713.45
                        }
                    },
                    {
                        "name": "Lederhose Herren \"Bullrider Short\", bisam x 1",
                        "description": "Gr\u00f6\u00dfe : 44",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 1.24
                        }
                    },
                    {
                        "name": "Rehlederhose Herren \"Long Island Short\" - Fb. glacier x 1",
                        "description": "Gr\u00f6\u00dfe : 44",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 964.71
                        }
                    },
                    {
                        "name": "Extra line item",
                        "description": "",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 0.01
                        }
                    }
                ],
                "amount": {
                    "currency_code": "EUR",
                    "value": 2002.46,
                    "breakdown": {
                        "item_total": {
                            "currency_code": "EUR",
                            "value": 1679.39
                        },
                        "shipping": {
                            "currency_code": "EUR",
                            "value": 3.99
                        },
                        "tax_total": {
                            "currency_code": "EUR",
                            "value": 319.08
                        },
                        "shipping_discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "handling": {
                            "currency_code": "EUR",
                            "value": 0
                        }
                    }
                },
                "shipping": {
                    "name": {
                        "full_name": "Max Huch"
                    },
                    "address": {
                        "address_line_1": "Ferdinand-Wallbrecht-Stra\u00dfe 4",
                        "address_line_2": "",
                        "admin_area_2": "Hannover",
                        "admin_area_1": "",
                        "postal_code": "30163",
                        "country_code": "DE"
                    }
                }
            }
        ]
    }
    2022-07-19T09:17:16+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Response on Create Order API ) ------------------->
    {
        "name": "UNPROCESSABLE_ENTITY",
        "details": [
            {
                "field": "\/purchase_units\/@reference_id=='default'\/amount\/breakdown\/item_total\/value",
                "value": "1679.39",
                "issue": "ITEM_TOTAL_MISMATCH",
                "description": "Should equal sum of (unit_amount * quantity) across all items for a given purchase_unit"
            }
        ],
        "message": "The requested action could not be performed, semantically incorrect, or failed business validation.",
        "debug_id": "bb2b28c91fb11",
        "links": [
            {
                "href": "https:\/\/developer.paypal.com\/docs\/api\/orders\/v2\/#error-ITEM_TOTAL_MISMATCH",
                "rel": "information_link",
                "method": "GET"
            }
        ]
    }
    2022-07-19T09:18:01+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Create Order API ) ------------------->
    {
        "intent": "CAPTURE",
        "application_context": {
            "brand_name": "Meindl Fashion Sandbox",
            "locale": "de-DE",
            "landing_page": "BILLING",
            "shipping_preference": "SET_PROVIDED_ADDRESS",
            "user_action": "PAY_NOW",
            "return_url": "https:\/\/stage.meindl-fashion.de\/wc-api\/Eh_PayPal_Express_Payment\/?c=order_details&p=https:\/\/stage.meindl-fashion.de\/kasse\/&intent=CAPTURE",
            "cancel_url": "https:\/\/stage.meindl-fashion.de\/kasse\/?cancel_express_checkout=cancel"
        },
        "purchase_units": [
            {
                "items": [
                    {
                        "name": "Rehlederhose Herren \"Wildwood Short\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 54",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 713.45
                        }
                    },
                    {
                        "name": "Lederhose Herren \"Bullrider Short\", bisam x 1",
                        "description": "Gr\u00f6\u00dfe : 44",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 1.24
                        }
                    },
                    {
                        "name": "Rehlederhose Herren \"Long Island Short\" - Fb. glacier x 1",
                        "description": "Gr\u00f6\u00dfe : 44",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 964.71
                        }
                    },
                    {
                        "name": "Extra line item",
                        "description": "",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 0.01
                        }
                    }
                ],
                "amount": {
                    "currency_code": "EUR",
                    "value": 2002.46,
                    "breakdown": {
                        "item_total": {
                            "currency_code": "EUR",
                            "value": 1679.39
                        },
                        "shipping": {
                            "currency_code": "EUR",
                            "value": 3.99
                        },
                        "tax_total": {
                            "currency_code": "EUR",
                            "value": 319.08
                        },
                        "shipping_discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "handling": {
                            "currency_code": "EUR",
                            "value": 0
                        }
                    }
                },
                "shipping": {
                    "name": {
                        "full_name": "Max Huch"
                    },
                    "address": {
                        "address_line_1": "Ferdinand-Wallbrecht-Stra\u00dfe 4",
                        "address_line_2": "",
                        "admin_area_2": "Hannover",
                        "admin_area_1": "",
                        "postal_code": "30163",
                        "country_code": "DE"
                    }
                }
            }
        ]
    }
    2022-07-19T09:18:01+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Response on Create Order API ) ------------------->
    {
        "name": "UNPROCESSABLE_ENTITY",
        "details": [
            {
                "field": "\/purchase_units\/@reference_id=='default'\/amount\/breakdown\/item_total\/value",
                "value": "1679.39",
                "issue": "ITEM_TOTAL_MISMATCH",
                "description": "Should equal sum of (unit_amount * quantity) across all items for a given purchase_unit"
            }
        ],
        "message": "The requested action could not be performed, semantically incorrect, or failed business validation.",
        "debug_id": "d4484a5f53921",
        "links": [
            {
                "href": "https:\/\/developer.paypal.com\/docs\/api\/orders\/v2\/#error-ITEM_TOTAL_MISMATCH",
                "rel": "information_link",
                "method": "GET"
            }
        ]
    }
    2022-07-19T09:18:20+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Create Order API ) ------------------->
    {
        "intent": "CAPTURE",
        "application_context": {
            "brand_name": "Meindl Fashion Sandbox",
            "locale": "de-DE",
            "landing_page": "BILLING",
            "shipping_preference": "SET_PROVIDED_ADDRESS",
            "user_action": "PAY_NOW",
            "return_url": "https:\/\/stage.meindl-fashion.de\/wc-api\/Eh_PayPal_Express_Payment\/?c=order_details&p=https:\/\/stage.meindl-fashion.de\/kasse\/&intent=CAPTURE",
            "cancel_url": "https:\/\/stage.meindl-fashion.de\/kasse\/?cancel_express_checkout=cancel"
        },
        "purchase_units": [
            {
                "items": [
                    {
                        "name": "Rehlederhose Herren \"Wildwood Short\" - Fb. ahorn x 2",
                        "description": "Gr\u00f6\u00dfe : 54",
                        "quantity": 2,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 713.45
                        }
                    },
                    {
                        "name": "Lederhose Herren \"Bullrider Short\", bisam x 2",
                        "description": "Gr\u00f6\u00dfe : 44",
                        "quantity": 2,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 1.24
                        }
                    },
                    {
                        "name": "Rehlederhose Herren \"Long Island Short\" - Fb. glacier x 2",
                        "description": "Gr\u00f6\u00dfe : 44",
                        "quantity": 2,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 964.71
                        }
                    },
                    {
                        "name": "Extra line item",
                        "description": "",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 0.03
                        }
                    }
                ],
                "amount": {
                    "currency_code": "EUR",
                    "value": 4000.93,
                    "breakdown": {
                        "item_total": {
                            "currency_code": "EUR",
                            "value": 3358.77
                        },
                        "shipping": {
                            "currency_code": "EUR",
                            "value": 3.99
                        },
                        "tax_total": {
                            "currency_code": "EUR",
                            "value": 638.17
                        },
                        "shipping_discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "handling": {
                            "currency_code": "EUR",
                            "value": 0
                        }
                    }
                },
                "shipping": {
                    "name": {
                        "full_name": "Max Huch"
                    },
                    "address": {
                        "address_line_1": "Ferdinand-Wallbrecht-Stra\u00dfe 4",
                        "address_line_2": "",
                        "admin_area_2": "Hannover",
                        "admin_area_1": "",
                        "postal_code": "30163",
                        "country_code": "DE"
                    }
                }
            }
        ]
    }
    2022-07-19T09:18:21+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Response on Create Order API ) ------------------->
    {
        "name": "UNPROCESSABLE_ENTITY",
        "details": [
            {
                "field": "\/purchase_units\/@reference_id=='default'\/amount\/breakdown\/item_total\/value",
                "value": "3358.77",
                "issue": "ITEM_TOTAL_MISMATCH",
                "description": "Should equal sum of (unit_amount * quantity) across all items for a given purchase_unit"
            }
        ],
        "message": "The requested action could not be performed, semantically incorrect, or failed business validation.",
        "debug_id": "c6aebaef2ccff",
        "links": [
            {
                "href": "https:\/\/developer.paypal.com\/docs\/api\/orders\/v2\/#error-ITEM_TOTAL_MISMATCH",
                "rel": "information_link",
                "method": "GET"
            }
        ]
    }
    2022-07-19T09:19:10+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Create Order API ) ------------------->
    {
        "intent": "CAPTURE",
        "application_context": {
            "brand_name": "Meindl Fashion Sandbox",
            "locale": "de-DE",
            "landing_page": "BILLING",
            "shipping_preference": "SET_PROVIDED_ADDRESS",
            "user_action": "PAY_NOW",
            "return_url": "https:\/\/stage.meindl-fashion.de\/wc-api\/Eh_PayPal_Express_Payment\/?c=order_details&p=https:\/\/stage.meindl-fashion.de\/kasse\/&intent=CAPTURE",
            "cancel_url": "https:\/\/stage.meindl-fashion.de\/kasse\/?cancel_express_checkout=cancel"
        },
        "purchase_units": [
            {
                "items": [
                    {
                        "name": "Rehlederhose Herren \"Wildwood Short\" - Fb. ahorn x 2",
                        "description": "Gr\u00f6\u00dfe : 54",
                        "quantity": 2,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 713.45
                        }
                    },
                    {
                        "name": "Lederhose Herren \"Bullrider Short\", bisam x 2",
                        "description": "Gr\u00f6\u00dfe : 44",
                        "quantity": 2,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 1.24
                        }
                    },
                    {
                        "name": "Rehlederhose Herren \"Long Island Short\" - Fb. glacier x 2",
                        "description": "Gr\u00f6\u00dfe : 44",
                        "quantity": 2,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 964.71
                        }
                    },
                    {
                        "name": "Extra line item",
                        "description": "",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 0.03
                        }
                    }
                ],
                "amount": {
                    "currency_code": "EUR",
                    "value": 4000.93,
                    "breakdown": {
                        "item_total": {
                            "currency_code": "EUR",
                            "value": 3358.77
                        },
                        "shipping": {
                            "currency_code": "EUR",
                            "value": 3.99
                        },
                        "tax_total": {
                            "currency_code": "EUR",
                            "value": 638.17
                        },
                        "shipping_discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "handling": {
                            "currency_code": "EUR",
                            "value": 0
                        }
                    }
                },
                "shipping": {
                    "name": {
                        "full_name": "Max Huch"
                    },
                    "address": {
                        "address_line_1": "Ferdinand-Wallbrecht-Stra\u00dfe 4",
                        "address_line_2": "",
                        "admin_area_2": "Hannover",
                        "admin_area_1": "",
                        "postal_code": "30163",
                        "country_code": "DE"
                    }
                }
            }
        ]
    }
    2022-07-19T09:19:10+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Response on Create Order API ) ------------------->
    {
        "name": "UNPROCESSABLE_ENTITY",
        "details": [
            {
                "field": "\/purchase_units\/@reference_id=='default'\/amount\/breakdown\/item_total\/value",
                "value": "3358.77",
                "issue": "ITEM_TOTAL_MISMATCH",
                "description": "Should equal sum of (unit_amount * quantity) across all items for a given purchase_unit"
            }
        ],
        "message": "The requested action could not be performed, semantically incorrect, or failed business validation.",
        "debug_id": "6939ba9aca795",
        "links": [
            {
                "href": "https:\/\/developer.paypal.com\/docs\/api\/orders\/v2\/#error-ITEM_TOTAL_MISMATCH",
                "rel": "information_link",
                "method": "GET"
            }
        ]
    }
    2022-07-19T09:19:39+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Create Order API ) ------------------->
    {
        "intent": "CAPTURE",
        "application_context": {
            "brand_name": "Meindl Fashion Sandbox",
            "locale": "de-DE",
            "landing_page": "BILLING",
            "shipping_preference": "SET_PROVIDED_ADDRESS",
            "user_action": "PAY_NOW",
            "return_url": "https:\/\/stage.meindl-fashion.de\/wc-api\/Eh_PayPal_Express_Payment\/?c=order_details&p=https:\/\/stage.meindl-fashion.de\/kasse\/&intent=CAPTURE",
            "cancel_url": "https:\/\/stage.meindl-fashion.de\/kasse\/?cancel_express_checkout=cancel"
        },
        "purchase_units": [
            {
                "items": [
                    {
                        "name": "Rehlederhose Herren \"Wildwood Short\" - Fb. ahorn x 2",
                        "description": "Gr\u00f6\u00dfe : 54",
                        "quantity": 2,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 713.45
                        }
                    },
                    {
                        "name": "Lederhose Herren \"Bullrider Short\", bisam x 2",
                        "description": "Gr\u00f6\u00dfe : 44",
                        "quantity": 2,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 1.24
                        }
                    },
                    {
                        "name": "Rehlederhose Herren \"Long Island Short\" - Fb. glacier x 2",
                        "description": "Gr\u00f6\u00dfe : 44",
                        "quantity": 2,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 964.71
                        }
                    },
                    {
                        "name": "Extra line item",
                        "description": "",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 0.03
                        }
                    }
                ],
                "amount": {
                    "currency_code": "EUR",
                    "value": 4000.93,
                    "breakdown": {
                        "item_total": {
                            "currency_code": "EUR",
                            "value": 3358.77
                        },
                        "shipping": {
                            "currency_code": "EUR",
                            "value": 3.99
                        },
                        "tax_total": {
                            "currency_code": "EUR",
                            "value": 638.17
                        },
                        "shipping_discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "handling": {
                            "currency_code": "EUR",
                            "value": 0
                        }
                    }
                },
                "shipping": {
                    "name": {
                        "full_name": "Max Huch"
                    },
                    "address": {
                        "address_line_1": "Ferdinand-Wallbrecht-Stra\u00dfe 4",
                        "address_line_2": "",
                        "admin_area_2": "Hannover",
                        "admin_area_1": "",
                        "postal_code": "30163",
                        "country_code": "DE"
                    }
                }
            }
        ]
    }
    2022-07-19T09:19:40+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Response on Create Order API ) ------------------->
    {
        "name": "UNPROCESSABLE_ENTITY",
        "details": [
            {
                "field": "\/purchase_units\/@reference_id=='default'\/amount\/breakdown\/item_total\/value",
                "value": "3358.77",
                "issue": "ITEM_TOTAL_MISMATCH",
                "description": "Should equal sum of (unit_amount * quantity) across all items for a given purchase_unit"
            }
        ],
        "message": "The requested action could not be performed, semantically incorrect, or failed business validation.",
        "debug_id": "6bbfc65bbbc70",
        "links": [
            {
                "href": "https:\/\/developer.paypal.com\/docs\/api\/orders\/v2\/#error-ITEM_TOTAL_MISMATCH",
                "rel": "information_link",
                "method": "GET"
            }
        ]
    }
    2022-07-19T09:24:22+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Create Order API ) ------------------->
    {
        "intent": "CAPTURE",
        "application_context": {
            "brand_name": "Meindl Fashion Sandbox",
            "locale": "de-DE",
            "landing_page": "BILLING",
            "shipping_preference": "SET_PROVIDED_ADDRESS",
            "user_action": "PAY_NOW",
            "return_url": "https:\/\/stage.meindl-fashion.de\/wc-api\/Eh_PayPal_Express_Payment\/?c=order_details&p=https:\/\/stage.meindl-fashion.de\/kasse\/&intent=CAPTURE",
            "cancel_url": "https:\/\/stage.meindl-fashion.de\/kasse\/?cancel_express_checkout=cancel"
        },
        "purchase_units": [
            {
                "items": [
                    {
                        "name": "Rehlederhose Herren \"Wildwood Short\" - Fb. ahorn x 2",
                        "description": "Gr\u00f6\u00dfe : 54",
                        "quantity": 2,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 713.45
                        }
                    },
                    {
                        "name": "Lederhose Herren \"Bullrider Short\", bisam x 2",
                        "description": "Gr\u00f6\u00dfe : 44",
                        "quantity": 2,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 1.24
                        }
                    },
                    {
                        "name": "Extra line item",
                        "description": "",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 0.02
                        }
                    }
                ],
                "amount": {
                    "currency_code": "EUR",
                    "value": 1704.93,
                    "breakdown": {
                        "item_total": {
                            "currency_code": "EUR",
                            "value": 1429.36
                        },
                        "shipping": {
                            "currency_code": "EUR",
                            "value": 3.99
                        },
                        "tax_total": {
                            "currency_code": "EUR",
                            "value": 271.58
                        },
                        "shipping_discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "handling": {
                            "currency_code": "EUR",
                            "value": 0
                        }
                    }
                },
                "shipping": {
                    "name": {
                        "full_name": "Max Huch"
                    },
                    "address": {
                        "address_line_1": "Ferdinand-Wallbrecht-Stra\u00dfe 4",
                        "address_line_2": "",
                        "admin_area_2": "Hannover",
                        "admin_area_1": "",
                        "postal_code": "30163",
                        "country_code": "DE"
                    }
                }
            }
        ]
    }
    2022-07-19T09:24:23+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Response on Create Order API ) ------------------->
    {
        "name": "UNPROCESSABLE_ENTITY",
        "details": [
            {
                "field": "\/purchase_units\/@reference_id=='default'\/amount\/breakdown\/item_total\/value",
                "value": "1429.36",
                "issue": "ITEM_TOTAL_MISMATCH",
                "description": "Should equal sum of (unit_amount * quantity) across all items for a given purchase_unit"
            }
        ],
        "message": "The requested action could not be performed, semantically incorrect, or failed business validation.",
        "debug_id": "846dbfdc7e517",
        "links": [
            {
                "href": "https:\/\/developer.paypal.com\/docs\/api\/orders\/v2\/#error-ITEM_TOTAL_MISMATCH",
                "rel": "information_link",
                "method": "GET"
            }
        ]
    }
    2022-07-19T09:24:40+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Create Order API ) ------------------->
    {
        "intent": "CAPTURE",
        "application_context": {
            "brand_name": "Meindl Fashion Sandbox",
            "locale": "de-DE",
            "landing_page": "BILLING",
            "shipping_preference": "SET_PROVIDED_ADDRESS",
            "user_action": "PAY_NOW",
            "return_url": "https:\/\/stage.meindl-fashion.de\/wc-api\/Eh_PayPal_Express_Payment\/?c=order_details&p=https:\/\/stage.meindl-fashion.de\/kasse\/&intent=CAPTURE",
            "cancel_url": "https:\/\/stage.meindl-fashion.de\/kasse\/?cancel_express_checkout=cancel"
        },
        "purchase_units": [
            {
                "items": [
                    {
                        "name": "Rehlederhose Herren \"Wildwood Short\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 54",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 713.45
                        }
                    },
                    {
                        "name": "Lederhose Herren \"Bullrider Short\", bisam x 2",
                        "description": "Gr\u00f6\u00dfe : 44",
                        "quantity": 2,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 1.24
                        }
                    },
                    {
                        "name": "Extra line item",
                        "description": "",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 0.01
                        }
                    }
                ],
                "amount": {
                    "currency_code": "EUR",
                    "value": 855.93,
                    "breakdown": {
                        "item_total": {
                            "currency_code": "EUR",
                            "value": 715.92
                        },
                        "shipping": {
                            "currency_code": "EUR",
                            "value": 3.99
                        },
                        "tax_total": {
                            "currency_code": "EUR",
                            "value": 136.02
                        },
                        "shipping_discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "handling": {
                            "currency_code": "EUR",
                            "value": 0
                        }
                    }
                },
                "shipping": {
                    "name": {
                        "full_name": "Max Huch"
                    },
                    "address": {
                        "address_line_1": "Ferdinand-Wallbrecht-Stra\u00dfe 4",
                        "address_line_2": "",
                        "admin_area_2": "Hannover",
                        "admin_area_1": "",
                        "postal_code": "30163",
                        "country_code": "DE"
                    }
                }
            }
        ]
    }
    2022-07-19T09:24:41+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Response on Create Order API ) ------------------->
    {
        "name": "UNPROCESSABLE_ENTITY",
        "details": [
            {
                "field": "\/purchase_units\/@reference_id=='default'\/amount\/breakdown\/item_total\/value",
                "value": "715.92",
                "issue": "ITEM_TOTAL_MISMATCH",
                "description": "Should equal sum of (unit_amount * quantity) across all items for a given purchase_unit"
            }
        ],
        "message": "The requested action could not be performed, semantically incorrect, or failed business validation.",
        "debug_id": "a56e5d177afc5",
        "links": [
            {
                "href": "https:\/\/developer.paypal.com\/docs\/api\/orders\/v2\/#error-ITEM_TOTAL_MISMATCH",
                "rel": "information_link",
                "method": "GET"
            }
        ]
    }
    2022-07-19T09:24:57+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Create Order API ) ------------------->
    {
        "intent": "CAPTURE",
        "application_context": {
            "brand_name": "Meindl Fashion Sandbox",
            "locale": "de-DE",
            "landing_page": "BILLING",
            "shipping_preference": "SET_PROVIDED_ADDRESS",
            "user_action": "PAY_NOW",
            "return_url": "https:\/\/stage.meindl-fashion.de\/wc-api\/Eh_PayPal_Express_Payment\/?c=order_details&p=https:\/\/stage.meindl-fashion.de\/kasse\/&intent=CAPTURE",
            "cancel_url": "https:\/\/stage.meindl-fashion.de\/kasse\/?cancel_express_checkout=cancel"
        },
        "purchase_units": [
            {
                "items": [
                    {
                        "name": "Rehlederhose Herren \"Wildwood Short\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 54",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 713.45
                        }
                    },
                    {
                        "name": "Lederhose Herren \"Bullrider Short\", bisam x 1",
                        "description": "Gr\u00f6\u00dfe : 44",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 1.24
                        }
                    },
                    {
                        "name": "Extra line item",
                        "description": "",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 0.01
                        }
                    }
                ],
                "amount": {
                    "currency_code": "EUR",
                    "value": 854.46,
                    "breakdown": {
                        "item_total": {
                            "currency_code": "EUR",
                            "value": 714.68
                        },
                        "shipping": {
                            "currency_code": "EUR",
                            "value": 3.99
                        },
                        "tax_total": {
                            "currency_code": "EUR",
                            "value": 135.79
                        },
                        "shipping_discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "handling": {
                            "currency_code": "EUR",
                            "value": 0
                        }
                    }
                },
                "shipping": {
                    "name": {
                        "full_name": "Max Huch"
                    },
                    "address": {
                        "address_line_1": "Ferdinand-Wallbrecht-Stra\u00dfe 4",
                        "address_line_2": "",
                        "admin_area_2": "Hannover",
                        "admin_area_1": "",
                        "postal_code": "30163",
                        "country_code": "DE"
                    }
                }
            }
        ]
    }
    2022-07-19T09:24:58+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Response on Create Order API ) ------------------->
    {
        "name": "UNPROCESSABLE_ENTITY",
        "details": [
            {
                "field": "\/purchase_units\/@reference_id=='default'\/amount\/breakdown\/item_total\/value",
                "value": "714.68",
                "issue": "ITEM_TOTAL_MISMATCH",
                "description": "Should equal sum of (unit_amount * quantity) across all items for a given purchase_unit"
            }
        ],
        "message": "The requested action could not be performed, semantically incorrect, or failed business validation.",
        "debug_id": "36a7b710369b3",
        "links": [
            {
                "href": "https:\/\/developer.paypal.com\/docs\/api\/orders\/v2\/#error-ITEM_TOTAL_MISMATCH",
                "rel": "information_link",
                "method": "GET"
            }
        ]
    }
    2022-07-19T09:25:15+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Create Order API ) ------------------->
    {
        "intent": "CAPTURE",
        "application_context": {
            "brand_name": "Meindl Fashion Sandbox",
            "locale": "de-DE",
            "landing_page": "BILLING",
            "shipping_preference": "SET_PROVIDED_ADDRESS",
            "user_action": "PAY_NOW",
            "return_url": "https:\/\/stage.meindl-fashion.de\/wc-api\/Eh_PayPal_Express_Payment\/?c=order_details&p=https:\/\/stage.meindl-fashion.de\/kasse\/&intent=CAPTURE",
            "cancel_url": "https:\/\/stage.meindl-fashion.de\/kasse\/?cancel_express_checkout=cancel"
        },
        "purchase_units": [
            {
                "items": [
                    {
                        "name": "Lederhose Herren \"Bullrider Short\", bisam x 1",
                        "description": "Gr\u00f6\u00dfe : 44",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 1.24
                        }
                    }
                ],
                "amount": {
                    "currency_code": "EUR",
                    "value": 5.46,
                    "breakdown": {
                        "item_total": {
                            "currency_code": "EUR",
                            "value": 1.24
                        },
                        "shipping": {
                            "currency_code": "EUR",
                            "value": 3.99
                        },
                        "tax_total": {
                            "currency_code": "EUR",
                            "value": 0.23
                        },
                        "shipping_discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "handling": {
                            "currency_code": "EUR",
                            "value": 0
                        }
                    }
                },
                "shipping": {
                    "name": {
                        "full_name": "Max Huch"
                    },
                    "address": {
                        "address_line_1": "Ferdinand-Wallbrecht-Stra\u00dfe 4",
                        "address_line_2": "",
                        "admin_area_2": "Hannover",
                        "admin_area_1": "",
                        "postal_code": "30163",
                        "country_code": "DE"
                    }
                }
            }
        ]
    }
    2022-07-19T09:25:15+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Response on Create Order API ) ------------------->
    {
        "id": "8FK74526G6951122S",
        "status": "CREATED",
        "links": [
            {
                "href": "https:\/\/api.sandbox.paypal.com\/v2\/checkout\/orders\/8FK74526G6951122S",
                "rel": "self",
                "method": "GET"
            },
            {
                "href": "https:\/\/www.sandbox.paypal.com\/checkoutnow?token=8FK74526G6951122S",
                "rel": "approve",
                "method": "GET"
            },
            {
                "href": "https:\/\/api.sandbox.paypal.com\/v2\/checkout\/orders\/8FK74526G6951122S",
                "rel": "update",
                "method": "PATCH"
            },
            {
                "href": "https:\/\/api.sandbox.paypal.com\/v2\/checkout\/orders\/8FK74526G6951122S\/capture",
                "rel": "capture",
                "method": "POST"
            }
        ]
    }
    2022-07-19T09:30:48+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Setting Express Checkout ) ------------------->
    stdClass Object
    (
        [METHOD] => SetExpressCheckout
        [RETURNURL] => https://stage.meindl-fashion.de/wc-api/Eh_PayPal_Express_Payment/?c=express_details&express=true&p=https://stage.meindl-fashion.de/kasse/
        [CANCELURL] => https://stage.meindl-fashion.de/kasse/?cancel_express_checkout=cancel
        [ADDROVERRIDE] => 
        [BRANDNAME] => Meindl Fashion
        [LOGOIMG] => 
        [SOLUTIONTYPE] => Sole
        [LOCALECODE] => de_DE
        [LANDINGPAGE] => Billing
        [L_PAYMENTREQUEST_0_NAME0] => Lederhose Herren "Bullrider Short", bisam x 1
        [L_PAYMENTREQUEST_0_DESC0] => Gr??e : 44
        [L_PAYMENTREQUEST_0_AMT0] => 1.24
        [L_PAYMENTREQUEST_0_ITEMURL0] => https://stage.meindl-fashion.de/produkt/lederhose-herren-bullrider-short-bisam/?attribute_pa_size=44
        [L_PAYMENTREQUEST_0_NAME1] => Rehlederhose Herren "Long Island Short" - Fb. glacier x 1
        [L_PAYMENTREQUEST_0_DESC1] => Gr??e : 44
        [L_PAYMENTREQUEST_0_AMT1] => 964.71
        [L_PAYMENTREQUEST_0_ITEMURL1] => https://stage.meindl-fashion.de/produkt/rehlederhose-herren-long-island-short-fb-glacier/?attribute_pa_size=44
        [L_PAYMENTREQUEST_0_NAME2] => Extra line item
        [L_PAYMENTREQUEST_0_DESC2] => 
        [L_PAYMENTREQUEST_0_QTY2] => 1
        [L_PAYMENTREQUEST_0_AMT2] => -0.01
        [PAYMENTREQUEST_0_AMT] => 1153.46
        [PAYMENTREQUEST_0_CURRENCYCODE] => EUR
        [PAYMENTREQUEST_0_ITEMAMT] => 965.94
        [PAYMENTREQUEST_0_SHIPPINGAMT] => 3.99
        [PAYMENTREQUEST_0_TAXAMT] => 183.53
        [PAYMENTREQUEST_0_SHIPDISCAMT] => 0
        [PAYMENTREQUEST_0_PAYMENTACTION] => Sale
        [MAXAMT] => 2019.46
        [PAYMENTREQUEST_0_SHIPTONAME] => Max Huch
        [PAYMENTREQUEST_0_SHIPTOSTREET] => Ferdinand-Wallbrecht-Stra?e 4
        [PAYMENTREQUEST_0_SHIPTOSTREET2] => 
        [PAYMENTREQUEST_0_SHIPTOCITY] => Hannover
        [PAYMENTREQUEST_0_SHIPTOSTATE] => 
        [PAYMENTREQUEST_0_SHIPTOZIP] => 30163
        [PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE] => DE
        [PAYMENTREQUEST_0_SHIPTOPHONENUM] => 123456789
        [PAYMENTREQUEST_0_NOTETEXT] => 
        [PAYMENTREQUEST_0_EMAIL] => [email protected]
        [PAYMENTREQUEST_0_PAYMENTREQUESTID] => 
    )
    
    2022-07-19T09:30:48+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Response on Express Start/Credit Start ) ------------------->
    stdClass Object
    (
        [TIMESTAMP] => 2022-07-19T09:30:48Z
        [CORRELATIONID] => 8fac21d4d85ce
        [ACK] => Failure
        [BUILD] => 57255788
        [L_ERRORCODE0] => 10002
        [L_SHORTMESSAGE0] => Authentication/Authorization Failed
        [L_LONGMESSAGE0] => You do not have permissions to make this API call
        [L_SEVERITYCODE0] => Error
    )
    
    2022-07-19T09:30:51+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Setting Express Checkout ) ------------------->
    stdClass Object
    (
        [METHOD] => SetExpressCheckout
        [RETURNURL] => https://stage.meindl-fashion.de/wc-api/Eh_PayPal_Express_Payment/?c=express_details&express=true&p=https://stage.meindl-fashion.de/warenkorb/
        [CANCELURL] => https://stage.meindl-fashion.de/warenkorb/?cancel_express_checkout=cancel
        [ADDROVERRIDE] => 
        [BRANDNAME] => Meindl Fashion
        [LOGOIMG] => 
        [SOLUTIONTYPE] => Sole
        [LOCALECODE] => de_DE
        [LANDINGPAGE] => Billing
        [L_PAYMENTREQUEST_0_NAME0] => Lederhose Herren "Bullrider Short", bisam x 1
        [L_PAYMENTREQUEST_0_DESC0] => Gr??e : 44
        [L_PAYMENTREQUEST_0_AMT0] => 1.24
        [L_PAYMENTREQUEST_0_ITEMURL0] => https://stage.meindl-fashion.de/produkt/lederhose-herren-bullrider-short-bisam/?attribute_pa_size=44
        [L_PAYMENTREQUEST_0_NAME1] => Rehlederhose Herren "Long Island Short" - Fb. glacier x 1
        [L_PAYMENTREQUEST_0_DESC1] => Gr??e : 44
        [L_PAYMENTREQUEST_0_AMT1] => 964.71
        [L_PAYMENTREQUEST_0_ITEMURL1] => https://stage.meindl-fashion.de/produkt/rehlederhose-herren-long-island-short-fb-glacier/?attribute_pa_size=44
        [L_PAYMENTREQUEST_0_NAME2] => Extra line item
        [L_PAYMENTREQUEST_0_DESC2] => 
        [L_PAYMENTREQUEST_0_QTY2] => 1
        [L_PAYMENTREQUEST_0_AMT2] => -0.01
        [PAYMENTREQUEST_0_AMT] => 1153.46
        [PAYMENTREQUEST_0_CURRENCYCODE] => EUR
        [PAYMENTREQUEST_0_ITEMAMT] => 965.94
        [PAYMENTREQUEST_0_SHIPPINGAMT] => 3.99
        [PAYMENTREQUEST_0_TAXAMT] => 183.53
        [PAYMENTREQUEST_0_SHIPDISCAMT] => 0
        [PAYMENTREQUEST_0_PAYMENTACTION] => Sale
        [MAXAMT] => 2019.46
        [PAYMENTREQUEST_0_SHIPTONAME] => Max Huch
        [PAYMENTREQUEST_0_SHIPTOSTREET] => Ferdinand-Wallbrecht-Stra?e 4
        [PAYMENTREQUEST_0_SHIPTOSTREET2] => 
        [PAYMENTREQUEST_0_SHIPTOCITY] => Hannover
        [PAYMENTREQUEST_0_SHIPTOSTATE] => 
        [PAYMENTREQUEST_0_SHIPTOZIP] => 30163
        [PAYMENTREQUEST_0_SHIPTOCOUNTRYCODE] => DE
        [PAYMENTREQUEST_0_SHIPTOPHONENUM] => 123456789
        [PAYMENTREQUEST_0_NOTETEXT] => 
        [PAYMENTREQUEST_0_EMAIL] => [email protected]
        [PAYMENTREQUEST_0_PAYMENTREQUESTID] => 
    )
    
    2022-07-19T09:30:52+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Response on Express Start/Credit Start ) ------------------->
    stdClass Object
    (
        [TIMESTAMP] => 2022-07-19T09:30:52Z
        [CORRELATIONID] => 876403b0d1be0
        [ACK] => Failure
        [BUILD] => 57255788
        [L_ERRORCODE0] => 10002
        [L_SHORTMESSAGE0] => Authentication/Authorization Failed
        [L_LONGMESSAGE0] => You do not have permissions to make this API call
        [L_SEVERITYCODE0] => Error
    )
    
    2022-07-19T09:31:35+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Create Order API ) ------------------->
    {
        "intent": "CAPTURE",
        "application_context": {
            "brand_name": "Meindl Fashion Sandbox",
            "locale": "de-DE",
            "landing_page": "BILLING",
            "shipping_preference": "SET_PROVIDED_ADDRESS",
            "user_action": "PAY_NOW",
            "return_url": "https:\/\/stage.meindl-fashion.de\/wc-api\/Eh_PayPal_Express_Payment\/?c=order_details&p=https:\/\/stage.meindl-fashion.de\/kasse\/&intent=CAPTURE",
            "cancel_url": "https:\/\/stage.meindl-fashion.de\/kasse\/?cancel_express_checkout=cancel"
        },
        "purchase_units": [
            {
                "items": [
                    {
                        "name": "Lederhose Herren \"Bullrider Short\", bisam x 1",
                        "description": "Gr\u00f6\u00dfe : 44",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 1.24
                        }
                    },
                    {
                        "name": "Rehlederhose Herren \"Long Island Short\" - Fb. glacier x 1",
                        "description": "Gr\u00f6\u00dfe : 44",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 964.71
                        }
                    },
                    {
                        "name": "Extra line item",
                        "description": "",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 0.01
                        }
                    }
                ],
                "amount": {
                    "currency_code": "EUR",
                    "value": 1153.46,
                    "breakdown": {
                        "item_total": {
                            "currency_code": "EUR",
                            "value": 965.94
                        },
                        "shipping": {
                            "currency_code": "EUR",
                            "value": 3.99
                        },
                        "tax_total": {
                            "currency_code": "EUR",
                            "value": 183.53
                        },
                        "shipping_discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "handling": {
                            "currency_code": "EUR",
                            "value": 0
                        }
                    }
                },
                "shipping": {
                    "name": {
                        "full_name": "Max Huch"
                    },
                    "address": {
                        "address_line_1": "Ferdinand-Wallbrecht-Stra\u00dfe 4",
                        "address_line_2": "",
                        "admin_area_2": "Hannover",
                        "admin_area_1": "",
                        "postal_code": "30163",
                        "country_code": "DE"
                    }
                }
            }
        ]
    }
    2022-07-19T09:31:35+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Response on Create Order API ) ------------------->
    {
        "name": "UNPROCESSABLE_ENTITY",
        "details": [
            {
                "field": "\/purchase_units\/@reference_id=='default'\/amount\/breakdown\/item_total\/value",
                "value": "965.94",
                "issue": "ITEM_TOTAL_MISMATCH",
                "description": "Should equal sum of (unit_amount * quantity) across all items for a given purchase_unit"
            }
        ],
        "message": "The requested action could not be performed, semantically incorrect, or failed business validation.",
        "debug_id": "98964a59dff7d",
        "links": [
            {
                "href": "https:\/\/developer.paypal.com\/docs\/api\/orders\/v2\/#error-ITEM_TOTAL_MISMATCH",
                "rel": "information_link",
                "method": "GET"
            }
        ]
    }
    2022-07-19T09:31:58+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Create Order API ) ------------------->
    {
        "intent": "CAPTURE",
        "application_context": {
            "brand_name": "Meindl Fashion Sandbox",
            "locale": "de-DE",
            "landing_page": "LOGIN",
            "shipping_preference": "SET_PROVIDED_ADDRESS",
            "user_action": "PAY_NOW",
            "return_url": "https:\/\/stage.meindl-fashion.de\/wc-api\/Eh_PayPal_Express_Payment\/?c=order_details&p=https:\/\/stage.meindl-fashion.de\/kasse\/&intent=CAPTURE",
            "cancel_url": "https:\/\/stage.meindl-fashion.de\/kasse\/?cancel_express_checkout=cancel"
        },
        "purchase_units": [
            {
                "items": [
                    {
                        "name": "Lederhose Herren \"Bullrider Short\", bisam x 1",
                        "description": "Gr\u00f6\u00dfe : 44",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 1.24
                        }
                    },
                    {
                        "name": "Rehlederhose Herren \"Long Island Short\" - Fb. glacier x 1",
                        "description": "Gr\u00f6\u00dfe : 44",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 964.71
                        }
                    },
                    {
                        "name": "Extra line item",
                        "description": "",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 0.01
                        }
                    }
                ],
                "amount": {
                    "currency_code": "EUR",
                    "value": 1153.46,
                    "breakdown": {
                        "item_total": {
                            "currency_code": "EUR",
                            "value": 965.94
                        },
                        "shipping": {
                            "currency_code": "EUR",
                            "value": 3.99
                        },
                        "tax_total": {
                            "currency_code": "EUR",
                            "value": 183.53
                        },
                        "shipping_discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "handling": {
                            "currency_code": "EUR",
                            "value": 0
                        }
                    }
                },
                "shipping": {
                    "name": {
                        "full_name": "Max Huch"
                    },
                    "address": {
                        "address_line_1": "Ferdinand-Wallbrecht-Stra\u00dfe 4",
                        "address_line_2": "",
                        "admin_area_2": "Hannover",
                        "admin_area_1": "",
                        "postal_code": "30163",
                        "country_code": "DE"
                    }
                }
            }
        ]
    }
    2022-07-19T09:31:59+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Response on Create Order API ) ------------------->
    {
        "name": "UNPROCESSABLE_ENTITY",
        "details": [
            {
                "field": "\/purchase_units\/@reference_id=='default'\/amount\/breakdown\/item_total\/value",
                "value": "965.94",
                "issue": "ITEM_TOTAL_MISMATCH",
                "description": "Should equal sum of (unit_amount * quantity) across all items for a given purchase_unit"
            }
        ],
        "message": "The requested action could not be performed, semantically incorrect, or failed business validation.",
        "debug_id": "66defacd199e2",
        "links": [
            {
                "href": "https:\/\/developer.paypal.com\/docs\/api\/orders\/v2\/#error-ITEM_TOTAL_MISMATCH",
                "rel": "information_link",
                "method": "GET"
            }
        ]
    }
    2022-07-19T09:32:26+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Create Order API ) ------------------->
    {
        "intent": "CAPTURE",
        "application_context": {
            "brand_name": "Meindl Fashion Sandbox",
            "locale": "de-DE",
            "landing_page": "LOGIN",
            "shipping_preference": "SET_PROVIDED_ADDRESS",
            "user_action": "CONTINUE",
            "return_url": "https:\/\/stage.meindl-fashion.de\/wc-api\/Eh_PayPal_Express_Payment\/?c=order_details&p=https:\/\/stage.meindl-fashion.de\/kasse\/&intent=CAPTURE",
            "cancel_url": "https:\/\/stage.meindl-fashion.de\/kasse\/?cancel_express_checkout=cancel"
        },
        "purchase_units": [
            {
                "items": [
                    {
                        "name": "Lederhose Herren \"Bullrider Short\", bisam x 1",
                        "description": "Gr\u00f6\u00dfe : 44",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 1.24
                        }
                    },
                    {
                        "name": "Rehlederhose Herren \"Long Island Short\" - Fb. glacier x 1",
                        "description": "Gr\u00f6\u00dfe : 44",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 964.71
                        }
                    },
                    {
                        "name": "Extra line item",
                        "description": "",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 0.01
                        }
                    }
                ],
                "amount": {
                    "currency_code": "EUR",
                    "value": 1153.46,
                    "breakdown": {
                        "item_total": {
                            "currency_code": "EUR",
                            "value": 965.94
                        },
                        "shipping": {
                            "currency_code": "EUR",
                            "value": 3.99
                        },
                        "tax_total": {
                            "currency_code": "EUR",
                            "value": 183.53
                        },
                        "shipping_discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "handling": {
                            "currency_code": "EUR",
                            "value": 0
                        }
                    }
                },
                "shipping": {
                    "name": {
                        "full_name": "Max Huch"
                    },
                    "address": {
                        "address_line_1": "Ferdinand-Wallbrecht-Stra\u00dfe 4",
                        "address_line_2": "",
                        "admin_area_2": "Hannover",
                        "admin_area_1": "",
                        "postal_code": "30163",
                        "country_code": "DE"
                    }
                }
            }
        ]
    }
    2022-07-19T09:32:27+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Response on Create Order API ) ------------------->
    {
        "name": "UNPROCESSABLE_ENTITY",
        "details": [
            {
                "field": "\/purchase_units\/@reference_id=='default'\/amount\/breakdown\/item_total\/value",
                "value": "965.94",
                "issue": "ITEM_TOTAL_MISMATCH",
                "description": "Should equal sum of (unit_amount * quantity) across all items for a given purchase_unit"
            }
        ],
        "message": "The requested action could not be performed, semantically incorrect, or failed business validation.",
        "debug_id": "afef2eb4171a9",
        "links": [
            {
                "href": "https:\/\/developer.paypal.com\/docs\/api\/orders\/v2\/#error-ITEM_TOTAL_MISMATCH",
                "rel": "information_link",
                "method": "GET"
            }
        ]
    }
    2022-07-19T09:33:23+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Create Order API ) ------------------->
    {
        "intent": "CAPTURE",
        "application_context": {
            "brand_name": "Meindl Fashion Sandbox",
            "locale": "de-DE",
            "landing_page": "LOGIN",
            "shipping_preference": "GET_FROM_FILE",
            "user_action": "CONTINUE",
            "return_url": "https:\/\/stage.meindl-fashion.de\/wc-api\/Eh_PayPal_Express_Payment\/?c=order_details&p=https:\/\/stage.meindl-fashion.de\/kasse\/&intent=CAPTURE",
            "cancel_url": "https:\/\/stage.meindl-fashion.de\/kasse\/?cancel_express_checkout=cancel"
        },
        "purchase_units": [
            {
                "items": [
                    {
                        "name": "Lederhose Herren \"Bullrider Short\", bisam x 1",
                        "description": "Gr\u00f6\u00dfe : 44",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 1.24
                        }
                    },
                    {
                        "name": "Rehlederhose Herren \"Long Island Short\" - Fb. glacier x 1",
                        "description": "Gr\u00f6\u00dfe : 44",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 964.71
                        }
                    },
                    {
                        "name": "Extra line item",
                        "description": "",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 0.01
                        }
                    }
                ],
                "amount": {
                    "currency_code": "EUR",
                    "value": 1153.46,
                    "breakdown": {
                        "item_total": {
                            "currency_code": "EUR",
                            "value": 965.94
                        },
                        "shipping": {
                            "currency_code": "EUR",
                            "value": 3.99
                        },
                        "tax_total": {
                            "currency_code": "EUR",
                            "value": 183.53
                        },
                        "shipping_discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "handling": {
                            "currency_code": "EUR",
                            "value": 0
                        }
                    }
                },
                "shipping": {
                    "name": {
                        "full_name": "Max Huch"
                    },
                    "address": {
                        "address_line_1": "Ferdinand-Wallbrecht-Stra\u00dfe 4",
                        "address_line_2": "",
                        "admin_area_2": "Hannover",
                        "admin_area_1": "",
                        "postal_code": "30163",
                        "country_code": "DE"
                    }
                }
            }
        ]
    }
    2022-07-19T09:33:23+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Response on Create Order API ) ------------------->
    {
        "name": "UNPROCESSABLE_ENTITY",
        "details": [
            {
                "field": "\/purchase_units\/@reference_id=='default'\/amount\/breakdown\/item_total\/value",
                "value": "965.94",
                "issue": "ITEM_TOTAL_MISMATCH",
                "description": "Should equal sum of (unit_amount * quantity) across all items for a given purchase_unit"
            }
        ],
        "message": "The requested action could not be performed, semantically incorrect, or failed business validation.",
        "debug_id": "829c9ea2696f2",
        "links": [
            {
                "href": "https:\/\/developer.paypal.com\/docs\/api\/orders\/v2\/#error-ITEM_TOTAL_MISMATCH",
                "rel": "information_link",
                "method": "GET"
            }
        ]
    }
    2022-07-19T09:42:39+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Create Order API ) ------------------->
    {
        "intent": "CAPTURE",
        "application_context": {
            "brand_name": "Meindl Fashion Sandbox",
            "locale": "de-DE",
            "landing_page": "LOGIN",
            "shipping_preference": "SET_PROVIDED_ADDRESS",
            "user_action": "PAY_NOW",
            "return_url": "https:\/\/stage.meindl-fashion.de\/wc-api\/Eh_PayPal_Express_Payment\/?c=order_details&p=https:\/\/stage.meindl-fashion.de\/kasse\/&intent=CAPTURE",
            "cancel_url": "https:\/\/stage.meindl-fashion.de\/kasse\/?cancel_express_checkout=cancel"
        },
        "purchase_units": [
            {
                "items": [
                    {
                        "name": "Rehlederhose Herren \"Wildwood Short\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 46",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 713.45
                        }
                    },
                    {
                        "name": "Rehlederhose Herren \"Montgomery Bermuda\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 48",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 738.66
                        }
                    },
                    {
                        "name": "Extra line item",
                        "description": "",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 0.01
                        }
                    }
                ],
                "amount": {
                    "currency_code": "EUR",
                    "value": 1731.99,
                    "breakdown": {
                        "item_total": {
                            "currency_code": "EUR",
                            "value": 1452.1
                        },
                        "shipping": {
                            "currency_code": "EUR",
                            "value": 3.99
                        },
                        "tax_total": {
                            "currency_code": "EUR",
                            "value": 275.9
                        },
                        "shipping_discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "handling": {
                            "currency_code": "EUR",
                            "value": 0
                        }
                    }
                },
                "shipping": {
                    "name": {
                        "full_name": "Max Huch"
                    },
                    "address": {
                        "address_line_1": "Ferdinand-Wallbrecht-Stra\u00dfe 4",
                        "address_line_2": "",
                        "admin_area_2": "Hannover",
                        "admin_area_1": "",
                        "postal_code": "30163",
                        "country_code": "DE"
                    }
                }
            }
        ]
    }
    2022-07-19T09:42:40+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Response on Create Order API ) ------------------->
    {
        "name": "UNPROCESSABLE_ENTITY",
        "details": [
            {
                "field": "\/purchase_units\/@reference_id=='default'\/amount\/breakdown\/item_total\/value",
                "value": "1452.1",
                "issue": "ITEM_TOTAL_MISMATCH",
                "description": "Should equal sum of (unit_amount * quantity) across all items for a given purchase_unit"
            }
        ],
        "message": "The requested action could not be performed, semantically incorrect, or failed business validation.",
        "debug_id": "187322aace5c6",
        "links": [
            {
                "href": "https:\/\/developer.paypal.com\/docs\/api\/orders\/v2\/#error-ITEM_TOTAL_MISMATCH",
                "rel": "information_link",
                "method": "GET"
            }
        ]
    }
    2022-07-19T09:42:50+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Create Order API ) ------------------->
    {
        "intent": "CAPTURE",
        "application_context": {
            "brand_name": "Meindl Fashion Sandbox",
            "locale": "de-DE",
            "landing_page": "LOGIN",
            "shipping_preference": "SET_PROVIDED_ADDRESS",
            "user_action": "PAY_NOW",
            "return_url": "https:\/\/stage.meindl-fashion.de\/wc-api\/Eh_PayPal_Express_Payment\/?c=order_details&p=https:\/\/stage.meindl-fashion.de\/kasse\/&intent=CAPTURE",
            "cancel_url": "https:\/\/stage.meindl-fashion.de\/kasse\/?cancel_express_checkout=cancel"
        },
        "purchase_units": [
            {
                "items": [
                    {
                        "name": "Rehlederhose Herren \"Wildwood Short\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 46",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 713.45
                        }
                    },
                    {
                        "name": "Rehlederhose Herren \"Montgomery Bermuda\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 48",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 738.66
                        }
                    },
                    {
                        "name": "Extra line item",
                        "description": "",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 0.01
                        }
                    }
                ],
                "amount": {
                    "currency_code": "EUR",
                    "value": 1731.99,
                    "breakdown": {
                        "item_total": {
                            "currency_code": "EUR",
                            "value": 1452.1
                        },
                        "shipping": {
                            "currency_code": "EUR",
                            "value": 3.99
                        },
                        "tax_total": {
                            "currency_code": "EUR",
                            "value": 275.9
                        },
                        "shipping_discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "handling": {
                            "currency_code": "EUR",
                            "value": 0
                        }
                    }
                },
                "shipping": {
                    "name": {
                        "full_name": "Max Huch"
                    },
                    "address": {
                        "address_line_1": "Ferdinand-Wallbrecht-Stra\u00dfe 4",
                        "address_line_2": "",
                        "admin_area_2": "Hannover",
                        "admin_area_1": "",
                        "postal_code": "30163",
                        "country_code": "DE"
                    }
                }
            }
        ]
    }
    2022-07-19T09:42:50+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Response on Create Order API ) ------------------->
    {
        "name": "UNPROCESSABLE_ENTITY",
        "details": [
            {
                "field": "\/purchase_units\/@reference_id=='default'\/amount\/breakdown\/item_total\/value",
                "value": "1452.1",
                "issue": "ITEM_TOTAL_MISMATCH",
                "description": "Should equal sum of (unit_amount * quantity) across all items for a given purchase_unit"
            }
        ],
        "message": "The requested action could not be performed, semantically incorrect, or failed business validation.",
        "debug_id": "b38c1b34ee468",
        "links": [
            {
                "href": "https:\/\/developer.paypal.com\/docs\/api\/orders\/v2\/#error-ITEM_TOTAL_MISMATCH",
                "rel": "information_link",
                "method": "GET"
            }
        ]
    }
    2022-07-19T09:43:38+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Create Order API ) ------------------->
    {
        "intent": "CAPTURE",
        "application_context": {
            "brand_name": "Meindl Fashion Sandbox",
            "locale": "de-DE",
            "landing_page": "LOGIN",
            "shipping_preference": "SET_PROVIDED_ADDRESS",
            "user_action": "PAY_NOW",
            "return_url": "https:\/\/stage.meindl-fashion.de\/wc-api\/Eh_PayPal_Express_Payment\/?c=order_details&p=https:\/\/stage.meindl-fashion.de\/kasse\/&intent=CAPTURE",
            "cancel_url": "https:\/\/stage.meindl-fashion.de\/kasse\/?cancel_express_checkout=cancel"
        },
        "purchase_units": [
            {
                "items": [
                    {
                        "name": "Rehlederhose Herren \"Wildwood Short\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 46",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 713.45
                        }
                    },
                    {
                        "name": "Rehlederhose Herren \"Montgomery Bermuda\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 48",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 738.66
                        }
                    },
                    {
                        "name": "Extra line item",
                        "description": "",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 0.01
                        }
                    }
                ],
                "amount": {
                    "currency_code": "EUR",
                    "value": 1731.99,
                    "breakdown": {
                        "item_total": {
                            "currency_code": "EUR",
                            "value": 1452.1
                        },
                        "shipping": {
                            "currency_code": "EUR",
                            "value": 3.99
                        },
                        "tax_total": {
                            "currency_code": "EUR",
                            "value": 275.9
                        },
                        "shipping_discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "handling": {
                            "currency_code": "EUR",
                            "value": 0
                        }
                    }
                },
                "shipping": {
                    "name": {
                        "full_name": "Max Huch"
                    },
                    "address": {
                        "address_line_1": "Ferdinand-Wallbrecht-Stra\u00dfe 4",
                        "address_line_2": "",
                        "admin_area_2": "Hannover",
                        "admin_area_1": "",
                        "postal_code": "30163",
                        "country_code": "DE"
                    }
                }
            }
        ]
    }
    2022-07-19T09:43:38+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Response on Create Order API ) ------------------->
    {
        "name": "UNPROCESSABLE_ENTITY",
        "details": [
            {
                "field": "\/purchase_units\/@reference_id=='default'\/amount\/breakdown\/item_total\/value",
                "value": "1452.1",
                "issue": "ITEM_TOTAL_MISMATCH",
                "description": "Should equal sum of (unit_amount * quantity) across all items for a given purchase_unit"
            }
        ],
        "message": "The requested action could not be performed, semantically incorrect, or failed business validation.",
        "debug_id": "1d01ee4db9c4a",
        "links": [
            {
                "href": "https:\/\/developer.paypal.com\/docs\/api\/orders\/v2\/#error-ITEM_TOTAL_MISMATCH",
                "rel": "information_link",
                "method": "GET"
            }
        ]
    }
    2022-07-19T09:44:00+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Create Order API ) ------------------->
    {
        "intent": "CAPTURE",
        "application_context": {
            "brand_name": "Meindl Fashion Sandbox",
            "locale": "de-DE",
            "landing_page": "LOGIN",
            "shipping_preference": "SET_PROVIDED_ADDRESS",
            "user_action": "PAY_NOW",
            "return_url": "https:\/\/stage.meindl-fashion.de\/wc-api\/Eh_PayPal_Express_Payment\/?c=order_details&p=https:\/\/stage.meindl-fashion.de\/kasse\/&intent=CAPTURE",
            "cancel_url": "https:\/\/stage.meindl-fashion.de\/kasse\/?cancel_express_checkout=cancel"
        },
        "purchase_units": [
            {
                "items": [
                    {
                        "name": "Rehlederhose Herren \"Wildwood Short\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 46",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 713.45
                        }
                    },
                    {
                        "name": "Rehlederhose Herren \"Montgomery Bermuda\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 48",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 738.66
                        }
                    },
                    {
                        "name": "Extra line item",
                        "description": "",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 0.01
                        }
                    }
                ],
                "amount": {
                    "currency_code": "EUR",
                    "value": 1731.99,
                    "breakdown": {
                        "item_total": {
                            "currency_code": "EUR",
                            "value": 1452.1
                        },
                        "shipping": {
                            "currency_code": "EUR",
                            "value": 3.99
                        },
                        "tax_total": {
                            "currency_code": "EUR",
                            "value": 275.9
                        },
                        "shipping_discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "handling": {
                            "currency_code": "EUR",
                            "value": 0
                        }
                    }
                },
                "shipping": {
                    "name": {
                        "full_name": "Max Huch"
                    },
                    "address": {
                        "address_line_1": "Ferdinand-Wallbrecht-Stra\u00dfe 4",
                        "address_line_2": "",
                        "admin_area_2": "Hannover",
                        "admin_area_1": "",
                        "postal_code": "30163",
                        "country_code": "DE"
                    }
                }
            }
        ]
    }
    2022-07-19T09:44:00+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Response on Create Order API ) ------------------->
    {
        "name": "UNPROCESSABLE_ENTITY",
        "details": [
            {
                "field": "\/purchase_units\/@reference_id=='default'\/amount\/breakdown\/item_total\/value",
                "value": "1452.1",
                "issue": "ITEM_TOTAL_MISMATCH",
                "description": "Should equal sum of (unit_amount * quantity) across all items for a given purchase_unit"
            }
        ],
        "message": "The requested action could not be performed, semantically incorrect, or failed business validation.",
        "debug_id": "2acdd98d4b47c",
        "links": [
            {
                "href": "https:\/\/developer.paypal.com\/docs\/api\/orders\/v2\/#error-ITEM_TOTAL_MISMATCH",
                "rel": "information_link",
                "method": "GET"
            }
        ]
    }
    2022-07-19T09:44:25+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Create Order API ) ------------------->
    {
        "intent": "CAPTURE",
        "application_context": {
            "brand_name": "Meindl Fashion Sandbox",
            "locale": "de-DE",
            "landing_page": "LOGIN",
            "shipping_preference": "SET_PROVIDED_ADDRESS",
            "user_action": "PAY_NOW",
            "return_url": "https:\/\/stage.meindl-fashion.de\/wc-api\/Eh_PayPal_Express_Payment\/?c=order_details&p=https:\/\/stage.meindl-fashion.de\/kasse\/&intent=CAPTURE",
            "cancel_url": "https:\/\/stage.meindl-fashion.de\/kasse\/?cancel_express_checkout=cancel"
        },
        "purchase_units": [
            {
                "items": [
                    {
                        "name": "Rehlederhose Herren \"Wildwood Short\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 46",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 713.45
                        }
                    },
                    {
                        "name": "Rehlederhose Herren \"Montgomery Bermuda\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 48",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 738.66
                        }
                    },
                    {
                        "name": "Extra line item",
                        "description": "",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 0.01
                        }
                    }
                ],
                "amount": {
                    "currency_code": "EUR",
                    "value": 1731.99,
                    "breakdown": {
                        "item_total": {
                            "currency_code": "EUR",
                            "value": 1452.1
                        },
                        "shipping": {
                            "currency_code": "EUR",
                            "value": 3.99
                        },
                        "tax_total": {
                            "currency_code": "EUR",
                            "value": 275.9
                        },
                        "shipping_discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "handling": {
                            "currency_code": "EUR",
                            "value": 0
                        }
                    }
                },
                "shipping": {
                    "name": {
                        "full_name": "Max Huch"
                    },
                    "address": {
                        "address_line_1": "Ferdinand-Wallbrecht-Stra\u00dfe 4",
                        "address_line_2": "",
                        "admin_area_2": "Hannover",
                        "admin_area_1": "",
                        "postal_code": "30163",
                        "country_code": "DE"
                    }
                }
            }
        ]
    }
    2022-07-19T09:44:25+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Response on Create Order API ) ------------------->
    {
        "name": "UNPROCESSABLE_ENTITY",
        "details": [
            {
                "field": "\/purchase_units\/@reference_id=='default'\/amount\/breakdown\/item_total\/value",
                "value": "1452.1",
                "issue": "ITEM_TOTAL_MISMATCH",
                "description": "Should equal sum of (unit_amount * quantity) across all items for a given purchase_unit"
            }
        ],
        "message": "The requested action could not be performed, semantically incorrect, or failed business validation.",
        "debug_id": "869acf941c2a4",
        "links": [
            {
                "href": "https:\/\/developer.paypal.com\/docs\/api\/orders\/v2\/#error-ITEM_TOTAL_MISMATCH",
                "rel": "information_link",
                "method": "GET"
            }
        ]
    }
    2022-07-19T09:44:49+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Create Order API ) ------------------->
    {
        "intent": "CAPTURE",
        "application_context": {
            "brand_name": "Meindl Fashion Sandbox",
            "locale": "de-DE",
            "landing_page": "LOGIN",
            "shipping_preference": "SET_PROVIDED_ADDRESS",
            "user_action": "PAY_NOW",
            "return_url": "https:\/\/stage.meindl-fashion.de\/wc-api\/Eh_PayPal_Express_Payment\/?c=order_details&p=https:\/\/stage.meindl-fashion.de\/kasse\/&intent=CAPTURE",
            "cancel_url": "https:\/\/stage.meindl-fashion.de\/kasse\/?cancel_express_checkout=cancel"
        },
        "purchase_units": [
            {
                "items": [
                    {
                        "name": "Rehlederhose Herren \"Wildwood Short\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 46",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 713.45
                        }
                    },
                    {
                        "name": "Rehlederhose Herren \"Montgomery Bermuda\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 48",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 738.66
                        }
                    },
                    {
                        "name": "Extra line item",
                        "description": "",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 0.01
                        }
                    }
                ],
                "amount": {
                    "currency_code": "EUR",
                    "value": 1731.99,
                    "breakdown": {
                        "item_total": {
                            "currency_code": "EUR",
                            "value": 1452.1
                        },
                        "shipping": {
                            "currency_code": "EUR",
                            "value": 3.99
                        },
                        "tax_total": {
                            "currency_code": "EUR",
                            "value": 275.9
                        },
                        "shipping_discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "handling": {
                            "currency_code": "EUR",
                            "value": 0
                        }
                    }
                },
                "shipping": {
                    "name": {
                        "full_name": "Max Huch"
                    },
                    "address": {
                        "address_line_1": "Ferdinand-Wallbrecht-Stra\u00dfe 4",
                        "address_line_2": "",
                        "admin_area_2": "Hannover",
                        "admin_area_1": "",
                        "postal_code": "30163",
                        "country_code": "DE"
                    }
                }
            }
        ]
    }
    2022-07-19T09:44:49+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Response on Create Order API ) ------------------->
    {
        "name": "UNPROCESSABLE_ENTITY",
        "details": [
            {
                "field": "\/purchase_units\/@reference_id=='default'\/amount\/breakdown\/item_total\/value",
                "value": "1452.1",
                "issue": "ITEM_TOTAL_MISMATCH",
                "description": "Should equal sum of (unit_amount * quantity) across all items for a given purchase_unit"
            }
        ],
        "message": "The requested action could not be performed, semantically incorrect, or failed business validation.",
        "debug_id": "9aa42f57a1e77",
        "links": [
            {
                "href": "https:\/\/developer.paypal.com\/docs\/api\/orders\/v2\/#error-ITEM_TOTAL_MISMATCH",
                "rel": "information_link",
                "method": "GET"
            }
        ]
    }
    2022-07-19T09:45:10+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Create Order API ) ------------------->
    {
        "intent": "CAPTURE",
        "application_context": {
            "brand_name": "Meindl Fashion Sandbox",
            "locale": "de-DE",
            "landing_page": "LOGIN",
            "shipping_preference": "SET_PROVIDED_ADDRESS",
            "user_action": "PAY_NOW",
            "return_url": "https:\/\/stage.meindl-fashion.de\/wc-api\/Eh_PayPal_Express_Payment\/?c=order_details&p=https:\/\/stage.meindl-fashion.de\/kasse\/&intent=CAPTURE",
            "cancel_url": "https:\/\/stage.meindl-fashion.de\/kasse\/?cancel_express_checkout=cancel"
        },
        "purchase_units": [
            {
                "items": [
                    {
                        "name": "Rehlederhose Herren \"Wildwood Short\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 46",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 713.45
                        }
                    },
                    {
                        "name": "Rehlederhose Herren \"Montgomery Bermuda\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 48",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 738.66
                        }
                    },
                    {
                        "name": "Extra line item",
                        "description": "",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 0.01
                        }
                    }
                ],
                "amount": {
                    "currency_code": "EUR",
                    "value": 1731.99,
                    "breakdown": {
                        "item_total": {
                            "currency_code": "EUR",
                            "value": 1452.1
                        },
                        "shipping": {
                            "currency_code": "EUR",
                            "value": 3.99
                        },
                        "tax_total": {
                            "currency_code": "EUR",
                            "value": 275.9
                        },
                        "shipping_discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "handling": {
                            "currency_code": "EUR",
                            "value": 0
                        }
                    }
                },
                "shipping": {
                    "name": {
                        "full_name": "Max Huch"
                    },
                    "address": {
                        "address_line_1": "Ferdinand-Wallbrecht-Stra\u00dfe 4",
                        "address_line_2": "",
                        "admin_area_2": "Hannover",
                        "admin_area_1": "",
                        "postal_code": "30163",
                        "country_code": "DE"
                    }
                }
            }
        ]
    }
    2022-07-19T09:45:10+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Response on Create Order API ) ------------------->
    {
        "name": "UNPROCESSABLE_ENTITY",
        "details": [
            {
                "field": "\/purchase_units\/@reference_id=='default'\/amount\/breakdown\/item_total\/value",
                "value": "1452.1",
                "issue": "ITEM_TOTAL_MISMATCH",
                "description": "Should equal sum of (unit_amount * quantity) across all items for a given purchase_unit"
            }
        ],
        "message": "The requested action could not be performed, semantically incorrect, or failed business validation.",
        "debug_id": "8df4b759ff1ff",
        "links": [
            {
                "href": "https:\/\/developer.paypal.com\/docs\/api\/orders\/v2\/#error-ITEM_TOTAL_MISMATCH",
                "rel": "information_link",
                "method": "GET"
            }
        ]
    }
    2022-07-19T09:45:30+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Create Order API ) ------------------->
    {
        "intent": "CAPTURE",
        "application_context": {
            "brand_name": "Meindl Fashion Sandbox",
            "locale": "de-DE",
            "landing_page": "LOGIN",
            "shipping_preference": "SET_PROVIDED_ADDRESS",
            "user_action": "PAY_NOW",
            "return_url": "https:\/\/stage.meindl-fashion.de\/wc-api\/Eh_PayPal_Express_Payment\/?c=order_details&p=https:\/\/stage.meindl-fashion.de\/kasse\/&intent=CAPTURE",
            "cancel_url": "https:\/\/stage.meindl-fashion.de\/kasse\/?cancel_express_checkout=cancel"
        },
        "purchase_units": [
            {
                "items": [
                    {
                        "name": "Rehlederhose Herren \"Wildwood Short\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 46",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 713.45
                        }
                    },
                    {
                        "name": "Rehlederhose Herren \"Montgomery Bermuda\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 48",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 738.66
                        }
                    },
                    {
                        "name": "Extra line item",
                        "description": "",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 0.01
                        }
                    }
                ],
                "amount": {
                    "currency_code": "EUR",
                    "value": 1731.99,
                    "breakdown": {
                        "item_total": {
                            "currency_code": "EUR",
                            "value": 1452.1
                        },
                        "shipping": {
                            "currency_code": "EUR",
                            "value": 3.99
                        },
                        "tax_total": {
                            "currency_code": "EUR",
                            "value": 275.9
                        },
                        "shipping_discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "handling": {
                            "currency_code": "EUR",
                            "value": 0
                        }
                    }
                },
                "shipping": {
                    "name": {
                        "full_name": "Max Huch"
                    },
                    "address": {
                        "address_line_1": "Ferdinand-Wallbrecht-Stra\u00dfe 4",
                        "address_line_2": "",
                        "admin_area_2": "Hannover",
                        "admin_area_1": "",
                        "postal_code": "30163",
                        "country_code": "DE"
                    }
                }
            }
        ]
    }
    2022-07-19T09:45:30+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Response on Create Order API ) ------------------->
    {
        "name": "UNPROCESSABLE_ENTITY",
        "details": [
            {
                "field": "\/purchase_units\/@reference_id=='default'\/amount\/breakdown\/item_total\/value",
                "value": "1452.1",
                "issue": "ITEM_TOTAL_MISMATCH",
                "description": "Should equal sum of (unit_amount * quantity) across all items for a given purchase_unit"
            }
        ],
        "message": "The requested action could not be performed, semantically incorrect, or failed business validation.",
        "debug_id": "bdce691e64c41",
        "links": [
            {
                "href": "https:\/\/developer.paypal.com\/docs\/api\/orders\/v2\/#error-ITEM_TOTAL_MISMATCH",
                "rel": "information_link",
                "method": "GET"
            }
        ]
    }
    2022-07-19T09:45:57+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Create Order API ) ------------------->
    {
        "intent": "CAPTURE",
        "application_context": {
            "brand_name": "Meindl Fashion Sandbox",
            "locale": "de-DE",
            "landing_page": "LOGIN",
            "shipping_preference": "SET_PROVIDED_ADDRESS",
            "user_action": "PAY_NOW",
            "return_url": "https:\/\/stage.meindl-fashion.de\/wc-api\/Eh_PayPal_Express_Payment\/?c=order_details&p=https:\/\/stage.meindl-fashion.de\/kasse\/&intent=CAPTURE",
            "cancel_url": "https:\/\/stage.meindl-fashion.de\/kasse\/?cancel_express_checkout=cancel"
        },
        "purchase_units": [
            {
                "items": [
                    {
                        "name": "Rehlederhose Herren \"Wildwood Short\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 46",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 713.45
                        }
                    },
                    {
                        "name": "Rehlederhose Herren \"Montgomery Bermuda\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 48",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 738.66
                        }
                    },
                    {
                        "name": "Extra line item",
                        "description": "",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 0.01
                        }
                    }
                ],
                "amount": {
                    "currency_code": "EUR",
                    "value": 1731.99,
                    "breakdown": {
                        "item_total": {
                            "currency_code": "EUR",
                            "value": 1452.1
                        },
                        "shipping": {
                            "currency_code": "EUR",
                            "value": 3.99
                        },
                        "tax_total": {
                            "currency_code": "EUR",
                            "value": 275.9
                        },
                        "shipping_discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "handling": {
                            "currency_code": "EUR",
                            "value": 0
                        }
                    }
                },
                "shipping": {
                    "name": {
                        "full_name": "Max Huch"
                    },
                    "address": {
                        "address_line_1": "Ferdinand-Wallbrecht-Stra\u00dfe 4",
                        "address_line_2": "",
                        "admin_area_2": "Hannover",
                        "admin_area_1": "",
                        "postal_code": "30163",
                        "country_code": "DE"
                    }
                }
            }
        ]
    }
    2022-07-19T09:45:57+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Response on Create Order API ) ------------------->
    {
        "name": "UNPROCESSABLE_ENTITY",
        "details": [
            {
                "field": "\/purchase_units\/@reference_id=='default'\/amount\/breakdown\/item_total\/value",
                "value": "1452.1",
                "issue": "ITEM_TOTAL_MISMATCH",
                "description": "Should equal sum of (unit_amount * quantity) across all items for a given purchase_unit"
            }
        ],
        "message": "The requested action could not be performed, semantically incorrect, or failed business validation.",
        "debug_id": "7c23f84cc7b6a",
        "links": [
            {
                "href": "https:\/\/developer.paypal.com\/docs\/api\/orders\/v2\/#error-ITEM_TOTAL_MISMATCH",
                "rel": "information_link",
                "method": "GET"
            }
        ]
    }
    2022-07-19T09:47:30+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Create Order API ) ------------------->
    {
        "intent": "CAPTURE",
        "application_context": {
            "brand_name": "Meindl Fashion Sandbox",
            "locale": "de-DE",
            "landing_page": "LOGIN",
            "shipping_preference": "SET_PROVIDED_ADDRESS",
            "user_action": "PAY_NOW",
            "return_url": "https:\/\/stage.meindl-fashion.de\/wc-api\/Eh_PayPal_Express_Payment\/?c=order_details&p=https:\/\/stage.meindl-fashion.de\/kasse\/&intent=CAPTURE",
            "cancel_url": "https:\/\/stage.meindl-fashion.de\/kasse\/?cancel_express_checkout=cancel"
        },
        "purchase_units": [
            {
                "items": [
                    {
                        "name": "Rehlederhose Herren \"Wildwood Short\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 46",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 713.45
                        }
                    },
                    {
                        "name": "Rehlederhose Herren \"Montgomery Bermuda\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 48",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 738.66
                        }
                    },
                    {
                        "name": "Extra line item",
                        "description": "",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 0.01
                        }
                    }
                ],
                "amount": {
                    "currency_code": "EUR",
                    "value": 1731.99,
                    "breakdown": {
                        "item_total": {
                            "currency_code": "EUR",
                            "value": 1452.1
                        },
                        "shipping": {
                            "currency_code": "EUR",
                            "value": 3.99
                        },
                        "tax_total": {
                            "currency_code": "EUR",
                            "value": 275.9
                        },
                        "shipping_discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "handling": {
                            "currency_code": "EUR",
                            "value": 0
                        }
                    }
                },
                "shipping": {
                    "name": {
                        "full_name": "Max Huch"
                    },
                    "address": {
                        "address_line_1": "Ferdinand-Wallbrecht-Stra\u00dfe 4",
                        "address_line_2": "",
                        "admin_area_2": "Hannover",
                        "admin_area_1": "",
                        "postal_code": "30163",
                        "country_code": "DE"
                    }
                }
            }
        ]
    }
    2022-07-19T09:47:31+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Response on Create Order API ) ------------------->
    {
        "name": "UNPROCESSABLE_ENTITY",
        "details": [
            {
                "field": "\/purchase_units\/@reference_id=='default'\/amount\/breakdown\/item_total\/value",
                "value": "1452.1",
                "issue": "ITEM_TOTAL_MISMATCH",
                "description": "Should equal sum of (unit_amount * quantity) across all items for a given purchase_unit"
            }
        ],
        "message": "The requested action could not be performed, semantically incorrect, or failed business validation.",
        "debug_id": "44f7557a7a6ff",
        "links": [
            {
                "href": "https:\/\/developer.paypal.com\/docs\/api\/orders\/v2\/#error-ITEM_TOTAL_MISMATCH",
                "rel": "information_link",
                "method": "GET"
            }
        ]
    }
    2022-07-19T09:54:51+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Create Order API ) ------------------->
    {
        "intent": "CAPTURE",
        "application_context": {
            "brand_name": "Meindl Fashion Sandbox",
            "locale": "de-DE",
            "landing_page": "LOGIN",
            "shipping_preference": "SET_PROVIDED_ADDRESS",
            "user_action": "PAY_NOW",
            "return_url": "https:\/\/stage.meindl-fashion.de\/wc-api\/Eh_PayPal_Express_Payment\/?c=order_details&p=https:\/\/stage.meindl-fashion.de\/kasse\/&intent=CAPTURE",
            "cancel_url": "https:\/\/stage.meindl-fashion.de\/kasse\/?cancel_express_checkout=cancel"
        },
        "purchase_units": [
            {
                "items": [
                    {
                        "name": "Rehlederhose Herren \"Wildwood Short\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 46",
                        "quantity": 1,
                        "unit_amount": 713.45
                    },
                    {
                        "name": "Rehlederhose Herren \"Montgomery Bermuda\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 48",
                        "quantity": 1,
                        "unit_amount": 738.66
                    },
                    {
                        "name": "Extra line item",
                        "description": "",
                        "quantity": 1,
                        "unit_amount": 0.01
                    }
                ],
                "amount": {
                    "currency_code": "EUR",
                    "value": 1731.99,
                    "breakdown": {
                        "item_total": {
                            "currency_code": "EUR",
                            "value": 1452.1
                        },
                        "shipping": {
                            "currency_code": "EUR",
                            "value": 3.99
                        },
                        "tax_total": {
                            "currency_code": "EUR",
                            "value": 275.9
                        },
                        "shipping_discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "handling": {
                            "currency_code": "EUR",
                            "value": 0
                        }
                    }
                },
                "shipping": {
                    "name": {
                        "full_name": "Max Huch"
                    },
                    "address": {
                        "address_line_1": "Ferdinand-Wallbrecht-Stra\u00dfe 4",
                        "address_line_2": "",
                        "admin_area_2": "Hannover",
                        "admin_area_1": "",
                        "postal_code": "30163",
                        "country_code": "DE"
                    }
                }
            }
        ]
    }
    2022-07-19T09:54:52+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Response on Create Order API ) ------------------->
    {
        "name": "INVALID_REQUEST",
        "message": "Request is not well-formed, syntactically incorrect, or violates schema.",
        "debug_id": "ba73042859f56",
        "details": [
            {
                "field": "\/purchase_units\/0\/items\/0\/unit_amount",
                "location": "body",
                "issue": "MALFORMED_REQUEST_JSON",
                "description": "The request JSON is not well formed."
            }
        ],
        "links": [
            {
                "href": "https:\/\/developer.paypal.com\/docs\/api\/orders\/v2\/#error-MALFORMED_REQUEST_JSON",
                "rel": "information_link",
                "encType": "application\/json"
            }
        ]
    }
    2022-07-19T09:55:10+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Create Order API ) ------------------->
    {
        "intent": "CAPTURE",
        "application_context": {
            "brand_name": "Meindl Fashion Sandbox",
            "locale": "de-DE",
            "landing_page": "LOGIN",
            "shipping_preference": "SET_PROVIDED_ADDRESS",
            "user_action": "PAY_NOW",
            "return_url": "https:\/\/stage.meindl-fashion.de\/wc-api\/Eh_PayPal_Express_Payment\/?c=order_details&p=https:\/\/stage.meindl-fashion.de\/kasse\/&intent=CAPTURE",
            "cancel_url": "https:\/\/stage.meindl-fashion.de\/kasse\/?cancel_express_checkout=cancel"
        },
        "purchase_units": [
            {
                "items": [
                    {
                        "name": "Rehlederhose Herren \"Wildwood Short\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 46",
                        "quantity": 1,
                        "unit_amount": 713.45
                    },
                    {
                        "name": "Rehlederhose Herren \"Montgomery Bermuda\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 48",
                        "quantity": 1,
                        "unit_amount": 738.66
                    },
                    {
                        "name": "Extra line item",
                        "description": "",
                        "quantity": 1,
                        "unit_amount": 0.01
                    }
                ],
                "amount": {
                    "currency_code": "EUR",
                    "value": 1731.99,
                    "breakdown": {
                        "item_total": {
                            "currency_code": "EUR",
                            "value": 1452.1
                        },
                        "shipping": {
                            "currency_code": "EUR",
                            "value": 3.99
                        },
                        "tax_total": {
                            "currency_code": "EUR",
                            "value": 275.9
                        },
                        "shipping_discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "handling": {
                            "currency_code": "EUR",
                            "value": 0
                        }
                    }
                },
                "shipping": {
                    "name": {
                        "full_name": "Max Huch"
                    },
                    "address": {
                        "address_line_1": "Ferdinand-Wallbrecht-Stra\u00dfe 4",
                        "address_line_2": "",
                        "admin_area_2": "Hannover",
                        "admin_area_1": "",
                        "postal_code": "30163",
                        "country_code": "DE"
                    }
                }
            }
        ]
    }
    2022-07-19T09:55:11+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Response on Create Order API ) ------------------->
    {
        "name": "INVALID_REQUEST",
        "message": "Request is not well-formed, syntactically incorrect, or violates schema.",
        "debug_id": "2a2d3bda5d14",
        "details": [
            {
                "field": "\/purchase_units\/0\/items\/0\/unit_amount",
                "location": "body",
                "issue": "MALFORMED_REQUEST_JSON",
                "description": "The request JSON is not well formed."
            }
        ],
        "links": [
            {
                "href": "https:\/\/developer.paypal.com\/docs\/api\/orders\/v2\/#error-MALFORMED_REQUEST_JSON",
                "rel": "information_link",
                "encType": "application\/json"
            }
        ]
    }
    2022-07-19T10:02:02+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Create Order API ) ------------------->
    {
        "intent": "CAPTURE",
        "application_context": {
            "brand_name": "Meindl Fashion Sandbox",
            "locale": "de-DE",
            "landing_page": "LOGIN",
            "shipping_preference": "SET_PROVIDED_ADDRESS",
            "user_action": "PAY_NOW",
            "return_url": "https:\/\/stage.meindl-fashion.de\/wc-api\/Eh_PayPal_Express_Payment\/?c=order_details&p=https:\/\/stage.meindl-fashion.de\/kasse\/&intent=CAPTURE",
            "cancel_url": "https:\/\/stage.meindl-fashion.de\/kasse\/?cancel_express_checkout=cancel"
        },
        "purchase_units": [
            {
                "items": [
                    {
                        "name": "Rehlederhose Herren \"Wildwood Short\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 46",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 713.4
                        }
                    },
                    {
                        "name": "Rehlederhose Herren \"Montgomery Bermuda\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 48",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 738.7
                        }
                    }
                ],
                "amount": {
                    "currency_code": "EUR",
                    "value": 1732,
                    "breakdown": {
                        "item_total": {
                            "currency_code": "EUR",
                            "value": 1452.1
                        },
                        "shipping": {
                            "currency_code": "EUR",
                            "value": 4
                        },
                        "tax_total": {
                            "currency_code": "EUR",
                            "value": 275.9
                        },
                        "shipping_discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "handling": {
                            "currency_code": "EUR",
                            "value": 0
                        }
                    }
                },
                "shipping": {
                    "name": {
                        "full_name": "Max Huch"
                    },
                    "address": {
                        "address_line_1": "Ferdinand-Wallbrecht-Stra\u00dfe 4",
                        "address_line_2": "",
                        "admin_area_2": "Hannover",
                        "admin_area_1": "",
                        "postal_code": "30163",
                        "country_code": "DE"
                    }
                }
            }
        ]
    }
    2022-07-19T10:02:03+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Response on Create Order API ) ------------------->
    {
        "id": "43687577WL935115R",
        "status": "CREATED",
        "links": [
            {
                "href": "https:\/\/api.sandbox.paypal.com\/v2\/checkout\/orders\/43687577WL935115R",
                "rel": "self",
                "method": "GET"
            },
            {
                "href": "https:\/\/www.sandbox.paypal.com\/checkoutnow?token=43687577WL935115R",
                "rel": "approve",
                "method": "GET"
            },
            {
                "href": "https:\/\/api.sandbox.paypal.com\/v2\/checkout\/orders\/43687577WL935115R",
                "rel": "update",
                "method": "PATCH"
            },
            {
                "href": "https:\/\/api.sandbox.paypal.com\/v2\/checkout\/orders\/43687577WL935115R\/capture",
                "rel": "capture",
                "method": "POST"
            }
        ]
    }
    2022-07-19T10:02:08+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Create Order API ) ------------------->
    {
        "intent": "CAPTURE",
        "application_context": {
            "brand_name": "Meindl Fashion Sandbox",
            "locale": "de-DE",
            "landing_page": "LOGIN",
            "shipping_preference": "SET_PROVIDED_ADDRESS",
            "user_action": "PAY_NOW",
            "return_url": "https:\/\/stage.meindl-fashion.de\/wc-api\/Eh_PayPal_Express_Payment\/?c=order_details&p=https:\/\/stage.meindl-fashion.de\/kasse\/&intent=CAPTURE",
            "cancel_url": "https:\/\/stage.meindl-fashion.de\/kasse\/?cancel_express_checkout=cancel"
        },
        "purchase_units": [
            {
                "items": [
                    {
                        "name": "Rehlederhose Herren \"Wildwood Short\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 46",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 713.4
                        }
                    },
                    {
                        "name": "Rehlederhose Herren \"Montgomery Bermuda\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 48",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 738.7
                        }
                    }
                ],
                "amount": {
                    "currency_code": "EUR",
                    "value": 1732,
                    "breakdown": {
                        "item_total": {
                            "currency_code": "EUR",
                            "value": 1452.1
                        },
                        "shipping": {
                            "currency_code": "EUR",
                            "value": 4
                        },
                        "tax_total": {
                            "currency_code": "EUR",
                            "value": 275.9
                        },
                        "shipping_discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "handling": {
                            "currency_code": "EUR",
                            "value": 0
                        }
                    }
                },
                "shipping": {
                    "name": {
                        "full_name": "Max Huch"
                    },
                    "address": {
                        "address_line_1": "Ferdinand-Wallbrecht-Stra\u00dfe 4",
                        "address_line_2": "",
                        "admin_area_2": "Hannover",
                        "admin_area_1": "",
                        "postal_code": "30163",
                        "country_code": "DE"
                    }
                }
            }
        ]
    }
    2022-07-19T10:02:08+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Response on Create Order API ) ------------------->
    {
        "id": "8W876168KX0819737",
        "status": "CREATED",
        "links": [
            {
                "href": "https:\/\/api.sandbox.paypal.com\/v2\/checkout\/orders\/8W876168KX0819737",
                "rel": "self",
                "method": "GET"
            },
            {
                "href": "https:\/\/www.sandbox.paypal.com\/checkoutnow?token=8W876168KX0819737",
                "rel": "approve",
                "method": "GET"
            },
            {
                "href": "https:\/\/api.sandbox.paypal.com\/v2\/checkout\/orders\/8W876168KX0819737",
                "rel": "update",
                "method": "PATCH"
            },
            {
                "href": "https:\/\/api.sandbox.paypal.com\/v2\/checkout\/orders\/8W876168KX0819737\/capture",
                "rel": "capture",
                "method": "POST"
            }
        ]
    }
    2022-07-19T10:06:31+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Create Order API ) ------------------->
    {
        "intent": "CAPTURE",
        "application_context": {
            "brand_name": "Meindl Fashion Sandbox",
            "locale": "de-DE",
            "landing_page": "LOGIN",
            "shipping_preference": "SET_PROVIDED_ADDRESS",
            "user_action": "PAY_NOW",
            "return_url": "https:\/\/stage.meindl-fashion.de\/wc-api\/Eh_PayPal_Express_Payment\/?c=order_details&p=https:\/\/stage.meindl-fashion.de\/kasse\/&intent=CAPTURE",
            "cancel_url": "https:\/\/stage.meindl-fashion.de\/kasse\/?cancel_express_checkout=cancel"
        },
        "purchase_units": [
            {
                "items": [
                    {
                        "name": "Rehlederhose Herren \"Wildwood Short\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 46",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 713.4
                        }
                    },
                    {
                        "name": "Rehlederhose Herren \"Montgomery Bermuda\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 48",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 738.7
                        }
                    }
                ],
                "amount": {
                    "currency_code": "EUR",
                    "value": 1732,
                    "breakdown": {
                        "item_total": {
                            "currency_code": "EUR",
                            "value": 1452.1
                        },
                        "shipping": {
                            "currency_code": "EUR",
                            "value": 4
                        },
                        "tax_total": {
                            "currency_code": "EUR",
                            "value": 275.9
                        },
                        "shipping_discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "handling": {
                            "currency_code": "EUR",
                            "value": 0
                        }
                    }
                },
                "shipping": {
                    "name": {
                        "full_name": "Max Huch"
                    },
                    "address": {
                        "address_line_1": "Ferdinand-Wallbrecht-Stra\u00dfe 4",
                        "address_line_2": "",
                        "admin_area_2": "Hannover",
                        "admin_area_1": "",
                        "postal_code": "30163",
                        "country_code": "DE"
                    }
                }
            }
        ]
    }
    2022-07-19T10:06:31+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Response on Create Order API ) ------------------->
    {
        "id": "6AK09161DV580361E",
        "status": "CREATED",
        "links": [
            {
                "href": "https:\/\/api.sandbox.paypal.com\/v2\/checkout\/orders\/6AK09161DV580361E",
                "rel": "self",
                "method": "GET"
            },
            {
                "href": "https:\/\/www.sandbox.paypal.com\/checkoutnow?token=6AK09161DV580361E",
                "rel": "approve",
                "method": "GET"
            },
            {
                "href": "https:\/\/api.sandbox.paypal.com\/v2\/checkout\/orders\/6AK09161DV580361E",
                "rel": "update",
                "method": "PATCH"
            },
            {
                "href": "https:\/\/api.sandbox.paypal.com\/v2\/checkout\/orders\/6AK09161DV580361E\/capture",
                "rel": "capture",
                "method": "POST"
            }
        ]
    }
    2022-07-19T10:06:51+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Create Order API ) ------------------->
    {
        "intent": "CAPTURE",
        "application_context": {
            "brand_name": "Meindl Fashion Sandbox",
            "locale": "de-DE",
            "landing_page": "LOGIN",
            "shipping_preference": "SET_PROVIDED_ADDRESS",
            "user_action": "PAY_NOW",
            "return_url": "https:\/\/stage.meindl-fashion.de\/wc-api\/Eh_PayPal_Express_Payment\/?c=order_details&p=https:\/\/stage.meindl-fashion.de\/kasse\/&intent=CAPTURE",
            "cancel_url": "https:\/\/stage.meindl-fashion.de\/kasse\/?cancel_express_checkout=cancel"
        },
        "purchase_units": [
            {
                "items": [
                    {
                        "name": "Rehlederhose Herren \"Wildwood Short\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 46",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 713.445
                        }
                    },
                    {
                        "name": "Rehlederhose Herren \"Montgomery Bermuda\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 48",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 738.655
                        }
                    },
                    {
                        "name": "Extra line item",
                        "description": "",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 0.001
                        }
                    }
                ],
                "amount": {
                    "currency_code": "EUR",
                    "value": 1731.99,
                    "breakdown": {
                        "item_total": {
                            "currency_code": "EUR",
                            "value": 1452.101
                        },
                        "shipping": {
                            "currency_code": "EUR",
                            "value": 3.99
                        },
                        "tax_total": {
                            "currency_code": "EUR",
                            "value": 275.899
                        },
                        "shipping_discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "handling": {
                            "currency_code": "EUR",
                            "value": 0
                        }
                    }
                },
                "shipping": {
                    "name": {
                        "full_name": "Max Huch"
                    },
                    "address": {
                        "address_line_1": "Ferdinand-Wallbrecht-Stra\u00dfe 4",
                        "address_line_2": "",
                        "admin_area_2": "Hannover",
                        "admin_area_1": "",
                        "postal_code": "30163",
                        "country_code": "DE"
                    }
                }
            }
        ]
    }
    2022-07-19T10:06:51+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Response on Create Order API ) ------------------->
    {
        "name": "UNPROCESSABLE_ENTITY",
        "details": [
            {
                "field": "\/purchase_units\/@reference_id=='default'\/amount\/breakdown\/item_total\/value",
                "value": "1452.101",
                "issue": "DECIMAL_PRECISION",
                "description": "If the currency supports decimals, only two decimal place precision is supported."
            }
        ],
        "message": "The requested action could not be performed, semantically incorrect, or failed business validation.",
        "debug_id": "2b3335c888588",
        "links": [
            {
                "href": "https:\/\/developer.paypal.com\/docs\/api\/orders\/v2\/#error-DECIMAL_PRECISION",
                "rel": "information_link",
                "method": "GET"
            }
        ]
    }
    2022-07-19T10:07:08+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Create Order API ) ------------------->
    {
        "intent": "CAPTURE",
        "application_context": {
            "brand_name": "Meindl Fashion Sandbox",
            "locale": "de-DE",
            "landing_page": "LOGIN",
            "shipping_preference": "SET_PROVIDED_ADDRESS",
            "user_action": "PAY_NOW",
            "return_url": "https:\/\/stage.meindl-fashion.de\/wc-api\/Eh_PayPal_Express_Payment\/?c=order_details&p=https:\/\/stage.meindl-fashion.de\/kasse\/&intent=CAPTURE",
            "cancel_url": "https:\/\/stage.meindl-fashion.de\/kasse\/?cancel_express_checkout=cancel"
        },
        "purchase_units": [
            {
                "items": [
                    {
                        "name": "Rehlederhose Herren \"Wildwood Short\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 46",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 713.45
                        }
                    },
                    {
                        "name": "Rehlederhose Herren \"Montgomery Bermuda\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 48",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 738.66
                        }
                    },
                    {
                        "name": "Extra line item",
                        "description": "",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 0.01
                        }
                    }
                ],
                "amount": {
                    "currency_code": "EUR",
                    "value": 1731.99,
                    "breakdown": {
                        "item_total": {
                            "currency_code": "EUR",
                            "value": 1452.1
                        },
                        "shipping": {
                            "currency_code": "EUR",
                            "value": 3.99
                        },
                        "tax_total": {
                            "currency_code": "EUR",
                            "value": 275.9
                        },
                        "shipping_discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "handling": {
                            "currency_code": "EUR",
                            "value": 0
                        }
                    }
                },
                "shipping": {
                    "name": {
                        "full_name": "Max Huch"
                    },
                    "address": {
                        "address_line_1": "Ferdinand-Wallbrecht-Stra\u00dfe 4",
                        "address_line_2": "",
                        "admin_area_2": "Hannover",
                        "admin_area_1": "",
                        "postal_code": "30163",
                        "country_code": "DE"
                    }
                }
            }
        ]
    }
    2022-07-19T10:07:09+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Response on Create Order API ) ------------------->
    {
        "name": "UNPROCESSABLE_ENTITY",
        "details": [
            {
                "field": "\/purchase_units\/@reference_id=='default'\/amount\/breakdown\/item_total\/value",
                "value": "1452.1",
                "issue": "ITEM_TOTAL_MISMATCH",
                "description": "Should equal sum of (unit_amount * quantity) across all items for a given purchase_unit"
            }
        ],
        "message": "The requested action could not be performed, semantically incorrect, or failed business validation.",
        "debug_id": "28f198b75e55e",
        "links": [
            {
                "href": "https:\/\/developer.paypal.com\/docs\/api\/orders\/v2\/#error-ITEM_TOTAL_MISMATCH",
                "rel": "information_link",
                "method": "GET"
            }
        ]
    }
    2022-07-19T10:08:30+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Create Order API ) ------------------->
    {
        "intent": "CAPTURE",
        "application_context": {
            "brand_name": "Meindl Fashion Sandbox",
            "locale": "de-DE",
            "landing_page": "LOGIN",
            "shipping_preference": "SET_PROVIDED_ADDRESS",
            "user_action": "PAY_NOW",
            "return_url": "https:\/\/stage.meindl-fashion.de\/wc-api\/Eh_PayPal_Express_Payment\/?c=order_details&p=https:\/\/stage.meindl-fashion.de\/kasse\/&intent=CAPTURE",
            "cancel_url": "https:\/\/stage.meindl-fashion.de\/kasse\/?cancel_express_checkout=cancel"
        },
        "purchase_units": [
            {
                "items": [
                    {
                        "name": "Rehlederhose Herren \"Wildwood Short\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 46",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 713.45
                        }
                    },
                    {
                        "name": "Rehlederhose Herren \"Montgomery Bermuda\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 48",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 738.66
                        }
                    },
                    {
                        "name": "Extra line item",
                        "description": "",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 0.01
                        }
                    }
                ],
                "amount": {
                    "currency_code": "EUR",
                    "value": 1731.99,
                    "breakdown": {
                        "item_total": {
                            "currency_code": "EUR",
                            "value": 1452.1
                        },
                        "shipping": {
                            "currency_code": "EUR",
                            "value": 3.99
                        },
                        "tax_total": {
                            "currency_code": "EUR",
                            "value": 275.9
                        },
                        "shipping_discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "handling": {
                            "currency_code": "EUR",
                            "value": 0
                        }
                    }
                },
                "shipping": {
                    "name": {
                        "full_name": "Max Huch"
                    },
                    "address": {
                        "address_line_1": "Ferdinand-Wallbrecht-Stra\u00dfe 4",
                        "address_line_2": "",
                        "admin_area_2": "Hannover",
                        "admin_area_1": "",
                        "postal_code": "30163",
                        "country_code": "DE"
                    }
                }
            }
        ]
    }
    2022-07-19T10:08:30+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Response on Create Order API ) ------------------->
    {
        "name": "UNPROCESSABLE_ENTITY",
        "details": [
            {
                "field": "\/purchase_units\/@reference_id=='default'\/amount\/breakdown\/item_total\/value",
                "value": "1452.1",
                "issue": "ITEM_TOTAL_MISMATCH",
                "description": "Should equal sum of (unit_amount * quantity) across all items for a given purchase_unit"
            }
        ],
        "message": "The requested action could not be performed, semantically incorrect, or failed business validation.",
        "debug_id": "8c62bbc371f09",
        "links": [
            {
                "href": "https:\/\/developer.paypal.com\/docs\/api\/orders\/v2\/#error-ITEM_TOTAL_MISMATCH",
                "rel": "information_link",
                "method": "GET"
            }
        ]
    }
    2022-07-19T10:08:39+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Create Order API ) ------------------->
    {
        "intent": "CAPTURE",
        "application_context": {
            "brand_name": "Meindl Fashion Sandbox",
            "locale": "de-DE",
            "landing_page": "LOGIN",
            "shipping_preference": "SET_PROVIDED_ADDRESS",
            "user_action": "PAY_NOW",
            "return_url": "https:\/\/stage.meindl-fashion.de\/wc-api\/Eh_PayPal_Express_Payment\/?c=order_details&p=https:\/\/stage.meindl-fashion.de\/kasse\/&intent=CAPTURE",
            "cancel_url": "https:\/\/stage.meindl-fashion.de\/kasse\/?cancel_express_checkout=cancel"
        },
        "purchase_units": [
            {
                "items": [
                    {
                        "name": "Rehlederhose Herren \"Wildwood Short\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 46",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 713.45
                        }
                    },
                    {
                        "name": "Rehlederhose Herren \"Montgomery Bermuda\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 48",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 738.66
                        }
                    },
                    {
                        "name": "Extra line item",
                        "description": "",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 0.01
                        }
                    }
                ],
                "amount": {
                    "currency_code": "EUR",
                    "value": 1731.99,
                    "breakdown": {
                        "item_total": {
                            "currency_code": "EUR",
                            "value": 1452.1
                        },
                        "shipping": {
                            "currency_code": "EUR",
                            "value": 3.99
                        },
                        "tax_total": {
                            "currency_code": "EUR",
                            "value": 275.9
                        },
                        "shipping_discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "handling": {
                            "currency_code": "EUR",
                            "value": 0
                        }
                    }
                },
                "shipping": {
                    "name": {
                        "full_name": "Max Huch"
                    },
                    "address": {
                        "address_line_1": "Ferdinand-Wallbrecht-Stra\u00dfe 4",
                        "address_line_2": "",
                        "admin_area_2": "Hannover",
                        "admin_area_1": "",
                        "postal_code": "30163",
                        "country_code": "DE"
                    }
                }
            }
        ]
    }
    2022-07-19T10:08:39+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Response on Create Order API ) ------------------->
    {
        "name": "UNPROCESSABLE_ENTITY",
        "details": [
            {
                "field": "\/purchase_units\/@reference_id=='default'\/amount\/breakdown\/item_total\/value",
                "value": "1452.1",
                "issue": "ITEM_TOTAL_MISMATCH",
                "description": "Should equal sum of (unit_amount * quantity) across all items for a given purchase_unit"
            }
        ],
        "message": "The requested action could not be performed, semantically incorrect, or failed business validation.",
        "debug_id": "58c364b2a8a1e",
        "links": [
            {
                "href": "https:\/\/developer.paypal.com\/docs\/api\/orders\/v2\/#error-ITEM_TOTAL_MISMATCH",
                "rel": "information_link",
                "method": "GET"
            }
        ]
    }
    2022-07-19T10:12:55+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Create Order API ) ------------------->
    {
        "intent": "CAPTURE",
        "application_context": {
            "brand_name": "Meindl Fashion Sandbox",
            "locale": "de-DE",
            "landing_page": "LOGIN",
            "shipping_preference": "SET_PROVIDED_ADDRESS",
            "user_action": "PAY_NOW",
            "return_url": "https:\/\/stage.meindl-fashion.de\/wc-api\/Eh_PayPal_Express_Payment\/?c=order_details&p=https:\/\/stage.meindl-fashion.de\/kasse\/&intent=CAPTURE",
            "cancel_url": "https:\/\/stage.meindl-fashion.de\/kasse\/?cancel_express_checkout=cancel"
        },
        "purchase_units": [
            {
                "items": [
                    {
                        "name": "Rehlederhose Herren \"Wildwood Short\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 46",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 713.45
                        }
                    },
                    {
                        "name": "Rehlederhose Herren \"Montgomery Bermuda\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 48",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 738.66
                        }
                    }
                ],
                "amount": {
                    "currency_code": "EUR",
                    "value": 1731.99,
                    "breakdown": {
                        "item_total": {
                            "currency_code": "EUR",
                            "value": 1452.1
                        },
                        "shipping": {
                            "currency_code": "EUR",
                            "value": 3.99
                        },
                        "tax_total": {
                            "currency_code": "EUR",
                            "value": 275.9
                        },
                        "shipping_discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "handling": {
                            "currency_code": "EUR",
                            "value": 0
                        }
                    }
                },
                "shipping": {
                    "name": {
                        "full_name": "Max Huch"
                    },
                    "address": {
                        "address_line_1": "Ferdinand-Wallbrecht-Stra\u00dfe 4",
                        "address_line_2": "",
                        "admin_area_2": "Hannover",
                        "admin_area_1": "",
                        "postal_code": "30163",
                        "country_code": "DE"
                    }
                }
            }
        ]
    }
    2022-07-19T10:12:55+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Response on Create Order API ) ------------------->
    {
        "name": "UNPROCESSABLE_ENTITY",
        "details": [
            {
                "field": "\/purchase_units\/@reference_id=='default'\/amount\/breakdown\/item_total\/value",
                "value": "1452.1",
                "issue": "ITEM_TOTAL_MISMATCH",
                "description": "Should equal sum of (unit_amount * quantity) across all items for a given purchase_unit"
            }
        ],
        "message": "The requested action could not be performed, semantically incorrect, or failed business validation.",
        "debug_id": "e21ff32b9d374",
        "links": [
            {
                "href": "https:\/\/developer.paypal.com\/docs\/api\/orders\/v2\/#error-ITEM_TOTAL_MISMATCH",
                "rel": "information_link",
                "method": "GET"
            }
        ]
    }
    2022-07-19T10:13:07+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Create Order API ) ------------------->
    {
        "intent": "CAPTURE",
        "application_context": {
            "brand_name": "Meindl Fashion Sandbox",
            "locale": "de-DE",
            "landing_page": "LOGIN",
            "shipping_preference": "SET_PROVIDED_ADDRESS",
            "user_action": "PAY_NOW",
            "return_url": "https:\/\/stage.meindl-fashion.de\/wc-api\/Eh_PayPal_Express_Payment\/?c=order_details&p=https:\/\/stage.meindl-fashion.de\/kasse\/&intent=CAPTURE",
            "cancel_url": "https:\/\/stage.meindl-fashion.de\/kasse\/?cancel_express_checkout=cancel"
        },
        "purchase_units": [
            {
                "items": [
                    {
                        "name": "Rehlederhose Herren \"Wildwood Short\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 46",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 713.45
                        }
                    },
                    {
                        "name": "Rehlederhose Herren \"Montgomery Bermuda\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 48",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 738.66
                        }
                    }
                ],
                "amount": {
                    "currency_code": "EUR",
                    "value": 1731.99,
                    "breakdown": {
                        "item_total": {
                            "currency_code": "EUR",
                            "value": 1452.1
                        },
                        "shipping": {
                            "currency_code": "EUR",
                            "value": 3.99
                        },
                        "tax_total": {
                            "currency_code": "EUR",
                            "value": 275.9
                        },
                        "shipping_discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "handling": {
                            "currency_code": "EUR",
                            "value": 0
                        }
                    }
                },
                "shipping": {
                    "name": {
                        "full_name": "Max Huch"
                    },
                    "address": {
                        "address_line_1": "Ferdinand-Wallbrecht-Stra\u00dfe 4",
                        "address_line_2": "",
                        "admin_area_2": "Hannover",
                        "admin_area_1": "",
                        "postal_code": "30163",
                        "country_code": "DE"
                    }
                }
            }
        ]
    }
    2022-07-19T10:13:07+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Response on Create Order API ) ------------------->
    {
        "name": "UNPROCESSABLE_ENTITY",
        "details": [
            {
                "field": "\/purchase_units\/@reference_id=='default'\/amount\/breakdown\/item_total\/value",
                "value": "1452.1",
                "issue": "ITEM_TOTAL_MISMATCH",
                "description": "Should equal sum of (unit_amount * quantity) across all items for a given purchase_unit"
            }
        ],
        "message": "The requested action could not be performed, semantically incorrect, or failed business validation.",
        "debug_id": "d03dec5eaa746",
        "links": [
            {
                "href": "https:\/\/developer.paypal.com\/docs\/api\/orders\/v2\/#error-ITEM_TOTAL_MISMATCH",
                "rel": "information_link",
                "method": "GET"
            }
        ]
    }
    2022-07-19T10:15:08+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Create Order API ) ------------------->
    {
        "intent": "CAPTURE",
        "application_context": {
            "brand_name": "Meindl Fashion Sandbox",
            "locale": "de-DE",
            "landing_page": "LOGIN",
            "shipping_preference": "SET_PROVIDED_ADDRESS",
            "user_action": "PAY_NOW",
            "return_url": "https:\/\/stage.meindl-fashion.de\/wc-api\/Eh_PayPal_Express_Payment\/?c=order_details&p=https:\/\/stage.meindl-fashion.de\/kasse\/&intent=CAPTURE",
            "cancel_url": "https:\/\/stage.meindl-fashion.de\/kasse\/?cancel_express_checkout=cancel"
        },
        "purchase_units": [
            {
                "items": [
                    {
                        "name": "Rehlederhose Herren \"Wildwood Short\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 46",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 713.45
                        }
                    },
                    {
                        "name": "Rehlederhose Herren \"Montgomery Bermuda\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 48",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 738.66
                        }
                    },
                    {
                        "name": "Extra line item",
                        "description": "",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 0.01
                        }
                    }
                ],
                "amount": {
                    "currency_code": "EUR",
                    "value": 1731.99,
                    "breakdown": {
                        "item_total": {
                            "currency_code": "EUR",
                            "value": 1452.1
                        },
                        "shipping": {
                            "currency_code": "EUR",
                            "value": 3.99
                        },
                        "tax_total": {
                            "currency_code": "EUR",
                            "value": 275.9
                        },
                        "shipping_discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "handling": {
                            "currency_code": "EUR",
                            "value": 0
                        }
                    }
                },
                "shipping": {
                    "name": {
                        "full_name": "Max Huch"
                    },
                    "address": {
                        "address_line_1": "Ferdinand-Wallbrecht-Stra\u00dfe 4",
                        "address_line_2": "",
                        "admin_area_2": "Hannover",
                        "admin_area_1": "",
                        "postal_code": "30163",
                        "country_code": "DE"
                    }
                }
            }
        ]
    }
    2022-07-19T10:15:09+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Response on Create Order API ) ------------------->
    {
        "name": "UNPROCESSABLE_ENTITY",
        "details": [
            {
                "field": "\/purchase_units\/@reference_id=='default'\/amount\/breakdown\/item_total\/value",
                "value": "1452.1",
                "issue": "ITEM_TOTAL_MISMATCH",
                "description": "Should equal sum of (unit_amount * quantity) across all items for a given purchase_unit"
            }
        ],
        "message": "The requested action could not be performed, semantically incorrect, or failed business validation.",
        "debug_id": "89870afbf9f05",
        "links": [
            {
                "href": "https:\/\/developer.paypal.com\/docs\/api\/orders\/v2\/#error-ITEM_TOTAL_MISMATCH",
                "rel": "information_link",
                "method": "GET"
            }
        ]
    }
    2022-07-19T10:18:12+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Create Order API ) ------------------->
    {
        "intent": "CAPTURE",
        "application_context": {
            "brand_name": "Meindl Fashion Sandbox",
            "locale": "de-DE",
            "landing_page": "LOGIN",
            "shipping_preference": "SET_PROVIDED_ADDRESS",
            "user_action": "PAY_NOW",
            "return_url": "https:\/\/stage.meindl-fashion.de\/wc-api\/Eh_PayPal_Express_Payment\/?c=order_details&p=https:\/\/stage.meindl-fashion.de\/kasse\/&intent=CAPTURE",
            "cancel_url": "https:\/\/stage.meindl-fashion.de\/kasse\/?cancel_express_checkout=cancel"
        },
        "purchase_units": [
            {
                "items": [
                    {
                        "name": "Rehlederhose Herren \"Wildwood Short\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 46",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 713.45
                        }
                    },
                    {
                        "name": "Rehlederhose Herren \"Montgomery Bermuda\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 48",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 738.71
                        }
                    },
                    {
                        "name": "Extra line item",
                        "description": "",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 0.01
                        }
                    }
                ],
                "amount": {
                    "currency_code": "EUR",
                    "value": 1732.05,
                    "breakdown": {
                        "item_total": {
                            "currency_code": "EUR",
                            "value": 1452.15
                        },
                        "shipping": {
                            "currency_code": "EUR",
                            "value": 3.99
                        },
                        "tax_total": {
                            "currency_code": "EUR",
                            "value": 275.91
                        },
                        "shipping_discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "handling": {
                            "currency_code": "EUR",
                            "value": 0
                        }
                    }
                },
                "shipping": {
                    "name": {
                        "full_name": "Max Huch"
                    },
                    "address": {
                        "address_line_1": "Ferdinand-Wallbrecht-Stra\u00dfe 4",
                        "address_line_2": "",
                        "admin_area_2": "Hannover",
                        "admin_area_1": "",
                        "postal_code": "30163",
                        "country_code": "DE"
                    }
                }
            }
        ]
    }
    2022-07-19T10:18:12+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Response on Create Order API ) ------------------->
    {
        "name": "UNPROCESSABLE_ENTITY",
        "details": [
            {
                "field": "\/purchase_units\/@reference_id=='default'\/amount\/breakdown\/item_total\/value",
                "value": "1452.15",
                "issue": "ITEM_TOTAL_MISMATCH",
                "description": "Should equal sum of (unit_amount * quantity) across all items for a given purchase_unit"
            }
        ],
        "message": "The requested action could not be performed, semantically incorrect, or failed business validation.",
        "debug_id": "eb52c6766a7d",
        "links": [
            {
                "href": "https:\/\/developer.paypal.com\/docs\/api\/orders\/v2\/#error-ITEM_TOTAL_MISMATCH",
                "rel": "information_link",
                "method": "GET"
            }
        ]
    }
    2022-07-19T10:19:27+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Create Order API ) ------------------->
    {
        "intent": "CAPTURE",
        "application_context": {
            "brand_name": "Meindl Fashion Sandbox",
            "locale": "de-DE",
            "landing_page": "LOGIN",
            "shipping_preference": "SET_PROVIDED_ADDRESS",
            "user_action": "PAY_NOW",
            "return_url": "https:\/\/stage.meindl-fashion.de\/wc-api\/Eh_PayPal_Express_Payment\/?c=order_details&p=https:\/\/stage.meindl-fashion.de\/kasse\/&intent=CAPTURE",
            "cancel_url": "https:\/\/stage.meindl-fashion.de\/kasse\/?cancel_express_checkout=cancel"
        },
        "purchase_units": [
            {
                "items": [
                    {
                        "name": "Rehlederhose Herren \"Montgomery Bermuda\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 48",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 738.71
                        }
                    }
                ],
                "amount": {
                    "currency_code": "EUR",
                    "value": 883.05,
                    "breakdown": {
                        "item_total": {
                            "currency_code": "EUR",
                            "value": 738.71
                        },
                        "shipping": {
                            "currency_code": "EUR",
                            "value": 3.99
                        },
                        "tax_total": {
                            "currency_code": "EUR",
                            "value": 140.35
                        },
                        "shipping_discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "handling": {
                            "currency_code": "EUR",
                            "value": 0
                        }
                    }
                },
                "shipping": {
                    "name": {
                        "full_name": "Max Huch"
                    },
                    "address": {
                        "address_line_1": "Ferdinand-Wallbrecht-Stra\u00dfe 4",
                        "address_line_2": "",
                        "admin_area_2": "Hannover",
                        "admin_area_1": "",
                        "postal_code": "30163",
                        "country_code": "DE"
                    }
                }
            }
        ]
    }
    2022-07-19T10:19:28+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Response on Create Order API ) ------------------->
    {
        "id": "1Y714516KB7509133",
        "status": "CREATED",
        "links": [
            {
                "href": "https:\/\/api.sandbox.paypal.com\/v2\/checkout\/orders\/1Y714516KB7509133",
                "rel": "self",
                "method": "GET"
            },
            {
                "href": "https:\/\/www.sandbox.paypal.com\/checkoutnow?token=1Y714516KB7509133",
                "rel": "approve",
                "method": "GET"
            },
            {
                "href": "https:\/\/api.sandbox.paypal.com\/v2\/checkout\/orders\/1Y714516KB7509133",
                "rel": "update",
                "method": "PATCH"
            },
            {
                "href": "https:\/\/api.sandbox.paypal.com\/v2\/checkout\/orders\/1Y714516KB7509133\/capture",
                "rel": "capture",
                "method": "POST"
            }
        ]
    }
    2022-07-19T10:20:42+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Create Order API ) ------------------->
    {
        "intent": "CAPTURE",
        "application_context": {
            "brand_name": "Meindl Fashion Sandbox",
            "locale": "de-DE",
            "landing_page": "LOGIN",
            "shipping_preference": "SET_PROVIDED_ADDRESS",
            "user_action": "PAY_NOW",
            "return_url": "https:\/\/stage.meindl-fashion.de\/wc-api\/Eh_PayPal_Express_Payment\/?c=order_details&p=https:\/\/stage.meindl-fashion.de\/kasse\/&intent=CAPTURE",
            "cancel_url": "https:\/\/stage.meindl-fashion.de\/kasse\/?cancel_express_checkout=cancel"
        },
        "purchase_units": [
            {
                "items": [
                    {
                        "name": "Rehlederhose Herren \"Montgomery Bermuda\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 48",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 1579.04
                        }
                    }
                ],
                "amount": {
                    "currency_code": "EUR",
                    "value": 1883.05,
                    "breakdown": {
                        "item_total": {
                            "currency_code": "EUR",
                            "value": 1579.04
                        },
                        "shipping": {
                            "currency_code": "EUR",
                            "value": 3.99
                        },
                        "tax_total": {
                            "currency_code": "EUR",
                            "value": 300.02
                        },
                        "shipping_discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "handling": {
                            "currency_code": "EUR",
                            "value": 0
                        }
                    }
                },
                "shipping": {
                    "name": {
                        "full_name": "Max Huch"
                    },
                    "address": {
                        "address_line_1": "Ferdinand-Wallbrecht-Stra\u00dfe 4",
                        "address_line_2": "",
                        "admin_area_2": "Hannover",
                        "admin_area_1": "",
                        "postal_code": "30163",
                        "country_code": "DE"
                    }
                }
            }
        ]
    }
    2022-07-19T10:20:43+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Response on Create Order API ) ------------------->
    {
        "id": "3U310422RH346135N",
        "status": "CREATED",
        "links": [
            {
                "href": "https:\/\/api.sandbox.paypal.com\/v2\/checkout\/orders\/3U310422RH346135N",
                "rel": "self",
                "method": "GET"
            },
            {
                "href": "https:\/\/www.sandbox.paypal.com\/checkoutnow?token=3U310422RH346135N",
                "rel": "approve",
                "method": "GET"
            },
            {
                "href": "https:\/\/api.sandbox.paypal.com\/v2\/checkout\/orders\/3U310422RH346135N",
                "rel": "update",
                "method": "PATCH"
            },
            {
                "href": "https:\/\/api.sandbox.paypal.com\/v2\/checkout\/orders\/3U310422RH346135N\/capture",
                "rel": "capture",
                "method": "POST"
            }
        ]
    }
    2022-07-19T10:24:16+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Create Order API ) ------------------->
    {
        "intent": "CAPTURE",
        "application_context": {
            "brand_name": "Meindl Fashion Sandbox",
            "locale": "de-DE",
            "landing_page": "LOGIN",
            "shipping_preference": "SET_PROVIDED_ADDRESS",
            "user_action": "PAY_NOW",
            "return_url": "https:\/\/stage.meindl-fashion.de\/wc-api\/Eh_PayPal_Express_Payment\/?c=order_details&p=https:\/\/stage.meindl-fashion.de\/kasse\/&intent=CAPTURE",
            "cancel_url": "https:\/\/stage.meindl-fashion.de\/kasse\/?cancel_express_checkout=cancel"
        },
        "purchase_units": [
            {
                "items": [
                    {
                        "name": "Rehlederhose Herren Montgomery Bermuda - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 48",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 1579.04
                        }
                    },
                    {
                        "name": "Rehlederhose Herren \"Wildwood Short\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 46",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 713.45
                        }
                    }
                ],
                "amount": {
                    "currency_code": "EUR",
                    "value": 2732.05,
                    "breakdown": {
                        "item_total": {
                            "currency_code": "EUR",
                            "value": 2292.49
                        },
                        "shipping": {
                            "currency_code": "EUR",
                            "value": 3.99
                        },
                        "tax_total": {
                            "currency_code": "EUR",
                            "value": 435.57
                        },
                        "shipping_discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "handling": {
                            "currency_code": "EUR",
                            "value": 0
                        }
                    }
                },
                "shipping": {
                    "name": {
                        "full_name": "Max Huch"
                    },
                    "address": {
                        "address_line_1": "Ferdinand-Wallbrecht-Stra\u00dfe 4",
                        "address_line_2": "",
                        "admin_area_2": "Hannover",
                        "admin_area_1": "",
                        "postal_code": "30163",
                        "country_code": "DE"
                    }
                }
            }
        ]
    }
    2022-07-19T10:24:16+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Response on Create Order API ) ------------------->
    {
        "id": "99444543JP1353322",
        "status": "CREATED",
        "links": [
            {
                "href": "https:\/\/api.sandbox.paypal.com\/v2\/checkout\/orders\/99444543JP1353322",
                "rel": "self",
                "method": "GET"
            },
            {
                "href": "https:\/\/www.sandbox.paypal.com\/checkoutnow?token=99444543JP1353322",
                "rel": "approve",
                "method": "GET"
            },
            {
                "href": "https:\/\/api.sandbox.paypal.com\/v2\/checkout\/orders\/99444543JP1353322",
                "rel": "update",
                "method": "PATCH"
            },
            {
                "href": "https:\/\/api.sandbox.paypal.com\/v2\/checkout\/orders\/99444543JP1353322\/capture",
                "rel": "capture",
                "method": "POST"
            }
        ]
    }
    2022-07-19T10:24:35+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Create Order API ) ------------------->
    {
        "intent": "CAPTURE",
        "application_context": {
            "brand_name": "Meindl Fashion Sandbox",
            "locale": "de-DE",
            "landing_page": "LOGIN",
            "shipping_preference": "SET_PROVIDED_ADDRESS",
            "user_action": "PAY_NOW",
            "return_url": "https:\/\/stage.meindl-fashion.de\/wc-api\/Eh_PayPal_Express_Payment\/?c=order_details&p=https:\/\/stage.meindl-fashion.de\/kasse\/&intent=CAPTURE",
            "cancel_url": "https:\/\/stage.meindl-fashion.de\/kasse\/?cancel_express_checkout=cancel"
        },
        "purchase_units": [
            {
                "items": [
                    {
                        "name": "Rehlederhose Herren \"Montgomery Bermuda\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 48",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 1579.04
                        }
                    },
                    {
                        "name": "Rehlederhose Herren \"Wildwood Short\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 46",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 713.45
                        }
                    }
                ],
                "amount": {
                    "currency_code": "EUR",
                    "value": 2732.05,
                    "breakdown": {
                        "item_total": {
                            "currency_code": "EUR",
                            "value": 2292.49
                        },
                        "shipping": {
                            "currency_code": "EUR",
                            "value": 3.99
                        },
                        "tax_total": {
                            "currency_code": "EUR",
                            "value": 435.57
                        },
                        "shipping_discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "handling": {
                            "currency_code": "EUR",
                            "value": 0
                        }
                    }
                },
                "shipping": {
                    "name": {
                        "full_name": "Max Huch"
                    },
                    "address": {
                        "address_line_1": "Ferdinand-Wallbrecht-Stra\u00dfe 4",
                        "address_line_2": "",
                        "admin_area_2": "Hannover",
                        "admin_area_1": "",
                        "postal_code": "30163",
                        "country_code": "DE"
                    }
                }
            }
        ]
    }
    2022-07-19T10:24:36+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Response on Create Order API ) ------------------->
    {
        "id": "39A608834G9592456",
        "status": "CREATED",
        "links": [
            {
                "href": "https:\/\/api.sandbox.paypal.com\/v2\/checkout\/orders\/39A608834G9592456",
                "rel": "self",
                "method": "GET"
            },
            {
                "href": "https:\/\/www.sandbox.paypal.com\/checkoutnow?token=39A608834G9592456",
                "rel": "approve",
                "method": "GET"
            },
            {
                "href": "https:\/\/api.sandbox.paypal.com\/v2\/checkout\/orders\/39A608834G9592456",
                "rel": "update",
                "method": "PATCH"
            },
            {
                "href": "https:\/\/api.sandbox.paypal.com\/v2\/checkout\/orders\/39A608834G9592456\/capture",
                "rel": "capture",
                "method": "POST"
            }
        ]
    }
    2022-07-19T10:28:47+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Create Order API ) ------------------->
    {
        "intent": "CAPTURE",
        "application_context": {
            "brand_name": "Meindl Fashion Sandbox",
            "locale": "de-DE",
            "landing_page": "LOGIN",
            "shipping_preference": "SET_PROVIDED_ADDRESS",
            "user_action": "PAY_NOW",
            "return_url": "https:\/\/stage.meindl-fashion.de\/wc-api\/Eh_PayPal_Express_Payment\/?c=order_details&p=https:\/\/stage.meindl-fashion.de\/kasse\/&intent=CAPTURE",
            "cancel_url": "https:\/\/stage.meindl-fashion.de\/kasse\/?cancel_express_checkout=cancel"
        },
        "purchase_units": [
            {
                "items": [
                    {
                        "name": "Rehlederhose Herren \"Montgomery Bermuda\" - Fb. ahorn x 2",
                        "description": "Gr\u00f6\u00dfe : 48",
                        "quantity": 2,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 1579.04
                        }
                    },
                    {
                        "name": "Rehlederhose Herren \"Wildwood Short\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 46",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 713.45
                        }
                    }
                ],
                "amount": {
                    "currency_code": "EUR",
                    "value": 4611.11,
                    "breakdown": {
                        "item_total": {
                            "currency_code": "EUR",
                            "value": 3871.53
                        },
                        "shipping": {
                            "currency_code": "EUR",
                            "value": 3.99
                        },
                        "tax_total": {
                            "currency_code": "EUR",
                            "value": 735.59
                        },
                        "shipping_discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "handling": {
                            "currency_code": "EUR",
                            "value": 0
                        }
                    }
                },
                "shipping": {
                    "name": {
                        "full_name": "Max Huch"
                    },
                    "address": {
                        "address_line_1": "Ferdinand-Wallbrecht-Stra\u00dfe 4",
                        "address_line_2": "",
                        "admin_area_2": "Hannover",
                        "admin_area_1": "",
                        "postal_code": "30163",
                        "country_code": "DE"
                    }
                }
            }
        ]
    }
    2022-07-19T10:28:48+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Response on Create Order API ) ------------------->
    {
        "id": "3AB14082J63790028",
        "status": "CREATED",
        "links": [
            {
                "href": "https:\/\/api.sandbox.paypal.com\/v2\/checkout\/orders\/3AB14082J63790028",
                "rel": "self",
                "method": "GET"
            },
            {
                "href": "https:\/\/www.sandbox.paypal.com\/checkoutnow?token=3AB14082J63790028",
                "rel": "approve",
                "method": "GET"
            },
            {
                "href": "https:\/\/api.sandbox.paypal.com\/v2\/checkout\/orders\/3AB14082J63790028",
                "rel": "update",
                "method": "PATCH"
            },
            {
                "href": "https:\/\/api.sandbox.paypal.com\/v2\/checkout\/orders\/3AB14082J63790028\/capture",
                "rel": "capture",
                "method": "POST"
            }
        ]
    }
    2022-07-19T10:29:04+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Create Order API ) ------------------->
    {
        "intent": "CAPTURE",
        "application_context": {
            "brand_name": "Meindl Fashion Sandbox",
            "locale": "de-DE",
            "landing_page": "LOGIN",
            "shipping_preference": "SET_PROVIDED_ADDRESS",
            "user_action": "PAY_NOW",
            "return_url": "https:\/\/stage.meindl-fashion.de\/wc-api\/Eh_PayPal_Express_Payment\/?c=order_details&p=https:\/\/stage.meindl-fashion.de\/kasse\/&intent=CAPTURE",
            "cancel_url": "https:\/\/stage.meindl-fashion.de\/kasse\/?cancel_express_checkout=cancel"
        },
        "purchase_units": [
            {
                "items": [
                    {
                        "name": "Rehlederhose Herren \"Montgomery Bermuda\" - Fb. ahorn x 2",
                        "description": "Gr\u00f6\u00dfe : 48",
                        "quantity": 2,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 1579.04
                        }
                    }
                ],
                "amount": {
                    "currency_code": "EUR",
                    "value": 3762.11,
                    "breakdown": {
                        "item_total": {
                            "currency_code": "EUR",
                            "value": 3158.08
                        },
                        "shipping": {
                            "currency_code": "EUR",
                            "value": 3.99
                        },
                        "tax_total": {
                            "currency_code": "EUR",
                            "value": 600.04
                        },
                        "shipping_discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "handling": {
                            "currency_code": "EUR",
                            "value": 0
                        }
                    }
                },
                "shipping": {
                    "name": {
                        "full_name": "Max Huch"
                    },
                    "address": {
                        "address_line_1": "Ferdinand-Wallbrecht-Stra\u00dfe 4",
                        "address_line_2": "",
                        "admin_area_2": "Hannover",
                        "admin_area_1": "",
                        "postal_code": "30163",
                        "country_code": "DE"
                    }
                }
            }
        ]
    }
    2022-07-19T10:29:04+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Response on Create Order API ) ------------------->
    {
        "id": "7VF92926S9961623F",
        "status": "CREATED",
        "links": [
            {
                "href": "https:\/\/api.sandbox.paypal.com\/v2\/checkout\/orders\/7VF92926S9961623F",
                "rel": "self",
                "method": "GET"
            },
            {
                "href": "https:\/\/www.sandbox.paypal.com\/checkoutnow?token=7VF92926S9961623F",
                "rel": "approve",
                "method": "GET"
            },
            {
                "href": "https:\/\/api.sandbox.paypal.com\/v2\/checkout\/orders\/7VF92926S9961623F",
                "rel": "update",
                "method": "PATCH"
            },
            {
                "href": "https:\/\/api.sandbox.paypal.com\/v2\/checkout\/orders\/7VF92926S9961623F\/capture",
                "rel": "capture",
                "method": "POST"
            }
        ]
    }
    2022-07-19T10:29:50+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Create Order API ) ------------------->
    {
        "intent": "CAPTURE",
        "application_context": {
            "brand_name": "Meindl Fashion Sandbox",
            "locale": "de-DE",
            "landing_page": "LOGIN",
            "shipping_preference": "SET_PROVIDED_ADDRESS",
            "user_action": "PAY_NOW",
            "return_url": "https:\/\/stage.meindl-fashion.de\/wc-api\/Eh_PayPal_Express_Payment\/?c=order_details&p=https:\/\/stage.meindl-fashion.de\/kasse\/&intent=CAPTURE",
            "cancel_url": "https:\/\/stage.meindl-fashion.de\/kasse\/?cancel_express_checkout=cancel"
        },
        "purchase_units": [
            {
                "items": [
                    {
                        "name": "Rehlederhose Herren \"Montgomery Bermuda\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 48",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 1579.04
                        }
                    },
                    {
                        "name": "Rehlederhose Herren \"Wildwood Short\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 54",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 713.45
                        }
                    }
                ],
                "amount": {
                    "currency_code": "EUR",
                    "value": 2732.05,
                    "breakdown": {
                        "item_total": {
                            "currency_code": "EUR",
                            "value": 2292.49
                        },
                        "shipping": {
                            "currency_code": "EUR",
                            "value": 3.99
                        },
                        "tax_total": {
                            "currency_code": "EUR",
                            "value": 435.57
                        },
                        "shipping_discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "handling": {
                            "currency_code": "EUR",
                            "value": 0
                        }
                    }
                },
                "shipping": {
                    "name": {
                        "full_name": "Max Huch"
                    },
                    "address": {
                        "address_line_1": "Ferdinand-Wallbrecht-Stra\u00dfe 4",
                        "address_line_2": "",
                        "admin_area_2": "Hannover",
                        "admin_area_1": "",
                        "postal_code": "30163",
                        "country_code": "DE"
                    }
                }
            }
        ]
    }
    2022-07-19T10:29:51+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Response on Create Order API ) ------------------->
    {
        "id": "48K90900CB9022544",
        "status": "CREATED",
        "links": [
            {
                "href": "https:\/\/api.sandbox.paypal.com\/v2\/checkout\/orders\/48K90900CB9022544",
                "rel": "self",
                "method": "GET"
            },
            {
                "href": "https:\/\/www.sandbox.paypal.com\/checkoutnow?token=48K90900CB9022544",
                "rel": "approve",
                "method": "GET"
            },
            {
                "href": "https:\/\/api.sandbox.paypal.com\/v2\/checkout\/orders\/48K90900CB9022544",
                "rel": "update",
                "method": "PATCH"
            },
            {
                "href": "https:\/\/api.sandbox.paypal.com\/v2\/checkout\/orders\/48K90900CB9022544\/capture",
                "rel": "capture",
                "method": "POST"
            }
        ]
    }
    2022-07-19T10:30:13+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Create Order API ) ------------------->
    {
        "intent": "CAPTURE",
        "application_context": {
            "brand_name": "Meindl Fashion Sandbox",
            "locale": "de-DE",
            "landing_page": "LOGIN",
            "shipping_preference": "SET_PROVIDED_ADDRESS",
            "user_action": "PAY_NOW",
            "return_url": "https:\/\/stage.meindl-fashion.de\/wc-api\/Eh_PayPal_Express_Payment\/?c=order_details&p=https:\/\/stage.meindl-fashion.de\/kasse\/&intent=CAPTURE",
            "cancel_url": "https:\/\/stage.meindl-fashion.de\/kasse\/?cancel_express_checkout=cancel"
        },
        "purchase_units": [
            {
                "items": [
                    {
                        "name": "Rehlederhose Herren \"Montgomery Bermuda\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 48",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 738.71
                        }
                    },
                    {
                        "name": "Rehlederhose Herren \"Wildwood Short\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 54",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 713.45
                        }
                    },
                    {
                        "name": "Extra line item",
                        "description": "",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 0.01
                        }
                    }
                ],
                "amount": {
                    "currency_code": "EUR",
                    "value": 1732.05,
                    "breakdown": {
                        "item_total": {
                            "currency_code": "EUR",
                            "value": 1452.15
                        },
                        "shipping": {
                            "currency_code": "EUR",
                            "value": 3.99
                        },
                        "tax_total": {
                            "currency_code": "EUR",
                            "value": 275.91
                        },
                        "shipping_discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "handling": {
                            "currency_code": "EUR",
                            "value": 0
                        }
                    }
                },
                "shipping": {
                    "name": {
                        "full_name": "Max Huch"
                    },
                    "address": {
                        "address_line_1": "Ferdinand-Wallbrecht-Stra\u00dfe 4",
                        "address_line_2": "",
                        "admin_area_2": "Hannover",
                        "admin_area_1": "",
                        "postal_code": "30163",
                        "country_code": "DE"
                    }
                }
            }
        ]
    }
    2022-07-19T10:30:13+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Response on Create Order API ) ------------------->
    {
        "name": "UNPROCESSABLE_ENTITY",
        "details": [
            {
                "field": "\/purchase_units\/@reference_id=='default'\/amount\/breakdown\/item_total\/value",
                "value": "1452.15",
                "issue": "ITEM_TOTAL_MISMATCH",
                "description": "Should equal sum of (unit_amount * quantity) across all items for a given purchase_unit"
            }
        ],
        "message": "The requested action could not be performed, semantically incorrect, or failed business validation.",
        "debug_id": "4ed7ada97f4bd",
        "links": [
            {
                "href": "https:\/\/developer.paypal.com\/docs\/api\/orders\/v2\/#error-ITEM_TOTAL_MISMATCH",
                "rel": "information_link",
                "method": "GET"
            }
        ]
    }
    2022-07-19T10:31:07+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Create Order API ) ------------------->
    {
        "intent": "CAPTURE",
        "application_context": {
            "brand_name": "Meindl Fashion Sandbox",
            "locale": "de-DE",
            "landing_page": "LOGIN",
            "shipping_preference": "SET_PROVIDED_ADDRESS",
            "user_action": "PAY_NOW",
            "return_url": "https:\/\/stage.meindl-fashion.de\/wc-api\/Eh_PayPal_Express_Payment\/?c=order_details&p=https:\/\/stage.meindl-fashion.de\/kasse\/&intent=CAPTURE",
            "cancel_url": "https:\/\/stage.meindl-fashion.de\/kasse\/?cancel_express_checkout=cancel"
        },
        "purchase_units": [
            {
                "items": [
                    {
                        "name": "Rehlederhose Herren \"Montgomery Bermuda\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 48",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 1579.04
                        }
                    },
                    {
                        "name": "Rehlederhose Herren \"Wildwood Short\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 54",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 713.45
                        }
                    }
                ],
                "amount": {
                    "currency_code": "EUR",
                    "value": 2732.05,
                    "breakdown": {
                        "item_total": {
                            "currency_code": "EUR",
                            "value": 2292.49
                        },
                        "shipping": {
                            "currency_code": "EUR",
                            "value": 3.99
                        },
                        "tax_total": {
                            "currency_code": "EUR",
                            "value": 435.57
                        },
                        "shipping_discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "handling": {
                            "currency_code": "EUR",
                            "value": 0
                        }
                    }
                },
                "shipping": {
                    "name": {
                        "full_name": "Max Huch"
                    },
                    "address": {
                        "address_line_1": "Ferdinand-Wallbrecht-Stra\u00dfe 4",
                        "address_line_2": "",
                        "admin_area_2": "Hannover",
                        "admin_area_1": "",
                        "postal_code": "30163",
                        "country_code": "DE"
                    }
                }
            }
        ]
    }
    2022-07-19T10:31:08+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Response on Create Order API ) ------------------->
    {
        "id": "1C146689843333605",
        "status": "CREATED",
        "links": [
            {
                "href": "https:\/\/api.sandbox.paypal.com\/v2\/checkout\/orders\/1C146689843333605",
                "rel": "self",
                "method": "GET"
            },
            {
                "href": "https:\/\/www.sandbox.paypal.com\/checkoutnow?token=1C146689843333605",
                "rel": "approve",
                "method": "GET"
            },
            {
                "href": "https:\/\/api.sandbox.paypal.com\/v2\/checkout\/orders\/1C146689843333605",
                "rel": "update",
                "method": "PATCH"
            },
            {
                "href": "https:\/\/api.sandbox.paypal.com\/v2\/checkout\/orders\/1C146689843333605\/capture",
                "rel": "capture",
                "method": "POST"
            }
        ]
    }
    2022-07-19T10:37:13+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Create Order API ) ------------------->
    {
        "intent": "CAPTURE",
        "application_context": {
            "brand_name": "Meindl Fashion Sandbox",
            "locale": "de-DE",
            "landing_page": "LOGIN",
            "shipping_preference": "SET_PROVIDED_ADDRESS",
            "user_action": "PAY_NOW",
            "return_url": "https:\/\/stage.meindl-fashion.de\/wc-api\/Eh_PayPal_Express_Payment\/?c=order_details&p=https:\/\/stage.meindl-fashion.de\/kasse\/&intent=CAPTURE",
            "cancel_url": "https:\/\/stage.meindl-fashion.de\/kasse\/?cancel_express_checkout=cancel"
        },
        "purchase_units": [
            {
                "items": [
                    {
                        "name": "Rehlederhose Herren \"Montgomery Bermuda\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 48",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 738.71
                        }
                    },
                    {
                        "name": "Rehlederhose Herren \"Wildwood Short\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 54",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 713.45
                        }
                    }
                ],
                "amount": {
                    "currency_code": "EUR",
                    "value": 1732.05,
                    "breakdown": {
                        "item_total": {
                            "currency_code": "EUR",
                            "value": 1452.15
                        },
                        "shipping": {
                            "currency_code": "EUR",
                            "value": 3.99
                        },
                        "tax_total": {
                            "currency_code": "EUR",
                            "value": 275.91
                        },
                        "shipping_discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "handling": {
                            "currency_code": "EUR",
                            "value": 0
                        }
                    }
                },
                "shipping": {
                    "name": {
                        "full_name": "Max Huch"
                    },
                    "address": {
                        "address_line_1": "Ferdinand-Wallbrecht-Stra\u00dfe 4",
                        "address_line_2": "",
                        "admin_area_2": "Hannover",
                        "admin_area_1": "",
                        "postal_code": "30163",
                        "country_code": "DE"
                    }
                }
            }
        ]
    }
    2022-07-19T10:37:13+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Response on Create Order API ) ------------------->
    {
        "name": "UNPROCESSABLE_ENTITY",
        "details": [
            {
                "field": "\/purchase_units\/@reference_id=='default'\/amount\/breakdown\/item_total\/value",
                "value": "1452.15",
                "issue": "ITEM_TOTAL_MISMATCH",
                "description": "Should equal sum of (unit_amount * quantity) across all items for a given purchase_unit"
            }
        ],
        "message": "The requested action could not be performed, semantically incorrect, or failed business validation.",
        "debug_id": "3ee49d3529467",
        "links": [
            {
                "href": "https:\/\/developer.paypal.com\/docs\/api\/orders\/v2\/#error-ITEM_TOTAL_MISMATCH",
                "rel": "information_link",
                "method": "GET"
            }
        ]
    }
    2022-07-19T10:38:08+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Create Order API ) ------------------->
    {
        "intent": "CAPTURE",
        "application_context": {
            "brand_name": "Meindl Fashion Sandbox",
            "locale": "de-DE",
            "landing_page": "LOGIN",
            "shipping_preference": "SET_PROVIDED_ADDRESS",
            "user_action": "PAY_NOW",
            "return_url": "https:\/\/stage.meindl-fashion.de\/wc-api\/Eh_PayPal_Express_Payment\/?c=order_details&p=https:\/\/stage.meindl-fashion.de\/kasse\/&intent=CAPTURE",
            "cancel_url": "https:\/\/stage.meindl-fashion.de\/kasse\/?cancel_express_checkout=cancel"
        },
        "purchase_units": [
            {
                "items": [
                    {
                        "name": "Rehlederhose Herren \"Montgomery Bermuda\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 48",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 738.71
                        }
                    },
                    {
                        "name": "Rehlederhose Herren \"Wildwood Short\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 54",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 713.45
                        }
                    },
                    {
                        "name": "Extra line item",
                        "description": "",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 0.06
                        }
                    }
                ],
                "amount": {
                    "currency_code": "EUR",
                    "value": 1732.05,
                    "breakdown": {
                        "item_total": {
                            "currency_code": "EUR",
                            "value": 1452.15
                        },
                        "shipping": {
                            "currency_code": "EUR",
                            "value": 3.99
                        },
                        "tax_total": {
                            "currency_code": "EUR",
                            "value": 275.91
                        },
                        "shipping_discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "handling": {
                            "currency_code": "EUR",
                            "value": 0
                        }
                    }
                },
                "shipping": {
                    "name": {
                        "full_name": "Max Huch"
                    },
                    "address": {
                        "address_line_1": "Ferdinand-Wallbrecht-Stra\u00dfe 4",
                        "address_line_2": "",
                        "admin_area_2": "Hannover",
                        "admin_area_1": "",
                        "postal_code": "30163",
                        "country_code": "DE"
                    }
                }
            }
        ]
    }
    2022-07-19T10:38:08+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Response on Create Order API ) ------------------->
    {
        "name": "UNPROCESSABLE_ENTITY",
        "details": [
            {
                "field": "\/purchase_units\/@reference_id=='default'\/amount\/breakdown\/item_total\/value",
                "value": "1452.15",
                "issue": "ITEM_TOTAL_MISMATCH",
                "description": "Should equal sum of (unit_amount * quantity) across all items for a given purchase_unit"
            }
        ],
        "message": "The requested action could not be performed, semantically incorrect, or failed business validation.",
        "debug_id": "a6d99c26130bc",
        "links": [
            {
                "href": "https:\/\/developer.paypal.com\/docs\/api\/orders\/v2\/#error-ITEM_TOTAL_MISMATCH",
                "rel": "information_link",
                "method": "GET"
            }
        ]
    }
    2022-07-19T10:39:15+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Create Order API ) ------------------->
    {
        "intent": "CAPTURE",
        "application_context": {
            "brand_name": "Meindl Fashion Sandbox",
            "locale": "de-DE",
            "landing_page": "LOGIN",
            "shipping_preference": "SET_PROVIDED_ADDRESS",
            "user_action": "PAY_NOW",
            "return_url": "https:\/\/stage.meindl-fashion.de\/wc-api\/Eh_PayPal_Express_Payment\/?c=order_details&p=https:\/\/stage.meindl-fashion.de\/kasse\/&intent=CAPTURE",
            "cancel_url": "https:\/\/stage.meindl-fashion.de\/kasse\/?cancel_express_checkout=cancel"
        },
        "purchase_units": [
            {
                "items": [
                    {
                        "name": "Rehlederhose Herren \"Montgomery Bermuda\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 48",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 738.71
                        }
                    },
                    {
                        "name": "Rehlederhose Herren \"Wildwood Short\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 54",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 713.45
                        }
                    },
                    {
                        "name": "Extra line item",
                        "description": "",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 0.01
                        }
                    }
                ],
                "amount": {
                    "currency_code": "EUR",
                    "value": 1732.05,
                    "breakdown": {
                        "item_total": {
                            "currency_code": "EUR",
                            "value": 1452.15
                        },
                        "shipping": {
                            "currency_code": "EUR",
                            "value": 3.99
                        },
                        "tax_total": {
                            "currency_code": "EUR",
                            "value": 275.91
                        },
                        "shipping_discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "handling": {
                            "currency_code": "EUR",
                            "value": 0
                        }
                    }
                },
                "shipping": {
                    "name": {
                        "full_name": "Max Huch"
                    },
                    "address": {
                        "address_line_1": "Ferdinand-Wallbrecht-Stra\u00dfe 4",
                        "address_line_2": "",
                        "admin_area_2": "Hannover",
                        "admin_area_1": "",
                        "postal_code": "30163",
                        "country_code": "DE"
                    }
                }
            }
        ]
    }
    2022-07-19T10:39:16+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Response on Create Order API ) ------------------->
    {
        "name": "UNPROCESSABLE_ENTITY",
        "details": [
            {
                "field": "\/purchase_units\/@reference_id=='default'\/amount\/breakdown\/item_total\/value",
                "value": "1452.15",
                "issue": "ITEM_TOTAL_MISMATCH",
                "description": "Should equal sum of (unit_amount * quantity) across all items for a given purchase_unit"
            }
        ],
        "message": "The requested action could not be performed, semantically incorrect, or failed business validation.",
        "debug_id": "18ac9df70e309",
        "links": [
            {
                "href": "https:\/\/developer.paypal.com\/docs\/api\/orders\/v2\/#error-ITEM_TOTAL_MISMATCH",
                "rel": "information_link",
                "method": "GET"
            }
        ]
    }
    2022-07-19T10:40:07+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Create Order API ) ------------------->
    {
        "intent": "CAPTURE",
        "application_context": {
            "brand_name": "Meindl Fashion Sandbox",
            "locale": "de-DE",
            "landing_page": "LOGIN",
            "shipping_preference": "SET_PROVIDED_ADDRESS",
            "user_action": "PAY_NOW",
            "return_url": "https:\/\/stage.meindl-fashion.de\/wc-api\/Eh_PayPal_Express_Payment\/?c=order_details&p=https:\/\/stage.meindl-fashion.de\/kasse\/&intent=CAPTURE",
            "cancel_url": "https:\/\/stage.meindl-fashion.de\/kasse\/?cancel_express_checkout=cancel"
        },
        "purchase_units": [
            {
                "items": [
                    {
                        "name": "Rehlederhose Herren \"Montgomery Bermuda\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 48",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 738.71
                        }
                    },
                    {
                        "name": "Rehlederhose Herren \"Wildwood Short\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 54",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 713.45
                        }
                    },
                    {
                        "name": "Extra line item",
                        "description": "",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 0.06
                        }
                    }
                ],
                "amount": {
                    "currency_code": "EUR",
                    "value": 1732.05,
                    "breakdown": {
                        "item_total": {
                            "currency_code": "EUR",
                            "value": 1452.15
                        },
                        "shipping": {
                            "currency_code": "EUR",
                            "value": 3.99
                        },
                        "tax_total": {
                            "currency_code": "EUR",
                            "value": 275.91
                        },
                        "shipping_discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "handling": {
                            "currency_code": "EUR",
                            "value": 0
                        }
                    }
                },
                "shipping": {
                    "name": {
                        "full_name": "Max Huch"
                    },
                    "address": {
                        "address_line_1": "Ferdinand-Wallbrecht-Stra\u00dfe 4",
                        "address_line_2": "",
                        "admin_area_2": "Hannover",
                        "admin_area_1": "",
                        "postal_code": "30163",
                        "country_code": "DE"
                    }
                }
            }
        ]
    }
    2022-07-19T10:40:07+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Response on Create Order API ) ------------------->
    {
        "name": "UNPROCESSABLE_ENTITY",
        "details": [
            {
                "field": "\/purchase_units\/@reference_id=='default'\/amount\/breakdown\/item_total\/value",
                "value": "1452.15",
                "issue": "ITEM_TOTAL_MISMATCH",
                "description": "Should equal sum of (unit_amount * quantity) across all items for a given purchase_unit"
            }
        ],
        "message": "The requested action could not be performed, semantically incorrect, or failed business validation.",
        "debug_id": "d5d56b7c396f2",
        "links": [
            {
                "href": "https:\/\/developer.paypal.com\/docs\/api\/orders\/v2\/#error-ITEM_TOTAL_MISMATCH",
                "rel": "information_link",
                "method": "GET"
            }
        ]
    }
    2022-07-19T10:40:38+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Create Order API ) ------------------->
    {
        "intent": "CAPTURE",
        "application_context": {
            "brand_name": "Meindl Fashion Sandbox",
            "locale": "de-DE",
            "landing_page": "LOGIN",
            "shipping_preference": "SET_PROVIDED_ADDRESS",
            "user_action": "PAY_NOW",
            "return_url": "https:\/\/stage.meindl-fashion.de\/wc-api\/Eh_PayPal_Express_Payment\/?c=order_details&p=https:\/\/stage.meindl-fashion.de\/kasse\/&intent=CAPTURE",
            "cancel_url": "https:\/\/stage.meindl-fashion.de\/kasse\/?cancel_express_checkout=cancel"
        },
        "purchase_units": [
            {
                "items": [
                    {
                        "name": "Rehlederhose Herren \"Montgomery Bermuda\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 48",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 738.71
                        }
                    },
                    {
                        "name": "Rehlederhose Herren \"Wildwood Short\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 54",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 713.45
                        }
                    },
                    {
                        "name": "Extra line item",
                        "description": "",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 0.07
                        }
                    }
                ],
                "amount": {
                    "currency_code": "EUR",
                    "value": 1732.05,
                    "breakdown": {
                        "item_total": {
                            "currency_code": "EUR",
                            "value": 1452.15
                        },
                        "shipping": {
                            "currency_code": "EUR",
                            "value": 3.99
                        },
                        "tax_total": {
                            "currency_code": "EUR",
                            "value": 275.91
                        },
                        "shipping_discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "handling": {
                            "currency_code": "EUR",
                            "value": 0
                        }
                    }
                },
                "shipping": {
                    "name": {
                        "full_name": "Max Huch"
                    },
                    "address": {
                        "address_line_1": "Ferdinand-Wallbrecht-Stra\u00dfe 4",
                        "address_line_2": "",
                        "admin_area_2": "Hannover",
                        "admin_area_1": "",
                        "postal_code": "30163",
                        "country_code": "DE"
                    }
                }
            }
        ]
    }
    2022-07-19T10:40:38+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Response on Create Order API ) ------------------->
    {
        "name": "UNPROCESSABLE_ENTITY",
        "details": [
            {
                "field": "\/purchase_units\/@reference_id=='default'\/amount\/breakdown\/item_total\/value",
                "value": "1452.15",
                "issue": "ITEM_TOTAL_MISMATCH",
                "description": "Should equal sum of (unit_amount * quantity) across all items for a given purchase_unit"
            }
        ],
        "message": "The requested action could not be performed, semantically incorrect, or failed business validation.",
        "debug_id": "523285ed4f29",
        "links": [
            {
                "href": "https:\/\/developer.paypal.com\/docs\/api\/orders\/v2\/#error-ITEM_TOTAL_MISMATCH",
                "rel": "information_link",
                "method": "GET"
            }
        ]
    }
    2022-07-19T10:42:36+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Create Order API ) ------------------->
    {
        "intent": "CAPTURE",
        "application_context": {
            "brand_name": "Meindl Fashion Sandbox",
            "locale": "de-DE",
            "landing_page": "LOGIN",
            "shipping_preference": "SET_PROVIDED_ADDRESS",
            "user_action": "PAY_NOW",
            "return_url": "https:\/\/stage.meindl-fashion.de\/wc-api\/Eh_PayPal_Express_Payment\/?c=order_details&p=https:\/\/stage.meindl-fashion.de\/kasse\/&intent=CAPTURE",
            "cancel_url": "https:\/\/stage.meindl-fashion.de\/kasse\/?cancel_express_checkout=cancel"
        },
        "purchase_units": [
            {
                "items": [
                    {
                        "name": "Rehlederhose Herren \"Montgomery Bermuda\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 48",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 738.71
                        }
                    },
                    {
                        "name": "Rehlederhose Herren \"Wildwood Short\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 54",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 713.45
                        }
                    },
                    {
                        "name": "Extra line item",
                        "description": "",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 1.01
                        }
                    }
                ],
                "amount": {
                    "currency_code": "EUR",
                    "value": 1732.05,
                    "breakdown": {
                        "item_total": {
                            "currency_code": "EUR",
                            "value": 1452.15
                        },
                        "shipping": {
                            "currency_code": "EUR",
                            "value": 3.99
                        },
                        "tax_total": {
                            "currency_code": "EUR",
                            "value": 275.91
                        },
                        "shipping_discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "handling": {
                            "currency_code": "EUR",
                            "value": 0
                        }
                    }
                },
                "shipping": {
                    "name": {
                        "full_name": "Max Huch"
                    },
                    "address": {
                        "address_line_1": "Ferdinand-Wallbrecht-Stra\u00dfe 4",
                        "address_line_2": "",
                        "admin_area_2": "Hannover",
                        "admin_area_1": "",
                        "postal_code": "30163",
                        "country_code": "DE"
                    }
                }
            }
        ]
    }
    2022-07-19T10:42:37+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Response on Create Order API ) ------------------->
    {
        "name": "UNPROCESSABLE_ENTITY",
        "details": [
            {
                "field": "\/purchase_units\/@reference_id=='default'\/amount\/breakdown\/item_total\/value",
                "value": "1452.15",
                "issue": "ITEM_TOTAL_MISMATCH",
                "description": "Should equal sum of (unit_amount * quantity) across all items for a given purchase_unit"
            }
        ],
        "message": "The requested action could not be performed, semantically incorrect, or failed business validation.",
        "debug_id": "15389a2f4bf0",
        "links": [
            {
                "href": "https:\/\/developer.paypal.com\/docs\/api\/orders\/v2\/#error-ITEM_TOTAL_MISMATCH",
                "rel": "information_link",
                "method": "GET"
            }
        ]
    }
    2022-07-19T10:48:35+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Create Order API ) ------------------->
    {
        "intent": "CAPTURE",
        "application_context": {
            "brand_name": "Meindl Fashion Sandbox",
            "locale": "de-DE",
            "landing_page": "LOGIN",
            "shipping_preference": "SET_PROVIDED_ADDRESS",
            "user_action": "PAY_NOW",
            "return_url": "https:\/\/stage.meindl-fashion.de\/wc-api\/Eh_PayPal_Express_Payment\/?c=order_details&p=https:\/\/stage.meindl-fashion.de\/kasse\/&intent=CAPTURE",
            "cancel_url": "https:\/\/stage.meindl-fashion.de\/kasse\/?cancel_express_checkout=cancel"
        },
        "purchase_units": [
            {
                "items": [
                    {
                        "name": "Rehlederhose Herren \"Montgomery Bermuda\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 48",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 738.71
                        }
                    },
                    {
                        "name": "Rehlederhose Herren \"Wildwood Short\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 54",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 713.45
                        }
                    }
                ],
                "amount": {
                    "currency_code": "EUR",
                    "value": 1732.05,
                    "breakdown": {
                        "item_total": {
                            "currency_code": "EUR",
                            "value": 1452.15
                        },
                        "shipping": {
                            "currency_code": "EUR",
                            "value": 3.99
                        },
                        "tax_total": {
                            "currency_code": "EUR",
                            "value": 275.91
                        },
                        "shipping_discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "handling": {
                            "currency_code": "EUR",
                            "value": 0
                        }
                    }
                },
                "shipping": {
                    "name": {
                        "full_name": "Max Huch"
                    },
                    "address": {
                        "address_line_1": "Ferdinand-Wallbrecht-Stra\u00dfe 4",
                        "address_line_2": "",
                        "admin_area_2": "Hannover",
                        "admin_area_1": "",
                        "postal_code": "30163",
                        "country_code": "DE"
                    }
                }
            }
        ]
    }
    2022-07-19T10:48:36+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Response on Create Order API ) ------------------->
    {
        "name": "UNPROCESSABLE_ENTITY",
        "details": [
            {
                "field": "\/purchase_units\/@reference_id=='default'\/amount\/breakdown\/item_total\/value",
                "value": "1452.15",
                "issue": "ITEM_TOTAL_MISMATCH",
                "description": "Should equal sum of (unit_amount * quantity) across all items for a given purchase_unit"
            }
        ],
        "message": "The requested action could not be performed, semantically incorrect, or failed business validation.",
        "debug_id": "ca552489a2d22",
        "links": [
            {
                "href": "https:\/\/developer.paypal.com\/docs\/api\/orders\/v2\/#error-ITEM_TOTAL_MISMATCH",
                "rel": "information_link",
                "method": "GET"
            }
        ]
    }
    2022-07-19T10:50:35+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Create Order API ) ------------------->
    {
        "intent": "CAPTURE",
        "application_context": {
            "brand_name": "Meindl Fashion Sandbox",
            "locale": "de-DE",
            "landing_page": "LOGIN",
            "shipping_preference": "SET_PROVIDED_ADDRESS",
            "user_action": "PAY_NOW",
            "return_url": "https:\/\/stage.meindl-fashion.de\/wc-api\/Eh_PayPal_Express_Payment\/?c=order_details&p=https:\/\/stage.meindl-fashion.de\/kasse\/&intent=CAPTURE",
            "cancel_url": "https:\/\/stage.meindl-fashion.de\/kasse\/?cancel_express_checkout=cancel"
        },
        "purchase_units": [
            {
                "items": [
                    {
                        "name": "Rehlederhose Herren \"Montgomery Bermuda\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 48",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 738.71
                        }
                    },
                    {
                        "name": "Rehlederhose Herren \"Wildwood Short\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 54",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 713.45
                        }
                    },
                    {
                        "name": "Extra line item",
                        "description": "",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 0.01
                        }
                    }
                ],
                "amount": {
                    "currency_code": "EUR",
                    "value": 1732.05,
                    "breakdown": {
                        "item_total": {
                            "currency_code": "EUR",
                            "value": 1452.15
                        },
                        "shipping": {
                            "currency_code": "EUR",
                            "value": 3.99
                        },
                        "tax_total": {
                            "currency_code": "EUR",
                            "value": 275.91
                        },
                        "shipping_discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "handling": {
                            "currency_code": "EUR",
                            "value": 0
                        }
                    }
                },
                "shipping": {
                    "name": {
                        "full_name": "Max Huch"
                    },
                    "address": {
                        "address_line_1": "Ferdinand-Wallbrecht-Stra\u00dfe 4",
                        "address_line_2": "",
                        "admin_area_2": "Hannover",
                        "admin_area_1": "",
                        "postal_code": "30163",
                        "country_code": "DE"
                    }
                }
            }
        ]
    }
    2022-07-19T10:50:36+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Response on Create Order API ) ------------------->
    {
        "name": "UNPROCESSABLE_ENTITY",
        "details": [
            {
                "field": "\/purchase_units\/@reference_id=='default'\/amount\/breakdown\/item_total\/value",
                "value": "1452.15",
                "issue": "ITEM_TOTAL_MISMATCH",
                "description": "Should equal sum of (unit_amount * quantity) across all items for a given purchase_unit"
            }
        ],
        "message": "The requested action could not be performed, semantically incorrect, or failed business validation.",
        "debug_id": "24063d0199a9b",
        "links": [
            {
                "href": "https:\/\/developer.paypal.com\/docs\/api\/orders\/v2\/#error-ITEM_TOTAL_MISMATCH",
                "rel": "information_link",
                "method": "GET"
            }
        ]
    }
    2022-07-19T10:52:03+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Create Order API ) ------------------->
    {
        "intent": "CAPTURE",
        "application_context": {
            "brand_name": "Meindl Fashion Sandbox",
            "locale": "de-DE",
            "landing_page": "LOGIN",
            "shipping_preference": "SET_PROVIDED_ADDRESS",
            "user_action": "PAY_NOW",
            "return_url": "https:\/\/stage.meindl-fashion.de\/wc-api\/Eh_PayPal_Express_Payment\/?c=order_details&p=https:\/\/stage.meindl-fashion.de\/kasse\/&intent=CAPTURE",
            "cancel_url": "https:\/\/stage.meindl-fashion.de\/kasse\/?cancel_express_checkout=cancel"
        },
        "purchase_units": [
            {
                "items": [
                    {
                        "name": "Rehlederhose Herren \"Montgomery Bermuda\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 48",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 738.71
                        }
                    },
                    {
                        "name": "Rehlederhose Herren \"Wildwood Short\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 54",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 713.45
                        }
                    },
                    {
                        "name": "Extra line item",
                        "description": "",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 0.01
                        }
                    }
                ],
                "amount": {
                    "currency_code": "EUR",
                    "value": 1732.05,
                    "breakdown": {
                        "item_total": {
                            "currency_code": "EUR",
                            "value": 1452.15
                        },
                        "shipping": {
                            "currency_code": "EUR",
                            "value": 3.99
                        },
                        "tax_total": {
                            "currency_code": "EUR",
                            "value": 275.91
                        },
                        "shipping_discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "handling": {
                            "currency_code": "EUR",
                            "value": 0
                        }
                    }
                },
                "shipping": {
                    "name": {
                        "full_name": "Max Huch"
                    },
                    "address": {
                        "address_line_1": "Ferdinand-Wallbrecht-Stra\u00dfe 4",
                        "address_line_2": "",
                        "admin_area_2": "Hannover",
                        "admin_area_1": "",
                        "postal_code": "30163",
                        "country_code": "DE"
                    }
                }
            }
        ]
    }
    2022-07-19T10:52:03+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Response on Create Order API ) ------------------->
    {
        "name": "UNPROCESSABLE_ENTITY",
        "details": [
            {
                "field": "\/purchase_units\/@reference_id=='default'\/amount\/breakdown\/item_total\/value",
                "value": "1452.15",
                "issue": "ITEM_TOTAL_MISMATCH",
                "description": "Should equal sum of (unit_amount * quantity) across all items for a given purchase_unit"
            }
        ],
        "message": "The requested action could not be performed, semantically incorrect, or failed business validation.",
        "debug_id": "c82f4e45595eb",
        "links": [
            {
                "href": "https:\/\/developer.paypal.com\/docs\/api\/orders\/v2\/#error-ITEM_TOTAL_MISMATCH",
                "rel": "information_link",
                "method": "GET"
            }
        ]
    }
    2022-07-19T10:58:57+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Create Order API ) ------------------->
    {
        "intent": "CAPTURE",
        "application_context": {
            "brand_name": "Meindl Fashion Sandbox",
            "locale": "de-DE",
            "landing_page": "LOGIN",
            "shipping_preference": "SET_PROVIDED_ADDRESS",
            "user_action": "PAY_NOW",
            "return_url": "https:\/\/stage.meindl-fashion.de\/wc-api\/Eh_PayPal_Express_Payment\/?c=order_details&p=https:\/\/stage.meindl-fashion.de\/kasse\/&intent=CAPTURE",
            "cancel_url": "https:\/\/stage.meindl-fashion.de\/kasse\/?cancel_express_checkout=cancel"
        },
        "purchase_units": [
            {
                "items": [
                    {
                        "name": "Rehlederhose Herren \"Montgomery Bermuda\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 48",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 738.71
                        }
                    },
                    {
                        "name": "Rehlederhose Herren \"Wildwood Short\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 54",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 713.45
                        }
                    },
                    {
                        "name": "Extra line item",
                        "description": "",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 0.01
                        }
                    }
                ],
                "amount": {
                    "currency_code": "EUR",
                    "value": 1732.05,
                    "breakdown": {
                        "item_total": {
                            "currency_code": "EUR",
                            "value": 1452.15
                        },
                        "shipping": {
                            "currency_code": "EUR",
                            "value": 3.99
                        },
                        "tax_total": {
                            "currency_code": "EUR",
                            "value": 275.91
                        },
                        "shipping_discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "handling": {
                            "currency_code": "EUR",
                            "value": 0
                        }
                    }
                },
                "shipping": {
                    "name": {
                        "full_name": "Max Huch"
                    },
                    "address": {
                        "address_line_1": "Ferdinand-Wallbrecht-Stra\u00dfe 4",
                        "address_line_2": "",
                        "admin_area_2": "Hannover",
                        "admin_area_1": "",
                        "postal_code": "30163",
                        "country_code": "DE"
                    }
                }
            }
        ]
    }
    2022-07-19T10:58:57+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Response on Create Order API ) ------------------->
    {
        "name": "UNPROCESSABLE_ENTITY",
        "details": [
            {
                "field": "\/purchase_units\/@reference_id=='default'\/amount\/breakdown\/item_total\/value",
                "value": "1452.15",
                "issue": "ITEM_TOTAL_MISMATCH",
                "description": "Should equal sum of (unit_amount * quantity) across all items for a given purchase_unit"
            }
        ],
        "message": "The requested action could not be performed, semantically incorrect, or failed business validation.",
        "debug_id": "194dc18765085",
        "links": [
            {
                "href": "https:\/\/developer.paypal.com\/docs\/api\/orders\/v2\/#error-ITEM_TOTAL_MISMATCH",
                "rel": "information_link",
                "method": "GET"
            }
        ]
    }
    2022-07-19T11:12:10+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Create Order API ) ------------------->
    {
        "intent": "CAPTURE",
        "application_context": {
            "brand_name": "Meindl Fashion Sandbox",
            "locale": "de-DE",
            "landing_page": "LOGIN",
            "shipping_preference": "SET_PROVIDED_ADDRESS",
            "user_action": "PAY_NOW",
            "return_url": "https:\/\/stage.meindl-fashion.de\/wc-api\/Eh_PayPal_Express_Payment\/?c=order_details&p=https:\/\/stage.meindl-fashion.de\/kasse\/&intent=CAPTURE",
            "cancel_url": "https:\/\/stage.meindl-fashion.de\/kasse\/?cancel_express_checkout=cancel"
        },
        "purchase_units": [
            {
                "items": [
                    {
                        "name": "Rehlederhose Herren \"Montgomery Bermuda\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 48",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 738.71
                        }
                    },
                    {
                        "name": "Rehlederhose Herren \"Wildwood Short\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 54",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 713.45
                        }
                    },
                    {
                        "name": "Extra line item",
                        "description": "",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 0.01
                        }
                    }
                ],
                "amount": {
                    "currency_code": "EUR",
                    "value": 1732.05,
                    "breakdown": {
                        "item_total": {
                            "currency_code": "EUR",
                            "value": 1452.15
                        },
                        "shipping": {
                            "currency_code": "EUR",
                            "value": 3.99
                        },
                        "tax_total": {
                            "currency_code": "EUR",
                            "value": 275.91
                        },
                        "shipping_discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "handling": {
                            "currency_code": "EUR",
                            "value": 0
                        }
                    }
                },
                "shipping": {
                    "name": {
                        "full_name": "Max Huch"
                    },
                    "address": {
                        "address_line_1": "Ferdinand-Wallbrecht-Stra\u00dfe 4",
                        "address_line_2": "",
                        "admin_area_2": "Hannover",
                        "admin_area_1": "",
                        "postal_code": "30163",
                        "country_code": "DE"
                    }
                }
            }
        ]
    }
    2022-07-19T11:12:11+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Response on Create Order API ) ------------------->
    {
        "name": "UNPROCESSABLE_ENTITY",
        "details": [
            {
                "field": "\/purchase_units\/@reference_id=='default'\/amount\/breakdown\/item_total\/value",
                "value": "1452.15",
                "issue": "ITEM_TOTAL_MISMATCH",
                "description": "Should equal sum of (unit_amount * quantity) across all items for a given purchase_unit"
            }
        ],
        "message": "The requested action could not be performed, semantically incorrect, or failed business validation.",
        "debug_id": "260995535b8fb",
        "links": [
            {
                "href": "https:\/\/developer.paypal.com\/docs\/api\/orders\/v2\/#error-ITEM_TOTAL_MISMATCH",
                "rel": "information_link",
                "method": "GET"
            }
        ]
    }
    2022-07-19T11:12:36+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Create Order API ) ------------------->
    {
        "intent": "CAPTURE",
        "application_context": {
            "brand_name": "Meindl Fashion Sandbox",
            "locale": "de-DE",
            "landing_page": "LOGIN",
            "shipping_preference": "SET_PROVIDED_ADDRESS",
            "user_action": "PAY_NOW",
            "return_url": "https:\/\/stage.meindl-fashion.de\/wc-api\/Eh_PayPal_Express_Payment\/?c=order_details&p=https:\/\/stage.meindl-fashion.de\/kasse\/&intent=CAPTURE",
            "cancel_url": "https:\/\/stage.meindl-fashion.de\/kasse\/?cancel_express_checkout=cancel"
        },
        "purchase_units": [
            {
                "items": [
                    {
                        "name": "Rehlederhose Herren \"Montgomery Bermuda\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 48",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 738.71
                        }
                    },
                    {
                        "name": "Rehlederhose Herren \"Wildwood Short\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 54",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 713.45
                        }
                    },
                    {
                        "name": "Extra line item",
                        "description": "",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 0.01
                        }
                    }
                ],
                "amount": {
                    "currency_code": "EUR",
                    "value": 1732.05,
                    "breakdown": {
                        "item_total": {
                            "currency_code": "EUR",
                            "value": 1452.15
                        },
                        "shipping": {
                            "currency_code": "EUR",
                            "value": 3.99
                        },
                        "tax_total": {
                            "currency_code": "EUR",
                            "value": 275.91
                        },
                        "shipping_discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "handling": {
                            "currency_code": "EUR",
                            "value": 0
                        }
                    }
                },
                "shipping": {
                    "name": {
                        "full_name": "Max Huch"
                    },
                    "address": {
                        "address_line_1": "Ferdinand-Wallbrecht-Stra\u00dfe 4",
                        "address_line_2": "",
                        "admin_area_2": "Hannover",
                        "admin_area_1": "",
                        "postal_code": "30163",
                        "country_code": "DE"
                    }
                }
            }
        ]
    }
    2022-07-19T11:12:36+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Response on Create Order API ) ------------------->
    {
        "name": "UNPROCESSABLE_ENTITY",
        "details": [
            {
                "field": "\/purchase_units\/@reference_id=='default'\/amount\/breakdown\/item_total\/value",
                "value": "1452.15",
                "issue": "ITEM_TOTAL_MISMATCH",
                "description": "Should equal sum of (unit_amount * quantity) across all items for a given purchase_unit"
            }
        ],
        "message": "The requested action could not be performed, semantically incorrect, or failed business validation.",
        "debug_id": "c7148d4b04dea",
        "links": [
            {
                "href": "https:\/\/developer.paypal.com\/docs\/api\/orders\/v2\/#error-ITEM_TOTAL_MISMATCH",
                "rel": "information_link",
                "method": "GET"
            }
        ]
    }
    2022-07-19T11:13:13+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Create Order API ) ------------------->
    {
        "intent": "CAPTURE",
        "application_context": {
            "brand_name": "Meindl Fashion Sandbox",
            "locale": "de-DE",
            "landing_page": "LOGIN",
            "shipping_preference": "SET_PROVIDED_ADDRESS",
            "user_action": "PAY_NOW",
            "return_url": "https:\/\/stage.meindl-fashion.de\/wc-api\/Eh_PayPal_Express_Payment\/?c=order_details&p=https:\/\/stage.meindl-fashion.de\/kasse\/&intent=CAPTURE",
            "cancel_url": "https:\/\/stage.meindl-fashion.de\/kasse\/?cancel_express_checkout=cancel"
        },
        "purchase_units": [
            {
                "items": [
                    {
                        "name": "Rehlederhose Herren \"Montgomery Bermuda\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 48",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 738.71
                        }
                    },
                    {
                        "name": "Rehlederhose Herren \"Wildwood Short\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 54",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 713.45
                        }
                    },
                    {
                        "name": "Extra line item",
                        "description": "",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 0.01
                        }
                    }
                ],
                "amount": {
                    "currency_code": "EUR",
                    "value": 1732.05,
                    "breakdown": {
                        "item_total": {
                            "currency_code": "EUR",
                            "value": 1452.16
                        },
                        "shipping": {
                            "currency_code": "EUR",
                            "value": 3.99
                        },
                        "tax_total": {
                            "currency_code": "EUR",
                            "value": 275.91
                        },
                        "shipping_discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "handling": {
                            "currency_code": "EUR",
                            "value": 0
                        }
                    }
                },
                "shipping": {
                    "name": {
                        "full_name": "Max Huch"
                    },
                    "address": {
                        "address_line_1": "Ferdinand-Wallbrecht-Stra\u00dfe 4",
                        "address_line_2": "",
                        "admin_area_2": "Hannover",
                        "admin_area_1": "",
                        "postal_code": "30163",
                        "country_code": "DE"
                    }
                }
            }
        ]
    }
    2022-07-19T11:13:14+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Response on Create Order API ) ------------------->
    {
        "name": "UNPROCESSABLE_ENTITY",
        "details": [
            {
                "field": "\/purchase_units\/@reference_id=='default'\/amount\/breakdown\/item_total\/value",
                "value": "1452.16",
                "issue": "ITEM_TOTAL_MISMATCH",
                "description": "Should equal sum of (unit_amount * quantity) across all items for a given purchase_unit"
            }
        ],
        "message": "The requested action could not be performed, semantically incorrect, or failed business validation.",
        "debug_id": "d5ac46514f25d",
        "links": [
            {
                "href": "https:\/\/developer.paypal.com\/docs\/api\/orders\/v2\/#error-ITEM_TOTAL_MISMATCH",
                "rel": "information_link",
                "method": "GET"
            }
        ]
    }
    2022-07-19T11:13:23+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Create Order API ) ------------------->
    {
        "intent": "CAPTURE",
        "application_context": {
            "brand_name": "Meindl Fashion Sandbox",
            "locale": "de-DE",
            "landing_page": "LOGIN",
            "shipping_preference": "SET_PROVIDED_ADDRESS",
            "user_action": "PAY_NOW",
            "return_url": "https:\/\/stage.meindl-fashion.de\/wc-api\/Eh_PayPal_Express_Payment\/?c=order_details&p=https:\/\/stage.meindl-fashion.de\/kasse\/&intent=CAPTURE",
            "cancel_url": "https:\/\/stage.meindl-fashion.de\/kasse\/?cancel_express_checkout=cancel"
        },
        "purchase_units": [
            {
                "items": [
                    {
                        "name": "Rehlederhose Herren \"Montgomery Bermuda\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 48",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 738.71
                        }
                    },
                    {
                        "name": "Rehlederhose Herren \"Wildwood Short\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 54",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 713.45
                        }
                    },
                    {
                        "name": "Extra line item",
                        "description": "",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 0.01
                        }
                    }
                ],
                "amount": {
                    "currency_code": "EUR",
                    "value": 1732.05,
                    "breakdown": {
                        "item_total": {
                            "currency_code": "EUR",
                            "value": 1452.16
                        },
                        "shipping": {
                            "currency_code": "EUR",
                            "value": 3.99
                        },
                        "tax_total": {
                            "currency_code": "EUR",
                            "value": 275.91
                        },
                        "shipping_discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "handling": {
                            "currency_code": "EUR",
                            "value": 0
                        }
                    }
                },
                "shipping": {
                    "name": {
                        "full_name": "Max Huch"
                    },
                    "address": {
                        "address_line_1": "Ferdinand-Wallbrecht-Stra\u00dfe 4",
                        "address_line_2": "",
                        "admin_area_2": "Hannover",
                        "admin_area_1": "",
                        "postal_code": "30163",
                        "country_code": "DE"
                    }
                }
            }
        ]
    }
    2022-07-19T11:13:23+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Response on Create Order API ) ------------------->
    {
        "name": "UNPROCESSABLE_ENTITY",
        "details": [
            {
                "field": "\/purchase_units\/@reference_id=='default'\/amount\/breakdown\/item_total\/value",
                "value": "1452.16",
                "issue": "ITEM_TOTAL_MISMATCH",
                "description": "Should equal sum of (unit_amount * quantity) across all items for a given purchase_unit"
            }
        ],
        "message": "The requested action could not be performed, semantically incorrect, or failed business validation.",
        "debug_id": "a149c4afe950b",
        "links": [
            {
                "href": "https:\/\/developer.paypal.com\/docs\/api\/orders\/v2\/#error-ITEM_TOTAL_MISMATCH",
                "rel": "information_link",
                "method": "GET"
            }
        ]
    }
    2022-07-19T11:14:19+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Create Order API ) ------------------->
    {
        "intent": "CAPTURE",
        "application_context": {
            "brand_name": "Meindl Fashion Sandbox",
            "locale": "de-DE",
            "landing_page": "LOGIN",
            "shipping_preference": "SET_PROVIDED_ADDRESS",
            "user_action": "PAY_NOW",
            "return_url": "https:\/\/stage.meindl-fashion.de\/wc-api\/Eh_PayPal_Express_Payment\/?c=order_details&p=https:\/\/stage.meindl-fashion.de\/kasse\/&intent=CAPTURE",
            "cancel_url": "https:\/\/stage.meindl-fashion.de\/kasse\/?cancel_express_checkout=cancel"
        },
        "purchase_units": [
            {
                "items": [
                    {
                        "name": "Rehlederhose Herren \"Montgomery Bermuda\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 48",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 738.71
                        }
                    },
                    {
                        "name": "Rehlederhose Herren \"Wildwood Short\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 54",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 713.45
                        }
                    }
                ],
                "amount": {
                    "currency_code": "EUR",
                    "value": 1732.05,
                    "breakdown": {
                        "item_total": {
                            "currency_code": "EUR",
                            "value": 1452.16
                        },
                        "shipping": {
                            "currency_code": "EUR",
                            "value": 3.99
                        },
                        "tax_total": {
                            "currency_code": "EUR",
                            "value": 275.91
                        },
                        "shipping_discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "handling": {
                            "currency_code": "EUR",
                            "value": 0
                        }
                    }
                },
                "shipping": {
                    "name": {
                        "full_name": "Max Huch"
                    },
                    "address": {
                        "address_line_1": "Ferdinand-Wallbrecht-Stra\u00dfe 4",
                        "address_line_2": "",
                        "admin_area_2": "Hannover",
                        "admin_area_1": "",
                        "postal_code": "30163",
                        "country_code": "DE"
                    }
                }
            }
        ]
    }
    2022-07-19T11:14:19+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Response on Create Order API ) ------------------->
    {
        "name": "UNPROCESSABLE_ENTITY",
        "details": [
            {
                "field": "\/purchase_units\/@reference_id=='default'\/amount\/value",
                "value": "1732.05",
                "issue": "AMOUNT_MISMATCH",
                "description": "Should equal item_total + tax_total + shipping + handling + insurance - shipping_discount - discount."
            }
        ],
        "message": "The requested action could not be performed, semantically incorrect, or failed business validation.",
        "debug_id": "92d6d51b66112",
        "links": [
            {
                "href": "https:\/\/developer.paypal.com\/docs\/api\/orders\/v2\/#error-AMOUNT_MISMATCH",
                "rel": "information_link",
                "method": "GET"
            }
        ]
    }
    2022-07-19T11:14:51+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Create Order API ) ------------------->
    {
        "intent": "CAPTURE",
        "application_context": {
            "brand_name": "Meindl Fashion Sandbox",
            "locale": "de-DE",
            "landing_page": "LOGIN",
            "shipping_preference": "SET_PROVIDED_ADDRESS",
            "user_action": "PAY_NOW",
            "return_url": "https:\/\/stage.meindl-fashion.de\/wc-api\/Eh_PayPal_Express_Payment\/?c=order_details&p=https:\/\/stage.meindl-fashion.de\/kasse\/&intent=CAPTURE",
            "cancel_url": "https:\/\/stage.meindl-fashion.de\/kasse\/?cancel_express_checkout=cancel"
        },
        "purchase_units": [
            {
                "items": [
                    {
                        "name": "Rehlederhose Herren \"Montgomery Bermuda\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 48",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 738.71
                        }
                    },
                    {
                        "name": "Rehlederhose Herren \"Wildwood Short\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 54",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 713.45
                        }
                    }
                ],
                "amount": {
                    "currency_code": "EUR",
                    "value": 1732.05,
                    "breakdown": {
                        "item_total": {
                            "currency_code": "EUR",
                            "value": 1452.16
                        },
                        "shipping": {
                            "currency_code": "EUR",
                            "value": 3.99
                        },
                        "tax_total": {
                            "currency_code": "EUR",
                            "value": 275.91
                        },
                        "shipping_discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "handling": {
                            "currency_code": "EUR",
                            "value": 0
                        }
                    }
                },
                "shipping": {
                    "name": {
                        "full_name": "Max Huch"
                    },
                    "address": {
                        "address_line_1": "Ferdinand-Wallbrecht-Stra\u00dfe 4",
                        "address_line_2": "",
                        "admin_area_2": "Hannover",
                        "admin_area_1": "",
                        "postal_code": "30163",
                        "country_code": "DE"
                    }
                }
            }
        ]
    }
    2022-07-19T11:14:51+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Response on Create Order API ) ------------------->
    {
        "name": "UNPROCESSABLE_ENTITY",
        "details": [
            {
                "field": "\/purchase_units\/@reference_id=='default'\/amount\/value",
                "value": "1732.05",
                "issue": "AMOUNT_MISMATCH",
                "description": "Should equal item_total + tax_total + shipping + handling + insurance - shipping_discount - discount."
            }
        ],
        "message": "The requested action could not be performed, semantically incorrect, or failed business validation.",
        "debug_id": "810e3109643e6",
        "links": [
            {
                "href": "https:\/\/developer.paypal.com\/docs\/api\/orders\/v2\/#error-AMOUNT_MISMATCH",
                "rel": "information_link",
                "method": "GET"
            }
        ]
    }
    2022-07-19T11:15:28+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Create Order API ) ------------------->
    {
        "intent": "CAPTURE",
        "application_context": {
            "brand_name": "Meindl Fashion Sandbox",
            "locale": "de-DE",
            "landing_page": "LOGIN",
            "shipping_preference": "SET_PROVIDED_ADDRESS",
            "user_action": "PAY_NOW",
            "return_url": "https:\/\/stage.meindl-fashion.de\/wc-api\/Eh_PayPal_Express_Payment\/?c=order_details&p=https:\/\/stage.meindl-fashion.de\/kasse\/&intent=CAPTURE",
            "cancel_url": "https:\/\/stage.meindl-fashion.de\/kasse\/?cancel_express_checkout=cancel"
        },
        "purchase_units": [
            {
                "items": [
                    {
                        "name": "Rehlederhose Herren \"Montgomery Bermuda\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 48",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 738.71
                        }
                    },
                    {
                        "name": "Rehlederhose Herren \"Wildwood Short\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 54",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 713.45
                        }
                    },
                    {
                        "name": "Extra line item",
                        "description": "",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 0.01
                        }
                    }
                ],
                "amount": {
                    "currency_code": "EUR",
                    "value": 1732.05,
                    "breakdown": {
                        "item_total": {
                            "currency_code": "EUR",
                            "value": 1452.15
                        },
                        "shipping": {
                            "currency_code": "EUR",
                            "value": 3.99
                        },
                        "tax_total": {
                            "currency_code": "EUR",
                            "value": 275.91
                        },
                        "shipping_discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "handling": {
                            "currency_code": "EUR",
                            "value": 0
                        }
                    }
                },
                "shipping": {
                    "name": {
                        "full_name": "Max Huch"
                    },
                    "address": {
                        "address_line_1": "Ferdinand-Wallbrecht-Stra\u00dfe 4",
                        "address_line_2": "",
                        "admin_area_2": "Hannover",
                        "admin_area_1": "",
                        "postal_code": "30163",
                        "country_code": "DE"
                    }
                }
            }
        ]
    }
    2022-07-19T11:15:28+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Response on Create Order API ) ------------------->
    {
        "name": "UNPROCESSABLE_ENTITY",
        "details": [
            {
                "field": "\/purchase_units\/@reference_id=='default'\/amount\/breakdown\/item_total\/value",
                "value": "1452.15",
                "issue": "ITEM_TOTAL_MISMATCH",
                "description": "Should equal sum of (unit_amount * quantity) across all items for a given purchase_unit"
            }
        ],
        "message": "The requested action could not be performed, semantically incorrect, or failed business validation.",
        "debug_id": "d2a8e4ecf8af2",
        "links": [
            {
                "href": "https:\/\/developer.paypal.com\/docs\/api\/orders\/v2\/#error-ITEM_TOTAL_MISMATCH",
                "rel": "information_link",
                "method": "GET"
            }
        ]
    }
    2022-07-19T11:15:56+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Create Order API ) ------------------->
    {
        "intent": "CAPTURE",
        "application_context": {
            "brand_name": "Meindl Fashion Sandbox",
            "locale": "de-DE",
            "landing_page": "LOGIN",
            "shipping_preference": "SET_PROVIDED_ADDRESS",
            "user_action": "PAY_NOW",
            "return_url": "https:\/\/stage.meindl-fashion.de\/wc-api\/Eh_PayPal_Express_Payment\/?c=order_details&p=https:\/\/stage.meindl-fashion.de\/kasse\/&intent=CAPTURE",
            "cancel_url": "https:\/\/stage.meindl-fashion.de\/kasse\/?cancel_express_checkout=cancel"
        },
        "purchase_units": [
            {
                "items": [
                    {
                        "name": "Rehlederhose Herren \"Montgomery Bermuda\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 48",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 738.71
                        }
                    },
                    {
                        "name": "Rehlederhose Herren \"Wildwood Short\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 54",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 713.45
                        }
                    },
                    {
                        "name": "Extra line item",
                        "description": "",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 0.01
                        }
                    }
                ],
                "amount": {
                    "currency_code": "EUR",
                    "value": 1732.05,
                    "breakdown": {
                        "item_total": {
                            "currency_code": "EUR",
                            "value": 1452.16
                        },
                        "shipping": {
                            "currency_code": "EUR",
                            "value": 3.99
                        },
                        "tax_total": {
                            "currency_code": "EUR",
                            "value": 275.91
                        },
                        "shipping_discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "handling": {
                            "currency_code": "EUR",
                            "value": 0
                        }
                    }
                },
                "shipping": {
                    "name": {
                        "full_name": "Max Huch"
                    },
                    "address": {
                        "address_line_1": "Ferdinand-Wallbrecht-Stra\u00dfe 4",
                        "address_line_2": "",
                        "admin_area_2": "Hannover",
                        "admin_area_1": "",
                        "postal_code": "30163",
                        "country_code": "DE"
                    }
                }
            }
        ]
    }
    2022-07-19T11:15:57+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Response on Create Order API ) ------------------->
    {
        "name": "UNPROCESSABLE_ENTITY",
        "details": [
            {
                "field": "\/purchase_units\/@reference_id=='default'\/amount\/breakdown\/item_total\/value",
                "value": "1452.16",
                "issue": "ITEM_TOTAL_MISMATCH",
                "description": "Should equal sum of (unit_amount * quantity) across all items for a given purchase_unit"
            }
        ],
        "message": "The requested action could not be performed, semantically incorrect, or failed business validation.",
        "debug_id": "b4c55754bc49c",
        "links": [
            {
                "href": "https:\/\/developer.paypal.com\/docs\/api\/orders\/v2\/#error-ITEM_TOTAL_MISMATCH",
                "rel": "information_link",
                "method": "GET"
            }
        ]
    }
    2022-07-19T11:16:40+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Create Order API ) ------------------->
    {
        "intent": "CAPTURE",
        "application_context": {
            "brand_name": "Meindl Fashion Sandbox",
            "locale": "de-DE",
            "landing_page": "LOGIN",
            "shipping_preference": "SET_PROVIDED_ADDRESS",
            "user_action": "PAY_NOW",
            "return_url": "https:\/\/stage.meindl-fashion.de\/wc-api\/Eh_PayPal_Express_Payment\/?c=order_details&p=https:\/\/stage.meindl-fashion.de\/kasse\/&intent=CAPTURE",
            "cancel_url": "https:\/\/stage.meindl-fashion.de\/kasse\/?cancel_express_checkout=cancel"
        },
        "purchase_units": [
            {
                "items": [
                    {
                        "name": "Rehlederhose Herren \"Montgomery Bermuda\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 48",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 738.71
                        }
                    },
                    {
                        "name": "Rehlederhose Herren \"Wildwood Short\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 54",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 713.45
                        }
                    }
                ],
                "amount": {
                    "currency_code": "EUR",
                    "value": 1732.05,
                    "breakdown": {
                        "item_total": {
                            "currency_code": "EUR",
                            "value": 1452.16
                        },
                        "shipping": {
                            "currency_code": "EUR",
                            "value": 3.99
                        },
                        "tax_total": {
                            "currency_code": "EUR",
                            "value": 275.91
                        },
                        "shipping_discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "handling": {
                            "currency_code": "EUR",
                            "value": 0
                        }
                    }
                },
                "shipping": {
                    "name": {
                        "full_name": "Max Huch"
                    },
                    "address": {
                        "address_line_1": "Ferdinand-Wallbrecht-Stra\u00dfe 4",
                        "address_line_2": "",
                        "admin_area_2": "Hannover",
                        "admin_area_1": "",
                        "postal_code": "30163",
                        "country_code": "DE"
                    }
                }
            }
        ]
    }
    2022-07-19T11:16:41+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Response on Create Order API ) ------------------->
    {
        "name": "UNPROCESSABLE_ENTITY",
        "details": [
            {
                "field": "\/purchase_units\/@reference_id=='default'\/amount\/value",
                "value": "1732.05",
                "issue": "AMOUNT_MISMATCH",
                "description": "Should equal item_total + tax_total + shipping + handling + insurance - shipping_discount - discount."
            }
        ],
        "message": "The requested action could not be performed, semantically incorrect, or failed business validation.",
        "debug_id": "b7c6f7212b347",
        "links": [
            {
                "href": "https:\/\/developer.paypal.com\/docs\/api\/orders\/v2\/#error-AMOUNT_MISMATCH",
                "rel": "information_link",
                "method": "GET"
            }
        ]
    }
    2022-07-19T11:17:55+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Create Order API ) ------------------->
    {
        "intent": "CAPTURE",
        "application_context": {
            "brand_name": "Meindl Fashion Sandbox",
            "locale": "de-DE",
            "landing_page": "LOGIN",
            "shipping_preference": "SET_PROVIDED_ADDRESS",
            "user_action": "PAY_NOW",
            "return_url": "https:\/\/stage.meindl-fashion.de\/wc-api\/Eh_PayPal_Express_Payment\/?c=order_details&p=https:\/\/stage.meindl-fashion.de\/kasse\/&intent=CAPTURE",
            "cancel_url": "https:\/\/stage.meindl-fashion.de\/kasse\/?cancel_express_checkout=cancel"
        },
        "purchase_units": [
            {
                "items": [
                    {
                        "name": "Rehlederhose Herren \"Montgomery Bermuda\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 48",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 738.71
                        }
                    },
                    {
                        "name": "Rehlederhose Herren \"Wildwood Short\" - Fb. ahorn x 1",
                        "description": "Gr\u00f6\u00dfe : 54",
                        "quantity": 1,
                        "unit_amount": {
                            "currency_code": "EUR",
                            "value": 713.45
                        }
                    }
                ],
                "amount": {
                    "currency_code": "EUR",
                    "value": 1732.05,
                    "breakdown": {
                        "item_total": {
                            "currency_code": "EUR",
                            "value": 1452.16
                        },
                        "shipping": {
                            "currency_code": "EUR",
                            "value": 3.99
                        },
                        "tax_total": {
                            "currency_code": "EUR",
                            "value": 1728.06
                        },
                        "shipping_discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "discount": {
                            "currency_code": "EUR",
                            "value": 0
                        },
                        "handling": {
                            "currency_code": "EUR",
                            "value": 0
                        }
                    }
                },
                "shipping": {
                    "name": {
                        "full_name": "Max Huch"
                    },
                    "address": {
                        "address_line_1": "Ferdinand-Wallbrecht-Stra\u00dfe 4",
                        "address_line_2": "",
                        "admin_area_2": "Hannover",
                        "admin_area_1": "",
                        "postal_code": "30163",
                        "country_code": "DE"
                    }
                }
            }
        ]
    }
    2022-07-19T11:17:56+00:00 DEBUG <------------------- WebToffee PayPal Express Payment ( Response on Create Order API ) ------------------->
    {
        "name": "UNPROCESSABLE_ENTITY",
        "details": [
            {
                "field": "\/purchase_units\/@reference_id=='default'\/amount\/value",
                "value": "1732.05",
                "issue": "AMOUNT_MISMATCH",
                "description": "Should equal item_total + tax_total + shipping + handling + insurance - shipping_discount - discount."
            }
        ],
        "message": "The requested action could not be performed, semantically incorrect, or failed business validation.",
        "debug_id": "130ee910b50ee",
        "links": [
            {
                "href": "https:\/\/developer.paypal.com\/docs\/api\/orders\/v2\/#error-AMOUNT_MISMATCH",
                "rel": "information_link",
                "method": "GET"
            }
        ]
    }
    
    Thread Starter maxhuch

    (@maxhuch)

    And i found a fix for ITEM_TOTAL_MISMATCH in the default woocommerce plugin.
    https://github.com/woocommerce/woocommerce-paypal-payments/releases

    Plugin Author WebToffee

    (@webtoffee)

    Hi @maxhuch,

    Thanks for reaching out to us.

    We have developed a code snippet to overcome the line item total mismatch error between the plugin and WooCommerce. Kindly use the code snippet from here and let us know how it goes.

    PS: We have added this fix to the development backlog and will be implemented in the upcoming release.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Sometimes UNPROCESSABLE_ENTITY Error’ is closed to new replies.