Skip to main content
Version: main

List changesets

Retrieve configuration-data changesets.

HTTP request

GET /api/sn_cdm/changesets

Path parameters

None.

Query parameters

NameDescription
appNameOptional — set via the verb's QueryParameters type.
numberOptional — set via the verb's QueryParameters type.
stateOptional — set via the verb's QueryParameters type.
changesetNumberOptional — set via the verb's QueryParameters type.

Request body

Don't supply a request body for this method.

Response

ChangesetsResponse — a collection envelope of *ChangesetResult.

Example

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