Skip to main content
Version: main

Create node

Create a configuration data node.

HTTP request

POST /api/sn_cdm/editor/v1/nodes

Path parameters

None.

Query parameters

None.

Request body

Supply a cdmeditorapi.NodeCreateRequest.

Response

NodeResponse — the created node.

Example

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