# Create feature settings

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

Endpoint: POST /point-of-sales/{pointOfSaleId}/feature-settings
Version: 1.0.0

## Path parameters:

  - `pointOfSaleId` (integer, required)
    The unique system identifier for the point of sale device.

## Request fields (application/json):

  - `merchantPointOfSaleId` (string)
    The unique merchant identifier for the point of sale device.
    Example: POS-12345

  - `statusPacketsEnabled` (boolean)
    Indicates whether status packets, which provide real-time updates about the device's status, are enabled for the point of sale device.
    Example: true

  - `languageSelectionEnabled` (boolean)
    Specifies whether the language selection feature is enabled, allowing users to choose their preferred language during transactions.
    Example: true

  - `gratuityEnabled` (boolean)
    Indicates whether the gratuity (tip) feature is enabled, allowing customers to add a tip to their transactions.
    Example: false

  - `onlinePinEnabled` (boolean)
    Specifies whether the online PIN feature is enabled, requiring customers to enter their PIN for card transactions.
    Example: true

  - `keyedEnabled` (boolean)
    Indicates whether the keyed entry feature is enabled, allowing manual entry of card details for transactions.
    Example: false

