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