All URIs are relative to https://prod.api.appcluster01.ca-central-1.ezmax.com/rest
Method | HTTP request | Description |
---|---|---|
ServiceProviderConfigGetObjectScimV2 | GET /2/scim/ServiceProviderConfig | Get Service Provider Configuration |
ScimServiceProviderConfig ServiceProviderConfigGetObjectScimV2 ()
Get Service Provider Configuration
using System.Collections.Generic;
using System.Diagnostics;
using eZmaxApi.Api;
using eZmaxApi.Client;
using eZmaxApi.Model;
namespace Example
{
public class ServiceProviderConfigGetObjectScimV2Example
{
public static void Main()
{
Configuration config = new Configuration();
config.BasePath = "https://prod.api.appcluster01.ca-central-1.ezmax.com/rest";
var apiInstance = new ScimServiceProviderConfigApi(config);
try
{
// Get Service Provider Configuration
ScimServiceProviderConfig result = apiInstance.ServiceProviderConfigGetObjectScimV2();
Debug.WriteLine(result);
}
catch (ApiException e)
{
Debug.Print("Exception when calling ScimServiceProviderConfigApi.ServiceProviderConfigGetObjectScimV2: " + e.Message);
Debug.Print("Status Code: " + e.ErrorCode);
Debug.Print(e.StackTrace);
}
}
}
}
This returns an ApiResponse object which contains the response data, status code and headers.
try
{
// Get Service Provider Configuration
ApiResponse<ScimServiceProviderConfig> response = apiInstance.ServiceProviderConfigGetObjectScimV2WithHttpInfo();
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 ScimServiceProviderConfigApi.ServiceProviderConfigGetObjectScimV2WithHttpInfo: " + e.Message);
Debug.Print("Status Code: " + e.ErrorCode);
Debug.Print(e.StackTrace);
}
This endpoint does not need any parameter.
No authorization required
- Content-Type: Not defined
- Accept: application/json
Status code | Description | Response headers |
---|---|---|
200 | OK | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]