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
|
Required. The merchant id, for which to list integrations. |
Output Schema
Response message for listing Google Pay integrations.
ListGooglePayIntegrationsResponse
| JSON representation |
|---|
{
"googlePayIntegrations"
:
[
{
object (
|
| Fields | |
|---|---|
googlePayIntegrations[]
|
The Google Pay integrations of the merchant. |
GooglePayIntegration
| JSON representation |
|---|
{ "integrationState" : enum ( |
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
)
Required. The integration type of the Google Pay integration.
integrationDocuments[]
object (
IntegrationDocument
)
Required. Input only. The integration documents of the Google Pay integration.
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
|
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
|
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 ( |
| Fields | |
|---|---|
name
|
Required. The name of the document. |
data
|
Required. The data of the document. A base64-encoded string. |
documentType
|
Required. The type of the document. |
mimeType
|
Required. The mime type of the document. |
IntegrationState
The Google Pay integration state of a merchant web domain or Android app.
| Enums | |
|---|---|
INTEGRATION_STATE_UNSPECIFIED
|
The integration state is unspecified. |
NOT_STARTED
|
This state is for when the Android app is associated with the developer (on Play Store) and the developer hasn't started any integration process for it. |
INCOMPLETE
|
The developer hasn't submitted the integration for review yet and it's also not complete (e.g. missing supporting documents). |
READY_FOR_REVIEW
|
The developer hasn't submitted the integration for review yet but it's ready for review (e.g. supporting documents have been uploaded). |
UNDER_REVIEW
|
The integration enablement request is pending review by the admin. |
NEED_INFO
|
The integration needs more information by gTech admin during the review. |
ACTIVE
|
The integration is currently active. |
DELETED
|
The integration is deleted by the merchant. |
REJECTED
|
The integration is rejected. |
IntegrationType
The integration type of a Google Pay integration.
| Enums | |
|---|---|
INTEGRATION_TYPE_UNSPECIFIED
|
The integration type is unspecified. |
DIRECT_INTEGRATION
|
The integration type is direct integration. |
PAYMENT_SERVICE_PROVIDER
|
The integration type is payment service provider. |
DocumentType
The type of a document.
| Enums | |
|---|---|
DOCUMENT_TYPE_UNSPECIFIED
|
The document type is unspecified. |
ITEM_SELECTION_SCREENSHOT
|
When a user is browsing an item or service. |
PRE_PURCHASE_SCREENSHOT
|
When a user is ultimately ready to make a purchase. |
PAYMENT_METHOD_SCREENSHOT
|
When a user selects Google Pay as their payment method. |
PAYMENT_INFO_SCREENSHOT
|
When a user is shown the payment info they’ve saved to Google Pay. Tip: Android won't allow you to take a screenshot of this screen, so take a picture of the screen using another device. |
POST_PURCHASE_SCREENSHOT
|
When a user has made a successful purchase. |
PCI_ATTESTATION_DOCUMENT
|
PCI attestation document in PDF format. |
MimeType
The mime type of a document.
| Enums | |
|---|---|
MIME_TYPE_UNSPECIFIED
|
The mime type is unspecified. |
JPEG
|
The mime type is JPEG. |
PNG
|
The mime type is PNG. |
WEBP
|
The mime type is WEBP. |
PDF
|
The mime type is PDF. |
Tool Annotations
Destructive Hint: ❌ | Idempotent Hint: ✅ | Read Only Hint: ✅ | Open World Hint: ❌

