# `Twilio.Video.V1.Room.Participant.PublishedTrackService`
[🔗](https://github.com/jeffhuen/twilio_elixir/blob/main/lib/twilio/video/v1/room/participant/published_track_service.ex#L2)

Service for PublishedTrack API operations.

Operations: `list`, `fetch`

# `fetch`

```elixir
@spec fetch(Twilio.Client.t(), String.t(), String.t(), String.t(), keyword()) ::
  {:ok, Twilio.Resources.Video.V1.Room.Participant.PublishedTrack.t()}
  | {:ok, map(), map()}
  | :ok
  | {:error, Twilio.Error.t()}
```

Returns a single Track resource represented by TrackName or SID.

Operation: `FetchRoomParticipantPublishedTrack` | Tags: VideoV1PublishedTrack

# `list`

```elixir
@spec list(Twilio.Client.t(), String.t(), String.t(), map(), keyword()) ::
  {:ok, Twilio.Page.t()}
  | {:ok, map(), map()}
  | :ok
  | {:error, Twilio.Error.t()}
```

# credo:disable-for-next-line Credo.Check.Readability.MaxLineLength
Returns a list of tracks associated with a given Participant. Only `currently` Published Tracks are in the list resource.

Operation: `ListRoomParticipantPublishedTrack` | Tags: VideoV1PublishedTrack

# `stream`

```elixir
@spec stream(Twilio.Client.t(), String.t(), String.t(), map(), keyword()) ::
  Enumerable.t()
```

Stream: Returns a list of tracks associated with a given Participant. Only `currently` Published Tracks are in the list resource. (lazy auto-pagination).

---

*Consult [api-reference.md](api-reference.md) for complete listing*
