Skip to content

Latest commit

 

History

History
61 lines (40 loc) · 1.35 KB

PlansV1Api.md

File metadata and controls

61 lines (40 loc) · 1.35 KB

Equisoft\SDK\EquisoftPlan\PlansV1Api

All URIs are relative to http://localhost, except if the operation defines another base path.

Method HTTP request Description
getPlan() GET /fna/api/fna/{id} Returns the plan

getPlan()

getPlan($id)

Returns the plan

Example

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



$apiInstance = new Equisoft\SDK\EquisoftPlan\Api\PlansV1Api(
    // 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()
);
$id = 56; // int | Fna id

try {
    $apiInstance->getPlan($id);
} catch (Exception $e) {
    echo 'Exception when calling PlansV1Api->getPlan: ', $e->getMessage(), PHP_EOL;
}

Parameters

Name Type Description Notes
id int Fna id

Return type

void (empty response body)

Authorization

No authorization required

HTTP request headers

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

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