C# client for the ComboCurve REST API
View the Project on GitHub insidepetroleum/combocurve-client-csharp
All URIs are relative to https://api.combocurve.com
Method | HTTP request | Description |
---|---|---|
GetProjectCustomColumns | GET /v1/projects/{projectId}/custom-columns/{customColumn} | Returns projects custom columns |
ICollection<ProjectCustomHeader> GetProjectCustomColumns (string projectId, string customColumn)
Returns projects custom columns
using System;
using System.Collections.Generic;
using System.Diagnostics;
using ComboCurve.Api.Api;
using ComboCurve.Api.Auth;
using ComboCurve.Api.Client;
using ComboCurve.Api.Model;
namespace Example
{
public class GetProjectCustomColumnsExample
{
public static void Main()
{
// Use this to create your service account manually
var serviceAccount = new ServiceAccount
{
ClientEmail = "YOUR_CLIENT_EMAIL",
ClientId = "YOUR_CLIENT_ID",
PrivateKey = "YOUR_PRIVATE_KEY"
};
// Or use this to load it from a JSON file
// var serviceAccount = ServiceAccount.FromFile("PATH_TO_JSON_FILE");
// Set your API key
var apiKey = "YOUR_API_KEY";
var apiInstance = new ComboCurveV1Api(serviceAccount, apiKey);
// Or use the specific API class (Recommended)
// var apiInstance = new ProjectCustomColumnsApi(serviceAccount, apiKey);
var projectId = "projectId_example"; // string |
var customColumn = "customColumn_example"; // string | Project Custom columns to retrieve. Currently only `headers` is supported
try
{
// Returns projects custom columns
ICollection<ProjectCustomHeader> result = apiInstance.GetProjectCustomColumns(projectId, customColumn);
Debug.WriteLine(result);
}
catch (ApiException e)
{
Debug.Print("Exception when calling ProjectCustomColumnsApi.GetProjectCustomColumns: " + e.Message );
Debug.Print("Status Code: "+ e.ErrorCode);
Debug.Print(e.StackTrace);
}
}
}
}
Name | Type | Description | Notes |
---|---|---|---|
projectId | string | ||
customColumn | string | Project Custom columns to retrieve. Currently only `headers` is supported |
ICollection<ProjectCustomHeader>
API Key, Service Account
| Status code | Description | Response headers | |————-|————-|——————| | 200 | OK | - | | 400 | Bad Request. There is something wrong with the request data. | - | | 404 | Not Found | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]