All URIs are relative to https://api.hubapi.com
| Method | HTTP request | Description |
|---|---|---|
| DeleteCrmObjectSchemasV3SchemasObjectTypePurgePurge | DELETE /crm/v3/schemas/{objectType}/purge |
void DeleteCrmObjectSchemasV3SchemasObjectTypePurgePurge (string objectType)
using System.Collections.Generic;
using System.Diagnostics;
using HubSpot.NET.Api;
using HubSpot.NET.Client;
using HubSpot.NET.Model;
namespace Example
{
public class DeleteCrmObjectSchemasV3SchemasObjectTypePurgePurgeExample
{
public static void Main()
{
Configuration config = new Configuration();
config.BasePath = "https://api.hubapi.com";
var apiInstance = new PublicObjectSchemasApi(config);
var objectType = "objectType_example"; // string |
try
{
apiInstance.DeleteCrmObjectSchemasV3SchemasObjectTypePurgePurge(objectType);
}
catch (ApiException e)
{
Debug.Print("Exception when calling PublicObjectSchemasApi.DeleteCrmObjectSchemasV3SchemasObjectTypePurgePurge: " + e.Message );
Debug.Print("Status Code: "+ e.ErrorCode);
Debug.Print(e.StackTrace);
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| objectType | string |
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]