All URIs are relative to https://my.yoast.test
Method | HTTP request | Description |
---|---|---|
downloadFile | GET /api/downloads/file/{name} | Route to download a file |
uploadFile | POST /api/downloads/file/{name} | Route to update a file. |
downloadFile($name, $version, $pluginVersion, $site)
Route to download a file
Download a file if the authenticated user has access to that file.
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new Yoast\MyYoastApiClient\Api\DownloadApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client()
);
$name = "name_example"; // string |
$version = "version_example"; // string |
$pluginVersion = "pluginVersion_example"; // string |
$site = "site_example"; // string |
try {
$apiInstance->downloadFile($name, $version, $pluginVersion, $site);
} catch (Exception $e) {
echo 'Exception when calling DownloadApi->downloadFile: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
name | string | ||
version | string | ||
pluginVersion | string | ||
site | string |
void (empty response body)
No authorization required
- Content-Type: Not defined
- Accept: Not defined
[Back to top] [Back to API list] [Back to Model list] [Back to README]
\Yoast\MyYoastApiClient\Model\UnspecifiedResponseDto uploadFile($body, $name)
Route to update a file.
Updates a file
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new Yoast\MyYoastApiClient\Api\DownloadApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client()
);
$body = new \Yoast\MyYoastApiClient\Model\UpdateFileDto(); // \Yoast\MyYoastApiClient\Model\UpdateFileDto |
$name = "name_example"; // string |
try {
$result = $apiInstance->uploadFile($body, $name);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling DownloadApi->uploadFile: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
body | \Yoast\MyYoastApiClient\Model\UpdateFileDto | ||
name | string |
\Yoast\MyYoastApiClient\Model\UnspecifiedResponseDto
No authorization required
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]