Skip to content

Latest commit

 

History

History
65 lines (42 loc) · 1.49 KB

WebhooksApi.md

File metadata and controls

65 lines (42 loc) · 1.49 KB

LagoClient\WebhooksApi

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()

fetchPublicKey(): string

Fetch webhook public key

Webhook public key

Example

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


// Configure Bearer authorization: bearerAuth
$config = LagoClient\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');


$apiInstance = new LagoClient\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;
}

Parameters

This endpoint does not need any parameter.

Return type

string

Authorization

bearerAuth

HTTP request headers

  • Content-Type: Not defined
  • Accept: text/plain

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