{ "opencollection": "1.0.0", "info": { "name": "New Relic Event Alerts Identifiers API", "version": "1" }, "request": { "auth": { "type": "apikey", "key": "Api-Key", "value": "{{Api-Key}}", "placement": "header" } }, "items": [ { "info": { "name": "Identifiers", "type": "folder" }, "items": [ { "info": { "name": "New Relic Get Applications Deployments", "type": "http" }, "http": { "method": "GET", "url": "https://insights-collector.newrelic.com/applications/:application_id/deployments.json", "params": [ { "name": "application_id", "value": "100", "type": "path", "description": "Application ID" }, { "name": "page", "value": "100", "type": "query", "description": "Pagination index" } ] }, "docs": "This API operation retrieves a paginated list of all deployment records associated with a specific application in New Relic. By making a GET request to the endpoint with a valid application ID, users can access historical deployment information including deployment timestamps, descriptions, revisions, changelogs, and the user who created each deployment record. This is useful for tracking application releases, correlating performance changes with deployments, and maintaining a comprehensive depl" }, { "info": { "name": "New Relic Post Applications Deployments", "type": "http" }, "http": { "method": "POST", "url": "https://insights-collector.newrelic.com/applications/:application_id/deployments.json", "params": [ { "name": "application_id", "value": "100", "type": "path", "description": "Application ID" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Creates a new deployment marker for a specified application in New Relic by sending a POST request to the /applications/{application_id}/deployments.json endpoint. This operation allows you to record deployment events, which appear as vertical lines on charts in the New Relic UI, helping teams correlate application performance changes with specific deployments. The request requires the application_id path parameter to identify the target application, and typically accepts deployment details in t" }, { "info": { "name": "New Relic Delete Applications Deployments", "type": "http" }, "http": { "method": "DELETE", "url": "https://insights-collector.newrelic.com/applications/:application_id/deployments/:id.json", "params": [ { "name": "application_id", "value": "100", "type": "path", "description": "Application ID" }, { "name": "id", "value": "100", "type": "path", "description": "Deployment ID" } ] }, "docs": "This API operation allows you to delete a specific deployment record from a New Relic application by making a DELETE request to the endpoint /applications/{application_id}/deployments/{id}.json, where {application_id} is the unique identifier of the application and {id} is the specific deployment record you want to remove. This is useful for removing incorrect or outdated deployment markers from your application's deployment history in New Relic, helping maintain accurate tracking of your applic" }, { "info": { "name": "New Relic Get Applications Hosts", "type": "http" }, "http": { "method": "GET", "url": "https://insights-collector.newrelic.com/applications/:application_id/hosts.json", "params": [ { "name": "application_id", "value": "100", "type": "path", "description": "Application ID" }, { "name": "filter[hostname]", "value": "web01.example.com", "type": "query", "description": "Filter by server hostname" }, { "name": "filter[ids]", "value": "500123", "type": "query", "description": "Filter by application host ids" }, { "name": "page", "value": "100", "type": "query", "description": "Pagination index" } ] }, "docs": "This API operation retrieves a paginated list of hosts associated with a specific application in New Relic. By making a GET request to the endpoint with a valid application ID, users can obtain information about all hosts running the specified application, including host details and performance metrics. The response is returned in JSON format and includes host identifiers, names, health status, and other relevant metadata that helps monitor application infrastructure across different servers or " }, { "info": { "name": "New Relic Get Applications Hosts Host Metrics", "type": "http" }, "http": { "method": "GET", "url": "https://insights-collector.newrelic.com/applications/:application_id/hosts/:host_id/metrics.json", "params": [ { "name": "application_id", "value": "100", "type": "path", "description": "Application ID" }, { "name": "host_id", "value": "100", "type": "path", "description": "Application Host ID" }, { "name": "name", "value": "example-resource-01", "type": "query", "description": "Filter metrics by name" }, { "name": "page", "value": "100", "type": "query", "description": "Pagination index (will be deprecated)" }, { "name": "cursor", "value": "example_string", "type": "query", "description": "Cursor for next page (replacing page param)" } ] }, "docs": "This API operation retrieves a list of metric names associated with a specific host within a given application in New Relic's Application Performance Monitoring (APM) system. By providing both an application ID and a host in the endpoint path, users can query the available metrics that New Relic is collecting for that particular host instance. The response returns metric name data in JSON format, which typically includes identifiers and metadata for various performance measurements such as CPU u" }, { "info": { "name": "New Relic Get Applications Hosts Host Metrics Data", "type": "http" }, "http": { "method": "GET", "url": "https://insights-collector.newrelic.com/applications/:application_id/hosts/:host_id/metrics/data.json", "params": [ { "name": "application_id", "value": "100", "type": "path", "description": "Application ID" }, { "name": "host_id", "value": "100", "type": "path", "description": "Application Host ID" }, { "name": "names", "value": "example_string", "type": "query", "description": "Retrieve specific metrics by name" }, { "name": "values", "value": "example_string", "type": "query", "description": "Retrieve specific metric values" }, { "name": "from", "value": "2026-04-18T14:30:00Z", "type": "query", "description": "Retrieve metrics after this time" }, { "name": "to", "value": "2026-04-18T14:30:00Z", "type": "query", "description": "Retrieve metrics before this time" }, { "name": "period", "value": "100", "type": "query", "description": "Period of timeslices in seconds" }, { "name": "summarize", "value": "true", "type": "query", "description": "Summarize the data" }, { "name": "raw", "value": "true", "type": "query", "description": "Return unformatted raw values" } ] }, "docs": "This API operation retrieves metric data for a specific host associated with a particular application in New Relic. By making a GET request to the endpoint with the application and host as path parameters, users can access detailed performance metrics and monitoring data for that specific host instance. The operation returns data in JSON format, which typically includes time-series metric values such as response times, throughput, error rates, and other performance indicators collected by New Re" }, { "info": { "name": "New Relic Get Applications Hosts", "type": "http" }, "http": { "method": "GET", "url": "https://insights-collector.newrelic.com/applications/:application_id/hosts/:id.json", "params": [ { "name": "application_id", "value": "100", "type": "path", "description": "Application ID" }, { "name": "id", "value": "100", "type": "path", "description": "Application host ID" } ] }, "docs": "This API operation retrieves detailed information about a specific host associated with a particular application in New Relic's APM monitoring system. By providing both an application and a host in the endpoint path, it returns comprehensive data about that host's performance metrics, system specifications, and current status within the context of the specified application. The GET request returns a JSON response containing host-level details such as hostname, health status, response times, thro" }, { "info": { "name": "New Relic Get Applications Instances", "type": "http" }, "http": { "method": "GET", "url": "https://insights-collector.newrelic.com/applications/:application_id/instances.json", "params": [ { "name": "application_id", "value": "100", "type": "path", "description": "Application ID" }, { "name": "filter[hostname]", "value": "web01.example.com", "type": "query", "description": "Filter by server hostname" }, { "name": "filter[ids]", "value": "500123", "type": "query", "description": "Filter by application instance ids" }, { "name": "page", "value": "100", "type": "query", "description": "Pagination index" } ] }, "docs": "

This API endpoint returns a \npaginated list of instances associated with the given application. The time range for summary data is the last 3-4 minutes.

\n\n

Application instances can be filtered by hostname, or the list of application instance IDs.

\n\n

See our documentation for a discussion and examples of\nusing This API endpoint returns a single application instance, identified by ID. The time range for summary data is the last 3-4 minutes.

\n\n

See our documentation for a discussion of\n summary data output.

\n\n" }, { "info": { "name": "New Relic Get Applications Instances Instance Metrics", "type": "http" }, "http": { "method": "GET", "url": "https://insights-collector.newrelic.com/applications/:application_id/instances/:instance_id/metrics.json", "params": [ { "name": "application_id", "value": "100", "type": "path", "description": "Application ID" }, { "name": "instance_id", "value": "100", "type": "path", "description": "Application Instance ID" }, { "name": "name", "value": "example-resource-01", "type": "query", "description": "Filter metrics by name" }, { "name": "page", "value": "100", "type": "query", "description": "Pagination index (will be deprecated)" }, { "name": "cursor", "value": "example_string", "type": "query", "description": "Cursor for next page (replacing page param)" } ] }, "docs": "

Return a list of known metrics and their value names for the given resource.

\n\n

See our documentation for a discussion\non output pagination\nand for examples of requesting and using metric values.

\n" }, { "info": { "name": "New Relic Get Applications Instances Instance Metrics Data", "type": "http" }, "http": { "method": "GET", "url": "https://insights-collector.newrelic.com/applications/:application_id/instances/:instance_id/metrics/data.json", "params": [ { "name": "application_id", "value": "100", "type": "path", "description": "Application ID" }, { "name": "instance_id", "value": "100", "type": "path", "description": "Application Instance ID" }, { "name": "names", "value": "example_string", "type": "query", "description": "Retrieve specific metrics by name" }, { "name": "values", "value": "example_string", "type": "query", "description": "Retrieve specific metric values" }, { "name": "from", "value": "2026-04-18T14:30:00Z", "type": "query", "description": "Retrieve metrics after this time" }, { "name": "to", "value": "2026-04-18T14:30:00Z", "type": "query", "description": "Retrieve metrics before this time" }, { "name": "period", "value": "100", "type": "query", "description": "Period of timeslices in seconds" }, { "name": "summarize", "value": "true", "type": "query", "description": "Summarize the data" }, { "name": "raw", "value": "true", "type": "query", "description": "Return unformatted raw values" } ] }, "docs": "

This API endpoint returns a list of values for each of the requested metrics. The list of available metrics\ncan be returned using the Metric Name API endpoint.

\n\n

Metric data can be filtered by a number of parameters, including multiple names and values, and by time range.\nMetric names and values will be matched intelligently in the background.

\n\n

You can also retrieve a summarized data point across the entire time range selected by using the summarize\nparameter.

\n\n

See our doc" }, { "info": { "name": "New Relic Get Applications Metrics", "type": "http" }, "http": { "method": "GET", "url": "https://insights-collector.newrelic.com/applications/:application_id/metrics.json", "params": [ { "name": "application_id", "value": "100", "type": "path", "description": "Application ID" }, { "name": "name", "value": "example-resource-01", "type": "query", "description": "Filter metrics by name" }, { "name": "page", "value": "100", "type": "query", "description": "Pagination index (will be deprecated)" }, { "name": "cursor", "value": "example_string", "type": "query", "description": "Cursor for next page (replacing page param)" } ] }, "docs": "

Return a list of known metrics and their value names for the given resource.

\n\n

See our documentation for a discussion\non output pagination\nand for examples of requesting and using metric values.

\n" }, { "info": { "name": "New Relic Get Applications Metrics Data", "type": "http" }, "http": { "method": "GET", "url": "https://insights-collector.newrelic.com/applications/:application_id/metrics/data.json", "params": [ { "name": "application_id", "value": "100", "type": "path", "description": "Application ID" }, { "name": "names", "value": "example_string", "type": "query", "description": "Retrieve specific metrics by name" }, { "name": "values", "value": "example_string", "type": "query", "description": "Retrieve specific metric values" }, { "name": "from", "value": "2026-04-18T14:30:00Z", "type": "query", "description": "Retrieve metrics after this time" }, { "name": "to", "value": "2026-04-18T14:30:00Z", "type": "query", "description": "Retrieve metrics before this time" }, { "name": "period", "value": "100", "type": "query", "description": "Period of timeslices in seconds" }, { "name": "summarize", "value": "true", "type": "query", "description": "Summarize the data" }, { "name": "raw", "value": "true", "type": "query", "description": "Return unformatted raw values" } ] }, "docs": "

This API endpoint returns a list of values for each of the requested metrics. The list of available metrics\ncan be returned using the Metric Name API endpoint.

\n\n

Metric data can be filtered by a number of parameters, including multiple names and values, and by time range.\nMetric names and values will be matched intelligently in the background.

\n\n

You can also retrieve a summarized data point across the entire time range selected by using the summarize\nparameter.

\n\n

See our doc" }, { "info": { "name": "New Relic Get Applications", "type": "http" }, "http": { "method": "GET", "url": "https://insights-collector.newrelic.com/applications/:id.json", "params": [ { "name": "id", "value": "100", "type": "path", "description": "Application ID" } ] }, "docs": "

This API endpoint returns a single Application, identified by ID. The time range for summary data is the last 3-4 minutes.

\n\n

See our documentation for a discussion of the\n summary data output.

\n\n" }, { "info": { "name": "New Relic Put Applications", "type": "http" }, "http": { "method": "PUT", "url": "https://insights-collector.newrelic.com/applications/:id.json", "params": [ { "name": "id", "value": "100", "type": "path", "description": "Application ID" } ], "body": { "type": "json", "data": "{}" } }, "docs": "

This API endpoint allows you to update certain parameters of your application.

\n\n

The input is expected to be in JSON or XML format in the body parameter of the PUT request. The exact\nschema is defined below. Any extra parameters passed in the body will be ignored.

\n\n

See our documentation for a discussion and simple example of\nThis API endpoint deletes an application and all of its reported data.

\n\n

WARNING: Only applications that have stopped reporting can be deleted. This is an irreversible process\nwhich will delete all reported data for this application.

\n" }, { "info": { "name": "New Relic Get Key Transactions", "type": "http" }, "http": { "method": "GET", "url": "https://insights-collector.newrelic.com/key_transactions/:id.json", "params": [ { "name": "id", "value": "100", "type": "path", "description": "Key transaction ID" } ] }, "docs": "

This endpoint returns a single key transaction, identified by ID. The time range for summary data is the last 10 minutes.

\n\n

See our documentation for a discussion of\nsummary data output.

\n\n" }, { "info": { "name": "New Relic Get Mobile Applications", "type": "http" }, "http": { "method": "GET", "url": "https://insights-collector.newrelic.com/mobile_applications/:id.json", "params": [ { "name": "id", "value": "100", "type": "path", "description": "Mobile Application ID" } ] }, "docs": "

This API endpoint returns a single Mobile Application, identified by ID. The time range for summary data is the last 30 minutes.

\n" }, { "info": { "name": "New Relic Get Mobile Applications Mobile Application Metrics", "type": "http" }, "http": { "method": "GET", "url": "https://insights-collector.newrelic.com/mobile_applications/:mobile_application_id/metrics.json", "params": [ { "name": "mobile_application_id", "value": "100", "type": "path", "description": "Mobile application ID" }, { "name": "name", "value": "example-resource-01", "type": "query", "description": "Filter metrics by name" }, { "name": "page", "value": "100", "type": "query", "description": "Pagination index (will be deprecated)" }, { "name": "cursor", "value": "example_string", "type": "query", "description": "Cursor for next page (replacing page param)" } ] }, "docs": "

Return a list of known metrics and their value names for the given resource.

\n\n

See our documentation for a discussion\non output pagination\nand for examples of requesting and using metric values.

\n" }, { "info": { "name": "New Relic Get Mobile Applications Mobile Application Metrics Data", "type": "http" }, "http": { "method": "GET", "url": "https://insights-collector.newrelic.com/mobile_applications/:mobile_application_id/metrics/data.json", "params": [ { "name": "mobile_application_id", "value": "100", "type": "path", "description": "Mobile application ID" }, { "name": "names", "value": "example_string", "type": "query", "description": "Retrieve specific metrics by name" }, { "name": "values", "value": "example_string", "type": "query", "description": "Retrieve specific metric values" }, { "name": "from", "value": "2026-04-18T14:30:00Z", "type": "query", "description": "Retrieve metrics after this time" }, { "name": "to", "value": "2026-04-18T14:30:00Z", "type": "query", "description": "Retrieve metrics before this time" }, { "name": "period", "value": "100", "type": "query", "description": "Period of timeslices in seconds" }, { "name": "summarize", "value": "true", "type": "query", "description": "Summarize the data" }, { "name": "raw", "value": "true", "type": "query", "description": "Return unformatted raw values" } ] }, "docs": "

This API endpoint returns a list of values for each of the requested metrics. The list of available metrics\ncan be returned using the Metric Name API endpoint.

\n\n

Metric data can be filtered by a number of parameters, including multiple names and values, and by time range.\nMetric names and values will be matched intelligently in the background.

\n\n

You can also retrieve a summarized data point across the entire time range selected by using the summarize\nparameter.

\n\n

See our doc" }, { "info": { "name": "New Relic Delete Alerts Channels Channel", "type": "http" }, "http": { "method": "DELETE", "url": "https://insights-collector.newrelic.com/alerts_channels/:channel_id.json", "params": [ { "name": "channel_id", "value": "100", "type": "path", "description": "Channel ID" } ] }, "docs": "🔥 This endpoint will be deprecated after 2024/01 🔥 New users should use these docs about managing alerts via NerdGraph.\n\n

This API endpoint deletes Alerts notification channels.

\n\n

Note: User notification channels cannot be deleted.

\n\n

Note: these docs about managing alerts via NerdGraph.\n\n

This API endpoint allows you to create APM Application and Key Transaction, Browser and Mobile application metric conditions for your alert policies.

\n\n

Conditions for web transaction percentiles, or conditions targeting labels (dynamic targeting), are not a" }, { "info": { "name": "New Relic Put Alerts Conditions", "type": "http" }, "http": { "method": "PUT", "url": "https://insights-collector.newrelic.com/alerts_conditions/:condition_id.json", "params": [ { "name": "condition_id", "value": "100", "type": "path", "description": "Alerts condition to update" } ], "body": { "type": "json", "data": "{}" } }, "docs": "🔥🔥 New users should use these docs about managing alerts via NerdGraph.\n\n

This API endpoint allows you to update APM Application and Key Transaction, Browser and Mobile application metric conditions for your alert policies.

\n\n

Conditions for web transaction percentiles, or conditions targeting labels (dynamic targeting), are not a" }, { "info": { "name": "New Relic Delete Alerts Conditions", "type": "http" }, "http": { "method": "DELETE", "url": "https://insights-collector.newrelic.com/alerts_conditions/:condition_id.json", "params": [ { "name": "condition_id", "value": "100", "type": "path", "description": "Alerts condition ID" } ] }, "docs": "🔥🔥 New users should use these docs about managing alerts via NerdGraph.\n\n


\n\n

This API endpoint allows you to delete APM Application and Key Transaction, Browser and Mobile application metric conditions for your alert policies.

\n\n

Conditions for web transaction percentiles, or conditions targeting labels (dynamic targeting), are" }, { "info": { "name": "New Relic Get Alerts Entity Conditions Entity", "type": "http" }, "http": { "method": "GET", "url": "https://insights-collector.newrelic.com/alerts_entity_conditions/:entity_id.json", "params": [ { "name": "entity_id", "value": "100", "type": "path", "description": "Entity ID" }, { "name": "entity_type", "value": "standard", "type": "query", "description": "Entity Type" } ] }, "docs": "🔥🔥 New users should use NRQL Alert Conditions, refer to these docs about managing alerts via NerdGraph.\n\n


\n\n

This API endpoint allows you to list the Alerts conditions an entity is part of.

\n\n

Entity type options (Synthetics is not yet supported):

\n\n
BrowserApplication\n\nApplication\n\nMobileApplication\n\nServer\n\nKeyTransactio"
        },
        {
          "info": {
            "name": "New Relic Put Alerts Entity Conditions Entity",
            "type": "http"
          },
          "http": {
            "method": "PUT",
            "url": "https://insights-collector.newrelic.com/alerts_entity_conditions/:entity_id.json",
            "params": [
              {
                "name": "entity_id",
                "value": "100",
                "type": "path",
                "description": "Entity to add"
              },
              {
                "name": "entity_type",
                "value": "standard",
                "type": "query",
                "description": "Entity Type"
              },
              {
                "name": "condition_id",
                "value": "100",
                "type": "query",
                "description": "Alerts condition ID"
              }
            ]
          },
          "docs": "🔥🔥 New users should use NRQL Alert Conditions, refer to these docs about managing alerts via NerdGraph.\n\n
\n\n

This API endpoint allows you to add an entity to a specified Alerts condition.

\n\n

Note: Admin User’s API Key is required.\n
\n Entity " }, { "info": { "name": "New Relic Delete Alerts Entity Conditions Entity", "type": "http" }, "http": { "method": "DELETE", "url": "https://insights-collector.newrelic.com/alerts_entity_conditions/:entity_id.json", "params": [ { "name": "entity_id", "value": "100", "type": "path", "description": "Entity to remove" }, { "name": "entity_type", "value": "standard", "type": "query", "description": "Entity Type" }, { "name": "condition_id", "value": "100", "type": "query", "description": "Alerts condition ID" } ] }, "docs": "🔥🔥 New users should use NRQL Alert Conditions, refer to these docs about managing alerts via NerdGraph.\n\n


\n\n

This API endpoint allows you to disassociate an entity with a specified Alerts condition.

\n\n

Note: Admin User’s API Key is required.

\n\n" }, { "info": { "name": "New Relic Post Alerts External Service Conditions Policies", "type": "http" }, "http": { "method": "POST", "url": "https://insights-collector.newrelic.com/alerts_external_service_conditions/policies/:policy_id.json", "params": [ { "name": "policy_id", "value": "100", "type": "path", "description": "Alerts policy ID" } ], "body": { "type": "json", "data": "{}" } }, "docs": "🔥🔥 New users should use NRQL Alert Conditions, refer to these docs about managing alerts via NerdGraph.\n\n

This API endpoint allows you to create external service conditions for your alert policies.

\n\n

Note: Admin User’s API Key is required.

\n\n

S" }, { "info": { "name": "New Relic Put Alerts External Service Conditions", "type": "http" }, "http": { "method": "PUT", "url": "https://insights-collector.newrelic.com/alerts_external_service_conditions/:condition_id.json", "params": [ { "name": "condition_id", "value": "100", "type": "path", "description": "Alerts condition to update" } ], "body": { "type": "json", "data": "{}" } }, "docs": "🔥🔥 New users should use NRQL Alert Conditions, refer to these docs about managing alerts via NerdGraph.\n\n


\n\n

This API endpoint allows you to update external service conditions for your alert policies.

\n\n

Note: Admin User’s API Key is required.

" }, { "info": { "name": "New Relic Delete Alerts External Service Conditions", "type": "http" }, "http": { "method": "DELETE", "url": "https://insights-collector.newrelic.com/alerts_external_service_conditions/:condition_id.json", "params": [ { "name": "condition_id", "value": "100", "type": "path", "description": "Alerts condition ID" } ] }, "docs": "🔥🔥 New users should use NRQL Alert Conditions, refer to these docs about managing alerts via NerdGraph.\n\n

This API endpoint allows you to delete external service conditions associated with your alert policy.

\n\n

Note: Admin User’s API Key is required." }, { "info": { "name": "New Relic Get Alerts Location Failure Conditions Policies", "type": "http" }, "http": { "method": "GET", "url": "https://insights-collector.newrelic.com/alerts_location_failure_conditions/policies/:policy_id.json", "params": [ { "name": "policy_id", "value": "100", "type": "path", "description": "Alerts policy ID" }, { "name": "page", "value": "100", "type": "query", "description": "Pagination index" } ] }, "docs": "🔥 This endpoint will be deprecated after 2024/01 🔥 New users should use these docs about managing alerts via NerdGraph.\n\n


\n\n

This API endpoint allows you to list the alerts location failure conditions for your Alerts policy.

\n" }, { "info": { "name": "New Relic Post Alerts Location Failure Conditions Policies", "type": "http" }, "http": { "method": "POST", "url": "https://insights-collector.newrelic.com/alerts_location_failure_conditions/policies/:policy_id.json", "params": [ { "name": "policy_id", "value": "100", "type": "path", "description": "Alerts policy failure condition" }, { "name": "location_failure_condition", "value": "100", "type": "path", "description": "Alerts policy ID" } ], "body": { "type": "json", "data": "{}" } }, "docs": "🔥 This endpoint will be deprecated after 2024/01 🔥 New users should use these docs about managing alerts via NerdGraph.\n\n
\n\n

This API endpoint allows you to create the alerts location failure conditions for your Alerts policy.

\n" }, { "info": { "name": "New Relic Put Alerts Location Failure Conditions", "type": "http" }, "http": { "method": "PUT", "url": "https://insights-collector.newrelic.com/alerts_location_failure_conditions/:condition_id.json", "params": [ { "name": "condition_id", "value": "100", "type": "path", "description": "Alerts condition to update" } ], "body": { "type": "json", "data": "{}" } }, "docs": "🔥 This endpoint will be deprecated after 2024/01 🔥 New users should use these docs about managing alerts via NerdGraph.\n\n
\n\n

This API endpoint allows you to update the alerts location failure conditions for your Alerts policy.

\n" }, { "info": { "name": "New Relic Delete Alerts Location Failure Conditions", "type": "http" }, "http": { "method": "DELETE", "url": "https://insights-collector.newrelic.com/alerts_location_failure_conditions/:condition_id.json", "params": [ { "name": "condition_id", "value": "100", "type": "path", "description": "Alerts condition ID" } ] }, "docs": "🔥 This endpoint will be deprecated after 2024/01 🔥 New users should use these docs about managing alerts via NerdGraph.\n\n
\n\n

This API endpoint allows you to Delete the alerts location failure conditions for your Alerts policy.

\n" }, { "info": { "name": "New Relic Post Alerts Nrql Conditions Policies", "type": "http" }, "http": { "method": "POST", "url": "https://insights-collector.newrelic.com/alerts_nrql_conditions/policies/:policy_id.json", "params": [ { "name": "policy_id", "value": "100", "type": "path", "description": "Alerts policy ID" } ], "body": { "type": "json", "data": "{}" } }, "docs": "🔥🔥 New users should use these docs about managing alerts via NerdGraph.\n" }, { "info": { "name": "New Relic Put Alerts Nrql Conditions", "type": "http" }, "http": { "method": "PUT", "url": "https://insights-collector.newrelic.com/alerts_nrql_conditions/:condition_id.json", "params": [ { "name": "condition_id", "value": "100", "type": "path", "description": "Alerts condition to update" } ], "body": { "type": "json", "data": "{}" } }, "docs": "🔥🔥 New users should use these docs about managing alerts via NerdGraph.\n" }, { "info": { "name": "New Relic Delete Alerts Nrql Conditions", "type": "http" }, "http": { "method": "DELETE", "url": "https://insights-collector.newrelic.com/alerts_nrql_conditions/:condition_id.json", "params": [ { "name": "condition_id", "value": "100", "type": "path", "description": "Alerts condition ID" } ] }, "docs": "🔥🔥 New users should use these docs about managing alerts via NerdGraph.\n" }, { "info": { "name": "New Relic Put Alerts Policies", "type": "http" }, "http": { "method": "PUT", "url": "https://insights-collector.newrelic.com/alerts_policies/:policy_id.json", "params": [ { "name": "policy_id", "value": "100", "type": "path", "description": "Policy ID" } ], "body": { "type": "json", "data": "{}" } }, "docs": "🔥🔥 New users should use these docs about managing alerts via NerdGraph.\n\n

This API endpoint updates Alerts policies associated with your New Relic account.

\n\n

Note: Admin User’s API Key is required.

\n\n

See our documentation for a discussion on u" }, { "info": { "name": "New Relic Delete Alerts Policies", "type": "http" }, "http": { "method": "DELETE", "url": "https://insights-collector.newrelic.com/alerts_policies/:policy_id.json", "params": [ { "name": "policy_id", "value": "100", "type": "path", "description": "Policy ID" } ] }, "docs": "🔥🔥 New users should use these docs about managing alerts via NerdGraph.\n\n

This API endpoint deletes Alerts policies associated with your New Relic account.

\n\n

Note: Admin User’s API Key is required.

\n\n

See our documentation for a discussion on u" }, { "info": { "name": "New Relic Post Alerts Synthetics Conditions Policies", "type": "http" }, "http": { "method": "POST", "url": "https://insights-collector.newrelic.com/alerts_synthetics_conditions/policies/:policy_id.json", "params": [ { "name": "policy_id", "value": "100", "type": "path", "description": "Alerts policy ID" } ], "body": { "type": "json", "data": "{}" } }, "docs": "🔥🔥 New users should use NRQL Alert Conditions, refer to these docs about managing alerts via NerdGraph.\n\n


\n\n

This API endpoint allows you to create Synthetics conditions for your alert policies.

\n\n

Note: Admin User’s API Key is required.

\n\n

S" }, { "info": { "name": "New Relic Put Alerts Synthetics Conditions", "type": "http" }, "http": { "method": "PUT", "url": "https://insights-collector.newrelic.com/alerts_synthetics_conditions/:condition_id.json", "params": [ { "name": "condition_id", "value": "100", "type": "path", "description": "Alerts condition to update" } ], "body": { "type": "json", "data": "{}" } }, "docs": "🔥🔥 New users should use NRQL Alert Conditions, refer to these docs about managing alerts via NerdGraph.\n\n


\n\n

This API endpoint allows you to update Synthetics conditions for your alert policies.

\n\n

Note: Admin User’s API Key is required.

\n\n

S" }, { "info": { "name": "New Relic Delete Alerts Synthetics Conditions", "type": "http" }, "http": { "method": "DELETE", "url": "https://insights-collector.newrelic.com/alerts_synthetics_conditions/:condition_id.json", "params": [ { "name": "condition_id", "value": "100", "type": "path", "description": "Alerts condition ID" } ] }, "docs": "🔥🔥 New users should use NRQL Alert Conditions, refer to these docs about managing alerts via NerdGraph.\n\n

This API endpoint allows you to delete Synthetics conditions associated with your alert policy.

\n\n

Note: Admin User’s API Key is required.

\n\n" } ] } ], "bundled": true }