Skip to content

Latest commit

 

History

History
60 lines (40 loc) · 1.52 KB

FormsApi.md

File metadata and controls

60 lines (40 loc) · 1.52 KB

bombbomb.FormsApi

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

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

get_form_tracking_as_csv

get_form_tracking_as_csv(id)

Get csv

Get form tracking as csv

Example

from __future__ import print_function
import time
import bombbomb
from bombbomb.rest import ApiException
from pprint import pprint

# Configure OAuth2 access token for authorization: BBOAuth2
configuration = bombbomb.Configuration()
configuration.access_token = 'YOUR_ACCESS_TOKEN'

# create an instance of the API class
api_instance = bombbomb.FormsApi(bombbomb.ApiClient(configuration))
id = 'id_example' # str | Id of the form

try:
    # Get csv
    api_instance.get_form_tracking_as_csv(id)
except ApiException as e:
    print("Exception when calling FormsApi->get_form_tracking_as_csv: %s\n" % e)

Parameters

Name Type Description Notes
id str Id of the form

Return type

void (empty response body)

Authorization

BBOAuth2

HTTP request headers

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

[Back to top] [Back to API list] [Back to Model list] [Back to README]