curl -X GET \
-H "Authorization: [[apiKey]]" \
-H "Accept: application/json" \
"https://api.tixngo.io/prod/_legacy/backoffice/tickets/ticket-details/export?limit=56&offset=56&mobileAppId=mobileAppId_example&ticketId=ticketId_example&eventId=eventId_example&eventIds=&eventName=eventName_example&fileId=fileId_example&status=&activated=true&latestTicketStatusLog=&blockchainStatus=&barcode=barcode_example&spectatorEmail=spectatorEmail_example&spectatorFullName=spectatorFullName_example&taxationNumber=taxationNumber_example&contingentIds=&eventGroupIds="
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;
import java.io.File;
import java.util.*;
public class DefaultApiExample {
public static void main(String[] args) {
ApiClient defaultClient = Configuration.getDefaultApiClient();
// Configure API key authorization: tyxr-organizers
ApiKeyAuth tyxr-organizers = (ApiKeyAuth) defaultClient.getAuthentication("tyxr-organizers");
tyxr-organizers.setApiKey("YOUR API KEY");
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//tyxr-organizers.setApiKeyPrefix("Token");
// Create an instance of the API class
DefaultApi apiInstance = new DefaultApi();
Integer limit = 56; // Integer |
Integer offset = 56; // Integer |
String mobileAppId = mobileAppId_example; // String |
String ticketId = ticketId_example; // String | Filter ticket on given ticketId
String eventId = eventId_example; // String | Filter ticket on given eventId
array[String] eventIds = ; // array[String] |
String eventName = eventName_example; // String |
String fileId = fileId_example; // String |
BackofficeInternalStatus status = ; // BackofficeInternalStatus |
Boolean activated = true; // Boolean |
BackofficeTicketLatestStatus latestTicketStatusLog = ; // BackofficeTicketLatestStatus |
BackofficeBlockchainStatus blockchainStatus = ; // BackofficeBlockchainStatus |
String barcode = barcode_example; // String |
String spectatorEmail = spectatorEmail_example; // String |
String spectatorFullName = spectatorFullName_example; // String | if full name is not blank, ignore first and last name field
String taxationNumber = taxationNumber_example; // String |
array[String] contingentIds = ; // array[String] |
array[String] eventGroupIds = ; // array[String] |
try {
BackofficeTicketsTicketDetailExportGetResponse result = apiInstance.backofficeTicketsTicketDetailsExportGet(limit, offset, mobileAppId, ticketId, eventId, eventIds, eventName, fileId, status, activated, latestTicketStatusLog, blockchainStatus, barcode, spectatorEmail, spectatorFullName, taxationNumber, contingentIds, eventGroupIds);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling DefaultApi#backofficeTicketsTicketDetailsExportGet");
e.printStackTrace();
}
}
}
import 'package:openapi/api.dart';
final api_instance = DefaultApi();
final Integer limit = new Integer(); // Integer |
final Integer offset = new Integer(); // Integer |
final String mobileAppId = new String(); // String |
final String ticketId = new String(); // String | Filter ticket on given ticketId
final String eventId = new String(); // String | Filter ticket on given eventId
final array[String] eventIds = new array[String](); // array[String] |
final String eventName = new String(); // String |
final String fileId = new String(); // String |
final BackofficeInternalStatus status = new BackofficeInternalStatus(); // BackofficeInternalStatus |
final Boolean activated = new Boolean(); // Boolean |
final BackofficeTicketLatestStatus latestTicketStatusLog = new BackofficeTicketLatestStatus(); // BackofficeTicketLatestStatus |
final BackofficeBlockchainStatus blockchainStatus = new BackofficeBlockchainStatus(); // BackofficeBlockchainStatus |
final String barcode = new String(); // String |
final String spectatorEmail = new String(); // String |
final String spectatorFullName = new String(); // String | if full name is not blank, ignore first and last name field
final String taxationNumber = new String(); // String |
final array[String] contingentIds = new array[String](); // array[String] |
final array[String] eventGroupIds = new array[String](); // array[String] |
try {
final result = await api_instance.backofficeTicketsTicketDetailsExportGet(limit, offset, mobileAppId, ticketId, eventId, eventIds, eventName, fileId, status, activated, latestTicketStatusLog, blockchainStatus, barcode, spectatorEmail, spectatorFullName, taxationNumber, contingentIds, eventGroupIds);
print(result);
} catch (e) {
print('Exception when calling DefaultApi->backofficeTicketsTicketDetailsExportGet: $e\n');
}
import com.secutix.tixngo._legacy.api.DefaultApi;
public class DefaultApiExample {
public static void main(String[] args) {
DefaultApi apiInstance = new DefaultApi();
Integer limit = 56; // Integer |
Integer offset = 56; // Integer |
String mobileAppId = mobileAppId_example; // String |
String ticketId = ticketId_example; // String | Filter ticket on given ticketId
String eventId = eventId_example; // String | Filter ticket on given eventId
array[String] eventIds = ; // array[String] |
String eventName = eventName_example; // String |
String fileId = fileId_example; // String |
BackofficeInternalStatus status = ; // BackofficeInternalStatus |
Boolean activated = true; // Boolean |
BackofficeTicketLatestStatus latestTicketStatusLog = ; // BackofficeTicketLatestStatus |
BackofficeBlockchainStatus blockchainStatus = ; // BackofficeBlockchainStatus |
String barcode = barcode_example; // String |
String spectatorEmail = spectatorEmail_example; // String |
String spectatorFullName = spectatorFullName_example; // String | if full name is not blank, ignore first and last name field
String taxationNumber = taxationNumber_example; // String |
array[String] contingentIds = ; // array[String] |
array[String] eventGroupIds = ; // array[String] |
try {
BackofficeTicketsTicketDetailExportGetResponse result = apiInstance.backofficeTicketsTicketDetailsExportGet(limit, offset, mobileAppId, ticketId, eventId, eventIds, eventName, fileId, status, activated, latestTicketStatusLog, blockchainStatus, barcode, spectatorEmail, spectatorFullName, taxationNumber, contingentIds, eventGroupIds);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling DefaultApi#backofficeTicketsTicketDetailsExportGet");
e.printStackTrace();
}
}
}
Configuration *apiConfig = [Configuration sharedConfig];
// Configure API key authorization: (authentication scheme: tyxr-organizers)
[apiConfig setApiKey:@"YOUR_API_KEY" forApiKeyIdentifier:@"Authorization"];
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//[apiConfig setApiKeyPrefix:@"Bearer" forApiKeyIdentifier:@"Authorization"];
// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];
Integer *limit = 56; // (default to null)
Integer *offset = 56; // (default to null)
String *mobileAppId = mobileAppId_example; // (default to null)
String *ticketId = ticketId_example; // Filter ticket on given ticketId (optional) (default to null)
String *eventId = eventId_example; // Filter ticket on given eventId (optional) (default to null)
array[String] *eventIds = ; // (optional) (default to null)
String *eventName = eventName_example; // (optional) (default to null)
String *fileId = fileId_example; // (optional) (default to null)
BackofficeInternalStatus *status = ; // (optional) (default to null)
Boolean *activated = true; // (optional) (default to null)
BackofficeTicketLatestStatus *latestTicketStatusLog = ; // (optional) (default to null)
BackofficeBlockchainStatus *blockchainStatus = ; // (optional) (default to null)
String *barcode = barcode_example; // (optional) (default to null)
String *spectatorEmail = spectatorEmail_example; // (optional) (default to null)
String *spectatorFullName = spectatorFullName_example; // if full name is not blank, ignore first and last name field (optional) (default to null)
String *taxationNumber = taxationNumber_example; // (optional) (default to null)
array[String] *contingentIds = ; // (optional) (default to null)
array[String] *eventGroupIds = ; // (optional) (default to null)
[apiInstance backofficeTicketsTicketDetailsExportGetWith:limit
offset:offset
mobileAppId:mobileAppId
ticketId:ticketId
eventId:eventId
eventIds:eventIds
eventName:eventName
fileId:fileId
status:status
activated:activated
latestTicketStatusLog:latestTicketStatusLog
blockchainStatus:blockchainStatus
barcode:barcode
spectatorEmail:spectatorEmail
spectatorFullName:spectatorFullName
taxationNumber:taxationNumber
contingentIds:contingentIds
eventGroupIds:eventGroupIds
completionHandler: ^(BackofficeTicketsTicketDetailExportGetResponse output, NSError* error) {
if (output) {
NSLog(@"%@", output);
}
if (error) {
NSLog(@"Error: %@", error);
}
}];
var TixngoRestApiBackendBackofficeApi = require('tixngo_rest_api_backend_backoffice_api');
var defaultClient = TixngoRestApiBackendBackofficeApi.ApiClient.instance;
// Configure API key authorization: tyxr-organizers
var tyxr-organizers = defaultClient.authentications['tyxr-organizers'];
tyxr-organizers.apiKey = "YOUR API KEY";
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//tyxr-organizers.apiKeyPrefix['Authorization'] = "Token";
// Create an instance of the API class
var api = new TixngoRestApiBackendBackofficeApi.DefaultApi()
var limit = 56; // {Integer}
var offset = 56; // {Integer}
var mobileAppId = mobileAppId_example; // {String}
var opts = {
'ticketId': ticketId_example, // {String} Filter ticket on given ticketId
'eventId': eventId_example, // {String} Filter ticket on given eventId
'eventIds': , // {array[String]}
'eventName': eventName_example, // {String}
'fileId': fileId_example, // {String}
'status': , // {BackofficeInternalStatus}
'activated': true, // {Boolean}
'latestTicketStatusLog': , // {BackofficeTicketLatestStatus}
'blockchainStatus': , // {BackofficeBlockchainStatus}
'barcode': barcode_example, // {String}
'spectatorEmail': spectatorEmail_example, // {String}
'spectatorFullName': spectatorFullName_example, // {String} if full name is not blank, ignore first and last name field
'taxationNumber': taxationNumber_example, // {String}
'contingentIds': , // {array[String]}
'eventGroupIds': // {array[String]}
};
var callback = function(error, data, response) {
if (error) {
console.error(error);
} else {
console.log('API called successfully. Returned data: ' + data);
}
};
api.backofficeTicketsTicketDetailsExportGet(limit, offset, mobileAppId, opts, callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;
namespace Example
{
public class backofficeTicketsTicketDetailsExportGetExample
{
public void main()
{
// Configure API key authorization: tyxr-organizers
Configuration.Default.ApiKey.Add("Authorization", "YOUR_API_KEY");
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// Configuration.Default.ApiKeyPrefix.Add("Authorization", "Bearer");
// Create an instance of the API class
var apiInstance = new DefaultApi();
var limit = 56; // Integer | (default to null)
var offset = 56; // Integer | (default to null)
var mobileAppId = mobileAppId_example; // String | (default to null)
var ticketId = ticketId_example; // String | Filter ticket on given ticketId (optional) (default to null)
var eventId = eventId_example; // String | Filter ticket on given eventId (optional) (default to null)
var eventIds = new array[String](); // array[String] | (optional) (default to null)
var eventName = eventName_example; // String | (optional) (default to null)
var fileId = fileId_example; // String | (optional) (default to null)
var status = new BackofficeInternalStatus(); // BackofficeInternalStatus | (optional) (default to null)
var activated = true; // Boolean | (optional) (default to null)
var latestTicketStatusLog = new BackofficeTicketLatestStatus(); // BackofficeTicketLatestStatus | (optional) (default to null)
var blockchainStatus = new BackofficeBlockchainStatus(); // BackofficeBlockchainStatus | (optional) (default to null)
var barcode = barcode_example; // String | (optional) (default to null)
var spectatorEmail = spectatorEmail_example; // String | (optional) (default to null)
var spectatorFullName = spectatorFullName_example; // String | if full name is not blank, ignore first and last name field (optional) (default to null)
var taxationNumber = taxationNumber_example; // String | (optional) (default to null)
var contingentIds = new array[String](); // array[String] | (optional) (default to null)
var eventGroupIds = new array[String](); // array[String] | (optional) (default to null)
try {
BackofficeTicketsTicketDetailExportGetResponse result = apiInstance.backofficeTicketsTicketDetailsExportGet(limit, offset, mobileAppId, ticketId, eventId, eventIds, eventName, fileId, status, activated, latestTicketStatusLog, blockchainStatus, barcode, spectatorEmail, spectatorFullName, taxationNumber, contingentIds, eventGroupIds);
Debug.WriteLine(result);
} catch (Exception e) {
Debug.Print("Exception when calling DefaultApi.backofficeTicketsTicketDetailsExportGet: " + e.Message );
}
}
}
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure API key authorization: tyxr-organizers
OpenAPITools\Client\Configuration::getDefaultConfiguration()->setApiKey('Authorization', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// OpenAPITools\Client\Configuration::getDefaultConfiguration()->setApiKeyPrefix('Authorization', 'Bearer');
// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();
$limit = 56; // Integer |
$offset = 56; // Integer |
$mobileAppId = mobileAppId_example; // String |
$ticketId = ticketId_example; // String | Filter ticket on given ticketId
$eventId = eventId_example; // String | Filter ticket on given eventId
$eventIds = ; // array[String] |
$eventName = eventName_example; // String |
$fileId = fileId_example; // String |
$status = ; // BackofficeInternalStatus |
$activated = true; // Boolean |
$latestTicketStatusLog = ; // BackofficeTicketLatestStatus |
$blockchainStatus = ; // BackofficeBlockchainStatus |
$barcode = barcode_example; // String |
$spectatorEmail = spectatorEmail_example; // String |
$spectatorFullName = spectatorFullName_example; // String | if full name is not blank, ignore first and last name field
$taxationNumber = taxationNumber_example; // String |
$contingentIds = ; // array[String] |
$eventGroupIds = ; // array[String] |
try {
$result = $api_instance->backofficeTicketsTicketDetailsExportGet($limit, $offset, $mobileAppId, $ticketId, $eventId, $eventIds, $eventName, $fileId, $status, $activated, $latestTicketStatusLog, $blockchainStatus, $barcode, $spectatorEmail, $spectatorFullName, $taxationNumber, $contingentIds, $eventGroupIds);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling DefaultApi->backofficeTicketsTicketDetailsExportGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::OPenAPIClient::Configuration;
use WWW::OPenAPIClient::DefaultApi;
# Configure API key authorization: tyxr-organizers
$WWW::OPenAPIClient::Configuration::api_key->{'Authorization'} = 'YOUR_API_KEY';
# uncomment below to setup prefix (e.g. Bearer) for API key, if needed
#$WWW::OPenAPIClient::Configuration::api_key_prefix->{'Authorization'} = "Bearer";
# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DefaultApi->new();
my $limit = 56; # Integer |
my $offset = 56; # Integer |
my $mobileAppId = mobileAppId_example; # String |
my $ticketId = ticketId_example; # String | Filter ticket on given ticketId
my $eventId = eventId_example; # String | Filter ticket on given eventId
my $eventIds = []; # array[String] |
my $eventName = eventName_example; # String |
my $fileId = fileId_example; # String |
my $status = ; # BackofficeInternalStatus |
my $activated = true; # Boolean |
my $latestTicketStatusLog = ; # BackofficeTicketLatestStatus |
my $blockchainStatus = ; # BackofficeBlockchainStatus |
my $barcode = barcode_example; # String |
my $spectatorEmail = spectatorEmail_example; # String |
my $spectatorFullName = spectatorFullName_example; # String | if full name is not blank, ignore first and last name field
my $taxationNumber = taxationNumber_example; # String |
my $contingentIds = []; # array[String] |
my $eventGroupIds = []; # array[String] |
eval {
my $result = $api_instance->backofficeTicketsTicketDetailsExportGet(limit => $limit, offset => $offset, mobileAppId => $mobileAppId, ticketId => $ticketId, eventId => $eventId, eventIds => $eventIds, eventName => $eventName, fileId => $fileId, status => $status, activated => $activated, latestTicketStatusLog => $latestTicketStatusLog, blockchainStatus => $blockchainStatus, barcode => $barcode, spectatorEmail => $spectatorEmail, spectatorFullName => $spectatorFullName, taxationNumber => $taxationNumber, contingentIds => $contingentIds, eventGroupIds => $eventGroupIds);
print Dumper($result);
};
if ($@) {
warn "Exception when calling DefaultApi->backofficeTicketsTicketDetailsExportGet: $@\n";
}
from __future__ import print_statement
import time
import openapi_client
from openapi_client.rest import ApiException
from pprint import pprint
# Configure API key authorization: tyxr-organizers
openapi_client.configuration.api_key['Authorization'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# openapi_client.configuration.api_key_prefix['Authorization'] = 'Bearer'
# Create an instance of the API class
api_instance = openapi_client.DefaultApi()
limit = 56 # Integer | (default to null)
offset = 56 # Integer | (default to null)
mobileAppId = mobileAppId_example # String | (default to null)
ticketId = ticketId_example # String | Filter ticket on given ticketId (optional) (default to null)
eventId = eventId_example # String | Filter ticket on given eventId (optional) (default to null)
eventIds = # array[String] | (optional) (default to null)
eventName = eventName_example # String | (optional) (default to null)
fileId = fileId_example # String | (optional) (default to null)
status = # BackofficeInternalStatus | (optional) (default to null)
activated = true # Boolean | (optional) (default to null)
latestTicketStatusLog = # BackofficeTicketLatestStatus | (optional) (default to null)
blockchainStatus = # BackofficeBlockchainStatus | (optional) (default to null)
barcode = barcode_example # String | (optional) (default to null)
spectatorEmail = spectatorEmail_example # String | (optional) (default to null)
spectatorFullName = spectatorFullName_example # String | if full name is not blank, ignore first and last name field (optional) (default to null)
taxationNumber = taxationNumber_example # String | (optional) (default to null)
contingentIds = # array[String] | (optional) (default to null)
eventGroupIds = # array[String] | (optional) (default to null)
try:
api_response = api_instance.backoffice_tickets_ticket_details_export_get(limit, offset, mobileAppId, ticketId=ticketId, eventId=eventId, eventIds=eventIds, eventName=eventName, fileId=fileId, status=status, activated=activated, latestTicketStatusLog=latestTicketStatusLog, blockchainStatus=blockchainStatus, barcode=barcode, spectatorEmail=spectatorEmail, spectatorFullName=spectatorFullName, taxationNumber=taxationNumber, contingentIds=contingentIds, eventGroupIds=eventGroupIds)
pprint(api_response)
except ApiException as e:
print("Exception when calling DefaultApi->backofficeTicketsTicketDetailsExportGet: %s\n" % e)
extern crate DefaultApi;
pub fn main() {
let limit = 56; // Integer
let offset = 56; // Integer
let mobileAppId = mobileAppId_example; // String
let ticketId = ticketId_example; // String
let eventId = eventId_example; // String
let eventIds = ; // array[String]
let eventName = eventName_example; // String
let fileId = fileId_example; // String
let status = ; // BackofficeInternalStatus
let activated = true; // Boolean
let latestTicketStatusLog = ; // BackofficeTicketLatestStatus
let blockchainStatus = ; // BackofficeBlockchainStatus
let barcode = barcode_example; // String
let spectatorEmail = spectatorEmail_example; // String
let spectatorFullName = spectatorFullName_example; // String
let taxationNumber = taxationNumber_example; // String
let contingentIds = ; // array[String]
let eventGroupIds = ; // array[String]
let mut context = DefaultApi::Context::default();
let result = client.backofficeTicketsTicketDetailsExportGet(limit, offset, mobileAppId, ticketId, eventId, eventIds, eventName, fileId, status, activated, latestTicketStatusLog, blockchainStatus, barcode, spectatorEmail, spectatorFullName, taxationNumber, contingentIds, eventGroupIds, &context).wait();
println!("{:?}", result);
}