Update the Recording Rules for the Room

POST /v1/Rooms/{RoomSid}/RecordingRules

TODO: Resource-level docs

Update the Recording Rules for the Room

Path parameters

  • RoomSid string Required

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

application/x-www-form-urlencoded

Body

  • A JSON-encoded array of recording rules.

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

    • room_sid string | null

      The SID of the Room resource for the Recording Rules

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

    • rules array[object(recording-rule)] | null

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

      Hide rules attributes Show rules attributes
POST /v1/Rooms/{RoomSid}/RecordingRules
curl \
 -X POST https://video.twilio.com/v1/Rooms/{RoomSid}/RecordingRules \
 --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",
  "room_sid": "string",
  "rules": [
    {
      "all": true,
      "kind": "string",
      "publisher": "string",
      "track": "string",
      "type": "string"
    }
  ]
}