All URIs are relative to https://api.getlago.com/api/v1, except if the operation defines another base path.
Method | HTTP request | Description |
---|---|---|
fetchPublicKey() | GET /webhooks/public_key | Fetch webhook public key |
fetchPublicKey(): string
Fetch webhook public key
Webhook public key
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure Bearer authorization: bearerAuth
$config = OpenAPI\Client\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');
$apiInstance = new OpenAPI\Client\Api\WebhooksApi(
// 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(),
$config
);
try {
$result = $apiInstance->fetchPublicKey();
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling WebhooksApi->fetchPublicKey: ', $e->getMessage(), PHP_EOL;
}
This endpoint does not need any parameter.
string
- Content-Type: Not defined
- Accept:
text/plain
,application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]