LogoLogo
ProductResourcesGitHubStart free
  • Documentation
  • Learn
  • ZenML Pro
  • Stacks
  • API Reference
  • SDK Reference
  • Overview
  • OSS API
    • Getting Started
    • OSS API
      • Artifacts
      • Artifact versions
        • Batch
        • Visualize
      • Login
      • Logout
      • Device authorization
      • Api token
      • Code repositories
      • Logs
      • Models
        • Model versions
      • Model versions
        • Artifacts
        • Runs
      • Pipelines
        • Runs
      • Runs
        • Steps
        • Pipeline configuration
        • Status
        • Refresh
      • Run templates
        • Runs
      • Schedules
      • Secrets
      • Info
      • Service accounts
        • Api keys
        • Rotate
      • Service connectors
        • Verify
        • Client
        • Full stack resources
      • Services
      • Stacks
      • Components
      • Component types
      • Steps
        • Step configuration
        • Status
        • Logs
      • Tags
      • Users
        • Resource membership
      • Current user
    • OSS API Specification
  • Pro API
    • Getting Started
    • Pro API
      • Tenants
        • Deploy
        • Deactivate
        • Members
      • Tenant status
      • Users
        • Authorize server
        • Me
      • Invitations
      • Releases
      • Devices
        • Verify
      • Roles
        • Assignments
      • Permissions
      • Teams
        • Members
      • Organizations
        • Trial
        • Invitations
        • Members
        • Roles
        • Teams
        • Tenants
        • Tenant
        • Entitlement
        • Validation
          • Name
          • Tenant name
      • Health
      • Usage event
      • Usage batch
      • Stigg webhook
      • Auth
        • Login
        • Connections
        • Authorize
        • Callback
        • Logout
        • Device authorization
        • Api token
        • Tenant authorization
      • Rbac
        • Check permissions
        • Allowed resource ids
        • Resource members
      • Server
        • Info
    • Pro API Specification
Powered by GitBook
On this page

Was this helpful?

Edit on GitHub
  1. OSS API
  2. OSS API

Logs

PreviousCode repositoriesNextModels

Last updated 1 month ago

Was this helpful?

Get Logs

get

Returns the requested logs.

Args: logs_id: ID of the logs. hydrate: Flag deciding whether to hydrate the output model(s) by including metadata fields in the response.

Returns: The requested logs.

Authorizations
Path parameters
logs_idstring · uuidRequired
Query parameters
hydratebooleanOptionalDefault: true
Responses
200
Successful Response
application/json
401
Unauthorized
application/json
403
Forbidden
application/json
404
Not Found
application/json
422
Unprocessable Entity
application/json
get
GET /api/v1/logs/{logs_id} HTTP/1.1
Host: 
Accept: */*
{
  "body": {
    "created": "2025-05-12T01:15:36.448Z",
    "updated": "2025-05-12T01:15:36.448Z",
    "uri": "text"
  },
  "metadata": {
    "step_run_id": "123e4567-e89b-12d3-a456-426614174000",
    "pipeline_run_id": "123e4567-e89b-12d3-a456-426614174000",
    "artifact_store_id": "text"
  },
  "resources": {
    "ANY_ADDITIONAL_PROPERTY": "anything"
  },
  "id": "123e4567-e89b-12d3-a456-426614174000",
  "permission_denied": true
}