Skip to content

Latest commit

 

History

History
702 lines (563 loc) · 28.3 KB

ObjectAuthenticationexternalApi.md

File metadata and controls

702 lines (563 loc) · 28.3 KB

eZmaxApi.Api.ObjectAuthenticationexternalApi

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

Method HTTP request Description
AuthenticationexternalCreateObjectV1 POST /1/object/authenticationexternal Create a new Authenticationexternal
AuthenticationexternalDeleteObjectV1 DELETE /1/object/authenticationexternal/{pkiAuthenticationexternalID} Delete an existing Authenticationexternal
AuthenticationexternalEditObjectV1 PUT /1/object/authenticationexternal/{pkiAuthenticationexternalID} Edit an existing Authenticationexternal
AuthenticationexternalGetAutocompleteV2 GET /2/object/authenticationexternal/getAutocomplete/{sSelector} Retrieve Authenticationexternals and IDs
AuthenticationexternalGetListV1 GET /1/object/authenticationexternal/getList Retrieve Authenticationexternal list
AuthenticationexternalGetObjectV2 GET /2/object/authenticationexternal/{pkiAuthenticationexternalID} Retrieve an existing Authenticationexternal
AuthenticationexternalResetAuthorizationV1 POST /1/object/authenticationexternal/{pkiAuthenticationexternalID}/resetAuthorization Reset the Authenticationexternal authorization

AuthenticationexternalCreateObjectV1

AuthenticationexternalCreateObjectV1Response AuthenticationexternalCreateObjectV1 (AuthenticationexternalCreateObjectV1Request authenticationexternalCreateObjectV1Request)

Create a new Authenticationexternal

The endpoint allows to create one or many elements at once.

Example

using System.Collections.Generic;
using System.Diagnostics;
using eZmaxApi.Api;
using eZmaxApi.Client;
using eZmaxApi.Model;

namespace Example
{
    public class AuthenticationexternalCreateObjectV1Example
    {
        public static void Main()
        {
            Configuration config = new Configuration();
            config.BasePath = "https://prod.api.appcluster01.ca-central-1.ezmax.com/rest";
            // Configure API key authorization: Authorization
            config.AddApiKey("Authorization", "YOUR_API_KEY");
            // Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
            // config.AddApiKeyPrefix("Authorization", "Bearer");

            var apiInstance = new ObjectAuthenticationexternalApi(config);
            var authenticationexternalCreateObjectV1Request = new AuthenticationexternalCreateObjectV1Request(); // AuthenticationexternalCreateObjectV1Request | 

            try
            {
                // Create a new Authenticationexternal
                AuthenticationexternalCreateObjectV1Response result = apiInstance.AuthenticationexternalCreateObjectV1(authenticationexternalCreateObjectV1Request);
                Debug.WriteLine(result);
            }
            catch (ApiException  e)
            {
                Debug.Print("Exception when calling ObjectAuthenticationexternalApi.AuthenticationexternalCreateObjectV1: " + e.Message);
                Debug.Print("Status Code: " + e.ErrorCode);
                Debug.Print(e.StackTrace);
            }
        }
    }
}

Using the AuthenticationexternalCreateObjectV1WithHttpInfo variant

This returns an ApiResponse object which contains the response data, status code and headers.

try
{
    // Create a new Authenticationexternal
    ApiResponse<AuthenticationexternalCreateObjectV1Response> response = apiInstance.AuthenticationexternalCreateObjectV1WithHttpInfo(authenticationexternalCreateObjectV1Request);
    Debug.Write("Status Code: " + response.StatusCode);
    Debug.Write("Response Headers: " + response.Headers);
    Debug.Write("Response Body: " + response.Data);
}
catch (ApiException e)
{
    Debug.Print("Exception when calling ObjectAuthenticationexternalApi.AuthenticationexternalCreateObjectV1WithHttpInfo: " + e.Message);
    Debug.Print("Status Code: " + e.ErrorCode);
    Debug.Print(e.StackTrace);
}

