Dataset Show

Overview Description

Retrieve detailed information of a dataset history by slug for subsequent analyzer calls.

Activity Diagram

---
config:
  theme: base
  layout: dagre
  flowchart:
    curve: linear
    htmlLabels: true
  themeVariables:
    edgeLabelBackground: "transparent"
---
flowchart TB
    Client[Client]
    Controller[WishlistDatasetController]
    Repo(Dataset Repository)
    DB[(Database)]

    Client --- Step1[
      <div style='text-align: center'>
        <span style='display: inline-block; background-color: #6699cc !important; color:white; width: 28px; height: 28px; border-radius: 50%; font-weight: bold'>1</span>
        <p style='margin-top: 8px'>GET show</p>
      </div>
    ]
    Step1 --> Controller

    Controller --- Step2[
      <div style='text-align: center'>
        <span style='display: inline-block; background-color: #6699cc !important; color:white; width: 28px; height: 28px; line-height: 28px; border-radius: 50%; font-weight: bold'>2</span>
        <p style='margin-top: 8px'>Find by slug</p>
      </div>
    ]
    Step2 --> Repo
    Repo --> DB
    DB --> Repo
    Repo --> Controller
    Controller --> Client

Swagger Link

API: Dataset Show

API Endpoint

  • GET /api/v1/general/{wldh_slug}/show

Response

  • Dataset history object with group/dataset references

Error Handling

Code Message
404 Dataset not found
403 Unauthorized