Update a system in NetApp Console local deployment
PATCH /v1/organizations/{organizationId}/workingenvironments/{workingEnvironmentId}
Updates the system. Include only the fields you want to update in the request.
Parameters
| Name | Type | In | Required | Description |
|---|---|---|---|---|
organizationId |
string |
path |
True |
Organization ID
|
workingEnvironmentId |
string |
path |
True |
System ID
|
Request Body
| Name | Type | Required | Description |
|---|---|---|---|
password |
string |
False |
ONTAP cluster password
|
username |
string |
False |
ONTAP cluster username
|
Example request
{
"password": "NetApp123!",
"username": "admin"
}
Response
Status: 204, System updated successfully. No content returned.
Response
Status: 401, Unauthorized access
Example response
{
"detail": "Authentication failed. Invalid or missing JWT token.",
"status": "401",
"title": "Authentication Failed",
"type": "https://bluexp.netapp.io/problems/401"
}
Response
Status: 403, Forbidden request
Example response
{
"detail": "Action not allowed for user. Update permission required.",
"status": "403",
"title": "Forbidden",
"type": "https://bluexp.netapp.io/problems/403"
}
Response
Status: 404, Not found
Example response
{
"detail": "The requested OnPrem system could not be found.",
"status": "404",
"title": "Resource Not Found",
"type": "https://bluexp.netapp.io/problems/404"
}
Error
Status: 400, Bad request
Example error response
{
"detail": "Failed to update credentials for Data ONTAP system: Production Cluster 1. Reason: Connection timeout - unable to reach ONTAP cluster",
"status": "400",
"title": "Credential Update Failed",
"type": "https://bluexp.netapp.io/problems/400"
}