Skip to main content

pick or unpick jobs for snapshot catalog

Select

SaaS
Customer Managed

Send job details to pick or unpick jobs for snapshot catalog

Path Parameters
  • planId int32 required

    plan Id

  • backupDestinationId int32 required

    Backup Destination Id

Request Body

Job details for unpicking jobs for snapshot catalog.

  • jobs object[]
  • jobId int32

    Job Id to pick or unpick

  • commcellId int32

    CommCell Id on which job will be picked or unpicked

  • operationType string

    Possible values: [UNPICK, PICK]

Responses

OK


Schema
  • errorMessage string
  • errorCode int32
PUT /v4/plan/:planid/backupdestination/:backupdestinationid/snapcatalog/jobs    

Authorization

type: apiKeyname: Authtokenin: header

Request

Click Edit to configure Base URL
https://CommandCenterHostName/commandcenter/api
Security Scheme
token
planId — path required
backupDestinationId — path required
Body
{
"jobs": [
{
"jobId": 0,
"commcellId": 0
}
],
"operationType": "UNPICK"
}
curl -L -X PUT 'https://CommandCenterHostName/commandcenter/api/V4/Plan/:planId/BackupDestination/:backupDestinationId/SnapCatalog/Jobs' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authtoken: <API_KEY_VALUE>' \
--data-raw '{
"jobs": [
{
"jobId": 0,
"commcellId": 0
}
],
"operationType": "UNPICK"
}'