Skip to content

Latest commit

 

History

History
65 lines (44 loc) · 2.18 KB

ModuleUserApi.md

File metadata and controls

65 lines (44 loc) · 2.18 KB

EzmaxApi::ModuleUserApi

Load the API package

use EzmaxApi::Object::ModuleUserApi;

All URIs are relative to https://prod.api.appcluster01.ca-central-1.ezmax.com/rest

Method HTTP request Description
user_create_ezsignuser_v1 POST /1/module/user/createezsignuser Create a new User of type Ezsignuser

user_create_ezsignuser_v1

UserCreateEzsignuserV1Response user_create_ezsignuser_v1(user_create_ezsignuser_v1_request => $user_create_ezsignuser_v1_request)

Create a new User of type Ezsignuser

The endpoint allows to initiate the creation or a user of type Ezsignuser. The user will be created only once the email verification process will be completed

Example

use Data::Dumper;
use EzmaxApi::ModuleUserApi;
my $api_instance = EzmaxApi::ModuleUserApi->new(

    # Configure API key authorization: Authorization
    api_key => {'Authorization' => 'YOUR_API_KEY'},
    # uncomment below to setup prefix (e.g. Bearer) for API key, if needed
    #api_key_prefix => {'Authorization' => 'Bearer'},
);

my $user_create_ezsignuser_v1_request = [EzmaxApi::Object::ARRAY[UserCreateEzsignuserV1Request]->new()]; # ARRAY[UserCreateEzsignuserV1Request] | 

eval {
    my $result = $api_instance->user_create_ezsignuser_v1(user_create_ezsignuser_v1_request => $user_create_ezsignuser_v1_request);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling ModuleUserApi->user_create_ezsignuser_v1: $@\n";
}

Parameters

Name Type Description Notes
user_create_ezsignuser_v1_request ARRAY[UserCreateEzsignuserV1Request]

Return type

UserCreateEzsignuserV1Response

Authorization

Authorization

HTTP request headers

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

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