All URIs are relative to https://prod.api.appcluster01.ca-central-1.ezmax.com/rest
Method | HTTP request | Description |
---|---|---|
billingentityexternalGenerateFederationTokenV1 | POST /1/object/billingentityexternal/{pkiBillingentityexternalID}/generateFederationToken | Generate a federation token |
billingentityexternalGetAutocompleteV2 | GET /2/object/billingentityexternal/getAutocomplete/{sSelector} | Retrieve Billingentityexternals and IDs |
-(NSURLSessionTask*) billingentityexternalGenerateFederationTokenV1WithPkiBillingentityexternalID: (NSNumber*) pkiBillingentityexternalID
billingentityexternalGenerateFederationTokenV1Request: (BillingentityexternalGenerateFederationTokenV1Request*) billingentityexternalGenerateFederationTokenV1Request
completionHandler: (void (^)(BillingentityexternalGenerateFederationTokenV1Response* output, NSError* error)) handler;
Generate a federation token
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"];
NSNumber* pkiBillingentityexternalID = @56; //
BillingentityexternalGenerateFederationTokenV1Request* billingentityexternalGenerateFederationTokenV1Request = [[BillingentityexternalGenerateFederationTokenV1Request alloc] init]; //
ObjectBillingentityexternalApi*apiInstance = [[ObjectBillingentityexternalApi alloc] init];
// Generate a federation token
[apiInstance billingentityexternalGenerateFederationTokenV1WithPkiBillingentityexternalID:pkiBillingentityexternalID
billingentityexternalGenerateFederationTokenV1Request:billingentityexternalGenerateFederationTokenV1Request
completionHandler: ^(BillingentityexternalGenerateFederationTokenV1Response* output, NSError* error) {
if (output) {
NSLog(@"%@", output);
}
if (error) {
NSLog(@"Error calling ObjectBillingentityexternalApi->billingentityexternalGenerateFederationTokenV1: %@", error);
}
}];
Name | Type | Description | Notes |
---|---|---|---|
pkiBillingentityexternalID | NSNumber* | ||
billingentityexternalGenerateFederationTokenV1Request | BillingentityexternalGenerateFederationTokenV1Request* |
BillingentityexternalGenerateFederationTokenV1Response*
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
-(NSURLSessionTask*) billingentityexternalGetAutocompleteV2WithSSelector: (NSString*) sSelector
eFilterActive: (NSString*) eFilterActive
sQuery: (NSString*) sQuery
acceptLanguage: (HeaderAcceptLanguage) acceptLanguage
completionHandler: (void (^)(BillingentityexternalGetAutocompleteV2Response* output, NSError* error)) handler;
Retrieve Billingentityexternals and IDs
Get the list of Billingentityexternal to be used in a dropdown or autocomplete control.
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"];
NSString* sSelector = @"sSelector_example"; // The type of Billingentityexternals to return
NSString* eFilterActive = @"Active"; // Specify which results we want to display. (optional) (default to @"Active")
NSString* sQuery = @"sQuery_example"; // Allow to filter the returned results (optional)
HeaderAcceptLanguage acceptLanguage = [[HeaderAcceptLanguage alloc] init]; // (optional)
ObjectBillingentityexternalApi*apiInstance = [[ObjectBillingentityexternalApi alloc] init];
// Retrieve Billingentityexternals and IDs
[apiInstance billingentityexternalGetAutocompleteV2WithSSelector:sSelector
eFilterActive:eFilterActive
sQuery:sQuery
acceptLanguage:acceptLanguage
completionHandler: ^(BillingentityexternalGetAutocompleteV2Response* output, NSError* error) {
if (output) {
NSLog(@"%@", output);
}
if (error) {
NSLog(@"Error calling ObjectBillingentityexternalApi->billingentityexternalGetAutocompleteV2: %@", error);
}
}];
Name | Type | Description | Notes |
---|---|---|---|
sSelector | NSString* | The type of Billingentityexternals to return | |
eFilterActive | NSString* | Specify which results we want to display. | [optional] [default to @"Active"] |
sQuery | NSString* | Allow to filter the returned results | [optional] |
acceptLanguage | HeaderAcceptLanguage | [optional] |
BillingentityexternalGetAutocompleteV2Response*
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]