Skip to content

Latest commit

 

History

History
58 lines (38 loc) · 1.64 KB

BackendModuleServiceV1Api.md

File metadata and controls

58 lines (38 loc) · 1.64 KB

Krak\MagentoApiClient\BackendModuleServiceV1Api

All URIs are relative to http://ce22.vg/index.php/rest/default

Method HTTP request Description
backendModuleServiceV1GetModulesGet GET /V1/modules

backendModuleServiceV1GetModulesGet

string[] backendModuleServiceV1GetModulesGet()

Returns an array of enabled modules

Example

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

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

$apiInstance = new Krak\MagentoApiClient\Api\BackendModuleServiceV1Api(
    // 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->backendModuleServiceV1GetModulesGet();
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling BackendModuleServiceV1Api->backendModuleServiceV1GetModulesGet: ', $e->getMessage(), PHP_EOL;
}
?>

Parameters

This endpoint does not need any parameter.

Return type

string[]

Authorization

OAuth2

HTTP request headers

  • Content-Type: Not defined
  • Accept: Not defined

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