Get Device Fingerprint details
Payments
The payments REST services allow you to initiate a payment, retrieve the payment details or perform specific actions like refunding or requesting capture of a payment. A payment is identified by its paymentId. Some payment products allow a two step approach allowing you to control when the authorization takes place separate from when the funds are actually captured.
Request
Retrieves the detailed information that was collected the using the Device Fingerprint collector based on the ID of the payment. The details are returned as a string in the rawDeviceFingerprintOutput property. The structure will be different depending on the collection method and device fingerprint partner used. Please contact us if you want more information on the details that are returned in this string.
Responses
The detailed information that was collected using the Device Fingerprint collector based on the ID of the payment.
Response 200 - OKDeviceFingerprintDetails
The response contains the Device Fingerprint data which has been collected
Properties
|
|||
Property | Type | Required | Details |
---|---|---|---|
paymentId | string | no | read close |
close
DescriptionThe ID of the payment that is linked to the Device Fingerprint data.
|
|||
rawDeviceFingerprintOutput | string | no | read close |
close
DescriptionThe detailed data that was collected during the Device Fingerprint collection. The structure will be different depending on the collection method and device fingerprint partner used. Please contact us if you want more information on the details that are returned in this string.
|
Response example
This scenario you will probably use the most
-
{ "paymentId" : "000000170100000100030000100001", "rawDeviceFingerprintOutput" : "{...}" }
Response 404 - Not foundErrorResponse
In case the Device Fingerprint data is not available, a HTTP 404 response is returned
Properties
|
|||
Property | Type | Required | Details |
---|---|---|---|
errorId | string | yes | read close |
close
DescriptionUnique reference, for debugging purposes, of this error response
|
|||
array of object | yes | read close | |
close
DescriptionList of one or more errors
|
|||
object | no | read close | |
category | string | no | read close |
close
DescriptionCategory the error belongs to. The category should give an indication of the type of error you are dealing with.
Possible values:
|
|||
code | string | yes | read close |
close
DescriptionError code
|
|||
httpStatusCode | integer | no | read close |
close
DescriptionHTTP status code for this error that can be used to determine the type of error
|
|||
id | string | no | read close |
close
DescriptionID of the error. This is a short human-readable message that briefly describes the error.
|
|||
message | string | no | read close |
close
DescriptionHuman-readable error message that is not meant to be relayed to customer as it might tip off people who are trying to commit fraud
|
|||
propertyName | string | no | read close |
close
DescriptionReturned only if the error relates to a value that was missing or incorrect.
Contains a location path to the value as a JSonata query. Some common examples:
|
|||
requestId | string | no | read close |
close
DescriptionID of the request that can be used for debugging purposes
|
Response example
This scenario you will probably use the most
-
{ "errorId" : "6c3711a9b48a7483433aa2b5a289c95d", "errors" : [ { "code" : "320404100", "id" : "DEVICE_FINGERPRINT_UNAVAILABLE", "category" : "CONNECT_PLATFORM_ERROR", "propertyName" : "paymentId", "message" : "Device Fingerprint data unavailable", "httpStatusCode" : 404 } ] }