Developer Platform
Logs, diagnostics, and correlation tracing
Tail and search bounded app logs, then follow one correlation ID across related operational evidence.
Scope
logs.read
Boundary
App-scoped
Primary key
Correlation ID
The Developer API exposes operational evidence without opening tenant log tables or returning infrastructure routes. Every query is bound to the authenticated SaaS app and returns bounded, sanitized results.
Current routes
GET /v1/apps/{saasAppId}/logs/tail
GET /v1/apps/{saasAppId}/logs/search
GET /v1/apps/{saasAppId}/logs/correlations/{logCorrelationId}
A practical incident workflow
- Capture the correlation ID from the failing API response, webhook delivery, CLI output, or user-visible error.
- Query the correlation route first; it is more precise than a broad text search.
- Use search for a known safe term, component, or error code when no correlation ID exists.
- Use tail only for a short live observation window.
- Record the correlation ID—not a copied secret or full customer payload—in the incident ticket.
What is intentionally absent
The log API returns bounded operational evidence and omits connection strings, database/server names, provider credentials, raw authorization headers, operator-only stack traces, and unrestricted tenant data.
Tip
Make correlation ID a first-class field in your integration logger. It turns support from timestamp guessing into one bounded lookup.
Did this page answer your question?Tell us what’s missing