Api::get( string $url, array $args, int $expect_code = self::GET_RESPONSE_CODE )

Makes a GET request to the Zoom API.


Parameters

$url

(string) (Required) The URL to make the request to.

$args

(array) (Required) An array of arguments for the request.

$expect_code

(int) (Optional) The expected response code, if not met, then the request will be considered a failure. Set to null to avoid checking the status code.

Default value: self::GET_RESPONSE_CODE


Top ↑

Return

(TribeEventsVirtualMeetingsApi_Response) An API response to act upon the response result.


Top ↑

Source

File: src/Tribe/Meetings/Zoom/Api.php

	public function get( $url, array $args, $expect_code = self::GET_RESPONSE_CODE ) {
		$args['method'] = 'GET';

		return $this->request( $url, $args, $expect_code );
	}

Top ↑

Changelog

Changelog
Version Description
1.0.2 Introduced.