Skip to content

Latest commit

 

History

History
59 lines (38 loc) · 1.36 KB

LandingApi.md

File metadata and controls

59 lines (38 loc) · 1.36 KB

AkeneoPresales\DescrbAPI\LandingApi

All URIs are relative to https://app.descrb.com.

Method HTTP request Description
getDescriptionApiV1LandingCountGet() GET /api/v1/landing/count Get Description

getDescriptionApiV1LandingCountGet()

getDescriptionApiV1LandingCountGet(): mixed

Get Description

Example

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



$apiInstance = new AkeneoPresales\DescrbAPI\Api\LandingApi(
    // 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()
);

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

Parameters

This endpoint does not need any parameter.

Return type

mixed

Authorization

No authorization required

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

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