Evo Voice

<back to all web services

UpdateConferenceMemberStatus

Sets the conference member's hold and or mute status.

Requires Authentication
The following routes are available for this service:
PATCH/sessions/{sessionId}/conference/members/{callSid}
Imports System
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 Nullable(Of Boolean)

            '''<Summary>
            '''Mute?
            '''</Summary>
            <ApiMember(Description:="Mute?")>
            Public Overridable Property Mute As Nullable(Of 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 .csv suffix or ?format=csv

HTTP + CSV

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: text/csv
Content-Type: text/csv
Content-Length: length

{"sessionId":"String","callSid":"String","hold":false,"mute":false}