Parameters

Name Type Description Notes
authenticationexternalCreateObjectV1Request AuthenticationexternalCreateObjectV1Request

Return type

AuthenticationexternalCreateObjectV1Response

Authorization

Authorization

HTTP request headers

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

HTTP response details

Status code Description Response headers
201 Successful response -

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

AuthenticationexternalDeleteObjectV1

AuthenticationexternalDeleteObjectV1Response AuthenticationexternalDeleteObjectV1 (int pkiAuthenticationexternalID)

Delete an existing Authenticationexternal

Example

using System.Collections.Generic;
using System.Diagnostics;
using eZmaxApi.Api;
using eZmaxApi.Client;
using eZmaxApi.Model;

namespace Example
{
    public class AuthenticationexternalDeleteObjectV1Example
    {
        public static void Main()
        {
            Configuration config = new Configuration();
            config.BasePath = "https://prod.api.appcluster01.ca-central-1.ezmax.com/rest";
            // Configure API key authorization: Authorization
            config.AddApiKey("Authorization", "YOUR_API_KEY");
            // Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
            // config.AddApiKeyPrefix("Authorization", "Bearer");

            var apiInstance = new ObjectAuthenticationexternalApi(config);
            var pkiAuthenticationexternalID = 56;  // int | The unique ID of the Authenticationexternal

            try
            {
                // Delete an existing Authenticationexternal
                AuthenticationexternalDeleteObjectV1Response result = apiInstance.AuthenticationexternalDeleteObjectV1(pkiAuthenticationexternalID);
                Debug.WriteLine(result);
            }
            catch (ApiException  e)
            {
                Debug.Print("Exception when calling ObjectAuthenticationexternalApi.AuthenticationexternalDeleteObjectV1: " + e.Message);
                Debug.Print("Status Code: " + e.ErrorCode);
                Debug.Print(e.StackTrace);
            }
        }
    }
}

Using the AuthenticationexternalDeleteObjectV1WithHttpInfo variant

This returns an ApiResponse object which contains the response data, status code and headers.

try
{
    // Delete an existing Authenticationexternal
    ApiResponse<AuthenticationexternalDeleteObjectV1Response> response = apiInstance.AuthenticationexternalDeleteObjectV1WithHttpInfo(pkiAuthenticationexternalID);
    Debug.Write("Status Code: " + response.StatusCode);
    Debug.Write("Response Headers: " + response.Headers);
    Debug.Write("Response Body: " + response.Data);
}
catch (ApiException e)
{
    Debug.Print("Exception when calling ObjectAuthenticationexternalApi.AuthenticationexternalDeleteObjectV1WithHttpInfo: " + e.Message);
    Debug.Print("Status Code: " + e.ErrorCode);
    Debug.Print(e.StackTrace);
}

Parameters

Name Type Description Notes
pkiAuthenticationexternalID int The unique ID of the Authenticationexternal

Return type

AuthenticationexternalDeleteObjectV1Response

Authorization

Authorization

HTTP request headers

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

HTTP response details

Status code Description Response headers
200 Successful response -
404 The request failed. The element on which you were trying to work does not exists. Look for detail about the error in the body -

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

AuthenticationexternalEditObjectV1

AuthenticationexternalEditObjectV1Response AuthenticationexternalEditObjectV1 (int pkiAuthenticationexternalID, AuthenticationexternalEditObjectV1Request authenticationexternalEditObjectV1Request)

Edit an existing Authenticationexternal

Example

using System.Collections.Generic;
using System.Diagnostics;
using eZmaxApi.Api;
using eZmaxApi.Client;
using eZmaxApi.Model;

