Skip to main content
Version: v2.0

Get changeset's impacted deployables

Retrieve the impacted deployables for a specific changeset.

HTTP request

GET /api/sn_cdm/changesets/{changeset_id}/impacted-deployables

Path parameters

NameDescription
changeset_idChangeset id

Query parameters

None.

Request body

Don't supply a request body for this method.

Response

ImpactedDeployablesBySysIdResponse.

Example

response, err := client.Cdm().Changesets().ByID("{changesetID}").ImpactedDeployables().Get(ctx, nil)
if err != nil {
log.Fatal(err)
}
Was this page helpful?