Xeonr Developer Docs

List integration renderer crashes

POST
/uplim.api.v1.IntegrationAdminService/ListIntegrationRendererCrashes

Returns a paginated list of crashes for renderers belonging to an integration the caller owns. Supports filtering by content type, archive version, error kind / name, build hash, and time range.

Authorization

OAuth2 upl:private
AuthorizationBearer <token>

OAuth 2.0 authorization

In: header

Scope: upl:private

Header Parameters

Connect-Protocol-Version*number

Define the version of the Connect protocol

Value in1
Connect-Timeout-Ms?number

Define the timeout, in ms

Request Body

application/json

integrationId?string

Required — caller must own this integration. The handler returns PermissionDenied otherwise; cross-integration listing lives on the pipeline-api's admin RPC instead.

Formatuuid
filter?

Optional finer-grained filters. integration_id on the filter is ignored (the field above wins) so callers can reuse a shared filter shape between this and the admin RPC.

cursor?string

Opaque pagination cursor returned by a previous call. Empty for the first page.

limit?integer

Page size. Server clamps to a sensible max (~200) to keep responses bounded.

[key: string]?never

Response Body

application/json

application/json

curl -X POST "https://uploads-api.xeonr.io/uplim.api.v1.IntegrationAdminService/ListIntegrationRendererCrashes" \  -H "Connect-Protocol-Version: 1" \  -H "Content-Type: application/json" \  -d '{}'
{
  "crashes": [
    {
      "archiveUploadId": "string",
      "integrationId": "string",
      "contentTypeId": "string",
      "kind": "RENDERER_CRASH_KIND_UNSPECIFIED",
      "name": "string",
      "message": "string",
      "stack": "string",
      "rendererLocation": "string",
      "userAgent": "string",
      "viewportWidth": 0,
      "viewportHeight": 0,
      "buildHash": "string",
      "userId": 0,
      "firstSeenAt": "2023-01-15T01:30:15.01Z",
      "lastSeenAt": "2023-01-15T01:30:15.01Z",
      "count": 0
    }
  ],
  "nextCursor": "string"
}
{
  "code": "not_found",
  "message": "string",
  "details": [
    {
      "type": "string",
      "value": "string",
      "debug": {}
    }
  ]
}