joinCall

@POST(value = "/video/call/{type}/{id}/join")
abstract suspend fun joinCall(@Path(value = "type") type: String, @Path(value = "id") id: String, @Body joinCallRequest: JoinCallRequest, @Query(value = "connection_id") connectionId: String? = null): JoinCallResponse

Join call Request to join a call Required permissions: - CreateCall - JoinCall Responses:

  • 201: Successful response

  • 400: Bad request

  • 429: Too many requests

Return

JoinCallResponse

Parameters

type
id
joinCallRequest
connectionId

(optional)