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(id)
Get csv
Get form tracking as csv
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)
Name | Type | Description | Notes |
---|---|---|---|
id | str | 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]