namespace Example
{
    public class AuthenticationexternalEditObjectV1Example
    {
        public static void Main()
        {
            Configuration config = new Configuration();
            config.BasePath = "https://prod.api.appcluster01.ca-central-1.ezmax.com/rest";
            // Configure API key authorization: Authorization
            config.AddApiKey("Authorization", "YOUR_API_KEY");
            // Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
            // config.AddApiKeyPrefix("Authorization", "Bearer");

            var apiInstance = new ObjectAuthenticationexternalApi(config);
            var pkiAuthenticationexternalID = 56;  // int | The unique ID of the Authenticationexternal
            var authenticationexternalEditObjectV1Request = new AuthenticationexternalEditObjectV1Request(); // AuthenticationexternalEditObjectV1Request | 

            try
            {
                // Edit an existing Authenticationexternal
                AuthenticationexternalEditObjectV1Response result = apiInstance.AuthenticationexternalEditObjectV1(pkiAuthenticationexternalID, authenticationexternalEditObjectV1Request);
                Debug.WriteLine(result);
            }
            catch (ApiException  e)
            {
                Debug.Print("Exception when calling ObjectAuthenticationexternalApi.AuthenticationexternalEditObjectV1: " + e.Message);
                Debug.Print("Status Code: " + e.ErrorCode);
                Debug.Print(e.StackTrace);
            }
        }
    }
}

Using the AuthenticationexternalEditObjectV1WithHttpInfo variant

This returns an ApiResponse object which contains the response data, status code and headers.

try
{
    // Edit an existing Authenticationexternal
    ApiResponse<AuthenticationexternalEditObjectV1Response> response = apiInstance.AuthenticationexternalEditObjectV1WithHttpInfo(pkiAuthenticationexternalID, authenticationexternalEditObjectV1Request);
    Debug.Write("Status Code: " + response.StatusCode);
    Debug.Write("Response Headers: " + response.Headers);
    Debug.Write("Response Body: " + response.Data);
}
catch (ApiException e)
{
    Debug.Print("Exception when calling ObjectAuthenticationexternalApi.AuthenticationexternalEditObjectV1WithHttpInfo: " + e.Message);
    Debug.Print("Status Code: " + e.ErrorCode);
    Debug.Print(e.StackTrace);
}

Parameters

Name Type Description Notes
pkiAuthenticationexternalID int The unique ID of the Authenticationexternal
authenticationexternalEditObjectV1Request AuthenticationexternalEditObjectV1Request

Return type

AuthenticationexternalEditObjectV1Response

Authorization

Authorization

HTTP request headers

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

HTTP response details

Status code Description Response headers
200 Successful response -
404 The request failed. The element on which you were trying to work does not exists. Look for detail about the error in the body -
422 The request was syntactically valid but failed because of an interdependance condition. Look for detail about the error in the body -

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

AuthenticationexternalGetAutocompleteV2

AuthenticationexternalGetAutocompleteV2Response AuthenticationexternalGetAutocompleteV2 (string sSelector, string? eFilterActive = null, string? sQuery = null, HeaderAcceptLanguage? acceptLanguage = null)

Retrieve Authenticationexternals and IDs

Get the list of Authenticationexternal to be used in a dropdown or autocomplete control.

Example

using System.Collections.Generic;
using System.Diagnostics;
using eZmaxApi.Api;
using eZmaxApi.Client;
using eZmaxApi.Model;

