Returns a list of Subscribe Rules for the Participant

GET /v1/Rooms/{RoomSid}/Participants/{ParticipantSid}/SubscribeRules

TODO: Resource-level docs

Returns a list of Subscribe Rules for the Participant.

Path parameters

  • RoomSid string Required

    The SID of the Room resource where the subscribe rules to fetch apply.

  • ParticipantSid string Required

    The SID of the Participant resource with the subscribe rules to fetch.

Responses

  • 200

    OK

    Hide response attributes Show response attributes object
    • date_created string(date-time) | null

      The ISO 8601 date and time in GMT when the resource was created

    • date_updated string(date-time) | null

      The ISO 8601 date and time in GMT when the resource was last updated

    • participant_sid string | null

      The SID of the Participant resource for the Subscribe Rules

      Minimum length is 34, maximum length is 34. Format should match the following pattern: ^PA[0-9a-fA-F]{32}$.

    • room_sid string | null

      The SID of the Room resource for the Subscribe Rules

      Minimum length is 34, maximum length is 34. Format should match the following pattern: ^RM[0-9a-fA-F]{32}$.

    • rules array[object(object)] | null

      A collection of Subscribe Rules that describe how to include or exclude matching tracks

GET /v1/Rooms/{RoomSid}/Participants/{ParticipantSid}/SubscribeRules
curl \
 -X GET https://video.twilio.com/v1/Rooms/{RoomSid}/Participants/{ParticipantSid}/SubscribeRules \
 --user "username:password"
Response examples (200)
{
  "date_created": "2023-05-04T09:42:00+00:00",
  "date_updated": "2023-05-04T09:42:00+00:00",
  "participant_sid": "string",
  "room_sid": "string",
  "rules": [
    {}
  ]
}