> ## 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 track item's automated graphics

Returns automated graphics associated with the given track item id

# 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/items/{itemId}/graphics": {
      "get": {
        "summary": "View track item's automated graphics",
        "description": "Returns automated graphics associated with the given track item id",
        "tags": [
          "Draft Versions"
        ],
        "operationId": "getPlayoutSchedulerTrackItemGraphics",
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "ID of channel"
          },
          {
            "name": "itemId",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "ID of track item"
          }
        ],
        "responses": {
          "200": {
            "description": "Return the list of automated graphics overlaying the given track item",
            "content": {
              "application/json": {
                "schema": {
                  "title": "TrackItemGraphicsResponse",
                  "type": "object",
                  "properties": {
                    "graphics": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "title": "TrackItem",
                        "properties": {
                          "id": {
                            "type": "string"
                          },
                          "assetType": {
                            "type": "string"
                          },
                          "assetId": {
                            "type": "string"
                          },
                          "assetDuration": {
                            "type": "number"
                          },
                          "startsAt": {
                            "type": "number",
                            "description": "Timestamp in milliseconds"
                          },
                          "endsAt": {
                            "type": "number",
                            "description": "Timestamp in milliseconds"
                          },
                          "durationInSeconds": {
                            "type": "number"
                          },
                          "beginAtSecond": {
                            "type": "number"
                          },
                          "truncateAtSecond": {
                            "type": "number"
                          },
                          "title": {
                            "type": "string"
                          },
                          "description": {
                            "type": "string"
                          },
                          "isInfinite": {
                            "type": "boolean"
                          },
                          "isRecurring": {
                            "type": "boolean"
                          },
                          "recurrenceSettings": {
                            "type": "object",
                            "properties": {
                              "gapMs": {
                                "type": "number",
                                "description": "Number of milliseconds between repetitions"
                              },
                              "times": {
                                "type": "number"
                              },
                              "infinitely": {
                                "type": "boolean"
                              },
                              "until": {
                                "type": "number",
                                "description": "Timestamp in milliseconds"
                              }
                            }
                          },
                          "graphic": {
                            "$ref": "#/paths/~1scheduler~1v2~1assets~1graphics/post/responses/201/content/application~1json/schema/properties/destinationType"
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          },
          "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"
      }
    }
  }
}
```