namespace Example
{
    public class AuthenticationexternalGetAutocompleteV2Example
    {
        public static void Main()
        {
            Configuration config = new Configuration();
            config.BasePath = "https://prod.api.appcluster01.ca-central-1.ezmax.com/rest";
            // Configure API key authorization: Authorization
            config.AddApiKey("Authorization", "YOUR_API_KEY");
            // Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
            // config.AddApiKeyPrefix("Authorization", "Bearer");

            var apiInstance = new ObjectAuthenticationexternalApi(config);
            var sSelector = "All";  // string | The type of Authenticationexternals to return
            var eFilterActive = "All";  // string? | Specify which results we want to display. (optional)  (default to Active)
            var sQuery = "sQuery_example";  // string? | Allow to filter the returned results (optional) 
            var acceptLanguage = new HeaderAcceptLanguage?(); // HeaderAcceptLanguage? |  (optional) 

            try
            {
                // Retrieve Authenticationexternals and IDs
                AuthenticationexternalGetAutocompleteV2Response result = apiInstance.AuthenticationexternalGetAutocompleteV2(sSelector, eFilterActive, sQuery, acceptLanguage);
                Debug.WriteLine(result);
            }
            catch (ApiException  e)
            {
                Debug.Print("Exception when calling ObjectAuthenticationexternalApi.AuthenticationexternalGetAutocompleteV2: " + e.Message);
                Debug.Print("Status Code: " + e.ErrorCode);
                Debug.Print(e.StackTrace);
            }
        }
    }
}

Using the AuthenticationexternalGetAutocompleteV2WithHttpInfo variant

This returns an ApiResponse object which contains the response data, status code and headers.

try
{
    // Retrieve Authenticationexternals and IDs
    ApiResponse<AuthenticationexternalGetAutocompleteV2Response> response = apiInstance.AuthenticationexternalGetAutocompleteV2WithHttpInfo(sSelector, eFilterActive, sQuery, acceptLanguage);
    Debug.Write("Status Code: " + response.StatusCode);
    Debug.Write("Response Headers: " + response.Headers);
    Debug.Write("Response Body: " + response.Data);
}
catch (ApiException e)
{
    Debug.Print("Exception when calling ObjectAuthenticationexternalApi.AuthenticationexternalGetAutocompleteV2WithHttpInfo: " + e.Message);
    Debug.Print("Status Code: " + e.ErrorCode);
    Debug.Print(e.StackTrace);
}

Parameters

Name Type Description Notes
sSelector string The type of Authenticationexternals to return
eFilterActive string? Specify which results we want to display. [optional] [default to Active]
sQuery string? Allow to filter the returned results [optional]
acceptLanguage HeaderAcceptLanguage? [optional]

Return type

AuthenticationexternalGetAutocompleteV2Response

Authorization

Authorization

HTTP request headers

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

HTTP response details

Status code Description Response headers
200 Successful response -

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

AuthenticationexternalGetListV1

AuthenticationexternalGetListV1Response AuthenticationexternalGetListV1 (string? eOrderBy = null, int? iRowMax = null, int? iRowOffset = null, HeaderAcceptLanguage? acceptLanguage = null, string? sFilter = null)

Retrieve Authenticationexternal list

Enum values that can be filtered in query parameter sFilter: | Variable | Valid values | |- --|- --| | eAuthenticationexternalType | Salesforce
SalesforceSandbox |

Example

using System.Collections.Generic;
using System.Diagnostics;
using eZmaxApi.Api;
using eZmaxApi.Client;
using eZmaxApi.Model;

namespace Example
{
    public class AuthenticationexternalGetListV1Example
    {
        public static void Main()
        {
            Configuration config = new Configuration();
            config.BasePath = "https://prod.api.appcluster01.ca-central-1.ezmax.com/rest";
            // Configure API key authorization: Authorization
            config.AddApiKey("Authorization", "YOUR_API_KEY");
            // Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
            // config.AddApiKeyPrefix("Authorization", "Bearer");

            var apiInstance = new ObjectAuthenticationexternalApi(config);
            var eOrderBy = "pkiAuthenticationexternalID_ASC";  // string? | Specify how you want the results to be sorted (optional) 
            var iRowMax = 56;  // int? |  (optional) 
            var iRowOffset = 0;  // int? |  (optional)  (default to 0)
            var acceptLanguage = new HeaderAcceptLanguage?(); // HeaderAcceptLanguage? |  (optional) 
            var sFilter = "sFilter_example";  // string? |  (optional) 

            try
            {
                // Retrieve Authenticationexternal list
                AuthenticationexternalGetListV1Response result = apiInstance.AuthenticationexternalGetListV1(eOrderBy, iRowMax, iRowOffset, acceptLanguage, sFilter);
                Debug.WriteLine(result);
            }
            catch (ApiException  e)
            {
                Debug.Print("Exception when calling ObjectAuthenticationexternalApi.AuthenticationexternalGetListV1: " + e.Message);
                Debug.Print("Status Code: " + e.ErrorCode);
                Debug.Print(e.StackTrace);
            }
        }
    }
}

