- HTTP request
- Request body
- Response body
- MandateStatus
- MandateCancelled
- MandatePaused
- UpdateMandateStatusResponse
- UpdateMandateStatusResult
Inform Google of a change in status of a mandate due to user activities outside of Google.
An example request looks like:
{
"requestHeader": {
"protocolVersion": {
"major": 1
},
"requestId": "cmVxdWVzdDE",
"requestTimestamp": {
"epochMillis": "1481899949606"
},
"paymentIntegratorAccountId": "SpeedyPaymentsIndia_INR"
},
"mandateId": "MA061B00045154",
"updateSequenceTimestamp": {
"epochMillis": "1481899949606"
},
"mandateStatus": {
"mandateCancelled": {}
}
}
An example response looks like:
{
"responseHeader": {
"responseTimestamp": {
"epochMillis": "1481899949611"
}
},
"result": {
"success": {}
}
}
HTTP request
POST https://vgw.googleapis.com/secure-serving/gsp/india-cards-v1/cardMandateManagement/updateMandateStatus/:PIAID
Request body
The request body contains data with the following structure:
| JSON representation |
|---|
{
"requestHeader": {
object (RequestHeader)
},
"mandateId": string,
"updateSequenceTimestamp": {
object (Timestamp)
},
"mandateStatus": {
object ( |
| Fields | |
|---|---|
requestHeader |
REQUIRED: Common header for all requests. |
mandateId |
REQUIRED: The unique identifier for the mandate that is being updated. |
updateSequenceTimestamp |
REQUIRED: A timestamp (in UTC) describing when this request was sent. |
mandateStatus |
REQUIRED: The latest status of this mandate. |
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.
| JSON representation |
|---|
{
// The following is a list of mutually exclusive fields. At most one of the
// fields will be set in a response:
"response": {
object ( |
| Possible response messages | |
|---|---|
| HTTP 200 Status |
The standard response message for |
| HTTP 4XX / 5XX Status |
The error response message for |
| End of mutually exclusive fields. | |
MandateStatus
The status of a mandate.
| JSON representation |
|---|
{ // The following is a list of mutually exclusive fields. At most one of the // fields will be set in a response: "mandateActive": { object (Empty) }, "mandateCancelled": { object ( |
| Fields | |
|---|---|
| REQUIRED: The status must contain exactly one of these messages. The following is a list of mutually exclusive fields. At most one of the fields will be set in a response: | |
mandateActive |
The mandate is active and can be used for transactions. |
mandateCancelled |
The mandate is cancelled and cannot be used for future transactions. |
mandatePaused |
The mandate is paused and cannot be used for transactions until re-activated. |
| End of mutually exclusive fields. | |
MandateCancelled
This mandate is cancelled in the network.
| JSON representation |
|---|
{ "rawResult": { object (RawResult) } } |
| Fields | |
|---|---|
rawResult |
OPTIONAL: Raw result of this event. 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 |
MandatePaused
This mandate is paused in the network.
| JSON representation |
|---|
{ "rawResult": { object (RawResult) } } |
| Fields | |
|---|---|
rawResult |
OPTIONAL: Raw result of this event. 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 |
UpdateMandateStatusResponse
Response object for the updateMandateStatus method.
| JSON representation |
|---|
{
"responseHeader": {
object (ResponseHeader)
},
"result": {
object ( |
| Fields | |
|---|---|
responseHeader |
REQUIRED: Common header for all responses. |
result |
REQUIRED: Result of this call. |
UpdateMandateStatusResult
Result codes for the updateMandateStatus method.
| JSON representation |
|---|
{ // The following is a list of mutually exclusive fields. At most one of the // fields will be set in a response: "success": { object (Empty) } // End of mutually exclusive fields. } |
| Fields | |
|---|---|
| REQUIRED: The result must contain exactly one of these messages. The following is a list of mutually exclusive fields. At most one of the fields will be set in a response: | |
success |
Update mandate status was successfully processed. |
| End of mutually exclusive fields. | |