This endpoint creates feature settings for a specific point of sale device.
The feature settings to apply to the point of sale device.
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.
Example:true
Specifies whether the language selection feature is enabled, allowing users to choose their preferred language during transactions.
Example:true
Indicates whether the gratuity (tip) feature is enabled, allowing customers to add a tip to their transactions.
Example:false
Specifies whether the online PIN feature is enabled, requiring customers to enter their PIN for card transactions.
Example:true
- 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 POST \
https://api-services.pxp.io/api/v1/point-of-sales/123456789/feature-settings \
-H 'Content-Type: application/json' \
-d '{
"merchantPointOfSaleId": "POS-12345",
"statusPacketsEnabled": true,
"languageSelectionEnabled": true,
"gratuityEnabled": false,
"onlinePinEnabled": true,
"keyedEnabled": false
}'