> ## Documentation Index
> Fetch the complete documentation index at: https://docs.gr4vy.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Decrypted Google Pay tokens

Some merchants and platforms may have the option to decrypt a Google Pay token themselves. For this scenario, direct pass through of these decrypted Google Pay tokens to the API is supported using the [`network-token` method](/reference/transactions/new-transaction#network-token-payment-method-create).

<CodeGroup>
  ```json Payment method theme={"system"}
  {
    "method": "network-token",
    "token": "4111111111111111",
    "expiration_date": "02/30",
    "cryptogram": "AAEBAwQjSQAAXX...",
    "eci": "05",
    "card_suffix": "1234", 
    "card_scheme": "visa",
    "card_source": "google-pay",
    "card holder_name": "John Smith"
  }
  ```
</CodeGroup>
