Skip to content

Latest commit

 

History

History
65 lines (42 loc) · 1.92 KB

DeliveryServicesApi.md

File metadata and controls

65 lines (42 loc) · 1.92 KB

OpenAPI\Client\DeliveryServicesApi

All URIs are relative to https://api.partner.market.yandex.ru, except if the operation defines another base path.

Method HTTP request Description
getDeliveryServices() GET /delivery/services Справочник служб доставки

getDeliveryServices()

getDeliveryServices(): \OpenAPI\Client\Model\GetDeliveryServicesResponse

Справочник служб доставки

Возвращает справочник служб доставки: идентификаторы и наименования. |⚙️ Лимит: 5 000 запросов в час| |-|

Example

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


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


$apiInstance = new OpenAPI\Client\Api\DeliveryServicesApi(
    // 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->getDeliveryServices();
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DeliveryServicesApi->getDeliveryServices: ', $e->getMessage(), PHP_EOL;
}

Parameters

This endpoint does not need any parameter.

Return type

\OpenAPI\Client\Model\GetDeliveryServicesResponse

Authorization

OAuth

HTTP request headers

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

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