Skip to main content
Version: main

Update shared components

Update shared-component configuration data.

HTTP request

PUT /api/sn_cdm/applications/shared_components

Path parameters

None.

Query parameters

NameDescription
appNameOptional — set via the verb's QueryParameters type.
sharedComponentNameOptional — set via the verb's QueryParameters type.
nameOptional — set via the verb's QueryParameters type.

Request body

Supply a cdmapplicationsapi.SharedComponentUpdateRequest.

Response

SharedComponentUpdateResponse.

Example

// Build the request body
response, err := client.Cdm().Applications().SharedComponents().Put(ctx, nil)
if err != nil {
log.Fatal(err)
}
Was this page helpful?