Skip to content

Get feature settings

Request

This endpoint retrieves the feature settings for a specific point of sale device.

Path
pointOfSaleIdinteger, (int64)required

The unique system identifier for the point of sale device.

Example:123456789
curl -i -X GET \
  https://api-services.pxp.io/api/v1/point-of-sales/123456789/feature-settings

Responses

Successfully retrieved the feature settings.

Bodyapplication/json
merchantPointOfSaleIdstring

The unique merchant identifier for the point of sale device.

Example:"POS-12345"
statusPacketsEnabledboolean

Indicates whether status packets, which provide real-time updates about the device's status, are enabled for the point of sale device.

languageSelectionEnabledboolean

Specifies whether the language selection feature is enabled, allowing users to choose their preferred language during transactions.

gratuityEnabledboolean

Indicates whether the gratuity (tip) feature is enabled, allowing customers to add a tip to their transactions.

onlinePinEnabledboolean

Specifies whether the online PIN feature is enabled, requiring customers to enter their PIN for card transactions.

keyedEnabledboolean

Indicates whether the keyed entry feature is enabled, allowing manual entry of card details for transactions.

Response
{ "merchantPointOfSaleId": "POS-12345", "statusPacketsEnabled": true, "languageSelectionEnabled": true, "gratuityEnabled": true, "onlinePinEnabled": true, "keyedEnabled": true }