Get outdated SDKs
GET/api/admin/metrics/sdks/outdated
Returns a list of the outdated SDKS with the applications using them.
Responses
- 200
- 404
outdatedSdksSchema
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
sdks
object[]
required
A list of SDKs
sdkVersion stringrequired
An outdated SDK version identifier. Usually formatted as "unleash-client-
Example:
unleash-client-java:7.0.0
applications string[]required
A list of applications using the SDK version
{
"sdks": [
{
"sdkVersion": "unleash-client-java:7.0.0",
"applications": [
"accounting"
]
}
]
}
The requested resource was not found.
- application/json
- Schema
- Example (from schema)
Schema
id string
The ID of the error instance
Example:
9c40958a-daac-400e-98fb-3bb438567008
name string
The name of the error kind
Example:
NotFoundError
message string
A description of what went wrong.
Example:
Could not find the addon with ID "12345".
{
"id": "9c40958a-daac-400e-98fb-3bb438567008",
"name": "NotFoundError",
"message": "Could not find the addon with ID \"12345\"."
}
Loading...