getCall

@GET(value = "/video/call/{type}/{id}")
abstract suspend fun getCall(@Path(value = "type") type: String, @Path(value = "id") id: String, @Query(value = "connection_id") connectionId: String? = null, @Query(value = "members_limit") membersLimit: Int? = null, @Query(value = "ring") ring: Boolean? = null, @Query(value = "notify") notify: Boolean? = null): GetCallResponse

Get Call Required permissions: - ReadCall Responses:

  • 200: Successful response

  • 400: Bad request

  • 429: Too many requests

Return

GetCallResponse

Parameters

type
id
connectionId

(optional)

membersLimit

(optional)

ring

(optional)

notify

(optional)