| PATCH | /sessions/{sessionId}/conference/members/{callSid} | 
|---|
Imports System
Imports System.IO
Imports System.Collections
Imports System.Collections.Generic
Imports System.Runtime.Serialization
Imports ServiceStack
Imports ServiceStack.DataAnnotations
Imports Voice.Api.Sessions
Namespace Global
    Namespace Voice.Api.Sessions
        '''<Summary>
        '''Sets the conference member's hold and or mute status.
        '''</Summary>
        <Api(Description:="Sets the conference member's hold and or mute status.")>
        Public Partial Class UpdateConferenceMemberStatus
            '''<Summary>
            '''The ID of the active session
            '''</Summary>
            <ApiMember(Description:="The ID of the active session")>
            Public Overridable Property SessionId As String
            '''<Summary>
            '''The sid of the active call that is on the voice device
            '''</Summary>
            <ApiMember(Description:="The sid of the active call that is on the voice device")>
            Public Overridable Property CallSid As String
            '''<Summary>
            '''Hold?
            '''</Summary>
            <ApiMember(Description:="Hold?")>
            Public Overridable Property Hold As Boolean?
            '''<Summary>
            '''Mute?
            '''</Summary>
            <ApiMember(Description:="Mute?")>
            Public Overridable Property Mute As Boolean?
        End Class
    End Namespace
End Namespace
VB.NET UpdateConferenceMemberStatus DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .json suffix or ?format=json
To embed the response in a jsonp callback, append ?callback=myCallback
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
PATCH /sessions/{sessionId}/conference/members/{callSid} HTTP/1.1 
Host: evovoice.io 
Accept: application/json
Content-Type: application/json
Content-Length: length
{"sessionId":"String","callSid":"String","hold":false,"mute":false}