Skip to content

Latest commit

 

History

History
64 lines (43 loc) · 1.81 KB

LegalEntityApi.md

File metadata and controls

64 lines (43 loc) · 1.81 KB

SynergiTech\Iplicit\LegalEntityApi

All URIs are relative to https://api.iplicit.com, except if the operation defines another base path.

Method HTTP request Description
getAllLegalEntities() GET /api/LegalEntity Get all legal entities

getAllLegalEntities()

getAllLegalEntities($take, $skip): \SynergiTech\Iplicit\Model\LegalEntity[]

Get all legal entities

Example

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



$apiInstance = new SynergiTech\Iplicit\Api\LegalEntityApi(
    // If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
    // This is optional, `GuzzleHttp\Client` will be used as default.
    config: $config
);
$take = 100; // int | The number of records to return
$skip = 0; // int | The number of records to skip

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

Parameters

Name Type Description Notes
take int The number of records to return [optional] [default to 100]
skip int The number of records to skip [optional] [default to 0]

Return type

\SynergiTech\Iplicit\Model\LegalEntity[]

Authorization

No authorization required

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]