Info |
---|
This API is available starting with versionĀ @5.2.0.1 |
...
Parameter | Type | Required | Description |
---|---|---|---|
projectId | URL | Yes | This is a URL parameter for the Id of the project which the package is in |
packageName | URL | Yes | Name of the package to retrieve. This is case sensitive |
Response
Attribute | Type | Description |
---|---|---|
name | String | Name of the package |
description | String | Description of the package |
files | List<PackageFile> | All files in the package. More info on the PackageFile object is included below. |
...
...
PATCH
This PATCH service will update an existing package with the information passed through a JSON object. If an attribute of the JSON is null, it will not be updated in the package. Any new files included in the request will be appended to the list of files already in the package.
Info | ||
---|---|---|
| ||
http://host:port/flexdeploy/rest/v1/project/{projectId}/package/{packageName} |
...