AI-generated Key Takeaways
- 
          The Echo API tests connectivity between the payment integrator and Google, echoing back a client message for verification. 
- 
          Successful requests return an HTTP 200 status with an EchoResponseobject containing the originalclientMessageand an optionalserverMessage.
- 
          Errors result in HTTP 4xx or 5xx statuses, with responses typically containing an ErrorResponseobject, except when security concerns dictate a generic error message.
- 
          Request bodies require a requestHeaderfor identification and aclientMessagestring for echoing.
- 
          The API is accessed via a POST request to a specific URL, including the payment integrator's account ID. 
Echos back the clientMessage passed in.
The purpose of this method is to test basic connectivity between the payment integrator and Google.
If the echo is successful, the endpoint will return an HTTP 200 and the response will be of type EchoResponse
If the endpoint encounters an error while processing the request, the endpoint will return HTTP 4xx or 5xx and the HTTP body will either be of type ErrorResponse
The generic error is used in situations where an ErrorResponseErrorResponse
An example request looks like:
{
  "requestHeader": {
    "protocolVersion": {
      "major": 1,
      "minor": 0,
      "revision": 0
    },
    "requestId": "ZWNobyB0cmFuc2FjdGlvbg",
    "requestTimestamp": "1481899949606"
  },
  "clientMessage": "client message"
}
An example response looks like:
{
  "responseHeader": {
    "responseTimestamp": "1481900013178"
  },
  "clientMessage": "client message",
  "serverMessage": "server message"
}
HTTP request
POST https://vgw.googleapis.com/gsp/chargeback-alert-v1/echo/:PIAID
Request body
The request body contains data with the following structure:
| JSON representation | 
|---|
| {
  "requestHeader": {
    object ( | 
| Fields | |
|---|---|
| requestHeader | 
 REQUIRED: Common header for all requests. | 
| clientMessage | 
 REQUIRED: Message to echo in the response. | 
Response body
This method supports multiple return types. For additional information about what 4XX or 5XX HTTP status code to return with an ErrorResponse, consult the ErrorResponse object and HTTP status codes documentation.
| Possible response messages | |
|---|---|
| HTTP 200 Status | 
 | 
| HTTP 4XX / 5XX Status | 
 | 
EchoResponse
Response object for the echo method.
| JSON representation | 
|---|
| {
  "responseHeader": {
    object ( | 
| Fields | |
|---|---|
| responseHeader | 
 REQUIRED: Common header for all responses. | 
| clientMessage | 
 REQUIRED: Message received in the request. | 
| serverMessage | 
 OPTIONAL: Server message, independent of the  |