All URIs are relative to https://api.bombbomb.com/v2
Method | HTTP request | Description |
---|---|---|
getFormTrackingAsCsv | GET /forms/{id}/tracking/export | Get csv |
getFormTrackingAsCsv($id)
Get csv
Get form tracking as csv
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure OAuth2 access token for authorization: BBOAuth2
$config = Swagger\Client\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');
$apiInstance = new Swagger\Client\Api\FormsApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client(),
$config
);
$id = "id_example"; // string | Id of the form
try {
$apiInstance->getFormTrackingAsCsv($id);
} catch (Exception $e) {
echo 'Exception when calling FormsApi->getFormTrackingAsCsv: ', $e->getMessage(), PHP_EOL;
}
?>
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]