All URIs are relative to http://ce22.vg/index.php/rest/default
\Krak\MagentoApiClient\Model\CustomerDataCustomerInterface customerAccountManagementV1ActivateByIdPut($customerAccountManagementV1ActivateByIdPutBody)
Activate a customer account using a key that was sent in a confirmation email.
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure OAuth2 access token for authorization: OAuth2
$config = Krak\MagentoApiClient\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');
$apiInstance = new Krak\MagentoApiClient\Api\CustomerAccountManagementV1Api(
// 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(),
$config
);
$customerAccountManagementV1ActivateByIdPutBody = new \Krak\MagentoApiClient\Model\CustomerAccountManagementV1ActivateByIdPutBody(); // \Krak\MagentoApiClient\Model\CustomerAccountManagementV1ActivateByIdPutBody |
try {
$result = $apiInstance->customerAccountManagementV1ActivateByIdPut($customerAccountManagementV1ActivateByIdPutBody);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling CustomerAccountManagementV1Api->customerAccountManagementV1ActivateByIdPut: ', $e->getMessage(), PHP_EOL;
}
?>| Name | Type | Description | Notes |
|---|---|---|---|
| customerAccountManagementV1ActivateByIdPutBody | \Krak\MagentoApiClient\Model\CustomerAccountManagementV1ActivateByIdPutBody | [optional] |
\Krak\MagentoApiClient\Model\CustomerDataCustomerInterface
- Content-Type: Not defined
- Accept: Not defined
[Back to top] [Back to API list] [Back to Model list] [Back to README]
\Krak\MagentoApiClient\Model\CustomerDataCustomerInterface customerAccountManagementV1ActivatePut($email, $customerAccountManagementV1ActivatePutBody)
Activate a customer account using a key that was sent in a confirmation email.
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure OAuth2 access token for authorization: OAuth2
$config = Krak\MagentoApiClient\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');
$apiInstance = new Krak\MagentoApiClient\Api\CustomerAccountManagementV1Api(
// 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(),
$config
);
$email = "email_example"; // string |
$customerAccountManagementV1ActivatePutBody = new \Krak\MagentoApiClient\Model\CustomerAccountManagementV1ActivatePutBody(); // \Krak\MagentoApiClient\Model\CustomerAccountManagementV1ActivatePutBody |
try {
$result = $apiInstance->customerAccountManagementV1ActivatePut($email, $customerAccountManagementV1ActivatePutBody);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling CustomerAccountManagementV1Api->customerAccountManagementV1ActivatePut: ', $e->getMessage(), PHP_EOL;
}
?>| Name | Type | Description | Notes |
|---|---|---|---|
| string | |||
| customerAccountManagementV1ActivatePutBody | \Krak\MagentoApiClient\Model\CustomerAccountManagementV1ActivatePutBody | [optional] |
\Krak\MagentoApiClient\Model\CustomerDataCustomerInterface
- Content-Type: Not defined
- Accept: Not defined
[Back to top] [Back to API list] [Back to Model list] [Back to README]
bool customerAccountManagementV1ChangePasswordByIdPut($customerAccountManagementV1ChangePasswordByIdPutBody)
Change customer password.
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure OAuth2 access token for authorization: OAuth2
$config = Krak\MagentoApiClient\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');
$apiInstance = new Krak\MagentoApiClient\Api\CustomerAccountManagementV1Api(
// 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(),
$config
);
$customerAccountManagementV1ChangePasswordByIdPutBody = new \Krak\MagentoApiClient\Model\CustomerAccountManagementV1ChangePasswordByIdPutBody(); // \Krak\MagentoApiClient\Model\CustomerAccountManagementV1ChangePasswordByIdPutBody |
try {
$result = $apiInstance->customerAccountManagementV1ChangePasswordByIdPut($customerAccountManagementV1ChangePasswordByIdPutBody);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling CustomerAccountManagementV1Api->customerAccountManagementV1ChangePasswordByIdPut: ', $e->getMessage(), PHP_EOL;
}
?>| Name | Type | Description | Notes |
|---|---|---|---|
| customerAccountManagementV1ChangePasswordByIdPutBody | \Krak\MagentoApiClient\Model\CustomerAccountManagementV1ChangePasswordByIdPutBody | [optional] |
bool
- Content-Type: Not defined
- Accept: Not defined
[Back to top] [Back to API list] [Back to Model list] [Back to README]
\Krak\MagentoApiClient\Model\CustomerDataCustomerInterface customerAccountManagementV1CreateAccountPost($customerAccountManagementV1CreateAccountPostBody)
Create customer account. Perform necessary business operations like sending email.
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure OAuth2 access token for authorization: OAuth2
$config = Krak\MagentoApiClient\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');
$apiInstance = new Krak\MagentoApiClient\Api\CustomerAccountManagementV1Api(
// 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(),
$config
);
$customerAccountManagementV1CreateAccountPostBody = new \Krak\MagentoApiClient\Model\CustomerAccountManagementV1CreateAccountPostBody(); // \Krak\MagentoApiClient\Model\CustomerAccountManagementV1CreateAccountPostBody |
try {
$result = $apiInstance->customerAccountManagementV1CreateAccountPost($customerAccountManagementV1CreateAccountPostBody);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling CustomerAccountManagementV1Api->customerAccountManagementV1CreateAccountPost: ', $e->getMessage(), PHP_EOL;
}
?>| Name | Type | Description | Notes |
|---|---|---|---|
| customerAccountManagementV1CreateAccountPostBody | \Krak\MagentoApiClient\Model\CustomerAccountManagementV1CreateAccountPostBody | [optional] |
\Krak\MagentoApiClient\Model\CustomerDataCustomerInterface
- Content-Type: Not defined
- Accept: Not defined
[Back to top] [Back to API list] [Back to Model list] [Back to README]
string customerAccountManagementV1GetConfirmationStatusGet($customerId)
Gets the account confirmation status.
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure OAuth2 access token for authorization: OAuth2
$config = Krak\MagentoApiClient\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');
$apiInstance = new Krak\MagentoApiClient\Api\CustomerAccountManagementV1Api(
// 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(),
$config
);
$customerId = 56; // int |
try {
$result = $apiInstance->customerAccountManagementV1GetConfirmationStatusGet($customerId);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling CustomerAccountManagementV1Api->customerAccountManagementV1GetConfirmationStatusGet: ', $e->getMessage(), PHP_EOL;
}
?>| Name | Type | Description | Notes |
|---|---|---|---|
| customerId | int |
string
- Content-Type: Not defined
- Accept: Not defined
[Back to top] [Back to API list] [Back to Model list] [Back to README]
\Krak\MagentoApiClient\Model\CustomerDataAddressInterface customerAccountManagementV1GetDefaultBillingAddressGet()
Retrieve default billing address for the given customerId.
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure OAuth2 access token for authorization: OAuth2
$config = Krak\MagentoApiClient\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');
$apiInstance = new Krak\MagentoApiClient\Api\CustomerAccountManagementV1Api(
// 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(),
$config
);
try {
$result = $apiInstance->customerAccountManagementV1GetDefaultBillingAddressGet();
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling CustomerAccountManagementV1Api->customerAccountManagementV1GetDefaultBillingAddressGet: ', $e->getMessage(), PHP_EOL;
}
?>This endpoint does not need any parameter.
\Krak\MagentoApiClient\Model\CustomerDataAddressInterface
- Content-Type: Not defined
- Accept: Not defined
[Back to top] [Back to API list] [Back to Model list] [Back to README]
\Krak\MagentoApiClient\Model\CustomerDataAddressInterface customerAccountManagementV1GetDefaultBillingAddressGet_0($customerId)
Retrieve default billing address for the given customerId.
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure OAuth2 access token for authorization: OAuth2
$config = Krak\MagentoApiClient\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');
$apiInstance = new Krak\MagentoApiClient\Api\CustomerAccountManagementV1Api(
// 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(),
$config
);
$customerId = 56; // int |
try {
$result = $apiInstance->customerAccountManagementV1GetDefaultBillingAddressGet_0($customerId);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling CustomerAccountManagementV1Api->customerAccountManagementV1GetDefaultBillingAddressGet_0: ', $e->getMessage(), PHP_EOL;
}
?>| Name | Type | Description | Notes |
|---|---|---|---|
| customerId | int |
\Krak\MagentoApiClient\Model\CustomerDataAddressInterface
- Content-Type: Not defined
- Accept: Not defined
[Back to top] [Back to API list] [Back to Model list] [Back to README]
\Krak\MagentoApiClient\Model\CustomerDataAddressInterface customerAccountManagementV1GetDefaultShippingAddressGet()
Retrieve default shipping address for the given customerId.
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure OAuth2 access token for authorization: OAuth2
$config = Krak\MagentoApiClient\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');
$apiInstance = new Krak\MagentoApiClient\Api\CustomerAccountManagementV1Api(
// 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(),
$config
);
try {
$result = $apiInstance->customerAccountManagementV1GetDefaultShippingAddressGet();
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling CustomerAccountManagementV1Api->customerAccountManagementV1GetDefaultShippingAddressGet: ', $e->getMessage(), PHP_EOL;
}
?>This endpoint does not need any parameter.
\Krak\MagentoApiClient\Model\CustomerDataAddressInterface
- Content-Type: Not defined
- Accept: Not defined
[Back to top] [Back to API list] [Back to Model list] [Back to README]
\Krak\MagentoApiClient\Model\CustomerDataAddressInterface customerAccountManagementV1GetDefaultShippingAddressGet_0($customerId)
Retrieve default shipping address for the given customerId.
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure OAuth2 access token for authorization: OAuth2
$config = Krak\MagentoApiClient\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');
$apiInstance = new Krak\MagentoApiClient\Api\CustomerAccountManagementV1Api(
// 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(),
$config
);
$customerId = 56; // int |
try {
$result = $apiInstance->customerAccountManagementV1GetDefaultShippingAddressGet_0($customerId);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling CustomerAccountManagementV1Api->customerAccountManagementV1GetDefaultShippingAddressGet_0: ', $e->getMessage(), PHP_EOL;
}
?>| Name | Type | Description | Notes |
|---|---|---|---|
| customerId | int |
\Krak\MagentoApiClient\Model\CustomerDataAddressInterface
- Content-Type: Not defined
- Accept: Not defined
[Back to top] [Back to API list] [Back to Model list] [Back to README]
bool customerAccountManagementV1InitiatePasswordResetPut($customerAccountManagementV1InitiatePasswordResetPutBody)
Send an email to the customer with a password reset link.
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure OAuth2 access token for authorization: OAuth2
$config = Krak\MagentoApiClient\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');
$apiInstance = new Krak\MagentoApiClient\Api\CustomerAccountManagementV1Api(
// 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(),
$config
);
$customerAccountManagementV1InitiatePasswordResetPutBody = new \Krak\MagentoApiClient\Model\CustomerAccountManagementV1InitiatePasswordResetPutBody(); // \Krak\MagentoApiClient\Model\CustomerAccountManagementV1InitiatePasswordResetPutBody |
try {
$result = $apiInstance->customerAccountManagementV1InitiatePasswordResetPut($customerAccountManagementV1InitiatePasswordResetPutBody);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling CustomerAccountManagementV1Api->customerAccountManagementV1InitiatePasswordResetPut: ', $e->getMessage(), PHP_EOL;
}
?>| Name | Type | Description | Notes |
|---|---|---|---|
| customerAccountManagementV1InitiatePasswordResetPutBody | \Krak\MagentoApiClient\Model\CustomerAccountManagementV1InitiatePasswordResetPutBody | [optional] |
bool
- Content-Type: Not defined
- Accept: Not defined
[Back to top] [Back to API list] [Back to Model list] [Back to README]
bool customerAccountManagementV1IsEmailAvailablePost($customerAccountManagementV1IsEmailAvailablePostBody)
Check if given email is associated with a customer account in given website.
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure OAuth2 access token for authorization: OAuth2
$config = Krak\MagentoApiClient\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');
$apiInstance = new Krak\MagentoApiClient\Api\CustomerAccountManagementV1Api(
// 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(),
$config
);
$customerAccountManagementV1IsEmailAvailablePostBody = new \Krak\MagentoApiClient\Model\CustomerAccountManagementV1IsEmailAvailablePostBody(); // \Krak\MagentoApiClient\Model\CustomerAccountManagementV1IsEmailAvailablePostBody |
try {
$result = $apiInstance->customerAccountManagementV1IsEmailAvailablePost($customerAccountManagementV1IsEmailAvailablePostBody);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling CustomerAccountManagementV1Api->customerAccountManagementV1IsEmailAvailablePost: ', $e->getMessage(), PHP_EOL;
}
?>| Name | Type | Description | Notes |
|---|---|---|---|
| customerAccountManagementV1IsEmailAvailablePostBody | \Krak\MagentoApiClient\Model\CustomerAccountManagementV1IsEmailAvailablePostBody | [optional] |
bool
- Content-Type: Not defined
- Accept: Not defined
[Back to top] [Back to API list] [Back to Model list] [Back to README]
bool customerAccountManagementV1IsReadonlyGet($customerId)
Check if customer can be deleted.
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure OAuth2 access token for authorization: OAuth2
$config = Krak\MagentoApiClient\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');
$apiInstance = new Krak\MagentoApiClient\Api\CustomerAccountManagementV1Api(
// 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(),
$config
);
$customerId = 56; // int |
try {
$result = $apiInstance->customerAccountManagementV1IsReadonlyGet($customerId);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling CustomerAccountManagementV1Api->customerAccountManagementV1IsReadonlyGet: ', $e->getMessage(), PHP_EOL;
}
?>| Name | Type | Description | Notes |
|---|---|---|---|
| customerId | int |
bool
- Content-Type: Not defined
- Accept: Not defined
[Back to top] [Back to API list] [Back to Model list] [Back to README]
bool customerAccountManagementV1ResendConfirmationPost($customerAccountManagementV1ResendConfirmationPostBody)
Resend confirmation email.
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure OAuth2 access token for authorization: OAuth2
$config = Krak\MagentoApiClient\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');
$apiInstance = new Krak\MagentoApiClient\Api\CustomerAccountManagementV1Api(
// 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(),
$config
);
$customerAccountManagementV1ResendConfirmationPostBody = new \Krak\MagentoApiClient\Model\CustomerAccountManagementV1ResendConfirmationPostBody(); // \Krak\MagentoApiClient\Model\CustomerAccountManagementV1ResendConfirmationPostBody |
try {
$result = $apiInstance->customerAccountManagementV1ResendConfirmationPost($customerAccountManagementV1ResendConfirmationPostBody);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling CustomerAccountManagementV1Api->customerAccountManagementV1ResendConfirmationPost: ', $e->getMessage(), PHP_EOL;
}
?>| Name | Type | Description | Notes |
|---|---|---|---|
| customerAccountManagementV1ResendConfirmationPostBody | \Krak\MagentoApiClient\Model\CustomerAccountManagementV1ResendConfirmationPostBody | [optional] |
bool
- Content-Type: Not defined
- Accept: Not defined
[Back to top] [Back to API list] [Back to Model list] [Back to README]
bool customerAccountManagementV1ResetPasswordPost($customerAccountManagementV1ResetPasswordPostBody)
Reset customer password.
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure OAuth2 access token for authorization: OAuth2
$config = Krak\MagentoApiClient\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');
$apiInstance = new Krak\MagentoApiClient\Api\CustomerAccountManagementV1Api(
// 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(),
$config
);
$customerAccountManagementV1ResetPasswordPostBody = new \Krak\MagentoApiClient\Model\CustomerAccountManagementV1ResetPasswordPostBody(); // \Krak\MagentoApiClient\Model\CustomerAccountManagementV1ResetPasswordPostBody |
try {
$result = $apiInstance->customerAccountManagementV1ResetPasswordPost($customerAccountManagementV1ResetPasswordPostBody);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling CustomerAccountManagementV1Api->customerAccountManagementV1ResetPasswordPost: ', $e->getMessage(), PHP_EOL;
}
?>| Name | Type | Description | Notes |
|---|---|---|---|
| customerAccountManagementV1ResetPasswordPostBody | \Krak\MagentoApiClient\Model\CustomerAccountManagementV1ResetPasswordPostBody | [optional] |
bool
- Content-Type: Not defined
- Accept: Not defined
[Back to top] [Back to API list] [Back to Model list] [Back to README]
\Krak\MagentoApiClient\Model\CustomerDataValidationResultsInterface customerAccountManagementV1ValidatePut($customerAccountManagementV1ValidatePutBody)
Validate customer data.
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure OAuth2 access token for authorization: OAuth2
$config = Krak\MagentoApiClient\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');
$apiInstance = new Krak\MagentoApiClient\Api\CustomerAccountManagementV1Api(
// 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(),
$config
);
$customerAccountManagementV1ValidatePutBody = new \Krak\MagentoApiClient\Model\CustomerAccountManagementV1ValidatePutBody(); // \Krak\MagentoApiClient\Model\CustomerAccountManagementV1ValidatePutBody |
try {
$result = $apiInstance->customerAccountManagementV1ValidatePut($customerAccountManagementV1ValidatePutBody);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling CustomerAccountManagementV1Api->customerAccountManagementV1ValidatePut: ', $e->getMessage(), PHP_EOL;
}
?>| Name | Type | Description | Notes |
|---|---|---|---|
| customerAccountManagementV1ValidatePutBody | \Krak\MagentoApiClient\Model\CustomerAccountManagementV1ValidatePutBody | [optional] |
\Krak\MagentoApiClient\Model\CustomerDataValidationResultsInterface
- Content-Type: Not defined
- Accept: Not defined
[Back to top] [Back to API list] [Back to Model list] [Back to README]
bool customerAccountManagementV1ValidateResetPasswordLinkTokenGet($customerId, $resetPasswordLinkToken)
Check if password reset token is valid.
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure OAuth2 access token for authorization: OAuth2
$config = Krak\MagentoApiClient\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');
$apiInstance = new Krak\MagentoApiClient\Api\CustomerAccountManagementV1Api(
// 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(),
$config
);
$customerId = 56; // int |
$resetPasswordLinkToken = "resetPasswordLinkToken_example"; // string |
try {
$result = $apiInstance->customerAccountManagementV1ValidateResetPasswordLinkTokenGet($customerId, $resetPasswordLinkToken);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling CustomerAccountManagementV1Api->customerAccountManagementV1ValidateResetPasswordLinkTokenGet: ', $e->getMessage(), PHP_EOL;
}
?>| Name | Type | Description | Notes |
|---|---|---|---|
| customerId | int | ||
| resetPasswordLinkToken | string |
bool
- Content-Type: Not defined
- Accept: Not defined
[Back to top] [Back to API list] [Back to Model list] [Back to README]