Skip to main content

Download or Copy Software

Select

SaaS
Customer Managed

Download or Copy Software

Request Body
  • downloadConfiguration object

    Configurations for software download from the internet

  • latestFixesForCurrentRelease boolean

    Boolean which determines whether to download latest fixews for current release.

  • upgradeToLatestRelease boolean

    Boolean which determines whether to upgrade to latest release.

  • featureRelease string

    Which specific feature release to download.

  • windowsDownloadOptions string[]

    Possible values: [WINDOWS_X32, WINDOWS_X64]

    gives list of all the target windows operating systems to download software for.

  • unixDownloadOptions string[]

    Possible values: [AIX_PPC, FREEBSD_X86, FREEBSD_X86_64, HP_IA64, LINUX_ARM64, LINUX_PPC64, LINUX_PPC64LE, LINUX_X86, LINUX_X86_64, MAC_OS, SOLARIS_SPARC, SOLARIS_X86_64]

    gives list of all the target unix and MAC operating systems to download software for.

  • copyConfiguration object

    Configurations for software download from the internet

  • downloadPath string

    Path from where the software has to be downloaded.

  • username string

    If impersonation a user the, give the username of the user.

  • password string

    Corresponding password of the user

  • notifyWhenJobCompletes boolean

    Boolean which determines whether to notify when software is downloaded or copied.

Responses

Success


Schema
  • jobId int32
PUT /v4/downloadsoftware    

Authorization

type: apiKeyname: Authtokenin: header

Request

Click Edit to configure Base URL
https://CommandCenterHostName/commandcenter/api
Security Scheme
token
Body

{
"downloadConfiguration": {
"latestFixesForCurrentRelease": true,
"upgradeToLatestRelease": true,
"featureRelease": "string",
"windowsDownloadOptions": [
"WINDOWS_X32"
],
"unixDownloadOptions": [
"AIX_PPC"
]
},
"copyConfiguration": {
"downloadPath": "string",
"username": "string",
"password": "string"
},
"notifyWhenJobCompletes": true
}
curl -L -X PUT 'https://CommandCenterHostName/commandcenter/api/V4/DownloadSoftware' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authtoken: <API_KEY_VALUE>' \
--data-raw '{
"downloadConfiguration": {
"latestFixesForCurrentRelease": true,
"upgradeToLatestRelease": true,
"featureRelease": "string",
"windowsDownloadOptions": [
"WINDOWS_X32"
],
"unixDownloadOptions": [
"AIX_PPC"
]
},
"copyConfiguration": {
"downloadPath": "string",
"username": "string",
"password": "string"
},
"notifyWhenJobCompletes": true
}'