Skip to content

Latest commit

 

History

History
104 lines (64 loc) · 3.48 KB

ObjectSystemconfigurationApi.md

File metadata and controls

104 lines (64 loc) · 3.48 KB

ObjectSystemconfigurationApi

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

Method HTTP request Description
systemconfigurationEditObjectV1 PUT /1/object/systemconfiguration/{pkiSystemconfigurationID} Edit an existing Systemconfiguration
systemconfigurationGetObjectV2 GET /2/object/systemconfiguration/{pkiSystemconfigurationID} Retrieve an existing Systemconfiguration

systemconfigurationEditObjectV1

SystemconfigurationEditObjectV1Response systemconfigurationEditObjectV1(pkiSystemconfigurationID, systemconfigurationEditObjectV1Request)

Edit an existing Systemconfiguration

Example

// Import classes:
//import org.openapitools.client.api.ObjectSystemconfigurationApi;

ObjectSystemconfigurationApi apiInstance = new ObjectSystemconfigurationApi();
Integer pkiSystemconfigurationID = null; // Integer | The unique ID of the Systemconfiguration
SystemconfigurationEditObjectV1Request systemconfigurationEditObjectV1Request = new SystemconfigurationEditObjectV1Request(); // SystemconfigurationEditObjectV1Request | 
try {
    SystemconfigurationEditObjectV1Response result = apiInstance.systemconfigurationEditObjectV1(pkiSystemconfigurationID, systemconfigurationEditObjectV1Request);
    System.out.println(result);
} catch (ApiException e) {
    System.err.println("Exception when calling ObjectSystemconfigurationApi#systemconfigurationEditObjectV1");
    e.printStackTrace();
}

Parameters

Name Type Description Notes
pkiSystemconfigurationID Integer The unique ID of the Systemconfiguration [default to null]
systemconfigurationEditObjectV1Request SystemconfigurationEditObjectV1Request

Return type

SystemconfigurationEditObjectV1Response

Authorization

Authorization

HTTP request headers

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

systemconfigurationGetObjectV2

SystemconfigurationGetObjectV2Response systemconfigurationGetObjectV2(pkiSystemconfigurationID)

Retrieve an existing Systemconfiguration

Example

// Import classes:
//import org.openapitools.client.api.ObjectSystemconfigurationApi;

ObjectSystemconfigurationApi apiInstance = new ObjectSystemconfigurationApi();
Integer pkiSystemconfigurationID = null; // Integer | The unique ID of the Systemconfiguration
try {
    SystemconfigurationGetObjectV2Response result = apiInstance.systemconfigurationGetObjectV2(pkiSystemconfigurationID);
    System.out.println(result);
} catch (ApiException e) {
    System.err.println("Exception when calling ObjectSystemconfigurationApi#systemconfigurationGetObjectV2");
    e.printStackTrace();
}

Parameters

Name Type Description Notes
pkiSystemconfigurationID Integer The unique ID of the Systemconfiguration [default to null]

Return type

SystemconfigurationGetObjectV2Response

Authorization

Authorization

HTTP request headers

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