All URIs are relative to https://api.hubapi.com
| Method | HTTP request | Description |
|---|---|---|
| DeleteCrmV3ExtensionsCallingAppIdSettingsArchive | DELETE /crm/v3/extensions/calling/{appId}/settings | Delete calling settings |
| DeleteCrmV3ExtensionsVideoconferencingSettingsAppIdArchive | DELETE /crm/v3/extensions/videoconferencing/settings/{appId} | Delete settings |
| DeleteWebhooksV3AppIdSettingsClear | DELETE /webhooks/v3/{appId}/settings | |
| GetCrmV3ExtensionsAccountingSettingsAppIdGetById | GET /crm/v3/extensions/accounting/settings/{appId} | Get URL settings |
| GetCrmV3ExtensionsCallingAppIdSettingsGetById | GET /crm/v3/extensions/calling/{appId}/settings | Get calling settings |
| GetCrmV3ExtensionsVideoconferencingSettingsAppIdGetById | GET /crm/v3/extensions/videoconferencing/settings/{appId} | Get settings |
| GetMarketingV3MarketingEventsAppIdSettings | GET /marketing/v3/marketing-events/{appId}/settings | Retrieve the application settings |
| GetWebhooksV3AppIdSettingsGetAll | GET /webhooks/v3/{appId}/settings | |
| PatchCrmV3ExtensionsCallingAppIdSettingsUpdate | PATCH /crm/v3/extensions/calling/{appId}/settings | Update settings |
| PostCrmV3ExtensionsCallingAppIdSettingsCreate | POST /crm/v3/extensions/calling/{appId}/settings | Configure a calling extension |
| PostMarketingV3MarketingEventsAppIdSettings | POST /marketing/v3/marketing-events/{appId}/settings | Update the application settings |
| PutCrmV3ExtensionsAccountingSettingsAppIdReplace | PUT /crm/v3/extensions/accounting/settings/{appId} | Add/Update URL Settings |
| PutCrmV3ExtensionsVideoconferencingSettingsAppIdReplace | PUT /crm/v3/extensions/videoconferencing/settings/{appId} | Update settings |
| PutWebhooksV3AppIdSettingsConfigure | PUT /webhooks/v3/{appId}/settings |
void DeleteCrmV3ExtensionsCallingAppIdSettingsArchive (int appId)
Delete calling settings
Deletes this calling extension. This will remove your service as an option for all connected accounts.
using System.Collections.Generic;
using System.Diagnostics;
using HubSpot.NET.Api;
using HubSpot.NET.Client;
using HubSpot.NET.Model;
namespace Example
{
public class DeleteCrmV3ExtensionsCallingAppIdSettingsArchiveExample
{
public static void Main()
{
Configuration config = new Configuration();
config.BasePath = "https://api.hubapi.com";
// Configure API key authorization: developer_hapikey
config.AddApiKey("hapikey", "YOUR_API_KEY");
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// config.AddApiKeyPrefix("hapikey", "Bearer");
var apiInstance = new SettingsApi(config);
var appId = 56; // int | The ID of the target app.
try
{
// Delete calling settings
apiInstance.DeleteCrmV3ExtensionsCallingAppIdSettingsArchive(appId);
}
catch (ApiException e)
{
Debug.Print("Exception when calling SettingsApi.DeleteCrmV3ExtensionsCallingAppIdSettingsArchive: " + e.Message );
Debug.Print("Status Code: "+ e.ErrorCode);
Debug.Print(e.StackTrace);
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| appId | int | The ID of the target app. |
void (empty response body)
- Content-Type: Not defined
- Accept: /
| Status code | Description | Response headers |
|---|---|---|
| 204 | No content | - |
| 0 | An error occurred. | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
void DeleteCrmV3ExtensionsVideoconferencingSettingsAppIdArchive (int appId)
Delete settings
Deletes the settings for a video conference application with the specified ID.
using System.Collections.Generic;
using System.Diagnostics;
using HubSpot.NET.Api;
using HubSpot.NET.Client;
using HubSpot.NET.Model;
namespace Example
{
public class DeleteCrmV3ExtensionsVideoconferencingSettingsAppIdArchiveExample
{
public static void Main()
{
Configuration config = new Configuration();
config.BasePath = "https://api.hubapi.com";
var apiInstance = new SettingsApi(config);
var appId = 56; // int | The ID of the video conference application. This is the identifier of the application created in your HubSpot developer portal.
try
{
// Delete settings
apiInstance.DeleteCrmV3ExtensionsVideoconferencingSettingsAppIdArchive(appId);
}
catch (ApiException e)
{
Debug.Print("Exception when calling SettingsApi.DeleteCrmV3ExtensionsVideoconferencingSettingsAppIdArchive: " + e.Message );
Debug.Print("Status Code: "+ e.ErrorCode);
Debug.Print(e.StackTrace);
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| appId | int | The ID of the video conference application. This is the identifier of the application created in your HubSpot developer portal. |
void (empty response body)
No authorization required
- Content-Type: Not defined
- Accept: /
| Status code | Description | Response headers |
|---|---|---|
| 204 | No content | - |
| 0 | An error occurred. | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
void DeleteWebhooksV3AppIdSettingsClear (int appId)
using System.Collections.Generic;
using System.Diagnostics;
using HubSpot.NET.Api;
using HubSpot.NET.Client;
using HubSpot.NET.Model;
namespace Example
{
public class DeleteWebhooksV3AppIdSettingsClearExample
{
public static void Main()
{
Configuration config = new Configuration();
config.BasePath = "https://api.hubapi.com";
// Configure API key authorization: developer_hapikey
config.AddApiKey("hapikey", "YOUR_API_KEY");
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// config.AddApiKeyPrefix("hapikey", "Bearer");
var apiInstance = new SettingsApi(config);
var appId = 56; // int |
try
{
apiInstance.DeleteWebhooksV3AppIdSettingsClear(appId);
}
catch (ApiException e)
{
Debug.Print("Exception when calling SettingsApi.DeleteWebhooksV3AppIdSettingsClear: " + e.Message );
Debug.Print("Status Code: "+ e.ErrorCode);
Debug.Print(e.StackTrace);
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| appId | int |
void (empty response body)
- Content-Type: Not defined
- Accept: /
| Status code | Description | Response headers |
|---|---|---|
| 204 | No content | - |
| 0 | An error occurred. | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
AccountingAppSettings GetCrmV3ExtensionsAccountingSettingsAppIdGetById (int appId)
Get URL settings
Returns the URL settings for an accounting app with the specified ID.
using System.Collections.Generic;
using System.Diagnostics;
using HubSpot.NET.Api;
using HubSpot.NET.Client;
using HubSpot.NET.Model;
namespace Example
{
public class GetCrmV3ExtensionsAccountingSettingsAppIdGetByIdExample
{
public static void Main()
{
Configuration config = new Configuration();
config.BasePath = "https://api.hubapi.com";
var apiInstance = new SettingsApi(config);
var appId = 56; // int | The ID of the accounting app. This is the identifier of the application created in your HubSpot developer portal.
try
{
// Get URL settings
AccountingAppSettings result = apiInstance.GetCrmV3ExtensionsAccountingSettingsAppIdGetById(appId);
Debug.WriteLine(result);
}
catch (ApiException e)
{
Debug.Print("Exception when calling SettingsApi.GetCrmV3ExtensionsAccountingSettingsAppIdGetById: " + e.Message );
Debug.Print("Status Code: "+ e.ErrorCode);
Debug.Print(e.StackTrace);
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| appId | int | The ID of the accounting app. This is the identifier of the application created in your HubSpot developer portal. |
No authorization required
- Content-Type: Not defined
- Accept: application/json, /
| Status code | Description | Response headers |
|---|---|---|
| 200 | successful operation | - |
| 0 | An error occurred. | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
CallingSettingsResponse GetCrmV3ExtensionsCallingAppIdSettingsGetById (int appId)
Get calling settings
Returns the calling extension settings configured for your app.
using System.Collections.Generic;
using System.Diagnostics;
using HubSpot.NET.Api;
using HubSpot.NET.Client;
using HubSpot.NET.Model;
namespace Example
{
public class GetCrmV3ExtensionsCallingAppIdSettingsGetByIdExample
{
public static void Main()
{
Configuration config = new Configuration();
config.BasePath = "https://api.hubapi.com";
// Configure API key authorization: developer_hapikey
config.AddApiKey("hapikey", "YOUR_API_KEY");
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// config.AddApiKeyPrefix("hapikey", "Bearer");
var apiInstance = new SettingsApi(config);
var appId = 56; // int | The ID of the target app.
try
{
// Get calling settings
CallingSettingsResponse result = apiInstance.GetCrmV3ExtensionsCallingAppIdSettingsGetById(appId);
Debug.WriteLine(result);
}
catch (ApiException e)
{
Debug.Print("Exception when calling SettingsApi.GetCrmV3ExtensionsCallingAppIdSettingsGetById: " + e.Message );
Debug.Print("Status Code: "+ e.ErrorCode);
Debug.Print(e.StackTrace);
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| appId | int | The ID of the target app. |
- Content-Type: Not defined
- Accept: application/json, /
| Status code | Description | Response headers |
|---|---|---|
| 200 | successful operation | - |
| 0 | An error occurred. | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
ExternalSettings GetCrmV3ExtensionsVideoconferencingSettingsAppIdGetById (int appId)
Get settings
Return the settings for a video conference application with the specified ID.
using System.Collections.Generic;
using System.Diagnostics;
using HubSpot.NET.Api;
using HubSpot.NET.Client;
using HubSpot.NET.Model;
namespace Example
{
public class GetCrmV3ExtensionsVideoconferencingSettingsAppIdGetByIdExample
{
public static void Main()
{
Configuration config = new Configuration();
config.BasePath = "https://api.hubapi.com";
var apiInstance = new SettingsApi(config);
var appId = 56; // int | The ID of the video conference application. This is the identifier of the application created in your HubSpot developer portal.
try
{
// Get settings
ExternalSettings result = apiInstance.GetCrmV3ExtensionsVideoconferencingSettingsAppIdGetById(appId);
Debug.WriteLine(result);
}
catch (ApiException e)
{
Debug.Print("Exception when calling SettingsApi.GetCrmV3ExtensionsVideoconferencingSettingsAppIdGetById: " + e.Message );
Debug.Print("Status Code: "+ e.ErrorCode);
Debug.Print(e.StackTrace);
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| appId | int | The ID of the video conference application. This is the identifier of the application created in your HubSpot developer portal. |
No authorization required
- Content-Type: Not defined
- Accept: application/json, /
| Status code | Description | Response headers |
|---|---|---|
| 200 | successful operation | - |
| 0 | An error occurred. | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
EventDetailSettings GetMarketingV3MarketingEventsAppIdSettings (int appId)
Retrieve the application settings
Retrieve the current settings for the application.
using System.Collections.Generic;
using System.Diagnostics;
using HubSpot.NET.Api;
using HubSpot.NET.Client;
using HubSpot.NET.Model;
namespace Example
{
public class GetMarketingV3MarketingEventsAppIdSettingsExample
{
public static void Main()
{
Configuration config = new Configuration();
config.BasePath = "https://api.hubapi.com";
// Configure API key authorization: developer_hapikey
config.AddApiKey("hapikey", "YOUR_API_KEY");
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// config.AddApiKeyPrefix("hapikey", "Bearer");
var apiInstance = new SettingsApi(config);
var appId = 56; // int | The id of the application to retrieve the settings for.
try
{
// Retrieve the application settings
EventDetailSettings result = apiInstance.GetMarketingV3MarketingEventsAppIdSettings(appId);
Debug.WriteLine(result);
}
catch (ApiException e)
{
Debug.Print("Exception when calling SettingsApi.GetMarketingV3MarketingEventsAppIdSettings: " + e.Message );
Debug.Print("Status Code: "+ e.ErrorCode);
Debug.Print(e.StackTrace);
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| appId | int | The id of the application to retrieve the settings for. |
- Content-Type: Not defined
- Accept: application/json, /
| Status code | Description | Response headers |
|---|---|---|
| 200 | successful operation | - |
| 0 | An error occurred. | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
SettingsResponse GetWebhooksV3AppIdSettingsGetAll (int appId)
using System.Collections.Generic;
using System.Diagnostics;
using HubSpot.NET.Api;
using HubSpot.NET.Client;
using HubSpot.NET.Model;
namespace Example
{
public class GetWebhooksV3AppIdSettingsGetAllExample
{
public static void Main()
{
Configuration config = new Configuration();
config.BasePath = "https://api.hubapi.com";
// Configure API key authorization: developer_hapikey
config.AddApiKey("hapikey", "YOUR_API_KEY");
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// config.AddApiKeyPrefix("hapikey", "Bearer");
var apiInstance = new SettingsApi(config);
var appId = 56; // int |
try
{
SettingsResponse result = apiInstance.GetWebhooksV3AppIdSettingsGetAll(appId);
Debug.WriteLine(result);
}
catch (ApiException e)
{
Debug.Print("Exception when calling SettingsApi.GetWebhooksV3AppIdSettingsGetAll: " + e.Message );
Debug.Print("Status Code: "+ e.ErrorCode);
Debug.Print(e.StackTrace);
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| appId | int |
- Content-Type: Not defined
- Accept: application/json, /
| Status code | Description | Response headers |
|---|---|---|
| 200 | successful operation | - |
| 0 | An error occurred. | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
CallingSettingsResponse PatchCrmV3ExtensionsCallingAppIdSettingsUpdate (int appId, SettingsPatchRequest settingsPatchRequest)
Update settings
Updates existing calling extension settings.
using System.Collections.Generic;
using System.Diagnostics;
using HubSpot.NET.Api;
using HubSpot.NET.Client;
using HubSpot.NET.Model;
namespace Example
{
public class PatchCrmV3ExtensionsCallingAppIdSettingsUpdateExample
{
public static void Main()
{
Configuration config = new Configuration();
config.BasePath = "https://api.hubapi.com";
// Configure API key authorization: developer_hapikey
config.AddApiKey("hapikey", "YOUR_API_KEY");
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// config.AddApiKeyPrefix("hapikey", "Bearer");
var apiInstance = new SettingsApi(config);
var appId = 56; // int | The ID of the target app.
var settingsPatchRequest = new SettingsPatchRequest(); // SettingsPatchRequest | Updated details for the settings.
try
{
// Update settings
CallingSettingsResponse result = apiInstance.PatchCrmV3ExtensionsCallingAppIdSettingsUpdate(appId, settingsPatchRequest);
Debug.WriteLine(result);
}
catch (ApiException e)
{
Debug.Print("Exception when calling SettingsApi.PatchCrmV3ExtensionsCallingAppIdSettingsUpdate: " + e.Message );
Debug.Print("Status Code: "+ e.ErrorCode);
Debug.Print(e.StackTrace);
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| appId | int | The ID of the target app. | |
| settingsPatchRequest | SettingsPatchRequest | Updated details for the settings. |
- Content-Type: application/json
- Accept: application/json, /
| Status code | Description | Response headers |
|---|---|---|
| 200 | successful operation | - |
| 0 | An error occurred. | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
CallingSettingsResponse PostCrmV3ExtensionsCallingAppIdSettingsCreate (int appId, SettingsRequest settingsRequest)
Configure a calling extension
Used to set the menu label, target iframe URL, and dimensions for your calling extension.
using System.Collections.Generic;
using System.Diagnostics;
using HubSpot.NET.Api;
using HubSpot.NET.Client;
using HubSpot.NET.Model;
namespace Example
{
public class PostCrmV3ExtensionsCallingAppIdSettingsCreateExample
{
public static void Main()
{
Configuration config = new Configuration();
config.BasePath = "https://api.hubapi.com";
// Configure API key authorization: developer_hapikey
config.AddApiKey("hapikey", "YOUR_API_KEY");
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// config.AddApiKeyPrefix("hapikey", "Bearer");
var apiInstance = new SettingsApi(config);
var appId = 56; // int | The ID of the target app.
var settingsRequest = new SettingsRequest(); // SettingsRequest | Settings state to create with.
try
{
// Configure a calling extension
CallingSettingsResponse result = apiInstance.PostCrmV3ExtensionsCallingAppIdSettingsCreate(appId, settingsRequest);
Debug.WriteLine(result);
}
catch (ApiException e)
{
Debug.Print("Exception when calling SettingsApi.PostCrmV3ExtensionsCallingAppIdSettingsCreate: " + e.Message );
Debug.Print("Status Code: "+ e.ErrorCode);
Debug.Print(e.StackTrace);
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| appId | int | The ID of the target app. | |
| settingsRequest | SettingsRequest | Settings state to create with. |
- Content-Type: application/json
- Accept: application/json, /
| Status code | Description | Response headers |
|---|---|---|
| 200 | successful operation | - |
| 0 | An error occurred. | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
EventDetailSettings PostMarketingV3MarketingEventsAppIdSettings (int appId, EventDetailSettingsUrl eventDetailSettingsUrl)
Update the application settings
Create or update the current settings for the application.
using System.Collections.Generic;
using System.Diagnostics;
using HubSpot.NET.Api;
using HubSpot.NET.Client;
using HubSpot.NET.Model;
namespace Example
{
public class PostMarketingV3MarketingEventsAppIdSettingsExample
{
public static void Main()
{
Configuration config = new Configuration();
config.BasePath = "https://api.hubapi.com";
// Configure API key authorization: developer_hapikey
config.AddApiKey("hapikey", "YOUR_API_KEY");
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// config.AddApiKeyPrefix("hapikey", "Bearer");
var apiInstance = new SettingsApi(config);
var appId = 56; // int | The id of the application to update the settings for.
var eventDetailSettingsUrl = new EventDetailSettingsUrl(); // EventDetailSettingsUrl | The new application settings
try
{
// Update the application settings
EventDetailSettings result = apiInstance.PostMarketingV3MarketingEventsAppIdSettings(appId, eventDetailSettingsUrl);
Debug.WriteLine(result);
}
catch (ApiException e)
{
Debug.Print("Exception when calling SettingsApi.PostMarketingV3MarketingEventsAppIdSettings: " + e.Message );
Debug.Print("Status Code: "+ e.ErrorCode);
Debug.Print(e.StackTrace);
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| appId | int | The id of the application to update the settings for. | |
| eventDetailSettingsUrl | EventDetailSettingsUrl | The new application settings |
- Content-Type: application/json
- Accept: application/json, /
| Status code | Description | Response headers |
|---|---|---|
| 200 | successful operation | - |
| 0 | An error occurred. | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
void PutCrmV3ExtensionsAccountingSettingsAppIdReplace (int appId, AccountingAppSettings accountingAppSettings)
Add/Update URL Settings
Add/Update the URL settings for an accounting app with the specified ID. All URLs must use the https protocol.
using System.Collections.Generic;
using System.Diagnostics;
using HubSpot.NET.Api;
using HubSpot.NET.Client;
using HubSpot.NET.Model;
namespace Example
{
public class PutCrmV3ExtensionsAccountingSettingsAppIdReplaceExample
{
public static void Main()
{
Configuration config = new Configuration();
config.BasePath = "https://api.hubapi.com";
var apiInstance = new SettingsApi(config);
var appId = 56; // int | The ID of the accounting app. This is the identifier of the application created in your HubSpot developer portal.
var accountingAppSettings = new AccountingAppSettings(); // AccountingAppSettings |
try
{
// Add/Update URL Settings
apiInstance.PutCrmV3ExtensionsAccountingSettingsAppIdReplace(appId, accountingAppSettings);
}
catch (ApiException e)
{
Debug.Print("Exception when calling SettingsApi.PutCrmV3ExtensionsAccountingSettingsAppIdReplace: " + e.Message );
Debug.Print("Status Code: "+ e.ErrorCode);
Debug.Print(e.StackTrace);
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| appId | int | The ID of the accounting app. This is the identifier of the application created in your HubSpot developer portal. | |
| accountingAppSettings | AccountingAppSettings |
void (empty response body)
No authorization required
- Content-Type: application/json
- Accept: /
| Status code | Description | Response headers |
|---|---|---|
| 204 | No content | - |
| 0 | An error occurred. | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
ExternalSettings PutCrmV3ExtensionsVideoconferencingSettingsAppIdReplace (int appId, ExternalSettings externalSettings)
Update settings
Updates the settings for a video conference application with the specified ID.
using System.Collections.Generic;
using System.Diagnostics;
using HubSpot.NET.Api;
using HubSpot.NET.Client;
using HubSpot.NET.Model;
namespace Example
{
public class PutCrmV3ExtensionsVideoconferencingSettingsAppIdReplaceExample
{
public static void Main()
{
Configuration config = new Configuration();
config.BasePath = "https://api.hubapi.com";
var apiInstance = new SettingsApi(config);
var appId = 56; // int | The ID of the video conference application. This is the identifier of the application created in your HubSpot developer portal.
var externalSettings = new ExternalSettings(); // ExternalSettings |
try
{
// Update settings
ExternalSettings result = apiInstance.PutCrmV3ExtensionsVideoconferencingSettingsAppIdReplace(appId, externalSettings);
Debug.WriteLine(result);
}
catch (ApiException e)
{
Debug.Print("Exception when calling SettingsApi.PutCrmV3ExtensionsVideoconferencingSettingsAppIdReplace: " + e.Message );
Debug.Print("Status Code: "+ e.ErrorCode);
Debug.Print(e.StackTrace);
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| appId | int | The ID of the video conference application. This is the identifier of the application created in your HubSpot developer portal. | |
| externalSettings | ExternalSettings |
No authorization required
- Content-Type: application/json
- Accept: application/json, /
| Status code | Description | Response headers |
|---|---|---|
| 200 | successful operation | - |
| 0 | An error occurred. | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
SettingsResponse PutWebhooksV3AppIdSettingsConfigure (int appId, SettingsChangeRequest settingsChangeRequest)
using System.Collections.Generic;
using System.Diagnostics;
using HubSpot.NET.Api;
using HubSpot.NET.Client;
using HubSpot.NET.Model;
namespace Example
{
public class PutWebhooksV3AppIdSettingsConfigureExample
{
public static void Main()
{
Configuration config = new Configuration();
config.BasePath = "https://api.hubapi.com";
// Configure API key authorization: developer_hapikey
config.AddApiKey("hapikey", "YOUR_API_KEY");
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// config.AddApiKeyPrefix("hapikey", "Bearer");
var apiInstance = new SettingsApi(config);
var appId = 56; // int |
var settingsChangeRequest = new SettingsChangeRequest(); // SettingsChangeRequest |
try
{
SettingsResponse result = apiInstance.PutWebhooksV3AppIdSettingsConfigure(appId, settingsChangeRequest);
Debug.WriteLine(result);
}
catch (ApiException e)
{
Debug.Print("Exception when calling SettingsApi.PutWebhooksV3AppIdSettingsConfigure: " + e.Message );
Debug.Print("Status Code: "+ e.ErrorCode);
Debug.Print(e.StackTrace);
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| appId | int | ||
| settingsChangeRequest | SettingsChangeRequest |
- Content-Type: application/json
- Accept: application/json, /
| Status code | Description | Response headers |
|---|---|---|
| 200 | successful operation | - |
| 0 | An error occurred. | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]