Skip to content

Latest commit

 

History

History
60 lines (39 loc) · 1.31 KB

FormsApi.md

File metadata and controls

60 lines (39 loc) · 1.31 KB

Bombbomb.FormsApi

All URIs are relative to https://api.bombbomb.com/v2

Method HTTP request Description
getFormTrackingAsCsv GET /forms/{id}/tracking/export Get csv

getFormTrackingAsCsv

getFormTrackingAsCsv(id)

Get csv

Get form tracking as csv

Example

var Bombbomb = require('bombbomb');
var defaultClient = Bombbomb.ApiClient.instance;

// Configure OAuth2 access token for authorization: BBOAuth2
var BBOAuth2 = defaultClient.authentications['BBOAuth2'];
BBOAuth2.accessToken = 'YOUR ACCESS TOKEN';

var apiInstance = new Bombbomb.FormsApi();

var id = "id_example"; // String | Id of the form


var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
apiInstance.getFormTrackingAsCsv(id, callback);

Parameters

Name Type Description Notes
id String Id of the form

Return type

null (empty response body)

Authorization

BBOAuth2

HTTP request headers

  • Content-Type: application/x-www-form-urlencoded
  • Accept: application/json