Tribe__Events__Aggregator__Service::get_import( string $import_id, array $data = array() )

Fetch import data from service


Parameters

$import_id

(string) (Required) ID of the Import Record

$data

(array) (Optional)

Default value: array()


Top ↑

Return

(stdClass|WP_Error)


Top ↑

Source

File: src/Tribe/Aggregator/Service.php

	public function get_import( $import_id, $data = array() ) {
		$response = $this->get( 'import/' . $import_id, $data );

		return $response;
	}