listApplicationDeployments

get

/ccadmin/v1/applicationDeployment

Get Application Deployments. Returns any Application Deployments matching an appName

Request

Supported Media Types
Query Parameters
  • The application name to retrieve deployments for.
  • This is used to list successful and unsuccessful deployments, as well as 'all' deployments by default. A 'successful deployment' refers to a scenario where the deployment is completed successfully at the preview controller and asset validation.
    Default Value: all
  • Used to list deployments that match the specified application version.
Back to Top

Response

Supported Media Types

200 Response

Following model is returned when operation succeeds.
Body ()
Root Schema : listApplicationDeployments_response
Type: object
Show Source
Nested Schema : items
Type: array
list of application deployments
Show Source
Nested Schema : items
Type: object
Show Source
Nested Schema : errorMessages
Type: array
error messages for application deployment
Show Source
Nested Schema : infoMessages
Type: array
information messages for application deployment
Show Source
Nested Schema : warningMessages
Type: array
warning messages for application deployment
Show Source
Example Response (application/json)
[
    {
        "errorMessages":[
        ],
        "warningMessages":[
        ],
        "metadata":"{\"appName\":\"core-commerce-reference-store\",\"appDir\":\"packages/apps/core-commerce-reference-store\",\"tags\":[]}",
        "repositoryId":"5600001",
        "infoMessages":[
        ],
        "state":"ACCEPTED",
        "clusterId":"storefront",
        "id":"5600001",
        "applicationId":"core-commerce-reference-store",
        "creationDate":"2021-09-21T11:01:39.296Z"
    }
]

Default Response

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