Skip to content

Latest commit

 

History

History
68 lines (46 loc) · 2.6 KB

BroadbandSyncProfileApi.md

File metadata and controls

68 lines (46 loc) · 2.6 KB

OpenAPI\Client\BroadbandSyncProfileApi

All URIs are relative to http://localhost, except if the operation defines another base path.

Method HTTP request Description
broadbandSyncProfileUsernameGet() GET /broadband/sync_profile/{username} View the current and past sync profile for this connection

broadbandSyncProfileUsernameGet()

broadbandSyncProfileUsernameGet($username, $api_platform): \OpenAPI\Client\Model\BroadbandSyncProfile[]

View the current and past sync profile for this connection

Example

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


// Configure OAuth2 access token for authorization: oauth2
$config = OpenAPI\Client\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');


$apiInstance = new OpenAPI\Client\Api\BroadbandSyncProfileApi(
    // 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
);
$username = 'username_example'; // string | Name of the user
$api_platform = 'api_platform_example'; // string | The API provides access to two separate platforms: test and live. The test platform allows you to experiment with the API without incurring charges or affecting customer orders. The live platform allows you to make real world changes.

try {
    $result = $apiInstance->broadbandSyncProfileUsernameGet($username, $api_platform);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling BroadbandSyncProfileApi->broadbandSyncProfileUsernameGet: ', $e->getMessage(), PHP_EOL;
}

Parameters

Name Type Description Notes
username string Name of the user
api_platform string The API provides access to two separate platforms: test and live. The test platform allows you to experiment with the API without incurring charges or affecting customer orders. The live platform allows you to make real world changes.

Return type

\OpenAPI\Client\Model\BroadbandSyncProfile[]

Authorization

oauth2

HTTP request headers

  • Content-Type: Not defined
  • Accept: text/plain, application/json, text/json

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