MCP Tools Reference: paydeveloper.googleapis.com

Tool: list_google_pay_integrations

Returns the current status and configuration details for all Google Pay integrations associated with a specific Merchant ID. It provides immediate feedback on the status of integration and document reviews.

The following sample demonstrate how to use curl to invoke the list_google_pay_integrations MCP tool.

Curl Request
                  
curl --location 'https://paydeveloper.googleapis.com/mcp' \
--header 'content-type: application/json' \
--header 'accept: application/json, text/event-stream' \
--data '{
  "method": "tools/call",
  "params": {
    "name": "list_google_pay_integrations",
    "arguments": {
      // provide these details according to the tool's MCP specification
    }
  },
  "jsonrpc": "2.0",
  "id": 1
}'
                

Input Schema

Request message for listing Google Pay integrations for a specific merchant.

ListGooglePayIntegrationsRequest

JSON representation
{
  "merchantId": string
}
Fields
merchantId

string

Required. The merchant id, for which to list integrations.

Output Schema

Response message for listing Google Pay integrations.

ListGooglePayIntegrationsResponse

JSON representation
{
  "googlePayIntegrations": [
    {
      object (GooglePayIntegration)
    }
  ]
}
Fields
googlePayIntegrations[]

object (GooglePayIntegration)

The Google Pay integrations of the merchant.

GooglePayIntegration

JSON representation
{
  "integrationState": enum (IntegrationState),
  "createTime": string,
  "updateTime": string,
  "integrationType": enum (IntegrationType),
  "integrationDocuments": [
    {
      object (IntegrationDocument)
    }
  ],

  // Union field item can be only one of the following:
  "webDomain": string,
  "androidAppPackage": string
  // End of list of possible types for union field item.
}
Fields
integrationState

enum (IntegrationState)

Output only. The Google Pay integration state of the merchant.

createTime

string (Timestamp format)

Output only. When the integration resource was created.

Uses RFC 3339, where generated output will always be Z-normalized and use 0, 3, 6 or 9 fractional digits. Offsets other than "Z" are also accepted. Examples: "2014-10-02T15:01:23Z", "2014-10-02T15:01:23.045123456Z" or "2014-10-02T15:01:23+05:30".

updateTime

string (Timestamp format)

Output only. When the integration resource was last updated.

Uses RFC 3339, where generated output will always be Z-normalized and use 0, 3, 6 or 9 fractional digits. Offsets other than "Z" are also accepted. Examples: "2014-10-02T15:01:23Z", "2014-10-02T15:01:23.045123456Z" or "2014-10-02T15:01:23+05:30".

integrationType

enum (IntegrationType)

Optional. The integration type of the Google Pay integration.

integrationDocuments[]

object (IntegrationDocument)

Optional. Input only. The integration documents of the Google Pay integration.

Union field item. The integration item. One of these must be set. item can be only one of the following:
webDomain

string

The web domain of the merchant.

androidAppPackage

string

The Android app package name of the merchant.

Timestamp

JSON representation
{
  "seconds": string,
  "nanos": integer
}
Fields
seconds

string (int64 format)

Represents seconds of UTC time since Unix epoch 1970-01-01T00:00:00Z. Must be between -62135596800 and 253402300799 inclusive (which corresponds to 0001-01-01T00:00:00Z to 9999-12-31T23:59:59Z).

nanos

integer

Non-negative fractions of a second at nanosecond resolution. This field is the nanosecond portion of the duration, not an alternative to seconds. Negative second values with fractions must still have non-negative nanos values that count forward in time. Must be between 0 and 999,999,999 inclusive.

IntegrationDocument

JSON representation
{
  "name": string,
  "data": string,
  "documentType": enum (DocumentType),
  "mimeType": enum (MimeType)
}
Fields
name

string

Optional. The name of the document.

data

string (bytes format)

Optional. The data of the document.

A base64-encoded string.

documentType

enum (DocumentType)

Optional. The type of the document.

mimeType

enum (MimeType)

Optional. The mime type of the document.

Tool Annotations

Destructive Hint: ❌ | Idempotent Hint: ✅ | Read Only Hint: ✅ | Open World Hint: ❌