getAllExtensions

get

/ccadmin/v1/extensions

Get All Extensions. Get summary information on all Extensions currently loaded on the system.

Request

There are no request parameters for this operation.

Response

Supported Media Types
  • application/json
200 Response
Following model is returned when operation succeeds.
Body
Root Schema : getAllExtensions_response
Nested Schema : items
Type: array
list of extensions
Nested Schema : items
Type: object
Nested Schema : items
Type: array
list of elements or widgets
Nested Schema : items
Type: object
Example application/json

{
    "items":[
        {
            "installedTime":"2014-06-20T09:28:31.562Z",
            "creator":"Oracle Corp.",
            "creationTime":"2014-01-01",
            "origin":"upload",
            "lastModifiedBy":"admin",
            "description":"Delivering New Widget with Element",
            "readme":null,
            "version":"1",
            "enabled":true,
            "developerId":"999999",
            "zipPath":"extensions/2014520102830313_workingUnderElements.zip",
            "modificationTime":"2014-06-20T09:28:31.562Z",
            "repositoryId":"4ab03536-9c6f-41ce-84d8-45934bed0693",
            "name":"Widget with Element",
            "installedBy":"admin",
            "installedByUserName":"Amber Admin",
            "items":[
                {
                    "repositoryId":"100001"
                },
                {
                    "repositoryId":"100002"
                }
            ]
        }
    ]
}
Default Response
The error response
Body
Root Schema : errorModel
Type: object
Nested Schema : errors
Type: array
An optional list of errors if multiple errors were encountered
Nested Schema : items
Type: object

Examples

Sample Response Payload returned by endpoint:

{"items": [{
  "installedTime": "2014-06-20T09:28:31.562Z",
  "creator": "Oracle Corp.",
  "creationTime": "2014-01-01",
  "origin": "upload",
  "lastModifiedBy": "admin",
  "description": "Delivering New Widget with Element",
  "readme": null,
  "version": "1",
  "enabled": true,
  "developerId": "999999",
  "zipPath": "extensions/2014520102830313_workingUnderElements.zip",
  "modificationTime": "2014-06-20T09:28:31.562Z",
  "repositoryId": "4ab03536-9c6f-41ce-84d8-45934bed0693",
  "name": "Widget with Element",
  "installedBy": "admin",
  "installedByUserName": "Amber Admin",
  "items": [
    {"repositoryId": "100001"},
    {"repositoryId": "100002"}
  ]
}]}