Skip to content

Latest commit

 

History

History
59 lines (39 loc) · 2.08 KB

GlobalCustomerApi.md

File metadata and controls

59 lines (39 loc) · 2.08 KB

openapi.api.GlobalCustomerApi

Load the API package

import 'package:openapi/api.dart';

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

Method HTTP request Description
globalCustomerGetEndpointV1 GET /1/customer/{pksCustomerCode}/endpoint Get customer endpoint

globalCustomerGetEndpointV1

GlobalCustomerGetEndpointV1Response globalCustomerGetEndpointV1(pksCustomerCode, sInfrastructureproductCode)

Get customer endpoint

Retrieve the customer's specific server endpoint where to send requests. This will help locate the proper region (ie: sInfrastructureregionCode) and the proper environment (ie: sInfrastructureenvironmenttypeDescription) where the customer's data is stored.

Example

import 'package:openapi/api.dart';

final api_instance = GlobalCustomerApi();
final pksCustomerCode = pksCustomerCode_example; // String | 
final sInfrastructureproductCode = sInfrastructureproductCode_example; // String | The infrastructure product Code  If undefined, \"appcluster01\" is assumed

try {
    final result = api_instance.globalCustomerGetEndpointV1(pksCustomerCode, sInfrastructureproductCode);
    print(result);
} catch (e) {
    print('Exception when calling GlobalCustomerApi->globalCustomerGetEndpointV1: $e\n');
}

Parameters

Name Type Description Notes
pksCustomerCode String
sInfrastructureproductCode String The infrastructure product Code If undefined, "appcluster01" is assumed [optional]

Return type

GlobalCustomerGetEndpointV1Response

Authorization

No authorization required

HTTP request headers

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

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