Business - Configuration ======================== .. Last update: 21/02/2022 This module handles the retrieval of the different parameters that can be used to configure the platform and their modules. The base url for the APIs in this page is at:: /api/mobile A JSON file with OpenAPI data about all business-related mobile APIs can be downloaded :download:`here `. Get payments configurations --------------------------- Gets the environment variable configurations for frontend UI .. openapi:: /openapi/srv-business-base/api-src-WebMobile.json :paths: /v1/config/default-payment-settings Returns a positive Json object containing the app configurations:: { IsPrepaid: true, // Boolean, set to true if the platform has wallet enabled SdkConfigurations: { IsSandbox: true, // Boolean, set to true if the payment gateway has to be called in sandbox environment BaseURL: "www.example.com" // String, not nullable, set with the base url for the payment gateway Http requests, Credentials: { // Object (nullable) AccessId: "..." // String (nullable), contains the merchant id } } }