All URIs are relative to https://prod.api.appcluster01.ca-central-1.ezmax.com/rest
Method | HTTP request | Description |
---|---|---|
userCreateEzsignuserV1 | POST /1/module/user/createezsignuser | Create a new User of type Ezsignuser |
-(NSURLSessionTask*) userCreateEzsignuserV1WithUserCreateEzsignuserV1Request: (NSArray<UserCreateEzsignuserV1Request>*) userCreateEzsignuserV1Request
completionHandler: (void (^)(UserCreateEzsignuserV1Response* output, NSError* error)) handler;
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
DefaultConfiguration *apiConfig = [DefaultConfiguration sharedConfig];
// Configure API key authorization: (authentication scheme: Authorization)
[apiConfig setApiKey:@"YOUR_API_KEY" forApiKeyIdentifier:@"Authorization"];
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//[apiConfig setApiKeyPrefix:@"Bearer" forApiKeyIdentifier:@"Authorization"];
NSArray<UserCreateEzsignuserV1Request>* userCreateEzsignuserV1Request = @[[[UserCreateEzsignuserV1Request alloc] init]]; //
ModuleUserApi*apiInstance = [[ModuleUserApi alloc] init];
// Create a new User of type Ezsignuser
[apiInstance userCreateEzsignuserV1WithUserCreateEzsignuserV1Request:userCreateEzsignuserV1Request
completionHandler: ^(UserCreateEzsignuserV1Response* output, NSError* error) {
if (output) {
NSLog(@"%@", output);
}
if (error) {
NSLog(@"Error calling ModuleUserApi->userCreateEzsignuserV1: %@", error);
}
}];
Name | Type | Description | Notes |
---|---|---|---|
userCreateEzsignuserV1Request | NSArray<UserCreateEzsignuserV1Request>* |
UserCreateEzsignuserV1Response*
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]