Skip to content

OilCan/pager_duty_openapi_client

Repository files navigation

pager_duty_openapi_client

PagerDutyOpenapiClient - the Ruby gem for the PagerDuty API

This document describes the PagerDuty REST APIs.

For guides and examples please visit our Documentation.

Our REST APIs are defined in OpenAPI v3.x. You can view the schema at github.com/PagerDuty/api-schema.

Note that properties in some schemas have fields not shown by default such as readOnly, format, and default. Hover your cursor over the right column that looks like optional+1 to see the full list of fields.

This SDK is automatically generated by the OpenAPI Generator project:

  • API version: 2.0.0
  • Package version: 1.0.0
  • Generator version: 7.6.0
  • Build package: org.openapitools.codegen.languages.RubyClientCodegen For more information, please visit http://www.pagerduty.com/support

Installation

Build a gem

To build the Ruby code into a gem:

gem build pager_duty_openapi_client.gemspec

Then either install the gem locally:

gem install ./pager_duty_openapi_client-1.0.0.gem

(for development, run gem install --dev ./pager_duty_openapi_client-1.0.0.gem to install the development dependencies)

or publish the gem to a gem hosting service, e.g. RubyGems.

Finally add this to the Gemfile:

gem 'pager_duty_openapi_client', '~> 1.0.0'

Install from Git

If the Ruby gem is hosted at a git repository: https://github.com/GIT_USER_ID/GIT_REPO_ID, then add the following in the Gemfile:

gem 'pager_duty_openapi_client', :git => 'https://github.com/GIT_USER_ID/GIT_REPO_ID.git'

Include the Ruby code directly

Include the Ruby code directly using -I as follows:

ruby -Ilib script.rb

Getting Started

Please follow the installation procedure and then run the following code:

# Load the gem
require 'pager_duty_openapi_client'

# Setup authorization
PagerDutyOpenapiClient.configure do |config|
  # Configure API key authorization: api_key
  config.api_key['api_key'] = 'YOUR API KEY'
  # Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
  # config.api_key_prefix['api_key'] = 'Bearer'
  # Configure faraday connection
  config.configure_faraday_connection { |connection| 'YOUR CONNECTION CONFIG PROC' }
end

api_instance = PagerDutyOpenapiClient::AbilitiesApi.new
accept = 'accept_example' # String | The `Accept` header is used as a versioning header.
content_type = 'application/json' # String | 
id = 'id_example' # String | The ID of the resource.

begin
  #Test an ability
  api_instance.get_ability(accept, content_type, id)
rescue PagerDutyOpenapiClient::ApiError => e
  puts "Exception when calling AbilitiesApi->get_ability: #{e}"
end

Documentation for API Endpoints

All URIs are relative to https://api.pagerduty.com

