Account usage (beta)
Get stream usage SDK versions
Get a list of SDK version objects, which contain an SDK name and version. These are all of the SDKs that have connected to LaunchDarkly from your account in the past 60 days.
get/api/v2/usage/streams/{source}/sdkversions
Path parameters
sourcestring string required
The source of streaming connections to describe. Must be either client or server.
The source of streaming connections to describe. Must be either client or server.
Response
SDK Versions response
Example response
{
"sdkVersions": [
{
"sdk": "Android",
"version": "3.1.2"
},
{
"sdk": "Android",
"version": "3.1.5"
},
{
"sdk": "C",
"version": "2.4.6"
}
]
}