Point-of-sale devices//
- Get feature settings
Create feature settings
Update feature settings
Get feature settings
This endpoint retrieves the feature settings for a specific point of sale device.
- Production environmenthttps://api-services.pxp.io/api/v1/point-of-sales/{pointOfSaleId}/feature-settings
- Sandbox environmenthttps://api-services.test.pxp.io/api/v1/point-of-sales/{pointOfSaleId}/feature-settings
curl -i -X GET \
https://api-services.pxp.io/api/v1/point-of-sales/123456789/feature-settingsSuccessfully retrieved the feature settings.
The unique merchant identifier for the point of sale device.
Example:"POS-12345"
Indicates whether status packets, which provide real-time updates about the device's status, are enabled for the point of sale device.
Specifies whether the language selection feature is enabled, allowing users to choose their preferred language during transactions.
Indicates whether the gratuity (tip) feature is enabled, allowing customers to add a tip to their transactions.
Specifies whether the online PIN feature is enabled, requiring customers to enter their PIN for card transactions.
Response
{ "merchantPointOfSaleId": "POS-12345", "statusPacketsEnabled": true, "languageSelectionEnabled": true, "gratuityEnabled": true, "onlinePinEnabled": true, "keyedEnabled": true }