AI-generated Key Takeaways
-
This API notifies Google of a refund reversal, indicating funds are being returned to Google by the issuer after a previous refund.
-
Upon a successful request, an HTTP 200 and an
EchoResponse
will be returned, while errors will result in HTTP 4xx or 5xx with either anErrorResponse
or a generic error message. -
The request body includes details like the original refund request ID, amount being reversed, and raw result from the issuer.
-
The response body will contain a
ReverseRefundNotificationResponse
with a result code indicating success or failure of the notification. -
The
ReverseRefundNotificationResultCode
provides specific result codes, withSUCCESS
signifying the notification was processed successfully.
- HTTP request
- Request body
- Response body
- ReverseRefundNotificationResponse
- ReverseRefundNotificationResultCode
Notifies Google of a refund that is being reversed.
This signifies that a previously successful refund is being reversed and funds are being returned to Google by the issuer.
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
or contain a generic error (e.g. a message similar to "There was an error. Please try again later.").
The generic error is used in situations where an ErrorResponse
with a clear description could be used to help an attacker understand the payment integrator account identifier of other integrators. In these situations, where either the signing key doesn't match, the payment integrator identifier was not found, or the encryption key was unknown, this method will return a generic error. If the request signature could be verified, additional information regarding the error will be returned in an ErrorResponse
.
An example request looks like:
{
"requestHeader": {
"protocolVersion": {
"major": 1
},
"requestId": "9e4a71df-bf46-44fb-8cad-f1b533e94a78",
"requestTimestamp": {
"epochMillis": 1483711327000
},
"paymentIntegratorAccountId": "SpeedyPaymentsIndia_INR"
},
"refundRequestId": "8a986fe8-5a2c-45a4-a1bb-3bed6e651020",
"amount": "54390000",
"rawResult": {
"scope": "VISA",
"rawCode": "07"
}
}
An example response looks like:
{
"responseHeader": {
"responseTimestamp": {
"epochMillis": 1483711328235
}
},
"result": "SUCCESS"
}
HTTP request
POST https://vgw.googleapis.com/secure-serving/gsp/google-authenticated-card-fop-api/v1/reverseRefundNotification/:PIAID
Request body
The request body contains data with the following structure:
JSON representation |
---|
{ "requestHeader": { object (RequestHeader) }, "refundRequestId": string, "amount": string, "rawResult": { object (RawResult) } } |
Fields | |
---|---|
requestHeader |
REQUIRED: Common header for all requests. |
refundRequestId |
REQUIRED: A unique identifier for the refund that is being reversed. This is the |
amount |
REQUIRED: The amount of the refund that is being reversed, in micros of the currency unit. This is greater than zero but can be less than or equal to the amount in the |
rawResult |
REQUIRED: Raw result of the refund reversal request from the issuer. Used to help inform Google's risk engine and analytics. |
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 |
|
ReverseRefundNotificationResponse
Response object for Google hosted india-cards-v1.reverseRefundNotification method.
JSON representation |
---|
{
"responseHeader": {
object (ResponseHeader)
},
"result": enum ( |
Fields | |
---|---|
responseHeader |
REQUIRED: Common header for all responses. |
result |
REQUIRED: Result of this call. |
ReverseRefundNotificationResultCode
Result codes for the reverseRefundNotification
method.
Enums | |
---|---|
REVERSE_REFUND_NOTIFICATION_RESULT_CODE_UNSPECIFIED |
Do not ever set this default value! |
SUCCESS |
Reverse refund notification was successfully processed. |