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

> The Multistream target API is used to create, retrieve, update, delete multi-stream targets object from pipeline.

# Overview

### Multistream target object

<ResponseField name="id" type="string">
  Unique identifier for the multistream target.
</ResponseField>

<ResponseField name="name" type="string">
  Name of the multistream target.
</ResponseField>

<ResponseField name="url" type="string">
  Livepeer-compatible multistream target URL (RTMP(S) or SRT). This URL is used
  for streaming to the target platform.
</ResponseField>

<ResponseField name="disabled" type="boolean">
  Indicates if this multistream target is disabled. If true, it will not be used
  for pushing even if configured in a stream object.
</ResponseField>

<ResponseField name="createdAt" type="number">
  Timestamp (in milliseconds) at which the multistream target object was
  created.
</ResponseField>

<ResponseExample>
  ```json Response theme={"theme":{"light":"github-light","dark":"dark-plus"}}
  {
    "id": "09F8B46C-61A0-4254-9875-F71F4C605BC7",
    "name": "My Multistream Target",
    "url": "rtmps://live.my-service.tv/channel/secretKey",
    "disabled": "boolean",
    "createdAt": 1587667174725
  }
  ```
</ResponseExample>