Class Method HTTP request Description
PagerDutyOpenapiClient::AbilitiesApi get_ability GET /abilities/{id} Test an ability
PagerDutyOpenapiClient::AbilitiesApi list_abilities GET /abilities List abilities
PagerDutyOpenapiClient::AddOnsApi create_addon POST /addons Install an Add-on
PagerDutyOpenapiClient::AddOnsApi delete_addon DELETE /addons/{id} Delete an Add-on
PagerDutyOpenapiClient::AddOnsApi get_addon GET /addons/{id} Get an Add-on
PagerDutyOpenapiClient::AddOnsApi list_addon GET /addons List installed Add-ons
PagerDutyOpenapiClient::AddOnsApi update_addon PUT /addons/{id} Update an Add-on
PagerDutyOpenapiClient::AlertGroupingSettingsApi delete_alert_grouping_setting DELETE /alert_grouping_settings/{id} Delete an Alert Grouping Setting
PagerDutyOpenapiClient::AlertGroupingSettingsApi get_alert_grouping_setting GET /alert_grouping_settings/{id} Get an Alert Grouping Setting
PagerDutyOpenapiClient::AlertGroupingSettingsApi list_alert_grouping_settings GET /alert_grouping_settings List alert grouping settings
PagerDutyOpenapiClient::AlertGroupingSettingsApi post_alert_grouping_settings POST /alert_grouping_settings Create an Alert Grouping Setting
PagerDutyOpenapiClient::AlertGroupingSettingsApi put_alert_grouping_setting PUT /alert_grouping_settings/{id} Update an Alert Grouping Setting
PagerDutyOpenapiClient::AnalyticsApi get_analytics_incident_responses_by_id GET /analytics/raw/incidents/{id}/responses Get raw responses from a single incident
PagerDutyOpenapiClient::AnalyticsApi get_analytics_incidents POST /analytics/raw/incidents Get raw data - multiple incidents
PagerDutyOpenapiClient::AnalyticsApi get_analytics_incidents_by_id GET /analytics/raw/incidents/{id} Get raw data - single incident
PagerDutyOpenapiClient::AnalyticsApi get_analytics_metrics_incidents_all POST /analytics/metrics/incidents/all Get aggregated incident data
PagerDutyOpenapiClient::AnalyticsApi get_analytics_metrics_incidents_escalation_policy POST /analytics/metrics/incidents/escalation_policies Get aggregated escalation policy data
PagerDutyOpenapiClient::AnalyticsApi get_analytics_metrics_incidents_escalation_policy_all POST /analytics/metrics/incidents/escalation_policies/all Get aggregated metrics for all escalation policies
PagerDutyOpenapiClient::AnalyticsApi get_analytics_metrics_incidents_service POST /analytics/metrics/incidents/services Get aggregated service data
PagerDutyOpenapiClient::AnalyticsApi get_analytics_metrics_incidents_service_all POST /analytics/metrics/incidents/services/all Get aggregated metrics for all services
PagerDutyOpenapiClient::AnalyticsApi get_analytics_metrics_incidents_team POST /analytics/metrics/incidents/teams Get aggregated team data
PagerDutyOpenapiClient::AnalyticsApi get_analytics_metrics_incidents_team_all POST /analytics/metrics/incidents/teams/all Get aggregated metrics for all teams
PagerDutyOpenapiClient::AnalyticsApi get_analytics_metrics_responders_all POST /analytics/metrics/responders/all Get aggregated metrics for all responders
PagerDutyOpenapiClient::AnalyticsApi get_analytics_metrics_responders_team POST /analytics/metrics/responders/teams Get responder data aggregated by team
PagerDutyOpenapiClient::AnalyticsApi get_analytics_responder_incidents POST /analytics/raw/responders/{responder_id}/incidents Get raw incidents for a single responder_id
PagerDutyOpenapiClient::AuditApi list_audit_records GET /audit/records List audit records
PagerDutyOpenapiClient::AutomationActionsApi create_automation_action POST /automation_actions/actions Create an Automation Action
PagerDutyOpenapiClient::AutomationActionsApi create_automation_action_invocation POST /automation_actions/actions/{id}/invocations Create an Invocation
PagerDutyOpenapiClient::AutomationActionsApi create_automation_action_service_assocation POST /automation_actions/actions/{id}/services Associate an Automation Action with a service
PagerDutyOpenapiClient::AutomationActionsApi create_automation_action_team_association POST /automation_actions/actions/{id}/teams Associate an Automation Action with a team
PagerDutyOpenapiClient::AutomationActionsApi create_automation_actions_runner POST /automation_actions/runners Create an Automation Action runner.
PagerDutyOpenapiClient::AutomationActionsApi create_automation_actions_runner_team_association POST /automation_actions/runners/{id}/teams Associate a runner with a team
PagerDutyOpenapiClient::AutomationActionsApi delete_automation_action DELETE /automation_actions/actions/{id} Delete an Automation Action
PagerDutyOpenapiClient::AutomationActionsApi delete_automation_action_service_association DELETE /automation_actions/actions/{id}/services/{service_id} Disassociate an Automation Action from a service
PagerDutyOpenapiClient::AutomationActionsApi delete_automation_action_team_association DELETE /automation_actions/actions/{id}/teams/{team_id} Disassociate an Automation Action from a team
PagerDutyOpenapiClient::AutomationActionsApi delete_automation_actions_runner DELETE /automation_actions/runners/{id} Delete an Automation Action runner
PagerDutyOpenapiClient::AutomationActionsApi delete_automation_actions_runner_team_association DELETE /automation_actions/runners/{id}/teams/{team_id} Disassociate a runner from a team
PagerDutyOpenapiClient::AutomationActionsApi get_all_automation_actions GET /automation_actions/actions List Automation Actions
PagerDutyOpenapiClient::AutomationActionsApi get_automation_action GET /automation_actions/actions/{id} Get an Automation Action
PagerDutyOpenapiClient::AutomationActionsApi get_automation_actions_action_service_association GET /automation_actions/actions/{id}/services/{service_id} Get the details of an Automation Action / service relation
PagerDutyOpenapiClient::AutomationActionsApi get_automation_actions_action_service_associations GET /automation_actions/actions/{id}/services Get all service references associated with an Automation Action
PagerDutyOpenapiClient::AutomationActionsApi get_automation_actions_action_team_association GET /automation_actions/actions/{id}/teams/{team_id} Get the details of an Automation Action / team relation
PagerDutyOpenapiClient::AutomationActionsApi get_automation_actions_action_team_associations GET /automation_actions/actions/{id}/teams Get all team references associated with an Automation Action
PagerDutyOpenapiClient::AutomationActionsApi get_automation_actions_invocation GET /automation_actions/invocations/{id} Get an Invocation
PagerDutyOpenapiClient::AutomationActionsApi get_automation_actions_runner GET /automation_actions/runners/{id} Get an Automation Action runner
PagerDutyOpenapiClient::AutomationActionsApi get_automation_actions_runner_team_association GET /automation_actions/runners/{id}/teams/{team_id} Get the details of a runner / team relation
PagerDutyOpenapiClient::AutomationActionsApi get_automation_actions_runner_team_associations GET /automation_actions/runners/{id}/teams Get all team references associated with a runner
PagerDutyOpenapiClient::AutomationActionsApi get_automation_actions_runners GET /automation_actions/runners List Automation Action runners
PagerDutyOpenapiClient::AutomationActionsApi list_automation_action_invocations GET /automation_actions/invocations List Invocations
PagerDutyOpenapiClient::AutomationActionsApi update_automation_action PUT /automation_actions/actions/{id} Update an Automation Action
PagerDutyOpenapiClient::AutomationActionsApi update_automation_actions_runner PUT /automation_actions/runners/{id} Update an Automation Action runner
PagerDutyOpenapiClient::BusinessServicesApi create_business_service POST /business_services Create a Business Service
PagerDutyOpenapiClient::BusinessServicesApi create_business_service_account_subscription POST /business_services/{id}/account_subscription Create Business Service Account Subscription
PagerDutyOpenapiClient::BusinessServicesApi create_business_service_notification_subscribers POST /business_services/{id}/subscribers Create Business Service Subscribers
PagerDutyOpenapiClient::BusinessServicesApi delete_business_service DELETE /business_services/{id} Delete a Business Service
PagerDutyOpenapiClient::BusinessServicesApi delete_business_service_priority_thresholds DELETE /business_services/priority_thresholds Deletes the account-level priority threshold for Business Service impact
PagerDutyOpenapiClient::BusinessServicesApi get_business_service GET /business_services/{id} Get a Business Service
PagerDutyOpenapiClient::BusinessServicesApi get_business_service_impacts GET /business_services/impacts List Business Services sorted by impacted status
PagerDutyOpenapiClient::BusinessServicesApi get_business_service_priority_thresholds GET /business_services/priority_thresholds Get the global priority threshold for a Business Service to be considered impacted by an Incident
PagerDutyOpenapiClient::BusinessServicesApi get_business_service_subscribers GET /business_services/{id}/subscribers List Business Service Subscribers
PagerDutyOpenapiClient::BusinessServicesApi get_business_service_supporting_service_impacts GET /business_services/{id}/supporting_services/impacts List the supporting Business Services for the given Business Service Id, sorted by impacted status.
PagerDutyOpenapiClient::BusinessServicesApi get_business_service_top_level_impactors GET /business_services/impactors List Impactors affecting Business Services
PagerDutyOpenapiClient::BusinessServicesApi list_business_services GET /business_services List Business Services
PagerDutyOpenapiClient::BusinessServicesApi put_business_service_priority_thresholds PUT /business_services/priority_thresholds Set the Account-level priority threshold for Business Service impact.
PagerDutyOpenapiClient::BusinessServicesApi remove_business_service_account_subscription DELETE /business_services/{id}/account_subscription Delete Business Service Account Subscription
PagerDutyOpenapiClient::BusinessServicesApi remove_business_service_notification_subscriber POST /business_services/{id}/unsubscribe Remove Business Service Subscribers
PagerDutyOpenapiClient::BusinessServicesApi update_business_service PUT /business_services/{id} Update a Business Service
PagerDutyOpenapiClient::ChangeEventsApi create_change_event POST /change_events Create a Change Event
PagerDutyOpenapiClient::ChangeEventsApi get_change_event GET /change_events/{id} Get a Change Event
PagerDutyOpenapiClient::ChangeEventsApi list_change_events GET /change_events List Change Events
PagerDutyOpenapiClient::ChangeEventsApi list_incident_related_change_events GET /incidents/{id}/related_change_events List related Change Events for an Incident
PagerDutyOpenapiClient::ChangeEventsApi list_service_change_events GET /services/{id}/change_events List Change Events for a service
PagerDutyOpenapiClient::ChangeEventsApi update_change_event PUT /change_events/{id} Update a Change Event
PagerDutyOpenapiClient::CustomFieldsApi create_custom_fields_field POST /incidents/custom_fields Create a Field
PagerDutyOpenapiClient::CustomFieldsApi create_custom_fields_field_option POST /incidents/custom_fields/{field_id}/field_options Create a Field Option
PagerDutyOpenapiClient::CustomFieldsApi delete_custom_fields_field DELETE /incidents/custom_fields/{field_id} Delete a Field
PagerDutyOpenapiClient::CustomFieldsApi delete_custom_fields_field_option DELETE /incidents/custom_fields/{field_id}/field_options/{field_option_id} Delete a Field Option
PagerDutyOpenapiClient::CustomFieldsApi get_custom_fields_field GET /incidents/custom_fields/{field_id} Get a Field
PagerDutyOpenapiClient::CustomFieldsApi list_custom_fields_field_options GET /incidents/custom_fields/{field_id}/field_options List Field Options
PagerDutyOpenapiClient::CustomFieldsApi list_custom_fields_fields GET /incidents/custom_fields List Fields
PagerDutyOpenapiClient::CustomFieldsApi update_custom_fields_field PUT /incidents/custom_fields/{field_id} Update a Field
PagerDutyOpenapiClient::CustomFieldsApi update_custom_fields_field_option PUT /incidents/custom_fields/{field_id}/field_options/{field_option_id} Update a Field Option
PagerDutyOpenapiClient::EscalationPoliciesApi create_escalation_policy POST /escalation_policies Create an escalation policy
PagerDutyOpenapiClient::EscalationPoliciesApi delete_escalation_policy DELETE /escalation_policies/{id} Delete an escalation policy
PagerDutyOpenapiClient::EscalationPoliciesApi get_escalation_policy GET /escalation_policies/{id} Get an escalation policy
PagerDutyOpenapiClient::EscalationPoliciesApi list_escalation_policies GET /escalation_policies List escalation policies
PagerDutyOpenapiClient::EscalationPoliciesApi list_escalation_policy_audit_records GET /escalation_policies/{id}/audit/records List audit records for an escalation policy
PagerDutyOpenapiClient::EscalationPoliciesApi update_escalation_policy PUT /escalation_policies/{id} Update an escalation policy
PagerDutyOpenapiClient::EventOrchestrationsApi create_cache_var_on_global_orch POST /event_orchestrations/{id}/cache_variables Create a Cache Variable for a Global Event Orchestration
PagerDutyOpenapiClient::EventOrchestrationsApi create_cache_var_on_service_orch POST /event_orchestrations/services/{service_id}/cache_variables Create a Cache Variable for a Service Event Orchestration
PagerDutyOpenapiClient::EventOrchestrationsApi delete_cache_var_on_global_orch DELETE /event_orchestrations/{id}/cache_variables/{cache_variable_id} Delete a Cache Variable for a Global Event Orchestration
PagerDutyOpenapiClient::EventOrchestrationsApi delete_cache_var_on_service_orch DELETE /event_orchestrations/services/{service_id}/cache_variables/{cache_variable_id} Delete a Cache Variable for a Service Event Orchestration
PagerDutyOpenapiClient::EventOrchestrationsApi delete_orchestration DELETE /event_orchestrations/{id} Delete an Orchestration
PagerDutyOpenapiClient::EventOrchestrationsApi delete_orchestration_integration DELETE /event_orchestrations/{id}/integrations/{integration_id} Delete an Integration for an Event Orchestration
PagerDutyOpenapiClient::EventOrchestrationsApi get_cache_var_on_global_orch GET /event_orchestrations/{id}/cache_variables/{cache_variable_id} Get a Cache Variable for a Global Event Orchestration
PagerDutyOpenapiClient::EventOrchestrationsApi get_cache_var_on_service_orch GET /event_orchestrations/services/{service_id}/cache_variables/{cache_variable_id} Get a Cache Variable for a Service Event Orchestration
PagerDutyOpenapiClient::EventOrchestrationsApi get_orch_active_status GET /event_orchestrations/services/{service_id}/active Get the Service Orchestration active status for a Service
PagerDutyOpenapiClient::EventOrchestrationsApi get_orch_path_global GET /event_orchestrations/{id}/global Get the Global Orchestration for an Event Orchestration
PagerDutyOpenapiClient::EventOrchestrationsApi get_orch_path_router GET /event_orchestrations/{id}/router Get the Router for an Event Orchestration
PagerDutyOpenapiClient::EventOrchestrationsApi get_orch_path_service GET /event_orchestrations/services/{service_id} Get the Service Orchestration for a Service
PagerDutyOpenapiClient::EventOrchestrationsApi get_orch_path_unrouted GET /event_orchestrations/{id}/unrouted Get the Unrouted Orchestration for an Event Orchestration
PagerDutyOpenapiClient::EventOrchestrationsApi get_orchestration GET /event_orchestrations/{id} Get an Orchestration
PagerDutyOpenapiClient::EventOrchestrationsApi get_orchestration_integration GET /event_orchestrations/{id}/integrations/{integration_id} Get an Integration for an Event Orchestration
PagerDutyOpenapiClient::EventOrchestrationsApi list_cache_var_on_global_orch GET /event_orchestrations/{id}/cache_variables List Cache Variables for a Global Event Orchestration
PagerDutyOpenapiClient::EventOrchestrationsApi list_cache_var_on_service_orch GET /event_orchestrations/services/{service_id}/cache_variables List Cache Variables for a Service Event Orchestration
PagerDutyOpenapiClient::EventOrchestrationsApi list_event_orchestrations GET /event_orchestrations List Event Orchestrations
PagerDutyOpenapiClient::EventOrchestrationsApi list_orchestration_integrations GET /event_orchestrations/{id}/integrations List Integrations for an Event Orchestration
PagerDutyOpenapiClient::EventOrchestrationsApi migrate_orchestration_integration POST /event_orchestrations/{id}/integrations/migration Migrate an Integration from one Event Orchestration to another
PagerDutyOpenapiClient::EventOrchestrationsApi post_orchestration POST /event_orchestrations Create an Orchestration
PagerDutyOpenapiClient::EventOrchestrationsApi post_orchestration_integration POST /event_orchestrations/{id}/integrations Create an Integration for an Event Orchestration
PagerDutyOpenapiClient::EventOrchestrationsApi update_cache_var_on_global_orch PUT /event_orchestrations/{id}/cache_variables/{cache_variable_id} Update a Cache Variable for a Global Event Orchestration
PagerDutyOpenapiClient::EventOrchestrationsApi update_cache_var_on_service_orch PUT /event_orchestrations/services/{service_id}/cache_variables/{cache_variable_id} Update a Cache Variable for a Service Event Orchestration
PagerDutyOpenapiClient::EventOrchestrationsApi update_orch_active_status PUT /event_orchestrations/services/{service_id}/active Update the Service Orchestration active status for a Service
PagerDutyOpenapiClient::EventOrchestrationsApi update_orch_path_global PUT /event_orchestrations/{id}/global Update the Global Orchestration for an Event Orchestration
PagerDutyOpenapiClient::EventOrchestrationsApi update_orch_path_router PUT /event_orchestrations/{id}/router Update the Router for an Event Orchestration
PagerDutyOpenapiClient::EventOrchestrationsApi update_orch_path_service PUT /event_orchestrations/services/{service_id} Update the Service Orchestration for a Service
PagerDutyOpenapiClient::EventOrchestrationsApi update_orch_path_unrouted PUT /event_orchestrations/{id}/unrouted Update the Unrouted Orchestration for an Event Orchestration
PagerDutyOpenapiClient::EventOrchestrationsApi update_orchestration PUT /event_orchestrations/{id} Update an Orchestration
PagerDutyOpenapiClient::EventOrchestrationsApi update_orchestration_integration PUT /event_orchestrations/{id}/integrations/{integration_id} Update an Integration for an Event Orchestration
PagerDutyOpenapiClient::ExtensionSchemasApi get_extension_schema GET /extension_schemas/{id} Get an extension vendor
PagerDutyOpenapiClient::ExtensionSchemasApi list_extension_schemas GET /extension_schemas List extension schemas
PagerDutyOpenapiClient::ExtensionsApi create_extension POST /extensions Create an extension
PagerDutyOpenapiClient::ExtensionsApi delete_extension DELETE /extensions/{id} Delete an extension
PagerDutyOpenapiClient::ExtensionsApi enable_extension POST /extensions/{id}/enable Enable an extension
PagerDutyOpenapiClient::ExtensionsApi get_extension GET /extensions/{id} Get an extension
PagerDutyOpenapiClient::ExtensionsApi list_extensions GET /extensions List extensions
PagerDutyOpenapiClient::ExtensionsApi update_extension PUT /extensions/{id} Update an extension
PagerDutyOpenapiClient::IncidentWorkflowsApi associate_service_to_incident_workflow_trigger POST /incident_workflows/triggers/{id}/services Associate a Trigger and Service
PagerDutyOpenapiClient::IncidentWorkflowsApi create_incident_workflow_instance POST /incident_workflows/{id}/instances Start an Incident Workflow Instance
PagerDutyOpenapiClient::IncidentWorkflowsApi create_incident_workflow_trigger POST /incident_workflows/triggers Create a Trigger
PagerDutyOpenapiClient::IncidentWorkflowsApi delete_incident_workflow DELETE /incident_workflows/{id} Delete an Incident Workflow
PagerDutyOpenapiClient::IncidentWorkflowsApi delete_incident_workflow_trigger DELETE /incident_workflows/triggers/{id} Delete a Trigger
PagerDutyOpenapiClient::IncidentWorkflowsApi delete_service_from_incident_workflow_trigger DELETE /incident_workflows/triggers/{trigger_id}/services/{service_id} Dissociate a Trigger and Service
PagerDutyOpenapiClient::IncidentWorkflowsApi get_incident_workflow GET /incident_workflows/{id} Get an Incident Workflow
PagerDutyOpenapiClient::IncidentWorkflowsApi get_incident_workflow_action GET /incident_workflows/actions/{id} Get an Action
PagerDutyOpenapiClient::IncidentWorkflowsApi get_incident_workflow_trigger GET /incident_workflows/triggers/{id} Get a Trigger
PagerDutyOpenapiClient::IncidentWorkflowsApi list_incident_workflow_actions GET /incident_workflows/actions List Actions
PagerDutyOpenapiClient::IncidentWorkflowsApi list_incident_workflow_triggers GET /incident_workflows/triggers List Triggers
PagerDutyOpenapiClient::IncidentWorkflowsApi list_incident_workflows GET /incident_workflows List Incident Workflows
PagerDutyOpenapiClient::IncidentWorkflowsApi post_incident_workflow POST /incident_workflows Create an Incident Workflow
PagerDutyOpenapiClient::IncidentWorkflowsApi put_incident_workflow PUT /incident_workflows/{id} Update an Incident Workflow
PagerDutyOpenapiClient::IncidentWorkflowsApi update_incident_workflow_trigger PUT /incident_workflows/triggers/{id} Update a Trigger
PagerDutyOpenapiClient::IncidentsApi create_incident POST /incidents Create an Incident
PagerDutyOpenapiClient::IncidentsApi create_incident_note POST /incidents/{id}/notes Create a note on an incident
PagerDutyOpenapiClient::IncidentsApi create_incident_notification_subscribers POST /incidents/{id}/status_updates/subscribers Add Notification Subscribers
PagerDutyOpenapiClient::IncidentsApi create_incident_responder_request POST /incidents/{id}/responder_requests Create a responder request for an incident
PagerDutyOpenapiClient::IncidentsApi create_incident_snooze POST /incidents/{id}/snooze Snooze an incident
PagerDutyOpenapiClient::IncidentsApi create_incident_status_update POST /incidents/{id}/status_updates Create a status update on an incident
PagerDutyOpenapiClient::IncidentsApi get_incident GET /incidents/{id} Get an incident
PagerDutyOpenapiClient::IncidentsApi get_incident_alert GET /incidents/{id}/alerts/{alert_id} Get an alert
PagerDutyOpenapiClient::IncidentsApi get_incident_field_values GET /incidents/{id}/custom_fields/values Get Custom Field Values
PagerDutyOpenapiClient::IncidentsApi get_incident_impacted_business_services GET /incidents/{id}/business_services/impacts List Business Services impacted by the given Incident
PagerDutyOpenapiClient::IncidentsApi get_incident_notification_subscribers GET /incidents/{id}/status_updates/subscribers List Notification Subscribers
PagerDutyOpenapiClient::IncidentsApi get_outlier_incident GET /incidents/{id}/outlier_incident Get Outlier Incident
PagerDutyOpenapiClient::IncidentsApi get_past_incidents GET /incidents/{id}/past_incidents Get Past Incidents
PagerDutyOpenapiClient::IncidentsApi get_related_incidents GET /incidents/{id}/related_incidents Get Related Incidents
PagerDutyOpenapiClient::IncidentsApi list_incident_alerts GET /incidents/{id}/alerts List alerts for an incident
PagerDutyOpenapiClient::IncidentsApi list_incident_log_entries GET /incidents/{id}/log_entries List log entries for an incident
PagerDutyOpenapiClient::IncidentsApi list_incident_notes GET /incidents/{id}/notes List notes for an incident
PagerDutyOpenapiClient::IncidentsApi list_incidents GET /incidents List incidents
PagerDutyOpenapiClient::IncidentsApi merge_incidents PUT /incidents/{id}/merge Merge incidents
PagerDutyOpenapiClient::IncidentsApi put_incident_manual_business_service_association PUT /incidents/{id}/business_services/{business_service_id}/impacts Manually change an Incident's Impact on a Business Service.
PagerDutyOpenapiClient::IncidentsApi remove_incident_notification_subscribers POST /incidents/{id}/status_updates/unsubscribe Remove Notification Subscriber
PagerDutyOpenapiClient::IncidentsApi set_incident_field_values PUT /incidents/{id}/custom_fields/values Update Custom Field Values
PagerDutyOpenapiClient::IncidentsApi update_incident PUT /incidents/{id} Update an incident
PagerDutyOpenapiClient::IncidentsApi update_incident_alert PUT /incidents/{id}/alerts/{alert_id} Update an alert
PagerDutyOpenapiClient::IncidentsApi update_incident_alerts PUT /incidents/{id}/alerts Manage alerts
PagerDutyOpenapiClient::IncidentsApi update_incidents PUT /incidents Manage incidents
PagerDutyOpenapiClient::LicensesApi list_license_allocations GET /license_allocations List License Allocations
PagerDutyOpenapiClient::LicensesApi list_licenses GET /licenses List Licenses
PagerDutyOpenapiClient::LogEntriesApi get_log_entry GET /log_entries/{id} Get a log entry
PagerDutyOpenapiClient::LogEntriesApi list_log_entries GET /log_entries List log entries
PagerDutyOpenapiClient::LogEntriesApi update_log_entry_channel PUT /log_entries/{id}/channel Update log entry channel information.
PagerDutyOpenapiClient::MaintenanceWindowsApi create_maintenance_window POST /maintenance_windows Create a maintenance window
PagerDutyOpenapiClient::MaintenanceWindowsApi delete_maintenance_window DELETE /maintenance_windows/{id} Delete or end a maintenance window
PagerDutyOpenapiClient::MaintenanceWindowsApi get_maintenance_window GET /maintenance_windows/{id} Get a maintenance window
PagerDutyOpenapiClient::MaintenanceWindowsApi list_maintenance_windows GET /maintenance_windows List maintenance windows
PagerDutyOpenapiClient::MaintenanceWindowsApi update_maintenance_window PUT /maintenance_windows/{id} Update a maintenance window
PagerDutyOpenapiClient::NotificationsApi list_notifications GET /notifications List notifications
PagerDutyOpenapiClient::OnCallsApi list_on_calls GET /oncalls List all of the on-calls
PagerDutyOpenapiClient::PausedIncidentReportsApi get_paused_incident_report_alerts GET /paused_incident_reports/alerts Get Paused Incident Reporting on Alerts
PagerDutyOpenapiClient::PausedIncidentReportsApi get_paused_incident_report_counts GET /paused_incident_reports/counts Get Paused Incident Reporting counts
PagerDutyOpenapiClient::PrioritiesApi list_priorities GET /priorities List priorities
PagerDutyOpenapiClient::ResponsePlaysApi create_response_play POST /response_plays Create a Response Play
PagerDutyOpenapiClient::ResponsePlaysApi delete_response_play DELETE /response_plays/{id} Delete a Response Play
PagerDutyOpenapiClient::ResponsePlaysApi get_response_play GET /response_plays/{id} Get a Response Play
PagerDutyOpenapiClient::ResponsePlaysApi list_response_plays GET /response_plays List Response Plays
PagerDutyOpenapiClient::ResponsePlaysApi run_response_play POST /response_plays/{response_play_id}/run Run a response play
PagerDutyOpenapiClient::ResponsePlaysApi update_response_play PUT /response_plays/{id} Update a Response Play
PagerDutyOpenapiClient::RulesetsApi create_ruleset POST /rulesets Create a Ruleset
PagerDutyOpenapiClient::RulesetsApi create_ruleset_event_rule POST /rulesets/{id}/rules Create an Event Rule
PagerDutyOpenapiClient::RulesetsApi delete_ruleset DELETE /rulesets/{id} Delete a Ruleset
PagerDutyOpenapiClient::RulesetsApi delete_ruleset_event_rule DELETE /rulesets/{id}/rules/{rule_id} Delete an Event Rule
PagerDutyOpenapiClient::RulesetsApi get_ruleset GET /rulesets/{id} Get a Ruleset
PagerDutyOpenapiClient::RulesetsApi get_ruleset_event_rule GET /rulesets/{id}/rules/{rule_id} Get an Event Rule
PagerDutyOpenapiClient::RulesetsApi list_ruleset_event_rules GET /rulesets/{id}/rules List Event Rules
PagerDutyOpenapiClient::RulesetsApi list_rulesets GET /rulesets List Rulesets
PagerDutyOpenapiClient::RulesetsApi update_ruleset PUT /rulesets/{id} Update a Ruleset
PagerDutyOpenapiClient::RulesetsApi update_ruleset_event_rule PUT /rulesets/{id}/rules/{rule_id} Update an Event Rule
PagerDutyOpenapiClient::SchedulesApi create_schedule POST /schedules Create a schedule
PagerDutyOpenapiClient::SchedulesApi create_schedule_override POST /schedules/{id}/overrides Create one or more overrides
PagerDutyOpenapiClient::SchedulesApi create_schedule_preview POST /schedules/preview Preview a schedule
PagerDutyOpenapiClient::SchedulesApi delete_schedule DELETE /schedules/{id} Delete a schedule
PagerDutyOpenapiClient::SchedulesApi delete_schedule_override DELETE /schedules/{id}/overrides/{override_id} Delete an override
PagerDutyOpenapiClient::SchedulesApi get_schedule GET /schedules/{id} Get a schedule
PagerDutyOpenapiClient::SchedulesApi list_schedule_overrides GET /schedules/{id}/overrides List overrides
PagerDutyOpenapiClient::SchedulesApi list_schedule_users GET /schedules/{id}/users List users on call.
PagerDutyOpenapiClient::SchedulesApi list_schedules GET /schedules List schedules
PagerDutyOpenapiClient::SchedulesApi list_schedules_audit_records GET /schedules/{id}/audit/records List audit records for a schedule
PagerDutyOpenapiClient::SchedulesApi update_schedule PUT /schedules/{id} Update a schedule
PagerDutyOpenapiClient::ServiceDependenciesApi create_service_dependency POST /service_dependencies/associate Associate service dependencies
PagerDutyOpenapiClient::ServiceDependenciesApi delete_service_dependency POST /service_dependencies/disassociate Disassociate service dependencies
PagerDutyOpenapiClient::ServiceDependenciesApi get_business_service_service_dependencies GET /service_dependencies/business_services/{id} Get Business Service dependencies
PagerDutyOpenapiClient::ServiceDependenciesApi get_technical_service_service_dependencies GET /service_dependencies/technical_services/{id} Get technical service dependencies
PagerDutyOpenapiClient::ServicesApi convert_service_event_rules_to_event_orchestration POST /services/{id}/rules/convert Convert a Service's Event Rules into Event Orchestration Rules
PagerDutyOpenapiClient::ServicesApi create_service POST /services Create a service
PagerDutyOpenapiClient::ServicesApi create_service_event_rule POST /services/{id}/rules Create an Event Rule on a Service
PagerDutyOpenapiClient::ServicesApi create_service_integration POST /services/{id}/integrations Create a new integration
PagerDutyOpenapiClient::ServicesApi delete_service DELETE /services/{id} Delete a service
PagerDutyOpenapiClient::ServicesApi delete_service_event_rule DELETE /services/{id}/rules/{rule_id} Delete an Event Rule from a Service
PagerDutyOpenapiClient::ServicesApi get_service GET /services/{id} Get a service
PagerDutyOpenapiClient::ServicesApi get_service_event_rule GET /services/{id}/rules/{rule_id} Get an Event Rule from a Service
PagerDutyOpenapiClient::ServicesApi get_service_integration GET /services/{id}/integrations/{integration_id} View an integration
PagerDutyOpenapiClient::ServicesApi list_service_audit_records GET /services/{id}/audit/records List audit records for a service
PagerDutyOpenapiClient::ServicesApi list_service_event_rules GET /services/{id}/rules List Service's Event Rules
PagerDutyOpenapiClient::ServicesApi list_services GET /services List services
PagerDutyOpenapiClient::ServicesApi update_service PUT /services/{id} Update a service
PagerDutyOpenapiClient::ServicesApi update_service_event_rule PUT /services/{id}/rules/{rule_id} Update an Event Rule on a Service
PagerDutyOpenapiClient::ServicesApi update_service_integration PUT /services/{id}/integrations/{integration_id} Update an existing integration
PagerDutyOpenapiClient::StandardsApi list_resource_standards GET /standards/scores/{resource_type}/{id} List a resource's standards scores
PagerDutyOpenapiClient::StandardsApi list_resource_standards_many_services GET /standards/scores/{resource_type} List resources' standards scores
PagerDutyOpenapiClient::StandardsApi list_standards GET /standards List Standards
PagerDutyOpenapiClient::StandardsApi update_standard PUT /standards/{id} Update a standard
PagerDutyOpenapiClient::StatusDashboardsApi get_status_dashboard_by_id GET /status_dashboards/{id} Get a single Status Dashboard by id
PagerDutyOpenapiClient::StatusDashboardsApi get_status_dashboard_by_url_slug GET /status_dashboards/url_slugs/{url_slug} Get a single Status Dashboard by url_slug
PagerDutyOpenapiClient::StatusDashboardsApi get_status_dashboard_service_impacts_by_id GET /status_dashboards/{id}/service_impacts Get impacted Business Services for a Status Dashboard by id.
PagerDutyOpenapiClient::StatusDashboardsApi get_status_dashboard_service_impacts_by_url_slug GET /status_dashboards/url_slugs/{url_slug}/service_impacts Get impacted Business Services for a Status Dashboard by url_slug
PagerDutyOpenapiClient::StatusDashboardsApi list_status_dashboards GET /status_dashboards List Status Dashboards
PagerDutyOpenapiClient::StatusPagesApi create_status_page_post POST /status_pages/{id}/posts Create a Status Page Post
PagerDutyOpenapiClient::StatusPagesApi create_status_page_post_update POST /status_pages/{id}/posts/{post_id}/post_updates Create a Status Page Post Update
PagerDutyOpenapiClient::StatusPagesApi create_status_page_postmortem POST /status_pages/{id}/posts/{post_id}/postmortem Create a Post Postmortem
PagerDutyOpenapiClient::StatusPagesApi create_status_page_subscription POST /status_pages/{id}/subscriptions Create a Status Page Subscription
PagerDutyOpenapiClient::StatusPagesApi delete_status_page_post DELETE /status_pages/{id}/posts/{post_id} Delete a Status Page Post
PagerDutyOpenapiClient::StatusPagesApi delete_status_page_post_update DELETE /status_pages/{id}/posts/{post_id}/post_updates/{post_update_id} Delete a Status Page Post Update
PagerDutyOpenapiClient::StatusPagesApi delete_status_page_postmortem DELETE /status_pages/{id}/posts/{post_id}/postmortem Delete a Post Postmortem
PagerDutyOpenapiClient::StatusPagesApi delete_status_page_subscription DELETE /status_pages/{id}/subscriptions/{subscription_id} Delete a Status Page Subscription
PagerDutyOpenapiClient::StatusPagesApi get_post_update GET /status_pages/{id}/posts/{post_id}/post_updates/{post_update_id} Get a Status Page Post Update
PagerDutyOpenapiClient::StatusPagesApi get_postmortem GET /status_pages/{id}/posts/{post_id}/postmortem Get a Post Postmortem
PagerDutyOpenapiClient::StatusPagesApi get_status_page_impact GET /status_pages/{id}/impacts/{impact_id} Get a Status Page Impact
PagerDutyOpenapiClient::StatusPagesApi get_status_page_post GET /status_pages/{id}/posts/{post_id} Get a Status Page Post
PagerDutyOpenapiClient::StatusPagesApi get_status_page_service GET /status_pages/{id}/services/{service_id} Get a Status Page Service
PagerDutyOpenapiClient::StatusPagesApi get_status_page_severity GET /status_pages/{id}/severities/{severity_id} Get a Status Page Severity
PagerDutyOpenapiClient::StatusPagesApi get_status_page_status GET /status_pages/{id}/statuses/{status_id} Get a Status Page Status
PagerDutyOpenapiClient::StatusPagesApi get_status_page_subscription GET /status_pages/{id}/subscriptions/{subscription_id} Get a Status Page Subscription
PagerDutyOpenapiClient::StatusPagesApi list_status_page_impacts GET /status_pages/{id}/impacts List Status Page Impacts
PagerDutyOpenapiClient::StatusPagesApi list_status_page_post_updates GET /status_pages/{id}/posts/{post_id}/post_updates List Status Page Post Updates
PagerDutyOpenapiClient::StatusPagesApi list_status_page_posts GET /status_pages/{id}/posts List Status Page Posts
PagerDutyOpenapiClient::StatusPagesApi list_status_page_services GET /status_pages/{id}/services List Status Page Services
PagerDutyOpenapiClient::StatusPagesApi list_status_page_severities GET /status_pages/{id}/severities List Status Page Severities
PagerDutyOpenapiClient::StatusPagesApi list_status_page_statuses GET /status_pages/{id}/statuses List Status Page Statuses
PagerDutyOpenapiClient::StatusPagesApi list_status_page_subscriptions GET /status_pages/{id}/subscriptions List Status Page Subscriptions
PagerDutyOpenapiClient::StatusPagesApi list_status_pages GET /status_pages List Status Pages
PagerDutyOpenapiClient::StatusPagesApi update_status_page_post PUT /status_pages/{id}/posts/{post_id} Update a Status Page Post
PagerDutyOpenapiClient::StatusPagesApi update_status_page_post_update PUT /status_pages/{id}/posts/{post_id}/post_updates/{post_update_id} Update a Status Page Post Update
PagerDutyOpenapiClient::StatusPagesApi update_status_page_postmortem PUT /status_pages/{id}/posts/{post_id}/postmortem Update a Post Postmortem
PagerDutyOpenapiClient::TagsApi create_entity_type_by_id_change_tags POST /{entity_type}/{id}/change_tags Assign tags
PagerDutyOpenapiClient::TagsApi create_tags POST /tags Create a tag
PagerDutyOpenapiClient::TagsApi delete_tag DELETE /tags/{id} Delete a tag
PagerDutyOpenapiClient::TagsApi get_entity_type_by_id_tags GET /{entity_type}/{id}/tags Get tags for entities
PagerDutyOpenapiClient::TagsApi get_tag GET /tags/{id} Get a tag
PagerDutyOpenapiClient::TagsApi get_tags_by_entity_type GET /tags/{id}/{entity_type} Get connected entities
PagerDutyOpenapiClient::TagsApi list_tags GET /tags List tags
PagerDutyOpenapiClient::TeamsApi create_team POST /teams Create a team
PagerDutyOpenapiClient::TeamsApi create_team_notification_subscriptions POST /teams/{id}/notification_subscriptions Create Team Notification Subscriptions
PagerDutyOpenapiClient::TeamsApi delete_team DELETE /teams/{id} Delete a team
PagerDutyOpenapiClient::TeamsApi delete_team_escalation_policy DELETE /teams/{id}/escalation_policies/{escalation_policy_id} Remove an escalation policy from a team
PagerDutyOpenapiClient::TeamsApi delete_team_user DELETE /teams/{id}/users/{user_id} Remove a user from a team
PagerDutyOpenapiClient::TeamsApi get_team GET /teams/{id} Get a team
PagerDutyOpenapiClient::TeamsApi get_team_notification_subscriptions GET /teams/{id}/notification_subscriptions List Team Notification Subscriptions
PagerDutyOpenapiClient::TeamsApi list_team_users GET /teams/{id}/members List members of a team
PagerDutyOpenapiClient::TeamsApi list_teams GET /teams List teams
PagerDutyOpenapiClient::TeamsApi list_teams_audit_records GET /teams/{id}/audit/records List audit records for a team
PagerDutyOpenapiClient::TeamsApi remove_team_notification_subscriptions POST /teams/{id}/notification_subscriptions/unsubscribe
PagerDutyOpenapiClient::TeamsApi update_team PUT /teams/{id} Update a team
PagerDutyOpenapiClient::TeamsApi update_team_escalation_policy PUT /teams/{id}/escalation_policies/{escalation_policy_id} Add an escalation policy to a team
PagerDutyOpenapiClient::TeamsApi update_team_user PUT /teams/{id}/users/{user_id} Add a user to a team
PagerDutyOpenapiClient::TemplatesApi create_template POST /templates Create a template
PagerDutyOpenapiClient::TemplatesApi delete_template DELETE /templates/{id} Delete a template
PagerDutyOpenapiClient::TemplatesApi get_template GET /templates/{id} Get a template
PagerDutyOpenapiClient::TemplatesApi get_template_fields GET /templates/fields List template fields
PagerDutyOpenapiClient::TemplatesApi get_templates GET /templates List templates
PagerDutyOpenapiClient::TemplatesApi render_template POST /templates/{id}/render Render a template
PagerDutyOpenapiClient::TemplatesApi update_template PUT /templates/{id} Update a template
PagerDutyOpenapiClient::UsersApi create_user POST /users Create a user
PagerDutyOpenapiClient::UsersApi create_user_contact_method POST /users/{id}/contact_methods Create a user contact method
PagerDutyOpenapiClient::UsersApi create_user_handoff_notification_rule POST /users/{id}/oncall_handoff_notification_rules Create a User Handoff Notification Rule
PagerDutyOpenapiClient::UsersApi create_user_notification_rule POST /users/{id}/notification_rules Create a user notification rule
PagerDutyOpenapiClient::UsersApi create_user_notification_subscriptions POST /users/{id}/notification_subscriptions Create Notification Subcriptions
PagerDutyOpenapiClient::UsersApi create_user_status_update_notification_rule POST /users/{id}/status_update_notification_rules Create a user status update notification rule
PagerDutyOpenapiClient::UsersApi delete_user DELETE /users/{id} Delete a user
PagerDutyOpenapiClient::UsersApi delete_user_contact_method DELETE /users/{id}/contact_methods/{contact_method_id} Delete a user's contact method
PagerDutyOpenapiClient::UsersApi delete_user_handoff_notification_rule DELETE /users/{id}/oncall_handoff_notification_rules/{oncall_handoff_notification_rule_id} Delete a User's Handoff Notification rule
PagerDutyOpenapiClient::UsersApi delete_user_notification_rule DELETE /users/{id}/notification_rules/{notification_rule_id} Delete a user's notification rule
PagerDutyOpenapiClient::UsersApi delete_user_session DELETE /users/{id}/sessions/{type}/{session_id} Delete a user's session
PagerDutyOpenapiClient::UsersApi delete_user_sessions DELETE /users/{id}/sessions Delete all user sessions
PagerDutyOpenapiClient::UsersApi delete_user_status_update_notification_rule DELETE /users/{id}/status_update_notification_rules/{status_update_notification_rule_id} Delete a user's status update notification rule
PagerDutyOpenapiClient::UsersApi get_current_user GET /users/me Get the current user
PagerDutyOpenapiClient::UsersApi get_user GET /users/{id} Get a user
PagerDutyOpenapiClient::UsersApi get_user_contact_method GET /users/{id}/contact_methods/{contact_method_id} Get a user's contact method
PagerDutyOpenapiClient::UsersApi get_user_contact_methods GET /users/{id}/contact_methods List a user's contact methods
PagerDutyOpenapiClient::UsersApi get_user_handoff_notifiaction_rule GET /users/{id}/oncall_handoff_notification_rules/{oncall_handoff_notification_rule_id} Get a user's handoff notification rule
PagerDutyOpenapiClient::UsersApi get_user_handoff_notification_rules GET /users/{id}/oncall_handoff_notification_rules List a User's Handoff Notification Rules
PagerDutyOpenapiClient::UsersApi get_user_license GET /users/{id}/license Get the License allocated to a User
PagerDutyOpenapiClient::UsersApi get_user_notification_rule GET /users/{id}/notification_rules/{notification_rule_id} Get a user's notification rule
PagerDutyOpenapiClient::UsersApi get_user_notification_rules GET /users/{id}/notification_rules List a user's notification rules
PagerDutyOpenapiClient::UsersApi get_user_notification_subscriptions GET /users/{id}/notification_subscriptions List Notification Subscriptions
PagerDutyOpenapiClient::UsersApi get_user_session GET /users/{id}/sessions/{type}/{session_id} Get a user's session
PagerDutyOpenapiClient::UsersApi get_user_sessions GET /users/{id}/sessions List a user's active sessions
PagerDutyOpenapiClient::UsersApi get_user_status_update_notification_rule GET /users/{id}/status_update_notification_rules/{status_update_notification_rule_id} Get a user's status update notification rule
PagerDutyOpenapiClient::UsersApi get_user_status_update_notification_rules GET /users/{id}/status_update_notification_rules List a user's status update notification rules
PagerDutyOpenapiClient::UsersApi list_users GET /users List users
PagerDutyOpenapiClient::UsersApi list_users_audit_records GET /users/{id}/audit/records List audit records for a user
PagerDutyOpenapiClient::UsersApi unsubscribe_user_notification_subscriptions POST /users/{id}/notification_subscriptions/unsubscribe Remove Notification Subscriptions
PagerDutyOpenapiClient::UsersApi update_user PUT /users/{id} Update a user
PagerDutyOpenapiClient::UsersApi update_user_contact_method PUT /users/{id}/contact_methods/{contact_method_id} Update a user's contact method
PagerDutyOpenapiClient::UsersApi update_user_handoff_notification PUT /users/{id}/oncall_handoff_notification_rules/{oncall_handoff_notification_rule_id} Update a User's Handoff Notification Rule
PagerDutyOpenapiClient::UsersApi update_user_notification_rule PUT /users/{id}/notification_rules/{notification_rule_id} Update a user's notification rule
PagerDutyOpenapiClient::UsersApi update_user_status_update_notification_rule PUT /users/{id}/status_update_notification_rules/{status_update_notification_rule_id} Update a user's status update notification rule
PagerDutyOpenapiClient::VendorsApi get_vendor GET /vendors/{id} Get a vendor
PagerDutyOpenapiClient::VendorsApi list_vendors GET /vendors List vendors
PagerDutyOpenapiClient::WebhooksApi create_webhook_subscription POST /webhook_subscriptions Create a webhook subscription
PagerDutyOpenapiClient::WebhooksApi delete_webhook_subscription DELETE /webhook_subscriptions/{id} Delete a webhook subscription
PagerDutyOpenapiClient::WebhooksApi enable_webhook_subscription POST /webhook_subscriptions/{id}/enable Enable a webhook subscription
PagerDutyOpenapiClient::WebhooksApi get_webhook_subscription GET /webhook_subscriptions/{id} Get a webhook subscription
PagerDutyOpenapiClient::WebhooksApi list_webhook_subscriptions GET /webhook_subscriptions List webhook subscriptions
PagerDutyOpenapiClient::WebhooksApi test_webhook_subscription POST /webhook_subscriptions/{id}/ping Test a webhook subscription
PagerDutyOpenapiClient::WebhooksApi update_webhook_subscription PUT /webhook_subscriptions/{id} Update a webhook subscription

Documentation for Models

Documentation for Authorization

Authentication schemes defined for the API:

api_key

  • Type: API key
  • API key parameter name: Authorization
  • Location: HTTP header

About

Ruby client generated from PagerDuty's OpenAPI schema

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages