Skip to content

Latest commit

 

History

History
59 lines (41 loc) · 1.91 KB

HelpscoutApi.md

File metadata and controls

59 lines (41 loc) · 1.91 KB

Yoast\MyYoastApiClient\HelpscoutApi

All URIs are relative to https://my.yoast.test

Method HTTP request Description
helpscout POST /helpscout Get information about a customer

helpscout

\Yoast\MyYoastApiClient\Model\UnspecifiedResponseDto helpscout($body, $xHelpScoutSignature)

Get information about a customer

Get order and contact information about a customer in html format

Example

<?php
require_once(__DIR__ . '/vendor/autoload.php');

$apiInstance = new Yoast\MyYoastApiClient\Api\HelpscoutApi(
    // 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\HelpScoutDto(); // \Yoast\MyYoastApiClient\Model\HelpScoutDto | 
$xHelpScoutSignature = "xHelpScoutSignature_example"; // string | The Helpscout signature

try {
    $result = $apiInstance->helpscout($body, $xHelpScoutSignature);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling HelpscoutApi->helpscout: ', $e->getMessage(), PHP_EOL;
}
?>

Parameters

Name Type Description Notes
body \Yoast\MyYoastApiClient\Model\HelpScoutDto
xHelpScoutSignature string The Helpscout signature

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]