You are here

ZoomApiClientInterface.php in Zoom API 8

Same filename and directory in other branches
  1. 2.0.x src/ZoomApiClientInterface.php

Namespace

Drupal\zoomapi

File

src/ZoomApiClientInterface.php
View source
<?php

namespace Drupal\zoomapi;


/**
 * Interface ZoomApiClientInterface.
 */
interface ZoomApiClientInterface {

  /**
   * Utilizes Drupal's httpClient to connect to the Zoom API.
   *
   * Info: https://marketplace.zoom.us/docs/api-reference/introduction
   * Currently just supports JWT authentication.
   *
   * @param string $method
   *   get, post, patch, delete, etc. See Guzzle documentation.
   * @param string $endpoint
   *   The Zoom API endpoint (ex. users)
   * @param array $query
   *   Any Query Parameters defined in the API spec.
   * @param array $body
   *   Array that will get converted to JSON for some requests.
   *
   * @return object
   *   \GuzzleHttp\Psr7\Response body
   */
  public function request(string $method, string $endpoint, array $query = [], array $body = []);

}

Interfaces

Namesort descending Description
ZoomApiClientInterface Interface ZoomApiClientInterface.