Notifies Google of the final result of an asynchronousRefund
request.
The refundResult
value is idempotent for this refundRequestId
and cannot be changed by a subsequent call to this method.
If the endpoint encounters an error while processing the request, the response from this endpoint will be of type
.ErrorResponse
Responses to this query may be empty if this method does not return an HTTP 200. The response body is empty in situations where an
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 an HTTP 404 with an empty body. If the request signature could be verified, additional information regarding the error will be returned in the response body.ErrorResponse
An example request looks like:
{
"requestHeader": {
"protocolVersion": {
"major": 1,
"minor": 0,
"revision": 0
},
"requestId": "8a986fe8-5a2c-45a4-a1bb-3bed6e651020",
"requestTimestamp": "1482452962000"
},
"paymentIntegratorAccountId": "SpeedyPaymentsIndia_INR",
"paymentIntegratorRefundId": "UJ97F3RY8R",
"refundRequestId": "liUrreQY233839dfFFb24gaQM",
"refundResult": "SUCCESS",
"rawResult": {
"scope": "VISA",
"rawCode": "00"
}
}
An example response looks like:
{
"responseHeader": {
"responseTimestamp": "1482452962840"
},
"result": "SUCCESS"
}
HTTP request
POST https://vgw.googleapis.com/secure-serving/gsp/google-card-fop-api/v1/refundResultNotification/:PIAID
Request body
The request body contains data with the following structure:
JSON representation |
---|
{ "requestHeader": { object ( |
Fields | |
---|---|
requestHeader |
REQUIRED: Common header for all requests. |
paymentIntegratorAccountId |
REQUIRED: This is the payment integrator account identifier that identifies contractual constraints around this transaction. |
paymentIntegratorRefundId |
OPTIONAL: This identifier is specific to the integrator and is generated by the integrator. The integrator identifies this refund in their system by this identifier. For convenience, this identifier is included with in the remittance details |
refundRequestId |
REQUIRED: A unique identifier for the refund. This is the |
refundResult |
REQUIRED: Result of this refund. |
rawResult |
OPTIONAL: Raw result of this refund. Used to help inform Google's risk engine and analytics. In decline code–mapping situations, data is sometimes lost. The integrator can choose to give Google a raw code. For example, a credit card gateway (the integrator) may use this field to communicate to Google the exact decline code that was received from the VISA network. In that case, the This value is required if the |
Response body
If successful, the response body contains data with the following structure:
Response object for the Google hosted RefundNotification method.
JSON representation |
---|
{ "responseHeader": { object ( |
Fields | |
---|---|
responseHeader |
REQUIRED: Common header for all responses. |
result |
REQUIRED: Result of this call. |
RefundResultCode
Result codes for refunds.
Enums | |
---|---|
REFUND_RESULT_CODE_UNSPECIFIED |
Do not ever set this default value! |
SUCCESS |
Successful refund. |
NO_MONEY_LEFT_ON_TRANSACTION |
Refund failed, there is no money left on the transaction. Typically this represents bug between the integrator and Google. Google should not ask to refund an amount greater than the original capture. |
REFUND_WINDOW_EXCEEDED |
The refund cannot be processed because the request is outside of the allowed refund period. |
NOT_SUPPORTED_BY_NETWORK |
Refund is not supported by network. For example, a partial refund. |
ISSUER_DECLINED |
The refund was declined by the issuer. |
RefundResultNotificationResultCode
Result codes for the refundResultNotification
method.
Enums | |
---|---|
REFUND_RESULT_NOTIFICATION_RESULT_CODE_UNSPECIFIED |
Do not ever set this default value! |
SUCCESS |
Refund result notification was successfully processed. |