# Get Store and Forward settings

This endpoint retrieves the store and forward settings for a specific point of sale device.

Endpoint: GET /point-of-sales/{pointOfSaleId}/store-and-forward-settings
Version: 1.0.0

## Path parameters:

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

## Response 200 fields (application/json):

  - `storeAndForwardEnabled` (boolean)
    Indicates whether the store and forward feature is enabled for the point of sale device. This feature allows transactions to be temporarily stored locally when there is no network connectivity and forwarded to the server once connectivity is restored.
    Example: true

  - `transactionAmountThreshold` (integer)
    Specifies the maximum transaction amount (in the smallest currency unit, such as cents) that can be processed using the store and forward feature. Transactions exceeding this amount will not be stored for later forwarding.
    Example: 10000

  - `throttlingLimit` (integer)
    Defines the maximum number of transactions that can be processed in a given time frame when the store and forward feature is enabled. This helps to manage the flow of transactions when connectivity is restored.
    Example: 100

  - `processInterval` (integer)
    Indicates the interval (in seconds) between attempts to process and forward stored transactions once network connectivity is available.
    Example: 300

  - `x509PrivateKey` (string,null)
    The private key used for encryption of stored transaction data. This key is part of the X.509 certificate standard used for secure communications.
    Example: "MIIBVgIBADANBgkqhkiG9w0BAQEFAASC..."

  - `x509PublicKey` (string,null)
    The public key associated with the private key, used in the X.509 certificate for encryption and secure communication.
    Example: "MFYwEAYHKoZIzj0CAQYFK4EEAAoDQgAE..."

  - `keyGenerated` (string)
    The date and time when the encryption keys were generated, formatted in ISO 8601.
    Example: "2023-09-01T12:00:00Z"


