Call Connection - Get Participant

Get participant from a call.

GET {endpoint}/calling/callConnections/{callConnectionId}/participants/{participantRawId}?api-version=2024-09-15

URI Parameters

Name In Required Type Description
callConnectionId
path True

string

The call connection Id

endpoint
path True

string

url

The endpoint of the Azure Communication resource.

participantRawId
path True

string

Raw id of the participant to retrieve.

api-version
query True

string

Version of API to invoke.

Request Header

Name Required Type Description
Authorization True

string

An Azure Communication Services user access token.

Responses

Name Type Description
200 OK

CallParticipant

Returns the detail of the requested participant.

Other Status Codes

CommunicationErrorResponse

Error

Security

Authorization

An Azure Communication Services user access token.

Type: apiKey
In: header

Examples

CallConnection_GetParticipant

Sample request

GET https://contoso.communications.azure.com/calling/callConnections/18dea47f-b081-4107-9a5c-4300819d2c6c/participants/8:acs:b9614373-fd0b-480c-8fd2-cb58b70eab9f_da7be3a9-8788-42a6-85c6-56b2cf784fce?api-version=2024-09-15

Sample response

{
  "identifier": {
    "kind": "communicationUser",
    "communicationUser": {
      "id": "8:acs:b9614373-fd0b-480c-8fd2-cb58b70eab9f_da7be3a9-8788-42a6-85c6-56b2cf784fce"
    }
  },
  "isMuted": false
}

Definitions

CallParticipant

A call participant.

Name Type Description
identifier

CommunicationIdentifierModel

isMuted

boolean

Is participant muted

isOnHold

boolean

Is participant on hold.