unblockUser

@POST(value = "/video/call/{type}/{id}/unblock")
abstract suspend fun unblockUser(@Path(value = "type") type: String, @Path(value = "id") id: String, @Body unblockUserRequest: UnblockUserRequest): UnblockUserResponse

Unblocks user on a call Removes the block for a user on a call. The user will be able to join the call again. Sends events: - call.unblocked_user Required permissions: - BlockUser Responses:

  • 201: Successful response

  • 400: Bad request

  • 429: Too many requests

Return

UnblockUserResponse

Parameters

type
id
unblockUserRequest