Koople
  • Getting Started
  • Core Concepts
  • Using Koople
    • First steps
    • Release Toggles
      • Long-Live/Release toggles
    • Remote Config
    • Target Groups
    • Users
    • Flag references
    • Audit Log
    • Member Permissions
    • Environment Settings
    • API Keys
    • Plans
  • SDK Reference
    • JavaScript
    • React
    • C#
    • Java
  • Api Reference
    • Client (WIP)
    • Server (WIP)
  • Changelog
Powered by GitBook
On this page

Was this helpful?

  1. Api Reference

Client (WIP)

Initialize

GET https://api.koople.com/proxy/client/initialize

This endpoint returns all the features enabled and the remote configs for the requested id.

Headers

Name
Type
Description

x-api-key

string

Environment client API key.

Request Body

Name
Type
Description

id

string

User identifier

context

string

User attributes

{
    "featureFlags": {
        "awesomeFeature": true,
        "superFeature": true
    },
    "remoteConfigs": {
        "theme": "light"
    }
}
{
    // TODO
}

PreviousJavaNextServer (WIP)

Last updated 4 years ago

Was this helpful?