Skip to content

Latest commit

 

History

History
114 lines (81 loc) · 3.31 KB

DownloadApi.md

File metadata and controls

114 lines (81 loc) · 3.31 KB

Yoast\MyYoastApiClient\DownloadApi

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

downloadFile($name, $version, $pluginVersion, $site)

Route to download a file

Download a file if the authenticated user has access to that file.

Example

<?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;
}
?>

Parameters

Name Type Description Notes
name string
version string
pluginVersion string
site string

Return type

void (empty response body)

Authorization

No authorization required

HTTP request headers

  • Content-Type: Not defined
  • Accept: Not defined

[Back to top] [Back to API list] [Back to Model list] [Back to README]

uploadFile

\Yoast\MyYoastApiClient\Model\UnspecifiedResponseDto uploadFile($body, $name)

Route to update a file.

Updates a file

Example

<?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;
}
?>

Parameters

Name Type Description Notes
body \Yoast\MyYoastApiClient\Model\UpdateFileDto
name string

Return type

\Yoast\MyYoastApiClient\Model\UnspecifiedResponseDto

Authorization

No authorization required

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]