Skip to main content

Update NDMP Properties

Select

SaaS
Customer Managed

Update the NDMP properties

Request Body
  • ndmpServerDetails object required
  • ndmpServerHostName string

    NDMP client hostname

  • ndmpServerClientName string

    NDMP client name

  • ndmpCredentials object required

    NDMP credentials

  • userName string required

    User name to login

  • password string required

    Password base64 encoded

  • listenPort integer required

    NDMP Server port

  • clientId integer required

    Client ID of the NDMP

Responses

OK


Schema
  • errorMessage string
  • errorCode integer
PUT /nasclient/ndmpserver    

Authorization

type: apiKeyname: Authtokenin: header

Request

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

{
"ndmpServerDetails": {
"ndmpServerHostName": "string",
"ndmpServerClientName": "string",
"ndmpCredentials": {
"userName": "string",
"password": "string"
}
},
"listenPort": 0,
"clientId": 0
}
curl -L -X PUT 'https://CommandCenterHostName/commandcenter/api/NASClient/NDMPServer' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authtoken: <API_KEY_VALUE>' \
--data-raw '{
"ndmpServerDetails": {
"ndmpServerHostName": "string",
"ndmpServerClientName": "string",
"ndmpCredentials": {
"userName": "string",
"password": "string"
}
},
"listenPort": 0,
"clientId": 0
}'