Skip to content

Latest commit

 

History

History
62 lines (41 loc) · 1.71 KB

EmployeeAccessApi.md

File metadata and controls

62 lines (41 loc) · 1.71 KB

OpenAPI\Client\EmployeeAccessApi

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

Method HTTP request Description
register() POST /authentication/register Register

register()

register($wt_authentication_register): \OpenAPI\Client\Model\Employee

Register

Example

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



$apiInstance = new OpenAPI\Client\Api\EmployeeAccessApi(
    // 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()
);
$wt_authentication_register = new \OpenAPI\Client\Model\WTAuthenticationRegister(); // \OpenAPI\Client\Model\WTAuthenticationRegister

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

Parameters

Name Type Description Notes
wt_authentication_register \OpenAPI\Client\Model\WTAuthenticationRegister

Return type

\OpenAPI\Client\Model\Employee

Authorization

No authorization required

HTTP request headers

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

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