Using the AuthenticationexternalGetListV1WithHttpInfo variant

This returns an ApiResponse object which contains the response data, status code and headers.

try
{
    // Retrieve Authenticationexternal list
    ApiResponse<AuthenticationexternalGetListV1Response> response = apiInstance.AuthenticationexternalGetListV1WithHttpInfo(eOrderBy, iRowMax, iRowOffset, acceptLanguage, sFilter);
    Debug.Write("Status Code: " + response.StatusCode);
    Debug.Write("Response Headers: " + response.Headers);
    Debug.Write("Response Body: " + response.Data);
}
catch (ApiException e)
{
    Debug.Print("Exception when calling ObjectAuthenticationexternalApi.AuthenticationexternalGetListV1WithHttpInfo: " + e.Message);
    Debug.Print("Status Code: " + e.ErrorCode);
    Debug.Print(e.StackTrace);
}

Parameters

Name Type Description Notes
eOrderBy string? Specify how you want the results to be sorted [optional]
iRowMax int? [optional]
iRowOffset int? [optional] [default to 0]
acceptLanguage HeaderAcceptLanguage? [optional]
sFilter string? [optional]

Return type

AuthenticationexternalGetListV1Response

Authorization

Authorization

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet

HTTP response details

Status code Description Response headers
200 Successful response -
406 The URL is valid, but one of the Accept header is not defined or invalid. For example, you set the header &quot;Accept: application/json&quot; but the function can only return &quot;Content-type: image/png&quot; -

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

AuthenticationexternalGetObjectV2

AuthenticationexternalGetObjectV2Response AuthenticationexternalGetObjectV2 (int pkiAuthenticationexternalID)

Retrieve an existing Authenticationexternal

Example

using System.Collections.Generic;
using System.Diagnostics;
using eZmaxApi.Api;
using eZmaxApi.Client;
using eZmaxApi.Model;

namespace Example
{
    public class AuthenticationexternalGetObjectV2Example
    {
        public static void Main()
        {
            Configuration config = new Configuration();
            config.BasePath = "https://prod.api.appcluster01.ca-central-1.ezmax.com/rest";
            // Configure API key authorization: Authorization
            config.AddApiKey("Authorization", "YOUR_API_KEY");
            // Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
            // config.AddApiKeyPrefix("Authorization", "Bearer");

            var apiInstance = new ObjectAuthenticationexternalApi(config);
            var pkiAuthenticationexternalID = 56;  // int | The unique ID of the Authenticationexternal

            try
            {
                // Retrieve an existing Authenticationexternal
                AuthenticationexternalGetObjectV2Response result = apiInstance.AuthenticationexternalGetObjectV2(pkiAuthenticationexternalID);
                Debug.WriteLine(result);
            }
            catch (ApiException  e)
            {
                Debug.Print("Exception when calling ObjectAuthenticationexternalApi.AuthenticationexternalGetObjectV2: " + e.Message);
                Debug.Print("Status Code: " + e.ErrorCode);
                Debug.Print(e.StackTrace);
            }
        }
    }
}

Using the AuthenticationexternalGetObjectV2WithHttpInfo variant

This returns an ApiResponse object which contains the response data, status code and headers.

