> ## 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's Draft

# 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": {
      "get": {
        "summary": "View Channel's Draft",
        "description": "",
        "tags": [
          "Draft Versions"
        ],
        "operationId": "getPlayoutSchedulerChannelDraft",
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "ID of Channel"
          },
          {
            "name": "startsAt",
            "in": "query",
            "required": false,
            "schema": {
              "type": "number"
            },
            "description": "Timestamp to filter timeline. It will return items after the given time"
          },
          {
            "name": "endsAt",
            "in": "query",
            "required": false,
            "schema": {
              "type": "number"
            },
            "description": "Timestamp to filter timeline. It will return items up to the given time"
          },
          {
            "name": "autoGraphics",
            "in": "query",
            "required": false,
            "schema": {
              "type": "boolean",
              "default": true
            },
            "description": "If true, the automated graphics track will be included in the response"
          }
        ],
        "responses": {
          "200": {
            "description": "Return a channel including it's draft information",
            "content": {
              "application/json": {
                "schema": {
                  "title": "ChannelWithDraftResponse",
                  "type": "object",
                  "properties": {
                    "channel": {
                      "type": "object",
                      "title": "ChannelWithDraft",
                      "properties": {
                        "id": {
                          "type": "string"
                        },
                        "created_at": {
                          "type": "string"
                        },
                        "startAt": {
                          "type": "string"
                        },
                        "stopAt": {
                          "type": "string"
                        },
                        "title": {
                          "type": "string"
                        },
                        "live": {
                          "type": "boolean"
                        },
                        "fallbackSlateId": {
                          "type": "string"
                        },
                        "draftVersion": {
                          "type": "object",
                          "properties": {
                            "createdAt": {
                              "type": "string"
                            },
                            "scheduleSet": {
                              "$ref": "#/paths/~1scheduler~1v1~1channels~1%7Bid%7D~1draft~1operations/post/responses/201/content/application~1json/schema/properties/operation/properties/newScheduleSet"
                            }
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          },
          "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"
      }
    }
  }
}
```