Skip to main content

Update a list of devices


ApiScope: payment.dealerdevices.update
API Scope Level: DealerScope
Path Parameters
    dealerUuid string required
Request Body array required
  • Array [
  • id int64
    uuid string
    deviceID string
    deviceType string
    gateway string
    dealerId int64 deprecated
    lastFourDigit string
    paymentDealer object
    dealerUuid string
    name string
    dealerDeviceAttributes object[]
  • Array [
  • id int64
    attributeName string
    attributeValue string
    dealerDeviceID int64
  • ]
  • ]
Responses

OK


Schema
    errors object[]
  • Array [
  • errorCode int32
    errorTitle string
    errorMessage string
    errorDescription string
  • ]
  • warnings object[]
  • Array [
  • warningCode int32
    warningTitle string
    warningMessage string
    warningDescription string
  • ]
  • dealerDevices object[]
  • Array [
  • id int64
    uuid string
    deviceID string
    deviceType string
    gateway string
    dealerId int64 deprecated
    lastFourDigit string
    paymentDealer object
    dealerUuid string
    name string
    dealerDeviceAttributes object[]
  • Array [
  • id int64
    attributeName string
    attributeValue string
    dealerDeviceID int64
  • ]
  • ]
PUT /v4/dealers/:dealerUuid/devices

Authorization

name: basicAuthtype: httpscheme: basic

Request

Base URL
/payment
Username
Password
dealerUuid — path required
Body required
[
{
"id": 0,
"uuid": "string",
"deviceID": "string",
"deviceType": "string",
"gateway": "string",
"lastFourDigit": "string",
"paymentDealer": {
"dealerUuid": "string",
"name": "string"
},
"dealerDeviceAttributes": [
{
"id": 0,
"attributeName": "string",
"attributeValue": "string",
"dealerDeviceID": 0
}
]
}
]
curl / cURL
curl -L -X PUT '/payment/v4/dealers/:dealerUuid/devices' \
-H 'Content-Type: application/json' \
-H 'Accept: */*' \
--data-raw '[
{
"id": 0,
"uuid": "string",
"deviceID": "string",
"deviceType": "string",
"gateway": "string",
"lastFourDigit": "string",
"paymentDealer": {
"dealerUuid": "string",
"name": "string"
},
"dealerDeviceAttributes": [
{
"id": 0,
"attributeName": "string",
"attributeValue": "string",
"dealerDeviceID": 0
}
]
}
]'