Skip to content

Quick start

This example fetches a configuration value from your application at runtime.

Python

python
from platform_sdk import config

timeout = config.get("checkout.timeout")
print(timeout)

Node.js

js
const timeout = await platform.config("checkout.timeout")
console.log(timeout)

Next steps

  1. Install an SDK for your runtime.
  2. Configure credentials for your environment.
  3. Add listeners for real-time updates.