Get a debug event content

get

https://{your_site_interface}/opa-hub/api/12.2.35/deployments/{deployment-name}/debugLogs/{deployment-debug-log-uid}/events/{debug-event-id}/content

This operation will get the event content as a base-64 encoded string. To receive the event content as a Zip file, send a HTTP Accept header of "Accept: application/zip"

Request

Path Parameters
Query Parameters
  • Comma separated list of named resources to expand, or "all" to expand all
  • Comma separated list of fields to be returned
  • Comma separated list of links to be returned, or "none" to omit links

There's no request body for this operation.

Security
  • Type: apiKey
    Description: Obtain a bearer token from https://{your_site_interface}/opa-hub/api/12.2.17/auth and use it in the Authorization header as: Bearer {token}.
  • Type: oauth2
    Description: POST the OAuth2 Client Credentials parameters to https://{your_site_interface}/opa-hub/api/12.2.17/auth and use the access token from the response in the Authorization header.
Back to Top

Response

Supported Media Types

200 Response

The request was successfully completed.
Body ()
Root Schema : debugEventContent
Type: object
Show Source
  • Read Only: true
    The binary content of the debug event data file as a base-64 encoded string.
    Example: QmFzZS02NCBkYXRhLg==
  • Read Only: true
    The name of the debug event data file.
  • Read Only: true
    The MIME type of the debug event data file.

304 Response

The resource wasn't modified according to the ETag that was provided.

410 Response

The requested resource is no longer available.

412 Response

The resource state on the server side doesn't match the provided ETag.
Back to Top