Retrieve all extensions

get

/ccadmin/v1/extensions

Get summary information on all extensions currently uploaded in the system.

Sample Request:

       GET /ccadmin/v1/extensions    

Request

There are no request parameters for this operation.

Back to Top

Response

Supported Media Types

200 Response

Returned when the operation succeeds.
Body ()
Root Schema : getAllExtensions_response
Type: object
Show Source
Nested Schema : items
Type: array
list of extensions
Show Source
Nested Schema : items
Type: object
Show Source
Nested Schema : items
Type: array
list of elements or widgets
Show Source
Nested Schema : items
Type: object
Show Source
Example Response (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"
                }
            ]
        }
    ]
}

401 Response

Returned if an internal error occurs in the endpoint.
Body ()
Root Schema : getAllExtensions_401response
Type: object
Show Source
Example Response (application/json)
{
    "errorCode":"00001000",
    "message":"The user is not authenticated",
    "status":"401"
}

500 Response

Returned if an internal error occurs in the endpoint.
Body ()
Root Schema : getAllExtensions_500response
Type: object
Show Source
Example Response (application/json)
{
    "errorCode":"000000000",
    "message":"Internal Error",
    "status":"500"
}

Default Response

The following are the internal error codes thrown by this API when the request processing fails in Oracle Commerce Cloud:
Error CodeDescriptionPossible Fix
91004Extension internal errorSee error messages for further information.

The error response:
Body ()
Root Schema : errorModel
Type: object
Show Source
Nested Schema : errors
Type: array
An optional list of errors if multiple errors were encountered
Show Source
Nested Schema : items
Type: object
Show Source
Back to Top