## Setup the Google Pay™
To setup Google Pay™ into your website, follow these steps:
1. Include the Google Pay™ method in the request as the payment method


```json
{
  "payment_data": {
    "merchant_payment_id": "P_001",
    "methods": ["CARD", "GOOGLE_PAY"],
    "type": "SALE",
    "amount": 9.99,
    "currency_code": "EUR"
  },
  "customer": {
    "merchant_customer_id": "U_001"
  },
  "callback": {
    "success_url": "https://example.com/success",
    "failure_url": "https://example.com/failure"
  },
  "products": [
    {
      "type": "SALE",
      "name": "Test product name",
      "description": "Test product description",
      "price": 9.99
    }
  ]
}
```
1. Configure Transaction Routing for Google Pay™ method, specify card schemes, currency and processor
2. Add information to your site that you support the Google Pay™ payment method and that you accept the terms defined in the [Google Pay API Terms of Service](https://payments.developers.google.com/terms/sellertos).

