Skip to main content
Version: main

Create application service

Create an application service.

HTTP request

POST /api/now/v1/cmdb/app_service/create

Path parameters

None.

Query parameters

None.

Request body

Supply a appserviceapi.CreateServiceRequest.

Response

CreateServiceResponse.

Example

// Build the request body
var body *appserviceapi.CreateServiceRequest
response, err := client.Now().Cmdb().AppService().Create().Post(ctx, body, nil)
if err != nil {
log.Fatal(err)
}
Was this page helpful?