Skip to main content
Version: v2.0

Update node

Update a configuration data node.

HTTP request

PUT /api/sn_cdm/editor/v1/nodes/{node_sys_id}

Path parameters

NameDescription
node_sys_idNode sys_id

Query parameters

None.

Request body

Supply a cdmeditorapi.NodeUpdateRequest.

Response

NodeResponse — the updated node.

Example

// Build the request body
var body cdmeditorapi.NodeUpdateRequest
response, err := client.Cdm().Editor().Nodes().ByID("{nodeSysID}").Put(ctx, body, nil)
if err != nil {
log.Fatal(err)
}
Was this page helpful?