This is an API reference for the Point of Sale service, which allows you to manage point of sale devices, including their settings, activation, and configuration.
Point-of-Sale devices
/- Get authentication settings
Create authentication settings
Update authentication settings
Get authentication settin...
POS service API (1.0.0)
Download OpenAPI description
Languages
Servers
Production environment
https://api-services.pxp.io/api/v1/
Sandbox environment
https://api-services.test.pxp.io/api/v1/
- Production environment
https://api-services.pxp.io/api/v1/point-of-sales/{pointOfSaleId}/authentication-settings
- Sandbox environment
https://api-services.test.pxp.io/api/v1/point-of-sales/{pointOfSaleId}/authentication-settings
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://api-services.pxp.io/api/v1/point-of-sales/123456789/authentication-settings \
-H 'Content-Type: application/json' \
-d '{
"hmacKey": "a1b2c3d4e5f6g7h8i9j0k1l2m3n4o5p6"
}'
- Production environment
https://api-services.pxp.io/api/v1/point-of-sales/{pointOfSaleId}/authentication-settings
- Sandbox environment
https://api-services.test.pxp.io/api/v1/point-of-sales/{pointOfSaleId}/authentication-settings
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
https://api-services.pxp.io/api/v1/point-of-sales/123456789/authentication-settings
Response
application/json
{ "hmacKey": "a1b2c3d4e5f6g7h8i9j0k1l2m3n4o5p6" }
- Production environment
https://api-services.pxp.io/api/v1/point-of-sales/{pointOfSaleId}/authentication-settings
- Sandbox environment
https://api-services.test.pxp.io/api/v1/point-of-sales/{pointOfSaleId}/authentication-settings
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X PUT \
https://api-services.pxp.io/api/v1/point-of-sales/12345789/authentication-settings \
-H 'Content-Type: application/json' \
-d '{
"hmacKey": "a1b2c3d4e5f6g7h8i9j0k1l2m3n4o5p6"
}'