PagerDuty

PAGERDUTY_CREATE_BUSINESS_SERVICE

This endpoint creates a new Business Service in PagerDuty, which represents a specific service or application that can be monitored and managed within the incident management platform. It allows you to define essential properties of the service, including its name, description, point of contact, and the team responsible for it. Use this endpoint when you need to add a new service to your PagerDuty account for monitoring and incident management. The created Business Service can be later associated with technical services, incidents, and escalation policies. Note that this endpoint only creates the Business Service; additional configuration may be required to set up monitoring and alerting for the service.

Remote pagerduty

Other tools also called PAGERDUTY_CREATE_BUSINESS_SERVICE? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "business__service__name": {
      "type": "string",
      "title": "Business  Service  Name",
      "description": "The name of the Business Service."
    },
    "business__service__team__id": {
      "type": "string",
      "title": "Business  Service  Team  Id",
      "description": "The Team ID"
    },
    "business__service__description": {
      "type": "string",
      "title": "Business  Service  Description",
      "description": "The description of the Business Service."
    },
    "business__service__point__of__contact": {
      "type": "string",
      "title": "Business  Service  Point  Of  Contact",
      "description": "The owner of the Business Service."
    }
  }
}