Method: deviceCaptureResultNotification
Stay organized with collections
Save and categorize content based on your preferences.
Notify Google of the result of a device capture after a generateDeviceCaptureToken
method call has been made.
The deviceCaptureResult
value is idempotent for this generateDeviceCaptureTokenRequestId
, so its value must be identical to any value communicated via generateDeviceCaptureToken
or getDeviceCaptureResult
, and cannot be changed by a subsequent call to this method.
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,
"minor": 1,
"revision": 0
},
"requestId": "KcgwSKrV76eVNDUbsZ4UA3",
"requestTimestamp": "1481852928293"
},
"paymentIntegratorAccountId": "InvisiCashUSA_USD",
"generateDeviceCaptureTokenRequestId": "awNaC510cefae3IJdNEvW2",
"deviceCaptureResult": {
"deviceCaptureResultCode": "SUCCESS"
}
}
An example response looks like:
{
"responseHeader": {
"responseTimestamp": "1481852928324"
},
"result": "SUCCESS"
}
HTTP request
POST https://vgw.googleapis.com/gsp/value-on-device-fop-v1/deviceCaptureResultNotification/:PIAID
Request body
The request body contains data with the following structure:
JSON representation |
{
"requestHeader": {
object (RequestHeader)
},
"paymentIntegratorAccountId": string,
"generateDeviceCaptureTokenRequestId": string,
"deviceCaptureResult": {
object (DeviceCaptureResult)
}
} |
Fields |
requestHeader |
object (RequestHeader)
REQUIRED: Common header for all requests.
|
paymentIntegratorAccountId |
string
REQUIRED: Payment integrator account identifier on which the device capture occurred.
|
generateDeviceCaptureTokenRequestId |
string
REQUIRED: A unique identifier for this transaction. This is the requestId generated by Google during the generateDeviceCaptureToken call which this request is associated with.
|
deviceCaptureResult |
object (DeviceCaptureResult)
REQUIRED: Result of this device capture.
|
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 |
object (DeviceCaptureResultNotificationResponse )
|
HTTP 4XX / 5XX Status |
object (ErrorResponse)
|
DeviceCaptureResultNotificationResponse
Response object for the deviceCaptureResultNotification
method.
DeviceCaptureResultNotificationResultCode
Result codes for the deviceCaptureResultNotification
method.
Enums |
UNKNOWN_RESULT |
Do not ever set this default value! |
SUCCESS |
Capture result notification was successful. |
All rights reserved. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2025-02-28 UTC.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-02-28 UTC."],[[["\u003cp\u003eThis endpoint allows notifying Google of the result of a device capture after a \u003ccode\u003egenerateDeviceCaptureToken\u003c/code\u003e call.\u003c/p\u003e\n"],["\u003cp\u003eThe \u003ccode\u003edeviceCaptureResult\u003c/code\u003e value must be idempotent and identical to any value previously communicated.\u003c/p\u003e\n"],["\u003cp\u003eSuccessful calls return an HTTP 200 response with a \u003ccode\u003eDeviceCaptureResultNotificationResponse\u003c/code\u003e object.\u003c/p\u003e\n"],["\u003cp\u003eError responses will be HTTP 4xx or 5xx and may contain an \u003ccode\u003eErrorResponse\u003c/code\u003e or a generic error message.\u003c/p\u003e\n"],["\u003cp\u003eThe \u003ccode\u003edeviceCaptureResultNotification\u003c/code\u003e method uses specific result codes, including \u003ccode\u003eSUCCESS\u003c/code\u003e and \u003ccode\u003eUNKNOWN_RESULT\u003c/code\u003e (which should never be set).\u003c/p\u003e\n"]]],["This outlines the process to notify Google of a device capture result via the `deviceCaptureResultNotification` method. It uses a POST request to a specific endpoint, including `requestHeader`, `paymentIntegratorAccountId`, `generateDeviceCaptureTokenRequestId`, and `deviceCaptureResult` in the request body. The `deviceCaptureResult` must remain consistent with previous communications. A successful notification returns a 200 HTTP status with a `DeviceCaptureResultNotificationResponse`, while errors trigger a 4xx or 5xx status with an `ErrorResponse`.\n"],null,["# Method: deviceCaptureResultNotification\n\n- [HTTP request](#body.HTTP_TEMPLATE)\n- [Request body](#body.request_body)\n - [JSON representation](#body.request_body.SCHEMA_REPRESENTATION)\n- [Response body](#body.response_body)\n- [DeviceCaptureResultNotificationResponse](#DeviceCaptureResultNotificationResponse)\n - [JSON representation](#DeviceCaptureResultNotificationResponse.SCHEMA_REPRESENTATION)\n- [DeviceCaptureResultNotificationResultCode](#DeviceCaptureResultNotificationResultCode)\n\nNotify Google of the result of a device capture after a `generateDeviceCaptureToken` method call has been made.\n\nThe `deviceCaptureResult` value is idempotent for this `generateDeviceCaptureTokenRequestId`, so its value must be identical to any value communicated via `generateDeviceCaptureToken` or `getDeviceCaptureResult`, and cannot be changed by a subsequent call to this method.\n\nIf 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`](/pay/value-on-device-fop-v1/payment-integrator-value-on-device-fop-api/ErrorResponse) or contain a generic error (e.g. a message similar to \"There was an error. Please try again later.\").\n\nThe generic error is used in situations where an [`ErrorResponse`](/pay/value-on-device-fop-v1/payment-integrator-value-on-device-fop-api/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`](/pay/value-on-device-fop-v1/payment-integrator-value-on-device-fop-api/ErrorResponse).\n\nAn example request looks like: \n\n\n {\n \"requestHeader\": {\n \"protocolVersion\": {\n \"major\": 1,\n \"minor\": 1,\n \"revision\": 0\n },\n \"requestId\": \"KcgwSKrV76eVNDUbsZ4UA3\",\n \"requestTimestamp\": \"1481852928293\"\n },\n \"paymentIntegratorAccountId\": \"InvisiCashUSA_USD\",\n \"generateDeviceCaptureTokenRequestId\": \"awNaC510cefae3IJdNEvW2\",\n \"deviceCaptureResult\": {\n \"deviceCaptureResultCode\": \"SUCCESS\"\n }\n }\n\nAn example response looks like: \n\n\n {\n \"responseHeader\": {\n \"responseTimestamp\": \"1481852928324\"\n },\n \"result\": \"SUCCESS\"\n }\n\n### HTTP request\n\n`POST https://vgw.googleapis.com/gsp/value-on-device-fop-v1/deviceCaptureResultNotification/`[:PIAID](/pay/value-on-device-fop-v1/reference/glossary#payment_integrator_account_id)\n\n### Request body\n\nThe request body contains data with the following structure:\n\n| JSON representation |\n|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| ``` { \"requestHeader\": { object (/pay/value-on-device-fop-v1/payment-integrator-value-on-device-fop-api/RequestHeader) }, \"paymentIntegratorAccountId\": string, \"generateDeviceCaptureTokenRequestId\": string, \"deviceCaptureResult\": { object (/pay/value-on-device-fop-v1/payment-integrator-value-on-device-fop-api/getDeviceCaptureResult#DeviceCaptureResult) } } ``` |\n\n| Fields ||\n|---------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| `requestHeader` | `object (`[RequestHeader](/pay/value-on-device-fop-v1/payment-integrator-value-on-device-fop-api/RequestHeader)`)` **REQUIRED**: Common header for all requests. |\n| `paymentIntegratorAccountId` | `string` **REQUIRED**: Payment integrator account identifier on which the device capture occurred. |\n| `generateDeviceCaptureTokenRequestId` | `string` **REQUIRED** : A unique identifier for this transaction. This is the `requestId` generated by Google during the `generateDeviceCaptureToken` call which this request is associated with. |\n| `deviceCaptureResult` | `object (`[DeviceCaptureResult](/pay/value-on-device-fop-v1/payment-integrator-value-on-device-fop-api/getDeviceCaptureResult#DeviceCaptureResult)`)` **REQUIRED**: Result of this device capture. |\n\n### Response body\n\nThis 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](/pay/value-on-device-fop-v1/guides/connectivity/protocol-standards#http_status_codes).\n\n| Possible response messages ||\n|-----------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| HTTP 200 Status | `object (`[DeviceCaptureResultNotificationResponse](/pay/value-on-device-fop-v1/google-value-on-device-fop-api/deviceCaptureResultNotification#DeviceCaptureResultNotificationResponse)`)` |\n| HTTP 4XX / 5XX Status | `object (`[ErrorResponse](/pay/value-on-device-fop-v1/payment-integrator-value-on-device-fop-api/ErrorResponse)`)` |\n\nDeviceCaptureResultNotificationResponse\n---------------------------------------\n\nResponse object for the `deviceCaptureResultNotification` method.\n\n| JSON representation |\n|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| ``` { \"responseHeader\": { object (/pay/value-on-device-fop-v1/payment-integrator-value-on-device-fop-api/ResponseHeader) }, \"result\": enum (/pay/value-on-device-fop-v1/google-value-on-device-fop-api/deviceCaptureResultNotification#DeviceCaptureResultNotificationResultCode) } ``` |\n\n| Fields ||\n|------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| `responseHeader` | `object (`[ResponseHeader](/pay/value-on-device-fop-v1/payment-integrator-value-on-device-fop-api/ResponseHeader)`)` **REQUIRED**: Common header for all responses. |\n| `result` | `enum (`[DeviceCaptureResultNotificationResultCode](/pay/value-on-device-fop-v1/google-value-on-device-fop-api/deviceCaptureResultNotification#DeviceCaptureResultNotificationResultCode)`)` **REQUIRED**: Result of this call. |\n\nDeviceCaptureResultNotificationResultCode\n-----------------------------------------\n\nResult codes for the `deviceCaptureResultNotification` method.\n\n| Enums ||\n|------------------|---------------------------------------------|\n| `UNKNOWN_RESULT` | Do not ever set this default value! |\n| `SUCCESS` | Capture result notification was successful. |"]]