Skip to content

Latest commit

 

History

History
79 lines (56 loc) · 3.2 KB

ExpeditorUtilsApi.md

File metadata and controls

79 lines (56 loc) · 3.2 KB

MagDv\Cargomart\ExpeditorUtilsApi

All URIs are relative to https://cargomart.ru.

Method HTTP request Description
apiV2ExpeditorAcCuratorGet() GET /api/v2/expeditor/ac/curator Поиск кураторов заказчика

apiV2ExpeditorAcCuratorGet()

apiV2ExpeditorAcCuratorGet($filter_search, $selected_ids, $page, $per_page): \MagDv\Cargomart\Dto\AcCuratorResponse

Поиск кураторов заказчика

Example

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


// Configure API key authorization: CookieTokenAuth
$config = MagDv\Cargomart\Configuration::getDefaultConfiguration()->setApiKey('token', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// $config = MagDv\Cargomart\Configuration::getDefaultConfiguration()->setApiKeyPrefix('token', 'Bearer');

// Configure API key authorization: HeaderAuthorizationAuth
$config = MagDv\Cargomart\Configuration::getDefaultConfiguration()->setApiKey('Authorization', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// $config = MagDv\Cargomart\Configuration::getDefaultConfiguration()->setApiKeyPrefix('Authorization', 'Bearer');


$apiInstance = new MagDv\Cargomart\Api\ExpeditorUtilsApi(
    // If you want use custom http client, pass your client which implements `Psr\Http\Client\ClientInterface`.
    // This is optional, `Psr18ClientDiscovery` will be used to find http client. For instance `GuzzleHttp\Client` implements that interface
    new GuzzleHttp\Client(),
    $config
);
$filter_search = 'filter_search_example'; // string | Поисковая строка
$selected_ids = array(56); // int[] | Дополнительные id для поиска (на первое место)
$page = 56; // int | Страница выдачи
$per_page = 56; // int | Количество объектов на странице

try {
    $result = $apiInstance->apiV2ExpeditorAcCuratorGet($filter_search, $selected_ids, $page, $per_page);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling ExpeditorUtilsApi->apiV2ExpeditorAcCuratorGet: ', $e->getMessage(), PHP_EOL;
}

Parameters

Name Type Description Notes
filter_search string Поисковая строка [optional]
selected_ids int[] Дополнительные id для поиска (на первое место) [optional]
page int Страница выдачи [optional]
per_page int Количество объектов на странице [optional]

Return type

\MagDv\Cargomart\Dto\AcCuratorResponse

Authorization

CookieTokenAuth, HeaderAuthorizationAuth

HTTP request headers

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

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