Update the Subscribe Rules for the Participant

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

TODO: Resource-level docs

Update the Subscribe Rules for the Participant

Path parameters

  • RoomSid string Required

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

  • ParticipantSid string Required

    The SID of the Participant resource to update the Subscribe Rules.

application/x-www-form-urlencoded

Body

Responses

  • 202

    Accepted

    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

POST /v1/Rooms/{RoomSid}/Participants/{ParticipantSid}/SubscribeRules
curl \
 -X POST https://video.twilio.com/v1/Rooms/{RoomSid}/Participants/{ParticipantSid}/SubscribeRules \
 --user "username:password" \
 -H "Content-Type: application/x-www-form-urlencoded"
Request example
{}
Response examples (202)
{
  "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": [
    {}
  ]
}