> ## Documentation Index
> Fetch the complete documentation index at: https://docs.zype.com/llms.txt
> Use this file to discover all available pages before exploring further.

# View Channel Draft's Schedule Rundown

# OpenAPI definition

```json
{
  "openapi": "3.0.1",
  "info": {
    "title": "Playout Scheduler",
    "description": "",
    "version": "1.0"
  },
  "servers": [
    {
      "url": "https://api.zype.com/"
    }
  ],
  "security": [
    {
      "api_key": []
    }
  ],
  "paths": {
    "/scheduler/v1/channels/{id}/draft/rundown": {
      "get": {
        "summary": "View Channel Draft's Schedule Rundown",
        "description": "",
        "tags": [
          "Draft Versions"
        ],
        "operationId": "getPlayoutSchedulerChannelDraftsRundown",
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "ID of Channel"
          },
          {
            "name": "start",
            "in": "query",
            "required": false,
            "schema": {
              "type": "number"
            },
            "description": "Timestamp in milliseconds of beginning of interval (defaults to current timestamp)"
          },
          {
            "name": "hours",
            "in": "query",
            "required": false,
            "description": "Number of hours of the interval to calculate",
            "schema": {
              "type": "number",
              "default": 24,
              "maximum": 24,
              "minimum": 1
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Return's a channel draft version's rundown",
            "content": {
              "application/json": {
                "schema": {
                  "title": "RundownResponse",
                  "type": "object",
                  "properties": {
                    "rundown": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "type": {
                            "type": "string",
                            "description": "One of 'video', 'ad', 'slate', 'bumper'"
                          },
                          "assetId": {
                            "type": "string"
                          },
                          "parentType": {
                            "type": "string"
                          },
                          "parentAssetId": {
                            "type": "string"
                          },
                          "start": {
                            "type": "number"
                          },
                          "end": {
                            "type": "number"
                          },
                          "trackItemId": {
                            "type": "string"
                          },
                          "truncateAtSecond": {
                            "type": "number"
                          },
                          "beginAtSecond": {
                            "type": "number"
                          },
                          "repetition": {
                            "type": "number"
                          },
                          "graphics": {
                            "type": "array",
                            "description": "Graphics to be play during the item airtime",
                            "items": {
                              "type": "object",
                              "properties": {
                                "preview": {
                                  "type": "string",
                                  "description": "Url to preview the graphic"
                                },
                                "title": {
                                  "type": "string",
                                  "description": "Graphic asset title"
                                },
                                "id": {
                                  "type": "string",
                                  "description": "Graphic asset id"
                                },
                                "layer": {
                                  "type": "number",
                                  "description": "Graphic asset layer"
                                },
                                "start": {
                                  "type": "number",
                                  "description": "Start time (epoch) of the graphic"
                                },
                                "end": {
                                  "type": "number",
                                  "description": "End time (epoch) of the graphic"
                                },
                                "opacity": {
                                  "type": "number",
                                  "description": "Graphic asset opacity"
                                },
                                "fadeIn": {
                                  "type": "number",
                                  "description": "Duration of the fade in effect"
                                },
                                "fadeOut": {
                                  "type": "number",
                                  "description": "Duration of the fade out effect"
                                }
                              }
                            }
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          },
          "404": {
            "description": "Channel not found",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/paths/~1scheduler~1v2~1uploads/post/responses/404/content/application~1json/schema"
                }
              }
            }
          }
        }
      }
    }
  },
  "components": {
    "securitySchemes": {
      "api_key": {
        "type": "apiKey",
        "name": "X-API-Key",
        "in": "header"
      }
    }
  }
}
```