try
{
    // Retrieve an existing Authenticationexternal
    ApiResponse<AuthenticationexternalGetObjectV2Response> response = apiInstance.AuthenticationexternalGetObjectV2WithHttpInfo(pkiAuthenticationexternalID);
    Debug.Write("Status Code: " + response.StatusCode);
    Debug.Write("Response Headers: " + response.Headers);
    Debug.Write("Response Body: " + response.Data);
}
catch (ApiException e)
{
    Debug.Print("Exception when calling ObjectAuthenticationexternalApi.AuthenticationexternalGetObjectV2WithHttpInfo: " + e.Message);
    Debug.Print("Status Code: " + e.ErrorCode);
    Debug.Print(e.StackTrace);
}

Parameters

Name Type Description Notes
pkiAuthenticationexternalID int The unique ID of the Authenticationexternal

Return type

AuthenticationexternalGetObjectV2Response

Authorization

Authorization

HTTP request headers

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

HTTP response details

Status code Description Response headers
200 Successful response -
404 The request failed. The element on which you were trying to work does not exists. Look for detail about the error in the body -

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

AuthenticationexternalResetAuthorizationV1

AuthenticationexternalResetAuthorizationV1Response AuthenticationexternalResetAuthorizationV1 (int pkiAuthenticationexternalID, Object body)

Reset the Authenticationexternal authorization

Example

using System.Collections.Generic;
using System.Diagnostics;
using eZmaxApi.Api;
using eZmaxApi.Client;
using eZmaxApi.Model;

namespace Example
{
    public class AuthenticationexternalResetAuthorizationV1Example
    {
        public static void Main()
        {
            Configuration config = new Configuration();
            config.BasePath = "https://prod.api.appcluster01.ca-central-1.ezmax.com/rest";
            // Configure API key authorization: Authorization
            config.AddApiKey("Authorization", "YOUR_API_KEY");
            // Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
            // config.AddApiKeyPrefix("Authorization", "Bearer");

            var apiInstance = new ObjectAuthenticationexternalApi(config);
            var pkiAuthenticationexternalID = 56;  // int | 
            var body = null;  // Object | 

            try
            {
                // Reset the Authenticationexternal authorization
                AuthenticationexternalResetAuthorizationV1Response result = apiInstance.AuthenticationexternalResetAuthorizationV1(pkiAuthenticationexternalID, body);
                Debug.WriteLine(result);
            }
            catch (ApiException  e)
            {
                Debug.Print("Exception when calling ObjectAuthenticationexternalApi.AuthenticationexternalResetAuthorizationV1: " + e.Message);
                Debug.Print("Status Code: " + e.ErrorCode);
                Debug.Print(e.StackTrace);
            }
        }
    }
}

Using the AuthenticationexternalResetAuthorizationV1WithHttpInfo variant

This returns an ApiResponse object which contains the response data, status code and headers.

try
{
    // Reset the Authenticationexternal authorization
    ApiResponse<AuthenticationexternalResetAuthorizationV1Response> response = apiInstance.AuthenticationexternalResetAuthorizationV1WithHttpInfo(pkiAuthenticationexternalID, body);
    Debug.Write("Status Code: " + response.StatusCode);
    Debug.Write("Response Headers: " + response.Headers);
    Debug.Write("Response Body: " + response.Data);
}
catch (ApiException e)
{
    Debug.Print("Exception when calling ObjectAuthenticationexternalApi.AuthenticationexternalResetAuthorizationV1WithHttpInfo: " + e.Message);
    Debug.Print("Status Code: " + e.ErrorCode);
    Debug.Print(e.StackTrace);
}

Parameters

Name Type Description Notes
pkiAuthenticationexternalID int
body Object

Return type

AuthenticationexternalResetAuthorizationV1Response

Authorization

Authorization

HTTP request headers

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

HTTP response details

Status code Description Response headers
200 Successful response -
422 The request was syntactically valid but failed because of an interdependance condition. Look for detail about the error in the body -

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