Get outdated project SDKs
GET/api/admin/projects/:projectId/sdks/outdated
Returns a list of the outdated SDKS with the applications using them.
Request
Path Parameters
projectId stringrequired
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.0applications 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-3bb438567008name string
The name of the error kind
Example: 
NotFoundErrormessage 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...