Get outdated project SDKs
GET<your-unleash-url>/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 (auto)
Schema
sdks object[]required
{
"sdks": [
{
"sdkVersion": "unleash-client-java:7.0.0",
"applications": [
"accounting"
]
}
]
}
The requested resource was not found.
- application/json
- Schema
- Example (auto)
Schema
idstring
The ID of the error instance
Example:
9c40958a-daac-400e-98fb-3bb438567008
namestring
The name of the error kind
Example:
NotFoundError
messagestring
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\"."
}
Authorization: Authorization
name: Authorizationtype: apiKeyin: headerdescription: API key needed to access this API
- curl
- python
- go
- nodejs
- ruby
- csharp
- php
- java
- powershell
- CURL
curl -L '<your-unleash-url>/api/admin/projects/:projectId/sdks/outdated' \
-H 'Accept: application/json' \
-H 'Authorization: <Authorization>'
ResponseClear