Skip to main content

Add a new device


ApiScope: payment.dealerdevices.create
API Scope Level: DealerScope
Path Parameters
    dealerUuid string required
Request Body required
    deviceType string
    deviceID string
    alias string
    gateway string

    Possible values: [CREDITCALL, OPENEDGE, PAYMENTMATE, TEMPUS, CARDCONNECT, WORLDPAY, STRIPE, NMI, AFFIRM, SUNBIT, CASH, CHECK]

    gatewaySpecificAttributes object
    property name* string
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
  • ]
  • ]
POST /v4/dealers/:dealerUuid/devices

Authorization

name: basicAuthtype: httpscheme: basic

Request

Base URL
/payment
Username
Password
dealerUuid — path required
Body required
{
"deviceType": "string",
"deviceID": "string",
"alias": "string",
"gateway": "CREDITCALL",
"gatewaySpecificAttributes": {}
}
curl / cURL
curl -L -X POST '/payment/v4/dealers/:dealerUuid/devices' \
-H 'Content-Type: application/json' \
-H 'Accept: */*' \
--data-raw '{
"deviceType": "string",
"deviceID": "string",
"alias": "string",
"gateway": "CREDITCALL",
"gatewaySpecificAttributes": {}
}'