All URIs are relative to https://api.bombbomb.com/v2
| Method | HTTP request | Description |
|---|---|---|
| GetFormTrackingAsCsv | GET /forms/{id}/tracking/export | Get csv |
void GetFormTrackingAsCsv (string id)
Get csv
Get form tracking as csv
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;
namespace Example
{
public class GetFormTrackingAsCsvExample
{
public void main()
{
// Configure OAuth2 access token for authorization: BBOAuth2
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
var apiInstance = new FormsApi();
var id = id_example; // string | Id of the form
try
{
// Get csv
apiInstance.GetFormTrackingAsCsv(id);
}
catch (Exception e)
{
Debug.Print("Exception when calling FormsApi.GetFormTrackingAsCsv: " + e.Message );
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| id | string | Id of the form |
void (empty response body)
- Content-Type: application/x-www-form-urlencoded
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]