Delete node
Delete a configuration data node.
HTTP request
DELETE /api/sn_cdm/editor/v1/nodes/{node_sys_id}
Path parameters
| Name | Description |
|---|---|
node_sys_id | Node sys_id |
Query parameters
None.
Request body
Don't supply a request body for this method.
Response
Returns only an error. The endpoint answers with no content, so there is no response body — a
nil error means the node was deleted.
Example
// Delete reports only an error: the endpoint answers with no content.
if err := client.Cdm().Editor().Nodes().ByID("{nodeSysID}").Delete(ctx, nil); err != nil {
log.Fatal(err)
}