TIXNGO REST API backend-reporting-api

Reporting

organizerReportDevicesGet

Export devices of spectator v4


/organizer/report/devices

Usage and SDK Samples

curl -X GET \
 -H "Accept: application/json" \
 "https://api.tixngo.io/prod/v4.0/organizer/report/devices?mobileAppId=mobileAppId_example&limit=56&paginationKey=paginationKey_example&lastUpdatedSince=2013-10-20T19:20:30+01:00&lastUpdatedBefore=2013-10-20T19:20:30+01:00"
import com.secutix.tixngo.v4.0.*;
import com.secutix.tixngo.v4.0.auth.*;
import com.secutix.tixngo.v4.0.model.*;
import com.secutix.tixngo.v4.0.api.ReportingApi;

import java.io.File;
import java.util.*;

public class ReportingApiExample {
    public static void main(String[] args) {

        // Create an instance of the API class
        ReportingApi apiInstance = new ReportingApi();
        String mobileAppId = mobileAppId_example; // String | 
        Integer limit = 56; // Integer | Set the number of results returned
        String paginationKey = paginationKey_example; // String | Specify the pagination key to retrieve next page
        Date lastUpdatedSince = 2013-10-20T19:20:30+01:00; // Date | Filter data updated since the given timestamp
        Date lastUpdatedBefore = 2013-10-20T19:20:30+01:00; // Date | Filter data updated before the given timestamp

        try {
            OrganizerReportDevicesResponse result = apiInstance.organizerReportDevicesGet(mobileAppId, limit, paginationKey, lastUpdatedSince, lastUpdatedBefore);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ReportingApi#organizerReportDevicesGet");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();

final String mobileAppId = new String(); // String | 
final Integer limit = new Integer(); // Integer | Set the number of results returned
final String paginationKey = new String(); // String | Specify the pagination key to retrieve next page
final Date lastUpdatedSince = new Date(); // Date | Filter data updated since the given timestamp
final Date lastUpdatedBefore = new Date(); // Date | Filter data updated before the given timestamp

try {
    final result = await api_instance.organizerReportDevicesGet(mobileAppId, limit, paginationKey, lastUpdatedSince, lastUpdatedBefore);
    print(result);
} catch (e) {
    print('Exception when calling DefaultApi->organizerReportDevicesGet: $e\n');
}

import com.secutix.tixngo.v4.0.api.ReportingApi;

public class ReportingApiExample {
    public static void main(String[] args) {
        ReportingApi apiInstance = new ReportingApi();
        String mobileAppId = mobileAppId_example; // String | 
        Integer limit = 56; // Integer | Set the number of results returned
        String paginationKey = paginationKey_example; // String | Specify the pagination key to retrieve next page
        Date lastUpdatedSince = 2013-10-20T19:20:30+01:00; // Date | Filter data updated since the given timestamp
        Date lastUpdatedBefore = 2013-10-20T19:20:30+01:00; // Date | Filter data updated before the given timestamp

        try {
            OrganizerReportDevicesResponse result = apiInstance.organizerReportDevicesGet(mobileAppId, limit, paginationKey, lastUpdatedSince, lastUpdatedBefore);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ReportingApi#organizerReportDevicesGet");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
ReportingApi *apiInstance = [[ReportingApi alloc] init];
String *mobileAppId = mobileAppId_example; //  (default to null)
Integer *limit = 56; // Set the number of results returned (optional) (default to 1000)
String *paginationKey = paginationKey_example; // Specify the pagination key to retrieve next page (optional) (default to null)
Date *lastUpdatedSince = 2013-10-20T19:20:30+01:00; // Filter data updated since the given timestamp (optional) (default to null)
Date *lastUpdatedBefore = 2013-10-20T19:20:30+01:00; // Filter data updated before the given timestamp (optional) (default to null)

[apiInstance organizerReportDevicesGetWith:mobileAppId
    limit:limit
    paginationKey:paginationKey
    lastUpdatedSince:lastUpdatedSince
    lastUpdatedBefore:lastUpdatedBefore
              completionHandler: ^(OrganizerReportDevicesResponse output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var TixngoRestApiBackendReportingApi = require('tixngo_rest_api_backend_reporting_api');

// Create an instance of the API class
var api = new TixngoRestApiBackendReportingApi.ReportingApi()
var mobileAppId = mobileAppId_example; // {String} 
var opts = {
  'limit': 56, // {Integer} Set the number of results returned
  'paginationKey': paginationKey_example, // {String} Specify the pagination key to retrieve next page
  'lastUpdatedSince': 2013-10-20T19:20:30+01:00, // {Date} Filter data updated since the given timestamp
  'lastUpdatedBefore': 2013-10-20T19:20:30+01:00 // {Date} Filter data updated before the given timestamp
};

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.organizerReportDevicesGet(mobileAppId, opts, callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

namespace Example
{
    public class organizerReportDevicesGetExample
    {
        public void main()
        {

            // Create an instance of the API class
            var apiInstance = new ReportingApi();
            var mobileAppId = mobileAppId_example;  // String |  (default to null)
            var limit = 56;  // Integer | Set the number of results returned (optional)  (default to 1000)
            var paginationKey = paginationKey_example;  // String | Specify the pagination key to retrieve next page (optional)  (default to null)
            var lastUpdatedSince = 2013-10-20T19:20:30+01:00;  // Date | Filter data updated since the given timestamp (optional)  (default to null)
            var lastUpdatedBefore = 2013-10-20T19:20:30+01:00;  // Date | Filter data updated before the given timestamp (optional)  (default to null)

            try {
                OrganizerReportDevicesResponse result = apiInstance.organizerReportDevicesGet(mobileAppId, limit, paginationKey, lastUpdatedSince, lastUpdatedBefore);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling ReportingApi.organizerReportDevicesGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\ReportingApi();
$mobileAppId = mobileAppId_example; // String | 
$limit = 56; // Integer | Set the number of results returned
$paginationKey = paginationKey_example; // String | Specify the pagination key to retrieve next page
$lastUpdatedSince = 2013-10-20T19:20:30+01:00; // Date | Filter data updated since the given timestamp
$lastUpdatedBefore = 2013-10-20T19:20:30+01:00; // Date | Filter data updated before the given timestamp

try {
    $result = $api_instance->organizerReportDevicesGet($mobileAppId, $limit, $paginationKey, $lastUpdatedSince, $lastUpdatedBefore);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling ReportingApi->organizerReportDevicesGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::OPenAPIClient::Configuration;
use WWW::OPenAPIClient::ReportingApi;

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::ReportingApi->new();
my $mobileAppId = mobileAppId_example; # String | 
my $limit = 56; # Integer | Set the number of results returned
my $paginationKey = paginationKey_example; # String | Specify the pagination key to retrieve next page
my $lastUpdatedSince = 2013-10-20T19:20:30+01:00; # Date | Filter data updated since the given timestamp
my $lastUpdatedBefore = 2013-10-20T19:20:30+01:00; # Date | Filter data updated before the given timestamp

eval {
    my $result = $api_instance->organizerReportDevicesGet(mobileAppId => $mobileAppId, limit => $limit, paginationKey => $paginationKey, lastUpdatedSince => $lastUpdatedSince, lastUpdatedBefore => $lastUpdatedBefore);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling ReportingApi->organizerReportDevicesGet: $@\n";
}
from __future__ import print_statement
import time
import openapi_client
from openapi_client.rest import ApiException
from pprint import pprint

# Create an instance of the API class
api_instance = openapi_client.ReportingApi()
mobileAppId = mobileAppId_example # String |  (default to null)
limit = 56 # Integer | Set the number of results returned (optional) (default to 1000)
paginationKey = paginationKey_example # String | Specify the pagination key to retrieve next page (optional) (default to null)
lastUpdatedSince = 2013-10-20T19:20:30+01:00 # Date | Filter data updated since the given timestamp (optional) (default to null)
lastUpdatedBefore = 2013-10-20T19:20:30+01:00 # Date | Filter data updated before the given timestamp (optional) (default to null)

try:
    api_response = api_instance.organizer_report_devices_get(mobileAppId, limit=limit, paginationKey=paginationKey, lastUpdatedSince=lastUpdatedSince, lastUpdatedBefore=lastUpdatedBefore)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling ReportingApi->organizerReportDevicesGet: %s\n" % e)
extern crate ReportingApi;

pub fn main() {
    let mobileAppId = mobileAppId_example; // String
    let limit = 56; // Integer
    let paginationKey = paginationKey_example; // String
    let lastUpdatedSince = 2013-10-20T19:20:30+01:00; // Date
    let lastUpdatedBefore = 2013-10-20T19:20:30+01:00; // Date

    let mut context = ReportingApi::Context::default();
    let result = client.organizerReportDevicesGet(mobileAppId, limit, paginationKey, lastUpdatedSince, lastUpdatedBefore, &context).wait();

    println!("{:?}", result);
}

Scopes

Parameters

Query parameters
Name Description
mobileAppId*
String
Required
limit
Integer
Set the number of results returned
paginationKey
String
Specify the pagination key to retrieve next page
lastUpdatedSince
Date (date-time)
Filter data updated since the given timestamp
lastUpdatedBefore
Date (date-time)
Filter data updated before the given timestamp

Responses


organizerReportEventsEventIdTicketsGet

Get ticket ownership information for a specified event


/organizer/report/events/{eventId}/tickets

Usage and SDK Samples

curl -X GET \
 -H "Accept: application/json" \
 "https://api.tixngo.io/prod/v4.0/organizer/report/events/{eventId}/tickets?mobileAppId=mobileAppId_example&excludeDeleted=true&limit=56&offset=56&lastUpdatedSince=2013-10-20T19:20:30+01:00&lastUpdatedBefore=2013-10-20T19:20:30+01:00"
import com.secutix.tixngo.v4.0.*;
import com.secutix.tixngo.v4.0.auth.*;
import com.secutix.tixngo.v4.0.model.*;
import com.secutix.tixngo.v4.0.api.ReportingApi;

import java.io.File;
import java.util.*;

public class ReportingApiExample {
    public static void main(String[] args) {

        // Create an instance of the API class
        ReportingApi apiInstance = new ReportingApi();
        String eventId = eventId_example; // String | Target event ID
        String mobileAppId = mobileAppId_example; // String | Mobile app id of ticket
        Integer limit = 56; // Integer | Set the number of results returned
        Integer offset = 56; // Integer | Specify the offset of the first hit to return
        Boolean excludeDeleted = true; // Boolean | Exclude deleted tickets (default: false)
        Date lastUpdatedSince = 2013-10-20T19:20:30+01:00; // Date | Filter data updated since the given timestamp
        Date lastUpdatedBefore = 2013-10-20T19:20:30+01:00; // Date | Filter data updated before the given timestamp

        try {
            OrganizerReportEventTicketsResponse result = apiInstance.organizerReportEventsEventIdTicketsGet(eventId, mobileAppId, limit, offset, excludeDeleted, lastUpdatedSince, lastUpdatedBefore);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ReportingApi#organizerReportEventsEventIdTicketsGet");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();

final String eventId = new String(); // String | Target event ID
final String mobileAppId = new String(); // String | Mobile app id of ticket
final Integer limit = new Integer(); // Integer | Set the number of results returned
final Integer offset = new Integer(); // Integer | Specify the offset of the first hit to return
final Boolean excludeDeleted = new Boolean(); // Boolean | Exclude deleted tickets (default: false)
final Date lastUpdatedSince = new Date(); // Date | Filter data updated since the given timestamp
final Date lastUpdatedBefore = new Date(); // Date | Filter data updated before the given timestamp

try {
    final result = await api_instance.organizerReportEventsEventIdTicketsGet(eventId, mobileAppId, limit, offset, excludeDeleted, lastUpdatedSince, lastUpdatedBefore);
    print(result);
} catch (e) {
    print('Exception when calling DefaultApi->organizerReportEventsEventIdTicketsGet: $e\n');
}

import com.secutix.tixngo.v4.0.api.ReportingApi;

public class ReportingApiExample {
    public static void main(String[] args) {
        ReportingApi apiInstance = new ReportingApi();
        String eventId = eventId_example; // String | Target event ID
        String mobileAppId = mobileAppId_example; // String | Mobile app id of ticket
        Integer limit = 56; // Integer | Set the number of results returned
        Integer offset = 56; // Integer | Specify the offset of the first hit to return
        Boolean excludeDeleted = true; // Boolean | Exclude deleted tickets (default: false)
        Date lastUpdatedSince = 2013-10-20T19:20:30+01:00; // Date | Filter data updated since the given timestamp
        Date lastUpdatedBefore = 2013-10-20T19:20:30+01:00; // Date | Filter data updated before the given timestamp

        try {
            OrganizerReportEventTicketsResponse result = apiInstance.organizerReportEventsEventIdTicketsGet(eventId, mobileAppId, limit, offset, excludeDeleted, lastUpdatedSince, lastUpdatedBefore);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ReportingApi#organizerReportEventsEventIdTicketsGet");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
ReportingApi *apiInstance = [[ReportingApi alloc] init];
String *eventId = eventId_example; // Target event ID (default to null)
String *mobileAppId = mobileAppId_example; // Mobile app id of ticket (default to null)
Integer *limit = 56; // Set the number of results returned (default to null)
Integer *offset = 56; // Specify the offset of the first hit to return (default to null)
Boolean *excludeDeleted = true; // Exclude deleted tickets (default: false) (optional) (default to false)
Date *lastUpdatedSince = 2013-10-20T19:20:30+01:00; // Filter data updated since the given timestamp (optional) (default to null)
Date *lastUpdatedBefore = 2013-10-20T19:20:30+01:00; // Filter data updated before the given timestamp (optional) (default to null)

[apiInstance organizerReportEventsEventIdTicketsGetWith:eventId
    mobileAppId:mobileAppId
    limit:limit
    offset:offset
    excludeDeleted:excludeDeleted
    lastUpdatedSince:lastUpdatedSince
    lastUpdatedBefore:lastUpdatedBefore
              completionHandler: ^(OrganizerReportEventTicketsResponse output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var TixngoRestApiBackendReportingApi = require('tixngo_rest_api_backend_reporting_api');

// Create an instance of the API class
var api = new TixngoRestApiBackendReportingApi.ReportingApi()
var eventId = eventId_example; // {String} Target event ID
var mobileAppId = mobileAppId_example; // {String} Mobile app id of ticket
var limit = 56; // {Integer} Set the number of results returned
var offset = 56; // {Integer} Specify the offset of the first hit to return
var opts = {
  'excludeDeleted': true, // {Boolean} Exclude deleted tickets (default: false)
  'lastUpdatedSince': 2013-10-20T19:20:30+01:00, // {Date} Filter data updated since the given timestamp
  'lastUpdatedBefore': 2013-10-20T19:20:30+01:00 // {Date} Filter data updated before the given timestamp
};

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.organizerReportEventsEventIdTicketsGet(eventId, mobileAppId, limit, offset, opts, callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

namespace Example
{
    public class organizerReportEventsEventIdTicketsGetExample
    {
        public void main()
        {

            // Create an instance of the API class
            var apiInstance = new ReportingApi();
            var eventId = eventId_example;  // String | Target event ID (default to null)
            var mobileAppId = mobileAppId_example;  // String | Mobile app id of ticket (default to null)
            var limit = 56;  // Integer | Set the number of results returned (default to null)
            var offset = 56;  // Integer | Specify the offset of the first hit to return (default to null)
            var excludeDeleted = true;  // Boolean | Exclude deleted tickets (default: false) (optional)  (default to false)
            var lastUpdatedSince = 2013-10-20T19:20:30+01:00;  // Date | Filter data updated since the given timestamp (optional)  (default to null)
            var lastUpdatedBefore = 2013-10-20T19:20:30+01:00;  // Date | Filter data updated before the given timestamp (optional)  (default to null)

            try {
                OrganizerReportEventTicketsResponse result = apiInstance.organizerReportEventsEventIdTicketsGet(eventId, mobileAppId, limit, offset, excludeDeleted, lastUpdatedSince, lastUpdatedBefore);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling ReportingApi.organizerReportEventsEventIdTicketsGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\ReportingApi();
$eventId = eventId_example; // String | Target event ID
$mobileAppId = mobileAppId_example; // String | Mobile app id of ticket
$limit = 56; // Integer | Set the number of results returned
$offset = 56; // Integer | Specify the offset of the first hit to return
$excludeDeleted = true; // Boolean | Exclude deleted tickets (default: false)
$lastUpdatedSince = 2013-10-20T19:20:30+01:00; // Date | Filter data updated since the given timestamp
$lastUpdatedBefore = 2013-10-20T19:20:30+01:00; // Date | Filter data updated before the given timestamp

try {
    $result = $api_instance->organizerReportEventsEventIdTicketsGet($eventId, $mobileAppId, $limit, $offset, $excludeDeleted, $lastUpdatedSince, $lastUpdatedBefore);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling ReportingApi->organizerReportEventsEventIdTicketsGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::OPenAPIClient::Configuration;
use WWW::OPenAPIClient::ReportingApi;

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::ReportingApi->new();
my $eventId = eventId_example; # String | Target event ID
my $mobileAppId = mobileAppId_example; # String | Mobile app id of ticket
my $limit = 56; # Integer | Set the number of results returned
my $offset = 56; # Integer | Specify the offset of the first hit to return
my $excludeDeleted = true; # Boolean | Exclude deleted tickets (default: false)
my $lastUpdatedSince = 2013-10-20T19:20:30+01:00; # Date | Filter data updated since the given timestamp
my $lastUpdatedBefore = 2013-10-20T19:20:30+01:00; # Date | Filter data updated before the given timestamp

eval {
    my $result = $api_instance->organizerReportEventsEventIdTicketsGet(eventId => $eventId, mobileAppId => $mobileAppId, limit => $limit, offset => $offset, excludeDeleted => $excludeDeleted, lastUpdatedSince => $lastUpdatedSince, lastUpdatedBefore => $lastUpdatedBefore);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling ReportingApi->organizerReportEventsEventIdTicketsGet: $@\n";
}
from __future__ import print_statement
import time
import openapi_client
from openapi_client.rest import ApiException
from pprint import pprint

# Create an instance of the API class
api_instance = openapi_client.ReportingApi()
eventId = eventId_example # String | Target event ID (default to null)
mobileAppId = mobileAppId_example # String | Mobile app id of ticket (default to null)
limit = 56 # Integer | Set the number of results returned (default to null)
offset = 56 # Integer | Specify the offset of the first hit to return (default to null)
excludeDeleted = true # Boolean | Exclude deleted tickets (default: false) (optional) (default to false)
lastUpdatedSince = 2013-10-20T19:20:30+01:00 # Date | Filter data updated since the given timestamp (optional) (default to null)
lastUpdatedBefore = 2013-10-20T19:20:30+01:00 # Date | Filter data updated before the given timestamp (optional) (default to null)

try:
    api_response = api_instance.organizer_report_events_event_id_tickets_get(eventId, mobileAppId, limit, offset, excludeDeleted=excludeDeleted, lastUpdatedSince=lastUpdatedSince, lastUpdatedBefore=lastUpdatedBefore)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling ReportingApi->organizerReportEventsEventIdTicketsGet: %s\n" % e)
extern crate ReportingApi;

pub fn main() {
    let eventId = eventId_example; // String
    let mobileAppId = mobileAppId_example; // String
    let limit = 56; // Integer
    let offset = 56; // Integer
    let excludeDeleted = true; // Boolean
    let lastUpdatedSince = 2013-10-20T19:20:30+01:00; // Date
    let lastUpdatedBefore = 2013-10-20T19:20:30+01:00; // Date

    let mut context = ReportingApi::Context::default();
    let result = client.organizerReportEventsEventIdTicketsGet(eventId, mobileAppId, limit, offset, excludeDeleted, lastUpdatedSince, lastUpdatedBefore, &context).wait();

    println!("{:?}", result);
}

Scopes

Parameters

Path parameters
Name Description
eventId*
String
Target event ID
Required
Query parameters
Name Description
mobileAppId*
String
Mobile app id of ticket
Required
excludeDeleted
Boolean
Exclude deleted tickets (default: false)
limit*
Integer
Set the number of results returned
Required
offset*
Integer
Specify the offset of the first hit to return
Required
lastUpdatedSince
Date (date-time)
Filter data updated since the given timestamp
lastUpdatedBefore
Date (date-time)
Filter data updated before the given timestamp

Responses


organizerReportEventsGet

Get events information for a specified time range


/organizer/report/events

Usage and SDK Samples

curl -X GET \
 -H "Accept: application/json" \
 "https://api.tixngo.io/prod/v4.0/organizer/report/events?eventStartSince=2013-10-20T19:20:30+01:00&eventStartBefore=2013-10-20T19:20:30+01:00"
import com.secutix.tixngo.v4.0.*;
import com.secutix.tixngo.v4.0.auth.*;
import com.secutix.tixngo.v4.0.model.*;
import com.secutix.tixngo.v4.0.api.ReportingApi;

import java.io.File;
import java.util.*;

public class ReportingApiExample {
    public static void main(String[] args) {

        // Create an instance of the API class
        ReportingApi apiInstance = new ReportingApi();
        Date eventStartSince = 2013-10-20T19:20:30+01:00; // Date | Filter event start since the given timestamp
        Date eventStartBefore = 2013-10-20T19:20:30+01:00; // Date | Filter event start before the given timestamp

        try {
            array[OrganizerReportEventsResponseEntry] result = apiInstance.organizerReportEventsGet(eventStartSince, eventStartBefore);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ReportingApi#organizerReportEventsGet");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();

final Date eventStartSince = new Date(); // Date | Filter event start since the given timestamp
final Date eventStartBefore = new Date(); // Date | Filter event start before the given timestamp

try {
    final result = await api_instance.organizerReportEventsGet(eventStartSince, eventStartBefore);
    print(result);
} catch (e) {
    print('Exception when calling DefaultApi->organizerReportEventsGet: $e\n');
}

import com.secutix.tixngo.v4.0.api.ReportingApi;

public class ReportingApiExample {
    public static void main(String[] args) {
        ReportingApi apiInstance = new ReportingApi();
        Date eventStartSince = 2013-10-20T19:20:30+01:00; // Date | Filter event start since the given timestamp
        Date eventStartBefore = 2013-10-20T19:20:30+01:00; // Date | Filter event start before the given timestamp

        try {
            array[OrganizerReportEventsResponseEntry] result = apiInstance.organizerReportEventsGet(eventStartSince, eventStartBefore);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ReportingApi#organizerReportEventsGet");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
ReportingApi *apiInstance = [[ReportingApi alloc] init];
Date *eventStartSince = 2013-10-20T19:20:30+01:00; // Filter event start since the given timestamp (default to null)
Date *eventStartBefore = 2013-10-20T19:20:30+01:00; // Filter event start before the given timestamp (default to null)

[apiInstance organizerReportEventsGetWith:eventStartSince
    eventStartBefore:eventStartBefore
              completionHandler: ^(array[OrganizerReportEventsResponseEntry] output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var TixngoRestApiBackendReportingApi = require('tixngo_rest_api_backend_reporting_api');

// Create an instance of the API class
var api = new TixngoRestApiBackendReportingApi.ReportingApi()
var eventStartSince = 2013-10-20T19:20:30+01:00; // {Date} Filter event start since the given timestamp
var eventStartBefore = 2013-10-20T19:20:30+01:00; // {Date} Filter event start before the given timestamp

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.organizerReportEventsGet(eventStartSince, eventStartBefore, callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

namespace Example
{
    public class organizerReportEventsGetExample
    {
        public void main()
        {

            // Create an instance of the API class
            var apiInstance = new ReportingApi();
            var eventStartSince = 2013-10-20T19:20:30+01:00;  // Date | Filter event start since the given timestamp (default to null)
            var eventStartBefore = 2013-10-20T19:20:30+01:00;  // Date | Filter event start before the given timestamp (default to null)

            try {
                array[OrganizerReportEventsResponseEntry] result = apiInstance.organizerReportEventsGet(eventStartSince, eventStartBefore);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling ReportingApi.organizerReportEventsGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\ReportingApi();
$eventStartSince = 2013-10-20T19:20:30+01:00; // Date | Filter event start since the given timestamp
$eventStartBefore = 2013-10-20T19:20:30+01:00; // Date | Filter event start before the given timestamp

try {
    $result = $api_instance->organizerReportEventsGet($eventStartSince, $eventStartBefore);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling ReportingApi->organizerReportEventsGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::OPenAPIClient::Configuration;
use WWW::OPenAPIClient::ReportingApi;

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::ReportingApi->new();
my $eventStartSince = 2013-10-20T19:20:30+01:00; # Date | Filter event start since the given timestamp
my $eventStartBefore = 2013-10-20T19:20:30+01:00; # Date | Filter event start before the given timestamp

eval {
    my $result = $api_instance->organizerReportEventsGet(eventStartSince => $eventStartSince, eventStartBefore => $eventStartBefore);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling ReportingApi->organizerReportEventsGet: $@\n";
}
from __future__ import print_statement
import time
import openapi_client
from openapi_client.rest import ApiException
from pprint import pprint

# Create an instance of the API class
api_instance = openapi_client.ReportingApi()
eventStartSince = 2013-10-20T19:20:30+01:00 # Date | Filter event start since the given timestamp (default to null)
eventStartBefore = 2013-10-20T19:20:30+01:00 # Date | Filter event start before the given timestamp (default to null)

try:
    api_response = api_instance.organizer_report_events_get(eventStartSince, eventStartBefore)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling ReportingApi->organizerReportEventsGet: %s\n" % e)
extern crate ReportingApi;

pub fn main() {
    let eventStartSince = 2013-10-20T19:20:30+01:00; // Date
    let eventStartBefore = 2013-10-20T19:20:30+01:00; // Date

    let mut context = ReportingApi::Context::default();
    let result = client.organizerReportEventsGet(eventStartSince, eventStartBefore, &context).wait();

    println!("{:?}", result);
}

Scopes

Parameters

Query parameters
Name Description
eventStartSince*
Date (date-time)
Filter event start since the given timestamp
Required
eventStartBefore*
Date (date-time)
Filter event start before the given timestamp
Required

Responses


organizerReportEventsStatisticsGet

Get overview reports of tickets per given events


/organizer/report/events/statistics

Usage and SDK Samples

curl -X GET \
 -H "Accept: application/json" \
 "https://api.tixngo.io/prod/v4.0/organizer/report/events/statistics?dateTime=2013-10-20T19:20:30+01:00&eventIds=&eventStartSince=2013-10-20T19:20:30+01:00&eventStartBefore=2013-10-20T19:20:30+01:00"
import com.secutix.tixngo.v4.0.*;
import com.secutix.tixngo.v4.0.auth.*;
import com.secutix.tixngo.v4.0.model.*;
import com.secutix.tixngo.v4.0.api.ReportingApi;

import java.io.File;
import java.util.*;

public class ReportingApiExample {
    public static void main(String[] args) {

        // Create an instance of the API class
        ReportingApi apiInstance = new ReportingApi();
        Date dateTime = 2013-10-20T19:20:30+01:00; // Date | Filter data on given timestamp
        array[String] eventIds = ; // array[String] | Filter data on given eventIds (max 8)
        Date eventStartSince = 2013-10-20T19:20:30+01:00; // Date | Filter event start since the given timestamp
        Date eventStartBefore = 2013-10-20T19:20:30+01:00; // Date | Filter event start before the given timestamp

        try {
            OrganizerReportEventsStatisticsResponse result = apiInstance.organizerReportEventsStatisticsGet(dateTime, eventIds, eventStartSince, eventStartBefore);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ReportingApi#organizerReportEventsStatisticsGet");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();

final Date dateTime = new Date(); // Date | Filter data on given timestamp
final array[String] eventIds = new array[String](); // array[String] | Filter data on given eventIds (max 8)
final Date eventStartSince = new Date(); // Date | Filter event start since the given timestamp
final Date eventStartBefore = new Date(); // Date | Filter event start before the given timestamp

try {
    final result = await api_instance.organizerReportEventsStatisticsGet(dateTime, eventIds, eventStartSince, eventStartBefore);
    print(result);
} catch (e) {
    print('Exception when calling DefaultApi->organizerReportEventsStatisticsGet: $e\n');
}

import com.secutix.tixngo.v4.0.api.ReportingApi;

public class ReportingApiExample {
    public static void main(String[] args) {
        ReportingApi apiInstance = new ReportingApi();
        Date dateTime = 2013-10-20T19:20:30+01:00; // Date | Filter data on given timestamp
        array[String] eventIds = ; // array[String] | Filter data on given eventIds (max 8)
        Date eventStartSince = 2013-10-20T19:20:30+01:00; // Date | Filter event start since the given timestamp
        Date eventStartBefore = 2013-10-20T19:20:30+01:00; // Date | Filter event start before the given timestamp

        try {
            OrganizerReportEventsStatisticsResponse result = apiInstance.organizerReportEventsStatisticsGet(dateTime, eventIds, eventStartSince, eventStartBefore);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ReportingApi#organizerReportEventsStatisticsGet");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
ReportingApi *apiInstance = [[ReportingApi alloc] init];
Date *dateTime = 2013-10-20T19:20:30+01:00; // Filter data on given timestamp (optional) (default to null)
array[String] *eventIds = ; // Filter data on given eventIds (max 8) (optional) (default to null)
Date *eventStartSince = 2013-10-20T19:20:30+01:00; // Filter event start since the given timestamp (optional) (default to null)
Date *eventStartBefore = 2013-10-20T19:20:30+01:00; // Filter event start before the given timestamp (optional) (default to null)

[apiInstance organizerReportEventsStatisticsGetWith:dateTime
    eventIds:eventIds
    eventStartSince:eventStartSince
    eventStartBefore:eventStartBefore
              completionHandler: ^(OrganizerReportEventsStatisticsResponse output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var TixngoRestApiBackendReportingApi = require('tixngo_rest_api_backend_reporting_api');

// Create an instance of the API class
var api = new TixngoRestApiBackendReportingApi.ReportingApi()
var opts = {
  'dateTime': 2013-10-20T19:20:30+01:00, // {Date} Filter data on given timestamp
  'eventIds': , // {array[String]} Filter data on given eventIds (max 8)
  'eventStartSince': 2013-10-20T19:20:30+01:00, // {Date} Filter event start since the given timestamp
  'eventStartBefore': 2013-10-20T19:20:30+01:00 // {Date} Filter event start before the given timestamp
};

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.organizerReportEventsStatisticsGet(opts, callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

namespace Example
{
    public class organizerReportEventsStatisticsGetExample
    {
        public void main()
        {

            // Create an instance of the API class
            var apiInstance = new ReportingApi();
            var dateTime = 2013-10-20T19:20:30+01:00;  // Date | Filter data on given timestamp (optional)  (default to null)
            var eventIds = new array[String](); // array[String] | Filter data on given eventIds (max 8) (optional)  (default to null)
            var eventStartSince = 2013-10-20T19:20:30+01:00;  // Date | Filter event start since the given timestamp (optional)  (default to null)
            var eventStartBefore = 2013-10-20T19:20:30+01:00;  // Date | Filter event start before the given timestamp (optional)  (default to null)

            try {
                OrganizerReportEventsStatisticsResponse result = apiInstance.organizerReportEventsStatisticsGet(dateTime, eventIds, eventStartSince, eventStartBefore);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling ReportingApi.organizerReportEventsStatisticsGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\ReportingApi();
$dateTime = 2013-10-20T19:20:30+01:00; // Date | Filter data on given timestamp
$eventIds = ; // array[String] | Filter data on given eventIds (max 8)
$eventStartSince = 2013-10-20T19:20:30+01:00; // Date | Filter event start since the given timestamp
$eventStartBefore = 2013-10-20T19:20:30+01:00; // Date | Filter event start before the given timestamp

try {
    $result = $api_instance->organizerReportEventsStatisticsGet($dateTime, $eventIds, $eventStartSince, $eventStartBefore);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling ReportingApi->organizerReportEventsStatisticsGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::OPenAPIClient::Configuration;
use WWW::OPenAPIClient::ReportingApi;

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::ReportingApi->new();
my $dateTime = 2013-10-20T19:20:30+01:00; # Date | Filter data on given timestamp
my $eventIds = []; # array[String] | Filter data on given eventIds (max 8)
my $eventStartSince = 2013-10-20T19:20:30+01:00; # Date | Filter event start since the given timestamp
my $eventStartBefore = 2013-10-20T19:20:30+01:00; # Date | Filter event start before the given timestamp

eval {
    my $result = $api_instance->organizerReportEventsStatisticsGet(dateTime => $dateTime, eventIds => $eventIds, eventStartSince => $eventStartSince, eventStartBefore => $eventStartBefore);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling ReportingApi->organizerReportEventsStatisticsGet: $@\n";
}
from __future__ import print_statement
import time
import openapi_client
from openapi_client.rest import ApiException
from pprint import pprint

# Create an instance of the API class
api_instance = openapi_client.ReportingApi()
dateTime = 2013-10-20T19:20:30+01:00 # Date | Filter data on given timestamp (optional) (default to null)
eventIds =  # array[String] | Filter data on given eventIds (max 8) (optional) (default to null)
eventStartSince = 2013-10-20T19:20:30+01:00 # Date | Filter event start since the given timestamp (optional) (default to null)
eventStartBefore = 2013-10-20T19:20:30+01:00 # Date | Filter event start before the given timestamp (optional) (default to null)

try:
    api_response = api_instance.organizer_report_events_statistics_get(dateTime=dateTime, eventIds=eventIds, eventStartSince=eventStartSince, eventStartBefore=eventStartBefore)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling ReportingApi->organizerReportEventsStatisticsGet: %s\n" % e)
extern crate ReportingApi;

pub fn main() {
    let dateTime = 2013-10-20T19:20:30+01:00; // Date
    let eventIds = ; // array[String]
    let eventStartSince = 2013-10-20T19:20:30+01:00; // Date
    let eventStartBefore = 2013-10-20T19:20:30+01:00; // Date

    let mut context = ReportingApi::Context::default();
    let result = client.organizerReportEventsStatisticsGet(dateTime, eventIds, eventStartSince, eventStartBefore, &context).wait();

    println!("{:?}", result);
}

Scopes

Parameters

Query parameters
Name Description
dateTime
Date (date-time)
Filter data on given timestamp
eventIds
array[String]
Filter data on given eventIds (max 8)
eventStartSince
Date (date-time)
Filter event start since the given timestamp
eventStartBefore
Date (date-time)
Filter event start before the given timestamp

Responses


organizerReportEventsTicketsGet

Get ticket ownership information for events starting within a specific time range


/organizer/report/events/tickets

Usage and SDK Samples

curl -X GET \
 -H "Accept: application/json" \
 "https://api.tixngo.io/prod/v4.0/organizer/report/events/tickets?mobileAppId=mobileAppId_example&eventStartSince=2013-10-20T19:20:30+01:00&eventStartBefore=2013-10-20T19:20:30+01:00&excludeDeleted=true&limit=56&paginationKey=paginationKey_example&lastUpdatedSince=2013-10-20T19:20:30+01:00&lastUpdatedBefore=2013-10-20T19:20:30+01:00"
import com.secutix.tixngo.v4.0.*;
import com.secutix.tixngo.v4.0.auth.*;
import com.secutix.tixngo.v4.0.model.*;
import com.secutix.tixngo.v4.0.api.ReportingApi;

import java.io.File;
import java.util.*;

public class ReportingApiExample {
    public static void main(String[] args) {

        // Create an instance of the API class
        ReportingApi apiInstance = new ReportingApi();
        String mobileAppId = mobileAppId_example; // String | Mobile app id of ticket
        Date eventStartSince = 2013-10-20T19:20:30+01:00; // Date | Filter event start since the given timestamp
        Date eventStartBefore = 2013-10-20T19:20:30+01:00; // Date | Filter event start before the given timestamp
        Boolean excludeDeleted = true; // Boolean | Exclude deleted tickets (default: false)
        Integer limit = 56; // Integer | Set the number of results returned
        String paginationKey = paginationKey_example; // String | Specify the pagination key to retrieve next page
        Date lastUpdatedSince = 2013-10-20T19:20:30+01:00; // Date | Filter data updated since the given timestamp
        Date lastUpdatedBefore = 2013-10-20T19:20:30+01:00; // Date | Filter data updated before the given timestamp

        try {
            OrganizerReportEventsTicketsResponse result = apiInstance.organizerReportEventsTicketsGet(mobileAppId, eventStartSince, eventStartBefore, excludeDeleted, limit, paginationKey, lastUpdatedSince, lastUpdatedBefore);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ReportingApi#organizerReportEventsTicketsGet");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();

final String mobileAppId = new String(); // String | Mobile app id of ticket
final Date eventStartSince = new Date(); // Date | Filter event start since the given timestamp
final Date eventStartBefore = new Date(); // Date | Filter event start before the given timestamp
final Boolean excludeDeleted = new Boolean(); // Boolean | Exclude deleted tickets (default: false)
final Integer limit = new Integer(); // Integer | Set the number of results returned
final String paginationKey = new String(); // String | Specify the pagination key to retrieve next page
final Date lastUpdatedSince = new Date(); // Date | Filter data updated since the given timestamp
final Date lastUpdatedBefore = new Date(); // Date | Filter data updated before the given timestamp

try {
    final result = await api_instance.organizerReportEventsTicketsGet(mobileAppId, eventStartSince, eventStartBefore, excludeDeleted, limit, paginationKey, lastUpdatedSince, lastUpdatedBefore);
    print(result);
} catch (e) {
    print('Exception when calling DefaultApi->organizerReportEventsTicketsGet: $e\n');
}

import com.secutix.tixngo.v4.0.api.ReportingApi;

public class ReportingApiExample {
    public static void main(String[] args) {
        ReportingApi apiInstance = new ReportingApi();
        String mobileAppId = mobileAppId_example; // String | Mobile app id of ticket
        Date eventStartSince = 2013-10-20T19:20:30+01:00; // Date | Filter event start since the given timestamp
        Date eventStartBefore = 2013-10-20T19:20:30+01:00; // Date | Filter event start before the given timestamp
        Boolean excludeDeleted = true; // Boolean | Exclude deleted tickets (default: false)
        Integer limit = 56; // Integer | Set the number of results returned
        String paginationKey = paginationKey_example; // String | Specify the pagination key to retrieve next page
        Date lastUpdatedSince = 2013-10-20T19:20:30+01:00; // Date | Filter data updated since the given timestamp
        Date lastUpdatedBefore = 2013-10-20T19:20:30+01:00; // Date | Filter data updated before the given timestamp

        try {
            OrganizerReportEventsTicketsResponse result = apiInstance.organizerReportEventsTicketsGet(mobileAppId, eventStartSince, eventStartBefore, excludeDeleted, limit, paginationKey, lastUpdatedSince, lastUpdatedBefore);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ReportingApi#organizerReportEventsTicketsGet");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
ReportingApi *apiInstance = [[ReportingApi alloc] init];
String *mobileAppId = mobileAppId_example; // Mobile app id of ticket (default to null)
Date *eventStartSince = 2013-10-20T19:20:30+01:00; // Filter event start since the given timestamp (default to null)
Date *eventStartBefore = 2013-10-20T19:20:30+01:00; // Filter event start before the given timestamp (default to null)
Boolean *excludeDeleted = true; // Exclude deleted tickets (default: false) (optional) (default to false)
Integer *limit = 56; // Set the number of results returned (optional) (default to 1000)
String *paginationKey = paginationKey_example; // Specify the pagination key to retrieve next page (optional) (default to null)
Date *lastUpdatedSince = 2013-10-20T19:20:30+01:00; // Filter data updated since the given timestamp (optional) (default to null)
Date *lastUpdatedBefore = 2013-10-20T19:20:30+01:00; // Filter data updated before the given timestamp (optional) (default to null)

[apiInstance organizerReportEventsTicketsGetWith:mobileAppId
    eventStartSince:eventStartSince
    eventStartBefore:eventStartBefore
    excludeDeleted:excludeDeleted
    limit:limit
    paginationKey:paginationKey
    lastUpdatedSince:lastUpdatedSince
    lastUpdatedBefore:lastUpdatedBefore
              completionHandler: ^(OrganizerReportEventsTicketsResponse output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var TixngoRestApiBackendReportingApi = require('tixngo_rest_api_backend_reporting_api');

// Create an instance of the API class
var api = new TixngoRestApiBackendReportingApi.ReportingApi()
var mobileAppId = mobileAppId_example; // {String} Mobile app id of ticket
var eventStartSince = 2013-10-20T19:20:30+01:00; // {Date} Filter event start since the given timestamp
var eventStartBefore = 2013-10-20T19:20:30+01:00; // {Date} Filter event start before the given timestamp
var opts = {
  'excludeDeleted': true, // {Boolean} Exclude deleted tickets (default: false)
  'limit': 56, // {Integer} Set the number of results returned
  'paginationKey': paginationKey_example, // {String} Specify the pagination key to retrieve next page
  'lastUpdatedSince': 2013-10-20T19:20:30+01:00, // {Date} Filter data updated since the given timestamp
  'lastUpdatedBefore': 2013-10-20T19:20:30+01:00 // {Date} Filter data updated before the given timestamp
};

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.organizerReportEventsTicketsGet(mobileAppId, eventStartSince, eventStartBefore, opts, callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

namespace Example
{
    public class organizerReportEventsTicketsGetExample
    {
        public void main()
        {

            // Create an instance of the API class
            var apiInstance = new ReportingApi();
            var mobileAppId = mobileAppId_example;  // String | Mobile app id of ticket (default to null)
            var eventStartSince = 2013-10-20T19:20:30+01:00;  // Date | Filter event start since the given timestamp (default to null)
            var eventStartBefore = 2013-10-20T19:20:30+01:00;  // Date | Filter event start before the given timestamp (default to null)
            var excludeDeleted = true;  // Boolean | Exclude deleted tickets (default: false) (optional)  (default to false)
            var limit = 56;  // Integer | Set the number of results returned (optional)  (default to 1000)
            var paginationKey = paginationKey_example;  // String | Specify the pagination key to retrieve next page (optional)  (default to null)
            var lastUpdatedSince = 2013-10-20T19:20:30+01:00;  // Date | Filter data updated since the given timestamp (optional)  (default to null)
            var lastUpdatedBefore = 2013-10-20T19:20:30+01:00;  // Date | Filter data updated before the given timestamp (optional)  (default to null)

            try {
                OrganizerReportEventsTicketsResponse result = apiInstance.organizerReportEventsTicketsGet(mobileAppId, eventStartSince, eventStartBefore, excludeDeleted, limit, paginationKey, lastUpdatedSince, lastUpdatedBefore);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling ReportingApi.organizerReportEventsTicketsGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\ReportingApi();
$mobileAppId = mobileAppId_example; // String | Mobile app id of ticket
$eventStartSince = 2013-10-20T19:20:30+01:00; // Date | Filter event start since the given timestamp
$eventStartBefore = 2013-10-20T19:20:30+01:00; // Date | Filter event start before the given timestamp
$excludeDeleted = true; // Boolean | Exclude deleted tickets (default: false)
$limit = 56; // Integer | Set the number of results returned
$paginationKey = paginationKey_example; // String | Specify the pagination key to retrieve next page
$lastUpdatedSince = 2013-10-20T19:20:30+01:00; // Date | Filter data updated since the given timestamp
$lastUpdatedBefore = 2013-10-20T19:20:30+01:00; // Date | Filter data updated before the given timestamp

try {
    $result = $api_instance->organizerReportEventsTicketsGet($mobileAppId, $eventStartSince, $eventStartBefore, $excludeDeleted, $limit, $paginationKey, $lastUpdatedSince, $lastUpdatedBefore);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling ReportingApi->organizerReportEventsTicketsGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::OPenAPIClient::Configuration;
use WWW::OPenAPIClient::ReportingApi;

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::ReportingApi->new();
my $mobileAppId = mobileAppId_example; # String | Mobile app id of ticket
my $eventStartSince = 2013-10-20T19:20:30+01:00; # Date | Filter event start since the given timestamp
my $eventStartBefore = 2013-10-20T19:20:30+01:00; # Date | Filter event start before the given timestamp
my $excludeDeleted = true; # Boolean | Exclude deleted tickets (default: false)
my $limit = 56; # Integer | Set the number of results returned
my $paginationKey = paginationKey_example; # String | Specify the pagination key to retrieve next page
my $lastUpdatedSince = 2013-10-20T19:20:30+01:00; # Date | Filter data updated since the given timestamp
my $lastUpdatedBefore = 2013-10-20T19:20:30+01:00; # Date | Filter data updated before the given timestamp

eval {
    my $result = $api_instance->organizerReportEventsTicketsGet(mobileAppId => $mobileAppId, eventStartSince => $eventStartSince, eventStartBefore => $eventStartBefore, excludeDeleted => $excludeDeleted, limit => $limit, paginationKey => $paginationKey, lastUpdatedSince => $lastUpdatedSince, lastUpdatedBefore => $lastUpdatedBefore);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling ReportingApi->organizerReportEventsTicketsGet: $@\n";
}
from __future__ import print_statement
import time
import openapi_client
from openapi_client.rest import ApiException
from pprint import pprint

# Create an instance of the API class
api_instance = openapi_client.ReportingApi()
mobileAppId = mobileAppId_example # String | Mobile app id of ticket (default to null)
eventStartSince = 2013-10-20T19:20:30+01:00 # Date | Filter event start since the given timestamp (default to null)
eventStartBefore = 2013-10-20T19:20:30+01:00 # Date | Filter event start before the given timestamp (default to null)
excludeDeleted = true # Boolean | Exclude deleted tickets (default: false) (optional) (default to false)
limit = 56 # Integer | Set the number of results returned (optional) (default to 1000)
paginationKey = paginationKey_example # String | Specify the pagination key to retrieve next page (optional) (default to null)
lastUpdatedSince = 2013-10-20T19:20:30+01:00 # Date | Filter data updated since the given timestamp (optional) (default to null)
lastUpdatedBefore = 2013-10-20T19:20:30+01:00 # Date | Filter data updated before the given timestamp (optional) (default to null)

try:
    api_response = api_instance.organizer_report_events_tickets_get(mobileAppId, eventStartSince, eventStartBefore, excludeDeleted=excludeDeleted, limit=limit, paginationKey=paginationKey, lastUpdatedSince=lastUpdatedSince, lastUpdatedBefore=lastUpdatedBefore)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling ReportingApi->organizerReportEventsTicketsGet: %s\n" % e)
extern crate ReportingApi;

pub fn main() {
    let mobileAppId = mobileAppId_example; // String
    let eventStartSince = 2013-10-20T19:20:30+01:00; // Date
    let eventStartBefore = 2013-10-20T19:20:30+01:00; // Date
    let excludeDeleted = true; // Boolean
    let limit = 56; // Integer
    let paginationKey = paginationKey_example; // String
    let lastUpdatedSince = 2013-10-20T19:20:30+01:00; // Date
    let lastUpdatedBefore = 2013-10-20T19:20:30+01:00; // Date

    let mut context = ReportingApi::Context::default();
    let result = client.organizerReportEventsTicketsGet(mobileAppId, eventStartSince, eventStartBefore, excludeDeleted, limit, paginationKey, lastUpdatedSince, lastUpdatedBefore, &context).wait();

    println!("{:?}", result);
}

Scopes

Parameters

Query parameters
Name Description
mobileAppId*
String
Mobile app id of ticket
Required
eventStartSince*
Date (date-time)
Filter event start since the given timestamp
Required
eventStartBefore*
Date (date-time)
Filter event start before the given timestamp
Required
excludeDeleted
Boolean
Exclude deleted tickets (default: false)
limit
Integer
Set the number of results returned
paginationKey
String
Specify the pagination key to retrieve next page
lastUpdatedSince
Date (date-time)
Filter data updated since the given timestamp
lastUpdatedBefore
Date (date-time)
Filter data updated before the given timestamp

Responses


organizerReportEventsTicketsLightGet

Get basic ticket ownership information for events starting within a specific time range


/organizer/report/events/tickets-light

Usage and SDK Samples

curl -X GET \
 -H "Accept: application/json" \
 "https://api.tixngo.io/prod/v4.0/organizer/report/events/tickets-light?mobileAppId=mobileAppId_example&eventStartSince=2013-10-20T19:20:30+01:00&eventStartBefore=2013-10-20T19:20:30+01:00&excludeDeleted=true&limit=56&paginationKey=paginationKey_example&lastUpdatedSince=2013-10-20T19:20:30+01:00&lastUpdatedBefore=2013-10-20T19:20:30+01:00"
import com.secutix.tixngo.v4.0.*;
import com.secutix.tixngo.v4.0.auth.*;
import com.secutix.tixngo.v4.0.model.*;
import com.secutix.tixngo.v4.0.api.ReportingApi;

import java.io.File;
import java.util.*;

public class ReportingApiExample {
    public static void main(String[] args) {

        // Create an instance of the API class
        ReportingApi apiInstance = new ReportingApi();
        String mobileAppId = mobileAppId_example; // String | Mobile app id of ticket
        Date eventStartSince = 2013-10-20T19:20:30+01:00; // Date | Filter event start since the given timestamp
        Date eventStartBefore = 2013-10-20T19:20:30+01:00; // Date | Filter event start before the given timestamp
        Boolean excludeDeleted = true; // Boolean | Exclude deleted tickets (default: false)
        Integer limit = 56; // Integer | Set the number of results returned
        String paginationKey = paginationKey_example; // String | Specify the pagination key to retrieve next page
        Date lastUpdatedSince = 2013-10-20T19:20:30+01:00; // Date | Filter data updated since the given timestamp
        Date lastUpdatedBefore = 2013-10-20T19:20:30+01:00; // Date | Filter data updated before the given timestamp

        try {
            OrganizerReportEventsTicketsLightResponse result = apiInstance.organizerReportEventsTicketsLightGet(mobileAppId, eventStartSince, eventStartBefore, excludeDeleted, limit, paginationKey, lastUpdatedSince, lastUpdatedBefore);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ReportingApi#organizerReportEventsTicketsLightGet");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();

final String mobileAppId = new String(); // String | Mobile app id of ticket
final Date eventStartSince = new Date(); // Date | Filter event start since the given timestamp
final Date eventStartBefore = new Date(); // Date | Filter event start before the given timestamp
final Boolean excludeDeleted = new Boolean(); // Boolean | Exclude deleted tickets (default: false)
final Integer limit = new Integer(); // Integer | Set the number of results returned
final String paginationKey = new String(); // String | Specify the pagination key to retrieve next page
final Date lastUpdatedSince = new Date(); // Date | Filter data updated since the given timestamp
final Date lastUpdatedBefore = new Date(); // Date | Filter data updated before the given timestamp

try {
    final result = await api_instance.organizerReportEventsTicketsLightGet(mobileAppId, eventStartSince, eventStartBefore, excludeDeleted, limit, paginationKey, lastUpdatedSince, lastUpdatedBefore);
    print(result);
} catch (e) {
    print('Exception when calling DefaultApi->organizerReportEventsTicketsLightGet: $e\n');
}

import com.secutix.tixngo.v4.0.api.ReportingApi;

public class ReportingApiExample {
    public static void main(String[] args) {
        ReportingApi apiInstance = new ReportingApi();
        String mobileAppId = mobileAppId_example; // String | Mobile app id of ticket
        Date eventStartSince = 2013-10-20T19:20:30+01:00; // Date | Filter event start since the given timestamp
        Date eventStartBefore = 2013-10-20T19:20:30+01:00; // Date | Filter event start before the given timestamp
        Boolean excludeDeleted = true; // Boolean | Exclude deleted tickets (default: false)
        Integer limit = 56; // Integer | Set the number of results returned
        String paginationKey = paginationKey_example; // String | Specify the pagination key to retrieve next page
        Date lastUpdatedSince = 2013-10-20T19:20:30+01:00; // Date | Filter data updated since the given timestamp
        Date lastUpdatedBefore = 2013-10-20T19:20:30+01:00; // Date | Filter data updated before the given timestamp

        try {
            OrganizerReportEventsTicketsLightResponse result = apiInstance.organizerReportEventsTicketsLightGet(mobileAppId, eventStartSince, eventStartBefore, excludeDeleted, limit, paginationKey, lastUpdatedSince, lastUpdatedBefore);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ReportingApi#organizerReportEventsTicketsLightGet");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
ReportingApi *apiInstance = [[ReportingApi alloc] init];
String *mobileAppId = mobileAppId_example; // Mobile app id of ticket (default to null)
Date *eventStartSince = 2013-10-20T19:20:30+01:00; // Filter event start since the given timestamp (default to null)
Date *eventStartBefore = 2013-10-20T19:20:30+01:00; // Filter event start before the given timestamp (default to null)
Boolean *excludeDeleted = true; // Exclude deleted tickets (default: false) (optional) (default to false)
Integer *limit = 56; // Set the number of results returned (optional) (default to 1000)
String *paginationKey = paginationKey_example; // Specify the pagination key to retrieve next page (optional) (default to null)
Date *lastUpdatedSince = 2013-10-20T19:20:30+01:00; // Filter data updated since the given timestamp (optional) (default to null)
Date *lastUpdatedBefore = 2013-10-20T19:20:30+01:00; // Filter data updated before the given timestamp (optional) (default to null)

[apiInstance organizerReportEventsTicketsLightGetWith:mobileAppId
    eventStartSince:eventStartSince
    eventStartBefore:eventStartBefore
    excludeDeleted:excludeDeleted
    limit:limit
    paginationKey:paginationKey
    lastUpdatedSince:lastUpdatedSince
    lastUpdatedBefore:lastUpdatedBefore
              completionHandler: ^(OrganizerReportEventsTicketsLightResponse output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var TixngoRestApiBackendReportingApi = require('tixngo_rest_api_backend_reporting_api');

// Create an instance of the API class
var api = new TixngoRestApiBackendReportingApi.ReportingApi()
var mobileAppId = mobileAppId_example; // {String} Mobile app id of ticket
var eventStartSince = 2013-10-20T19:20:30+01:00; // {Date} Filter event start since the given timestamp
var eventStartBefore = 2013-10-20T19:20:30+01:00; // {Date} Filter event start before the given timestamp
var opts = {
  'excludeDeleted': true, // {Boolean} Exclude deleted tickets (default: false)
  'limit': 56, // {Integer} Set the number of results returned
  'paginationKey': paginationKey_example, // {String} Specify the pagination key to retrieve next page
  'lastUpdatedSince': 2013-10-20T19:20:30+01:00, // {Date} Filter data updated since the given timestamp
  'lastUpdatedBefore': 2013-10-20T19:20:30+01:00 // {Date} Filter data updated before the given timestamp
};

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.organizerReportEventsTicketsLightGet(mobileAppId, eventStartSince, eventStartBefore, opts, callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

namespace Example
{
    public class organizerReportEventsTicketsLightGetExample
    {
        public void main()
        {

            // Create an instance of the API class
            var apiInstance = new ReportingApi();
            var mobileAppId = mobileAppId_example;  // String | Mobile app id of ticket (default to null)
            var eventStartSince = 2013-10-20T19:20:30+01:00;  // Date | Filter event start since the given timestamp (default to null)
            var eventStartBefore = 2013-10-20T19:20:30+01:00;  // Date | Filter event start before the given timestamp (default to null)
            var excludeDeleted = true;  // Boolean | Exclude deleted tickets (default: false) (optional)  (default to false)
            var limit = 56;  // Integer | Set the number of results returned (optional)  (default to 1000)
            var paginationKey = paginationKey_example;  // String | Specify the pagination key to retrieve next page (optional)  (default to null)
            var lastUpdatedSince = 2013-10-20T19:20:30+01:00;  // Date | Filter data updated since the given timestamp (optional)  (default to null)
            var lastUpdatedBefore = 2013-10-20T19:20:30+01:00;  // Date | Filter data updated before the given timestamp (optional)  (default to null)

            try {
                OrganizerReportEventsTicketsLightResponse result = apiInstance.organizerReportEventsTicketsLightGet(mobileAppId, eventStartSince, eventStartBefore, excludeDeleted, limit, paginationKey, lastUpdatedSince, lastUpdatedBefore);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling ReportingApi.organizerReportEventsTicketsLightGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\ReportingApi();
$mobileAppId = mobileAppId_example; // String | Mobile app id of ticket
$eventStartSince = 2013-10-20T19:20:30+01:00; // Date | Filter event start since the given timestamp
$eventStartBefore = 2013-10-20T19:20:30+01:00; // Date | Filter event start before the given timestamp
$excludeDeleted = true; // Boolean | Exclude deleted tickets (default: false)
$limit = 56; // Integer | Set the number of results returned
$paginationKey = paginationKey_example; // String | Specify the pagination key to retrieve next page
$lastUpdatedSince = 2013-10-20T19:20:30+01:00; // Date | Filter data updated since the given timestamp
$lastUpdatedBefore = 2013-10-20T19:20:30+01:00; // Date | Filter data updated before the given timestamp

try {
    $result = $api_instance->organizerReportEventsTicketsLightGet($mobileAppId, $eventStartSince, $eventStartBefore, $excludeDeleted, $limit, $paginationKey, $lastUpdatedSince, $lastUpdatedBefore);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling ReportingApi->organizerReportEventsTicketsLightGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::OPenAPIClient::Configuration;
use WWW::OPenAPIClient::ReportingApi;

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::ReportingApi->new();
my $mobileAppId = mobileAppId_example; # String | Mobile app id of ticket
my $eventStartSince = 2013-10-20T19:20:30+01:00; # Date | Filter event start since the given timestamp
my $eventStartBefore = 2013-10-20T19:20:30+01:00; # Date | Filter event start before the given timestamp
my $excludeDeleted = true; # Boolean | Exclude deleted tickets (default: false)
my $limit = 56; # Integer | Set the number of results returned
my $paginationKey = paginationKey_example; # String | Specify the pagination key to retrieve next page
my $lastUpdatedSince = 2013-10-20T19:20:30+01:00; # Date | Filter data updated since the given timestamp
my $lastUpdatedBefore = 2013-10-20T19:20:30+01:00; # Date | Filter data updated before the given timestamp

eval {
    my $result = $api_instance->organizerReportEventsTicketsLightGet(mobileAppId => $mobileAppId, eventStartSince => $eventStartSince, eventStartBefore => $eventStartBefore, excludeDeleted => $excludeDeleted, limit => $limit, paginationKey => $paginationKey, lastUpdatedSince => $lastUpdatedSince, lastUpdatedBefore => $lastUpdatedBefore);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling ReportingApi->organizerReportEventsTicketsLightGet: $@\n";
}
from __future__ import print_statement
import time
import openapi_client
from openapi_client.rest import ApiException
from pprint import pprint

# Create an instance of the API class
api_instance = openapi_client.ReportingApi()
mobileAppId = mobileAppId_example # String | Mobile app id of ticket (default to null)
eventStartSince = 2013-10-20T19:20:30+01:00 # Date | Filter event start since the given timestamp (default to null)
eventStartBefore = 2013-10-20T19:20:30+01:00 # Date | Filter event start before the given timestamp (default to null)
excludeDeleted = true # Boolean | Exclude deleted tickets (default: false) (optional) (default to false)
limit = 56 # Integer | Set the number of results returned (optional) (default to 1000)
paginationKey = paginationKey_example # String | Specify the pagination key to retrieve next page (optional) (default to null)
lastUpdatedSince = 2013-10-20T19:20:30+01:00 # Date | Filter data updated since the given timestamp (optional) (default to null)
lastUpdatedBefore = 2013-10-20T19:20:30+01:00 # Date | Filter data updated before the given timestamp (optional) (default to null)

try:
    api_response = api_instance.organizer_report_events_tickets_light_get(mobileAppId, eventStartSince, eventStartBefore, excludeDeleted=excludeDeleted, limit=limit, paginationKey=paginationKey, lastUpdatedSince=lastUpdatedSince, lastUpdatedBefore=lastUpdatedBefore)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling ReportingApi->organizerReportEventsTicketsLightGet: %s\n" % e)
extern crate ReportingApi;

pub fn main() {
    let mobileAppId = mobileAppId_example; // String
    let eventStartSince = 2013-10-20T19:20:30+01:00; // Date
    let eventStartBefore = 2013-10-20T19:20:30+01:00; // Date
    let excludeDeleted = true; // Boolean
    let limit = 56; // Integer
    let paginationKey = paginationKey_example; // String
    let lastUpdatedSince = 2013-10-20T19:20:30+01:00; // Date
    let lastUpdatedBefore = 2013-10-20T19:20:30+01:00; // Date

    let mut context = ReportingApi::Context::default();
    let result = client.organizerReportEventsTicketsLightGet(mobileAppId, eventStartSince, eventStartBefore, excludeDeleted, limit, paginationKey, lastUpdatedSince, lastUpdatedBefore, &context).wait();

    println!("{:?}", result);
}

Scopes

Parameters

Query parameters
Name Description
mobileAppId*
String
Mobile app id of ticket
Required
eventStartSince*
Date (date-time)
Filter event start since the given timestamp
Required
eventStartBefore*
Date (date-time)
Filter event start before the given timestamp
Required
excludeDeleted
Boolean
Exclude deleted tickets (default: false)
limit
Integer
Set the number of results returned
paginationKey
String
Specify the pagination key to retrieve next page
lastUpdatedSince
Date (date-time)
Filter data updated since the given timestamp
lastUpdatedBefore
Date (date-time)
Filter data updated before the given timestamp

Responses


organizerReportMobileLogsGet

Export mobile logs of spectator v4


/organizer/report/mobile-logs

Usage and SDK Samples

curl -X GET \
 -H "Accept: application/json" \
 "https://api.tixngo.io/prod/v4.0/organizer/report/mobile-logs?mobileAppId=mobileAppId_example&from=2013-10-20T19:20:30+01:00&to=2013-10-20T19:20:30+01:00&logLevels=&actions=&limit=56&paginationKey=paginationKey_example"
import com.secutix.tixngo.v4.0.*;
import com.secutix.tixngo.v4.0.auth.*;
import com.secutix.tixngo.v4.0.model.*;
import com.secutix.tixngo.v4.0.api.ReportingApi;

import java.io.File;
import java.util.*;

public class ReportingApiExample {
    public static void main(String[] args) {

        // Create an instance of the API class
        ReportingApi apiInstance = new ReportingApi();
        String mobileAppId = mobileAppId_example; // String | Mobile app id of ticket
        Date from = 2013-10-20T19:20:30+01:00; // Date | From specific time range.
        Date to = 2013-10-20T19:20:30+01:00; // Date | To specific time range.
        array[OrganizerReportMobileLogLevel] logLevels = ; // array[OrganizerReportMobileLogLevel] | 
        array[String] actions = ; // array[String] | 
        Integer limit = 56; // Integer | Set the number of results returned
        String paginationKey = paginationKey_example; // String | Specify the pagination key to retrieve next page

        try {
            OrganizerReportMobileLogsResponse result = apiInstance.organizerReportMobileLogsGet(mobileAppId, from, to, logLevels, actions, limit, paginationKey);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ReportingApi#organizerReportMobileLogsGet");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();

final String mobileAppId = new String(); // String | Mobile app id of ticket
final Date from = new Date(); // Date | From specific time range.
final Date to = new Date(); // Date | To specific time range.
final array[OrganizerReportMobileLogLevel] logLevels = new array[OrganizerReportMobileLogLevel](); // array[OrganizerReportMobileLogLevel] | 
final array[String] actions = new array[String](); // array[String] | 
final Integer limit = new Integer(); // Integer | Set the number of results returned
final String paginationKey = new String(); // String | Specify the pagination key to retrieve next page

try {
    final result = await api_instance.organizerReportMobileLogsGet(mobileAppId, from, to, logLevels, actions, limit, paginationKey);
    print(result);
} catch (e) {
    print('Exception when calling DefaultApi->organizerReportMobileLogsGet: $e\n');
}

import com.secutix.tixngo.v4.0.api.ReportingApi;

public class ReportingApiExample {
    public static void main(String[] args) {
        ReportingApi apiInstance = new ReportingApi();
        String mobileAppId = mobileAppId_example; // String | Mobile app id of ticket
        Date from = 2013-10-20T19:20:30+01:00; // Date | From specific time range.
        Date to = 2013-10-20T19:20:30+01:00; // Date | To specific time range.
        array[OrganizerReportMobileLogLevel] logLevels = ; // array[OrganizerReportMobileLogLevel] | 
        array[String] actions = ; // array[String] | 
        Integer limit = 56; // Integer | Set the number of results returned
        String paginationKey = paginationKey_example; // String | Specify the pagination key to retrieve next page

        try {
            OrganizerReportMobileLogsResponse result = apiInstance.organizerReportMobileLogsGet(mobileAppId, from, to, logLevels, actions, limit, paginationKey);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ReportingApi#organizerReportMobileLogsGet");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
ReportingApi *apiInstance = [[ReportingApi alloc] init];
String *mobileAppId = mobileAppId_example; // Mobile app id of ticket (default to null)
Date *from = 2013-10-20T19:20:30+01:00; // From specific time range. (default to null)
Date *to = 2013-10-20T19:20:30+01:00; // To specific time range. (default to null)
array[OrganizerReportMobileLogLevel] *logLevels = ; //  (optional) (default to null)
array[String] *actions = ; //  (optional) (default to null)
Integer *limit = 56; // Set the number of results returned (optional) (default to 1000)
String *paginationKey = paginationKey_example; // Specify the pagination key to retrieve next page (optional) (default to null)

[apiInstance organizerReportMobileLogsGetWith:mobileAppId
    from:from
    to:to
    logLevels:logLevels
    actions:actions
    limit:limit
    paginationKey:paginationKey
              completionHandler: ^(OrganizerReportMobileLogsResponse output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var TixngoRestApiBackendReportingApi = require('tixngo_rest_api_backend_reporting_api');

// Create an instance of the API class
var api = new TixngoRestApiBackendReportingApi.ReportingApi()
var mobileAppId = mobileAppId_example; // {String} Mobile app id of ticket
var from = 2013-10-20T19:20:30+01:00; // {Date} From specific time range.
var to = 2013-10-20T19:20:30+01:00; // {Date} To specific time range.
var opts = {
  'logLevels': , // {array[OrganizerReportMobileLogLevel]} 
  'actions': , // {array[String]} 
  'limit': 56, // {Integer} Set the number of results returned
  'paginationKey': paginationKey_example // {String} Specify the pagination key to retrieve next page
};

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.organizerReportMobileLogsGet(mobileAppId, from, to, opts, callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

namespace Example
{
    public class organizerReportMobileLogsGetExample
    {
        public void main()
        {

            // Create an instance of the API class
            var apiInstance = new ReportingApi();
            var mobileAppId = mobileAppId_example;  // String | Mobile app id of ticket (default to null)
            var from = 2013-10-20T19:20:30+01:00;  // Date | From specific time range. (default to null)
            var to = 2013-10-20T19:20:30+01:00;  // Date | To specific time range. (default to null)
            var logLevels = new array[OrganizerReportMobileLogLevel](); // array[OrganizerReportMobileLogLevel] |  (optional)  (default to null)
            var actions = new array[String](); // array[String] |  (optional)  (default to null)
            var limit = 56;  // Integer | Set the number of results returned (optional)  (default to 1000)
            var paginationKey = paginationKey_example;  // String | Specify the pagination key to retrieve next page (optional)  (default to null)

            try {
                OrganizerReportMobileLogsResponse result = apiInstance.organizerReportMobileLogsGet(mobileAppId, from, to, logLevels, actions, limit, paginationKey);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling ReportingApi.organizerReportMobileLogsGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\ReportingApi();
$mobileAppId = mobileAppId_example; // String | Mobile app id of ticket
$from = 2013-10-20T19:20:30+01:00; // Date | From specific time range.
$to = 2013-10-20T19:20:30+01:00; // Date | To specific time range.
$logLevels = ; // array[OrganizerReportMobileLogLevel] | 
$actions = ; // array[String] | 
$limit = 56; // Integer | Set the number of results returned
$paginationKey = paginationKey_example; // String | Specify the pagination key to retrieve next page

try {
    $result = $api_instance->organizerReportMobileLogsGet($mobileAppId, $from, $to, $logLevels, $actions, $limit, $paginationKey);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling ReportingApi->organizerReportMobileLogsGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::OPenAPIClient::Configuration;
use WWW::OPenAPIClient::ReportingApi;

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::ReportingApi->new();
my $mobileAppId = mobileAppId_example; # String | Mobile app id of ticket
my $from = 2013-10-20T19:20:30+01:00; # Date | From specific time range.
my $to = 2013-10-20T19:20:30+01:00; # Date | To specific time range.
my $logLevels = []; # array[OrganizerReportMobileLogLevel] | 
my $actions = []; # array[String] | 
my $limit = 56; # Integer | Set the number of results returned
my $paginationKey = paginationKey_example; # String | Specify the pagination key to retrieve next page

eval {
    my $result = $api_instance->organizerReportMobileLogsGet(mobileAppId => $mobileAppId, from => $from, to => $to, logLevels => $logLevels, actions => $actions, limit => $limit, paginationKey => $paginationKey);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling ReportingApi->organizerReportMobileLogsGet: $@\n";
}
from __future__ import print_statement
import time
import openapi_client
from openapi_client.rest import ApiException
from pprint import pprint

# Create an instance of the API class
api_instance = openapi_client.ReportingApi()
mobileAppId = mobileAppId_example # String | Mobile app id of ticket (default to null)
from = 2013-10-20T19:20:30+01:00 # Date | From specific time range. (default to null)
to = 2013-10-20T19:20:30+01:00 # Date | To specific time range. (default to null)
logLevels =  # array[OrganizerReportMobileLogLevel] |  (optional) (default to null)
actions =  # array[String] |  (optional) (default to null)
limit = 56 # Integer | Set the number of results returned (optional) (default to 1000)
paginationKey = paginationKey_example # String | Specify the pagination key to retrieve next page (optional) (default to null)

try:
    api_response = api_instance.organizer_report_mobile_logs_get(mobileAppId, from, to, logLevels=logLevels, actions=actions, limit=limit, paginationKey=paginationKey)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling ReportingApi->organizerReportMobileLogsGet: %s\n" % e)
extern crate ReportingApi;

pub fn main() {
    let mobileAppId = mobileAppId_example; // String
    let from = 2013-10-20T19:20:30+01:00; // Date
    let to = 2013-10-20T19:20:30+01:00; // Date
    let logLevels = ; // array[OrganizerReportMobileLogLevel]
    let actions = ; // array[String]
    let limit = 56; // Integer
    let paginationKey = paginationKey_example; // String

    let mut context = ReportingApi::Context::default();
    let result = client.organizerReportMobileLogsGet(mobileAppId, from, to, logLevels, actions, limit, paginationKey, &context).wait();

    println!("{:?}", result);
}

Scopes

Parameters

Query parameters
Name Description
mobileAppId*
String
Mobile app id of ticket
Required
from*
Date (date-time)
From specific time range.
Required
to*
Date (date-time)
To specific time range.
Required
logLevels
array[OrganizerReportMobileLogLevel]
actions
array[String]
limit
Integer
Set the number of results returned
paginationKey
String
Specify the pagination key to retrieve next page

Responses


organizerReportMonthlyTicketsInjectionGet

Get injected ticket number for period time of the organizer


/organizer/report/monthly-tickets-injection

Usage and SDK Samples

curl -X GET \
 -H "Accept: application/json" \
 "https://api.tixngo.io/prod/v4.0/organizer/report/monthly-tickets-injection?period=period_example&limit=56&offset=56"
import com.secutix.tixngo.v4.0.*;
import com.secutix.tixngo.v4.0.auth.*;
import com.secutix.tixngo.v4.0.model.*;
import com.secutix.tixngo.v4.0.api.ReportingApi;

import java.io.File;
import java.util.*;

public class ReportingApiExample {
    public static void main(String[] args) {

        // Create an instance of the API class
        ReportingApi apiInstance = new ReportingApi();
        String period = period_example; // String | Target time period
        Integer limit = 56; // Integer | Set the number of results returned
        Integer offset = 56; // Integer | Specify the offset of the first hit to return

        try {
            OrganizerReportTicketsInjectionResponse result = apiInstance.organizerReportMonthlyTicketsInjectionGet(period, limit, offset);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ReportingApi#organizerReportMonthlyTicketsInjectionGet");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();

final String period = new String(); // String | Target time period
final Integer limit = new Integer(); // Integer | Set the number of results returned
final Integer offset = new Integer(); // Integer | Specify the offset of the first hit to return

try {
    final result = await api_instance.organizerReportMonthlyTicketsInjectionGet(period, limit, offset);
    print(result);
} catch (e) {
    print('Exception when calling DefaultApi->organizerReportMonthlyTicketsInjectionGet: $e\n');
}

import com.secutix.tixngo.v4.0.api.ReportingApi;

public class ReportingApiExample {
    public static void main(String[] args) {
        ReportingApi apiInstance = new ReportingApi();
        String period = period_example; // String | Target time period
        Integer limit = 56; // Integer | Set the number of results returned
        Integer offset = 56; // Integer | Specify the offset of the first hit to return

        try {
            OrganizerReportTicketsInjectionResponse result = apiInstance.organizerReportMonthlyTicketsInjectionGet(period, limit, offset);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ReportingApi#organizerReportMonthlyTicketsInjectionGet");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
ReportingApi *apiInstance = [[ReportingApi alloc] init];
String *period = period_example; // Target time period (default to null)
Integer *limit = 56; // Set the number of results returned (default to null)
Integer *offset = 56; // Specify the offset of the first hit to return (default to null)

[apiInstance organizerReportMonthlyTicketsInjectionGetWith:period
    limit:limit
    offset:offset
              completionHandler: ^(OrganizerReportTicketsInjectionResponse output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var TixngoRestApiBackendReportingApi = require('tixngo_rest_api_backend_reporting_api');

// Create an instance of the API class
var api = new TixngoRestApiBackendReportingApi.ReportingApi()
var period = period_example; // {String} Target time period
var limit = 56; // {Integer} Set the number of results returned
var offset = 56; // {Integer} Specify the offset of the first hit to return

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.organizerReportMonthlyTicketsInjectionGet(period, limit, offset, callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

namespace Example
{
    public class organizerReportMonthlyTicketsInjectionGetExample
    {
        public void main()
        {

            // Create an instance of the API class
            var apiInstance = new ReportingApi();
            var period = period_example;  // String | Target time period (default to null)
            var limit = 56;  // Integer | Set the number of results returned (default to null)
            var offset = 56;  // Integer | Specify the offset of the first hit to return (default to null)

            try {
                OrganizerReportTicketsInjectionResponse result = apiInstance.organizerReportMonthlyTicketsInjectionGet(period, limit, offset);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling ReportingApi.organizerReportMonthlyTicketsInjectionGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\ReportingApi();
$period = period_example; // String | Target time period
$limit = 56; // Integer | Set the number of results returned
$offset = 56; // Integer | Specify the offset of the first hit to return

try {
    $result = $api_instance->organizerReportMonthlyTicketsInjectionGet($period, $limit, $offset);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling ReportingApi->organizerReportMonthlyTicketsInjectionGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::OPenAPIClient::Configuration;
use WWW::OPenAPIClient::ReportingApi;

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::ReportingApi->new();
my $period = period_example; # String | Target time period
my $limit = 56; # Integer | Set the number of results returned
my $offset = 56; # Integer | Specify the offset of the first hit to return

eval {
    my $result = $api_instance->organizerReportMonthlyTicketsInjectionGet(period => $period, limit => $limit, offset => $offset);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling ReportingApi->organizerReportMonthlyTicketsInjectionGet: $@\n";
}
from __future__ import print_statement
import time
import openapi_client
from openapi_client.rest import ApiException
from pprint import pprint

# Create an instance of the API class
api_instance = openapi_client.ReportingApi()
period = period_example # String | Target time period (default to null)
limit = 56 # Integer | Set the number of results returned (default to null)
offset = 56 # Integer | Specify the offset of the first hit to return (default to null)

try:
    api_response = api_instance.organizer_report_monthly_tickets_injection_get(period, limit, offset)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling ReportingApi->organizerReportMonthlyTicketsInjectionGet: %s\n" % e)
extern crate ReportingApi;

pub fn main() {
    let period = period_example; // String
    let limit = 56; // Integer
    let offset = 56; // Integer

    let mut context = ReportingApi::Context::default();
    let result = client.organizerReportMonthlyTicketsInjectionGet(period, limit, offset, &context).wait();

    println!("{:?}", result);
}

Scopes

Parameters

Query parameters
Name Description
period*
String
Target time period
Required
limit*
Integer
Set the number of results returned
Required
offset*
Integer
Specify the offset of the first hit to return
Required

Responses


organizerReportSpectatorsGet

Get spectator information


/organizer/report/spectators

Usage and SDK Samples

curl -X GET \
 -H "Accept: application/json" \
 "https://api.tixngo.io/prod/v4.0/organizer/report/spectators?limit=56&paginationKey=paginationKey_example&mobileAppId=mobileAppId_example&lastUpdatedSince=2013-10-20T19:20:30+01:00&lastUpdatedBefore=2013-10-20T19:20:30+01:00"
import com.secutix.tixngo.v4.0.*;
import com.secutix.tixngo.v4.0.auth.*;
import com.secutix.tixngo.v4.0.model.*;
import com.secutix.tixngo.v4.0.api.ReportingApi;

import java.io.File;
import java.util.*;

public class ReportingApiExample {
    public static void main(String[] args) {

        // Create an instance of the API class
        ReportingApi apiInstance = new ReportingApi();
        String mobileAppId = mobileAppId_example; // String | 
        Integer limit = 56; // Integer | 
        String paginationKey = paginationKey_example; // String | 
        Date lastUpdatedSince = 2013-10-20T19:20:30+01:00; // Date | Filter data updated since the given timestamp
        Date lastUpdatedBefore = 2013-10-20T19:20:30+01:00; // Date | Filter data updated before the given timestamp

        try {
            OrganizerReportSpectatorsResponseEntry result = apiInstance.organizerReportSpectatorsGet(mobileAppId, limit, paginationKey, lastUpdatedSince, lastUpdatedBefore);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ReportingApi#organizerReportSpectatorsGet");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();

final String mobileAppId = new String(); // String | 
final Integer limit = new Integer(); // Integer | 
final String paginationKey = new String(); // String | 
final Date lastUpdatedSince = new Date(); // Date | Filter data updated since the given timestamp
final Date lastUpdatedBefore = new Date(); // Date | Filter data updated before the given timestamp

try {
    final result = await api_instance.organizerReportSpectatorsGet(mobileAppId, limit, paginationKey, lastUpdatedSince, lastUpdatedBefore);
    print(result);
} catch (e) {
    print('Exception when calling DefaultApi->organizerReportSpectatorsGet: $e\n');
}

import com.secutix.tixngo.v4.0.api.ReportingApi;

public class ReportingApiExample {
    public static void main(String[] args) {
        ReportingApi apiInstance = new ReportingApi();
        String mobileAppId = mobileAppId_example; // String | 
        Integer limit = 56; // Integer | 
        String paginationKey = paginationKey_example; // String | 
        Date lastUpdatedSince = 2013-10-20T19:20:30+01:00; // Date | Filter data updated since the given timestamp
        Date lastUpdatedBefore = 2013-10-20T19:20:30+01:00; // Date | Filter data updated before the given timestamp

        try {
            OrganizerReportSpectatorsResponseEntry result = apiInstance.organizerReportSpectatorsGet(mobileAppId, limit, paginationKey, lastUpdatedSince, lastUpdatedBefore);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ReportingApi#organizerReportSpectatorsGet");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
ReportingApi *apiInstance = [[ReportingApi alloc] init];
String *mobileAppId = mobileAppId_example; //  (default to null)
Integer *limit = 56; //  (optional) (default to null)
String *paginationKey = paginationKey_example; //  (optional) (default to null)
Date *lastUpdatedSince = 2013-10-20T19:20:30+01:00; // Filter data updated since the given timestamp (optional) (default to null)
Date *lastUpdatedBefore = 2013-10-20T19:20:30+01:00; // Filter data updated before the given timestamp (optional) (default to null)

[apiInstance organizerReportSpectatorsGetWith:mobileAppId
    limit:limit
    paginationKey:paginationKey
    lastUpdatedSince:lastUpdatedSince
    lastUpdatedBefore:lastUpdatedBefore
              completionHandler: ^(OrganizerReportSpectatorsResponseEntry output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var TixngoRestApiBackendReportingApi = require('tixngo_rest_api_backend_reporting_api');

// Create an instance of the API class
var api = new TixngoRestApiBackendReportingApi.ReportingApi()
var mobileAppId = mobileAppId_example; // {String} 
var opts = {
  'limit': 56, // {Integer} 
  'paginationKey': paginationKey_example, // {String} 
  'lastUpdatedSince': 2013-10-20T19:20:30+01:00, // {Date} Filter data updated since the given timestamp
  'lastUpdatedBefore': 2013-10-20T19:20:30+01:00 // {Date} Filter data updated before the given timestamp
};

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.organizerReportSpectatorsGet(mobileAppId, opts, callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

namespace Example
{
    public class organizerReportSpectatorsGetExample
    {
        public void main()
        {

            // Create an instance of the API class
            var apiInstance = new ReportingApi();
            var mobileAppId = mobileAppId_example;  // String |  (default to null)
            var limit = 56;  // Integer |  (optional)  (default to null)
            var paginationKey = paginationKey_example;  // String |  (optional)  (default to null)
            var lastUpdatedSince = 2013-10-20T19:20:30+01:00;  // Date | Filter data updated since the given timestamp (optional)  (default to null)
            var lastUpdatedBefore = 2013-10-20T19:20:30+01:00;  // Date | Filter data updated before the given timestamp (optional)  (default to null)

            try {
                OrganizerReportSpectatorsResponseEntry result = apiInstance.organizerReportSpectatorsGet(mobileAppId, limit, paginationKey, lastUpdatedSince, lastUpdatedBefore);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling ReportingApi.organizerReportSpectatorsGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\ReportingApi();
$mobileAppId = mobileAppId_example; // String | 
$limit = 56; // Integer | 
$paginationKey = paginationKey_example; // String | 
$lastUpdatedSince = 2013-10-20T19:20:30+01:00; // Date | Filter data updated since the given timestamp
$lastUpdatedBefore = 2013-10-20T19:20:30+01:00; // Date | Filter data updated before the given timestamp

try {
    $result = $api_instance->organizerReportSpectatorsGet($mobileAppId, $limit, $paginationKey, $lastUpdatedSince, $lastUpdatedBefore);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling ReportingApi->organizerReportSpectatorsGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::OPenAPIClient::Configuration;
use WWW::OPenAPIClient::ReportingApi;

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::ReportingApi->new();
my $mobileAppId = mobileAppId_example; # String | 
my $limit = 56; # Integer | 
my $paginationKey = paginationKey_example; # String | 
my $lastUpdatedSince = 2013-10-20T19:20:30+01:00; # Date | Filter data updated since the given timestamp
my $lastUpdatedBefore = 2013-10-20T19:20:30+01:00; # Date | Filter data updated before the given timestamp

eval {
    my $result = $api_instance->organizerReportSpectatorsGet(mobileAppId => $mobileAppId, limit => $limit, paginationKey => $paginationKey, lastUpdatedSince => $lastUpdatedSince, lastUpdatedBefore => $lastUpdatedBefore);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling ReportingApi->organizerReportSpectatorsGet: $@\n";
}
from __future__ import print_statement
import time
import openapi_client
from openapi_client.rest import ApiException
from pprint import pprint

# Create an instance of the API class
api_instance = openapi_client.ReportingApi()
mobileAppId = mobileAppId_example # String |  (default to null)
limit = 56 # Integer |  (optional) (default to null)
paginationKey = paginationKey_example # String |  (optional) (default to null)
lastUpdatedSince = 2013-10-20T19:20:30+01:00 # Date | Filter data updated since the given timestamp (optional) (default to null)
lastUpdatedBefore = 2013-10-20T19:20:30+01:00 # Date | Filter data updated before the given timestamp (optional) (default to null)

try:
    api_response = api_instance.organizer_report_spectators_get(mobileAppId, limit=limit, paginationKey=paginationKey, lastUpdatedSince=lastUpdatedSince, lastUpdatedBefore=lastUpdatedBefore)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling ReportingApi->organizerReportSpectatorsGet: %s\n" % e)
extern crate ReportingApi;

pub fn main() {
    let mobileAppId = mobileAppId_example; // String
    let limit = 56; // Integer
    let paginationKey = paginationKey_example; // String
    let lastUpdatedSince = 2013-10-20T19:20:30+01:00; // Date
    let lastUpdatedBefore = 2013-10-20T19:20:30+01:00; // Date

    let mut context = ReportingApi::Context::default();
    let result = client.organizerReportSpectatorsGet(mobileAppId, limit, paginationKey, lastUpdatedSince, lastUpdatedBefore, &context).wait();

    println!("{:?}", result);
}

Scopes

Parameters

Query parameters
Name Description
limit
Integer
paginationKey
String
mobileAppId*
String
Required
lastUpdatedSince
Date (date-time)
Filter data updated since the given timestamp
lastUpdatedBefore
Date (date-time)
Filter data updated before the given timestamp

Responses


organizerReportTicketStatusLogsGet


/organizer/report/ticket-status-logs

Usage and SDK Samples

curl -X GET \
 -H "Accept: application/json" \
 "https://api.tixngo.io/prod/v4.0/organizer/report/ticket-status-logs?mobileAppId=mobileAppId_example&limit=56&paginationKey=paginationKey_example&from=2013-10-20T19:20:30+01:00&to=2013-10-20T19:20:30+01:00&actionNames=&fromStatuses=&toStatuses=&fromOwnerId=fromOwnerId_example&toOwnerId=toOwnerId_example&actors="
import com.secutix.tixngo.v4.0.*;
import com.secutix.tixngo.v4.0.auth.*;
import com.secutix.tixngo.v4.0.model.*;
import com.secutix.tixngo.v4.0.api.ReportingApi;

import java.io.File;
import java.util.*;

public class ReportingApiExample {
    public static void main(String[] args) {

        // Create an instance of the API class
        ReportingApi apiInstance = new ReportingApi();
        String mobileAppId = mobileAppId_example; // String | Mobile app id of ticket
        Date from = 2013-10-20T19:20:30+01:00; // Date | From specific time range.
        Date to = 2013-10-20T19:20:30+01:00; // Date | To specific time range.
        Integer limit = 56; // Integer | Set the number of results returned
        String paginationKey = paginationKey_example; // String | Specify the pagination key to retrieve next page
        array[String] actionNames = ; // array[String] | 
        array[String] fromStatuses = ; // array[String] | 
        array[String] toStatuses = ; // array[String] | 
        String fromOwnerId = fromOwnerId_example; // String | 
        String toOwnerId = toOwnerId_example; // String | 
        array[String] actors = ; // array[String] | 

        try {
            OrganizerReportTicketStatusLogsResponse result = apiInstance.organizerReportTicketStatusLogsGet(mobileAppId, from, to, limit, paginationKey, actionNames, fromStatuses, toStatuses, fromOwnerId, toOwnerId, actors);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ReportingApi#organizerReportTicketStatusLogsGet");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();

final String mobileAppId = new String(); // String | Mobile app id of ticket
final Date from = new Date(); // Date | From specific time range.
final Date to = new Date(); // Date | To specific time range.
final Integer limit = new Integer(); // Integer | Set the number of results returned
final String paginationKey = new String(); // String | Specify the pagination key to retrieve next page
final array[String] actionNames = new array[String](); // array[String] | 
final array[String] fromStatuses = new array[String](); // array[String] | 
final array[String] toStatuses = new array[String](); // array[String] | 
final String fromOwnerId = new String(); // String | 
final String toOwnerId = new String(); // String | 
final array[String] actors = new array[String](); // array[String] | 

try {
    final result = await api_instance.organizerReportTicketStatusLogsGet(mobileAppId, from, to, limit, paginationKey, actionNames, fromStatuses, toStatuses, fromOwnerId, toOwnerId, actors);
    print(result);
} catch (e) {
    print('Exception when calling DefaultApi->organizerReportTicketStatusLogsGet: $e\n');
}

import com.secutix.tixngo.v4.0.api.ReportingApi;

public class ReportingApiExample {
    public static void main(String[] args) {
        ReportingApi apiInstance = new ReportingApi();
        String mobileAppId = mobileAppId_example; // String | Mobile app id of ticket
        Date from = 2013-10-20T19:20:30+01:00; // Date | From specific time range.
        Date to = 2013-10-20T19:20:30+01:00; // Date | To specific time range.
        Integer limit = 56; // Integer | Set the number of results returned
        String paginationKey = paginationKey_example; // String | Specify the pagination key to retrieve next page
        array[String] actionNames = ; // array[String] | 
        array[String] fromStatuses = ; // array[String] | 
        array[String] toStatuses = ; // array[String] | 
        String fromOwnerId = fromOwnerId_example; // String | 
        String toOwnerId = toOwnerId_example; // String | 
        array[String] actors = ; // array[String] | 

        try {
            OrganizerReportTicketStatusLogsResponse result = apiInstance.organizerReportTicketStatusLogsGet(mobileAppId, from, to, limit, paginationKey, actionNames, fromStatuses, toStatuses, fromOwnerId, toOwnerId, actors);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ReportingApi#organizerReportTicketStatusLogsGet");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
ReportingApi *apiInstance = [[ReportingApi alloc] init];
String *mobileAppId = mobileAppId_example; // Mobile app id of ticket (default to null)
Date *from = 2013-10-20T19:20:30+01:00; // From specific time range. (default to null)
Date *to = 2013-10-20T19:20:30+01:00; // To specific time range. (default to null)
Integer *limit = 56; // Set the number of results returned (optional) (default to 1000)
String *paginationKey = paginationKey_example; // Specify the pagination key to retrieve next page (optional) (default to null)
array[String] *actionNames = ; //  (optional) (default to null)
array[String] *fromStatuses = ; //  (optional) (default to null)
array[String] *toStatuses = ; //  (optional) (default to null)
String *fromOwnerId = fromOwnerId_example; //  (optional) (default to null)
String *toOwnerId = toOwnerId_example; //  (optional) (default to null)
array[String] *actors = ; //  (optional) (default to null)

[apiInstance organizerReportTicketStatusLogsGetWith:mobileAppId
    from:from
    to:to
    limit:limit
    paginationKey:paginationKey
    actionNames:actionNames
    fromStatuses:fromStatuses
    toStatuses:toStatuses
    fromOwnerId:fromOwnerId
    toOwnerId:toOwnerId
    actors:actors
              completionHandler: ^(OrganizerReportTicketStatusLogsResponse output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var TixngoRestApiBackendReportingApi = require('tixngo_rest_api_backend_reporting_api');

// Create an instance of the API class
var api = new TixngoRestApiBackendReportingApi.ReportingApi()
var mobileAppId = mobileAppId_example; // {String} Mobile app id of ticket
var from = 2013-10-20T19:20:30+01:00; // {Date} From specific time range.
var to = 2013-10-20T19:20:30+01:00; // {Date} To specific time range.
var opts = {
  'limit': 56, // {Integer} Set the number of results returned
  'paginationKey': paginationKey_example, // {String} Specify the pagination key to retrieve next page
  'actionNames': , // {array[String]} 
  'fromStatuses': , // {array[String]} 
  'toStatuses': , // {array[String]} 
  'fromOwnerId': fromOwnerId_example, // {String} 
  'toOwnerId': toOwnerId_example, // {String} 
  'actors':  // {array[String]} 
};

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.organizerReportTicketStatusLogsGet(mobileAppId, from, to, opts, callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

namespace Example
{
    public class organizerReportTicketStatusLogsGetExample
    {
        public void main()
        {

            // Create an instance of the API class
            var apiInstance = new ReportingApi();
            var mobileAppId = mobileAppId_example;  // String | Mobile app id of ticket (default to null)
            var from = 2013-10-20T19:20:30+01:00;  // Date | From specific time range. (default to null)
            var to = 2013-10-20T19:20:30+01:00;  // Date | To specific time range. (default to null)
            var limit = 56;  // Integer | Set the number of results returned (optional)  (default to 1000)
            var paginationKey = paginationKey_example;  // String | Specify the pagination key to retrieve next page (optional)  (default to null)
            var actionNames = new array[String](); // array[String] |  (optional)  (default to null)
            var fromStatuses = new array[String](); // array[String] |  (optional)  (default to null)
            var toStatuses = new array[String](); // array[String] |  (optional)  (default to null)
            var fromOwnerId = fromOwnerId_example;  // String |  (optional)  (default to null)
            var toOwnerId = toOwnerId_example;  // String |  (optional)  (default to null)
            var actors = new array[String](); // array[String] |  (optional)  (default to null)

            try {
                OrganizerReportTicketStatusLogsResponse result = apiInstance.organizerReportTicketStatusLogsGet(mobileAppId, from, to, limit, paginationKey, actionNames, fromStatuses, toStatuses, fromOwnerId, toOwnerId, actors);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling ReportingApi.organizerReportTicketStatusLogsGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\ReportingApi();
$mobileAppId = mobileAppId_example; // String | Mobile app id of ticket
$from = 2013-10-20T19:20:30+01:00; // Date | From specific time range.
$to = 2013-10-20T19:20:30+01:00; // Date | To specific time range.
$limit = 56; // Integer | Set the number of results returned
$paginationKey = paginationKey_example; // String | Specify the pagination key to retrieve next page
$actionNames = ; // array[String] | 
$fromStatuses = ; // array[String] | 
$toStatuses = ; // array[String] | 
$fromOwnerId = fromOwnerId_example; // String | 
$toOwnerId = toOwnerId_example; // String | 
$actors = ; // array[String] | 

try {
    $result = $api_instance->organizerReportTicketStatusLogsGet($mobileAppId, $from, $to, $limit, $paginationKey, $actionNames, $fromStatuses, $toStatuses, $fromOwnerId, $toOwnerId, $actors);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling ReportingApi->organizerReportTicketStatusLogsGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::OPenAPIClient::Configuration;
use WWW::OPenAPIClient::ReportingApi;

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::ReportingApi->new();
my $mobileAppId = mobileAppId_example; # String | Mobile app id of ticket
my $from = 2013-10-20T19:20:30+01:00; # Date | From specific time range.
my $to = 2013-10-20T19:20:30+01:00; # Date | To specific time range.
my $limit = 56; # Integer | Set the number of results returned
my $paginationKey = paginationKey_example; # String | Specify the pagination key to retrieve next page
my $actionNames = []; # array[String] | 
my $fromStatuses = []; # array[String] | 
my $toStatuses = []; # array[String] | 
my $fromOwnerId = fromOwnerId_example; # String | 
my $toOwnerId = toOwnerId_example; # String | 
my $actors = []; # array[String] | 

eval {
    my $result = $api_instance->organizerReportTicketStatusLogsGet(mobileAppId => $mobileAppId, from => $from, to => $to, limit => $limit, paginationKey => $paginationKey, actionNames => $actionNames, fromStatuses => $fromStatuses, toStatuses => $toStatuses, fromOwnerId => $fromOwnerId, toOwnerId => $toOwnerId, actors => $actors);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling ReportingApi->organizerReportTicketStatusLogsGet: $@\n";
}
from __future__ import print_statement
import time
import openapi_client
from openapi_client.rest import ApiException
from pprint import pprint

# Create an instance of the API class
api_instance = openapi_client.ReportingApi()
mobileAppId = mobileAppId_example # String | Mobile app id of ticket (default to null)
from = 2013-10-20T19:20:30+01:00 # Date | From specific time range. (default to null)
to = 2013-10-20T19:20:30+01:00 # Date | To specific time range. (default to null)
limit = 56 # Integer | Set the number of results returned (optional) (default to 1000)
paginationKey = paginationKey_example # String | Specify the pagination key to retrieve next page (optional) (default to null)
actionNames =  # array[String] |  (optional) (default to null)
fromStatuses =  # array[String] |  (optional) (default to null)
toStatuses =  # array[String] |  (optional) (default to null)
fromOwnerId = fromOwnerId_example # String |  (optional) (default to null)
toOwnerId = toOwnerId_example # String |  (optional) (default to null)
actors =  # array[String] |  (optional) (default to null)

try:
    api_response = api_instance.organizer_report_ticket_status_logs_get(mobileAppId, from, to, limit=limit, paginationKey=paginationKey, actionNames=actionNames, fromStatuses=fromStatuses, toStatuses=toStatuses, fromOwnerId=fromOwnerId, toOwnerId=toOwnerId, actors=actors)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling ReportingApi->organizerReportTicketStatusLogsGet: %s\n" % e)
extern crate ReportingApi;

pub fn main() {
    let mobileAppId = mobileAppId_example; // String
    let from = 2013-10-20T19:20:30+01:00; // Date
    let to = 2013-10-20T19:20:30+01:00; // Date
    let limit = 56; // Integer
    let paginationKey = paginationKey_example; // String
    let actionNames = ; // array[String]
    let fromStatuses = ; // array[String]
    let toStatuses = ; // array[String]
    let fromOwnerId = fromOwnerId_example; // String
    let toOwnerId = toOwnerId_example; // String
    let actors = ; // array[String]

    let mut context = ReportingApi::Context::default();
    let result = client.organizerReportTicketStatusLogsGet(mobileAppId, from, to, limit, paginationKey, actionNames, fromStatuses, toStatuses, fromOwnerId, toOwnerId, actors, &context).wait();

    println!("{:?}", result);
}

Scopes

Parameters

Query parameters
Name Description
mobileAppId*
String
Mobile app id of ticket
Required
limit
Integer
Set the number of results returned
paginationKey
String
Specify the pagination key to retrieve next page
from*
Date (date-time)
From specific time range.
Required
to*
Date (date-time)
To specific time range.
Required
actionNames
array[String]
fromStatuses
array[String]
toStatuses
array[String]
fromOwnerId
String
toOwnerId
String
actors
array[String]

Responses