Skip to main content
Version: main

Populate service

Populate an application service's topology.

HTTP request

PUT /api/now/v1/cmdb/csdm/app_service/{sys_id}/populate_service

Path parameters

NameDescription
sys_idSys_id

Query parameters

None.

Request body

Supply a appserviceapi.PopulateServiceRequest.

Response

PopulateServiceResponse.

Example

// Build the request body
var body *appserviceapi.PopulateServiceRequest
response, err := client.Now().Cmdb().AppService().Csdm().ByID("{sysID}").PopulateService().Put(ctx, body, nil)
if err != nil {
log.Fatal(err)
}
Was this page helpful?