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

Service for SubscribedTrack 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.SubscribedTrack.t()}
  | {:ok, map(), map()}
  | :ok
  | {:error, Twilio.Error.t()}
```

# credo:disable-for-next-line Credo.Check.Readability.MaxLineLength
Returns a single Track resource represented by `track_sid`.  Note: This is one resource with the Video API that requires a SID, be Track Name on the subscriber side is not guaranteed to be unique.

Operation: `FetchRoomParticipantSubscribedTrack` | Tags: VideoV1SubscribedTrack

# `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()}
```

Returns a list of tracks that are subscribed for the participant.

Operation: `ListRoomParticipantSubscribedTrack` | Tags: VideoV1SubscribedTrack

# `stream`

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

Stream: Returns a list of tracks that are subscribed for the participant. (lazy auto-pagination).

---

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