PATCH /cloudapi/v1/lanes/{{laneId}}
endpoint to update configuration for a specific lane.
The intention is that the end user initiates this endpoint to update a lane.
The following optional features can be enabled/disabled via this request:
* Features may be device and device software version specific.
Ingenico Telium devices and Verifone Mx915 and Mx925 devices can allow for MSD contactless, however recommended to support EMV contactless if possible.
EMV Contactless and Quick Chip features can be updated on Ingenico devices with RBA 23 and Verifone Mx915 and Mx925 devices with 5400D.
The new values will not update in a response, unless specified in the request.
There are defaults and validation errors from this API as follows:
contactlessMsdEnabled = true
, contactless MSD will be enabled on the device. (Only set if EMV Contactless is not supported by your account and gateway.)contactlessEmvEnabled = true
, contactless EMV will be enabled on the device.quickChipEnabled = true
, quick chip will be enabled on the device.quickChipDataLifetime
is set to any value, quickChipDataLifetime will be set to that value on the device.contactlessEmvEnabled
to a non-boolean value, the error will be contactlessEmvEnabled must be Boolean.
.contactlessMsdEnabled
to a non-boolean value, the error will be contactlessMsdEnabled must be Boolean.
.quickChipEnabled
to a non-boolean value, the error will be quickChipEnabled must be Boolean.
.quickChipDataLifetime
is set to a value outside of 30 - 600, the error will be Valid QuickChipDataLifetime value in seconds between 30-600.
.contactlessEmvEnabled = true
, the error will be Contactless EMV is not supported on this device.
.quickChipEnabled = true
, the error will be Quick Chip is not supported on this device.
.quickChipDataLifetime
is set to any value, the error will be Quick Chip is not supported on this device.
.contactlessEmvEnabled = true
, the error will be Contactless EMV is not supported on this device.
.quickChipEnabled = true
, the error will be Quick Chip is not supported on this device.
.quickChipDataLifetime
is set to any value, the error will be Quick Chip is not supported on this device.
.
The Quick Chip feature requires changes to the transaction flow as well as new fields.
See the following for more information:
Here is an example request enabling new features:
{ "contactlessEmvEnabled": true, "contactlessMsdEnabled": false, "quickChipEnabled": true, "quickChipDataLifetime": 240, "language": "english" }