For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Open sourceSupportFAQsDocs Home
DocumentationAPI ReferenceRelease notes
DocumentationAPI ReferenceRelease notes
  • Introduction
    • Overview
    • Authentication
  • Guides
    • Integration API routes
    • Operations Manager search APIs
    • Search API
    • URL query parameters
    • Use query parameters in API requests
  • Reference
        • GETGet Raygun config
LogoLogo
Open sourceSupportFAQsDocs Home
ReferenceRaygun

Get Raygun config

GET
http://localhost:3000/raygun/config
GET
/raygun/config
$curl http://localhost:3000/raygun/config \
> -u "<username>:<password>"
1{
2 "apiKey": "string",
3 "tenant": "string",
4 "namespace": "string",
5 "instanceName": "string"
6}
Returns Raygun configuration for the current Itential Platform instance. Used by the UI at startup to initialize Raygun RUM and crash reporting. Returns null values for unconfigured properties.
Was this page helpful?
Previous

Get the adapter schema

Next
Built with

Authentication

AuthorizationBasic

Basic authentication of the form Basic <base64(username:password)>.

Response

Raygun configuration for the current IAP instance.
apiKeystring or null
Raygun API key. Null if Raygun is not configured.
tenantstring or null
Customer tenant name for instance tagging.
namespacestring or null
Deployment namespace for instance tagging.
instanceNamestring or null
IAP instance name for instance tagging.

Errors

500
Internal Server Error