All URIs are relative to https://my.yoast.test
Method | HTTP request | Description |
---|---|---|
helpscout | POST /helpscout | Get information about a customer |
\Yoast\MyYoastApiClient\Model\UnspecifiedResponseDto helpscout($body, $xHelpScoutSignature)
Get information about a customer
Get order and contact information about a customer in html format
<?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;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
body | \Yoast\MyYoastApiClient\Model\HelpScoutDto | ||
xHelpScoutSignature | string | The Helpscout signature |
\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]