TIXNGO REST API backend-organizer-api

Default

organizerAccessValidationPost

Validate the qrcode passed in parameter according to the chosen mode


/organizer/access/validation

Usage and SDK Samples

curl -X POST \
 -H "Accept: application/json" \
 -H "Content-Type: application/json" \
 "https://api.tixngo.io/prod/v1.0/organizer/access/validation" \
 -d '{
  "barcode" : "barcode",
  "validationMode" : "tixngo-v1"
}'
import com.secutix.tixngo.v1.0.*;
import com.secutix.tixngo.v1.0.auth.*;
import com.secutix.tixngo.v1.0.model.*;
import com.secutix.tixngo.v1.0.api.DefaultApi;

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

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

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();
        OrganizerAccessValidationRequest organizerAccessValidationRequest = ; // OrganizerAccessValidationRequest | 

        try {
            OrganizerAccessValidationResponse result = apiInstance.organizerAccessValidationPost(organizerAccessValidationRequest);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerAccessValidationPost");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();

final OrganizerAccessValidationRequest organizerAccessValidationRequest = new OrganizerAccessValidationRequest(); // OrganizerAccessValidationRequest | 

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

import com.secutix.tixngo.v1.0.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        OrganizerAccessValidationRequest organizerAccessValidationRequest = ; // OrganizerAccessValidationRequest | 

        try {
            OrganizerAccessValidationResponse result = apiInstance.organizerAccessValidationPost(organizerAccessValidationRequest);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerAccessValidationPost");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];
OrganizerAccessValidationRequest *organizerAccessValidationRequest = ; //  (optional)

[apiInstance organizerAccessValidationPostWith:organizerAccessValidationRequest
              completionHandler: ^(OrganizerAccessValidationResponse output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var TixngoRestApiBackendOrganizerApi = require('tixngo_rest_api_backend_organizer_api');

// Create an instance of the API class
var api = new TixngoRestApiBackendOrganizerApi.DefaultApi()
var opts = {
  'organizerAccessValidationRequest':  // {OrganizerAccessValidationRequest} 
};

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

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

            // Create an instance of the API class
            var apiInstance = new DefaultApi();
            var organizerAccessValidationRequest = new OrganizerAccessValidationRequest(); // OrganizerAccessValidationRequest |  (optional) 

            try {
                OrganizerAccessValidationResponse result = apiInstance.organizerAccessValidationPost(organizerAccessValidationRequest);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerAccessValidationPost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();
$organizerAccessValidationRequest = ; // OrganizerAccessValidationRequest | 

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

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DefaultApi->new();
my $organizerAccessValidationRequest = WWW::OPenAPIClient::Object::OrganizerAccessValidationRequest->new(); # OrganizerAccessValidationRequest | 

eval {
    my $result = $api_instance->organizerAccessValidationPost(organizerAccessValidationRequest => $organizerAccessValidationRequest);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerAccessValidationPost: $@\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.DefaultApi()
organizerAccessValidationRequest =  # OrganizerAccessValidationRequest |  (optional)

try:
    api_response = api_instance.organizer_access_validation_post(organizerAccessValidationRequest=organizerAccessValidationRequest)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerAccessValidationPost: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let organizerAccessValidationRequest = ; // OrganizerAccessValidationRequest

    let mut context = DefaultApi::Context::default();
    let result = client.organizerAccessValidationPost(organizerAccessValidationRequest, &context).wait();

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

Scopes

Parameters

Body parameters
Name Description
organizerAccessValidationRequest

Responses


organizerAccountDelete

Delete the given operator account


/organizer/account

Usage and SDK Samples

curl -X DELETE \
 "https://api.tixngo.io/prod/v1.0/organizer/account?email=email_example"
import com.secutix.tixngo.v1.0.*;
import com.secutix.tixngo.v1.0.auth.*;
import com.secutix.tixngo.v1.0.model.*;
import com.secutix.tixngo.v1.0.api.DefaultApi;

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

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

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();
        String email = email_example; // String | 

        try {
            apiInstance.organizerAccountDelete(email);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerAccountDelete");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();

final String email = new String(); // String | 

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

import com.secutix.tixngo.v1.0.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        String email = email_example; // String | 

        try {
            apiInstance.organizerAccountDelete(email);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerAccountDelete");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];
String *email = email_example; //  (default to null)

[apiInstance organizerAccountDeleteWith:email
              completionHandler: ^(NSError* error) {
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var TixngoRestApiBackendOrganizerApi = require('tixngo_rest_api_backend_organizer_api');

// Create an instance of the API class
var api = new TixngoRestApiBackendOrganizerApi.DefaultApi()
var email = email_example; // {String} 

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

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

            // Create an instance of the API class
            var apiInstance = new DefaultApi();
            var email = email_example;  // String |  (default to null)

            try {
                apiInstance.organizerAccountDelete(email);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerAccountDelete: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();
$email = email_example; // String | 

try {
    $api_instance->organizerAccountDelete($email);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerAccountDelete: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::OPenAPIClient::Configuration;
use WWW::OPenAPIClient::DefaultApi;

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DefaultApi->new();
my $email = email_example; # String | 

eval {
    $api_instance->organizerAccountDelete(email => $email);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerAccountDelete: $@\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.DefaultApi()
email = email_example # String |  (default to null)

try:
    api_instance.organizer_account_delete(email)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerAccountDelete: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let email = email_example; // String

    let mut context = DefaultApi::Context::default();
    let result = client.organizerAccountDelete(email, &context).wait();

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

Scopes

Parameters

Query parameters
Name Description
email*
String
Required

Responses


organizerAccountPost

Request a new operator account with given role


/organizer/account

Usage and SDK Samples

curl -X POST \
 -H "Accept: application/json" \
 -H "Content-Type: application/json" \
 "https://api.tixngo.io/prod/v1.0/organizer/account" \
 -d '{
  "password" : "password",
  "role" : "ADMIN",
  "mfaEnabled" : false,
  "email" : "email"
}'
import com.secutix.tixngo.v1.0.*;
import com.secutix.tixngo.v1.0.auth.*;
import com.secutix.tixngo.v1.0.model.*;
import com.secutix.tixngo.v1.0.api.DefaultApi;

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

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

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();
        OrganizerAccountRequest organizerAccountRequest = ; // OrganizerAccountRequest | 

        try {
            OrganizerAccount result = apiInstance.organizerAccountPost(organizerAccountRequest);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerAccountPost");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();

final OrganizerAccountRequest organizerAccountRequest = new OrganizerAccountRequest(); // OrganizerAccountRequest | 

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

import com.secutix.tixngo.v1.0.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        OrganizerAccountRequest organizerAccountRequest = ; // OrganizerAccountRequest | 

        try {
            OrganizerAccount result = apiInstance.organizerAccountPost(organizerAccountRequest);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerAccountPost");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];
OrganizerAccountRequest *organizerAccountRequest = ; //  (optional)

[apiInstance organizerAccountPostWith:organizerAccountRequest
              completionHandler: ^(OrganizerAccount output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var TixngoRestApiBackendOrganizerApi = require('tixngo_rest_api_backend_organizer_api');

// Create an instance of the API class
var api = new TixngoRestApiBackendOrganizerApi.DefaultApi()
var opts = {
  'organizerAccountRequest':  // {OrganizerAccountRequest} 
};

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

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

            // Create an instance of the API class
            var apiInstance = new DefaultApi();
            var organizerAccountRequest = new OrganizerAccountRequest(); // OrganizerAccountRequest |  (optional) 

            try {
                OrganizerAccount result = apiInstance.organizerAccountPost(organizerAccountRequest);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerAccountPost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();
$organizerAccountRequest = ; // OrganizerAccountRequest | 

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

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DefaultApi->new();
my $organizerAccountRequest = WWW::OPenAPIClient::Object::OrganizerAccountRequest->new(); # OrganizerAccountRequest | 

eval {
    my $result = $api_instance->organizerAccountPost(organizerAccountRequest => $organizerAccountRequest);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerAccountPost: $@\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.DefaultApi()
organizerAccountRequest =  # OrganizerAccountRequest |  (optional)

try:
    api_response = api_instance.organizer_account_post(organizerAccountRequest=organizerAccountRequest)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerAccountPost: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let organizerAccountRequest = ; // OrganizerAccountRequest

    let mut context = DefaultApi::Context::default();
    let result = client.organizerAccountPost(organizerAccountRequest, &context).wait();

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

Scopes

Parameters

Body parameters
Name Description
organizerAccountRequest

Responses


organizerAccountsAccountEmailMfaInitTotpPost

Get TOTP Token on for a user, return the token for registering QR code


/organizer/accounts/{account-email}/mfa/init-totp

Usage and SDK Samples

curl -X POST \
 -H "Accept: application/json" \
 -H "Content-Type: application/json" \
 "https://api.tixngo.io/prod/v1.0/organizer/accounts/{account-email}/mfa/init-totp" \
 -d '{
  "accessToken" : "accessToken"
}'
import com.secutix.tixngo.v1.0.*;
import com.secutix.tixngo.v1.0.auth.*;
import com.secutix.tixngo.v1.0.model.*;
import com.secutix.tixngo.v1.0.api.DefaultApi;

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

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

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();
        String accountEmail = accountEmail_example; // String | 
        OrganizerMFAInitRequest organizerMFAInitRequest = ; // OrganizerMFAInitRequest | 

        try {
            OrganizerMFAInitResponse result = apiInstance.organizerAccountsAccountEmailMfaInitTotpPost(accountEmail, organizerMFAInitRequest);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerAccountsAccountEmailMfaInitTotpPost");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();

final String accountEmail = new String(); // String | 
final OrganizerMFAInitRequest organizerMFAInitRequest = new OrganizerMFAInitRequest(); // OrganizerMFAInitRequest | 

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

import com.secutix.tixngo.v1.0.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        String accountEmail = accountEmail_example; // String | 
        OrganizerMFAInitRequest organizerMFAInitRequest = ; // OrganizerMFAInitRequest | 

        try {
            OrganizerMFAInitResponse result = apiInstance.organizerAccountsAccountEmailMfaInitTotpPost(accountEmail, organizerMFAInitRequest);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerAccountsAccountEmailMfaInitTotpPost");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];
String *accountEmail = accountEmail_example; //  (default to null)
OrganizerMFAInitRequest *organizerMFAInitRequest = ; //  (optional)

[apiInstance organizerAccountsAccountEmailMfaInitTotpPostWith:accountEmail
    organizerMFAInitRequest:organizerMFAInitRequest
              completionHandler: ^(OrganizerMFAInitResponse output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var TixngoRestApiBackendOrganizerApi = require('tixngo_rest_api_backend_organizer_api');

// Create an instance of the API class
var api = new TixngoRestApiBackendOrganizerApi.DefaultApi()
var accountEmail = accountEmail_example; // {String} 
var opts = {
  'organizerMFAInitRequest':  // {OrganizerMFAInitRequest} 
};

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

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

            // Create an instance of the API class
            var apiInstance = new DefaultApi();
            var accountEmail = accountEmail_example;  // String |  (default to null)
            var organizerMFAInitRequest = new OrganizerMFAInitRequest(); // OrganizerMFAInitRequest |  (optional) 

            try {
                OrganizerMFAInitResponse result = apiInstance.organizerAccountsAccountEmailMfaInitTotpPost(accountEmail, organizerMFAInitRequest);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerAccountsAccountEmailMfaInitTotpPost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();
$accountEmail = accountEmail_example; // String | 
$organizerMFAInitRequest = ; // OrganizerMFAInitRequest | 

try {
    $result = $api_instance->organizerAccountsAccountEmailMfaInitTotpPost($accountEmail, $organizerMFAInitRequest);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerAccountsAccountEmailMfaInitTotpPost: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::OPenAPIClient::Configuration;
use WWW::OPenAPIClient::DefaultApi;

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DefaultApi->new();
my $accountEmail = accountEmail_example; # String | 
my $organizerMFAInitRequest = WWW::OPenAPIClient::Object::OrganizerMFAInitRequest->new(); # OrganizerMFAInitRequest | 

eval {
    my $result = $api_instance->organizerAccountsAccountEmailMfaInitTotpPost(accountEmail => $accountEmail, organizerMFAInitRequest => $organizerMFAInitRequest);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerAccountsAccountEmailMfaInitTotpPost: $@\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.DefaultApi()
accountEmail = accountEmail_example # String |  (default to null)
organizerMFAInitRequest =  # OrganizerMFAInitRequest |  (optional)

try:
    api_response = api_instance.organizer_accounts_account_email_mfa_init_totp_post(accountEmail, organizerMFAInitRequest=organizerMFAInitRequest)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerAccountsAccountEmailMfaInitTotpPost: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let accountEmail = accountEmail_example; // String
    let organizerMFAInitRequest = ; // OrganizerMFAInitRequest

    let mut context = DefaultApi::Context::default();
    let result = client.organizerAccountsAccountEmailMfaInitTotpPost(accountEmail, organizerMFAInitRequest, &context).wait();

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

Scopes

Parameters

Path parameters
Name Description
account-email*
String
Required
Body parameters
Name Description
organizerMFAInitRequest

Responses


organizerAccountsAccountEmailMfaVerifyTotpPost

Setup TOTP Token on for a user, return the token for registering QR code


/organizer/accounts/{account-email}/mfa/verify-totp

Usage and SDK Samples

curl -X POST \
 -H "Accept: application/json" \
 -H "Content-Type: application/json" \
 "https://api.tixngo.io/prod/v1.0/organizer/accounts/{account-email}/mfa/verify-totp" \
 -d '{
  "code" : "code",
  "accessToken" : "accessToken"
}'
import com.secutix.tixngo.v1.0.*;
import com.secutix.tixngo.v1.0.auth.*;
import com.secutix.tixngo.v1.0.model.*;
import com.secutix.tixngo.v1.0.api.DefaultApi;

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

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

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();
        String accountEmail = accountEmail_example; // String | 
        OrganizerMFASignInRequest organizerMFASignInRequest = ; // OrganizerMFASignInRequest | 

        try {
            OrganizerMFASignInResponse result = apiInstance.organizerAccountsAccountEmailMfaVerifyTotpPost(accountEmail, organizerMFASignInRequest);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerAccountsAccountEmailMfaVerifyTotpPost");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();

final String accountEmail = new String(); // String | 
final OrganizerMFASignInRequest organizerMFASignInRequest = new OrganizerMFASignInRequest(); // OrganizerMFASignInRequest | 

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

import com.secutix.tixngo.v1.0.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        String accountEmail = accountEmail_example; // String | 
        OrganizerMFASignInRequest organizerMFASignInRequest = ; // OrganizerMFASignInRequest | 

        try {
            OrganizerMFASignInResponse result = apiInstance.organizerAccountsAccountEmailMfaVerifyTotpPost(accountEmail, organizerMFASignInRequest);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerAccountsAccountEmailMfaVerifyTotpPost");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];
String *accountEmail = accountEmail_example; //  (default to null)
OrganizerMFASignInRequest *organizerMFASignInRequest = ; //  (optional)

[apiInstance organizerAccountsAccountEmailMfaVerifyTotpPostWith:accountEmail
    organizerMFASignInRequest:organizerMFASignInRequest
              completionHandler: ^(OrganizerMFASignInResponse output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var TixngoRestApiBackendOrganizerApi = require('tixngo_rest_api_backend_organizer_api');

// Create an instance of the API class
var api = new TixngoRestApiBackendOrganizerApi.DefaultApi()
var accountEmail = accountEmail_example; // {String} 
var opts = {
  'organizerMFASignInRequest':  // {OrganizerMFASignInRequest} 
};

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

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

            // Create an instance of the API class
            var apiInstance = new DefaultApi();
            var accountEmail = accountEmail_example;  // String |  (default to null)
            var organizerMFASignInRequest = new OrganizerMFASignInRequest(); // OrganizerMFASignInRequest |  (optional) 

            try {
                OrganizerMFASignInResponse result = apiInstance.organizerAccountsAccountEmailMfaVerifyTotpPost(accountEmail, organizerMFASignInRequest);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerAccountsAccountEmailMfaVerifyTotpPost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();
$accountEmail = accountEmail_example; // String | 
$organizerMFASignInRequest = ; // OrganizerMFASignInRequest | 

try {
    $result = $api_instance->organizerAccountsAccountEmailMfaVerifyTotpPost($accountEmail, $organizerMFASignInRequest);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerAccountsAccountEmailMfaVerifyTotpPost: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::OPenAPIClient::Configuration;
use WWW::OPenAPIClient::DefaultApi;

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DefaultApi->new();
my $accountEmail = accountEmail_example; # String | 
my $organizerMFASignInRequest = WWW::OPenAPIClient::Object::OrganizerMFASignInRequest->new(); # OrganizerMFASignInRequest | 

eval {
    my $result = $api_instance->organizerAccountsAccountEmailMfaVerifyTotpPost(accountEmail => $accountEmail, organizerMFASignInRequest => $organizerMFASignInRequest);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerAccountsAccountEmailMfaVerifyTotpPost: $@\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.DefaultApi()
accountEmail = accountEmail_example # String |  (default to null)
organizerMFASignInRequest =  # OrganizerMFASignInRequest |  (optional)

try:
    api_response = api_instance.organizer_accounts_account_email_mfa_verify_totp_post(accountEmail, organizerMFASignInRequest=organizerMFASignInRequest)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerAccountsAccountEmailMfaVerifyTotpPost: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let accountEmail = accountEmail_example; // String
    let organizerMFASignInRequest = ; // OrganizerMFASignInRequest

    let mut context = DefaultApi::Context::default();
    let result = client.organizerAccountsAccountEmailMfaVerifyTotpPost(accountEmail, organizerMFASignInRequest, &context).wait();

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

Scopes

Parameters

Path parameters
Name Description
account-email*
String
Required
Body parameters
Name Description
organizerMFASignInRequest

Responses


organizerAccountsAccountEmailPut

Update an account


/organizer/accounts/{account-email}

Usage and SDK Samples

curl -X PUT \
 -H "Accept: application/json" \
 -H "Content-Type: application/json" \
 "https://api.tixngo.io/prod/v1.0/organizer/accounts/{account-email}" \
 -d '{
  "requester" : "requester",
  "role" : "ADMIN",
  "newPassword" : "newPassword",
  "mfaEnabled" : true,
  "forceReset" : false
}'
import com.secutix.tixngo.v1.0.*;
import com.secutix.tixngo.v1.0.auth.*;
import com.secutix.tixngo.v1.0.model.*;
import com.secutix.tixngo.v1.0.api.DefaultApi;

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

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

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();
        String accountEmail = accountEmail_example; // String | 
        OrganizerAccountUpdateRequest organizerAccountUpdateRequest = ; // OrganizerAccountUpdateRequest | 

        try {
            OrganizerAccount result = apiInstance.organizerAccountsAccountEmailPut(accountEmail, organizerAccountUpdateRequest);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerAccountsAccountEmailPut");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();

final String accountEmail = new String(); // String | 
final OrganizerAccountUpdateRequest organizerAccountUpdateRequest = new OrganizerAccountUpdateRequest(); // OrganizerAccountUpdateRequest | 

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

import com.secutix.tixngo.v1.0.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        String accountEmail = accountEmail_example; // String | 
        OrganizerAccountUpdateRequest organizerAccountUpdateRequest = ; // OrganizerAccountUpdateRequest | 

        try {
            OrganizerAccount result = apiInstance.organizerAccountsAccountEmailPut(accountEmail, organizerAccountUpdateRequest);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerAccountsAccountEmailPut");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];
String *accountEmail = accountEmail_example; //  (default to null)
OrganizerAccountUpdateRequest *organizerAccountUpdateRequest = ; //  (optional)

[apiInstance organizerAccountsAccountEmailPutWith:accountEmail
    organizerAccountUpdateRequest:organizerAccountUpdateRequest
              completionHandler: ^(OrganizerAccount output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var TixngoRestApiBackendOrganizerApi = require('tixngo_rest_api_backend_organizer_api');

// Create an instance of the API class
var api = new TixngoRestApiBackendOrganizerApi.DefaultApi()
var accountEmail = accountEmail_example; // {String} 
var opts = {
  'organizerAccountUpdateRequest':  // {OrganizerAccountUpdateRequest} 
};

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

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

            // Create an instance of the API class
            var apiInstance = new DefaultApi();
            var accountEmail = accountEmail_example;  // String |  (default to null)
            var organizerAccountUpdateRequest = new OrganizerAccountUpdateRequest(); // OrganizerAccountUpdateRequest |  (optional) 

            try {
                OrganizerAccount result = apiInstance.organizerAccountsAccountEmailPut(accountEmail, organizerAccountUpdateRequest);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerAccountsAccountEmailPut: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();
$accountEmail = accountEmail_example; // String | 
$organizerAccountUpdateRequest = ; // OrganizerAccountUpdateRequest | 

try {
    $result = $api_instance->organizerAccountsAccountEmailPut($accountEmail, $organizerAccountUpdateRequest);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerAccountsAccountEmailPut: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::OPenAPIClient::Configuration;
use WWW::OPenAPIClient::DefaultApi;

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DefaultApi->new();
my $accountEmail = accountEmail_example; # String | 
my $organizerAccountUpdateRequest = WWW::OPenAPIClient::Object::OrganizerAccountUpdateRequest->new(); # OrganizerAccountUpdateRequest | 

eval {
    my $result = $api_instance->organizerAccountsAccountEmailPut(accountEmail => $accountEmail, organizerAccountUpdateRequest => $organizerAccountUpdateRequest);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerAccountsAccountEmailPut: $@\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.DefaultApi()
accountEmail = accountEmail_example # String |  (default to null)
organizerAccountUpdateRequest =  # OrganizerAccountUpdateRequest |  (optional)

try:
    api_response = api_instance.organizer_accounts_account_email_put(accountEmail, organizerAccountUpdateRequest=organizerAccountUpdateRequest)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerAccountsAccountEmailPut: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let accountEmail = accountEmail_example; // String
    let organizerAccountUpdateRequest = ; // OrganizerAccountUpdateRequest

    let mut context = DefaultApi::Context::default();
    let result = client.organizerAccountsAccountEmailPut(accountEmail, organizerAccountUpdateRequest, &context).wait();

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

Scopes

Parameters

Path parameters
Name Description
account-email*
String
Required
Body parameters
Name Description
organizerAccountUpdateRequest

Responses


organizerAccountsGet

Retrieve the requester accounts as list


/organizer/accounts

Usage and SDK Samples

curl -X GET \
 -H "Accept: application/json" \
 "https://api.tixngo.io/prod/v1.0/organizer/accounts"
import com.secutix.tixngo.v1.0.*;
import com.secutix.tixngo.v1.0.auth.*;
import com.secutix.tixngo.v1.0.model.*;
import com.secutix.tixngo.v1.0.api.DefaultApi;

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

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

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();

        try {
            array[OrganizerAccount] result = apiInstance.organizerAccountsGet();
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerAccountsGet");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();


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

import com.secutix.tixngo.v1.0.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();

        try {
            array[OrganizerAccount] result = apiInstance.organizerAccountsGet();
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerAccountsGet");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];

[apiInstance organizerAccountsGetWithCompletionHandler: 
              ^(array[OrganizerAccount] output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var TixngoRestApiBackendOrganizerApi = require('tixngo_rest_api_backend_organizer_api');

// Create an instance of the API class
var api = new TixngoRestApiBackendOrganizerApi.DefaultApi()
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.organizerAccountsGet(callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

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

            // Create an instance of the API class
            var apiInstance = new DefaultApi();

            try {
                array[OrganizerAccount] result = apiInstance.organizerAccountsGet();
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerAccountsGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();

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

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DefaultApi->new();

eval {
    my $result = $api_instance->organizerAccountsGet();
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerAccountsGet: $@\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.DefaultApi()

try:
    api_response = api_instance.organizer_accounts_get()
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerAccountsGet: %s\n" % e)
extern crate DefaultApi;

pub fn main() {

    let mut context = DefaultApi::Context::default();
    let result = client.organizerAccountsGet(&context).wait();

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

Scopes

Parameters

Responses


organizerActivationGet

[OPERATOR] Ask the backend to check for organizer activation status.


/organizer/activation

Usage and SDK Samples

curl -X GET \
-H "Authorization: [[apiKey]]" \
 -H "Accept: application/json" \
 "https://api.tixngo.io/prod/v1.0/organizer/activation"
import com.secutix.tixngo.v1.0.*;
import com.secutix.tixngo.v1.0.auth.*;
import com.secutix.tixngo.v1.0.model.*;
import com.secutix.tixngo.v1.0.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();

        try {
            OrganizerActivationResponse result = apiInstance.organizerActivationGet();
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerActivationGet");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();


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

import com.secutix.tixngo.v1.0.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();

        try {
            OrganizerActivationResponse result = apiInstance.organizerActivationGet();
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerActivationGet");
            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];

[apiInstance organizerActivationGetWithCompletionHandler: 
              ^(OrganizerActivationResponse output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var TixngoRestApiBackendOrganizerApi = require('tixngo_rest_api_backend_organizer_api');
var defaultClient = TixngoRestApiBackendOrganizerApi.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 TixngoRestApiBackendOrganizerApi.DefaultApi()
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.organizerActivationGet(callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

namespace Example
{
    public class organizerActivationGetExample
    {
        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();

            try {
                OrganizerActivationResponse result = apiInstance.organizerActivationGet();
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerActivationGet: " + 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();

try {
    $result = $api_instance->organizerActivationGet();
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerActivationGet: ', $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();

eval {
    my $result = $api_instance->organizerActivationGet();
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerActivationGet: $@\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()

try:
    api_response = api_instance.organizer_activation_get()
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerActivationGet: %s\n" % e)
extern crate DefaultApi;

pub fn main() {

    let mut context = DefaultApi::Context::default();
    let result = client.organizerActivationGet(&context).wait();

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

Scopes

Parameters

Responses


organizerApikeyGet

[OPERATOR] Get the apikey for the current organizer. If the key does not exist, this method implicitly creates one.


/organizer/apikey

Usage and SDK Samples

curl -X GET \
-H "Authorization: [[apiKey]]" \
 -H "Accept: application/json" \
 "https://api.tixngo.io/prod/v1.0/organizer/apikey"
import com.secutix.tixngo.v1.0.*;
import com.secutix.tixngo.v1.0.auth.*;
import com.secutix.tixngo.v1.0.model.*;
import com.secutix.tixngo.v1.0.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();

        try {
            OrganizerApikeyResponse result = apiInstance.organizerApikeyGet();
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerApikeyGet");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();


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

import com.secutix.tixngo.v1.0.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();

        try {
            OrganizerApikeyResponse result = apiInstance.organizerApikeyGet();
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerApikeyGet");
            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];

[apiInstance organizerApikeyGetWithCompletionHandler: 
              ^(OrganizerApikeyResponse output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var TixngoRestApiBackendOrganizerApi = require('tixngo_rest_api_backend_organizer_api');
var defaultClient = TixngoRestApiBackendOrganizerApi.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 TixngoRestApiBackendOrganizerApi.DefaultApi()
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.organizerApikeyGet(callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

namespace Example
{
    public class organizerApikeyGetExample
    {
        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();

            try {
                OrganizerApikeyResponse result = apiInstance.organizerApikeyGet();
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerApikeyGet: " + 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();

try {
    $result = $api_instance->organizerApikeyGet();
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerApikeyGet: ', $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();

eval {
    my $result = $api_instance->organizerApikeyGet();
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerApikeyGet: $@\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()

try:
    api_response = api_instance.organizer_apikey_get()
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerApikeyGet: %s\n" % e)
extern crate DefaultApi;

pub fn main() {

    let mut context = DefaultApi::Context::default();
    let result = client.organizerApikeyGet(&context).wait();

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

Scopes

Parameters

Responses


organizerApplicationFeaturesAppIdGet

Get the list of all the organizer's application features, for all applications


/organizer/application-features/{appId}

Usage and SDK Samples

curl -X GET \
 -H "Accept: application/json" \
 "https://api.tixngo.io/prod/v1.0/organizer/application-features/{appId}?key=key_example&offset=56&limit=56"
import com.secutix.tixngo.v1.0.*;
import com.secutix.tixngo.v1.0.auth.*;
import com.secutix.tixngo.v1.0.model.*;
import com.secutix.tixngo.v1.0.api.DefaultApi;

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

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

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();
        String appId = appId_example; // String | the app id related to the feature
        Integer offset = 56; // Integer | 
        Integer limit = 56; // Integer | 
        String key = key_example; // String | 

        try {
            OrganizerApplicationFeatureResponse result = apiInstance.organizerApplicationFeaturesAppIdGet(appId, offset, limit, key);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerApplicationFeaturesAppIdGet");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();

final String appId = new String(); // String | the app id related to the feature
final Integer offset = new Integer(); // Integer | 
final Integer limit = new Integer(); // Integer | 
final String key = new String(); // String | 

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

import com.secutix.tixngo.v1.0.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        String appId = appId_example; // String | the app id related to the feature
        Integer offset = 56; // Integer | 
        Integer limit = 56; // Integer | 
        String key = key_example; // String | 

        try {
            OrganizerApplicationFeatureResponse result = apiInstance.organizerApplicationFeaturesAppIdGet(appId, offset, limit, key);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerApplicationFeaturesAppIdGet");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];
String *appId = appId_example; // the app id related to the feature (default to null)
Integer *offset = 56; //  (default to null)
Integer *limit = 56; //  (default to null)
String *key = key_example; //  (optional) (default to null)

[apiInstance organizerApplicationFeaturesAppIdGetWith:appId
    offset:offset
    limit:limit
    key:key
              completionHandler: ^(OrganizerApplicationFeatureResponse output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var TixngoRestApiBackendOrganizerApi = require('tixngo_rest_api_backend_organizer_api');

// Create an instance of the API class
var api = new TixngoRestApiBackendOrganizerApi.DefaultApi()
var appId = appId_example; // {String} the app id related to the feature
var offset = 56; // {Integer} 
var limit = 56; // {Integer} 
var opts = {
  'key': key_example // {String} 
};

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

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

            // Create an instance of the API class
            var apiInstance = new DefaultApi();
            var appId = appId_example;  // String | the app id related to the feature (default to null)
            var offset = 56;  // Integer |  (default to null)
            var limit = 56;  // Integer |  (default to null)
            var key = key_example;  // String |  (optional)  (default to null)

            try {
                OrganizerApplicationFeatureResponse result = apiInstance.organizerApplicationFeaturesAppIdGet(appId, offset, limit, key);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerApplicationFeaturesAppIdGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();
$appId = appId_example; // String | the app id related to the feature
$offset = 56; // Integer | 
$limit = 56; // Integer | 
$key = key_example; // String | 

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

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DefaultApi->new();
my $appId = appId_example; # String | the app id related to the feature
my $offset = 56; # Integer | 
my $limit = 56; # Integer | 
my $key = key_example; # String | 

eval {
    my $result = $api_instance->organizerApplicationFeaturesAppIdGet(appId => $appId, offset => $offset, limit => $limit, key => $key);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerApplicationFeaturesAppIdGet: $@\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.DefaultApi()
appId = appId_example # String | the app id related to the feature (default to null)
offset = 56 # Integer |  (default to null)
limit = 56 # Integer |  (default to null)
key = key_example # String |  (optional) (default to null)

try:
    api_response = api_instance.organizer_application_features_app_id_get(appId, offset, limit, key=key)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerApplicationFeaturesAppIdGet: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let appId = appId_example; // String
    let offset = 56; // Integer
    let limit = 56; // Integer
    let key = key_example; // String

    let mut context = DefaultApi::Context::default();
    let result = client.organizerApplicationFeaturesAppIdGet(appId, offset, limit, key, &context).wait();

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

Scopes

Parameters

Path parameters
Name Description
appId*
String
the app id related to the feature
Required
Query parameters
Name Description
key
String
offset*
Integer
Required
limit*
Integer
Required

Responses


organizerApplicationFeaturesAppIdPatch

Get the list of all the organizer's application features, for all applications


/organizer/application-features/{appId}

Usage and SDK Samples

curl -X PATCH \
 -H "Content-Type: application/json" \
 "https://api.tixngo.io/prod/v1.0/organizer/application-features/{appId}" \
 -d '{
  "isEnabled" : true,
  "description" : "description",
  "featureKey" : "featureKey"
}'
import com.secutix.tixngo.v1.0.*;
import com.secutix.tixngo.v1.0.auth.*;
import com.secutix.tixngo.v1.0.model.*;
import com.secutix.tixngo.v1.0.api.DefaultApi;

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

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

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();
        String appId = appId_example; // String | the app id related to the feature
        array[OrganizerApplicationFeature] organizerApplicationFeature = ; // array[OrganizerApplicationFeature] | 

        try {
            apiInstance.organizerApplicationFeaturesAppIdPatch(appId, organizerApplicationFeature);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerApplicationFeaturesAppIdPatch");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();

final String appId = new String(); // String | the app id related to the feature
final array[OrganizerApplicationFeature] organizerApplicationFeature = new array[OrganizerApplicationFeature](); // array[OrganizerApplicationFeature] | 

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

import com.secutix.tixngo.v1.0.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        String appId = appId_example; // String | the app id related to the feature
        array[OrganizerApplicationFeature] organizerApplicationFeature = ; // array[OrganizerApplicationFeature] | 

        try {
            apiInstance.organizerApplicationFeaturesAppIdPatch(appId, organizerApplicationFeature);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerApplicationFeaturesAppIdPatch");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];
String *appId = appId_example; // the app id related to the feature (default to null)
array[OrganizerApplicationFeature] *organizerApplicationFeature = ; //  (optional)

[apiInstance organizerApplicationFeaturesAppIdPatchWith:appId
    organizerApplicationFeature:organizerApplicationFeature
              completionHandler: ^(NSError* error) {
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var TixngoRestApiBackendOrganizerApi = require('tixngo_rest_api_backend_organizer_api');

// Create an instance of the API class
var api = new TixngoRestApiBackendOrganizerApi.DefaultApi()
var appId = appId_example; // {String} the app id related to the feature
var opts = {
  'organizerApplicationFeature':  // {array[OrganizerApplicationFeature]} 
};

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

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

            // Create an instance of the API class
            var apiInstance = new DefaultApi();
            var appId = appId_example;  // String | the app id related to the feature (default to null)
            var organizerApplicationFeature = new array[OrganizerApplicationFeature](); // array[OrganizerApplicationFeature] |  (optional) 

            try {
                apiInstance.organizerApplicationFeaturesAppIdPatch(appId, organizerApplicationFeature);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerApplicationFeaturesAppIdPatch: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();
$appId = appId_example; // String | the app id related to the feature
$organizerApplicationFeature = ; // array[OrganizerApplicationFeature] | 

try {
    $api_instance->organizerApplicationFeaturesAppIdPatch($appId, $organizerApplicationFeature);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerApplicationFeaturesAppIdPatch: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::OPenAPIClient::Configuration;
use WWW::OPenAPIClient::DefaultApi;

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DefaultApi->new();
my $appId = appId_example; # String | the app id related to the feature
my $organizerApplicationFeature = [WWW::OPenAPIClient::Object::array[OrganizerApplicationFeature]->new()]; # array[OrganizerApplicationFeature] | 

eval {
    $api_instance->organizerApplicationFeaturesAppIdPatch(appId => $appId, organizerApplicationFeature => $organizerApplicationFeature);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerApplicationFeaturesAppIdPatch: $@\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.DefaultApi()
appId = appId_example # String | the app id related to the feature (default to null)
organizerApplicationFeature =  # array[OrganizerApplicationFeature] |  (optional)

try:
    api_instance.organizer_application_features_app_id_patch(appId, organizerApplicationFeature=organizerApplicationFeature)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerApplicationFeaturesAppIdPatch: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let appId = appId_example; // String
    let organizerApplicationFeature = ; // array[OrganizerApplicationFeature]

    let mut context = DefaultApi::Context::default();
    let result = client.organizerApplicationFeaturesAppIdPatch(appId, organizerApplicationFeature, &context).wait();

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

Scopes

Parameters

Path parameters
Name Description
appId*
String
the app id related to the feature
Required
Body parameters
Name Description
organizerApplicationFeature

Responses


organizerApplicationSettingsAllSupportedAppIdSupportedLanguagesGet

Get a list of supported languages of all supported appId


/organizer/application-settings/all-supported-appId-supported-languages

Usage and SDK Samples

curl -X GET \
 -H "Accept: application/json" \
 "https://api.tixngo.io/prod/v1.0/organizer/application-settings/all-supported-appId-supported-languages"
import com.secutix.tixngo.v1.0.*;
import com.secutix.tixngo.v1.0.auth.*;
import com.secutix.tixngo.v1.0.model.*;
import com.secutix.tixngo.v1.0.api.DefaultApi;

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

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

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();

        try {
            array[AppIdSupportedLanguages] result = apiInstance.organizerApplicationSettingsAllSupportedAppIdSupportedLanguagesGet();
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerApplicationSettingsAllSupportedAppIdSupportedLanguagesGet");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();


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

import com.secutix.tixngo.v1.0.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();

        try {
            array[AppIdSupportedLanguages] result = apiInstance.organizerApplicationSettingsAllSupportedAppIdSupportedLanguagesGet();
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerApplicationSettingsAllSupportedAppIdSupportedLanguagesGet");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];

[apiInstance organizerApplicationSettingsAllSupportedAppIdSupportedLanguagesGetWithCompletionHandler: 
              ^(array[AppIdSupportedLanguages] output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var TixngoRestApiBackendOrganizerApi = require('tixngo_rest_api_backend_organizer_api');

// Create an instance of the API class
var api = new TixngoRestApiBackendOrganizerApi.DefaultApi()
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.organizerApplicationSettingsAllSupportedAppIdSupportedLanguagesGet(callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

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

            // Create an instance of the API class
            var apiInstance = new DefaultApi();

            try {
                array[AppIdSupportedLanguages] result = apiInstance.organizerApplicationSettingsAllSupportedAppIdSupportedLanguagesGet();
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerApplicationSettingsAllSupportedAppIdSupportedLanguagesGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();

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

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DefaultApi->new();

eval {
    my $result = $api_instance->organizerApplicationSettingsAllSupportedAppIdSupportedLanguagesGet();
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerApplicationSettingsAllSupportedAppIdSupportedLanguagesGet: $@\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.DefaultApi()

try:
    api_response = api_instance.organizer_application_settings_all_supported_app_id_supported_languages_get()
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerApplicationSettingsAllSupportedAppIdSupportedLanguagesGet: %s\n" % e)
extern crate DefaultApi;

pub fn main() {

    let mut context = DefaultApi::Context::default();
    let result = client.organizerApplicationSettingsAllSupportedAppIdSupportedLanguagesGet(&context).wait();

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

Scopes

Parameters

Responses


organizerApplicationSettingsGet

Get the spectator application settings for the applications (mobileAppId)


/organizer/application-settings

Usage and SDK Samples

curl -X GET \
 -H "Accept: application/json" \
 "https://api.tixngo.io/prod/v1.0/organizer/application-settings?mobileAppId=mobileAppId_example&key=key_example&offset=56&limit=56"
import com.secutix.tixngo.v1.0.*;
import com.secutix.tixngo.v1.0.auth.*;
import com.secutix.tixngo.v1.0.model.*;
import com.secutix.tixngo.v1.0.api.DefaultApi;

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

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

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();
        Integer offset = 56; // Integer | 
        Integer limit = 56; // Integer | 
        String mobileAppId = mobileAppId_example; // String | 
        String key = key_example; // String | 

        try {
            ApplicationSettings result = apiInstance.organizerApplicationSettingsGet(offset, limit, mobileAppId, key);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerApplicationSettingsGet");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();

final Integer offset = new Integer(); // Integer | 
final Integer limit = new Integer(); // Integer | 
final String mobileAppId = new String(); // String | 
final String key = new String(); // String | 

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

import com.secutix.tixngo.v1.0.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        Integer offset = 56; // Integer | 
        Integer limit = 56; // Integer | 
        String mobileAppId = mobileAppId_example; // String | 
        String key = key_example; // String | 

        try {
            ApplicationSettings result = apiInstance.organizerApplicationSettingsGet(offset, limit, mobileAppId, key);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerApplicationSettingsGet");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];
Integer *offset = 56; //  (default to null)
Integer *limit = 56; //  (default to null)
String *mobileAppId = mobileAppId_example; //  (optional) (default to null)
String *key = key_example; //  (optional) (default to null)

[apiInstance organizerApplicationSettingsGetWith:offset
    limit:limit
    mobileAppId:mobileAppId
    key:key
              completionHandler: ^(ApplicationSettings output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var TixngoRestApiBackendOrganizerApi = require('tixngo_rest_api_backend_organizer_api');

// Create an instance of the API class
var api = new TixngoRestApiBackendOrganizerApi.DefaultApi()
var offset = 56; // {Integer} 
var limit = 56; // {Integer} 
var opts = {
  'mobileAppId': mobileAppId_example, // {String} 
  'key': key_example // {String} 
};

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

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

            // Create an instance of the API class
            var apiInstance = new DefaultApi();
            var offset = 56;  // Integer |  (default to null)
            var limit = 56;  // Integer |  (default to null)
            var mobileAppId = mobileAppId_example;  // String |  (optional)  (default to null)
            var key = key_example;  // String |  (optional)  (default to null)

            try {
                ApplicationSettings result = apiInstance.organizerApplicationSettingsGet(offset, limit, mobileAppId, key);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerApplicationSettingsGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();
$offset = 56; // Integer | 
$limit = 56; // Integer | 
$mobileAppId = mobileAppId_example; // String | 
$key = key_example; // String | 

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

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DefaultApi->new();
my $offset = 56; # Integer | 
my $limit = 56; # Integer | 
my $mobileAppId = mobileAppId_example; # String | 
my $key = key_example; # String | 

eval {
    my $result = $api_instance->organizerApplicationSettingsGet(offset => $offset, limit => $limit, mobileAppId => $mobileAppId, key => $key);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerApplicationSettingsGet: $@\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.DefaultApi()
offset = 56 # Integer |  (default to null)
limit = 56 # Integer |  (default to null)
mobileAppId = mobileAppId_example # String |  (optional) (default to null)
key = key_example # String |  (optional) (default to null)

try:
    api_response = api_instance.organizer_application_settings_get(offset, limit, mobileAppId=mobileAppId, key=key)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerApplicationSettingsGet: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let offset = 56; // Integer
    let limit = 56; // Integer
    let mobileAppId = mobileAppId_example; // String
    let key = key_example; // String

    let mut context = DefaultApi::Context::default();
    let result = client.organizerApplicationSettingsGet(offset, limit, mobileAppId, key, &context).wait();

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

Scopes

Parameters

Query parameters
Name Description
mobileAppId
String
key
String
offset*
Integer
Required
limit*
Integer
Required

Responses


organizerApplicationSettingsMobileAppIdConfigTypeGet

Get the list of all the organizer's configuration of registration in specific mobile app


/organizer/application-settings/{mobile-app-id}/{config-type}

Usage and SDK Samples

curl -X GET \
 -H "Accept: application/json" \
 "https://api.tixngo.io/prod/v1.0/organizer/application-settings/{mobile-app-id}/{config-type}?searchKey=searchKey_example&offset=56&limit=56"
import com.secutix.tixngo.v1.0.*;
import com.secutix.tixngo.v1.0.auth.*;
import com.secutix.tixngo.v1.0.model.*;
import com.secutix.tixngo.v1.0.api.DefaultApi;

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

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

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();
        String mobileAppId = mobileAppId_example; // String | the app id related to the feature
        String configType = configType_example; // String | The configuration type to filter out the result
        Integer offset = 56; // Integer | Offset used for pagination
        Integer limit = 56; // Integer | Limit used for pagination
        String searchKey = searchKey_example; // String | Filtering by key. Used for searching

        try {
            ApplicationSettingsGetResponse result = apiInstance.organizerApplicationSettingsMobileAppIdConfigTypeGet(mobileAppId, configType, offset, limit, searchKey);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerApplicationSettingsMobileAppIdConfigTypeGet");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();

final String mobileAppId = new String(); // String | the app id related to the feature
final String configType = new String(); // String | The configuration type to filter out the result
final Integer offset = new Integer(); // Integer | Offset used for pagination
final Integer limit = new Integer(); // Integer | Limit used for pagination
final String searchKey = new String(); // String | Filtering by key. Used for searching

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

import com.secutix.tixngo.v1.0.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        String mobileAppId = mobileAppId_example; // String | the app id related to the feature
        String configType = configType_example; // String | The configuration type to filter out the result
        Integer offset = 56; // Integer | Offset used for pagination
        Integer limit = 56; // Integer | Limit used for pagination
        String searchKey = searchKey_example; // String | Filtering by key. Used for searching

        try {
            ApplicationSettingsGetResponse result = apiInstance.organizerApplicationSettingsMobileAppIdConfigTypeGet(mobileAppId, configType, offset, limit, searchKey);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerApplicationSettingsMobileAppIdConfigTypeGet");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];
String *mobileAppId = mobileAppId_example; // the app id related to the feature (default to null)
String *configType = configType_example; // The configuration type to filter out the result (default to null)
Integer *offset = 56; // Offset used for pagination (default to null)
Integer *limit = 56; // Limit used for pagination (default to null)
String *searchKey = searchKey_example; // Filtering by key. Used for searching (optional) (default to null)

[apiInstance organizerApplicationSettingsMobileAppIdConfigTypeGetWith:mobileAppId
    configType:configType
    offset:offset
    limit:limit
    searchKey:searchKey
              completionHandler: ^(ApplicationSettingsGetResponse output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var TixngoRestApiBackendOrganizerApi = require('tixngo_rest_api_backend_organizer_api');

// Create an instance of the API class
var api = new TixngoRestApiBackendOrganizerApi.DefaultApi()
var mobileAppId = mobileAppId_example; // {String} the app id related to the feature
var configType = configType_example; // {String} The configuration type to filter out the result
var offset = 56; // {Integer} Offset used for pagination
var limit = 56; // {Integer} Limit used for pagination
var opts = {
  'searchKey': searchKey_example // {String} Filtering by key. Used for searching
};

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

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

            // Create an instance of the API class
            var apiInstance = new DefaultApi();
            var mobileAppId = mobileAppId_example;  // String | the app id related to the feature (default to null)
            var configType = configType_example;  // String | The configuration type to filter out the result (default to null)
            var offset = 56;  // Integer | Offset used for pagination (default to null)
            var limit = 56;  // Integer | Limit used for pagination (default to null)
            var searchKey = searchKey_example;  // String | Filtering by key. Used for searching (optional)  (default to null)

            try {
                ApplicationSettingsGetResponse result = apiInstance.organizerApplicationSettingsMobileAppIdConfigTypeGet(mobileAppId, configType, offset, limit, searchKey);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerApplicationSettingsMobileAppIdConfigTypeGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();
$mobileAppId = mobileAppId_example; // String | the app id related to the feature
$configType = configType_example; // String | The configuration type to filter out the result
$offset = 56; // Integer | Offset used for pagination
$limit = 56; // Integer | Limit used for pagination
$searchKey = searchKey_example; // String | Filtering by key. Used for searching

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

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DefaultApi->new();
my $mobileAppId = mobileAppId_example; # String | the app id related to the feature
my $configType = configType_example; # String | The configuration type to filter out the result
my $offset = 56; # Integer | Offset used for pagination
my $limit = 56; # Integer | Limit used for pagination
my $searchKey = searchKey_example; # String | Filtering by key. Used for searching

eval {
    my $result = $api_instance->organizerApplicationSettingsMobileAppIdConfigTypeGet(mobileAppId => $mobileAppId, configType => $configType, offset => $offset, limit => $limit, searchKey => $searchKey);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerApplicationSettingsMobileAppIdConfigTypeGet: $@\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.DefaultApi()
mobileAppId = mobileAppId_example # String | the app id related to the feature (default to null)
configType = configType_example # String | The configuration type to filter out the result (default to null)
offset = 56 # Integer | Offset used for pagination (default to null)
limit = 56 # Integer | Limit used for pagination (default to null)
searchKey = searchKey_example # String | Filtering by key. Used for searching (optional) (default to null)

try:
    api_response = api_instance.organizer_application_settings_mobile_app_id_config_type_get(mobileAppId, configType, offset, limit, searchKey=searchKey)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerApplicationSettingsMobileAppIdConfigTypeGet: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let mobileAppId = mobileAppId_example; // String
    let configType = configType_example; // String
    let offset = 56; // Integer
    let limit = 56; // Integer
    let searchKey = searchKey_example; // String

    let mut context = DefaultApi::Context::default();
    let result = client.organizerApplicationSettingsMobileAppIdConfigTypeGet(mobileAppId, configType, offset, limit, searchKey, &context).wait();

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

Scopes

Parameters

Path parameters
Name Description
mobile-app-id*
String
the app id related to the feature
Required
config-type*
String
The configuration type to filter out the result
Required
Query parameters
Name Description
searchKey
String
Filtering by key. Used for searching
offset*
Integer
Offset used for pagination
Required
limit*
Integer
Limit used for pagination
Required

Responses


organizerApplicationSettingsMobileAppIdPut

Modify the setting for the application if the setting is not readonly


/organizer/application-settings/{mobile-app-id}

Usage and SDK Samples

curl -X PUT \
 -H "Content-Type: application/json" \
 "https://api.tixngo.io/prod/v1.0/organizer/application-settings/{mobile-app-id}" \
 -d '{
  "value" : "value",
  "key" : "key"
}'
import com.secutix.tixngo.v1.0.*;
import com.secutix.tixngo.v1.0.auth.*;
import com.secutix.tixngo.v1.0.model.*;
import com.secutix.tixngo.v1.0.api.DefaultApi;

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

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

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();
        String mobileAppId = mobileAppId_example; // String | the app id related to the feature
        ApplicationSettingsPatchRequest applicationSettingsPatchRequest = ; // ApplicationSettingsPatchRequest | 

        try {
            apiInstance.organizerApplicationSettingsMobileAppIdPut(mobileAppId, applicationSettingsPatchRequest);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerApplicationSettingsMobileAppIdPut");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();

final String mobileAppId = new String(); // String | the app id related to the feature
final ApplicationSettingsPatchRequest applicationSettingsPatchRequest = new ApplicationSettingsPatchRequest(); // ApplicationSettingsPatchRequest | 

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

import com.secutix.tixngo.v1.0.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        String mobileAppId = mobileAppId_example; // String | the app id related to the feature
        ApplicationSettingsPatchRequest applicationSettingsPatchRequest = ; // ApplicationSettingsPatchRequest | 

        try {
            apiInstance.organizerApplicationSettingsMobileAppIdPut(mobileAppId, applicationSettingsPatchRequest);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerApplicationSettingsMobileAppIdPut");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];
String *mobileAppId = mobileAppId_example; // the app id related to the feature (default to null)
ApplicationSettingsPatchRequest *applicationSettingsPatchRequest = ; //  (optional)

[apiInstance organizerApplicationSettingsMobileAppIdPutWith:mobileAppId
    applicationSettingsPatchRequest:applicationSettingsPatchRequest
              completionHandler: ^(NSError* error) {
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var TixngoRestApiBackendOrganizerApi = require('tixngo_rest_api_backend_organizer_api');

// Create an instance of the API class
var api = new TixngoRestApiBackendOrganizerApi.DefaultApi()
var mobileAppId = mobileAppId_example; // {String} the app id related to the feature
var opts = {
  'applicationSettingsPatchRequest':  // {ApplicationSettingsPatchRequest} 
};

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

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

            // Create an instance of the API class
            var apiInstance = new DefaultApi();
            var mobileAppId = mobileAppId_example;  // String | the app id related to the feature (default to null)
            var applicationSettingsPatchRequest = new ApplicationSettingsPatchRequest(); // ApplicationSettingsPatchRequest |  (optional) 

            try {
                apiInstance.organizerApplicationSettingsMobileAppIdPut(mobileAppId, applicationSettingsPatchRequest);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerApplicationSettingsMobileAppIdPut: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();
$mobileAppId = mobileAppId_example; // String | the app id related to the feature
$applicationSettingsPatchRequest = ; // ApplicationSettingsPatchRequest | 

try {
    $api_instance->organizerApplicationSettingsMobileAppIdPut($mobileAppId, $applicationSettingsPatchRequest);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerApplicationSettingsMobileAppIdPut: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::OPenAPIClient::Configuration;
use WWW::OPenAPIClient::DefaultApi;

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DefaultApi->new();
my $mobileAppId = mobileAppId_example; # String | the app id related to the feature
my $applicationSettingsPatchRequest = WWW::OPenAPIClient::Object::ApplicationSettingsPatchRequest->new(); # ApplicationSettingsPatchRequest | 

eval {
    $api_instance->organizerApplicationSettingsMobileAppIdPut(mobileAppId => $mobileAppId, applicationSettingsPatchRequest => $applicationSettingsPatchRequest);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerApplicationSettingsMobileAppIdPut: $@\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.DefaultApi()
mobileAppId = mobileAppId_example # String | the app id related to the feature (default to null)
applicationSettingsPatchRequest =  # ApplicationSettingsPatchRequest |  (optional)

try:
    api_instance.organizer_application_settings_mobile_app_id_put(mobileAppId, applicationSettingsPatchRequest=applicationSettingsPatchRequest)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerApplicationSettingsMobileAppIdPut: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let mobileAppId = mobileAppId_example; // String
    let applicationSettingsPatchRequest = ; // ApplicationSettingsPatchRequest

    let mut context = DefaultApi::Context::default();
    let result = client.organizerApplicationSettingsMobileAppIdPut(mobileAppId, applicationSettingsPatchRequest, &context).wait();

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

Scopes

Parameters

Path parameters
Name Description
mobile-app-id*
String
the app id related to the feature
Required
Body parameters
Name Description
applicationSettingsPatchRequest

Responses


organizerApplicationSettingsMobileAppIdSupportedLanguagesGet

Get a list of supported languages for the given mobileAppId


/organizer/application-settings/{mobile-app-id}/supported-languages

Usage and SDK Samples

curl -X GET \
 -H "Accept: application/json" \
 "https://api.tixngo.io/prod/v1.0/organizer/application-settings/{mobile-app-id}/supported-languages"
import com.secutix.tixngo.v1.0.*;
import com.secutix.tixngo.v1.0.auth.*;
import com.secutix.tixngo.v1.0.model.*;
import com.secutix.tixngo.v1.0.api.DefaultApi;

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

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

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();
        String mobileAppId = mobileAppId_example; // String | 

        try {
            array['String'] result = apiInstance.organizerApplicationSettingsMobileAppIdSupportedLanguagesGet(mobileAppId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerApplicationSettingsMobileAppIdSupportedLanguagesGet");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();

final String mobileAppId = new String(); // String | 

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

import com.secutix.tixngo.v1.0.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        String mobileAppId = mobileAppId_example; // String | 

        try {
            array['String'] result = apiInstance.organizerApplicationSettingsMobileAppIdSupportedLanguagesGet(mobileAppId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerApplicationSettingsMobileAppIdSupportedLanguagesGet");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];
String *mobileAppId = mobileAppId_example; //  (default to null)

[apiInstance organizerApplicationSettingsMobileAppIdSupportedLanguagesGetWith:mobileAppId
              completionHandler: ^(array['String'] output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var TixngoRestApiBackendOrganizerApi = require('tixngo_rest_api_backend_organizer_api');

// Create an instance of the API class
var api = new TixngoRestApiBackendOrganizerApi.DefaultApi()
var mobileAppId = mobileAppId_example; // {String} 

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

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

            // Create an instance of the API class
            var apiInstance = new DefaultApi();
            var mobileAppId = mobileAppId_example;  // String |  (default to null)

            try {
                array['String'] result = apiInstance.organizerApplicationSettingsMobileAppIdSupportedLanguagesGet(mobileAppId);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerApplicationSettingsMobileAppIdSupportedLanguagesGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();
$mobileAppId = mobileAppId_example; // String | 

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

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DefaultApi->new();
my $mobileAppId = mobileAppId_example; # String | 

eval {
    my $result = $api_instance->organizerApplicationSettingsMobileAppIdSupportedLanguagesGet(mobileAppId => $mobileAppId);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerApplicationSettingsMobileAppIdSupportedLanguagesGet: $@\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.DefaultApi()
mobileAppId = mobileAppId_example # String |  (default to null)

try:
    api_response = api_instance.organizer_application_settings_mobile_app_id_supported_languages_get(mobileAppId)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerApplicationSettingsMobileAppIdSupportedLanguagesGet: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let mobileAppId = mobileAppId_example; // String

    let mut context = DefaultApi::Context::default();
    let result = client.organizerApplicationSettingsMobileAppIdSupportedLanguagesGet(mobileAppId, &context).wait();

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

Scopes

Parameters

Path parameters
Name Description
mobile-app-id*
String
Required

Responses


organizerCommunicationResendPost

Resend notification or email to a spectator


/organizer/communication/resend

Usage and SDK Samples

curl -X POST \
 -H "Content-Type: application/json" \
 "https://api.tixngo.io/prod/v1.0/organizer/communication/resend" \
 -d '{
  "communicationId" : 0,
  "email" : "email"
}'
import com.secutix.tixngo.v1.0.*;
import com.secutix.tixngo.v1.0.auth.*;
import com.secutix.tixngo.v1.0.model.*;
import com.secutix.tixngo.v1.0.api.DefaultApi;

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

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

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();
        array[OrganizerCommunicationResendRequest] organizerCommunicationResendRequest = ; // array[OrganizerCommunicationResendRequest] | 

        try {
            apiInstance.organizerCommunicationResendPost(organizerCommunicationResendRequest);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerCommunicationResendPost");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();

final array[OrganizerCommunicationResendRequest] organizerCommunicationResendRequest = new array[OrganizerCommunicationResendRequest](); // array[OrganizerCommunicationResendRequest] | 

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

import com.secutix.tixngo.v1.0.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        array[OrganizerCommunicationResendRequest] organizerCommunicationResendRequest = ; // array[OrganizerCommunicationResendRequest] | 

        try {
            apiInstance.organizerCommunicationResendPost(organizerCommunicationResendRequest);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerCommunicationResendPost");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];
array[OrganizerCommunicationResendRequest] *organizerCommunicationResendRequest = ; // 

[apiInstance organizerCommunicationResendPostWith:organizerCommunicationResendRequest
              completionHandler: ^(NSError* error) {
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var TixngoRestApiBackendOrganizerApi = require('tixngo_rest_api_backend_organizer_api');

// Create an instance of the API class
var api = new TixngoRestApiBackendOrganizerApi.DefaultApi()
var organizerCommunicationResendRequest = ; // {array[OrganizerCommunicationResendRequest]} 

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

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

            // Create an instance of the API class
            var apiInstance = new DefaultApi();
            var organizerCommunicationResendRequest = new array[OrganizerCommunicationResendRequest](); // array[OrganizerCommunicationResendRequest] | 

            try {
                apiInstance.organizerCommunicationResendPost(organizerCommunicationResendRequest);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerCommunicationResendPost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();
$organizerCommunicationResendRequest = ; // array[OrganizerCommunicationResendRequest] | 

try {
    $api_instance->organizerCommunicationResendPost($organizerCommunicationResendRequest);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerCommunicationResendPost: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::OPenAPIClient::Configuration;
use WWW::OPenAPIClient::DefaultApi;

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DefaultApi->new();
my $organizerCommunicationResendRequest = [WWW::OPenAPIClient::Object::array[OrganizerCommunicationResendRequest]->new()]; # array[OrganizerCommunicationResendRequest] | 

eval {
    $api_instance->organizerCommunicationResendPost(organizerCommunicationResendRequest => $organizerCommunicationResendRequest);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerCommunicationResendPost: $@\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.DefaultApi()
organizerCommunicationResendRequest =  # array[OrganizerCommunicationResendRequest] | 

try:
    api_instance.organizer_communication_resend_post(organizerCommunicationResendRequest)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerCommunicationResendPost: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let organizerCommunicationResendRequest = ; // array[OrganizerCommunicationResendRequest]

    let mut context = DefaultApi::Context::default();
    let result = client.organizerCommunicationResendPost(organizerCommunicationResendRequest, &context).wait();

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

Scopes

Parameters

Body parameters
Name Description
organizerCommunicationResendRequest *

Responses


organizerCommunicationsGet

Get the communication logs for the caller (organizer)


/organizer/communications

Usage and SDK Samples

curl -X GET \
 -H "Accept: application/json" \
 "https://api.tixngo.io/prod/v1.0/organizer/communications?limit=limit_example&offset=offset_example&email=email_example&mobileAppId=mobileAppId_example&phoneNumber=phoneNumber_example&type=type_example&status=status_example&from=2013-10-20T19:20:30+01:00&to=2013-10-20T19:20:30+01:00"
import com.secutix.tixngo.v1.0.*;
import com.secutix.tixngo.v1.0.auth.*;
import com.secutix.tixngo.v1.0.model.*;
import com.secutix.tixngo.v1.0.api.DefaultApi;

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

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

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();
        String limit = limit_example; // String | 
        String offset = offset_example; // String | 
        String email = email_example; // String | 
        String mobileAppId = mobileAppId_example; // String | 
        String phoneNumber = phoneNumber_example; // String | 
        String type = type_example; // String | 
        String status = status_example; // String | 
        Date from = 2013-10-20T19:20:30+01:00; // Date | 
        Date to = 2013-10-20T19:20:30+01:00; // Date | 

        try {
            OrganizerCommunicationLogsSearchResponse result = apiInstance.organizerCommunicationsGet(limit, offset, email, mobileAppId, phoneNumber, type, status, from, to);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerCommunicationsGet");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();

final String limit = new String(); // String | 
final String offset = new String(); // String | 
final String email = new String(); // String | 
final String mobileAppId = new String(); // String | 
final String phoneNumber = new String(); // String | 
final String type = new String(); // String | 
final String status = new String(); // String | 
final Date from = new Date(); // Date | 
final Date to = new Date(); // Date | 

try {
    final result = await api_instance.organizerCommunicationsGet(limit, offset, email, mobileAppId, phoneNumber, type, status, from, to);
    print(result);
} catch (e) {
    print('Exception when calling DefaultApi->organizerCommunicationsGet: $e\n');
}

import com.secutix.tixngo.v1.0.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        String limit = limit_example; // String | 
        String offset = offset_example; // String | 
        String email = email_example; // String | 
        String mobileAppId = mobileAppId_example; // String | 
        String phoneNumber = phoneNumber_example; // String | 
        String type = type_example; // String | 
        String status = status_example; // String | 
        Date from = 2013-10-20T19:20:30+01:00; // Date | 
        Date to = 2013-10-20T19:20:30+01:00; // Date | 

        try {
            OrganizerCommunicationLogsSearchResponse result = apiInstance.organizerCommunicationsGet(limit, offset, email, mobileAppId, phoneNumber, type, status, from, to);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerCommunicationsGet");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];
String *limit = limit_example; //  (default to null)
String *offset = offset_example; //  (default to null)
String *email = email_example; //  (optional) (default to null)
String *mobileAppId = mobileAppId_example; //  (optional) (default to null)
String *phoneNumber = phoneNumber_example; //  (optional) (default to null)
String *type = type_example; //  (optional) (default to null)
String *status = status_example; //  (optional) (default to null)
Date *from = 2013-10-20T19:20:30+01:00; //  (optional) (default to null)
Date *to = 2013-10-20T19:20:30+01:00; //  (optional) (default to null)

[apiInstance organizerCommunicationsGetWith:limit
    offset:offset
    email:email
    mobileAppId:mobileAppId
    phoneNumber:phoneNumber
    type:type
    status:status
    from:from
    to:to
              completionHandler: ^(OrganizerCommunicationLogsSearchResponse output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var TixngoRestApiBackendOrganizerApi = require('tixngo_rest_api_backend_organizer_api');

// Create an instance of the API class
var api = new TixngoRestApiBackendOrganizerApi.DefaultApi()
var limit = limit_example; // {String} 
var offset = offset_example; // {String} 
var opts = {
  'email': email_example, // {String} 
  'mobileAppId': mobileAppId_example, // {String} 
  'phoneNumber': phoneNumber_example, // {String} 
  'type': type_example, // {String} 
  'status': status_example, // {String} 
  'from': 2013-10-20T19:20:30+01:00, // {Date} 
  'to': 2013-10-20T19:20:30+01:00 // {Date} 
};

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.organizerCommunicationsGet(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 organizerCommunicationsGetExample
    {
        public void main()
        {

            // Create an instance of the API class
            var apiInstance = new DefaultApi();
            var limit = limit_example;  // String |  (default to null)
            var offset = offset_example;  // String |  (default to null)
            var email = email_example;  // String |  (optional)  (default to null)
            var mobileAppId = mobileAppId_example;  // String |  (optional)  (default to null)
            var phoneNumber = phoneNumber_example;  // String |  (optional)  (default to null)
            var type = type_example;  // String |  (optional)  (default to null)
            var status = status_example;  // String |  (optional)  (default to null)
            var from = 2013-10-20T19:20:30+01:00;  // Date |  (optional)  (default to null)
            var to = 2013-10-20T19:20:30+01:00;  // Date |  (optional)  (default to null)

            try {
                OrganizerCommunicationLogsSearchResponse result = apiInstance.organizerCommunicationsGet(limit, offset, email, mobileAppId, phoneNumber, type, status, from, to);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerCommunicationsGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();
$limit = limit_example; // String | 
$offset = offset_example; // String | 
$email = email_example; // String | 
$mobileAppId = mobileAppId_example; // String | 
$phoneNumber = phoneNumber_example; // String | 
$type = type_example; // String | 
$status = status_example; // String | 
$from = 2013-10-20T19:20:30+01:00; // Date | 
$to = 2013-10-20T19:20:30+01:00; // Date | 

try {
    $result = $api_instance->organizerCommunicationsGet($limit, $offset, $email, $mobileAppId, $phoneNumber, $type, $status, $from, $to);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerCommunicationsGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::OPenAPIClient::Configuration;
use WWW::OPenAPIClient::DefaultApi;

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DefaultApi->new();
my $limit = limit_example; # String | 
my $offset = offset_example; # String | 
my $email = email_example; # String | 
my $mobileAppId = mobileAppId_example; # String | 
my $phoneNumber = phoneNumber_example; # String | 
my $type = type_example; # String | 
my $status = status_example; # String | 
my $from = 2013-10-20T19:20:30+01:00; # Date | 
my $to = 2013-10-20T19:20:30+01:00; # Date | 

eval {
    my $result = $api_instance->organizerCommunicationsGet(limit => $limit, offset => $offset, email => $email, mobileAppId => $mobileAppId, phoneNumber => $phoneNumber, type => $type, status => $status, from => $from, to => $to);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerCommunicationsGet: $@\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.DefaultApi()
limit = limit_example # String |  (default to null)
offset = offset_example # String |  (default to null)
email = email_example # String |  (optional) (default to null)
mobileAppId = mobileAppId_example # String |  (optional) (default to null)
phoneNumber = phoneNumber_example # String |  (optional) (default to null)
type = type_example # String |  (optional) (default to null)
status = status_example # String |  (optional) (default to null)
from = 2013-10-20T19:20:30+01:00 # Date |  (optional) (default to null)
to = 2013-10-20T19:20:30+01:00 # Date |  (optional) (default to null)

try:
    api_response = api_instance.organizer_communications_get(limit, offset, email=email, mobileAppId=mobileAppId, phoneNumber=phoneNumber, type=type, status=status, from=from, to=to)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerCommunicationsGet: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let limit = limit_example; // String
    let offset = offset_example; // String
    let email = email_example; // String
    let mobileAppId = mobileAppId_example; // String
    let phoneNumber = phoneNumber_example; // String
    let type = type_example; // String
    let status = status_example; // String
    let from = 2013-10-20T19:20:30+01:00; // Date
    let to = 2013-10-20T19:20:30+01:00; // Date

    let mut context = DefaultApi::Context::default();
    let result = client.organizerCommunicationsGet(limit, offset, email, mobileAppId, phoneNumber, type, status, from, to, &context).wait();

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

Scopes

Parameters

Query parameters
Name Description
limit*
String
Required
offset*
String
Required
email
String
mobileAppId
String
phoneNumber
String
type
String
status
String
from
Date (date-time)
to
Date (date-time)

Responses


organizerConfigGet

[PUBLIC] Get the initial configuration necessary for an operator to begin the authentication process


/organizer/config

Usage and SDK Samples

curl -X GET \
 -H "Accept: application/json" \
 "https://api.tixngo.io/prod/v1.0/organizer/config"
import com.secutix.tixngo.v1.0.*;
import com.secutix.tixngo.v1.0.auth.*;
import com.secutix.tixngo.v1.0.model.*;
import com.secutix.tixngo.v1.0.api.DefaultApi;

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

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

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();

        try {
            OrganizerConfig result = apiInstance.organizerConfigGet();
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerConfigGet");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();


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

import com.secutix.tixngo.v1.0.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();

        try {
            OrganizerConfig result = apiInstance.organizerConfigGet();
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerConfigGet");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];

[apiInstance organizerConfigGetWithCompletionHandler: 
              ^(OrganizerConfig output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var TixngoRestApiBackendOrganizerApi = require('tixngo_rest_api_backend_organizer_api');

// Create an instance of the API class
var api = new TixngoRestApiBackendOrganizerApi.DefaultApi()
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.organizerConfigGet(callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

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

            // Create an instance of the API class
            var apiInstance = new DefaultApi();

            try {
                OrganizerConfig result = apiInstance.organizerConfigGet();
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerConfigGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();

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

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DefaultApi->new();

eval {
    my $result = $api_instance->organizerConfigGet();
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerConfigGet: $@\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.DefaultApi()

try:
    api_response = api_instance.organizer_config_get()
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerConfigGet: %s\n" % e)
extern crate DefaultApi;

pub fn main() {

    let mut context = DefaultApi::Context::default();
    let result = client.organizerConfigGet(&context).wait();

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

Scopes

Parameters

Responses


organizerConfigUiGet

get organizer setting for UI configs


/organizer/config/ui

Usage and SDK Samples

curl -X GET \
 -H "Accept: application/json" \
 "https://api.tixngo.io/prod/v1.0/organizer/config/ui"
import com.secutix.tixngo.v1.0.*;
import com.secutix.tixngo.v1.0.auth.*;
import com.secutix.tixngo.v1.0.model.*;
import com.secutix.tixngo.v1.0.api.DefaultApi;

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

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

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();

        try {
            OrganizerUIConfigSettings result = apiInstance.organizerConfigUiGet();
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerConfigUiGet");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();


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

import com.secutix.tixngo.v1.0.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();

        try {
            OrganizerUIConfigSettings result = apiInstance.organizerConfigUiGet();
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerConfigUiGet");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];

[apiInstance organizerConfigUiGetWithCompletionHandler: 
              ^(OrganizerUIConfigSettings output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var TixngoRestApiBackendOrganizerApi = require('tixngo_rest_api_backend_organizer_api');

// Create an instance of the API class
var api = new TixngoRestApiBackendOrganizerApi.DefaultApi()
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.organizerConfigUiGet(callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

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

            // Create an instance of the API class
            var apiInstance = new DefaultApi();

            try {
                OrganizerUIConfigSettings result = apiInstance.organizerConfigUiGet();
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerConfigUiGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();

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

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DefaultApi->new();

eval {
    my $result = $api_instance->organizerConfigUiGet();
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerConfigUiGet: $@\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.DefaultApi()

try:
    api_response = api_instance.organizer_config_ui_get()
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerConfigUiGet: %s\n" % e)
extern crate DefaultApi;

pub fn main() {

    let mut context = DefaultApi::Context::default();
    let result = client.organizerConfigUiGet(&context).wait();

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

Scopes

Parameters

Responses


organizerDevicesMobileAppIdSpectatorEmailDelete

Delete all registered devices of the given Spectator for the Mobile AppId


/organizer/devices/{mobileAppId}/{spectatorEmail}

Usage and SDK Samples

curl -X DELETE \
 "https://api.tixngo.io/prod/v1.0/organizer/devices/{mobileAppId}/{spectatorEmail}"
import com.secutix.tixngo.v1.0.*;
import com.secutix.tixngo.v1.0.auth.*;
import com.secutix.tixngo.v1.0.model.*;
import com.secutix.tixngo.v1.0.api.DefaultApi;

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

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

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();
        String mobileAppId = mobileAppId_example; // String | 
        String spectatorEmail = spectatorEmail_example; // String | 

        try {
            apiInstance.organizerDevicesMobileAppIdSpectatorEmailDelete(mobileAppId, spectatorEmail);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerDevicesMobileAppIdSpectatorEmailDelete");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();

final String mobileAppId = new String(); // String | 
final String spectatorEmail = new String(); // String | 

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

import com.secutix.tixngo.v1.0.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        String mobileAppId = mobileAppId_example; // String | 
        String spectatorEmail = spectatorEmail_example; // String | 

        try {
            apiInstance.organizerDevicesMobileAppIdSpectatorEmailDelete(mobileAppId, spectatorEmail);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerDevicesMobileAppIdSpectatorEmailDelete");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];
String *mobileAppId = mobileAppId_example; //  (default to null)
String *spectatorEmail = spectatorEmail_example; //  (default to null)

[apiInstance organizerDevicesMobileAppIdSpectatorEmailDeleteWith:mobileAppId
    spectatorEmail:spectatorEmail
              completionHandler: ^(NSError* error) {
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var TixngoRestApiBackendOrganizerApi = require('tixngo_rest_api_backend_organizer_api');

// Create an instance of the API class
var api = new TixngoRestApiBackendOrganizerApi.DefaultApi()
var mobileAppId = mobileAppId_example; // {String} 
var spectatorEmail = spectatorEmail_example; // {String} 

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

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

            // Create an instance of the API class
            var apiInstance = new DefaultApi();
            var mobileAppId = mobileAppId_example;  // String |  (default to null)
            var spectatorEmail = spectatorEmail_example;  // String |  (default to null)

            try {
                apiInstance.organizerDevicesMobileAppIdSpectatorEmailDelete(mobileAppId, spectatorEmail);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerDevicesMobileAppIdSpectatorEmailDelete: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();
$mobileAppId = mobileAppId_example; // String | 
$spectatorEmail = spectatorEmail_example; // String | 

try {
    $api_instance->organizerDevicesMobileAppIdSpectatorEmailDelete($mobileAppId, $spectatorEmail);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerDevicesMobileAppIdSpectatorEmailDelete: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::OPenAPIClient::Configuration;
use WWW::OPenAPIClient::DefaultApi;

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DefaultApi->new();
my $mobileAppId = mobileAppId_example; # String | 
my $spectatorEmail = spectatorEmail_example; # String | 

eval {
    $api_instance->organizerDevicesMobileAppIdSpectatorEmailDelete(mobileAppId => $mobileAppId, spectatorEmail => $spectatorEmail);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerDevicesMobileAppIdSpectatorEmailDelete: $@\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.DefaultApi()
mobileAppId = mobileAppId_example # String |  (default to null)
spectatorEmail = spectatorEmail_example # String |  (default to null)

try:
    api_instance.organizer_devices_mobile_app_id_spectator_email_delete(mobileAppId, spectatorEmail)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerDevicesMobileAppIdSpectatorEmailDelete: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let mobileAppId = mobileAppId_example; // String
    let spectatorEmail = spectatorEmail_example; // String

    let mut context = DefaultApi::Context::default();
    let result = client.organizerDevicesMobileAppIdSpectatorEmailDelete(mobileAppId, spectatorEmail, &context).wait();

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

Scopes

Parameters

Path parameters
Name Description
mobileAppId*
String
Required
spectatorEmail*
String
Required

Responses


organizerEventGroupListGet

get list of organizer event groups


/organizer/event-group-list

Usage and SDK Samples

curl -X GET \
 -H "Accept: application/json" \
 "https://api.tixngo.io/prod/v1.0/organizer/event-group-list"
import com.secutix.tixngo.v1.0.*;
import com.secutix.tixngo.v1.0.auth.*;
import com.secutix.tixngo.v1.0.model.*;
import com.secutix.tixngo.v1.0.api.DefaultApi;

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

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

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();

        try {
            OrganizerEventGroupSummaryList result = apiInstance.organizerEventGroupListGet();
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerEventGroupListGet");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();


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

import com.secutix.tixngo.v1.0.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();

        try {
            OrganizerEventGroupSummaryList result = apiInstance.organizerEventGroupListGet();
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerEventGroupListGet");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];

[apiInstance organizerEventGroupListGetWithCompletionHandler: 
              ^(OrganizerEventGroupSummaryList output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var TixngoRestApiBackendOrganizerApi = require('tixngo_rest_api_backend_organizer_api');

// Create an instance of the API class
var api = new TixngoRestApiBackendOrganizerApi.DefaultApi()
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.organizerEventGroupListGet(callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

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

            // Create an instance of the API class
            var apiInstance = new DefaultApi();

            try {
                OrganizerEventGroupSummaryList result = apiInstance.organizerEventGroupListGet();
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerEventGroupListGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();

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

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DefaultApi->new();

eval {
    my $result = $api_instance->organizerEventGroupListGet();
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerEventGroupListGet: $@\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.DefaultApi()

try:
    api_response = api_instance.organizer_event_group_list_get()
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerEventGroupListGet: %s\n" % e)
extern crate DefaultApi;

pub fn main() {

    let mut context = DefaultApi::Context::default();
    let result = client.organizerEventGroupListGet(&context).wait();

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

Scopes

Parameters

Responses


organizerEventSitesGet

get list of organizer event groups


/organizer/event-sites

Usage and SDK Samples

curl -X GET \
 -H "Accept: application/json" \
 "https://api.tixngo.io/prod/v1.0/organizer/event-sites?groups="
import com.secutix.tixngo.v1.0.*;
import com.secutix.tixngo.v1.0.auth.*;
import com.secutix.tixngo.v1.0.model.*;
import com.secutix.tixngo.v1.0.api.DefaultApi;

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

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

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();
        array[String] groups = ; // array[String] | 

        try {
            OrganizerEventSitesResponse result = apiInstance.organizerEventSitesGet(groups);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerEventSitesGet");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();

final array[String] groups = new array[String](); // array[String] | 

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

import com.secutix.tixngo.v1.0.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        array[String] groups = ; // array[String] | 

        try {
            OrganizerEventSitesResponse result = apiInstance.organizerEventSitesGet(groups);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerEventSitesGet");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];
array[String] *groups = ; //  (optional) (default to null)

[apiInstance organizerEventSitesGetWith:groups
              completionHandler: ^(OrganizerEventSitesResponse output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var TixngoRestApiBackendOrganizerApi = require('tixngo_rest_api_backend_organizer_api');

// Create an instance of the API class
var api = new TixngoRestApiBackendOrganizerApi.DefaultApi()
var opts = {
  'groups':  // {array[String]} 
};

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

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

            // Create an instance of the API class
            var apiInstance = new DefaultApi();
            var groups = new array[String](); // array[String] |  (optional)  (default to null)

            try {
                OrganizerEventSitesResponse result = apiInstance.organizerEventSitesGet(groups);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerEventSitesGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();
$groups = ; // array[String] | 

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

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DefaultApi->new();
my $groups = []; # array[String] | 

eval {
    my $result = $api_instance->organizerEventSitesGet(groups => $groups);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerEventSitesGet: $@\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.DefaultApi()
groups =  # array[String] |  (optional) (default to null)

try:
    api_response = api_instance.organizer_event_sites_get(groups=groups)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerEventSitesGet: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let groups = ; // array[String]

    let mut context = DefaultApi::Context::default();
    let result = client.organizerEventSitesGet(groups, &context).wait();

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

Scopes

Parameters

Query parameters
Name Description
groups
array[String]

Responses


organizerEventsAllGet

Get the list of events of the caller (organizer) without paging


/organizer/events/all

Usage and SDK Samples

curl -X GET \
 -H "Accept: application/json" \
 "https://api.tixngo.io/prod/v1.0/organizer/events/all?groups=&sites="
import com.secutix.tixngo.v1.0.*;
import com.secutix.tixngo.v1.0.auth.*;
import com.secutix.tixngo.v1.0.model.*;
import com.secutix.tixngo.v1.0.api.DefaultApi;

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

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

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();
        array[String] groups = ; // array[String] | 
        array[String] sites = ; // array[String] | 

        try {
            array[OrganizerAllEventsResponse] result = apiInstance.organizerEventsAllGet(groups, sites);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerEventsAllGet");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();

final array[String] groups = new array[String](); // array[String] | 
final array[String] sites = new array[String](); // array[String] | 

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

import com.secutix.tixngo.v1.0.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        array[String] groups = ; // array[String] | 
        array[String] sites = ; // array[String] | 

        try {
            array[OrganizerAllEventsResponse] result = apiInstance.organizerEventsAllGet(groups, sites);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerEventsAllGet");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];
array[String] *groups = ; //  (optional) (default to null)
array[String] *sites = ; //  (optional) (default to null)

[apiInstance organizerEventsAllGetWith:groups
    sites:sites
              completionHandler: ^(array[OrganizerAllEventsResponse] output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var TixngoRestApiBackendOrganizerApi = require('tixngo_rest_api_backend_organizer_api');

// Create an instance of the API class
var api = new TixngoRestApiBackendOrganizerApi.DefaultApi()
var opts = {
  'groups': , // {array[String]} 
  'sites':  // {array[String]} 
};

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

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

            // Create an instance of the API class
            var apiInstance = new DefaultApi();
            var groups = new array[String](); // array[String] |  (optional)  (default to null)
            var sites = new array[String](); // array[String] |  (optional)  (default to null)

            try {
                array[OrganizerAllEventsResponse] result = apiInstance.organizerEventsAllGet(groups, sites);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerEventsAllGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();
$groups = ; // array[String] | 
$sites = ; // array[String] | 

try {
    $result = $api_instance->organizerEventsAllGet($groups, $sites);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerEventsAllGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::OPenAPIClient::Configuration;
use WWW::OPenAPIClient::DefaultApi;

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DefaultApi->new();
my $groups = []; # array[String] | 
my $sites = []; # array[String] | 

eval {
    my $result = $api_instance->organizerEventsAllGet(groups => $groups, sites => $sites);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerEventsAllGet: $@\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.DefaultApi()
groups =  # array[String] |  (optional) (default to null)
sites =  # array[String] |  (optional) (default to null)

try:
    api_response = api_instance.organizer_events_all_get(groups=groups, sites=sites)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerEventsAllGet: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let groups = ; // array[String]
    let sites = ; // array[String]

    let mut context = DefaultApi::Context::default();
    let result = client.organizerEventsAllGet(groups, sites, &context).wait();

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

Scopes

Parameters

Query parameters
Name Description
groups
array[String]
sites
array[String]

Responses


organizerEventsEventIdActivationIdPatch

Update the activation information of a sub group of tickets sharing the same eventId and activationId. This path ensure that the tickets keep coherent data between them


/organizer/events/{eventId}/{activationId}

Usage and SDK Samples

curl -X PATCH \
 -H "Content-Type: application/json" \
 "https://api.tixngo.io/prod/v1.0/organizer/events/{eventId}/{activationId}" \
 -d '{
  "method" : "online",
  "time" : "2000-01-23T04:56:07.000+00:00"
}'
import com.secutix.tixngo.v1.0.*;
import com.secutix.tixngo.v1.0.auth.*;
import com.secutix.tixngo.v1.0.model.*;
import com.secutix.tixngo.v1.0.api.DefaultApi;

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

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

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();
        String activationId = activationId_example; // String | 
        String eventId = eventId_example; // String | 
        OrganizerTicketActivationPatch organizerTicketActivationPatch = ; // OrganizerTicketActivationPatch | 

        try {
            apiInstance.organizerEventsEventIdActivationIdPatch(activationId, eventId, organizerTicketActivationPatch);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerEventsEventIdActivationIdPatch");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();

final String activationId = new String(); // String | 
final String eventId = new String(); // String | 
final OrganizerTicketActivationPatch organizerTicketActivationPatch = new OrganizerTicketActivationPatch(); // OrganizerTicketActivationPatch | 

try {
    final result = await api_instance.organizerEventsEventIdActivationIdPatch(activationId, eventId, organizerTicketActivationPatch);
    print(result);
} catch (e) {
    print('Exception when calling DefaultApi->organizerEventsEventIdActivationIdPatch: $e\n');
}

import com.secutix.tixngo.v1.0.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        String activationId = activationId_example; // String | 
        String eventId = eventId_example; // String | 
        OrganizerTicketActivationPatch organizerTicketActivationPatch = ; // OrganizerTicketActivationPatch | 

        try {
            apiInstance.organizerEventsEventIdActivationIdPatch(activationId, eventId, organizerTicketActivationPatch);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerEventsEventIdActivationIdPatch");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];
String *activationId = activationId_example; //  (default to null)
String *eventId = eventId_example; //  (default to null)
OrganizerTicketActivationPatch *organizerTicketActivationPatch = ; // 

[apiInstance organizerEventsEventIdActivationIdPatchWith:activationId
    eventId:eventId
    organizerTicketActivationPatch:organizerTicketActivationPatch
              completionHandler: ^(NSError* error) {
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var TixngoRestApiBackendOrganizerApi = require('tixngo_rest_api_backend_organizer_api');

// Create an instance of the API class
var api = new TixngoRestApiBackendOrganizerApi.DefaultApi()
var activationId = activationId_example; // {String} 
var eventId = eventId_example; // {String} 
var organizerTicketActivationPatch = ; // {OrganizerTicketActivationPatch} 

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.organizerEventsEventIdActivationIdPatch(activationId, eventId, organizerTicketActivationPatch, callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

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

            // Create an instance of the API class
            var apiInstance = new DefaultApi();
            var activationId = activationId_example;  // String |  (default to null)
            var eventId = eventId_example;  // String |  (default to null)
            var organizerTicketActivationPatch = new OrganizerTicketActivationPatch(); // OrganizerTicketActivationPatch | 

            try {
                apiInstance.organizerEventsEventIdActivationIdPatch(activationId, eventId, organizerTicketActivationPatch);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerEventsEventIdActivationIdPatch: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();
$activationId = activationId_example; // String | 
$eventId = eventId_example; // String | 
$organizerTicketActivationPatch = ; // OrganizerTicketActivationPatch | 

try {
    $api_instance->organizerEventsEventIdActivationIdPatch($activationId, $eventId, $organizerTicketActivationPatch);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerEventsEventIdActivationIdPatch: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::OPenAPIClient::Configuration;
use WWW::OPenAPIClient::DefaultApi;

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DefaultApi->new();
my $activationId = activationId_example; # String | 
my $eventId = eventId_example; # String | 
my $organizerTicketActivationPatch = WWW::OPenAPIClient::Object::OrganizerTicketActivationPatch->new(); # OrganizerTicketActivationPatch | 

eval {
    $api_instance->organizerEventsEventIdActivationIdPatch(activationId => $activationId, eventId => $eventId, organizerTicketActivationPatch => $organizerTicketActivationPatch);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerEventsEventIdActivationIdPatch: $@\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.DefaultApi()
activationId = activationId_example # String |  (default to null)
eventId = eventId_example # String |  (default to null)
organizerTicketActivationPatch =  # OrganizerTicketActivationPatch | 

try:
    api_instance.organizer_events_event_id_activation_id_patch(activationId, eventId, organizerTicketActivationPatch)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerEventsEventIdActivationIdPatch: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let activationId = activationId_example; // String
    let eventId = eventId_example; // String
    let organizerTicketActivationPatch = ; // OrganizerTicketActivationPatch

    let mut context = DefaultApi::Context::default();
    let result = client.organizerEventsEventIdActivationIdPatch(activationId, eventId, organizerTicketActivationPatch, &context).wait();

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

Scopes

Parameters

Path parameters
Name Description
activationId*
String
Required
eventId*
String
Required
Body parameters
Name Description
organizerTicketActivationPatch *

Responses


organizerEventsEventIdChartsGet

Get chart of tickets flows for the given event


/organizer/events/{eventId}/charts

Usage and SDK Samples

curl -X GET \
 -H "Accept: application/json" \
 "https://api.tixngo.io/prod/v1.0/organizer/events/{eventId}/charts"
import com.secutix.tixngo.v1.0.*;
import com.secutix.tixngo.v1.0.auth.*;
import com.secutix.tixngo.v1.0.model.*;
import com.secutix.tixngo.v1.0.api.DefaultApi;

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

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

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();
        String eventId = tixngo-league; // String | event id for the given event

        try {
            OrganizerEventChart result = apiInstance.organizerEventsEventIdChartsGet(eventId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerEventsEventIdChartsGet");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();

final String eventId = new String(); // String | event id for the given event

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

import com.secutix.tixngo.v1.0.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        String eventId = tixngo-league; // String | event id for the given event

        try {
            OrganizerEventChart result = apiInstance.organizerEventsEventIdChartsGet(eventId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerEventsEventIdChartsGet");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];
String *eventId = tixngo-league; // event id for the given event (default to null)

[apiInstance organizerEventsEventIdChartsGetWith:eventId
              completionHandler: ^(OrganizerEventChart output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var TixngoRestApiBackendOrganizerApi = require('tixngo_rest_api_backend_organizer_api');

// Create an instance of the API class
var api = new TixngoRestApiBackendOrganizerApi.DefaultApi()
var eventId = tixngo-league; // {String} event id for the given event

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

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

            // Create an instance of the API class
            var apiInstance = new DefaultApi();
            var eventId = tixngo-league;  // String | event id for the given event (default to null)

            try {
                OrganizerEventChart result = apiInstance.organizerEventsEventIdChartsGet(eventId);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerEventsEventIdChartsGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();
$eventId = tixngo-league; // String | event id for the given event

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

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DefaultApi->new();
my $eventId = tixngo-league; # String | event id for the given event

eval {
    my $result = $api_instance->organizerEventsEventIdChartsGet(eventId => $eventId);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerEventsEventIdChartsGet: $@\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.DefaultApi()
eventId = tixngo-league # String | event id for the given event (default to null)

try:
    api_response = api_instance.organizer_events_event_id_charts_get(eventId)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerEventsEventIdChartsGet: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let eventId = tixngo-league; // String

    let mut context = DefaultApi::Context::default();
    let result = client.organizerEventsEventIdChartsGet(eventId, &context).wait();

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

Scopes

Parameters

Path parameters
Name Description
eventId*
String
event id for the given event
Required

Responses


organizerEventsEventIdDesignsGet

Get designs for the given event


/organizer/events/{eventId}/designs

Usage and SDK Samples

curl -X GET \
 -H "Accept: application/json" \
 "https://api.tixngo.io/prod/v1.0/organizer/events/{eventId}/designs"
import com.secutix.tixngo.v1.0.*;
import com.secutix.tixngo.v1.0.auth.*;
import com.secutix.tixngo.v1.0.model.*;
import com.secutix.tixngo.v1.0.api.DefaultApi;

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

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

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();
        String eventId = eventId_example; // String | event id for the given event

        try {
            OrganizerEventDesignResponse result = apiInstance.organizerEventsEventIdDesignsGet(eventId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerEventsEventIdDesignsGet");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();

final String eventId = new String(); // String | event id for the given event

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

import com.secutix.tixngo.v1.0.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        String eventId = eventId_example; // String | event id for the given event

        try {
            OrganizerEventDesignResponse result = apiInstance.organizerEventsEventIdDesignsGet(eventId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerEventsEventIdDesignsGet");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];
String *eventId = eventId_example; // event id for the given event (default to null)

[apiInstance organizerEventsEventIdDesignsGetWith:eventId
              completionHandler: ^(OrganizerEventDesignResponse output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var TixngoRestApiBackendOrganizerApi = require('tixngo_rest_api_backend_organizer_api');

// Create an instance of the API class
var api = new TixngoRestApiBackendOrganizerApi.DefaultApi()
var eventId = eventId_example; // {String} event id for the given event

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

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

            // Create an instance of the API class
            var apiInstance = new DefaultApi();
            var eventId = eventId_example;  // String | event id for the given event (default to null)

            try {
                OrganizerEventDesignResponse result = apiInstance.organizerEventsEventIdDesignsGet(eventId);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerEventsEventIdDesignsGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();
$eventId = eventId_example; // String | event id for the given event

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

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DefaultApi->new();
my $eventId = eventId_example; # String | event id for the given event

eval {
    my $result = $api_instance->organizerEventsEventIdDesignsGet(eventId => $eventId);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerEventsEventIdDesignsGet: $@\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.DefaultApi()
eventId = eventId_example # String | event id for the given event (default to null)

try:
    api_response = api_instance.organizer_events_event_id_designs_get(eventId)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerEventsEventIdDesignsGet: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let eventId = eventId_example; // String

    let mut context = DefaultApi::Context::default();
    let result = client.organizerEventsEventIdDesignsGet(eventId, &context).wait();

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

Scopes

Parameters

Path parameters
Name Description
eventId*
String
event id for the given event
Required

Responses


organizerEventsEventIdGet

Get information about a single event


/organizer/events/{eventId}

Usage and SDK Samples

curl -X GET \
 -H "Accept: application/json" \
 "https://api.tixngo.io/prod/v1.0/organizer/events/{eventId}?language=language_example"
import com.secutix.tixngo.v1.0.*;
import com.secutix.tixngo.v1.0.auth.*;
import com.secutix.tixngo.v1.0.model.*;
import com.secutix.tixngo.v1.0.api.DefaultApi;

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

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

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();
        String eventId = eventId_example; // String | 
        String language = language_example; // String | 

        try {
            OrganizerEventsGetResponseEntry result = apiInstance.organizerEventsEventIdGet(eventId, language);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerEventsEventIdGet");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();

final String eventId = new String(); // String | 
final String language = new String(); // String | 

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

import com.secutix.tixngo.v1.0.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        String eventId = eventId_example; // String | 
        String language = language_example; // String | 

        try {
            OrganizerEventsGetResponseEntry result = apiInstance.organizerEventsEventIdGet(eventId, language);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerEventsEventIdGet");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];
String *eventId = eventId_example; //  (default to null)
String *language = language_example; //  (optional) (default to null)

[apiInstance organizerEventsEventIdGetWith:eventId
    language:language
              completionHandler: ^(OrganizerEventsGetResponseEntry output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var TixngoRestApiBackendOrganizerApi = require('tixngo_rest_api_backend_organizer_api');

// Create an instance of the API class
var api = new TixngoRestApiBackendOrganizerApi.DefaultApi()
var eventId = eventId_example; // {String} 
var opts = {
  'language': language_example // {String} 
};

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

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

            // Create an instance of the API class
            var apiInstance = new DefaultApi();
            var eventId = eventId_example;  // String |  (default to null)
            var language = language_example;  // String |  (optional)  (default to null)

            try {
                OrganizerEventsGetResponseEntry result = apiInstance.organizerEventsEventIdGet(eventId, language);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerEventsEventIdGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();
$eventId = eventId_example; // String | 
$language = language_example; // String | 

try {
    $result = $api_instance->organizerEventsEventIdGet($eventId, $language);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerEventsEventIdGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::OPenAPIClient::Configuration;
use WWW::OPenAPIClient::DefaultApi;

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DefaultApi->new();
my $eventId = eventId_example; # String | 
my $language = language_example; # String | 

eval {
    my $result = $api_instance->organizerEventsEventIdGet(eventId => $eventId, language => $language);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerEventsEventIdGet: $@\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.DefaultApi()
eventId = eventId_example # String |  (default to null)
language = language_example # String |  (optional) (default to null)

try:
    api_response = api_instance.organizer_events_event_id_get(eventId, language=language)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerEventsEventIdGet: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let eventId = eventId_example; // String
    let language = language_example; // String

    let mut context = DefaultApi::Context::default();
    let result = client.organizerEventsEventIdGet(eventId, language, &context).wait();

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

Scopes

Parameters

Path parameters
Name Description
eventId*
String
Required
Query parameters
Name Description
language
String

Responses


organizerEventsEventIdGroupGet

retrieve the EventGroup to which this event belongs to from the given eventId


/organizer/events/{eventId}/group

Usage and SDK Samples

curl -X GET \
 -H "Accept: application/json" \
 "https://api.tixngo.io/prod/v1.0/organizer/events/{eventId}/group?language=language_example"
import com.secutix.tixngo.v1.0.*;
import com.secutix.tixngo.v1.0.auth.*;
import com.secutix.tixngo.v1.0.model.*;
import com.secutix.tixngo.v1.0.api.DefaultApi;

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

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

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();
        String eventId = eventId_example; // String | 
        String language = language_example; // String | 

        try {
            OrganizerEventsGroup result = apiInstance.organizerEventsEventIdGroupGet(eventId, language);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerEventsEventIdGroupGet");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();

final String eventId = new String(); // String | 
final String language = new String(); // String | 

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

import com.secutix.tixngo.v1.0.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        String eventId = eventId_example; // String | 
        String language = language_example; // String | 

        try {
            OrganizerEventsGroup result = apiInstance.organizerEventsEventIdGroupGet(eventId, language);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerEventsEventIdGroupGet");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];
String *eventId = eventId_example; //  (default to null)
String *language = language_example; //  (optional) (default to null)

[apiInstance organizerEventsEventIdGroupGetWith:eventId
    language:language
              completionHandler: ^(OrganizerEventsGroup output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var TixngoRestApiBackendOrganizerApi = require('tixngo_rest_api_backend_organizer_api');

// Create an instance of the API class
var api = new TixngoRestApiBackendOrganizerApi.DefaultApi()
var eventId = eventId_example; // {String} 
var opts = {
  'language': language_example // {String} 
};

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

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

            // Create an instance of the API class
            var apiInstance = new DefaultApi();
            var eventId = eventId_example;  // String |  (default to null)
            var language = language_example;  // String |  (optional)  (default to null)

            try {
                OrganizerEventsGroup result = apiInstance.organizerEventsEventIdGroupGet(eventId, language);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerEventsEventIdGroupGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();
$eventId = eventId_example; // String | 
$language = language_example; // String | 

try {
    $result = $api_instance->organizerEventsEventIdGroupGet($eventId, $language);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerEventsEventIdGroupGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::OPenAPIClient::Configuration;
use WWW::OPenAPIClient::DefaultApi;

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DefaultApi->new();
my $eventId = eventId_example; # String | 
my $language = language_example; # String | 

eval {
    my $result = $api_instance->organizerEventsEventIdGroupGet(eventId => $eventId, language => $language);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerEventsEventIdGroupGet: $@\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.DefaultApi()
eventId = eventId_example # String |  (default to null)
language = language_example # String |  (optional) (default to null)

try:
    api_response = api_instance.organizer_events_event_id_group_get(eventId, language=language)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerEventsEventIdGroupGet: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let eventId = eventId_example; // String
    let language = language_example; // String

    let mut context = DefaultApi::Context::default();
    let result = client.organizerEventsEventIdGroupGet(eventId, language, &context).wait();

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

Scopes

Parameters

Path parameters
Name Description
eventId*
String
Required
Query parameters
Name Description
language
String

Responses


organizerEventsEventIdOverrideSettingsGet

Get event override settings for events


/organizer/events/{eventId}/override-settings

Usage and SDK Samples

curl -X GET \
 -H "Accept: application/json" \
 "https://api.tixngo.io/prod/v1.0/organizer/events/{eventId}/override-settings?mobileAppId=mobileAppId_example"
import com.secutix.tixngo.v1.0.*;
import com.secutix.tixngo.v1.0.auth.*;
import com.secutix.tixngo.v1.0.model.*;
import com.secutix.tixngo.v1.0.api.DefaultApi;

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

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

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();
        String eventId = eventId_example; // String | 
        String mobileAppId = mobileAppId_example; // String | 

        try {
            array[OrganizerEventOverrideSettings] result = apiInstance.organizerEventsEventIdOverrideSettingsGet(eventId, mobileAppId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerEventsEventIdOverrideSettingsGet");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();

final String eventId = new String(); // String | 
final String mobileAppId = new String(); // String | 

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

import com.secutix.tixngo.v1.0.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        String eventId = eventId_example; // String | 
        String mobileAppId = mobileAppId_example; // String | 

        try {
            array[OrganizerEventOverrideSettings] result = apiInstance.organizerEventsEventIdOverrideSettingsGet(eventId, mobileAppId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerEventsEventIdOverrideSettingsGet");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];
String *eventId = eventId_example; //  (default to null)
String *mobileAppId = mobileAppId_example; //  (optional) (default to null)

[apiInstance organizerEventsEventIdOverrideSettingsGetWith:eventId
    mobileAppId:mobileAppId
              completionHandler: ^(array[OrganizerEventOverrideSettings] output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var TixngoRestApiBackendOrganizerApi = require('tixngo_rest_api_backend_organizer_api');

// Create an instance of the API class
var api = new TixngoRestApiBackendOrganizerApi.DefaultApi()
var eventId = eventId_example; // {String} 
var opts = {
  'mobileAppId': mobileAppId_example // {String} 
};

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

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

            // Create an instance of the API class
            var apiInstance = new DefaultApi();
            var eventId = eventId_example;  // String |  (default to null)
            var mobileAppId = mobileAppId_example;  // String |  (optional)  (default to null)

            try {
                array[OrganizerEventOverrideSettings] result = apiInstance.organizerEventsEventIdOverrideSettingsGet(eventId, mobileAppId);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerEventsEventIdOverrideSettingsGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();
$eventId = eventId_example; // String | 
$mobileAppId = mobileAppId_example; // String | 

try {
    $result = $api_instance->organizerEventsEventIdOverrideSettingsGet($eventId, $mobileAppId);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerEventsEventIdOverrideSettingsGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::OPenAPIClient::Configuration;
use WWW::OPenAPIClient::DefaultApi;

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DefaultApi->new();
my $eventId = eventId_example; # String | 
my $mobileAppId = mobileAppId_example; # String | 

eval {
    my $result = $api_instance->organizerEventsEventIdOverrideSettingsGet(eventId => $eventId, mobileAppId => $mobileAppId);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerEventsEventIdOverrideSettingsGet: $@\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.DefaultApi()
eventId = eventId_example # String |  (default to null)
mobileAppId = mobileAppId_example # String |  (optional) (default to null)

try:
    api_response = api_instance.organizer_events_event_id_override_settings_get(eventId, mobileAppId=mobileAppId)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerEventsEventIdOverrideSettingsGet: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let eventId = eventId_example; // String
    let mobileAppId = mobileAppId_example; // String

    let mut context = DefaultApi::Context::default();
    let result = client.organizerEventsEventIdOverrideSettingsGet(eventId, mobileAppId, &context).wait();

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

Scopes

Parameters

Path parameters
Name Description
eventId*
String
Required
Query parameters
Name Description
mobileAppId
String

Responses


organizerEventsEventIdOverrideSettingsPut

Update the override setting for event level


/organizer/events/{eventId}/override-settings

Usage and SDK Samples

curl -X PUT \
 -H "Content-Type: application/json" \
 "https://api.tixngo.io/prod/v1.0/organizer/events/{eventId}/override-settings" \
 -d '{
  "value" : "value",
  "key" : "key"
}'
import com.secutix.tixngo.v1.0.*;
import com.secutix.tixngo.v1.0.auth.*;
import com.secutix.tixngo.v1.0.model.*;
import com.secutix.tixngo.v1.0.api.DefaultApi;

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

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

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();
        String eventId = eventId_example; // String | 
        array[OrganizerEventEditOverrideSettings] organizerEventEditOverrideSettings = ; // array[OrganizerEventEditOverrideSettings] | 

        try {
            apiInstance.organizerEventsEventIdOverrideSettingsPut(eventId, organizerEventEditOverrideSettings);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerEventsEventIdOverrideSettingsPut");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();

final String eventId = new String(); // String | 
final array[OrganizerEventEditOverrideSettings] organizerEventEditOverrideSettings = new array[OrganizerEventEditOverrideSettings](); // array[OrganizerEventEditOverrideSettings] | 

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

import com.secutix.tixngo.v1.0.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        String eventId = eventId_example; // String | 
        array[OrganizerEventEditOverrideSettings] organizerEventEditOverrideSettings = ; // array[OrganizerEventEditOverrideSettings] | 

        try {
            apiInstance.organizerEventsEventIdOverrideSettingsPut(eventId, organizerEventEditOverrideSettings);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerEventsEventIdOverrideSettingsPut");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];
String *eventId = eventId_example; //  (default to null)
array[OrganizerEventEditOverrideSettings] *organizerEventEditOverrideSettings = ; //  (optional)

[apiInstance organizerEventsEventIdOverrideSettingsPutWith:eventId
    organizerEventEditOverrideSettings:organizerEventEditOverrideSettings
              completionHandler: ^(NSError* error) {
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var TixngoRestApiBackendOrganizerApi = require('tixngo_rest_api_backend_organizer_api');

// Create an instance of the API class
var api = new TixngoRestApiBackendOrganizerApi.DefaultApi()
var eventId = eventId_example; // {String} 
var opts = {
  'organizerEventEditOverrideSettings':  // {array[OrganizerEventEditOverrideSettings]} 
};

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

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

            // Create an instance of the API class
            var apiInstance = new DefaultApi();
            var eventId = eventId_example;  // String |  (default to null)
            var organizerEventEditOverrideSettings = new array[OrganizerEventEditOverrideSettings](); // array[OrganizerEventEditOverrideSettings] |  (optional) 

            try {
                apiInstance.organizerEventsEventIdOverrideSettingsPut(eventId, organizerEventEditOverrideSettings);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerEventsEventIdOverrideSettingsPut: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();
$eventId = eventId_example; // String | 
$organizerEventEditOverrideSettings = ; // array[OrganizerEventEditOverrideSettings] | 

try {
    $api_instance->organizerEventsEventIdOverrideSettingsPut($eventId, $organizerEventEditOverrideSettings);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerEventsEventIdOverrideSettingsPut: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::OPenAPIClient::Configuration;
use WWW::OPenAPIClient::DefaultApi;

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DefaultApi->new();
my $eventId = eventId_example; # String | 
my $organizerEventEditOverrideSettings = [WWW::OPenAPIClient::Object::array[OrganizerEventEditOverrideSettings]->new()]; # array[OrganizerEventEditOverrideSettings] | 

eval {
    $api_instance->organizerEventsEventIdOverrideSettingsPut(eventId => $eventId, organizerEventEditOverrideSettings => $organizerEventEditOverrideSettings);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerEventsEventIdOverrideSettingsPut: $@\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.DefaultApi()
eventId = eventId_example # String |  (default to null)
organizerEventEditOverrideSettings =  # array[OrganizerEventEditOverrideSettings] |  (optional)

try:
    api_instance.organizer_events_event_id_override_settings_put(eventId, organizerEventEditOverrideSettings=organizerEventEditOverrideSettings)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerEventsEventIdOverrideSettingsPut: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let eventId = eventId_example; // String
    let organizerEventEditOverrideSettings = ; // array[OrganizerEventEditOverrideSettings]

    let mut context = DefaultApi::Context::default();
    let result = client.organizerEventsEventIdOverrideSettingsPut(eventId, organizerEventEditOverrideSettings, &context).wait();

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

Scopes

Parameters

Path parameters
Name Description
eventId*
String
Required
Body parameters
Name Description
organizerEventEditOverrideSettings

Responses


organizerEventsEventIdPatch

Update information about an event, possibility to notify spectators.


/organizer/events/{eventId}

Usage and SDK Samples

curl -X PATCH \
 -H "Content-Type: application/json" \
 "https://api.tixngo.io/prod/v1.0/organizer/events/{eventId}?mustNotifySpectator=true&language=language_example" \
 -d '{
  "website" : "website",
  "metadata" : [ {
    "value" : "value",
    "key" : "key"
  }, {
    "value" : "value",
    "key" : "key"
  }, {
    "value" : "value",
    "key" : "key"
  }, {
    "value" : "value",
    "key" : "key"
  }, {
    "value" : "value",
    "key" : "key"
  } ],
  "address" : {
    "zip" : "zip",
    "site" : "site",
    "city" : "city",
    "countryCode" : "countryCode",
    "latitude" : 6.027456183070403,
    "line3" : "line3",
    "region" : "region",
    "line2" : "line2",
    "line1" : "line1",
    "longitude" : 0.8008281904610115
  },
  "bluetoothPreparationRibbonDisplayTime" : "bluetoothPreparationRibbonDisplayTime",
  "name" : "name",
  "startTime" : "startTime",
  "name2" : "name2",
  "expirationDate" : "expirationDate",
  "bluetoothPreparationRibbonEndTime" : "bluetoothPreparationRibbonEndTime",
  "group" : {
    "id" : "id"
  }
}'
import com.secutix.tixngo.v1.0.*;
import com.secutix.tixngo.v1.0.auth.*;
import com.secutix.tixngo.v1.0.model.*;
import com.secutix.tixngo.v1.0.api.DefaultApi;

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

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

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();
        String eventId = eventId_example; // String | 
        OrganizerEventPatch organizerEventPatch = ; // OrganizerEventPatch | 
        Boolean mustNotifySpectator = true; // Boolean | 
        String language = language_example; // String | 

        try {
            apiInstance.organizerEventsEventIdPatch(eventId, organizerEventPatch, mustNotifySpectator, language);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerEventsEventIdPatch");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();

final String eventId = new String(); // String | 
final OrganizerEventPatch organizerEventPatch = new OrganizerEventPatch(); // OrganizerEventPatch | 
final Boolean mustNotifySpectator = new Boolean(); // Boolean | 
final String language = new String(); // String | 

try {
    final result = await api_instance.organizerEventsEventIdPatch(eventId, organizerEventPatch, mustNotifySpectator, language);
    print(result);
} catch (e) {
    print('Exception when calling DefaultApi->organizerEventsEventIdPatch: $e\n');
}

import com.secutix.tixngo.v1.0.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        String eventId = eventId_example; // String | 
        OrganizerEventPatch organizerEventPatch = ; // OrganizerEventPatch | 
        Boolean mustNotifySpectator = true; // Boolean | 
        String language = language_example; // String | 

        try {
            apiInstance.organizerEventsEventIdPatch(eventId, organizerEventPatch, mustNotifySpectator, language);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerEventsEventIdPatch");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];
String *eventId = eventId_example; //  (default to null)
OrganizerEventPatch *organizerEventPatch = ; // 
Boolean *mustNotifySpectator = true; //  (optional) (default to null)
String *language = language_example; //  (optional) (default to null)

[apiInstance organizerEventsEventIdPatchWith:eventId
    organizerEventPatch:organizerEventPatch
    mustNotifySpectator:mustNotifySpectator
    language:language
              completionHandler: ^(NSError* error) {
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var TixngoRestApiBackendOrganizerApi = require('tixngo_rest_api_backend_organizer_api');

// Create an instance of the API class
var api = new TixngoRestApiBackendOrganizerApi.DefaultApi()
var eventId = eventId_example; // {String} 
var organizerEventPatch = ; // {OrganizerEventPatch} 
var opts = {
  'mustNotifySpectator': true, // {Boolean} 
  'language': language_example // {String} 
};

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

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

            // Create an instance of the API class
            var apiInstance = new DefaultApi();
            var eventId = eventId_example;  // String |  (default to null)
            var organizerEventPatch = new OrganizerEventPatch(); // OrganizerEventPatch | 
            var mustNotifySpectator = true;  // Boolean |  (optional)  (default to null)
            var language = language_example;  // String |  (optional)  (default to null)

            try {
                apiInstance.organizerEventsEventIdPatch(eventId, organizerEventPatch, mustNotifySpectator, language);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerEventsEventIdPatch: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();
$eventId = eventId_example; // String | 
$organizerEventPatch = ; // OrganizerEventPatch | 
$mustNotifySpectator = true; // Boolean | 
$language = language_example; // String | 

try {
    $api_instance->organizerEventsEventIdPatch($eventId, $organizerEventPatch, $mustNotifySpectator, $language);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerEventsEventIdPatch: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::OPenAPIClient::Configuration;
use WWW::OPenAPIClient::DefaultApi;

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DefaultApi->new();
my $eventId = eventId_example; # String | 
my $organizerEventPatch = WWW::OPenAPIClient::Object::OrganizerEventPatch->new(); # OrganizerEventPatch | 
my $mustNotifySpectator = true; # Boolean | 
my $language = language_example; # String | 

eval {
    $api_instance->organizerEventsEventIdPatch(eventId => $eventId, organizerEventPatch => $organizerEventPatch, mustNotifySpectator => $mustNotifySpectator, language => $language);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerEventsEventIdPatch: $@\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.DefaultApi()
eventId = eventId_example # String |  (default to null)
organizerEventPatch =  # OrganizerEventPatch | 
mustNotifySpectator = true # Boolean |  (optional) (default to null)
language = language_example # String |  (optional) (default to null)

try:
    api_instance.organizer_events_event_id_patch(eventId, organizerEventPatch, mustNotifySpectator=mustNotifySpectator, language=language)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerEventsEventIdPatch: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let eventId = eventId_example; // String
    let organizerEventPatch = ; // OrganizerEventPatch
    let mustNotifySpectator = true; // Boolean
    let language = language_example; // String

    let mut context = DefaultApi::Context::default();
    let result = client.organizerEventsEventIdPatch(eventId, organizerEventPatch, mustNotifySpectator, language, &context).wait();

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

Scopes

Parameters

Path parameters
Name Description
eventId*
String
Required
Body parameters
Name Description
organizerEventPatch *

Query parameters
Name Description
mustNotifySpectator
Boolean
language
String

Responses


organizerEventsEventIdReferenceDataTicketDetailsGet

Get reference data of the organizer.


/organizer/events/{eventId}/reference-data/ticket-details

Usage and SDK Samples

curl -X GET \
 -H "Accept: application/json" \
 "https://api.tixngo.io/prod/v1.0/organizer/events/{eventId}/reference-data/ticket-details?language=language_example"
import com.secutix.tixngo.v1.0.*;
import com.secutix.tixngo.v1.0.auth.*;
import com.secutix.tixngo.v1.0.model.*;
import com.secutix.tixngo.v1.0.api.DefaultApi;

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

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

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();
        String eventId = eventId_example; // String | 
        String language = language_example; // String | 

        try {
            OrganizerReferenceDataTicketDetailResponse result = apiInstance.organizerEventsEventIdReferenceDataTicketDetailsGet(eventId, language);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerEventsEventIdReferenceDataTicketDetailsGet");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();

final String eventId = new String(); // String | 
final String language = new String(); // String | 

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

import com.secutix.tixngo.v1.0.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        String eventId = eventId_example; // String | 
        String language = language_example; // String | 

        try {
            OrganizerReferenceDataTicketDetailResponse result = apiInstance.organizerEventsEventIdReferenceDataTicketDetailsGet(eventId, language);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerEventsEventIdReferenceDataTicketDetailsGet");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];
String *eventId = eventId_example; //  (default to null)
String *language = language_example; //  (optional) (default to null)

[apiInstance organizerEventsEventIdReferenceDataTicketDetailsGetWith:eventId
    language:language
              completionHandler: ^(OrganizerReferenceDataTicketDetailResponse output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var TixngoRestApiBackendOrganizerApi = require('tixngo_rest_api_backend_organizer_api');

// Create an instance of the API class
var api = new TixngoRestApiBackendOrganizerApi.DefaultApi()
var eventId = eventId_example; // {String} 
var opts = {
  'language': language_example // {String} 
};

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

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

            // Create an instance of the API class
            var apiInstance = new DefaultApi();
            var eventId = eventId_example;  // String |  (default to null)
            var language = language_example;  // String |  (optional)  (default to null)

            try {
                OrganizerReferenceDataTicketDetailResponse result = apiInstance.organizerEventsEventIdReferenceDataTicketDetailsGet(eventId, language);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerEventsEventIdReferenceDataTicketDetailsGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();
$eventId = eventId_example; // String | 
$language = language_example; // String | 

try {
    $result = $api_instance->organizerEventsEventIdReferenceDataTicketDetailsGet($eventId, $language);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerEventsEventIdReferenceDataTicketDetailsGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::OPenAPIClient::Configuration;
use WWW::OPenAPIClient::DefaultApi;

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DefaultApi->new();
my $eventId = eventId_example; # String | 
my $language = language_example; # String | 

eval {
    my $result = $api_instance->organizerEventsEventIdReferenceDataTicketDetailsGet(eventId => $eventId, language => $language);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerEventsEventIdReferenceDataTicketDetailsGet: $@\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.DefaultApi()
eventId = eventId_example # String |  (default to null)
language = language_example # String |  (optional) (default to null)

try:
    api_response = api_instance.organizer_events_event_id_reference_data_ticket_details_get(eventId, language=language)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerEventsEventIdReferenceDataTicketDetailsGet: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let eventId = eventId_example; // String
    let language = language_example; // String

    let mut context = DefaultApi::Context::default();
    let result = client.organizerEventsEventIdReferenceDataTicketDetailsGet(eventId, language, &context).wait();

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

Scopes

Parameters

Path parameters
Name Description
eventId*
String
Required
Query parameters
Name Description
language
String

Responses


organizerEventsEventIdReferenceDataTicketDetailsPut

Get reference data of the organizer.


/organizer/events/{eventId}/reference-data/ticket-details

Usage and SDK Samples

curl -X PUT \
 -H "Accept: application/json" \
 -H "Content-Type: application/json" \
 "https://api.tixngo.io/prod/v1.0/organizer/events/{eventId}/reference-data/ticket-details?language=language_example" \
 -d '{
  "hidden" : [ {
    "label" : "label",
    "isNewAdded" : false,
    "value" : "value",
    "key" : "key",
    "order" : 0
  }, {
    "label" : "label",
    "isNewAdded" : false,
    "value" : "value",
    "key" : "key",
    "order" : 0
  } ],
  "extra" : [ {
    "label" : "label",
    "isNewAdded" : false,
    "value" : "value",
    "key" : "key",
    "order" : 0
  }, {
    "label" : "label",
    "isNewAdded" : false,
    "value" : "value",
    "key" : "key",
    "order" : 0
  } ],
  "main" : [ {
    "label" : "label",
    "isNewAdded" : false,
    "value" : "value",
    "key" : "key",
    "order" : 0
  }, {
    "label" : "label",
    "isNewAdded" : false,
    "value" : "value",
    "key" : "key",
    "order" : 0
  } ]
}'
import com.secutix.tixngo.v1.0.*;
import com.secutix.tixngo.v1.0.auth.*;
import com.secutix.tixngo.v1.0.model.*;
import com.secutix.tixngo.v1.0.api.DefaultApi;

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

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

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();
        String eventId = eventId_example; // String | 
        String language = language_example; // String | 
        OrganizerReferenceDataTicketDetailPutRequest organizerReferenceDataTicketDetailPutRequest = ; // OrganizerReferenceDataTicketDetailPutRequest | 

        try {
            OrganizerReferenceDataTicketDetailResponse result = apiInstance.organizerEventsEventIdReferenceDataTicketDetailsPut(eventId, language, organizerReferenceDataTicketDetailPutRequest);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerEventsEventIdReferenceDataTicketDetailsPut");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();

final String eventId = new String(); // String | 
final String language = new String(); // String | 
final OrganizerReferenceDataTicketDetailPutRequest organizerReferenceDataTicketDetailPutRequest = new OrganizerReferenceDataTicketDetailPutRequest(); // OrganizerReferenceDataTicketDetailPutRequest | 

try {
    final result = await api_instance.organizerEventsEventIdReferenceDataTicketDetailsPut(eventId, language, organizerReferenceDataTicketDetailPutRequest);
    print(result);
} catch (e) {
    print('Exception when calling DefaultApi->organizerEventsEventIdReferenceDataTicketDetailsPut: $e\n');
}

import com.secutix.tixngo.v1.0.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        String eventId = eventId_example; // String | 
        String language = language_example; // String | 
        OrganizerReferenceDataTicketDetailPutRequest organizerReferenceDataTicketDetailPutRequest = ; // OrganizerReferenceDataTicketDetailPutRequest | 

        try {
            OrganizerReferenceDataTicketDetailResponse result = apiInstance.organizerEventsEventIdReferenceDataTicketDetailsPut(eventId, language, organizerReferenceDataTicketDetailPutRequest);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerEventsEventIdReferenceDataTicketDetailsPut");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];
String *eventId = eventId_example; //  (default to null)
String *language = language_example; //  (optional) (default to null)
OrganizerReferenceDataTicketDetailPutRequest *organizerReferenceDataTicketDetailPutRequest = ; //  (optional)

[apiInstance organizerEventsEventIdReferenceDataTicketDetailsPutWith:eventId
    language:language
    organizerReferenceDataTicketDetailPutRequest:organizerReferenceDataTicketDetailPutRequest
              completionHandler: ^(OrganizerReferenceDataTicketDetailResponse output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var TixngoRestApiBackendOrganizerApi = require('tixngo_rest_api_backend_organizer_api');

// Create an instance of the API class
var api = new TixngoRestApiBackendOrganizerApi.DefaultApi()
var eventId = eventId_example; // {String} 
var opts = {
  'language': language_example, // {String} 
  'organizerReferenceDataTicketDetailPutRequest':  // {OrganizerReferenceDataTicketDetailPutRequest} 
};

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

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

            // Create an instance of the API class
            var apiInstance = new DefaultApi();
            var eventId = eventId_example;  // String |  (default to null)
            var language = language_example;  // String |  (optional)  (default to null)
            var organizerReferenceDataTicketDetailPutRequest = new OrganizerReferenceDataTicketDetailPutRequest(); // OrganizerReferenceDataTicketDetailPutRequest |  (optional) 

            try {
                OrganizerReferenceDataTicketDetailResponse result = apiInstance.organizerEventsEventIdReferenceDataTicketDetailsPut(eventId, language, organizerReferenceDataTicketDetailPutRequest);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerEventsEventIdReferenceDataTicketDetailsPut: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();
$eventId = eventId_example; // String | 
$language = language_example; // String | 
$organizerReferenceDataTicketDetailPutRequest = ; // OrganizerReferenceDataTicketDetailPutRequest | 

try {
    $result = $api_instance->organizerEventsEventIdReferenceDataTicketDetailsPut($eventId, $language, $organizerReferenceDataTicketDetailPutRequest);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerEventsEventIdReferenceDataTicketDetailsPut: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::OPenAPIClient::Configuration;
use WWW::OPenAPIClient::DefaultApi;

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DefaultApi->new();
my $eventId = eventId_example; # String | 
my $language = language_example; # String | 
my $organizerReferenceDataTicketDetailPutRequest = WWW::OPenAPIClient::Object::OrganizerReferenceDataTicketDetailPutRequest->new(); # OrganizerReferenceDataTicketDetailPutRequest | 

eval {
    my $result = $api_instance->organizerEventsEventIdReferenceDataTicketDetailsPut(eventId => $eventId, language => $language, organizerReferenceDataTicketDetailPutRequest => $organizerReferenceDataTicketDetailPutRequest);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerEventsEventIdReferenceDataTicketDetailsPut: $@\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.DefaultApi()
eventId = eventId_example # String |  (default to null)
language = language_example # String |  (optional) (default to null)
organizerReferenceDataTicketDetailPutRequest =  # OrganizerReferenceDataTicketDetailPutRequest |  (optional)

try:
    api_response = api_instance.organizer_events_event_id_reference_data_ticket_details_put(eventId, language=language, organizerReferenceDataTicketDetailPutRequest=organizerReferenceDataTicketDetailPutRequest)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerEventsEventIdReferenceDataTicketDetailsPut: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let eventId = eventId_example; // String
    let language = language_example; // String
    let organizerReferenceDataTicketDetailPutRequest = ; // OrganizerReferenceDataTicketDetailPutRequest

    let mut context = DefaultApi::Context::default();
    let result = client.organizerEventsEventIdReferenceDataTicketDetailsPut(eventId, language, organizerReferenceDataTicketDetailPutRequest, &context).wait();

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

Scopes

Parameters

Path parameters
Name Description
eventId*
String
Required
Body parameters
Name Description
organizerReferenceDataTicketDetailPutRequest

Query parameters
Name Description
language
String

Responses


organizerEventsEventIdTicketsPatch

Update event information and some fields of tickets belonging to this event, possibility to notify spectators.


/organizer/events/{eventId}/tickets

Usage and SDK Samples

curl -X PATCH \
 -H "Content-Type: application/json" \
 "https://api.tixngo.io/prod/v1.0/organizer/events/{eventId}/tickets?transferRulesId=transferRulesId_example&mustNotifySpectator=true&language=language_example" \
 -d '{
  "image" : "image",
  "website" : "website",
  "transferRules" : {
    "maxNumberOfTransferPerTicketInGroupId" : 3,
    "allowReturnToOrganizerForInitialSpectator" : false,
    "s360ExchangeForAnySpectator" : false,
    "maxNumberOfTransferPerPhoneInGroupId" : 9,
    "groupId" : "groupId",
    "allowTransferAfterActivation" : false,
    "allowTransferAfterControl" : false,
    "keepOneAtInjectInGroupId" : false,
    "keepOneInGroupId" : false,
    "assignTransferLimit" : 2,
    "allowTransferAfterActivationByBT" : true,
    "allowTransferMainApplicant" : false,
    "allowTransfer" : true,
    "s360ExchangeForInitialSpectator" : false,
    "transferLevel" : 4,
    "allowReturnToOrganizer" : false,
    "maxNumberOfTicketPerPhoneInGroupId" : 7
  },
  "metadata" : [ {
    "value" : "value",
    "key" : "key"
  }, {
    "value" : "value",
    "key" : "key"
  }, {
    "value" : "value",
    "key" : "key"
  }, {
    "value" : "value",
    "key" : "key"
  }, {
    "value" : "value",
    "key" : "key"
  } ],
  "address" : {
    "zip" : "zip",
    "site" : "site",
    "city" : "city",
    "countryCode" : "countryCode",
    "latitude" : 6.027456183070403,
    "line3" : "line3",
    "region" : "region",
    "line2" : "line2",
    "line1" : "line1",
    "longitude" : 0.8008281904610115
  },
  "mobileAppId" : "mobileAppId",
  "configurations" : [ {
    "method" : "method",
    "activationTime" : "2000-01-23T04:56:07.000+00:00",
    "activationId" : "activationId"
  }, {
    "method" : "method",
    "activationTime" : "2000-01-23T04:56:07.000+00:00",
    "activationId" : "activationId"
  } ],
  "design" : {
    "backgroundColor" : "backgroundColor",
    "secureColor" : "secureColor",
    "secureImage" : "secureImage",
    "id" : "id"
  },
  "name" : "name",
  "assignmentExtraFields" : [ {
    "description" : "description",
    "value" : true,
    "key" : "key"
  }, {
    "description" : "description",
    "value" : true,
    "key" : "key"
  }, {
    "description" : "description",
    "value" : true,
    "key" : "key"
  }, {
    "description" : "description",
    "value" : true,
    "key" : "key"
  }, {
    "description" : "description",
    "value" : true,
    "key" : "key"
  } ],
  "eventDateTimeDetails" : {
    "bluetoothPreparationRibbonDisplayTime" : "2000-01-23T04:56:07.000+00:00",
    "timeZone" : 0,
    "startTime" : "2000-01-23T04:56:07.000+00:00",
    "expirationDate" : "2000-01-23T04:56:07.000+00:00",
    "bluetoothPreparationRibbonEndTime" : "2000-01-23T04:56:07.000+00:00"
  }
}'
import com.secutix.tixngo.v1.0.*;
import com.secutix.tixngo.v1.0.auth.*;
import com.secutix.tixngo.v1.0.model.*;
import com.secutix.tixngo.v1.0.api.DefaultApi;

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

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

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();
        String eventId = tixngo-league; // String | event id for the given event
        OrganizerEventDetailsRequest organizerEventDetailsRequest = ; // OrganizerEventDetailsRequest | 
        String transferRulesId = transferRulesId_example; // String | transfer rules id targets tickets to update, if null all tickets
        Boolean mustNotifySpectator = true; // Boolean | 
        String language = language_example; // String | 

        try {
            apiInstance.organizerEventsEventIdTicketsPatch(eventId, organizerEventDetailsRequest, transferRulesId, mustNotifySpectator, language);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerEventsEventIdTicketsPatch");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();

final String eventId = new String(); // String | event id for the given event
final OrganizerEventDetailsRequest organizerEventDetailsRequest = new OrganizerEventDetailsRequest(); // OrganizerEventDetailsRequest | 
final String transferRulesId = new String(); // String | transfer rules id targets tickets to update, if null all tickets
final Boolean mustNotifySpectator = new Boolean(); // Boolean | 
final String language = new String(); // String | 

try {
    final result = await api_instance.organizerEventsEventIdTicketsPatch(eventId, organizerEventDetailsRequest, transferRulesId, mustNotifySpectator, language);
    print(result);
} catch (e) {
    print('Exception when calling DefaultApi->organizerEventsEventIdTicketsPatch: $e\n');
}

import com.secutix.tixngo.v1.0.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        String eventId = tixngo-league; // String | event id for the given event
        OrganizerEventDetailsRequest organizerEventDetailsRequest = ; // OrganizerEventDetailsRequest | 
        String transferRulesId = transferRulesId_example; // String | transfer rules id targets tickets to update, if null all tickets
        Boolean mustNotifySpectator = true; // Boolean | 
        String language = language_example; // String | 

        try {
            apiInstance.organizerEventsEventIdTicketsPatch(eventId, organizerEventDetailsRequest, transferRulesId, mustNotifySpectator, language);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerEventsEventIdTicketsPatch");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];
String *eventId = tixngo-league; // event id for the given event (default to null)
OrganizerEventDetailsRequest *organizerEventDetailsRequest = ; // 
String *transferRulesId = transferRulesId_example; // transfer rules id targets tickets to update, if null all tickets (optional) (default to null)
Boolean *mustNotifySpectator = true; //  (optional) (default to null)
String *language = language_example; //  (optional) (default to null)

[apiInstance organizerEventsEventIdTicketsPatchWith:eventId
    organizerEventDetailsRequest:organizerEventDetailsRequest
    transferRulesId:transferRulesId
    mustNotifySpectator:mustNotifySpectator
    language:language
              completionHandler: ^(NSError* error) {
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var TixngoRestApiBackendOrganizerApi = require('tixngo_rest_api_backend_organizer_api');

// Create an instance of the API class
var api = new TixngoRestApiBackendOrganizerApi.DefaultApi()
var eventId = tixngo-league; // {String} event id for the given event
var organizerEventDetailsRequest = ; // {OrganizerEventDetailsRequest} 
var opts = {
  'transferRulesId': transferRulesId_example, // {String} transfer rules id targets tickets to update, if null all tickets
  'mustNotifySpectator': true, // {Boolean} 
  'language': language_example // {String} 
};

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

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

            // Create an instance of the API class
            var apiInstance = new DefaultApi();
            var eventId = tixngo-league;  // String | event id for the given event (default to null)
            var organizerEventDetailsRequest = new OrganizerEventDetailsRequest(); // OrganizerEventDetailsRequest | 
            var transferRulesId = transferRulesId_example;  // String | transfer rules id targets tickets to update, if null all tickets (optional)  (default to null)
            var mustNotifySpectator = true;  // Boolean |  (optional)  (default to null)
            var language = language_example;  // String |  (optional)  (default to null)

            try {
                apiInstance.organizerEventsEventIdTicketsPatch(eventId, organizerEventDetailsRequest, transferRulesId, mustNotifySpectator, language);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerEventsEventIdTicketsPatch: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();
$eventId = tixngo-league; // String | event id for the given event
$organizerEventDetailsRequest = ; // OrganizerEventDetailsRequest | 
$transferRulesId = transferRulesId_example; // String | transfer rules id targets tickets to update, if null all tickets
$mustNotifySpectator = true; // Boolean | 
$language = language_example; // String | 

try {
    $api_instance->organizerEventsEventIdTicketsPatch($eventId, $organizerEventDetailsRequest, $transferRulesId, $mustNotifySpectator, $language);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerEventsEventIdTicketsPatch: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::OPenAPIClient::Configuration;
use WWW::OPenAPIClient::DefaultApi;

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DefaultApi->new();
my $eventId = tixngo-league; # String | event id for the given event
my $organizerEventDetailsRequest = WWW::OPenAPIClient::Object::OrganizerEventDetailsRequest->new(); # OrganizerEventDetailsRequest | 
my $transferRulesId = transferRulesId_example; # String | transfer rules id targets tickets to update, if null all tickets
my $mustNotifySpectator = true; # Boolean | 
my $language = language_example; # String | 

eval {
    $api_instance->organizerEventsEventIdTicketsPatch(eventId => $eventId, organizerEventDetailsRequest => $organizerEventDetailsRequest, transferRulesId => $transferRulesId, mustNotifySpectator => $mustNotifySpectator, language => $language);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerEventsEventIdTicketsPatch: $@\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.DefaultApi()
eventId = tixngo-league # String | event id for the given event (default to null)
organizerEventDetailsRequest =  # OrganizerEventDetailsRequest | 
transferRulesId = transferRulesId_example # String | transfer rules id targets tickets to update, if null all tickets (optional) (default to null)
mustNotifySpectator = true # Boolean |  (optional) (default to null)
language = language_example # String |  (optional) (default to null)

try:
    api_instance.organizer_events_event_id_tickets_patch(eventId, organizerEventDetailsRequest, transferRulesId=transferRulesId, mustNotifySpectator=mustNotifySpectator, language=language)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerEventsEventIdTicketsPatch: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let eventId = tixngo-league; // String
    let organizerEventDetailsRequest = ; // OrganizerEventDetailsRequest
    let transferRulesId = transferRulesId_example; // String
    let mustNotifySpectator = true; // Boolean
    let language = language_example; // String

    let mut context = DefaultApi::Context::default();
    let result = client.organizerEventsEventIdTicketsPatch(eventId, organizerEventDetailsRequest, transferRulesId, mustNotifySpectator, language, &context).wait();

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

Scopes

Parameters

Path parameters
Name Description
eventId*
String
event id for the given event
Required
Body parameters
Name Description
organizerEventDetailsRequest *

Query parameters
Name Description
transferRulesId
String
transfer rules id targets tickets to update, if null all tickets
mustNotifySpectator
Boolean
language
String

Responses


organizerEventsExportGet

get report by name


/organizer/events/export

Usage and SDK Samples

curl -X GET \
 -H "Accept: application/json" \
 "https://api.tixngo.io/prod/v1.0/organizer/events/export?eventName=eventName_example&eventId=eventId_example&eventIds=&startTime=Thu Feb 20 00:00:00 UTC 2020&filter=&dateFrom=2013-10-20T19:20:30+01:00&dateTo=2013-10-20T19:20:30+01:00&eventGroupIds="
import com.secutix.tixngo.v1.0.*;
import com.secutix.tixngo.v1.0.auth.*;
import com.secutix.tixngo.v1.0.model.*;
import com.secutix.tixngo.v1.0.api.DefaultApi;

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

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

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();
        String eventName = eventName_example; // String | 
        String eventId = eventId_example; // String | 
        array[String] eventIds = ; // array[String] | 
        date startTime = Thu Feb 20 00:00:00 UTC 2020; // date | 
        EventFilter filter = ; // EventFilter | 
        Date dateFrom = 2013-10-20T19:20:30+01:00; // Date | 
        Date dateTo = 2013-10-20T19:20:30+01:00; // Date | 
        array[String] eventGroupIds = ; // array[String] | 

        try {
            array[OrganizerEventExportResponse] result = apiInstance.organizerEventsExportGet(eventName, eventId, eventIds, startTime, filter, dateFrom, dateTo, eventGroupIds);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerEventsExportGet");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();

final String eventName = new String(); // String | 
final String eventId = new String(); // String | 
final array[String] eventIds = new array[String](); // array[String] | 
final date startTime = new date(); // date | 
final EventFilter filter = new EventFilter(); // EventFilter | 
final Date dateFrom = new Date(); // Date | 
final Date dateTo = new Date(); // Date | 
final array[String] eventGroupIds = new array[String](); // array[String] | 

try {
    final result = await api_instance.organizerEventsExportGet(eventName, eventId, eventIds, startTime, filter, dateFrom, dateTo, eventGroupIds);
    print(result);
} catch (e) {
    print('Exception when calling DefaultApi->organizerEventsExportGet: $e\n');
}

import com.secutix.tixngo.v1.0.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        String eventName = eventName_example; // String | 
        String eventId = eventId_example; // String | 
        array[String] eventIds = ; // array[String] | 
        date startTime = Thu Feb 20 00:00:00 UTC 2020; // date | 
        EventFilter filter = ; // EventFilter | 
        Date dateFrom = 2013-10-20T19:20:30+01:00; // Date | 
        Date dateTo = 2013-10-20T19:20:30+01:00; // Date | 
        array[String] eventGroupIds = ; // array[String] | 

        try {
            array[OrganizerEventExportResponse] result = apiInstance.organizerEventsExportGet(eventName, eventId, eventIds, startTime, filter, dateFrom, dateTo, eventGroupIds);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerEventsExportGet");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];
String *eventName = eventName_example; //  (optional) (default to null)
String *eventId = eventId_example; //  (optional) (default to null)
array[String] *eventIds = ; //  (optional) (default to null)
date *startTime = Thu Feb 20 00:00:00 UTC 2020; //  (optional) (default to null)
EventFilter *filter = ; //  (optional) (default to null)
Date *dateFrom = 2013-10-20T19:20:30+01:00; //  (optional) (default to null)
Date *dateTo = 2013-10-20T19:20:30+01:00; //  (optional) (default to null)
array[String] *eventGroupIds = ; //  (optional) (default to null)

[apiInstance organizerEventsExportGetWith:eventName
    eventId:eventId
    eventIds:eventIds
    startTime:startTime
    filter:filter
    dateFrom:dateFrom
    dateTo:dateTo
    eventGroupIds:eventGroupIds
              completionHandler: ^(array[OrganizerEventExportResponse] output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var TixngoRestApiBackendOrganizerApi = require('tixngo_rest_api_backend_organizer_api');

// Create an instance of the API class
var api = new TixngoRestApiBackendOrganizerApi.DefaultApi()
var opts = {
  'eventName': eventName_example, // {String} 
  'eventId': eventId_example, // {String} 
  'eventIds': , // {array[String]} 
  'startTime': Thu Feb 20 00:00:00 UTC 2020, // {date} 
  'filter': , // {EventFilter} 
  'dateFrom': 2013-10-20T19:20:30+01:00, // {Date} 
  'dateTo': 2013-10-20T19:20:30+01:00, // {Date} 
  'eventGroupIds':  // {array[String]} 
};

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

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

            // Create an instance of the API class
            var apiInstance = new DefaultApi();
            var eventName = eventName_example;  // String |  (optional)  (default to null)
            var eventId = eventId_example;  // String |  (optional)  (default to null)
            var eventIds = new array[String](); // array[String] |  (optional)  (default to null)
            var startTime = Thu Feb 20 00:00:00 UTC 2020;  // date |  (optional)  (default to null)
            var filter = new EventFilter(); // EventFilter |  (optional)  (default to null)
            var dateFrom = 2013-10-20T19:20:30+01:00;  // Date |  (optional)  (default to null)
            var dateTo = 2013-10-20T19:20:30+01:00;  // Date |  (optional)  (default to null)
            var eventGroupIds = new array[String](); // array[String] |  (optional)  (default to null)

            try {
                array[OrganizerEventExportResponse] result = apiInstance.organizerEventsExportGet(eventName, eventId, eventIds, startTime, filter, dateFrom, dateTo, eventGroupIds);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerEventsExportGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();
$eventName = eventName_example; // String | 
$eventId = eventId_example; // String | 
$eventIds = ; // array[String] | 
$startTime = Thu Feb 20 00:00:00 UTC 2020; // date | 
$filter = ; // EventFilter | 
$dateFrom = 2013-10-20T19:20:30+01:00; // Date | 
$dateTo = 2013-10-20T19:20:30+01:00; // Date | 
$eventGroupIds = ; // array[String] | 

try {
    $result = $api_instance->organizerEventsExportGet($eventName, $eventId, $eventIds, $startTime, $filter, $dateFrom, $dateTo, $eventGroupIds);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerEventsExportGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::OPenAPIClient::Configuration;
use WWW::OPenAPIClient::DefaultApi;

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DefaultApi->new();
my $eventName = eventName_example; # String | 
my $eventId = eventId_example; # String | 
my $eventIds = []; # array[String] | 
my $startTime = Thu Feb 20 00:00:00 UTC 2020; # date | 
my $filter = ; # EventFilter | 
my $dateFrom = 2013-10-20T19:20:30+01:00; # Date | 
my $dateTo = 2013-10-20T19:20:30+01:00; # Date | 
my $eventGroupIds = []; # array[String] | 

eval {
    my $result = $api_instance->organizerEventsExportGet(eventName => $eventName, eventId => $eventId, eventIds => $eventIds, startTime => $startTime, filter => $filter, dateFrom => $dateFrom, dateTo => $dateTo, eventGroupIds => $eventGroupIds);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerEventsExportGet: $@\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.DefaultApi()
eventName = eventName_example # String |  (optional) (default to null)
eventId = eventId_example # String |  (optional) (default to null)
eventIds =  # array[String] |  (optional) (default to null)
startTime = Thu Feb 20 00:00:00 UTC 2020 # date |  (optional) (default to null)
filter =  # EventFilter |  (optional) (default to null)
dateFrom = 2013-10-20T19:20:30+01:00 # Date |  (optional) (default to null)
dateTo = 2013-10-20T19:20:30+01:00 # Date |  (optional) (default to null)
eventGroupIds =  # array[String] |  (optional) (default to null)

try:
    api_response = api_instance.organizer_events_export_get(eventName=eventName, eventId=eventId, eventIds=eventIds, startTime=startTime, filter=filter, dateFrom=dateFrom, dateTo=dateTo, eventGroupIds=eventGroupIds)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerEventsExportGet: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let eventName = eventName_example; // String
    let eventId = eventId_example; // String
    let eventIds = ; // array[String]
    let startTime = Thu Feb 20 00:00:00 UTC 2020; // date
    let filter = ; // EventFilter
    let dateFrom = 2013-10-20T19:20:30+01:00; // Date
    let dateTo = 2013-10-20T19:20:30+01:00; // Date
    let eventGroupIds = ; // array[String]

    let mut context = DefaultApi::Context::default();
    let result = client.organizerEventsExportGet(eventName, eventId, eventIds, startTime, filter, dateFrom, dateTo, eventGroupIds, &context).wait();

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

Scopes

Parameters

Query parameters
Name Description
eventName
String
eventId
String
eventIds
array[String]
startTime
date (date)
filter
EventFilter
dateFrom
Date (date-time)
dateTo
Date (date-time)
eventGroupIds
array[String]

Responses


organizerEventsExportMultilingualsGet

export multilinguals of an events


/organizer/events/export-multilinguals

Usage and SDK Samples

curl -X GET \
 -H "Accept: application/json" \
 "https://api.tixngo.io/prod/v1.0/organizer/events/export-multilinguals?eventName=eventName_example&eventId=eventId_example&eventIds=&startDate=Thu Feb 20 00:00:00 UTC 2020&filter=&dateFrom=2013-10-20T19:20:30+01:00&dateTo=2013-10-20T19:20:30+01:00&excludeTransferRules=true&eventGroupIds="
import com.secutix.tixngo.v1.0.*;
import com.secutix.tixngo.v1.0.auth.*;
import com.secutix.tixngo.v1.0.model.*;
import com.secutix.tixngo.v1.0.api.DefaultApi;

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

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

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();
        String eventName = eventName_example; // String | 
        String eventId = eventId_example; // String | 
        array[String] eventIds = ; // array[String] | 
        date startDate = Thu Feb 20 00:00:00 UTC 2020; // date | 
        EventFilter filter = ; // EventFilter | 
        Date dateFrom = 2013-10-20T19:20:30+01:00; // Date | 
        Date dateTo = 2013-10-20T19:20:30+01:00; // Date | 
        Boolean excludeTransferRules = true; // Boolean | 
        array[String] eventGroupIds = ; // array[String] | 

        try {
            array[OrganizerEventExportMultilingualsResponse] result = apiInstance.organizerEventsExportMultilingualsGet(eventName, eventId, eventIds, startDate, filter, dateFrom, dateTo, excludeTransferRules, eventGroupIds);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerEventsExportMultilingualsGet");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();

final String eventName = new String(); // String | 
final String eventId = new String(); // String | 
final array[String] eventIds = new array[String](); // array[String] | 
final date startDate = new date(); // date | 
final EventFilter filter = new EventFilter(); // EventFilter | 
final Date dateFrom = new Date(); // Date | 
final Date dateTo = new Date(); // Date | 
final Boolean excludeTransferRules = new Boolean(); // Boolean | 
final array[String] eventGroupIds = new array[String](); // array[String] | 

try {
    final result = await api_instance.organizerEventsExportMultilingualsGet(eventName, eventId, eventIds, startDate, filter, dateFrom, dateTo, excludeTransferRules, eventGroupIds);
    print(result);
} catch (e) {
    print('Exception when calling DefaultApi->organizerEventsExportMultilingualsGet: $e\n');
}

import com.secutix.tixngo.v1.0.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        String eventName = eventName_example; // String | 
        String eventId = eventId_example; // String | 
        array[String] eventIds = ; // array[String] | 
        date startDate = Thu Feb 20 00:00:00 UTC 2020; // date | 
        EventFilter filter = ; // EventFilter | 
        Date dateFrom = 2013-10-20T19:20:30+01:00; // Date | 
        Date dateTo = 2013-10-20T19:20:30+01:00; // Date | 
        Boolean excludeTransferRules = true; // Boolean | 
        array[String] eventGroupIds = ; // array[String] | 

        try {
            array[OrganizerEventExportMultilingualsResponse] result = apiInstance.organizerEventsExportMultilingualsGet(eventName, eventId, eventIds, startDate, filter, dateFrom, dateTo, excludeTransferRules, eventGroupIds);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerEventsExportMultilingualsGet");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];
String *eventName = eventName_example; //  (optional) (default to null)
String *eventId = eventId_example; //  (optional) (default to null)
array[String] *eventIds = ; //  (optional) (default to null)
date *startDate = Thu Feb 20 00:00:00 UTC 2020; //  (optional) (default to null)
EventFilter *filter = ; //  (optional) (default to null)
Date *dateFrom = 2013-10-20T19:20:30+01:00; //  (optional) (default to null)
Date *dateTo = 2013-10-20T19:20:30+01:00; //  (optional) (default to null)
Boolean *excludeTransferRules = true; //  (optional) (default to null)
array[String] *eventGroupIds = ; //  (optional) (default to null)

[apiInstance organizerEventsExportMultilingualsGetWith:eventName
    eventId:eventId
    eventIds:eventIds
    startDate:startDate
    filter:filter
    dateFrom:dateFrom
    dateTo:dateTo
    excludeTransferRules:excludeTransferRules
    eventGroupIds:eventGroupIds
              completionHandler: ^(array[OrganizerEventExportMultilingualsResponse] output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var TixngoRestApiBackendOrganizerApi = require('tixngo_rest_api_backend_organizer_api');

// Create an instance of the API class
var api = new TixngoRestApiBackendOrganizerApi.DefaultApi()
var opts = {
  'eventName': eventName_example, // {String} 
  'eventId': eventId_example, // {String} 
  'eventIds': , // {array[String]} 
  'startDate': Thu Feb 20 00:00:00 UTC 2020, // {date} 
  'filter': , // {EventFilter} 
  'dateFrom': 2013-10-20T19:20:30+01:00, // {Date} 
  'dateTo': 2013-10-20T19:20:30+01:00, // {Date} 
  'excludeTransferRules': true, // {Boolean} 
  'eventGroupIds':  // {array[String]} 
};

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

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

            // Create an instance of the API class
            var apiInstance = new DefaultApi();
            var eventName = eventName_example;  // String |  (optional)  (default to null)
            var eventId = eventId_example;  // String |  (optional)  (default to null)
            var eventIds = new array[String](); // array[String] |  (optional)  (default to null)
            var startDate = Thu Feb 20 00:00:00 UTC 2020;  // date |  (optional)  (default to null)
            var filter = new EventFilter(); // EventFilter |  (optional)  (default to null)
            var dateFrom = 2013-10-20T19:20:30+01:00;  // Date |  (optional)  (default to null)
            var dateTo = 2013-10-20T19:20:30+01:00;  // Date |  (optional)  (default to null)
            var excludeTransferRules = true;  // Boolean |  (optional)  (default to null)
            var eventGroupIds = new array[String](); // array[String] |  (optional)  (default to null)

            try {
                array[OrganizerEventExportMultilingualsResponse] result = apiInstance.organizerEventsExportMultilingualsGet(eventName, eventId, eventIds, startDate, filter, dateFrom, dateTo, excludeTransferRules, eventGroupIds);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerEventsExportMultilingualsGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();
$eventName = eventName_example; // String | 
$eventId = eventId_example; // String | 
$eventIds = ; // array[String] | 
$startDate = Thu Feb 20 00:00:00 UTC 2020; // date | 
$filter = ; // EventFilter | 
$dateFrom = 2013-10-20T19:20:30+01:00; // Date | 
$dateTo = 2013-10-20T19:20:30+01:00; // Date | 
$excludeTransferRules = true; // Boolean | 
$eventGroupIds = ; // array[String] | 

try {
    $result = $api_instance->organizerEventsExportMultilingualsGet($eventName, $eventId, $eventIds, $startDate, $filter, $dateFrom, $dateTo, $excludeTransferRules, $eventGroupIds);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerEventsExportMultilingualsGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::OPenAPIClient::Configuration;
use WWW::OPenAPIClient::DefaultApi;

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DefaultApi->new();
my $eventName = eventName_example; # String | 
my $eventId = eventId_example; # String | 
my $eventIds = []; # array[String] | 
my $startDate = Thu Feb 20 00:00:00 UTC 2020; # date | 
my $filter = ; # EventFilter | 
my $dateFrom = 2013-10-20T19:20:30+01:00; # Date | 
my $dateTo = 2013-10-20T19:20:30+01:00; # Date | 
my $excludeTransferRules = true; # Boolean | 
my $eventGroupIds = []; # array[String] | 

eval {
    my $result = $api_instance->organizerEventsExportMultilingualsGet(eventName => $eventName, eventId => $eventId, eventIds => $eventIds, startDate => $startDate, filter => $filter, dateFrom => $dateFrom, dateTo => $dateTo, excludeTransferRules => $excludeTransferRules, eventGroupIds => $eventGroupIds);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerEventsExportMultilingualsGet: $@\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.DefaultApi()
eventName = eventName_example # String |  (optional) (default to null)
eventId = eventId_example # String |  (optional) (default to null)
eventIds =  # array[String] |  (optional) (default to null)
startDate = Thu Feb 20 00:00:00 UTC 2020 # date |  (optional) (default to null)
filter =  # EventFilter |  (optional) (default to null)
dateFrom = 2013-10-20T19:20:30+01:00 # Date |  (optional) (default to null)
dateTo = 2013-10-20T19:20:30+01:00 # Date |  (optional) (default to null)
excludeTransferRules = true # Boolean |  (optional) (default to null)
eventGroupIds =  # array[String] |  (optional) (default to null)

try:
    api_response = api_instance.organizer_events_export_multilinguals_get(eventName=eventName, eventId=eventId, eventIds=eventIds, startDate=startDate, filter=filter, dateFrom=dateFrom, dateTo=dateTo, excludeTransferRules=excludeTransferRules, eventGroupIds=eventGroupIds)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerEventsExportMultilingualsGet: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let eventName = eventName_example; // String
    let eventId = eventId_example; // String
    let eventIds = ; // array[String]
    let startDate = Thu Feb 20 00:00:00 UTC 2020; // date
    let filter = ; // EventFilter
    let dateFrom = 2013-10-20T19:20:30+01:00; // Date
    let dateTo = 2013-10-20T19:20:30+01:00; // Date
    let excludeTransferRules = true; // Boolean
    let eventGroupIds = ; // array[String]

    let mut context = DefaultApi::Context::default();
    let result = client.organizerEventsExportMultilingualsGet(eventName, eventId, eventIds, startDate, filter, dateFrom, dateTo, excludeTransferRules, eventGroupIds, &context).wait();

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

Scopes

Parameters

Query parameters
Name Description
eventName
String
eventId
String
eventIds
array[String]
startDate
date (date)
filter
EventFilter
dateFrom
Date (date-time)
dateTo
Date (date-time)
excludeTransferRules
Boolean
eventGroupIds
array[String]

Responses


organizerEventsGet

Get the list of events of the caller (organizer)


/organizer/events

Usage and SDK Samples

curl -X GET \
 -H "Accept: application/json" \
 "https://api.tixngo.io/prod/v1.0/organizer/events?offset=offset_example&limit=limit_example&eventName=eventName_example&eventId=eventId_example&eventIds=&startDate=Thu Feb 20 00:00:00 UTC 2020&filter=&dateFrom=2013-10-20T19:20:30+01:00&dateTo=2013-10-20T19:20:30+01:00&excludeTransferRules=true&eventGroupIds="
import com.secutix.tixngo.v1.0.*;
import com.secutix.tixngo.v1.0.auth.*;
import com.secutix.tixngo.v1.0.model.*;
import com.secutix.tixngo.v1.0.api.DefaultApi;

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

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

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();
        String offset = offset_example; // String | 
        String limit = limit_example; // String | 
        String eventName = eventName_example; // String | 
        String eventId = eventId_example; // String | 
        array[String] eventIds = ; // array[String] | 
        date startDate = Thu Feb 20 00:00:00 UTC 2020; // date | 
        EventFilter filter = ; // EventFilter | 
        Date dateFrom = 2013-10-20T19:20:30+01:00; // Date | 
        Date dateTo = 2013-10-20T19:20:30+01:00; // Date | 
        Boolean excludeTransferRules = true; // Boolean | 
        array[String] eventGroupIds = ; // array[String] | 

        try {
            OrganizerEventsGetResponse result = apiInstance.organizerEventsGet(offset, limit, eventName, eventId, eventIds, startDate, filter, dateFrom, dateTo, excludeTransferRules, eventGroupIds);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerEventsGet");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();

final String offset = new String(); // String | 
final String limit = new String(); // String | 
final String eventName = new String(); // String | 
final String eventId = new String(); // String | 
final array[String] eventIds = new array[String](); // array[String] | 
final date startDate = new date(); // date | 
final EventFilter filter = new EventFilter(); // EventFilter | 
final Date dateFrom = new Date(); // Date | 
final Date dateTo = new Date(); // Date | 
final Boolean excludeTransferRules = new Boolean(); // Boolean | 
final array[String] eventGroupIds = new array[String](); // array[String] | 

try {
    final result = await api_instance.organizerEventsGet(offset, limit, eventName, eventId, eventIds, startDate, filter, dateFrom, dateTo, excludeTransferRules, eventGroupIds);
    print(result);
} catch (e) {
    print('Exception when calling DefaultApi->organizerEventsGet: $e\n');
}

import com.secutix.tixngo.v1.0.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        String offset = offset_example; // String | 
        String limit = limit_example; // String | 
        String eventName = eventName_example; // String | 
        String eventId = eventId_example; // String | 
        array[String] eventIds = ; // array[String] | 
        date startDate = Thu Feb 20 00:00:00 UTC 2020; // date | 
        EventFilter filter = ; // EventFilter | 
        Date dateFrom = 2013-10-20T19:20:30+01:00; // Date | 
        Date dateTo = 2013-10-20T19:20:30+01:00; // Date | 
        Boolean excludeTransferRules = true; // Boolean | 
        array[String] eventGroupIds = ; // array[String] | 

        try {
            OrganizerEventsGetResponse result = apiInstance.organizerEventsGet(offset, limit, eventName, eventId, eventIds, startDate, filter, dateFrom, dateTo, excludeTransferRules, eventGroupIds);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerEventsGet");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];
String *offset = offset_example; //  (default to null)
String *limit = limit_example; //  (default to null)
String *eventName = eventName_example; //  (optional) (default to null)
String *eventId = eventId_example; //  (optional) (default to null)
array[String] *eventIds = ; //  (optional) (default to null)
date *startDate = Thu Feb 20 00:00:00 UTC 2020; //  (optional) (default to null)
EventFilter *filter = ; //  (optional) (default to null)
Date *dateFrom = 2013-10-20T19:20:30+01:00; //  (optional) (default to null)
Date *dateTo = 2013-10-20T19:20:30+01:00; //  (optional) (default to null)
Boolean *excludeTransferRules = true; //  (optional) (default to null)
array[String] *eventGroupIds = ; //  (optional) (default to null)

[apiInstance organizerEventsGetWith:offset
    limit:limit
    eventName:eventName
    eventId:eventId
    eventIds:eventIds
    startDate:startDate
    filter:filter
    dateFrom:dateFrom
    dateTo:dateTo
    excludeTransferRules:excludeTransferRules
    eventGroupIds:eventGroupIds
              completionHandler: ^(OrganizerEventsGetResponse output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var TixngoRestApiBackendOrganizerApi = require('tixngo_rest_api_backend_organizer_api');

// Create an instance of the API class
var api = new TixngoRestApiBackendOrganizerApi.DefaultApi()
var offset = offset_example; // {String} 
var limit = limit_example; // {String} 
var opts = {
  'eventName': eventName_example, // {String} 
  'eventId': eventId_example, // {String} 
  'eventIds': , // {array[String]} 
  'startDate': Thu Feb 20 00:00:00 UTC 2020, // {date} 
  'filter': , // {EventFilter} 
  'dateFrom': 2013-10-20T19:20:30+01:00, // {Date} 
  'dateTo': 2013-10-20T19:20:30+01:00, // {Date} 
  'excludeTransferRules': true, // {Boolean} 
  'eventGroupIds':  // {array[String]} 
};

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

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

            // Create an instance of the API class
            var apiInstance = new DefaultApi();
            var offset = offset_example;  // String |  (default to null)
            var limit = limit_example;  // String |  (default to null)
            var eventName = eventName_example;  // String |  (optional)  (default to null)
            var eventId = eventId_example;  // String |  (optional)  (default to null)
            var eventIds = new array[String](); // array[String] |  (optional)  (default to null)
            var startDate = Thu Feb 20 00:00:00 UTC 2020;  // date |  (optional)  (default to null)
            var filter = new EventFilter(); // EventFilter |  (optional)  (default to null)
            var dateFrom = 2013-10-20T19:20:30+01:00;  // Date |  (optional)  (default to null)
            var dateTo = 2013-10-20T19:20:30+01:00;  // Date |  (optional)  (default to null)
            var excludeTransferRules = true;  // Boolean |  (optional)  (default to null)
            var eventGroupIds = new array[String](); // array[String] |  (optional)  (default to null)

            try {
                OrganizerEventsGetResponse result = apiInstance.organizerEventsGet(offset, limit, eventName, eventId, eventIds, startDate, filter, dateFrom, dateTo, excludeTransferRules, eventGroupIds);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerEventsGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();
$offset = offset_example; // String | 
$limit = limit_example; // String | 
$eventName = eventName_example; // String | 
$eventId = eventId_example; // String | 
$eventIds = ; // array[String] | 
$startDate = Thu Feb 20 00:00:00 UTC 2020; // date | 
$filter = ; // EventFilter | 
$dateFrom = 2013-10-20T19:20:30+01:00; // Date | 
$dateTo = 2013-10-20T19:20:30+01:00; // Date | 
$excludeTransferRules = true; // Boolean | 
$eventGroupIds = ; // array[String] | 

try {
    $result = $api_instance->organizerEventsGet($offset, $limit, $eventName, $eventId, $eventIds, $startDate, $filter, $dateFrom, $dateTo, $excludeTransferRules, $eventGroupIds);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerEventsGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::OPenAPIClient::Configuration;
use WWW::OPenAPIClient::DefaultApi;

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DefaultApi->new();
my $offset = offset_example; # String | 
my $limit = limit_example; # String | 
my $eventName = eventName_example; # String | 
my $eventId = eventId_example; # String | 
my $eventIds = []; # array[String] | 
my $startDate = Thu Feb 20 00:00:00 UTC 2020; # date | 
my $filter = ; # EventFilter | 
my $dateFrom = 2013-10-20T19:20:30+01:00; # Date | 
my $dateTo = 2013-10-20T19:20:30+01:00; # Date | 
my $excludeTransferRules = true; # Boolean | 
my $eventGroupIds = []; # array[String] | 

eval {
    my $result = $api_instance->organizerEventsGet(offset => $offset, limit => $limit, eventName => $eventName, eventId => $eventId, eventIds => $eventIds, startDate => $startDate, filter => $filter, dateFrom => $dateFrom, dateTo => $dateTo, excludeTransferRules => $excludeTransferRules, eventGroupIds => $eventGroupIds);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerEventsGet: $@\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.DefaultApi()
offset = offset_example # String |  (default to null)
limit = limit_example # String |  (default to null)
eventName = eventName_example # String |  (optional) (default to null)
eventId = eventId_example # String |  (optional) (default to null)
eventIds =  # array[String] |  (optional) (default to null)
startDate = Thu Feb 20 00:00:00 UTC 2020 # date |  (optional) (default to null)
filter =  # EventFilter |  (optional) (default to null)
dateFrom = 2013-10-20T19:20:30+01:00 # Date |  (optional) (default to null)
dateTo = 2013-10-20T19:20:30+01:00 # Date |  (optional) (default to null)
excludeTransferRules = true # Boolean |  (optional) (default to null)
eventGroupIds =  # array[String] |  (optional) (default to null)

try:
    api_response = api_instance.organizer_events_get(offset, limit, eventName=eventName, eventId=eventId, eventIds=eventIds, startDate=startDate, filter=filter, dateFrom=dateFrom, dateTo=dateTo, excludeTransferRules=excludeTransferRules, eventGroupIds=eventGroupIds)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerEventsGet: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let offset = offset_example; // String
    let limit = limit_example; // String
    let eventName = eventName_example; // String
    let eventId = eventId_example; // String
    let eventIds = ; // array[String]
    let startDate = Thu Feb 20 00:00:00 UTC 2020; // date
    let filter = ; // EventFilter
    let dateFrom = 2013-10-20T19:20:30+01:00; // Date
    let dateTo = 2013-10-20T19:20:30+01:00; // Date
    let excludeTransferRules = true; // Boolean
    let eventGroupIds = ; // array[String]

    let mut context = DefaultApi::Context::default();
    let result = client.organizerEventsGet(offset, limit, eventName, eventId, eventIds, startDate, filter, dateFrom, dateTo, excludeTransferRules, eventGroupIds, &context).wait();

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

Scopes

Parameters

Query parameters
Name Description
offset*
String
Required
limit*
String
Required
eventName
String
eventId
String
eventIds
array[String]
startDate
date (date)
filter
EventFilter
dateFrom
Date (date-time)
dateTo
Date (date-time)
excludeTransferRules
Boolean
eventGroupIds
array[String]

Responses


organizerEventsPost

Inject new event to system


/organizer/events

Usage and SDK Samples

curl -X POST \
 -H "Accept: application/json" \
 -H "Content-Type: application/json" \
 "https://api.tixngo.io/prod/v1.0/organizer/events" \
 -d '{
  "events" : [ {
    "metadata" : [ {
      "value" : "value",
      "key" : "key"
    }, {
      "value" : "value",
      "key" : "key"
    }, {
      "value" : "value",
      "key" : "key"
    }, {
      "value" : "value",
      "key" : "key"
    }, {
      "value" : "value",
      "key" : "key"
    } ],
    "website" : "http://example.com/aeiou",
    "address" : {
      "zip" : "zip",
      "site" : "site",
      "city" : "city",
      "countryCode" : "countryCode"
    },
    "name" : "name",
    "startTime" : "startTime",
    "id" : "id",
    "group" : {
      "image" : "image",
      "name" : "name",
      "id" : "id"
    },
    "expirationDate" : "expirationDate"
  }, {
    "metadata" : [ {
      "value" : "value",
      "key" : "key"
    }, {
      "value" : "value",
      "key" : "key"
    }, {
      "value" : "value",
      "key" : "key"
    }, {
      "value" : "value",
      "key" : "key"
    }, {
      "value" : "value",
      "key" : "key"
    } ],
    "website" : "http://example.com/aeiou",
    "address" : {
      "zip" : "zip",
      "site" : "site",
      "city" : "city",
      "countryCode" : "countryCode"
    },
    "name" : "name",
    "startTime" : "startTime",
    "id" : "id",
    "group" : {
      "image" : "image",
      "name" : "name",
      "id" : "id"
    },
    "expirationDate" : "expirationDate"
  }, {
    "metadata" : [ {
      "value" : "value",
      "key" : "key"
    }, {
      "value" : "value",
      "key" : "key"
    }, {
      "value" : "value",
      "key" : "key"
    }, {
      "value" : "value",
      "key" : "key"
    }, {
      "value" : "value",
      "key" : "key"
    } ],
    "website" : "http://example.com/aeiou",
    "address" : {
      "zip" : "zip",
      "site" : "site",
      "city" : "city",
      "countryCode" : "countryCode"
    },
    "name" : "name",
    "startTime" : "startTime",
    "id" : "id",
    "group" : {
      "image" : "image",
      "name" : "name",
      "id" : "id"
    },
    "expirationDate" : "expirationDate"
  }, {
    "metadata" : [ {
      "value" : "value",
      "key" : "key"
    }, {
      "value" : "value",
      "key" : "key"
    }, {
      "value" : "value",
      "key" : "key"
    }, {
      "value" : "value",
      "key" : "key"
    }, {
      "value" : "value",
      "key" : "key"
    } ],
    "website" : "http://example.com/aeiou",
    "address" : {
      "zip" : "zip",
      "site" : "site",
      "city" : "city",
      "countryCode" : "countryCode"
    },
    "name" : "name",
    "startTime" : "startTime",
    "id" : "id",
    "group" : {
      "image" : "image",
      "name" : "name",
      "id" : "id"
    },
    "expirationDate" : "expirationDate"
  }, {
    "metadata" : [ {
      "value" : "value",
      "key" : "key"
    }, {
      "value" : "value",
      "key" : "key"
    }, {
      "value" : "value",
      "key" : "key"
    }, {
      "value" : "value",
      "key" : "key"
    }, {
      "value" : "value",
      "key" : "key"
    } ],
    "website" : "http://example.com/aeiou",
    "address" : {
      "zip" : "zip",
      "site" : "site",
      "city" : "city",
      "countryCode" : "countryCode"
    },
    "name" : "name",
    "startTime" : "startTime",
    "id" : "id",
    "group" : {
      "image" : "image",
      "name" : "name",
      "id" : "id"
    },
    "expirationDate" : "expirationDate"
  } ]
}'
import com.secutix.tixngo.v1.0.*;
import com.secutix.tixngo.v1.0.auth.*;
import com.secutix.tixngo.v1.0.model.*;
import com.secutix.tixngo.v1.0.api.DefaultApi;

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

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

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();
        OrgEventsPostRequest orgEventsPostRequest = ; // OrgEventsPostRequest | 

        try {
            OrgEventResponse result = apiInstance.organizerEventsPost(orgEventsPostRequest);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerEventsPost");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();

final OrgEventsPostRequest orgEventsPostRequest = new OrgEventsPostRequest(); // OrgEventsPostRequest | 

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

import com.secutix.tixngo.v1.0.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        OrgEventsPostRequest orgEventsPostRequest = ; // OrgEventsPostRequest | 

        try {
            OrgEventResponse result = apiInstance.organizerEventsPost(orgEventsPostRequest);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerEventsPost");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];
OrgEventsPostRequest *orgEventsPostRequest = ; // 

[apiInstance organizerEventsPostWith:orgEventsPostRequest
              completionHandler: ^(OrgEventResponse output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var TixngoRestApiBackendOrganizerApi = require('tixngo_rest_api_backend_organizer_api');

// Create an instance of the API class
var api = new TixngoRestApiBackendOrganizerApi.DefaultApi()
var orgEventsPostRequest = ; // {OrgEventsPostRequest} 

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

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

            // Create an instance of the API class
            var apiInstance = new DefaultApi();
            var orgEventsPostRequest = new OrgEventsPostRequest(); // OrgEventsPostRequest | 

            try {
                OrgEventResponse result = apiInstance.organizerEventsPost(orgEventsPostRequest);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerEventsPost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();
$orgEventsPostRequest = ; // OrgEventsPostRequest | 

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

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DefaultApi->new();
my $orgEventsPostRequest = WWW::OPenAPIClient::Object::OrgEventsPostRequest->new(); # OrgEventsPostRequest | 

eval {
    my $result = $api_instance->organizerEventsPost(orgEventsPostRequest => $orgEventsPostRequest);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerEventsPost: $@\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.DefaultApi()
orgEventsPostRequest =  # OrgEventsPostRequest | 

try:
    api_response = api_instance.organizer_events_post(orgEventsPostRequest)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerEventsPost: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let orgEventsPostRequest = ; // OrgEventsPostRequest

    let mut context = DefaultApi::Context::default();
    let result = client.organizerEventsPost(orgEventsPostRequest, &context).wait();

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

Scopes

Parameters

Body parameters
Name Description
orgEventsPostRequest *

Responses


organizerEventsPut

Update event information


/organizer/events

Usage and SDK Samples

curl -X PUT \
 -H "Accept: application/json" \
 -H "Content-Type: application/json" \
 "https://api.tixngo.io/prod/v1.0/organizer/events" \
 -d '{
  "events" : [ {
    "metadata" : [ {
      "value" : "value",
      "key" : "key"
    }, {
      "value" : "value",
      "key" : "key"
    }, {
      "value" : "value",
      "key" : "key"
    }, {
      "value" : "value",
      "key" : "key"
    }, {
      "value" : "value",
      "key" : "key"
    } ],
    "website" : "http://example.com/aeiou",
    "address" : {
      "zip" : "zip",
      "site" : "site",
      "city" : "city",
      "countryCode" : "countryCode"
    },
    "name" : "name",
    "startTime" : "startTime",
    "id" : "id",
    "group" : {
      "image" : "image",
      "name" : "name",
      "id" : "id"
    },
    "expirationDate" : "expirationDate"
  }, {
    "metadata" : [ {
      "value" : "value",
      "key" : "key"
    }, {
      "value" : "value",
      "key" : "key"
    }, {
      "value" : "value",
      "key" : "key"
    }, {
      "value" : "value",
      "key" : "key"
    }, {
      "value" : "value",
      "key" : "key"
    } ],
    "website" : "http://example.com/aeiou",
    "address" : {
      "zip" : "zip",
      "site" : "site",
      "city" : "city",
      "countryCode" : "countryCode"
    },
    "name" : "name",
    "startTime" : "startTime",
    "id" : "id",
    "group" : {
      "image" : "image",
      "name" : "name",
      "id" : "id"
    },
    "expirationDate" : "expirationDate"
  }, {
    "metadata" : [ {
      "value" : "value",
      "key" : "key"
    }, {
      "value" : "value",
      "key" : "key"
    }, {
      "value" : "value",
      "key" : "key"
    }, {
      "value" : "value",
      "key" : "key"
    }, {
      "value" : "value",
      "key" : "key"
    } ],
    "website" : "http://example.com/aeiou",
    "address" : {
      "zip" : "zip",
      "site" : "site",
      "city" : "city",
      "countryCode" : "countryCode"
    },
    "name" : "name",
    "startTime" : "startTime",
    "id" : "id",
    "group" : {
      "image" : "image",
      "name" : "name",
      "id" : "id"
    },
    "expirationDate" : "expirationDate"
  }, {
    "metadata" : [ {
      "value" : "value",
      "key" : "key"
    }, {
      "value" : "value",
      "key" : "key"
    }, {
      "value" : "value",
      "key" : "key"
    }, {
      "value" : "value",
      "key" : "key"
    }, {
      "value" : "value",
      "key" : "key"
    } ],
    "website" : "http://example.com/aeiou",
    "address" : {
      "zip" : "zip",
      "site" : "site",
      "city" : "city",
      "countryCode" : "countryCode"
    },
    "name" : "name",
    "startTime" : "startTime",
    "id" : "id",
    "group" : {
      "image" : "image",
      "name" : "name",
      "id" : "id"
    },
    "expirationDate" : "expirationDate"
  }, {
    "metadata" : [ {
      "value" : "value",
      "key" : "key"
    }, {
      "value" : "value",
      "key" : "key"
    }, {
      "value" : "value",
      "key" : "key"
    }, {
      "value" : "value",
      "key" : "key"
    }, {
      "value" : "value",
      "key" : "key"
    } ],
    "website" : "http://example.com/aeiou",
    "address" : {
      "zip" : "zip",
      "site" : "site",
      "city" : "city",
      "countryCode" : "countryCode"
    },
    "name" : "name",
    "startTime" : "startTime",
    "id" : "id",
    "group" : {
      "image" : "image",
      "name" : "name",
      "id" : "id"
    },
    "expirationDate" : "expirationDate"
  } ]
}'
import com.secutix.tixngo.v1.0.*;
import com.secutix.tixngo.v1.0.auth.*;
import com.secutix.tixngo.v1.0.model.*;
import com.secutix.tixngo.v1.0.api.DefaultApi;

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

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

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();
        OrgEventsPutRequest orgEventsPutRequest = ; // OrgEventsPutRequest | 

        try {
            OrgEventResponse result = apiInstance.organizerEventsPut(orgEventsPutRequest);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerEventsPut");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();

final OrgEventsPutRequest orgEventsPutRequest = new OrgEventsPutRequest(); // OrgEventsPutRequest | 

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

import com.secutix.tixngo.v1.0.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        OrgEventsPutRequest orgEventsPutRequest = ; // OrgEventsPutRequest | 

        try {
            OrgEventResponse result = apiInstance.organizerEventsPut(orgEventsPutRequest);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerEventsPut");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];
OrgEventsPutRequest *orgEventsPutRequest = ; // 

[apiInstance organizerEventsPutWith:orgEventsPutRequest
              completionHandler: ^(OrgEventResponse output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var TixngoRestApiBackendOrganizerApi = require('tixngo_rest_api_backend_organizer_api');

// Create an instance of the API class
var api = new TixngoRestApiBackendOrganizerApi.DefaultApi()
var orgEventsPutRequest = ; // {OrgEventsPutRequest} 

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

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

            // Create an instance of the API class
            var apiInstance = new DefaultApi();
            var orgEventsPutRequest = new OrgEventsPutRequest(); // OrgEventsPutRequest | 

            try {
                OrgEventResponse result = apiInstance.organizerEventsPut(orgEventsPutRequest);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerEventsPut: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();
$orgEventsPutRequest = ; // OrgEventsPutRequest | 

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

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DefaultApi->new();
my $orgEventsPutRequest = WWW::OPenAPIClient::Object::OrgEventsPutRequest->new(); # OrgEventsPutRequest | 

eval {
    my $result = $api_instance->organizerEventsPut(orgEventsPutRequest => $orgEventsPutRequest);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerEventsPut: $@\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.DefaultApi()
orgEventsPutRequest =  # OrgEventsPutRequest | 

try:
    api_response = api_instance.organizer_events_put(orgEventsPutRequest)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerEventsPut: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let orgEventsPutRequest = ; // OrgEventsPutRequest

    let mut context = DefaultApi::Context::default();
    let result = client.organizerEventsPut(orgEventsPutRequest, &context).wait();

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

Scopes

Parameters

Body parameters
Name Description
orgEventsPutRequest *

Responses


organizerGroupsGroupIdPatch

Update information for a single group. Ensure that all events of the group are updated in a coherent way


/organizer/groups/{groupId}

Usage and SDK Samples

curl -X PATCH \
 -H "Content-Type: application/json" \
 "https://api.tixngo.io/prod/v1.0/organizer/groups/{groupId}?language=language_example" \
 -d '{
  "image" : "image",
  "groupId" : "groupId",
  "name" : "name"
}'
import com.secutix.tixngo.v1.0.*;
import com.secutix.tixngo.v1.0.auth.*;
import com.secutix.tixngo.v1.0.model.*;
import com.secutix.tixngo.v1.0.api.DefaultApi;

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

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

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();
        String groupId = groupId_example; // String | 
        OrganizerEventsGroup organizerEventsGroup = ; // OrganizerEventsGroup | 
        String language = language_example; // String | 

        try {
            apiInstance.organizerGroupsGroupIdPatch(groupId, organizerEventsGroup, language);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerGroupsGroupIdPatch");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();

final String groupId = new String(); // String | 
final OrganizerEventsGroup organizerEventsGroup = new OrganizerEventsGroup(); // OrganizerEventsGroup | 
final String language = new String(); // String | 

try {
    final result = await api_instance.organizerGroupsGroupIdPatch(groupId, organizerEventsGroup, language);
    print(result);
} catch (e) {
    print('Exception when calling DefaultApi->organizerGroupsGroupIdPatch: $e\n');
}

import com.secutix.tixngo.v1.0.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        String groupId = groupId_example; // String | 
        OrganizerEventsGroup organizerEventsGroup = ; // OrganizerEventsGroup | 
        String language = language_example; // String | 

        try {
            apiInstance.organizerGroupsGroupIdPatch(groupId, organizerEventsGroup, language);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerGroupsGroupIdPatch");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];
String *groupId = groupId_example; //  (default to null)
OrganizerEventsGroup *organizerEventsGroup = ; // 
String *language = language_example; //  (optional) (default to null)

[apiInstance organizerGroupsGroupIdPatchWith:groupId
    organizerEventsGroup:organizerEventsGroup
    language:language
              completionHandler: ^(NSError* error) {
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var TixngoRestApiBackendOrganizerApi = require('tixngo_rest_api_backend_organizer_api');

// Create an instance of the API class
var api = new TixngoRestApiBackendOrganizerApi.DefaultApi()
var groupId = groupId_example; // {String} 
var organizerEventsGroup = ; // {OrganizerEventsGroup} 
var opts = {
  'language': language_example // {String} 
};

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

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

            // Create an instance of the API class
            var apiInstance = new DefaultApi();
            var groupId = groupId_example;  // String |  (default to null)
            var organizerEventsGroup = new OrganizerEventsGroup(); // OrganizerEventsGroup | 
            var language = language_example;  // String |  (optional)  (default to null)

            try {
                apiInstance.organizerGroupsGroupIdPatch(groupId, organizerEventsGroup, language);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerGroupsGroupIdPatch: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();
$groupId = groupId_example; // String | 
$organizerEventsGroup = ; // OrganizerEventsGroup | 
$language = language_example; // String | 

try {
    $api_instance->organizerGroupsGroupIdPatch($groupId, $organizerEventsGroup, $language);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerGroupsGroupIdPatch: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::OPenAPIClient::Configuration;
use WWW::OPenAPIClient::DefaultApi;

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DefaultApi->new();
my $groupId = groupId_example; # String | 
my $organizerEventsGroup = WWW::OPenAPIClient::Object::OrganizerEventsGroup->new(); # OrganizerEventsGroup | 
my $language = language_example; # String | 

eval {
    $api_instance->organizerGroupsGroupIdPatch(groupId => $groupId, organizerEventsGroup => $organizerEventsGroup, language => $language);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerGroupsGroupIdPatch: $@\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.DefaultApi()
groupId = groupId_example # String |  (default to null)
organizerEventsGroup =  # OrganizerEventsGroup | 
language = language_example # String |  (optional) (default to null)

try:
    api_instance.organizer_groups_group_id_patch(groupId, organizerEventsGroup, language=language)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerGroupsGroupIdPatch: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let groupId = groupId_example; // String
    let organizerEventsGroup = ; // OrganizerEventsGroup
    let language = language_example; // String

    let mut context = DefaultApi::Context::default();
    let result = client.organizerGroupsGroupIdPatch(groupId, organizerEventsGroup, language, &context).wait();

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

Scopes

Parameters

Path parameters
Name Description
groupId*
String
Required
Body parameters
Name Description
organizerEventsGroup *

Query parameters
Name Description
language
String

Responses


organizerInjectionSettingsGet

get organizer settings for injection page


/organizer/injection/settings

Usage and SDK Samples

curl -X GET \
 -H "Accept: application/json" \
 "https://api.tixngo.io/prod/v1.0/organizer/injection/settings"
import com.secutix.tixngo.v1.0.*;
import com.secutix.tixngo.v1.0.auth.*;
import com.secutix.tixngo.v1.0.model.*;
import com.secutix.tixngo.v1.0.api.DefaultApi;

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

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

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();

        try {
            OrganizerInjectionSettings result = apiInstance.organizerInjectionSettingsGet();
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerInjectionSettingsGet");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();


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

import com.secutix.tixngo.v1.0.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();

        try {
            OrganizerInjectionSettings result = apiInstance.organizerInjectionSettingsGet();
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerInjectionSettingsGet");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];

[apiInstance organizerInjectionSettingsGetWithCompletionHandler: 
              ^(OrganizerInjectionSettings output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var TixngoRestApiBackendOrganizerApi = require('tixngo_rest_api_backend_organizer_api');

// Create an instance of the API class
var api = new TixngoRestApiBackendOrganizerApi.DefaultApi()
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.organizerInjectionSettingsGet(callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

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

            // Create an instance of the API class
            var apiInstance = new DefaultApi();

            try {
                OrganizerInjectionSettings result = apiInstance.organizerInjectionSettingsGet();
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerInjectionSettingsGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();

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

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DefaultApi->new();

eval {
    my $result = $api_instance->organizerInjectionSettingsGet();
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerInjectionSettingsGet: $@\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.DefaultApi()

try:
    api_response = api_instance.organizer_injection_settings_get()
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerInjectionSettingsGet: %s\n" % e)
extern crate DefaultApi;

pub fn main() {

    let mut context = DefaultApi::Context::default();
    let result = client.organizerInjectionSettingsGet(&context).wait();

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

Scopes

Parameters

Responses


organizerMobileAppIdSettingsKeyPatch

Modify the setting for the application if the setting is not readonly


/organizer/{mobile-app-id}/settings/{key}

Usage and SDK Samples

curl -X PATCH \
 -H "Content-Type: application/json" \
 "https://api.tixngo.io/prod/v1.0/organizer/{mobile-app-id}/settings/{key}?oldValue=oldValue_example" \
 -d '{
  "value" : "value"
}'
import com.secutix.tixngo.v1.0.*;
import com.secutix.tixngo.v1.0.auth.*;
import com.secutix.tixngo.v1.0.model.*;
import com.secutix.tixngo.v1.0.api.DefaultApi;

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

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

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();
        String mobileAppId = mobileAppId_example; // String | 
        String key = key_example; // String | 
        String oldValue = oldValue_example; // String | 
        ApplicationEditableSetting applicationEditableSetting = ; // ApplicationEditableSetting | 

        try {
            apiInstance.organizerMobileAppIdSettingsKeyPatch(mobileAppId, key, oldValue, applicationEditableSetting);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerMobileAppIdSettingsKeyPatch");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();

final String mobileAppId = new String(); // String | 
final String key = new String(); // String | 
final String oldValue = new String(); // String | 
final ApplicationEditableSetting applicationEditableSetting = new ApplicationEditableSetting(); // ApplicationEditableSetting | 

try {
    final result = await api_instance.organizerMobileAppIdSettingsKeyPatch(mobileAppId, key, oldValue, applicationEditableSetting);
    print(result);
} catch (e) {
    print('Exception when calling DefaultApi->organizerMobileAppIdSettingsKeyPatch: $e\n');
}

import com.secutix.tixngo.v1.0.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        String mobileAppId = mobileAppId_example; // String | 
        String key = key_example; // String | 
        String oldValue = oldValue_example; // String | 
        ApplicationEditableSetting applicationEditableSetting = ; // ApplicationEditableSetting | 

        try {
            apiInstance.organizerMobileAppIdSettingsKeyPatch(mobileAppId, key, oldValue, applicationEditableSetting);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerMobileAppIdSettingsKeyPatch");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];
String *mobileAppId = mobileAppId_example; //  (default to null)
String *key = key_example; //  (default to null)
String *oldValue = oldValue_example; //  (optional) (default to null)
ApplicationEditableSetting *applicationEditableSetting = ; //  (optional)

[apiInstance organizerMobileAppIdSettingsKeyPatchWith:mobileAppId
    key:key
    oldValue:oldValue
    applicationEditableSetting:applicationEditableSetting
              completionHandler: ^(NSError* error) {
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var TixngoRestApiBackendOrganizerApi = require('tixngo_rest_api_backend_organizer_api');

// Create an instance of the API class
var api = new TixngoRestApiBackendOrganizerApi.DefaultApi()
var mobileAppId = mobileAppId_example; // {String} 
var key = key_example; // {String} 
var opts = {
  'oldValue': oldValue_example, // {String} 
  'applicationEditableSetting':  // {ApplicationEditableSetting} 
};

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

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

            // Create an instance of the API class
            var apiInstance = new DefaultApi();
            var mobileAppId = mobileAppId_example;  // String |  (default to null)
            var key = key_example;  // String |  (default to null)
            var oldValue = oldValue_example;  // String |  (optional)  (default to null)
            var applicationEditableSetting = new ApplicationEditableSetting(); // ApplicationEditableSetting |  (optional) 

            try {
                apiInstance.organizerMobileAppIdSettingsKeyPatch(mobileAppId, key, oldValue, applicationEditableSetting);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerMobileAppIdSettingsKeyPatch: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();
$mobileAppId = mobileAppId_example; // String | 
$key = key_example; // String | 
$oldValue = oldValue_example; // String | 
$applicationEditableSetting = ; // ApplicationEditableSetting | 

try {
    $api_instance->organizerMobileAppIdSettingsKeyPatch($mobileAppId, $key, $oldValue, $applicationEditableSetting);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerMobileAppIdSettingsKeyPatch: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::OPenAPIClient::Configuration;
use WWW::OPenAPIClient::DefaultApi;

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DefaultApi->new();
my $mobileAppId = mobileAppId_example; # String | 
my $key = key_example; # String | 
my $oldValue = oldValue_example; # String | 
my $applicationEditableSetting = WWW::OPenAPIClient::Object::ApplicationEditableSetting->new(); # ApplicationEditableSetting | 

eval {
    $api_instance->organizerMobileAppIdSettingsKeyPatch(mobileAppId => $mobileAppId, key => $key, oldValue => $oldValue, applicationEditableSetting => $applicationEditableSetting);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerMobileAppIdSettingsKeyPatch: $@\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.DefaultApi()
mobileAppId = mobileAppId_example # String |  (default to null)
key = key_example # String |  (default to null)
oldValue = oldValue_example # String |  (optional) (default to null)
applicationEditableSetting =  # ApplicationEditableSetting |  (optional)

try:
    api_instance.organizer_mobile_app_id_settings_key_patch(mobileAppId, key, oldValue=oldValue, applicationEditableSetting=applicationEditableSetting)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerMobileAppIdSettingsKeyPatch: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let mobileAppId = mobileAppId_example; // String
    let key = key_example; // String
    let oldValue = oldValue_example; // String
    let applicationEditableSetting = ; // ApplicationEditableSetting

    let mut context = DefaultApi::Context::default();
    let result = client.organizerMobileAppIdSettingsKeyPatch(mobileAppId, key, oldValue, applicationEditableSetting, &context).wait();

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

Scopes

Parameters

Path parameters
Name Description
mobile-app-id*
String
Required
key*
String
Required
Body parameters
Name Description
applicationEditableSetting

Query parameters
Name Description
oldValue
String

Responses


organizerMobilelogsGet

Get the mobile logs for the caller (organizer). Mobile logs are sent by the mobile application to the TIXnGO system.


/organizer/mobilelogs

Usage and SDK Samples

curl -X GET \
 -H "Accept: application/json" \
 "https://api.tixngo.io/prod/v1.0/organizer/mobilelogs?limit=limit_example&offset=offset_example&email=email_example&os=os_example&logLevel=logLevel_example&logType=logType_example&appName=appName_example&from=2013-10-20T19:20:30+01:00&to=2013-10-20T19:20:30+01:00&message=message_example"
import com.secutix.tixngo.v1.0.*;
import com.secutix.tixngo.v1.0.auth.*;
import com.secutix.tixngo.v1.0.model.*;
import com.secutix.tixngo.v1.0.api.DefaultApi;

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

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

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();
        String limit = limit_example; // String | Set the number of results returned.
        String offset = offset_example; // String | Specify the offset of the first hit to return.
        String email = email_example; // String | 
        String os = os_example; // String | 
        String logLevel = logLevel_example; // String | 
        String logType = logType_example; // String | 
        String appName = appName_example; // String | 
        Date from = 2013-10-20T19:20:30+01:00; // Date | 
        Date to = 2013-10-20T19:20:30+01:00; // Date | 
        String message = message_example; // String | 

        try {
            OrganizerMobileLogsSearchResponse result = apiInstance.organizerMobilelogsGet(limit, offset, email, os, logLevel, logType, appName, from, to, message);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerMobilelogsGet");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();

final String limit = new String(); // String | Set the number of results returned.
final String offset = new String(); // String | Specify the offset of the first hit to return.
final String email = new String(); // String | 
final String os = new String(); // String | 
final String logLevel = new String(); // String | 
final String logType = new String(); // String | 
final String appName = new String(); // String | 
final Date from = new Date(); // Date | 
final Date to = new Date(); // Date | 
final String message = new String(); // String | 

try {
    final result = await api_instance.organizerMobilelogsGet(limit, offset, email, os, logLevel, logType, appName, from, to, message);
    print(result);
} catch (e) {
    print('Exception when calling DefaultApi->organizerMobilelogsGet: $e\n');
}

import com.secutix.tixngo.v1.0.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        String limit = limit_example; // String | Set the number of results returned.
        String offset = offset_example; // String | Specify the offset of the first hit to return.
        String email = email_example; // String | 
        String os = os_example; // String | 
        String logLevel = logLevel_example; // String | 
        String logType = logType_example; // String | 
        String appName = appName_example; // String | 
        Date from = 2013-10-20T19:20:30+01:00; // Date | 
        Date to = 2013-10-20T19:20:30+01:00; // Date | 
        String message = message_example; // String | 

        try {
            OrganizerMobileLogsSearchResponse result = apiInstance.organizerMobilelogsGet(limit, offset, email, os, logLevel, logType, appName, from, to, message);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerMobilelogsGet");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];
String *limit = limit_example; // Set the number of results returned. (default to null)
String *offset = offset_example; // Specify the offset of the first hit to return. (default to null)
String *email = email_example; //  (optional) (default to null)
String *os = os_example; //  (optional) (default to null)
String *logLevel = logLevel_example; //  (optional) (default to null)
String *logType = logType_example; //  (optional) (default to null)
String *appName = appName_example; //  (optional) (default to null)
Date *from = 2013-10-20T19:20:30+01:00; //  (optional) (default to null)
Date *to = 2013-10-20T19:20:30+01:00; //  (optional) (default to null)
String *message = message_example; //  (optional) (default to null)

[apiInstance organizerMobilelogsGetWith:limit
    offset:offset
    email:email
    os:os
    logLevel:logLevel
    logType:logType
    appName:appName
    from:from
    to:to
    message:message
              completionHandler: ^(OrganizerMobileLogsSearchResponse output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var TixngoRestApiBackendOrganizerApi = require('tixngo_rest_api_backend_organizer_api');

// Create an instance of the API class
var api = new TixngoRestApiBackendOrganizerApi.DefaultApi()
var limit = limit_example; // {String} Set the number of results returned.
var offset = offset_example; // {String} Specify the offset of the first hit to return.
var opts = {
  'email': email_example, // {String} 
  'os': os_example, // {String} 
  'logLevel': logLevel_example, // {String} 
  'logType': logType_example, // {String} 
  'appName': appName_example, // {String} 
  'from': 2013-10-20T19:20:30+01:00, // {Date} 
  'to': 2013-10-20T19:20:30+01:00, // {Date} 
  'message': message_example // {String} 
};

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.organizerMobilelogsGet(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 organizerMobilelogsGetExample
    {
        public void main()
        {

            // Create an instance of the API class
            var apiInstance = new DefaultApi();
            var limit = limit_example;  // String | Set the number of results returned. (default to null)
            var offset = offset_example;  // String | Specify the offset of the first hit to return. (default to null)
            var email = email_example;  // String |  (optional)  (default to null)
            var os = os_example;  // String |  (optional)  (default to null)
            var logLevel = logLevel_example;  // String |  (optional)  (default to null)
            var logType = logType_example;  // String |  (optional)  (default to null)
            var appName = appName_example;  // String |  (optional)  (default to null)
            var from = 2013-10-20T19:20:30+01:00;  // Date |  (optional)  (default to null)
            var to = 2013-10-20T19:20:30+01:00;  // Date |  (optional)  (default to null)
            var message = message_example;  // String |  (optional)  (default to null)

            try {
                OrganizerMobileLogsSearchResponse result = apiInstance.organizerMobilelogsGet(limit, offset, email, os, logLevel, logType, appName, from, to, message);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerMobilelogsGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();
$limit = limit_example; // String | Set the number of results returned.
$offset = offset_example; // String | Specify the offset of the first hit to return.
$email = email_example; // String | 
$os = os_example; // String | 
$logLevel = logLevel_example; // String | 
$logType = logType_example; // String | 
$appName = appName_example; // String | 
$from = 2013-10-20T19:20:30+01:00; // Date | 
$to = 2013-10-20T19:20:30+01:00; // Date | 
$message = message_example; // String | 

try {
    $result = $api_instance->organizerMobilelogsGet($limit, $offset, $email, $os, $logLevel, $logType, $appName, $from, $to, $message);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerMobilelogsGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::OPenAPIClient::Configuration;
use WWW::OPenAPIClient::DefaultApi;

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DefaultApi->new();
my $limit = limit_example; # String | Set the number of results returned.
my $offset = offset_example; # String | Specify the offset of the first hit to return.
my $email = email_example; # String | 
my $os = os_example; # String | 
my $logLevel = logLevel_example; # String | 
my $logType = logType_example; # String | 
my $appName = appName_example; # String | 
my $from = 2013-10-20T19:20:30+01:00; # Date | 
my $to = 2013-10-20T19:20:30+01:00; # Date | 
my $message = message_example; # String | 

eval {
    my $result = $api_instance->organizerMobilelogsGet(limit => $limit, offset => $offset, email => $email, os => $os, logLevel => $logLevel, logType => $logType, appName => $appName, from => $from, to => $to, message => $message);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerMobilelogsGet: $@\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.DefaultApi()
limit = limit_example # String | Set the number of results returned. (default to null)
offset = offset_example # String | Specify the offset of the first hit to return. (default to null)
email = email_example # String |  (optional) (default to null)
os = os_example # String |  (optional) (default to null)
logLevel = logLevel_example # String |  (optional) (default to null)
logType = logType_example # String |  (optional) (default to null)
appName = appName_example # String |  (optional) (default to null)
from = 2013-10-20T19:20:30+01:00 # Date |  (optional) (default to null)
to = 2013-10-20T19:20:30+01:00 # Date |  (optional) (default to null)
message = message_example # String |  (optional) (default to null)

try:
    api_response = api_instance.organizer_mobilelogs_get(limit, offset, email=email, os=os, logLevel=logLevel, logType=logType, appName=appName, from=from, to=to, message=message)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerMobilelogsGet: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let limit = limit_example; // String
    let offset = offset_example; // String
    let email = email_example; // String
    let os = os_example; // String
    let logLevel = logLevel_example; // String
    let logType = logType_example; // String
    let appName = appName_example; // String
    let from = 2013-10-20T19:20:30+01:00; // Date
    let to = 2013-10-20T19:20:30+01:00; // Date
    let message = message_example; // String

    let mut context = DefaultApi::Context::default();
    let result = client.organizerMobilelogsGet(limit, offset, email, os, logLevel, logType, appName, from, to, message, &context).wait();

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

Scopes

Parameters

Query parameters
Name Description
limit*
String
Set the number of results returned.
Required
offset*
String
Specify the offset of the first hit to return.
Required
email
String
os
String
logLevel
String
logType
String
appName
String
from
Date (date-time)
to
Date (date-time)
message
String

Responses


organizerNotificationcampaignCampaignIdDelete

Cancel campaign details


/organizer/notificationcampaign/{campaignId}

Usage and SDK Samples

curl -X DELETE \
 "https://api.tixngo.io/prod/v1.0/organizer/notificationcampaign/{campaignId}"
import com.secutix.tixngo.v1.0.*;
import com.secutix.tixngo.v1.0.auth.*;
import com.secutix.tixngo.v1.0.model.*;
import com.secutix.tixngo.v1.0.api.DefaultApi;

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

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

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();
        Long campaignId = 789; // Long | 

        try {
            apiInstance.organizerNotificationcampaignCampaignIdDelete(campaignId);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerNotificationcampaignCampaignIdDelete");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();

final Long campaignId = new Long(); // Long | 

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

import com.secutix.tixngo.v1.0.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        Long campaignId = 789; // Long | 

        try {
            apiInstance.organizerNotificationcampaignCampaignIdDelete(campaignId);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerNotificationcampaignCampaignIdDelete");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];
Long *campaignId = 789; //  (default to null)

[apiInstance organizerNotificationcampaignCampaignIdDeleteWith:campaignId
              completionHandler: ^(NSError* error) {
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var TixngoRestApiBackendOrganizerApi = require('tixngo_rest_api_backend_organizer_api');

// Create an instance of the API class
var api = new TixngoRestApiBackendOrganizerApi.DefaultApi()
var campaignId = 789; // {Long} 

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

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

            // Create an instance of the API class
            var apiInstance = new DefaultApi();
            var campaignId = 789;  // Long |  (default to null)

            try {
                apiInstance.organizerNotificationcampaignCampaignIdDelete(campaignId);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerNotificationcampaignCampaignIdDelete: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();
$campaignId = 789; // Long | 

try {
    $api_instance->organizerNotificationcampaignCampaignIdDelete($campaignId);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerNotificationcampaignCampaignIdDelete: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::OPenAPIClient::Configuration;
use WWW::OPenAPIClient::DefaultApi;

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DefaultApi->new();
my $campaignId = 789; # Long | 

eval {
    $api_instance->organizerNotificationcampaignCampaignIdDelete(campaignId => $campaignId);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerNotificationcampaignCampaignIdDelete: $@\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.DefaultApi()
campaignId = 789 # Long |  (default to null)

try:
    api_instance.organizer_notificationcampaign_campaign_id_delete(campaignId)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerNotificationcampaignCampaignIdDelete: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let campaignId = 789; // Long

    let mut context = DefaultApi::Context::default();
    let result = client.organizerNotificationcampaignCampaignIdDelete(campaignId, &context).wait();

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

Scopes

Parameters

Path parameters
Name Description
campaignId*
Long (int64)
Required

Responses


organizerNotificationcampaignCampaignIdGet

Used to retrieve campaign details


/organizer/notificationcampaign/{campaignId}

Usage and SDK Samples

curl -X GET \
 -H "Accept: application/json" \
 "https://api.tixngo.io/prod/v1.0/organizer/notificationcampaign/{campaignId}"
import com.secutix.tixngo.v1.0.*;
import com.secutix.tixngo.v1.0.auth.*;
import com.secutix.tixngo.v1.0.model.*;
import com.secutix.tixngo.v1.0.api.DefaultApi;

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

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

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();
        Long campaignId = 789; // Long | 

        try {
            OrganizerNotificationCampaign result = apiInstance.organizerNotificationcampaignCampaignIdGet(campaignId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerNotificationcampaignCampaignIdGet");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();

final Long campaignId = new Long(); // Long | 

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

import com.secutix.tixngo.v1.0.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        Long campaignId = 789; // Long | 

        try {
            OrganizerNotificationCampaign result = apiInstance.organizerNotificationcampaignCampaignIdGet(campaignId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerNotificationcampaignCampaignIdGet");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];
Long *campaignId = 789; //  (default to null)

[apiInstance organizerNotificationcampaignCampaignIdGetWith:campaignId
              completionHandler: ^(OrganizerNotificationCampaign output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var TixngoRestApiBackendOrganizerApi = require('tixngo_rest_api_backend_organizer_api');

// Create an instance of the API class
var api = new TixngoRestApiBackendOrganizerApi.DefaultApi()
var campaignId = 789; // {Long} 

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

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

            // Create an instance of the API class
            var apiInstance = new DefaultApi();
            var campaignId = 789;  // Long |  (default to null)

            try {
                OrganizerNotificationCampaign result = apiInstance.organizerNotificationcampaignCampaignIdGet(campaignId);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerNotificationcampaignCampaignIdGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();
$campaignId = 789; // Long | 

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

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DefaultApi->new();
my $campaignId = 789; # Long | 

eval {
    my $result = $api_instance->organizerNotificationcampaignCampaignIdGet(campaignId => $campaignId);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerNotificationcampaignCampaignIdGet: $@\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.DefaultApi()
campaignId = 789 # Long |  (default to null)

try:
    api_response = api_instance.organizer_notificationcampaign_campaign_id_get(campaignId)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerNotificationcampaignCampaignIdGet: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let campaignId = 789; // Long

    let mut context = DefaultApi::Context::default();
    let result = client.organizerNotificationcampaignCampaignIdGet(campaignId, &context).wait();

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

Scopes

Parameters

Path parameters
Name Description
campaignId*
Long (int64)
Required

Responses


organizerNotificationcampaignPatch

(Deprecated) Update a notification campaign, cancel or reschedule. For cancel please use delete organizer/notificationcampaign/{campaignId}


/organizer/notificationcampaign

Usage and SDK Samples

curl -X PATCH \
 -H "Content-Type: application/json" \
 "https://api.tixngo.io/prod/v1.0/organizer/notificationcampaign" \
 -d '{
  "filter" : {
    "emails" : [ "emails", "emails" ],
    "eventId" : "eventId",
    "nbTransferableTickets" : {
      "symbol" : "MORE_THAN",
      "value" : 1
    },
    "groupIds" : [ "groupIds", "groupIds" ],
    "ticketStatus" : "INJECTED",
    "sites" : [ "sites", "sites" ],
    "eventIds" : [ "eventIds", "eventIds" ],
    "contingents" : [ "contingents", "contingents" ]
  },
  "mobileAppId" : "mobileAppId",
  "createdDate" : "2000-01-23T04:56:07.000+00:00",
  "triggerDate" : "2000-01-23T04:56:07.000+00:00",
  "templates" : [ {
    "externalUrl" : "externalUrl",
    "isDefault" : true,
    "lang" : "lang",
    "title" : "title",
    "content" : "content"
  }, {
    "externalUrl" : "externalUrl",
    "isDefault" : true,
    "lang" : "lang",
    "title" : "title",
    "content" : "content"
  } ],
  "name" : "name",
  "id" : 0,
  "triggerDateTimeZone" : 6,
  "status" : "scheduled",
  "clickAction" : "none"
}'
import com.secutix.tixngo.v1.0.*;
import com.secutix.tixngo.v1.0.auth.*;
import com.secutix.tixngo.v1.0.model.*;
import com.secutix.tixngo.v1.0.api.DefaultApi;

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

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

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();
        OrganizerNotificationCampaign organizerNotificationCampaign = ; // OrganizerNotificationCampaign | 

        try {
            apiInstance.organizerNotificationcampaignPatch(organizerNotificationCampaign);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerNotificationcampaignPatch");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();

final OrganizerNotificationCampaign organizerNotificationCampaign = new OrganizerNotificationCampaign(); // OrganizerNotificationCampaign | 

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

import com.secutix.tixngo.v1.0.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        OrganizerNotificationCampaign organizerNotificationCampaign = ; // OrganizerNotificationCampaign | 

        try {
            apiInstance.organizerNotificationcampaignPatch(organizerNotificationCampaign);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerNotificationcampaignPatch");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];
OrganizerNotificationCampaign *organizerNotificationCampaign = ; // 

[apiInstance organizerNotificationcampaignPatchWith:organizerNotificationCampaign
              completionHandler: ^(NSError* error) {
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var TixngoRestApiBackendOrganizerApi = require('tixngo_rest_api_backend_organizer_api');

// Create an instance of the API class
var api = new TixngoRestApiBackendOrganizerApi.DefaultApi()
var organizerNotificationCampaign = ; // {OrganizerNotificationCampaign} 

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

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

            // Create an instance of the API class
            var apiInstance = new DefaultApi();
            var organizerNotificationCampaign = new OrganizerNotificationCampaign(); // OrganizerNotificationCampaign | 

            try {
                apiInstance.organizerNotificationcampaignPatch(organizerNotificationCampaign);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerNotificationcampaignPatch: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();
$organizerNotificationCampaign = ; // OrganizerNotificationCampaign | 

try {
    $api_instance->organizerNotificationcampaignPatch($organizerNotificationCampaign);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerNotificationcampaignPatch: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::OPenAPIClient::Configuration;
use WWW::OPenAPIClient::DefaultApi;

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DefaultApi->new();
my $organizerNotificationCampaign = WWW::OPenAPIClient::Object::OrganizerNotificationCampaign->new(); # OrganizerNotificationCampaign | 

eval {
    $api_instance->organizerNotificationcampaignPatch(organizerNotificationCampaign => $organizerNotificationCampaign);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerNotificationcampaignPatch: $@\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.DefaultApi()
organizerNotificationCampaign =  # OrganizerNotificationCampaign | 

try:
    api_instance.organizer_notificationcampaign_patch(organizerNotificationCampaign)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerNotificationcampaignPatch: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let organizerNotificationCampaign = ; // OrganizerNotificationCampaign

    let mut context = DefaultApi::Context::default();
    let result = client.organizerNotificationcampaignPatch(organizerNotificationCampaign, &context).wait();

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

Scopes

Parameters

Body parameters
Name Description
organizerNotificationCampaign *

Responses


organizerNotificationcampaignPost

Create a notification campaign that will target spectators of a certain event


/organizer/notificationcampaign

Usage and SDK Samples

curl -X POST \
 -H "Accept: application/json" \
 -H "Content-Type: application/json" \
 "https://api.tixngo.io/prod/v1.0/organizer/notificationcampaign" \
 -d '{
  "filter" : {
    "emails" : [ "emails", "emails" ],
    "eventId" : "eventId",
    "nbTransferableTickets" : {
      "symbol" : "MORE_THAN",
      "value" : 1
    },
    "groupIds" : [ "groupIds", "groupIds" ],
    "ticketStatus" : "INJECTED",
    "sites" : [ "sites", "sites" ],
    "eventIds" : [ "eventIds", "eventIds" ],
    "contingents" : [ "contingents", "contingents" ]
  },
  "mobileAppId" : "mobileAppId",
  "createdDate" : "2000-01-23T04:56:07.000+00:00",
  "triggerDate" : "2000-01-23T04:56:07.000+00:00",
  "templates" : [ {
    "externalUrl" : "externalUrl",
    "isDefault" : true,
    "lang" : "lang",
    "title" : "title",
    "content" : "content"
  }, {
    "externalUrl" : "externalUrl",
    "isDefault" : true,
    "lang" : "lang",
    "title" : "title",
    "content" : "content"
  } ],
  "name" : "name",
  "id" : 0,
  "triggerDateTimeZone" : 6,
  "status" : "scheduled",
  "clickAction" : "none"
}'
import com.secutix.tixngo.v1.0.*;
import com.secutix.tixngo.v1.0.auth.*;
import com.secutix.tixngo.v1.0.model.*;
import com.secutix.tixngo.v1.0.api.DefaultApi;

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

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

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();
        OrganizerNotificationCampaign organizerNotificationCampaign = ; // OrganizerNotificationCampaign | 

        try {
            OrganizerNotificationCampaign result = apiInstance.organizerNotificationcampaignPost(organizerNotificationCampaign);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerNotificationcampaignPost");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();

final OrganizerNotificationCampaign organizerNotificationCampaign = new OrganizerNotificationCampaign(); // OrganizerNotificationCampaign | 

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

import com.secutix.tixngo.v1.0.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        OrganizerNotificationCampaign organizerNotificationCampaign = ; // OrganizerNotificationCampaign | 

        try {
            OrganizerNotificationCampaign result = apiInstance.organizerNotificationcampaignPost(organizerNotificationCampaign);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerNotificationcampaignPost");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];
OrganizerNotificationCampaign *organizerNotificationCampaign = ; // 

[apiInstance organizerNotificationcampaignPostWith:organizerNotificationCampaign
              completionHandler: ^(OrganizerNotificationCampaign output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var TixngoRestApiBackendOrganizerApi = require('tixngo_rest_api_backend_organizer_api');

// Create an instance of the API class
var api = new TixngoRestApiBackendOrganizerApi.DefaultApi()
var organizerNotificationCampaign = ; // {OrganizerNotificationCampaign} 

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

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

            // Create an instance of the API class
            var apiInstance = new DefaultApi();
            var organizerNotificationCampaign = new OrganizerNotificationCampaign(); // OrganizerNotificationCampaign | 

            try {
                OrganizerNotificationCampaign result = apiInstance.organizerNotificationcampaignPost(organizerNotificationCampaign);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerNotificationcampaignPost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();
$organizerNotificationCampaign = ; // OrganizerNotificationCampaign | 

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

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DefaultApi->new();
my $organizerNotificationCampaign = WWW::OPenAPIClient::Object::OrganizerNotificationCampaign->new(); # OrganizerNotificationCampaign | 

eval {
    my $result = $api_instance->organizerNotificationcampaignPost(organizerNotificationCampaign => $organizerNotificationCampaign);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerNotificationcampaignPost: $@\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.DefaultApi()
organizerNotificationCampaign =  # OrganizerNotificationCampaign | 

try:
    api_response = api_instance.organizer_notificationcampaign_post(organizerNotificationCampaign)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerNotificationcampaignPost: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let organizerNotificationCampaign = ; // OrganizerNotificationCampaign

    let mut context = DefaultApi::Context::default();
    let result = client.organizerNotificationcampaignPost(organizerNotificationCampaign, &context).wait();

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

Scopes

Parameters

Body parameters
Name Description
organizerNotificationCampaign *

Responses


organizerNotificationcampaignPut

Create a notification campaign that will target spectators of a certain event


/organizer/notificationcampaign

Usage and SDK Samples

curl -X PUT \
 -H "Accept: application/json" \
 -H "Content-Type: application/json" \
 "https://api.tixngo.io/prod/v1.0/organizer/notificationcampaign" \
 -d '{
  "filter" : {
    "emails" : [ "emails", "emails" ],
    "eventId" : "eventId",
    "nbTransferableTickets" : {
      "symbol" : "MORE_THAN",
      "value" : 1
    },
    "groupIds" : [ "groupIds", "groupIds" ],
    "ticketStatus" : "INJECTED",
    "sites" : [ "sites", "sites" ],
    "eventIds" : [ "eventIds", "eventIds" ],
    "contingents" : [ "contingents", "contingents" ]
  },
  "mobileAppId" : "mobileAppId",
  "createdDate" : "2000-01-23T04:56:07.000+00:00",
  "triggerDate" : "2000-01-23T04:56:07.000+00:00",
  "templates" : [ {
    "externalUrl" : "externalUrl",
    "isDefault" : true,
    "lang" : "lang",
    "title" : "title",
    "content" : "content"
  }, {
    "externalUrl" : "externalUrl",
    "isDefault" : true,
    "lang" : "lang",
    "title" : "title",
    "content" : "content"
  } ],
  "name" : "name",
  "id" : 0,
  "triggerDateTimeZone" : 6,
  "status" : "scheduled",
  "clickAction" : "none"
}'
import com.secutix.tixngo.v1.0.*;
import com.secutix.tixngo.v1.0.auth.*;
import com.secutix.tixngo.v1.0.model.*;
import com.secutix.tixngo.v1.0.api.DefaultApi;

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

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

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();
        OrganizerNotificationCampaign organizerNotificationCampaign = ; // OrganizerNotificationCampaign | 

        try {
            OrganizerNotificationCampaign result = apiInstance.organizerNotificationcampaignPut(organizerNotificationCampaign);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerNotificationcampaignPut");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();

final OrganizerNotificationCampaign organizerNotificationCampaign = new OrganizerNotificationCampaign(); // OrganizerNotificationCampaign | 

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

import com.secutix.tixngo.v1.0.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        OrganizerNotificationCampaign organizerNotificationCampaign = ; // OrganizerNotificationCampaign | 

        try {
            OrganizerNotificationCampaign result = apiInstance.organizerNotificationcampaignPut(organizerNotificationCampaign);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerNotificationcampaignPut");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];
OrganizerNotificationCampaign *organizerNotificationCampaign = ; // 

[apiInstance organizerNotificationcampaignPutWith:organizerNotificationCampaign
              completionHandler: ^(OrganizerNotificationCampaign output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var TixngoRestApiBackendOrganizerApi = require('tixngo_rest_api_backend_organizer_api');

// Create an instance of the API class
var api = new TixngoRestApiBackendOrganizerApi.DefaultApi()
var organizerNotificationCampaign = ; // {OrganizerNotificationCampaign} 

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

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

            // Create an instance of the API class
            var apiInstance = new DefaultApi();
            var organizerNotificationCampaign = new OrganizerNotificationCampaign(); // OrganizerNotificationCampaign | 

            try {
                OrganizerNotificationCampaign result = apiInstance.organizerNotificationcampaignPut(organizerNotificationCampaign);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerNotificationcampaignPut: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();
$organizerNotificationCampaign = ; // OrganizerNotificationCampaign | 

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

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DefaultApi->new();
my $organizerNotificationCampaign = WWW::OPenAPIClient::Object::OrganizerNotificationCampaign->new(); # OrganizerNotificationCampaign | 

eval {
    my $result = $api_instance->organizerNotificationcampaignPut(organizerNotificationCampaign => $organizerNotificationCampaign);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerNotificationcampaignPut: $@\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.DefaultApi()
organizerNotificationCampaign =  # OrganizerNotificationCampaign | 

try:
    api_response = api_instance.organizer_notificationcampaign_put(organizerNotificationCampaign)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerNotificationcampaignPut: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let organizerNotificationCampaign = ; // OrganizerNotificationCampaign

    let mut context = DefaultApi::Context::default();
    let result = client.organizerNotificationcampaignPut(organizerNotificationCampaign, &context).wait();

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

Scopes

Parameters

Body parameters
Name Description
organizerNotificationCampaign *

Responses


organizerNotificationcampaignReportCampaignIdGet

Used to retrieve teh pre-signed url to download the notification campaign email csv report


/organizer/notificationcampaign/report/{campaignId}

Usage and SDK Samples

curl -X GET \
 -H "Accept: application/json" \
 "https://api.tixngo.io/prod/v1.0/organizer/notificationcampaign/report/{campaignId}"
import com.secutix.tixngo.v1.0.*;
import com.secutix.tixngo.v1.0.auth.*;
import com.secutix.tixngo.v1.0.model.*;
import com.secutix.tixngo.v1.0.api.DefaultApi;

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

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

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();
        String campaignId = campaignId_example; // String | 

        try {
            OrganizerS3Url result = apiInstance.organizerNotificationcampaignReportCampaignIdGet(campaignId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerNotificationcampaignReportCampaignIdGet");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();

final String campaignId = new String(); // String | 

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

import com.secutix.tixngo.v1.0.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        String campaignId = campaignId_example; // String | 

        try {
            OrganizerS3Url result = apiInstance.organizerNotificationcampaignReportCampaignIdGet(campaignId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerNotificationcampaignReportCampaignIdGet");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];
String *campaignId = campaignId_example; //  (default to null)

[apiInstance organizerNotificationcampaignReportCampaignIdGetWith:campaignId
              completionHandler: ^(OrganizerS3Url output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var TixngoRestApiBackendOrganizerApi = require('tixngo_rest_api_backend_organizer_api');

// Create an instance of the API class
var api = new TixngoRestApiBackendOrganizerApi.DefaultApi()
var campaignId = campaignId_example; // {String} 

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

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

            // Create an instance of the API class
            var apiInstance = new DefaultApi();
            var campaignId = campaignId_example;  // String |  (default to null)

            try {
                OrganizerS3Url result = apiInstance.organizerNotificationcampaignReportCampaignIdGet(campaignId);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerNotificationcampaignReportCampaignIdGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();
$campaignId = campaignId_example; // String | 

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

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DefaultApi->new();
my $campaignId = campaignId_example; # String | 

eval {
    my $result = $api_instance->organizerNotificationcampaignReportCampaignIdGet(campaignId => $campaignId);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerNotificationcampaignReportCampaignIdGet: $@\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.DefaultApi()
campaignId = campaignId_example # String |  (default to null)

try:
    api_response = api_instance.organizer_notificationcampaign_report_campaign_id_get(campaignId)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerNotificationcampaignReportCampaignIdGet: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let campaignId = campaignId_example; // String

    let mut context = DefaultApi::Context::default();
    let result = client.organizerNotificationcampaignReportCampaignIdGet(campaignId, &context).wait();

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

Scopes

Parameters

Path parameters
Name Description
campaignId*
String
Required

Responses


organizerNotificationcampaignReportsGet

Used to retrieve the notification report of notification campaigns


/organizer/notificationcampaign/reports

Usage and SDK Samples

curl -X GET \
 -H "Accept: application/json" \
 "https://api.tixngo.io/prod/v1.0/organizer/notificationcampaign/reports?limit=limit_example&offset=offset_example&mobileAppId=mobileAppId_example&name=name_example&contentLanguage=contentLanguage_example&status="
import com.secutix.tixngo.v1.0.*;
import com.secutix.tixngo.v1.0.auth.*;
import com.secutix.tixngo.v1.0.model.*;
import com.secutix.tixngo.v1.0.api.DefaultApi;

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

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

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();
        String limit = limit_example; // String | 
        String offset = offset_example; // String | 
        String mobileAppId = mobileAppId_example; // String | 
        String name = name_example; // String | 
        String contentLanguage = contentLanguage_example; // String | 
        CampaignStatusFilter status = ; // CampaignStatusFilter | 

        try {
            OrganizerNotificationCampaignReportResponse result = apiInstance.organizerNotificationcampaignReportsGet(limit, offset, mobileAppId, name, contentLanguage, status);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerNotificationcampaignReportsGet");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();

final String limit = new String(); // String | 
final String offset = new String(); // String | 
final String mobileAppId = new String(); // String | 
final String name = new String(); // String | 
final String contentLanguage = new String(); // String | 
final CampaignStatusFilter status = new CampaignStatusFilter(); // CampaignStatusFilter | 

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

import com.secutix.tixngo.v1.0.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        String limit = limit_example; // String | 
        String offset = offset_example; // String | 
        String mobileAppId = mobileAppId_example; // String | 
        String name = name_example; // String | 
        String contentLanguage = contentLanguage_example; // String | 
        CampaignStatusFilter status = ; // CampaignStatusFilter | 

        try {
            OrganizerNotificationCampaignReportResponse result = apiInstance.organizerNotificationcampaignReportsGet(limit, offset, mobileAppId, name, contentLanguage, status);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerNotificationcampaignReportsGet");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];
String *limit = limit_example; //  (default to null)
String *offset = offset_example; //  (default to null)
String *mobileAppId = mobileAppId_example; //  (default to null)
String *name = name_example; //  (optional) (default to null)
String *contentLanguage = contentLanguage_example; //  (optional) (default to null)
CampaignStatusFilter *status = ; //  (optional) (default to null)

[apiInstance organizerNotificationcampaignReportsGetWith:limit
    offset:offset
    mobileAppId:mobileAppId
    name:name
    contentLanguage:contentLanguage
    status:status
              completionHandler: ^(OrganizerNotificationCampaignReportResponse output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var TixngoRestApiBackendOrganizerApi = require('tixngo_rest_api_backend_organizer_api');

// Create an instance of the API class
var api = new TixngoRestApiBackendOrganizerApi.DefaultApi()
var limit = limit_example; // {String} 
var offset = offset_example; // {String} 
var mobileAppId = mobileAppId_example; // {String} 
var opts = {
  'name': name_example, // {String} 
  'contentLanguage': contentLanguage_example, // {String} 
  'status':  // {CampaignStatusFilter} 
};

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.organizerNotificationcampaignReportsGet(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 organizerNotificationcampaignReportsGetExample
    {
        public void main()
        {

            // Create an instance of the API class
            var apiInstance = new DefaultApi();
            var limit = limit_example;  // String |  (default to null)
            var offset = offset_example;  // String |  (default to null)
            var mobileAppId = mobileAppId_example;  // String |  (default to null)
            var name = name_example;  // String |  (optional)  (default to null)
            var contentLanguage = contentLanguage_example;  // String |  (optional)  (default to null)
            var status = new CampaignStatusFilter(); // CampaignStatusFilter |  (optional)  (default to null)

            try {
                OrganizerNotificationCampaignReportResponse result = apiInstance.organizerNotificationcampaignReportsGet(limit, offset, mobileAppId, name, contentLanguage, status);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerNotificationcampaignReportsGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();
$limit = limit_example; // String | 
$offset = offset_example; // String | 
$mobileAppId = mobileAppId_example; // String | 
$name = name_example; // String | 
$contentLanguage = contentLanguage_example; // String | 
$status = ; // CampaignStatusFilter | 

try {
    $result = $api_instance->organizerNotificationcampaignReportsGet($limit, $offset, $mobileAppId, $name, $contentLanguage, $status);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerNotificationcampaignReportsGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::OPenAPIClient::Configuration;
use WWW::OPenAPIClient::DefaultApi;

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DefaultApi->new();
my $limit = limit_example; # String | 
my $offset = offset_example; # String | 
my $mobileAppId = mobileAppId_example; # String | 
my $name = name_example; # String | 
my $contentLanguage = contentLanguage_example; # String | 
my $status = ; # CampaignStatusFilter | 

eval {
    my $result = $api_instance->organizerNotificationcampaignReportsGet(limit => $limit, offset => $offset, mobileAppId => $mobileAppId, name => $name, contentLanguage => $contentLanguage, status => $status);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerNotificationcampaignReportsGet: $@\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.DefaultApi()
limit = limit_example # String |  (default to null)
offset = offset_example # String |  (default to null)
mobileAppId = mobileAppId_example # String |  (default to null)
name = name_example # String |  (optional) (default to null)
contentLanguage = contentLanguage_example # String |  (optional) (default to null)
status =  # CampaignStatusFilter |  (optional) (default to null)

try:
    api_response = api_instance.organizer_notificationcampaign_reports_get(limit, offset, mobileAppId, name=name, contentLanguage=contentLanguage, status=status)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerNotificationcampaignReportsGet: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let limit = limit_example; // String
    let offset = offset_example; // String
    let mobileAppId = mobileAppId_example; // String
    let name = name_example; // String
    let contentLanguage = contentLanguage_example; // String
    let status = ; // CampaignStatusFilter

    let mut context = DefaultApi::Context::default();
    let result = client.organizerNotificationcampaignReportsGet(limit, offset, mobileAppId, name, contentLanguage, status, &context).wait();

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

Scopes

Parameters

Query parameters
Name Description
limit*
String
Required
offset*
String
Required
mobileAppId*
String
Required
name
String
contentLanguage
String
status
CampaignStatusFilter

Responses


organizerNotificationcampaignTargetsPost

Used to retrieve the amount of target spectator of notification campaigns


/organizer/notificationcampaign/targets

Usage and SDK Samples

curl -X POST \
 -H "Accept: application/json" \
 -H "Content-Type: application/json" \
 "https://api.tixngo.io/prod/v1.0/organizer/notificationcampaign/targets" \
 -d '{
  "emails" : [ "emails", "emails" ],
  "eventId" : "eventId",
  "mobileAppId" : "mobileAppId",
  "nbTransferableTickets" : {
    "symbol" : "MORE_THAN",
    "value" : 1
  },
  "groupIds" : [ "groupIds", "groupIds" ],
  "ticketStatus" : "INJECTED",
  "sites" : [ "sites", "sites" ],
  "eventIds" : [ "eventIds", "eventIds" ],
  "contingents" : [ "contingents", "contingents" ]
}'
import com.secutix.tixngo.v1.0.*;
import com.secutix.tixngo.v1.0.auth.*;
import com.secutix.tixngo.v1.0.model.*;
import com.secutix.tixngo.v1.0.api.DefaultApi;

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

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

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();
        OrganizerNotificationCampaignFilterRequest organizerNotificationCampaignFilterRequest = ; // OrganizerNotificationCampaignFilterRequest | 

        try {
            OrganizerNotificationCampaignTargetsResponse result = apiInstance.organizerNotificationcampaignTargetsPost(organizerNotificationCampaignFilterRequest);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerNotificationcampaignTargetsPost");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();

final OrganizerNotificationCampaignFilterRequest organizerNotificationCampaignFilterRequest = new OrganizerNotificationCampaignFilterRequest(); // OrganizerNotificationCampaignFilterRequest | 

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

import com.secutix.tixngo.v1.0.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        OrganizerNotificationCampaignFilterRequest organizerNotificationCampaignFilterRequest = ; // OrganizerNotificationCampaignFilterRequest | 

        try {
            OrganizerNotificationCampaignTargetsResponse result = apiInstance.organizerNotificationcampaignTargetsPost(organizerNotificationCampaignFilterRequest);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerNotificationcampaignTargetsPost");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];
OrganizerNotificationCampaignFilterRequest *organizerNotificationCampaignFilterRequest = ; // 

[apiInstance organizerNotificationcampaignTargetsPostWith:organizerNotificationCampaignFilterRequest
              completionHandler: ^(OrganizerNotificationCampaignTargetsResponse output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var TixngoRestApiBackendOrganizerApi = require('tixngo_rest_api_backend_organizer_api');

// Create an instance of the API class
var api = new TixngoRestApiBackendOrganizerApi.DefaultApi()
var organizerNotificationCampaignFilterRequest = ; // {OrganizerNotificationCampaignFilterRequest} 

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

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

            // Create an instance of the API class
            var apiInstance = new DefaultApi();
            var organizerNotificationCampaignFilterRequest = new OrganizerNotificationCampaignFilterRequest(); // OrganizerNotificationCampaignFilterRequest | 

            try {
                OrganizerNotificationCampaignTargetsResponse result = apiInstance.organizerNotificationcampaignTargetsPost(organizerNotificationCampaignFilterRequest);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerNotificationcampaignTargetsPost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();
$organizerNotificationCampaignFilterRequest = ; // OrganizerNotificationCampaignFilterRequest | 

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

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DefaultApi->new();
my $organizerNotificationCampaignFilterRequest = WWW::OPenAPIClient::Object::OrganizerNotificationCampaignFilterRequest->new(); # OrganizerNotificationCampaignFilterRequest | 

eval {
    my $result = $api_instance->organizerNotificationcampaignTargetsPost(organizerNotificationCampaignFilterRequest => $organizerNotificationCampaignFilterRequest);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerNotificationcampaignTargetsPost: $@\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.DefaultApi()
organizerNotificationCampaignFilterRequest =  # OrganizerNotificationCampaignFilterRequest | 

try:
    api_response = api_instance.organizer_notificationcampaign_targets_post(organizerNotificationCampaignFilterRequest)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerNotificationcampaignTargetsPost: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let organizerNotificationCampaignFilterRequest = ; // OrganizerNotificationCampaignFilterRequest

    let mut context = DefaultApi::Context::default();
    let result = client.organizerNotificationcampaignTargetsPost(organizerNotificationCampaignFilterRequest, &context).wait();

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

Scopes

Parameters

Body parameters
Name Description
organizerNotificationCampaignFilterRequest *

Responses


organizerOperatorRoleGet

Retrieve the requester operator role


/organizer/operator/role

Usage and SDK Samples

curl -X GET \
-H "Authorization: [[apiKey]]" \
 -H "Accept: application/json" \
 "https://api.tixngo.io/prod/v1.0/organizer/operator/role"
import com.secutix.tixngo.v1.0.*;
import com.secutix.tixngo.v1.0.auth.*;
import com.secutix.tixngo.v1.0.model.*;
import com.secutix.tixngo.v1.0.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();

        try {
            OrganizerOperatorRole result = apiInstance.organizerOperatorRoleGet();
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerOperatorRoleGet");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();


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

import com.secutix.tixngo.v1.0.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();

        try {
            OrganizerOperatorRole result = apiInstance.organizerOperatorRoleGet();
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerOperatorRoleGet");
            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];

[apiInstance organizerOperatorRoleGetWithCompletionHandler: 
              ^(OrganizerOperatorRole output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var TixngoRestApiBackendOrganizerApi = require('tixngo_rest_api_backend_organizer_api');
var defaultClient = TixngoRestApiBackendOrganizerApi.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 TixngoRestApiBackendOrganizerApi.DefaultApi()
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.organizerOperatorRoleGet(callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

namespace Example
{
    public class organizerOperatorRoleGetExample
    {
        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();

            try {
                OrganizerOperatorRole result = apiInstance.organizerOperatorRoleGet();
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerOperatorRoleGet: " + 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();

try {
    $result = $api_instance->organizerOperatorRoleGet();
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerOperatorRoleGet: ', $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();

eval {
    my $result = $api_instance->organizerOperatorRoleGet();
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerOperatorRoleGet: $@\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()

try:
    api_response = api_instance.organizer_operator_role_get()
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerOperatorRoleGet: %s\n" % e)
extern crate DefaultApi;

pub fn main() {

    let mut context = DefaultApi::Context::default();
    let result = client.organizerOperatorRoleGet(&context).wait();

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

Scopes

Parameters

Responses


organizerPendingSpectatorsGet

Get all pending/unconfirmed spectators to whom another spectator initiate a transfer


/organizer/pendingSpectators

Usage and SDK Samples

curl -X GET \
 -H "Accept: application/json" \
 "https://api.tixngo.io/prod/v1.0/organizer/pendingSpectators?contains=contains_example&mobileAppId=mobileAppId_example&approvedEmail=approvedEmail_example&limit=limit_example&triggeringEmail=triggeringEmail_example&ticketId=ticketId_example&offset=offset_example®istered=true&contingentIds="
import com.secutix.tixngo.v1.0.*;
import com.secutix.tixngo.v1.0.auth.*;
import com.secutix.tixngo.v1.0.model.*;
import com.secutix.tixngo.v1.0.api.DefaultApi;

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

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

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();
        String limit = limit_example; // String | Set the number of results returned.
        String offset = offset_example; // String | Specify the offset of the first hit to return.
        String contains = contains_example; // String | 
        String mobileAppId = mobileAppId_example; // String | 
        String approvedEmail = approvedEmail_example; // String | 
        String triggeringEmail = triggeringEmail_example; // String | 
        String ticketId = ticketId_example; // String | 
        Boolean registered = true; // Boolean | 
        array[String] contingentIds = ; // array[String] | 

        try {
            OrganizerPendingSpectatorsSearchResponse result = apiInstance.organizerPendingSpectatorsGet(limit, offset, contains, mobileAppId, approvedEmail, triggeringEmail, ticketId, registered, contingentIds);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerPendingSpectatorsGet");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();

final String limit = new String(); // String | Set the number of results returned.
final String offset = new String(); // String | Specify the offset of the first hit to return.
final String contains = new String(); // String | 
final String mobileAppId = new String(); // String | 
final String approvedEmail = new String(); // String | 
final String triggeringEmail = new String(); // String | 
final String ticketId = new String(); // String | 
final Boolean registered = new Boolean(); // Boolean | 
final array[String] contingentIds = new array[String](); // array[String] | 

try {
    final result = await api_instance.organizerPendingSpectatorsGet(limit, offset, contains, mobileAppId, approvedEmail, triggeringEmail, ticketId, registered, contingentIds);
    print(result);
} catch (e) {
    print('Exception when calling DefaultApi->organizerPendingSpectatorsGet: $e\n');
}

import com.secutix.tixngo.v1.0.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        String limit = limit_example; // String | Set the number of results returned.
        String offset = offset_example; // String | Specify the offset of the first hit to return.
        String contains = contains_example; // String | 
        String mobileAppId = mobileAppId_example; // String | 
        String approvedEmail = approvedEmail_example; // String | 
        String triggeringEmail = triggeringEmail_example; // String | 
        String ticketId = ticketId_example; // String | 
        Boolean registered = true; // Boolean | 
        array[String] contingentIds = ; // array[String] | 

        try {
            OrganizerPendingSpectatorsSearchResponse result = apiInstance.organizerPendingSpectatorsGet(limit, offset, contains, mobileAppId, approvedEmail, triggeringEmail, ticketId, registered, contingentIds);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerPendingSpectatorsGet");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];
String *limit = limit_example; // Set the number of results returned. (default to null)
String *offset = offset_example; // Specify the offset of the first hit to return. (default to null)
String *contains = contains_example; //  (optional) (default to null)
String *mobileAppId = mobileAppId_example; //  (optional) (default to null)
String *approvedEmail = approvedEmail_example; //  (optional) (default to null)
String *triggeringEmail = triggeringEmail_example; //  (optional) (default to null)
String *ticketId = ticketId_example; //  (optional) (default to null)
Boolean *registered = true; //  (optional) (default to null)
array[String] *contingentIds = ; //  (optional) (default to null)

[apiInstance organizerPendingSpectatorsGetWith:limit
    offset:offset
    contains:contains
    mobileAppId:mobileAppId
    approvedEmail:approvedEmail
    triggeringEmail:triggeringEmail
    ticketId:ticketId
    registered:registered
    contingentIds:contingentIds
              completionHandler: ^(OrganizerPendingSpectatorsSearchResponse output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var TixngoRestApiBackendOrganizerApi = require('tixngo_rest_api_backend_organizer_api');

// Create an instance of the API class
var api = new TixngoRestApiBackendOrganizerApi.DefaultApi()
var limit = limit_example; // {String} Set the number of results returned.
var offset = offset_example; // {String} Specify the offset of the first hit to return.
var opts = {
  'contains': contains_example, // {String} 
  'mobileAppId': mobileAppId_example, // {String} 
  'approvedEmail': approvedEmail_example, // {String} 
  'triggeringEmail': triggeringEmail_example, // {String} 
  'ticketId': ticketId_example, // {String} 
  'registered': true, // {Boolean} 
  'contingentIds':  // {array[String]} 
};

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.organizerPendingSpectatorsGet(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 organizerPendingSpectatorsGetExample
    {
        public void main()
        {

            // Create an instance of the API class
            var apiInstance = new DefaultApi();
            var limit = limit_example;  // String | Set the number of results returned. (default to null)
            var offset = offset_example;  // String | Specify the offset of the first hit to return. (default to null)
            var contains = contains_example;  // String |  (optional)  (default to null)
            var mobileAppId = mobileAppId_example;  // String |  (optional)  (default to null)
            var approvedEmail = approvedEmail_example;  // String |  (optional)  (default to null)
            var triggeringEmail = triggeringEmail_example;  // String |  (optional)  (default to null)
            var ticketId = ticketId_example;  // String |  (optional)  (default to null)
            var registered = true;  // Boolean |  (optional)  (default to null)
            var contingentIds = new array[String](); // array[String] |  (optional)  (default to null)

            try {
                OrganizerPendingSpectatorsSearchResponse result = apiInstance.organizerPendingSpectatorsGet(limit, offset, contains, mobileAppId, approvedEmail, triggeringEmail, ticketId, registered, contingentIds);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerPendingSpectatorsGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();
$limit = limit_example; // String | Set the number of results returned.
$offset = offset_example; // String | Specify the offset of the first hit to return.
$contains = contains_example; // String | 
$mobileAppId = mobileAppId_example; // String | 
$approvedEmail = approvedEmail_example; // String | 
$triggeringEmail = triggeringEmail_example; // String | 
$ticketId = ticketId_example; // String | 
$registered = true; // Boolean | 
$contingentIds = ; // array[String] | 

try {
    $result = $api_instance->organizerPendingSpectatorsGet($limit, $offset, $contains, $mobileAppId, $approvedEmail, $triggeringEmail, $ticketId, $registered, $contingentIds);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerPendingSpectatorsGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::OPenAPIClient::Configuration;
use WWW::OPenAPIClient::DefaultApi;

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DefaultApi->new();
my $limit = limit_example; # String | Set the number of results returned.
my $offset = offset_example; # String | Specify the offset of the first hit to return.
my $contains = contains_example; # String | 
my $mobileAppId = mobileAppId_example; # String | 
my $approvedEmail = approvedEmail_example; # String | 
my $triggeringEmail = triggeringEmail_example; # String | 
my $ticketId = ticketId_example; # String | 
my $registered = true; # Boolean | 
my $contingentIds = []; # array[String] | 

eval {
    my $result = $api_instance->organizerPendingSpectatorsGet(limit => $limit, offset => $offset, contains => $contains, mobileAppId => $mobileAppId, approvedEmail => $approvedEmail, triggeringEmail => $triggeringEmail, ticketId => $ticketId, registered => $registered, contingentIds => $contingentIds);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerPendingSpectatorsGet: $@\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.DefaultApi()
limit = limit_example # String | Set the number of results returned. (default to null)
offset = offset_example # String | Specify the offset of the first hit to return. (default to null)
contains = contains_example # String |  (optional) (default to null)
mobileAppId = mobileAppId_example # String |  (optional) (default to null)
approvedEmail = approvedEmail_example # String |  (optional) (default to null)
triggeringEmail = triggeringEmail_example # String |  (optional) (default to null)
ticketId = ticketId_example # String |  (optional) (default to null)
registered = true # Boolean |  (optional) (default to null)
contingentIds =  # array[String] |  (optional) (default to null)

try:
    api_response = api_instance.organizer_pending_spectators_get(limit, offset, contains=contains, mobileAppId=mobileAppId, approvedEmail=approvedEmail, triggeringEmail=triggeringEmail, ticketId=ticketId, registered=registered, contingentIds=contingentIds)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerPendingSpectatorsGet: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let limit = limit_example; // String
    let offset = offset_example; // String
    let contains = contains_example; // String
    let mobileAppId = mobileAppId_example; // String
    let approvedEmail = approvedEmail_example; // String
    let triggeringEmail = triggeringEmail_example; // String
    let ticketId = ticketId_example; // String
    let registered = true; // Boolean
    let contingentIds = ; // array[String]

    let mut context = DefaultApi::Context::default();
    let result = client.organizerPendingSpectatorsGet(limit, offset, contains, mobileAppId, approvedEmail, triggeringEmail, ticketId, registered, contingentIds, &context).wait();

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

Scopes

Parameters

Query parameters
Name Description
contains
String
mobileAppId
String
approvedEmail
String
limit*
String
Set the number of results returned.
Required
triggeringEmail
String
ticketId
String
offset*
String
Specify the offset of the first hit to return.
Required
registered
Boolean
contingentIds
array[String]

Responses


organizerPrivilegeDefinitionPatch

partial update privilege definition


/organizer/privilege-definition

Usage and SDK Samples

curl -X PATCH \
 -H "Accept: application/json" \
 -H "Content-Type: application/json" \
 "https://api.tixngo.io/prod/v1.0/organizer/privilege-definition" \
 -d '{
  "privilegeDefinitions" : [ {
    "image" : "image",
    "name" : "name",
    "id" : "id",
    "type" : "SEASON_CARD",
    "termAndConditions" : "termAndConditions",
    "layoutId" : "PRIV_SEASON_1"
  }, {
    "image" : "image",
    "name" : "name",
    "id" : "id",
    "type" : "SEASON_CARD",
    "termAndConditions" : "termAndConditions",
    "layoutId" : "PRIV_SEASON_1"
  }, {
    "image" : "image",
    "name" : "name",
    "id" : "id",
    "type" : "SEASON_CARD",
    "termAndConditions" : "termAndConditions",
    "layoutId" : "PRIV_SEASON_1"
  }, {
    "image" : "image",
    "name" : "name",
    "id" : "id",
    "type" : "SEASON_CARD",
    "termAndConditions" : "termAndConditions",
    "layoutId" : "PRIV_SEASON_1"
  }, {
    "image" : "image",
    "name" : "name",
    "id" : "id",
    "type" : "SEASON_CARD",
    "termAndConditions" : "termAndConditions",
    "layoutId" : "PRIV_SEASON_1"
  } ]
}'
import com.secutix.tixngo.v1.0.*;
import com.secutix.tixngo.v1.0.auth.*;
import com.secutix.tixngo.v1.0.model.*;
import com.secutix.tixngo.v1.0.api.DefaultApi;

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

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

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();
        OrganizerPrivilegeDefinitionPatchRequest organizerPrivilegeDefinitionPatchRequest = ; // OrganizerPrivilegeDefinitionPatchRequest | 

        try {
            OrganizerPrivilegeDefinitionPatchResponse result = apiInstance.organizerPrivilegeDefinitionPatch(organizerPrivilegeDefinitionPatchRequest);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerPrivilegeDefinitionPatch");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();

final OrganizerPrivilegeDefinitionPatchRequest organizerPrivilegeDefinitionPatchRequest = new OrganizerPrivilegeDefinitionPatchRequest(); // OrganizerPrivilegeDefinitionPatchRequest | 

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

import com.secutix.tixngo.v1.0.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        OrganizerPrivilegeDefinitionPatchRequest organizerPrivilegeDefinitionPatchRequest = ; // OrganizerPrivilegeDefinitionPatchRequest | 

        try {
            OrganizerPrivilegeDefinitionPatchResponse result = apiInstance.organizerPrivilegeDefinitionPatch(organizerPrivilegeDefinitionPatchRequest);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerPrivilegeDefinitionPatch");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];
OrganizerPrivilegeDefinitionPatchRequest *organizerPrivilegeDefinitionPatchRequest = ; // 

[apiInstance organizerPrivilegeDefinitionPatchWith:organizerPrivilegeDefinitionPatchRequest
              completionHandler: ^(OrganizerPrivilegeDefinitionPatchResponse output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var TixngoRestApiBackendOrganizerApi = require('tixngo_rest_api_backend_organizer_api');

// Create an instance of the API class
var api = new TixngoRestApiBackendOrganizerApi.DefaultApi()
var organizerPrivilegeDefinitionPatchRequest = ; // {OrganizerPrivilegeDefinitionPatchRequest} 

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

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

            // Create an instance of the API class
            var apiInstance = new DefaultApi();
            var organizerPrivilegeDefinitionPatchRequest = new OrganizerPrivilegeDefinitionPatchRequest(); // OrganizerPrivilegeDefinitionPatchRequest | 

            try {
                OrganizerPrivilegeDefinitionPatchResponse result = apiInstance.organizerPrivilegeDefinitionPatch(organizerPrivilegeDefinitionPatchRequest);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerPrivilegeDefinitionPatch: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();
$organizerPrivilegeDefinitionPatchRequest = ; // OrganizerPrivilegeDefinitionPatchRequest | 

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

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DefaultApi->new();
my $organizerPrivilegeDefinitionPatchRequest = WWW::OPenAPIClient::Object::OrganizerPrivilegeDefinitionPatchRequest->new(); # OrganizerPrivilegeDefinitionPatchRequest | 

eval {
    my $result = $api_instance->organizerPrivilegeDefinitionPatch(organizerPrivilegeDefinitionPatchRequest => $organizerPrivilegeDefinitionPatchRequest);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerPrivilegeDefinitionPatch: $@\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.DefaultApi()
organizerPrivilegeDefinitionPatchRequest =  # OrganizerPrivilegeDefinitionPatchRequest | 

try:
    api_response = api_instance.organizer_privilege_definition_patch(organizerPrivilegeDefinitionPatchRequest)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerPrivilegeDefinitionPatch: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let organizerPrivilegeDefinitionPatchRequest = ; // OrganizerPrivilegeDefinitionPatchRequest

    let mut context = DefaultApi::Context::default();
    let result = client.organizerPrivilegeDefinitionPatch(organizerPrivilegeDefinitionPatchRequest, &context).wait();

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

Scopes

Parameters

Body parameters
Name Description
organizerPrivilegeDefinitionPatchRequest *

Responses


organizerPrivilegeDefinitionPost

Inject privilege definition


/organizer/privilege-definition

Usage and SDK Samples

curl -X POST \
 -H "Accept: application/json" \
 -H "Content-Type: application/json" \
 "https://api.tixngo.io/prod/v1.0/organizer/privilege-definition" \
 -d '{
  "privilegeDefinitions" : [ {
    "image" : "image",
    "name" : "name",
    "id" : "id",
    "type" : "SEASON_CARD",
    "termAndConditions" : "termAndConditions",
    "layoutId" : "PRIV_SEASON_1"
  }, {
    "image" : "image",
    "name" : "name",
    "id" : "id",
    "type" : "SEASON_CARD",
    "termAndConditions" : "termAndConditions",
    "layoutId" : "PRIV_SEASON_1"
  }, {
    "image" : "image",
    "name" : "name",
    "id" : "id",
    "type" : "SEASON_CARD",
    "termAndConditions" : "termAndConditions",
    "layoutId" : "PRIV_SEASON_1"
  }, {
    "image" : "image",
    "name" : "name",
    "id" : "id",
    "type" : "SEASON_CARD",
    "termAndConditions" : "termAndConditions",
    "layoutId" : "PRIV_SEASON_1"
  }, {
    "image" : "image",
    "name" : "name",
    "id" : "id",
    "type" : "SEASON_CARD",
    "termAndConditions" : "termAndConditions",
    "layoutId" : "PRIV_SEASON_1"
  } ]
}'
import com.secutix.tixngo.v1.0.*;
import com.secutix.tixngo.v1.0.auth.*;
import com.secutix.tixngo.v1.0.model.*;
import com.secutix.tixngo.v1.0.api.DefaultApi;

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

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

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();
        OrganizerPrivilegeDefinitionPostRequest organizerPrivilegeDefinitionPostRequest = ; // OrganizerPrivilegeDefinitionPostRequest | 

        try {
            OrganizerPrivilegeDefinitionPostResponse result = apiInstance.organizerPrivilegeDefinitionPost(organizerPrivilegeDefinitionPostRequest);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerPrivilegeDefinitionPost");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();

final OrganizerPrivilegeDefinitionPostRequest organizerPrivilegeDefinitionPostRequest = new OrganizerPrivilegeDefinitionPostRequest(); // OrganizerPrivilegeDefinitionPostRequest | 

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

import com.secutix.tixngo.v1.0.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        OrganizerPrivilegeDefinitionPostRequest organizerPrivilegeDefinitionPostRequest = ; // OrganizerPrivilegeDefinitionPostRequest | 

        try {
            OrganizerPrivilegeDefinitionPostResponse result = apiInstance.organizerPrivilegeDefinitionPost(organizerPrivilegeDefinitionPostRequest);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerPrivilegeDefinitionPost");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];
OrganizerPrivilegeDefinitionPostRequest *organizerPrivilegeDefinitionPostRequest = ; // 

[apiInstance organizerPrivilegeDefinitionPostWith:organizerPrivilegeDefinitionPostRequest
              completionHandler: ^(OrganizerPrivilegeDefinitionPostResponse output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var TixngoRestApiBackendOrganizerApi = require('tixngo_rest_api_backend_organizer_api');

// Create an instance of the API class
var api = new TixngoRestApiBackendOrganizerApi.DefaultApi()
var organizerPrivilegeDefinitionPostRequest = ; // {OrganizerPrivilegeDefinitionPostRequest} 

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

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

            // Create an instance of the API class
            var apiInstance = new DefaultApi();
            var organizerPrivilegeDefinitionPostRequest = new OrganizerPrivilegeDefinitionPostRequest(); // OrganizerPrivilegeDefinitionPostRequest | 

            try {
                OrganizerPrivilegeDefinitionPostResponse result = apiInstance.organizerPrivilegeDefinitionPost(organizerPrivilegeDefinitionPostRequest);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerPrivilegeDefinitionPost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();
$organizerPrivilegeDefinitionPostRequest = ; // OrganizerPrivilegeDefinitionPostRequest | 

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

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DefaultApi->new();
my $organizerPrivilegeDefinitionPostRequest = WWW::OPenAPIClient::Object::OrganizerPrivilegeDefinitionPostRequest->new(); # OrganizerPrivilegeDefinitionPostRequest | 

eval {
    my $result = $api_instance->organizerPrivilegeDefinitionPost(organizerPrivilegeDefinitionPostRequest => $organizerPrivilegeDefinitionPostRequest);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerPrivilegeDefinitionPost: $@\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.DefaultApi()
organizerPrivilegeDefinitionPostRequest =  # OrganizerPrivilegeDefinitionPostRequest | 

try:
    api_response = api_instance.organizer_privilege_definition_post(organizerPrivilegeDefinitionPostRequest)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerPrivilegeDefinitionPost: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let organizerPrivilegeDefinitionPostRequest = ; // OrganizerPrivilegeDefinitionPostRequest

    let mut context = DefaultApi::Context::default();
    let result = client.organizerPrivilegeDefinitionPost(organizerPrivilegeDefinitionPostRequest, &context).wait();

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

Scopes

Parameters

Body parameters
Name Description
organizerPrivilegeDefinitionPostRequest *

Responses


organizerPrivilegeSpectatorInstanceDelete

delete privilege spectator instances


/organizer/privilege-spectator-instance

Usage and SDK Samples

curl -X DELETE \
 -H "Accept: application/json" \
 "https://api.tixngo.io/prod/v1.0/organizer/privilege-spectator-instance?reason=reason_example&showDeletedInstance=true&operatorEmail=operatorEmail_example&privilegeSpectatorInstances="
import com.secutix.tixngo.v1.0.*;
import com.secutix.tixngo.v1.0.auth.*;
import com.secutix.tixngo.v1.0.model.*;
import com.secutix.tixngo.v1.0.api.DefaultApi;

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

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

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();
        String operatorEmail = operatorEmail_example; // String | 
        array[String] privilegeSpectatorInstances = ; // array[String] | 
        String reason = reason_example; // String | 
        Boolean showDeletedInstance = true; // Boolean | 

        try {
            OrganizerPrivilegeSpectatorInstanceDeleteResponse result = apiInstance.organizerPrivilegeSpectatorInstanceDelete(operatorEmail, privilegeSpectatorInstances, reason, showDeletedInstance);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerPrivilegeSpectatorInstanceDelete");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();

final String operatorEmail = new String(); // String | 
final array[String] privilegeSpectatorInstances = new array[String](); // array[String] | 
final String reason = new String(); // String | 
final Boolean showDeletedInstance = new Boolean(); // Boolean | 

try {
    final result = await api_instance.organizerPrivilegeSpectatorInstanceDelete(operatorEmail, privilegeSpectatorInstances, reason, showDeletedInstance);
    print(result);
} catch (e) {
    print('Exception when calling DefaultApi->organizerPrivilegeSpectatorInstanceDelete: $e\n');
}

import com.secutix.tixngo.v1.0.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        String operatorEmail = operatorEmail_example; // String | 
        array[String] privilegeSpectatorInstances = ; // array[String] | 
        String reason = reason_example; // String | 
        Boolean showDeletedInstance = true; // Boolean | 

        try {
            OrganizerPrivilegeSpectatorInstanceDeleteResponse result = apiInstance.organizerPrivilegeSpectatorInstanceDelete(operatorEmail, privilegeSpectatorInstances, reason, showDeletedInstance);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerPrivilegeSpectatorInstanceDelete");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];
String *operatorEmail = operatorEmail_example; //  (default to null)
array[String] *privilegeSpectatorInstances = ; //  (default to null)
String *reason = reason_example; //  (optional) (default to null)
Boolean *showDeletedInstance = true; //  (optional) (default to false)

[apiInstance organizerPrivilegeSpectatorInstanceDeleteWith:operatorEmail
    privilegeSpectatorInstances:privilegeSpectatorInstances
    reason:reason
    showDeletedInstance:showDeletedInstance
              completionHandler: ^(OrganizerPrivilegeSpectatorInstanceDeleteResponse output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var TixngoRestApiBackendOrganizerApi = require('tixngo_rest_api_backend_organizer_api');

// Create an instance of the API class
var api = new TixngoRestApiBackendOrganizerApi.DefaultApi()
var operatorEmail = operatorEmail_example; // {String} 
var privilegeSpectatorInstances = ; // {array[String]} 
var opts = {
  'reason': reason_example, // {String} 
  'showDeletedInstance': true // {Boolean} 
};

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

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

            // Create an instance of the API class
            var apiInstance = new DefaultApi();
            var operatorEmail = operatorEmail_example;  // String |  (default to null)
            var privilegeSpectatorInstances = new array[String](); // array[String] |  (default to null)
            var reason = reason_example;  // String |  (optional)  (default to null)
            var showDeletedInstance = true;  // Boolean |  (optional)  (default to false)

            try {
                OrganizerPrivilegeSpectatorInstanceDeleteResponse result = apiInstance.organizerPrivilegeSpectatorInstanceDelete(operatorEmail, privilegeSpectatorInstances, reason, showDeletedInstance);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerPrivilegeSpectatorInstanceDelete: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();
$operatorEmail = operatorEmail_example; // String | 
$privilegeSpectatorInstances = ; // array[String] | 
$reason = reason_example; // String | 
$showDeletedInstance = true; // Boolean | 

try {
    $result = $api_instance->organizerPrivilegeSpectatorInstanceDelete($operatorEmail, $privilegeSpectatorInstances, $reason, $showDeletedInstance);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerPrivilegeSpectatorInstanceDelete: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::OPenAPIClient::Configuration;
use WWW::OPenAPIClient::DefaultApi;

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DefaultApi->new();
my $operatorEmail = operatorEmail_example; # String | 
my $privilegeSpectatorInstances = []; # array[String] | 
my $reason = reason_example; # String | 
my $showDeletedInstance = true; # Boolean | 

eval {
    my $result = $api_instance->organizerPrivilegeSpectatorInstanceDelete(operatorEmail => $operatorEmail, privilegeSpectatorInstances => $privilegeSpectatorInstances, reason => $reason, showDeletedInstance => $showDeletedInstance);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerPrivilegeSpectatorInstanceDelete: $@\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.DefaultApi()
operatorEmail = operatorEmail_example # String |  (default to null)
privilegeSpectatorInstances =  # array[String] |  (default to null)
reason = reason_example # String |  (optional) (default to null)
showDeletedInstance = true # Boolean |  (optional) (default to false)

try:
    api_response = api_instance.organizer_privilege_spectator_instance_delete(operatorEmail, privilegeSpectatorInstances, reason=reason, showDeletedInstance=showDeletedInstance)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerPrivilegeSpectatorInstanceDelete: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let operatorEmail = operatorEmail_example; // String
    let privilegeSpectatorInstances = ; // array[String]
    let reason = reason_example; // String
    let showDeletedInstance = true; // Boolean

    let mut context = DefaultApi::Context::default();
    let result = client.organizerPrivilegeSpectatorInstanceDelete(operatorEmail, privilegeSpectatorInstances, reason, showDeletedInstance, &context).wait();

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

Scopes

Parameters

Query parameters
Name Description
reason
String
showDeletedInstance
Boolean
operatorEmail*
String
Required
privilegeSpectatorInstances*
array[String]
Required

Responses


organizerPrivilegeSpectatorInstancePost

Inject privilege spectator instances


/organizer/privilege-spectator-instance

Usage and SDK Samples

curl -X POST \
 -H "Accept: application/json" \
 -H "Content-Type: application/json" \
 "https://api.tixngo.io/prod/v1.0/organizer/privilege-spectator-instance" \
 -d '{
  "mobileAppId" : "mobileAppId",
  "privilegeSpectatorInstances" : [ {
    "purchaseFileNumber" : "purchaseFileNumber",
    "purchaseDate" : "2000-01-23T04:56:07.000+00:00",
    "purchasePriceCategory" : "purchasePriceCategory",
    "contingent" : "contingent",
    "timeZone" : 6,
    "purchasePrice" : 0.8008281904610115,
    "purchaseCurrency" : "purchaseCurrency",
    "privilegeNumber" : "privilegeNumber",
    "isUsed" : true,
    "privilegeDefinitionId" : "privilegeDefinitionId",
    "text3" : "text3",
    "privilegeInstanceId" : "privilegeInstanceId",
    "text4" : "text4",
    "text1" : "text1",
    "text2" : "text2",
    "text5" : "text5",
    "barcode" : "barcode",
    "email" : "email",
    "expirationDate" : "2000-01-23T04:56:07.000+00:00"
  }, {
    "purchaseFileNumber" : "purchaseFileNumber",
    "purchaseDate" : "2000-01-23T04:56:07.000+00:00",
    "purchasePriceCategory" : "purchasePriceCategory",
    "contingent" : "contingent",
    "timeZone" : 6,
    "purchasePrice" : 0.8008281904610115,
    "purchaseCurrency" : "purchaseCurrency",
    "privilegeNumber" : "privilegeNumber",
    "isUsed" : true,
    "privilegeDefinitionId" : "privilegeDefinitionId",
    "text3" : "text3",
    "privilegeInstanceId" : "privilegeInstanceId",
    "text4" : "text4",
    "text1" : "text1",
    "text2" : "text2",
    "text5" : "text5",
    "barcode" : "barcode",
    "email" : "email",
    "expirationDate" : "2000-01-23T04:56:07.000+00:00"
  }, {
    "purchaseFileNumber" : "purchaseFileNumber",
    "purchaseDate" : "2000-01-23T04:56:07.000+00:00",
    "purchasePriceCategory" : "purchasePriceCategory",
    "contingent" : "contingent",
    "timeZone" : 6,
    "purchasePrice" : 0.8008281904610115,
    "purchaseCurrency" : "purchaseCurrency",
    "privilegeNumber" : "privilegeNumber",
    "isUsed" : true,
    "privilegeDefinitionId" : "privilegeDefinitionId",
    "text3" : "text3",
    "privilegeInstanceId" : "privilegeInstanceId",
    "text4" : "text4",
    "text1" : "text1",
    "text2" : "text2",
    "text5" : "text5",
    "barcode" : "barcode",
    "email" : "email",
    "expirationDate" : "2000-01-23T04:56:07.000+00:00"
  }, {
    "purchaseFileNumber" : "purchaseFileNumber",
    "purchaseDate" : "2000-01-23T04:56:07.000+00:00",
    "purchasePriceCategory" : "purchasePriceCategory",
    "contingent" : "contingent",
    "timeZone" : 6,
    "purchasePrice" : 0.8008281904610115,
    "purchaseCurrency" : "purchaseCurrency",
    "privilegeNumber" : "privilegeNumber",
    "isUsed" : true,
    "privilegeDefinitionId" : "privilegeDefinitionId",
    "text3" : "text3",
    "privilegeInstanceId" : "privilegeInstanceId",
    "text4" : "text4",
    "text1" : "text1",
    "text2" : "text2",
    "text5" : "text5",
    "barcode" : "barcode",
    "email" : "email",
    "expirationDate" : "2000-01-23T04:56:07.000+00:00"
  }, {
    "purchaseFileNumber" : "purchaseFileNumber",
    "purchaseDate" : "2000-01-23T04:56:07.000+00:00",
    "purchasePriceCategory" : "purchasePriceCategory",
    "contingent" : "contingent",
    "timeZone" : 6,
    "purchasePrice" : 0.8008281904610115,
    "purchaseCurrency" : "purchaseCurrency",
    "privilegeNumber" : "privilegeNumber",
    "isUsed" : true,
    "privilegeDefinitionId" : "privilegeDefinitionId",
    "text3" : "text3",
    "privilegeInstanceId" : "privilegeInstanceId",
    "text4" : "text4",
    "text1" : "text1",
    "text2" : "text2",
    "text5" : "text5",
    "barcode" : "barcode",
    "email" : "email",
    "expirationDate" : "2000-01-23T04:56:07.000+00:00"
  } ]
}'
import com.secutix.tixngo.v1.0.*;
import com.secutix.tixngo.v1.0.auth.*;
import com.secutix.tixngo.v1.0.model.*;
import com.secutix.tixngo.v1.0.api.DefaultApi;

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

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

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();
        OrganizerPrivilegeSpectatorInstancePostRequest organizerPrivilegeSpectatorInstancePostRequest = ; // OrganizerPrivilegeSpectatorInstancePostRequest | 

        try {
            OrganizerPrivilegeSpectatorInstancePostResponse result = apiInstance.organizerPrivilegeSpectatorInstancePost(organizerPrivilegeSpectatorInstancePostRequest);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerPrivilegeSpectatorInstancePost");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();

final OrganizerPrivilegeSpectatorInstancePostRequest organizerPrivilegeSpectatorInstancePostRequest = new OrganizerPrivilegeSpectatorInstancePostRequest(); // OrganizerPrivilegeSpectatorInstancePostRequest | 

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

import com.secutix.tixngo.v1.0.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        OrganizerPrivilegeSpectatorInstancePostRequest organizerPrivilegeSpectatorInstancePostRequest = ; // OrganizerPrivilegeSpectatorInstancePostRequest | 

        try {
            OrganizerPrivilegeSpectatorInstancePostResponse result = apiInstance.organizerPrivilegeSpectatorInstancePost(organizerPrivilegeSpectatorInstancePostRequest);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerPrivilegeSpectatorInstancePost");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];
OrganizerPrivilegeSpectatorInstancePostRequest *organizerPrivilegeSpectatorInstancePostRequest = ; // 

[apiInstance organizerPrivilegeSpectatorInstancePostWith:organizerPrivilegeSpectatorInstancePostRequest
              completionHandler: ^(OrganizerPrivilegeSpectatorInstancePostResponse output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var TixngoRestApiBackendOrganizerApi = require('tixngo_rest_api_backend_organizer_api');

// Create an instance of the API class
var api = new TixngoRestApiBackendOrganizerApi.DefaultApi()
var organizerPrivilegeSpectatorInstancePostRequest = ; // {OrganizerPrivilegeSpectatorInstancePostRequest} 

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

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

            // Create an instance of the API class
            var apiInstance = new DefaultApi();
            var organizerPrivilegeSpectatorInstancePostRequest = new OrganizerPrivilegeSpectatorInstancePostRequest(); // OrganizerPrivilegeSpectatorInstancePostRequest | 

            try {
                OrganizerPrivilegeSpectatorInstancePostResponse result = apiInstance.organizerPrivilegeSpectatorInstancePost(organizerPrivilegeSpectatorInstancePostRequest);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerPrivilegeSpectatorInstancePost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();
$organizerPrivilegeSpectatorInstancePostRequest = ; // OrganizerPrivilegeSpectatorInstancePostRequest | 

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

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DefaultApi->new();
my $organizerPrivilegeSpectatorInstancePostRequest = WWW::OPenAPIClient::Object::OrganizerPrivilegeSpectatorInstancePostRequest->new(); # OrganizerPrivilegeSpectatorInstancePostRequest | 

eval {
    my $result = $api_instance->organizerPrivilegeSpectatorInstancePost(organizerPrivilegeSpectatorInstancePostRequest => $organizerPrivilegeSpectatorInstancePostRequest);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerPrivilegeSpectatorInstancePost: $@\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.DefaultApi()
organizerPrivilegeSpectatorInstancePostRequest =  # OrganizerPrivilegeSpectatorInstancePostRequest | 

try:
    api_response = api_instance.organizer_privilege_spectator_instance_post(organizerPrivilegeSpectatorInstancePostRequest)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerPrivilegeSpectatorInstancePost: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let organizerPrivilegeSpectatorInstancePostRequest = ; // OrganizerPrivilegeSpectatorInstancePostRequest

    let mut context = DefaultApi::Context::default();
    let result = client.organizerPrivilegeSpectatorInstancePost(organizerPrivilegeSpectatorInstancePostRequest, &context).wait();

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

Scopes

Parameters

Body parameters
Name Description
organizerPrivilegeSpectatorInstancePostRequest *

Responses


organizerPrivilegeSpectatorInstancePut

update privilege spectator instances


/organizer/privilege-spectator-instance

Usage and SDK Samples

curl -X PUT \
 -H "Accept: application/json" \
 -H "Content-Type: application/json" \
 "https://api.tixngo.io/prod/v1.0/organizer/privilege-spectator-instance" \
 -d '{
  "mobileAppId" : "mobileAppId",
  "privilegeSpectatorInstances" : [ {
    "purchaseFileNumber" : "purchaseFileNumber",
    "purchaseDate" : "2000-01-23T04:56:07.000+00:00",
    "purchasePriceCategory" : "purchasePriceCategory",
    "contingent" : "contingent",
    "timeZone" : 6,
    "purchasePrice" : 0.8008281904610115,
    "purchaseCurrency" : "purchaseCurrency",
    "privilegeNumber" : "privilegeNumber",
    "isUsed" : true,
    "privilegeDefinitionId" : "privilegeDefinitionId",
    "text3" : "text3",
    "privilegeInstanceId" : "privilegeInstanceId",
    "text4" : "text4",
    "text1" : "text1",
    "text2" : "text2",
    "text5" : "text5",
    "barcode" : "barcode",
    "email" : "email",
    "expirationDate" : "2000-01-23T04:56:07.000+00:00"
  }, {
    "purchaseFileNumber" : "purchaseFileNumber",
    "purchaseDate" : "2000-01-23T04:56:07.000+00:00",
    "purchasePriceCategory" : "purchasePriceCategory",
    "contingent" : "contingent",
    "timeZone" : 6,
    "purchasePrice" : 0.8008281904610115,
    "purchaseCurrency" : "purchaseCurrency",
    "privilegeNumber" : "privilegeNumber",
    "isUsed" : true,
    "privilegeDefinitionId" : "privilegeDefinitionId",
    "text3" : "text3",
    "privilegeInstanceId" : "privilegeInstanceId",
    "text4" : "text4",
    "text1" : "text1",
    "text2" : "text2",
    "text5" : "text5",
    "barcode" : "barcode",
    "email" : "email",
    "expirationDate" : "2000-01-23T04:56:07.000+00:00"
  }, {
    "purchaseFileNumber" : "purchaseFileNumber",
    "purchaseDate" : "2000-01-23T04:56:07.000+00:00",
    "purchasePriceCategory" : "purchasePriceCategory",
    "contingent" : "contingent",
    "timeZone" : 6,
    "purchasePrice" : 0.8008281904610115,
    "purchaseCurrency" : "purchaseCurrency",
    "privilegeNumber" : "privilegeNumber",
    "isUsed" : true,
    "privilegeDefinitionId" : "privilegeDefinitionId",
    "text3" : "text3",
    "privilegeInstanceId" : "privilegeInstanceId",
    "text4" : "text4",
    "text1" : "text1",
    "text2" : "text2",
    "text5" : "text5",
    "barcode" : "barcode",
    "email" : "email",
    "expirationDate" : "2000-01-23T04:56:07.000+00:00"
  }, {
    "purchaseFileNumber" : "purchaseFileNumber",
    "purchaseDate" : "2000-01-23T04:56:07.000+00:00",
    "purchasePriceCategory" : "purchasePriceCategory",
    "contingent" : "contingent",
    "timeZone" : 6,
    "purchasePrice" : 0.8008281904610115,
    "purchaseCurrency" : "purchaseCurrency",
    "privilegeNumber" : "privilegeNumber",
    "isUsed" : true,
    "privilegeDefinitionId" : "privilegeDefinitionId",
    "text3" : "text3",
    "privilegeInstanceId" : "privilegeInstanceId",
    "text4" : "text4",
    "text1" : "text1",
    "text2" : "text2",
    "text5" : "text5",
    "barcode" : "barcode",
    "email" : "email",
    "expirationDate" : "2000-01-23T04:56:07.000+00:00"
  }, {
    "purchaseFileNumber" : "purchaseFileNumber",
    "purchaseDate" : "2000-01-23T04:56:07.000+00:00",
    "purchasePriceCategory" : "purchasePriceCategory",
    "contingent" : "contingent",
    "timeZone" : 6,
    "purchasePrice" : 0.8008281904610115,
    "purchaseCurrency" : "purchaseCurrency",
    "privilegeNumber" : "privilegeNumber",
    "isUsed" : true,
    "privilegeDefinitionId" : "privilegeDefinitionId",
    "text3" : "text3",
    "privilegeInstanceId" : "privilegeInstanceId",
    "text4" : "text4",
    "text1" : "text1",
    "text2" : "text2",
    "text5" : "text5",
    "barcode" : "barcode",
    "email" : "email",
    "expirationDate" : "2000-01-23T04:56:07.000+00:00"
  } ]
}'
import com.secutix.tixngo.v1.0.*;
import com.secutix.tixngo.v1.0.auth.*;
import com.secutix.tixngo.v1.0.model.*;
import com.secutix.tixngo.v1.0.api.DefaultApi;

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

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

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();
        OrganizerPrivilegeSpectatorInstancePutRequest organizerPrivilegeSpectatorInstancePutRequest = ; // OrganizerPrivilegeSpectatorInstancePutRequest | 

        try {
            OrganizerPrivilegeSpectatorInstancePutResponse result = apiInstance.organizerPrivilegeSpectatorInstancePut(organizerPrivilegeSpectatorInstancePutRequest);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerPrivilegeSpectatorInstancePut");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();

final OrganizerPrivilegeSpectatorInstancePutRequest organizerPrivilegeSpectatorInstancePutRequest = new OrganizerPrivilegeSpectatorInstancePutRequest(); // OrganizerPrivilegeSpectatorInstancePutRequest | 

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

import com.secutix.tixngo.v1.0.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        OrganizerPrivilegeSpectatorInstancePutRequest organizerPrivilegeSpectatorInstancePutRequest = ; // OrganizerPrivilegeSpectatorInstancePutRequest | 

        try {
            OrganizerPrivilegeSpectatorInstancePutResponse result = apiInstance.organizerPrivilegeSpectatorInstancePut(organizerPrivilegeSpectatorInstancePutRequest);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerPrivilegeSpectatorInstancePut");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];
OrganizerPrivilegeSpectatorInstancePutRequest *organizerPrivilegeSpectatorInstancePutRequest = ; // 

[apiInstance organizerPrivilegeSpectatorInstancePutWith:organizerPrivilegeSpectatorInstancePutRequest
              completionHandler: ^(OrganizerPrivilegeSpectatorInstancePutResponse output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var TixngoRestApiBackendOrganizerApi = require('tixngo_rest_api_backend_organizer_api');

// Create an instance of the API class
var api = new TixngoRestApiBackendOrganizerApi.DefaultApi()
var organizerPrivilegeSpectatorInstancePutRequest = ; // {OrganizerPrivilegeSpectatorInstancePutRequest} 

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

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

            // Create an instance of the API class
            var apiInstance = new DefaultApi();
            var organizerPrivilegeSpectatorInstancePutRequest = new OrganizerPrivilegeSpectatorInstancePutRequest(); // OrganizerPrivilegeSpectatorInstancePutRequest | 

            try {
                OrganizerPrivilegeSpectatorInstancePutResponse result = apiInstance.organizerPrivilegeSpectatorInstancePut(organizerPrivilegeSpectatorInstancePutRequest);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerPrivilegeSpectatorInstancePut: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();
$organizerPrivilegeSpectatorInstancePutRequest = ; // OrganizerPrivilegeSpectatorInstancePutRequest | 

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

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DefaultApi->new();
my $organizerPrivilegeSpectatorInstancePutRequest = WWW::OPenAPIClient::Object::OrganizerPrivilegeSpectatorInstancePutRequest->new(); # OrganizerPrivilegeSpectatorInstancePutRequest | 

eval {
    my $result = $api_instance->organizerPrivilegeSpectatorInstancePut(organizerPrivilegeSpectatorInstancePutRequest => $organizerPrivilegeSpectatorInstancePutRequest);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerPrivilegeSpectatorInstancePut: $@\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.DefaultApi()
organizerPrivilegeSpectatorInstancePutRequest =  # OrganizerPrivilegeSpectatorInstancePutRequest | 

try:
    api_response = api_instance.organizer_privilege_spectator_instance_put(organizerPrivilegeSpectatorInstancePutRequest)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerPrivilegeSpectatorInstancePut: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let organizerPrivilegeSpectatorInstancePutRequest = ; // OrganizerPrivilegeSpectatorInstancePutRequest

    let mut context = DefaultApi::Context::default();
    let result = client.organizerPrivilegeSpectatorInstancePut(organizerPrivilegeSpectatorInstancePutRequest, &context).wait();

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

Scopes

Parameters

Body parameters
Name Description
organizerPrivilegeSpectatorInstancePutRequest *

Responses


organizerPrivilegeSpectatorInstancesPatch

update privilege spectator instances


/organizer/privilege-spectator-instances

Usage and SDK Samples

curl -X PATCH \
 -H "Accept: application/json" \
 -H "Content-Type: application/json" \
 "https://api.tixngo.io/prod/v1.0/organizer/privilege-spectator-instances" \
 -d '{
  "instances" : [ {
    "reason" : "reason",
    "purchaseFileNumber" : "purchaseFileNumber",
    "purchaseDate" : "2000-01-23T04:56:07.000+00:00",
    "purchasePriceCategory" : "purchasePriceCategory",
    "contingent" : "contingent",
    "timeZone" : 0,
    "purchasePrice" : 6.027456183070403,
    "purchaseCurrency" : "purchaseCurrency",
    "privilegeNumber" : "privilegeNumber",
    "isUsed" : true,
    "privilegeDefinitionId" : "privilegeDefinitionId",
    "text3" : "text3",
    "privilegeInstanceId" : "privilegeInstanceId",
    "text4" : "text4",
    "text1" : "text1",
    "text2" : "text2",
    "text5" : "text5",
    "barcode" : "barcode",
    "email" : "email",
    "showDeletedInstance" : true,
    "expirationDate" : "2000-01-23T04:56:07.000+00:00",
    "status" : "INJECTED"
  }, {
    "reason" : "reason",
    "purchaseFileNumber" : "purchaseFileNumber",
    "purchaseDate" : "2000-01-23T04:56:07.000+00:00",
    "purchasePriceCategory" : "purchasePriceCategory",
    "contingent" : "contingent",
    "timeZone" : 0,
    "purchasePrice" : 6.027456183070403,
    "purchaseCurrency" : "purchaseCurrency",
    "privilegeNumber" : "privilegeNumber",
    "isUsed" : true,
    "privilegeDefinitionId" : "privilegeDefinitionId",
    "text3" : "text3",
    "privilegeInstanceId" : "privilegeInstanceId",
    "text4" : "text4",
    "text1" : "text1",
    "text2" : "text2",
    "text5" : "text5",
    "barcode" : "barcode",
    "email" : "email",
    "showDeletedInstance" : true,
    "expirationDate" : "2000-01-23T04:56:07.000+00:00",
    "status" : "INJECTED"
  }, {
    "reason" : "reason",
    "purchaseFileNumber" : "purchaseFileNumber",
    "purchaseDate" : "2000-01-23T04:56:07.000+00:00",
    "purchasePriceCategory" : "purchasePriceCategory",
    "contingent" : "contingent",
    "timeZone" : 0,
    "purchasePrice" : 6.027456183070403,
    "purchaseCurrency" : "purchaseCurrency",
    "privilegeNumber" : "privilegeNumber",
    "isUsed" : true,
    "privilegeDefinitionId" : "privilegeDefinitionId",
    "text3" : "text3",
    "privilegeInstanceId" : "privilegeInstanceId",
    "text4" : "text4",
    "text1" : "text1",
    "text2" : "text2",
    "text5" : "text5",
    "barcode" : "barcode",
    "email" : "email",
    "showDeletedInstance" : true,
    "expirationDate" : "2000-01-23T04:56:07.000+00:00",
    "status" : "INJECTED"
  }, {
    "reason" : "reason",
    "purchaseFileNumber" : "purchaseFileNumber",
    "purchaseDate" : "2000-01-23T04:56:07.000+00:00",
    "purchasePriceCategory" : "purchasePriceCategory",
    "contingent" : "contingent",
    "timeZone" : 0,
    "purchasePrice" : 6.027456183070403,
    "purchaseCurrency" : "purchaseCurrency",
    "privilegeNumber" : "privilegeNumber",
    "isUsed" : true,
    "privilegeDefinitionId" : "privilegeDefinitionId",
    "text3" : "text3",
    "privilegeInstanceId" : "privilegeInstanceId",
    "text4" : "text4",
    "text1" : "text1",
    "text2" : "text2",
    "text5" : "text5",
    "barcode" : "barcode",
    "email" : "email",
    "showDeletedInstance" : true,
    "expirationDate" : "2000-01-23T04:56:07.000+00:00",
    "status" : "INJECTED"
  }, {
    "reason" : "reason",
    "purchaseFileNumber" : "purchaseFileNumber",
    "purchaseDate" : "2000-01-23T04:56:07.000+00:00",
    "purchasePriceCategory" : "purchasePriceCategory",
    "contingent" : "contingent",
    "timeZone" : 0,
    "purchasePrice" : 6.027456183070403,
    "purchaseCurrency" : "purchaseCurrency",
    "privilegeNumber" : "privilegeNumber",
    "isUsed" : true,
    "privilegeDefinitionId" : "privilegeDefinitionId",
    "text3" : "text3",
    "privilegeInstanceId" : "privilegeInstanceId",
    "text4" : "text4",
    "text1" : "text1",
    "text2" : "text2",
    "text5" : "text5",
    "barcode" : "barcode",
    "email" : "email",
    "showDeletedInstance" : true,
    "expirationDate" : "2000-01-23T04:56:07.000+00:00",
    "status" : "INJECTED"
  } ]
}'
import com.secutix.tixngo.v1.0.*;
import com.secutix.tixngo.v1.0.auth.*;
import com.secutix.tixngo.v1.0.model.*;
import com.secutix.tixngo.v1.0.api.DefaultApi;

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

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

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();
        OrganizerPrivilegeSpectatorInstancePatchRequest organizerPrivilegeSpectatorInstancePatchRequest = ; // OrganizerPrivilegeSpectatorInstancePatchRequest | 

        try {
            OrganizerPrivilegeSpectatorInstancePatchResponse result = apiInstance.organizerPrivilegeSpectatorInstancesPatch(organizerPrivilegeSpectatorInstancePatchRequest);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerPrivilegeSpectatorInstancesPatch");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();

final OrganizerPrivilegeSpectatorInstancePatchRequest organizerPrivilegeSpectatorInstancePatchRequest = new OrganizerPrivilegeSpectatorInstancePatchRequest(); // OrganizerPrivilegeSpectatorInstancePatchRequest | 

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

import com.secutix.tixngo.v1.0.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        OrganizerPrivilegeSpectatorInstancePatchRequest organizerPrivilegeSpectatorInstancePatchRequest = ; // OrganizerPrivilegeSpectatorInstancePatchRequest | 

        try {
            OrganizerPrivilegeSpectatorInstancePatchResponse result = apiInstance.organizerPrivilegeSpectatorInstancesPatch(organizerPrivilegeSpectatorInstancePatchRequest);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerPrivilegeSpectatorInstancesPatch");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];
OrganizerPrivilegeSpectatorInstancePatchRequest *organizerPrivilegeSpectatorInstancePatchRequest = ; // 

[apiInstance organizerPrivilegeSpectatorInstancesPatchWith:organizerPrivilegeSpectatorInstancePatchRequest
              completionHandler: ^(OrganizerPrivilegeSpectatorInstancePatchResponse output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var TixngoRestApiBackendOrganizerApi = require('tixngo_rest_api_backend_organizer_api');

// Create an instance of the API class
var api = new TixngoRestApiBackendOrganizerApi.DefaultApi()
var organizerPrivilegeSpectatorInstancePatchRequest = ; // {OrganizerPrivilegeSpectatorInstancePatchRequest} 

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

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

            // Create an instance of the API class
            var apiInstance = new DefaultApi();
            var organizerPrivilegeSpectatorInstancePatchRequest = new OrganizerPrivilegeSpectatorInstancePatchRequest(); // OrganizerPrivilegeSpectatorInstancePatchRequest | 

            try {
                OrganizerPrivilegeSpectatorInstancePatchResponse result = apiInstance.organizerPrivilegeSpectatorInstancesPatch(organizerPrivilegeSpectatorInstancePatchRequest);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerPrivilegeSpectatorInstancesPatch: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();
$organizerPrivilegeSpectatorInstancePatchRequest = ; // OrganizerPrivilegeSpectatorInstancePatchRequest | 

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

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DefaultApi->new();
my $organizerPrivilegeSpectatorInstancePatchRequest = WWW::OPenAPIClient::Object::OrganizerPrivilegeSpectatorInstancePatchRequest->new(); # OrganizerPrivilegeSpectatorInstancePatchRequest | 

eval {
    my $result = $api_instance->organizerPrivilegeSpectatorInstancesPatch(organizerPrivilegeSpectatorInstancePatchRequest => $organizerPrivilegeSpectatorInstancePatchRequest);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerPrivilegeSpectatorInstancesPatch: $@\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.DefaultApi()
organizerPrivilegeSpectatorInstancePatchRequest =  # OrganizerPrivilegeSpectatorInstancePatchRequest | 

try:
    api_response = api_instance.organizer_privilege_spectator_instances_patch(organizerPrivilegeSpectatorInstancePatchRequest)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerPrivilegeSpectatorInstancesPatch: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let organizerPrivilegeSpectatorInstancePatchRequest = ; // OrganizerPrivilegeSpectatorInstancePatchRequest

    let mut context = DefaultApi::Context::default();
    let result = client.organizerPrivilegeSpectatorInstancesPatch(organizerPrivilegeSpectatorInstancePatchRequest, &context).wait();

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

Scopes

Parameters

Body parameters
Name Description
organizerPrivilegeSpectatorInstancePatchRequest *

Responses


organizerProfileGet

Get the profile of the caller (organizer)


/organizer/profile

Usage and SDK Samples

curl -X GET \
 -H "Accept: application/json" \
 "https://api.tixngo.io/prod/v1.0/organizer/profile"
import com.secutix.tixngo.v1.0.*;
import com.secutix.tixngo.v1.0.auth.*;
import com.secutix.tixngo.v1.0.model.*;
import com.secutix.tixngo.v1.0.api.DefaultApi;

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

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

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();

        try {
            OrganizerProfileGetResponse result = apiInstance.organizerProfileGet();
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerProfileGet");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();


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

import com.secutix.tixngo.v1.0.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();

        try {
            OrganizerProfileGetResponse result = apiInstance.organizerProfileGet();
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerProfileGet");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];

[apiInstance organizerProfileGetWithCompletionHandler: 
              ^(OrganizerProfileGetResponse output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var TixngoRestApiBackendOrganizerApi = require('tixngo_rest_api_backend_organizer_api');

// Create an instance of the API class
var api = new TixngoRestApiBackendOrganizerApi.DefaultApi()
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.organizerProfileGet(callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

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

            // Create an instance of the API class
            var apiInstance = new DefaultApi();

            try {
                OrganizerProfileGetResponse result = apiInstance.organizerProfileGet();
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerProfileGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();

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

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DefaultApi->new();

eval {
    my $result = $api_instance->organizerProfileGet();
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerProfileGet: $@\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.DefaultApi()

try:
    api_response = api_instance.organizer_profile_get()
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerProfileGet: %s\n" % e)
extern crate DefaultApi;

pub fn main() {

    let mut context = DefaultApi::Context::default();
    let result = client.organizerProfileGet(&context).wait();

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

Scopes

Parameters

Responses


organizerProfilePut

Update the profile of the caller (organizer)


/organizer/profile

Usage and SDK Samples

curl -X PUT \
 -H "Accept: application/json" \
 -H "Content-Type: application/json" \
 "https://api.tixngo.io/prod/v1.0/organizer/profile" \
 -d '{
  "address" : {
    "zip" : "zip",
    "site" : "site",
    "city" : "city",
    "countryCode" : "countryCode",
    "latitude" : 6.027456183070403,
    "line3" : "line3",
    "region" : "region",
    "line2" : "line2",
    "line1" : "line1",
    "longitude" : 0.8008281904610115
  },
  "phone" : "phone",
  "companyName" : "companyName",
  "websiteRootUrl" : "websiteRootUrl",
  "email" : "email"
}'
import com.secutix.tixngo.v1.0.*;
import com.secutix.tixngo.v1.0.auth.*;
import com.secutix.tixngo.v1.0.model.*;
import com.secutix.tixngo.v1.0.api.DefaultApi;

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

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

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();
        OrganizerProfile organizerProfile = ; // OrganizerProfile | 

        try {
            OrganizerProfile result = apiInstance.organizerProfilePut(organizerProfile);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerProfilePut");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();

final OrganizerProfile organizerProfile = new OrganizerProfile(); // OrganizerProfile | 

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

import com.secutix.tixngo.v1.0.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        OrganizerProfile organizerProfile = ; // OrganizerProfile | 

        try {
            OrganizerProfile result = apiInstance.organizerProfilePut(organizerProfile);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerProfilePut");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];
OrganizerProfile *organizerProfile = ; // 

[apiInstance organizerProfilePutWith:organizerProfile
              completionHandler: ^(OrganizerProfile output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var TixngoRestApiBackendOrganizerApi = require('tixngo_rest_api_backend_organizer_api');

// Create an instance of the API class
var api = new TixngoRestApiBackendOrganizerApi.DefaultApi()
var organizerProfile = ; // {OrganizerProfile} 

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

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

            // Create an instance of the API class
            var apiInstance = new DefaultApi();
            var organizerProfile = new OrganizerProfile(); // OrganizerProfile | 

            try {
                OrganizerProfile result = apiInstance.organizerProfilePut(organizerProfile);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerProfilePut: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();
$organizerProfile = ; // OrganizerProfile | 

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

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DefaultApi->new();
my $organizerProfile = WWW::OPenAPIClient::Object::OrganizerProfile->new(); # OrganizerProfile | 

eval {
    my $result = $api_instance->organizerProfilePut(organizerProfile => $organizerProfile);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerProfilePut: $@\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.DefaultApi()
organizerProfile =  # OrganizerProfile | 

try:
    api_response = api_instance.organizer_profile_put(organizerProfile)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerProfilePut: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let organizerProfile = ; // OrganizerProfile

    let mut context = DefaultApi::Context::default();
    let result = client.organizerProfilePut(organizerProfile, &context).wait();

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

Scopes

Parameters

Body parameters
Name Description
organizerProfile *

Responses


organizerReferenceDataKeyGet

Get reference data of the organizer.


/organizer/reference-data/{key}

Usage and SDK Samples

curl -X GET \
 -H "Accept: application/json" \
 "https://api.tixngo.io/prod/v1.0/organizer/reference-data/{key}?language=language_example&groups=&sites=&eventIds="
import com.secutix.tixngo.v1.0.*;
import com.secutix.tixngo.v1.0.auth.*;
import com.secutix.tixngo.v1.0.model.*;
import com.secutix.tixngo.v1.0.api.DefaultApi;

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

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

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();
        OrganizerReferenceDataKey key = ; // OrganizerReferenceDataKey | Reference data key
        String language = language_example; // String | Language of reference value
        array[String] groups = ; // array[String] | 
        array[String] sites = ; // array[String] | 
        array[String] eventIds = ; // array[String] | List of Event Ids to filter reference value

        try {
            OrganizerReferenceDataResponse result = apiInstance.organizerReferenceDataKeyGet(key, language, groups, sites, eventIds);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerReferenceDataKeyGet");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();

final OrganizerReferenceDataKey key = new OrganizerReferenceDataKey(); // OrganizerReferenceDataKey | Reference data key
final String language = new String(); // String | Language of reference value
final array[String] groups = new array[String](); // array[String] | 
final array[String] sites = new array[String](); // array[String] | 
final array[String] eventIds = new array[String](); // array[String] | List of Event Ids to filter reference value

try {
    final result = await api_instance.organizerReferenceDataKeyGet(key, language, groups, sites, eventIds);
    print(result);
} catch (e) {
    print('Exception when calling DefaultApi->organizerReferenceDataKeyGet: $e\n');
}

import com.secutix.tixngo.v1.0.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        OrganizerReferenceDataKey key = ; // OrganizerReferenceDataKey | Reference data key
        String language = language_example; // String | Language of reference value
        array[String] groups = ; // array[String] | 
        array[String] sites = ; // array[String] | 
        array[String] eventIds = ; // array[String] | List of Event Ids to filter reference value

        try {
            OrganizerReferenceDataResponse result = apiInstance.organizerReferenceDataKeyGet(key, language, groups, sites, eventIds);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerReferenceDataKeyGet");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];
OrganizerReferenceDataKey *key = ; // Reference data key (default to null)
String *language = language_example; // Language of reference value (optional) (default to null)
array[String] *groups = ; //  (optional) (default to null)
array[String] *sites = ; //  (optional) (default to null)
array[String] *eventIds = ; // List of Event Ids to filter reference value (optional) (default to null)

[apiInstance organizerReferenceDataKeyGetWith:key
    language:language
    groups:groups
    sites:sites
    eventIds:eventIds
              completionHandler: ^(OrganizerReferenceDataResponse output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var TixngoRestApiBackendOrganizerApi = require('tixngo_rest_api_backend_organizer_api');

// Create an instance of the API class
var api = new TixngoRestApiBackendOrganizerApi.DefaultApi()
var key = ; // {OrganizerReferenceDataKey} Reference data key
var opts = {
  'language': language_example, // {String} Language of reference value
  'groups': , // {array[String]} 
  'sites': , // {array[String]} 
  'eventIds':  // {array[String]} List of Event Ids to filter reference value
};

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

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

            // Create an instance of the API class
            var apiInstance = new DefaultApi();
            var key = new OrganizerReferenceDataKey(); // OrganizerReferenceDataKey | Reference data key (default to null)
            var language = language_example;  // String | Language of reference value (optional)  (default to null)
            var groups = new array[String](); // array[String] |  (optional)  (default to null)
            var sites = new array[String](); // array[String] |  (optional)  (default to null)
            var eventIds = new array[String](); // array[String] | List of Event Ids to filter reference value (optional)  (default to null)

            try {
                OrganizerReferenceDataResponse result = apiInstance.organizerReferenceDataKeyGet(key, language, groups, sites, eventIds);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerReferenceDataKeyGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();
$key = ; // OrganizerReferenceDataKey | Reference data key
$language = language_example; // String | Language of reference value
$groups = ; // array[String] | 
$sites = ; // array[String] | 
$eventIds = ; // array[String] | List of Event Ids to filter reference value

try {
    $result = $api_instance->organizerReferenceDataKeyGet($key, $language, $groups, $sites, $eventIds);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerReferenceDataKeyGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::OPenAPIClient::Configuration;
use WWW::OPenAPIClient::DefaultApi;

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DefaultApi->new();
my $key = ; # OrganizerReferenceDataKey | Reference data key
my $language = language_example; # String | Language of reference value
my $groups = []; # array[String] | 
my $sites = []; # array[String] | 
my $eventIds = []; # array[String] | List of Event Ids to filter reference value

eval {
    my $result = $api_instance->organizerReferenceDataKeyGet(key => $key, language => $language, groups => $groups, sites => $sites, eventIds => $eventIds);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerReferenceDataKeyGet: $@\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.DefaultApi()
key =  # OrganizerReferenceDataKey | Reference data key (default to null)
language = language_example # String | Language of reference value (optional) (default to null)
groups =  # array[String] |  (optional) (default to null)
sites =  # array[String] |  (optional) (default to null)
eventIds =  # array[String] | List of Event Ids to filter reference value (optional) (default to null)

try:
    api_response = api_instance.organizer_reference_data_key_get(key, language=language, groups=groups, sites=sites, eventIds=eventIds)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerReferenceDataKeyGet: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let key = ; // OrganizerReferenceDataKey
    let language = language_example; // String
    let groups = ; // array[String]
    let sites = ; // array[String]
    let eventIds = ; // array[String]

    let mut context = DefaultApi::Context::default();
    let result = client.organizerReferenceDataKeyGet(key, language, groups, sites, eventIds, &context).wait();

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

Scopes

Parameters

Path parameters
Name Description
key*
OrganizerReferenceDataKey
Reference data key
Required
Query parameters
Name Description
language
String
Language of reference value
groups
array[String]
sites
array[String]
eventIds
array[String]
List of Event Ids to filter reference value

Responses


organizerReportsEventTicketsGet

Get overview reports of tickets per given events


/organizer/reports/event-tickets

Usage and SDK Samples

curl -X GET \
 -H "Accept: application/json" \
 "https://api.tixngo.io/prod/v1.0/organizer/reports/event-tickets?eventIds=&contingents="
import com.secutix.tixngo.v1.0.*;
import com.secutix.tixngo.v1.0.auth.*;
import com.secutix.tixngo.v1.0.model.*;
import com.secutix.tixngo.v1.0.api.DefaultApi;

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

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

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();
        array[String] eventIds = ; // array[String] | 
        array[String] contingents = ; // array[String] | 

        try {
            OrganizerEventOverviewReportsAnswer result = apiInstance.organizerReportsEventTicketsGet(eventIds, contingents);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerReportsEventTicketsGet");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();

final array[String] eventIds = new array[String](); // array[String] | 
final array[String] contingents = new array[String](); // array[String] | 

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

import com.secutix.tixngo.v1.0.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        array[String] eventIds = ; // array[String] | 
        array[String] contingents = ; // array[String] | 

        try {
            OrganizerEventOverviewReportsAnswer result = apiInstance.organizerReportsEventTicketsGet(eventIds, contingents);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerReportsEventTicketsGet");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];
array[String] *eventIds = ; //  (default to null)
array[String] *contingents = ; //  (optional) (default to null)

[apiInstance organizerReportsEventTicketsGetWith:eventIds
    contingents:contingents
              completionHandler: ^(OrganizerEventOverviewReportsAnswer output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var TixngoRestApiBackendOrganizerApi = require('tixngo_rest_api_backend_organizer_api');

// Create an instance of the API class
var api = new TixngoRestApiBackendOrganizerApi.DefaultApi()
var eventIds = ; // {array[String]} 
var opts = {
  'contingents':  // {array[String]} 
};

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

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

            // Create an instance of the API class
            var apiInstance = new DefaultApi();
            var eventIds = new array[String](); // array[String] |  (default to null)
            var contingents = new array[String](); // array[String] |  (optional)  (default to null)

            try {
                OrganizerEventOverviewReportsAnswer result = apiInstance.organizerReportsEventTicketsGet(eventIds, contingents);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerReportsEventTicketsGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();
$eventIds = ; // array[String] | 
$contingents = ; // array[String] | 

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

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DefaultApi->new();
my $eventIds = []; # array[String] | 
my $contingents = []; # array[String] | 

eval {
    my $result = $api_instance->organizerReportsEventTicketsGet(eventIds => $eventIds, contingents => $contingents);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerReportsEventTicketsGet: $@\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.DefaultApi()
eventIds =  # array[String] |  (default to null)
contingents =  # array[String] |  (optional) (default to null)

try:
    api_response = api_instance.organizer_reports_event_tickets_get(eventIds, contingents=contingents)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerReportsEventTicketsGet: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let eventIds = ; // array[String]
    let contingents = ; // array[String]

    let mut context = DefaultApi::Context::default();
    let result = client.organizerReportsEventTicketsGet(eventIds, contingents, &context).wait();

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

Scopes

Parameters

Query parameters
Name Description
eventIds*
array[String]
Required
contingents
array[String]

Responses


organizerReportsReportNameEventIdGet

get report by name


/organizer/reports/{reportName}/{eventId}

Usage and SDK Samples

curl -X GET \
 -H "Accept: application/json" \
 "https://api.tixngo.io/prod/v1.0/organizer/reports/{reportName}/{eventId}?offset=789&limit=789"
import com.secutix.tixngo.v1.0.*;
import com.secutix.tixngo.v1.0.auth.*;
import com.secutix.tixngo.v1.0.model.*;
import com.secutix.tixngo.v1.0.api.DefaultApi;

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

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

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();
        String reportName = reportName_example; // String | 
        String eventId = eventId_example; // String | 
        Long offset = 789; // Long | 
        Long limit = 789; // Long | 

        try {
            array[OrganizerTicketsPerStatusResponse] result = apiInstance.organizerReportsReportNameEventIdGet(reportName, eventId, offset, limit);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerReportsReportNameEventIdGet");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();

final String reportName = new String(); // String | 
final String eventId = new String(); // String | 
final Long offset = new Long(); // Long | 
final Long limit = new Long(); // Long | 

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

import com.secutix.tixngo.v1.0.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        String reportName = reportName_example; // String | 
        String eventId = eventId_example; // String | 
        Long offset = 789; // Long | 
        Long limit = 789; // Long | 

        try {
            array[OrganizerTicketsPerStatusResponse] result = apiInstance.organizerReportsReportNameEventIdGet(reportName, eventId, offset, limit);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerReportsReportNameEventIdGet");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];
String *reportName = reportName_example; //  (default to null)
String *eventId = eventId_example; //  (default to null)
Long *offset = 789; //  (default to null)
Long *limit = 789; //  (default to null)

[apiInstance organizerReportsReportNameEventIdGetWith:reportName
    eventId:eventId
    offset:offset
    limit:limit
              completionHandler: ^(array[OrganizerTicketsPerStatusResponse] output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var TixngoRestApiBackendOrganizerApi = require('tixngo_rest_api_backend_organizer_api');

// Create an instance of the API class
var api = new TixngoRestApiBackendOrganizerApi.DefaultApi()
var reportName = reportName_example; // {String} 
var eventId = eventId_example; // {String} 
var offset = 789; // {Long} 
var limit = 789; // {Long} 

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

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

            // Create an instance of the API class
            var apiInstance = new DefaultApi();
            var reportName = reportName_example;  // String |  (default to null)
            var eventId = eventId_example;  // String |  (default to null)
            var offset = 789;  // Long |  (default to null)
            var limit = 789;  // Long |  (default to null)

            try {
                array[OrganizerTicketsPerStatusResponse] result = apiInstance.organizerReportsReportNameEventIdGet(reportName, eventId, offset, limit);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerReportsReportNameEventIdGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();
$reportName = reportName_example; // String | 
$eventId = eventId_example; // String | 
$offset = 789; // Long | 
$limit = 789; // Long | 

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

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DefaultApi->new();
my $reportName = reportName_example; # String | 
my $eventId = eventId_example; # String | 
my $offset = 789; # Long | 
my $limit = 789; # Long | 

eval {
    my $result = $api_instance->organizerReportsReportNameEventIdGet(reportName => $reportName, eventId => $eventId, offset => $offset, limit => $limit);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerReportsReportNameEventIdGet: $@\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.DefaultApi()
reportName = reportName_example # String |  (default to null)
eventId = eventId_example # String |  (default to null)
offset = 789 # Long |  (default to null)
limit = 789 # Long |  (default to null)

try:
    api_response = api_instance.organizer_reports_report_name_event_id_get(reportName, eventId, offset, limit)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerReportsReportNameEventIdGet: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let reportName = reportName_example; // String
    let eventId = eventId_example; // String
    let offset = 789; // Long
    let limit = 789; // Long

    let mut context = DefaultApi::Context::default();
    let result = client.organizerReportsReportNameEventIdGet(reportName, eventId, offset, limit, &context).wait();

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

Scopes

Parameters

Path parameters
Name Description
reportName*
String
Required
eventId*
String
Required
Query parameters
Name Description
offset*
Long (int64)
Required
limit*
Long (int64)
Required

Responses


organizerSecuritytokensMobileAppIdSpectatorEmailDelete

Delete all security tokens of the given Spectator for the Mobile AppId


/organizer/securitytokens/{mobileAppId}/{spectatorEmail}

Usage and SDK Samples

curl -X DELETE \
 "https://api.tixngo.io/prod/v1.0/organizer/securitytokens/{mobileAppId}/{spectatorEmail}"
import com.secutix.tixngo.v1.0.*;
import com.secutix.tixngo.v1.0.auth.*;
import com.secutix.tixngo.v1.0.model.*;
import com.secutix.tixngo.v1.0.api.DefaultApi;

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

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

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();
        String mobileAppId = mobileAppId_example; // String | 
        String spectatorEmail = spectatorEmail_example; // String | 

        try {
            apiInstance.organizerSecuritytokensMobileAppIdSpectatorEmailDelete(mobileAppId, spectatorEmail);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerSecuritytokensMobileAppIdSpectatorEmailDelete");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();

final String mobileAppId = new String(); // String | 
final String spectatorEmail = new String(); // String | 

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

import com.secutix.tixngo.v1.0.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        String mobileAppId = mobileAppId_example; // String | 
        String spectatorEmail = spectatorEmail_example; // String | 

        try {
            apiInstance.organizerSecuritytokensMobileAppIdSpectatorEmailDelete(mobileAppId, spectatorEmail);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerSecuritytokensMobileAppIdSpectatorEmailDelete");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];
String *mobileAppId = mobileAppId_example; //  (default to null)
String *spectatorEmail = spectatorEmail_example; //  (default to null)

[apiInstance organizerSecuritytokensMobileAppIdSpectatorEmailDeleteWith:mobileAppId
    spectatorEmail:spectatorEmail
              completionHandler: ^(NSError* error) {
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var TixngoRestApiBackendOrganizerApi = require('tixngo_rest_api_backend_organizer_api');

// Create an instance of the API class
var api = new TixngoRestApiBackendOrganizerApi.DefaultApi()
var mobileAppId = mobileAppId_example; // {String} 
var spectatorEmail = spectatorEmail_example; // {String} 

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

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

            // Create an instance of the API class
            var apiInstance = new DefaultApi();
            var mobileAppId = mobileAppId_example;  // String |  (default to null)
            var spectatorEmail = spectatorEmail_example;  // String |  (default to null)

            try {
                apiInstance.organizerSecuritytokensMobileAppIdSpectatorEmailDelete(mobileAppId, spectatorEmail);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerSecuritytokensMobileAppIdSpectatorEmailDelete: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();
$mobileAppId = mobileAppId_example; // String | 
$spectatorEmail = spectatorEmail_example; // String | 

try {
    $api_instance->organizerSecuritytokensMobileAppIdSpectatorEmailDelete($mobileAppId, $spectatorEmail);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerSecuritytokensMobileAppIdSpectatorEmailDelete: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::OPenAPIClient::Configuration;
use WWW::OPenAPIClient::DefaultApi;

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DefaultApi->new();
my $mobileAppId = mobileAppId_example; # String | 
my $spectatorEmail = spectatorEmail_example; # String | 

eval {
    $api_instance->organizerSecuritytokensMobileAppIdSpectatorEmailDelete(mobileAppId => $mobileAppId, spectatorEmail => $spectatorEmail);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerSecuritytokensMobileAppIdSpectatorEmailDelete: $@\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.DefaultApi()
mobileAppId = mobileAppId_example # String |  (default to null)
spectatorEmail = spectatorEmail_example # String |  (default to null)

try:
    api_instance.organizer_securitytokens_mobile_app_id_spectator_email_delete(mobileAppId, spectatorEmail)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerSecuritytokensMobileAppIdSpectatorEmailDelete: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let mobileAppId = mobileAppId_example; // String
    let spectatorEmail = spectatorEmail_example; // String

    let mut context = DefaultApi::Context::default();
    let result = client.organizerSecuritytokensMobileAppIdSpectatorEmailDelete(mobileAppId, spectatorEmail, &context).wait();

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

Scopes

Parameters

Path parameters
Name Description
mobileAppId*
String
Required
spectatorEmail*
String
Required

Responses


organizerSettingsGet

Get the current default settings for the caller (organizer)


/organizer/settings

Usage and SDK Samples

curl -X GET \
 -H "Accept: application/json" \
 "https://api.tixngo.io/prod/v1.0/organizer/settings?key=key_example&limit=56&offset=56"
import com.secutix.tixngo.v1.0.*;
import com.secutix.tixngo.v1.0.auth.*;
import com.secutix.tixngo.v1.0.model.*;
import com.secutix.tixngo.v1.0.api.DefaultApi;

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

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

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();
        Integer limit = 56; // Integer | 
        Integer offset = 56; // Integer | 
        String key = key_example; // String | 

        try {
            OrganizerSettingsResponse result = apiInstance.organizerSettingsGet(limit, offset, key);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerSettingsGet");
            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 key = new String(); // String | 

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

import com.secutix.tixngo.v1.0.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        Integer limit = 56; // Integer | 
        Integer offset = 56; // Integer | 
        String key = key_example; // String | 

        try {
            OrganizerSettingsResponse result = apiInstance.organizerSettingsGet(limit, offset, key);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerSettingsGet");
            e.printStackTrace();
        }
    }
}


// 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 *key = key_example; //  (optional) (default to null)

[apiInstance organizerSettingsGetWith:limit
    offset:offset
    key:key
              completionHandler: ^(OrganizerSettingsResponse output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var TixngoRestApiBackendOrganizerApi = require('tixngo_rest_api_backend_organizer_api');

// Create an instance of the API class
var api = new TixngoRestApiBackendOrganizerApi.DefaultApi()
var limit = 56; // {Integer} 
var offset = 56; // {Integer} 
var opts = {
  'key': key_example // {String} 
};

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.organizerSettingsGet(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 organizerSettingsGetExample
    {
        public void main()
        {

            // 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 key = key_example;  // String |  (optional)  (default to null)

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

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();
$limit = 56; // Integer | 
$offset = 56; // Integer | 
$key = key_example; // String | 

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

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DefaultApi->new();
my $limit = 56; # Integer | 
my $offset = 56; # Integer | 
my $key = key_example; # String | 

eval {
    my $result = $api_instance->organizerSettingsGet(limit => $limit, offset => $offset, key => $key);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerSettingsGet: $@\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.DefaultApi()
limit = 56 # Integer |  (default to null)
offset = 56 # Integer |  (default to null)
key = key_example # String |  (optional) (default to null)

try:
    api_response = api_instance.organizer_settings_get(limit, offset, key=key)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerSettingsGet: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let limit = 56; // Integer
    let offset = 56; // Integer
    let key = key_example; // String

    let mut context = DefaultApi::Context::default();
    let result = client.organizerSettingsGet(limit, offset, key, &context).wait();

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

Scopes

Parameters

Query parameters
Name Description
key
String
limit*
Integer
Required
offset*
Integer
Required

Responses


organizerSettingsKeyPatch

Modify the default settings for the caller (organizer) if the settings is not readonly


/organizer/settings/{key}

Usage and SDK Samples

curl -X PATCH \
 -H "Accept: application/json" \
 -H "Content-Type: application/json" \
 "https://api.tixngo.io/prod/v1.0/organizer/settings/{key}" \
 -d '{
  "value" : "value"
}'
import com.secutix.tixngo.v1.0.*;
import com.secutix.tixngo.v1.0.auth.*;
import com.secutix.tixngo.v1.0.model.*;
import com.secutix.tixngo.v1.0.api.DefaultApi;

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

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

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();
        String key = key_example; // String | 
        OrganizerEditableSetting organizerEditableSetting = ; // OrganizerEditableSetting | 

        try {
            OrganizerSetting result = apiInstance.organizerSettingsKeyPatch(key, organizerEditableSetting);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerSettingsKeyPatch");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();

final String key = new String(); // String | 
final OrganizerEditableSetting organizerEditableSetting = new OrganizerEditableSetting(); // OrganizerEditableSetting | 

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

import com.secutix.tixngo.v1.0.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        String key = key_example; // String | 
        OrganizerEditableSetting organizerEditableSetting = ; // OrganizerEditableSetting | 

        try {
            OrganizerSetting result = apiInstance.organizerSettingsKeyPatch(key, organizerEditableSetting);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerSettingsKeyPatch");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];
String *key = key_example; //  (default to null)
OrganizerEditableSetting *organizerEditableSetting = ; //  (optional)

[apiInstance organizerSettingsKeyPatchWith:key
    organizerEditableSetting:organizerEditableSetting
              completionHandler: ^(OrganizerSetting output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var TixngoRestApiBackendOrganizerApi = require('tixngo_rest_api_backend_organizer_api');

// Create an instance of the API class
var api = new TixngoRestApiBackendOrganizerApi.DefaultApi()
var key = key_example; // {String} 
var opts = {
  'organizerEditableSetting':  // {OrganizerEditableSetting} 
};

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

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

            // Create an instance of the API class
            var apiInstance = new DefaultApi();
            var key = key_example;  // String |  (default to null)
            var organizerEditableSetting = new OrganizerEditableSetting(); // OrganizerEditableSetting |  (optional) 

            try {
                OrganizerSetting result = apiInstance.organizerSettingsKeyPatch(key, organizerEditableSetting);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerSettingsKeyPatch: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();
$key = key_example; // String | 
$organizerEditableSetting = ; // OrganizerEditableSetting | 

try {
    $result = $api_instance->organizerSettingsKeyPatch($key, $organizerEditableSetting);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerSettingsKeyPatch: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::OPenAPIClient::Configuration;
use WWW::OPenAPIClient::DefaultApi;

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DefaultApi->new();
my $key = key_example; # String | 
my $organizerEditableSetting = WWW::OPenAPIClient::Object::OrganizerEditableSetting->new(); # OrganizerEditableSetting | 

eval {
    my $result = $api_instance->organizerSettingsKeyPatch(key => $key, organizerEditableSetting => $organizerEditableSetting);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerSettingsKeyPatch: $@\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.DefaultApi()
key = key_example # String |  (default to null)
organizerEditableSetting =  # OrganizerEditableSetting |  (optional)

try:
    api_response = api_instance.organizer_settings_key_patch(key, organizerEditableSetting=organizerEditableSetting)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerSettingsKeyPatch: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let key = key_example; // String
    let organizerEditableSetting = ; // OrganizerEditableSetting

    let mut context = DefaultApi::Context::default();
    let result = client.organizerSettingsKeyPatch(key, organizerEditableSetting, &context).wait();

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

Scopes

Parameters

Path parameters
Name Description
key*
String
Required
Body parameters
Name Description
organizerEditableSetting

Responses


organizerSpectatorsGet

Get the information about spectators that has or had a tickets belonging to the caller (organizer)


/organizer/spectators

Usage and SDK Samples

curl -X GET \
 -H "Accept: application/json" \
 "https://api.tixngo.io/prod/v1.0/organizer/spectators?limit=limit_example&offset=offset_example&email=email_example&mobileAppId=mobileAppId_example&phoneNumber=phoneNumber_example&firstName=firstName_example&lastName=lastName_example&fileId=fileId_example&appVersion=appVersion_example"
import com.secutix.tixngo.v1.0.*;
import com.secutix.tixngo.v1.0.auth.*;
import com.secutix.tixngo.v1.0.model.*;
import com.secutix.tixngo.v1.0.api.DefaultApi;

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

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

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();
        String limit = limit_example; // String | 
        String offset = offset_example; // String | 
        String email = email_example; // String | 
        String mobileAppId = mobileAppId_example; // String | 
        String phoneNumber = phoneNumber_example; // String | 
        String firstName = firstName_example; // String | 
        String lastName = lastName_example; // String | 
        String fileId = fileId_example; // String | 
        String appVersion = appVersion_example; // String | 

        try {
            OrganizerSpectatorsSearchResponse result = apiInstance.organizerSpectatorsGet(limit, offset, email, mobileAppId, phoneNumber, firstName, lastName, fileId, appVersion);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerSpectatorsGet");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();

final String limit = new String(); // String | 
final String offset = new String(); // String | 
final String email = new String(); // String | 
final String mobileAppId = new String(); // String | 
final String phoneNumber = new String(); // String | 
final String firstName = new String(); // String | 
final String lastName = new String(); // String | 
final String fileId = new String(); // String | 
final String appVersion = new String(); // String | 

try {
    final result = await api_instance.organizerSpectatorsGet(limit, offset, email, mobileAppId, phoneNumber, firstName, lastName, fileId, appVersion);
    print(result);
} catch (e) {
    print('Exception when calling DefaultApi->organizerSpectatorsGet: $e\n');
}

import com.secutix.tixngo.v1.0.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        String limit = limit_example; // String | 
        String offset = offset_example; // String | 
        String email = email_example; // String | 
        String mobileAppId = mobileAppId_example; // String | 
        String phoneNumber = phoneNumber_example; // String | 
        String firstName = firstName_example; // String | 
        String lastName = lastName_example; // String | 
        String fileId = fileId_example; // String | 
        String appVersion = appVersion_example; // String | 

        try {
            OrganizerSpectatorsSearchResponse result = apiInstance.organizerSpectatorsGet(limit, offset, email, mobileAppId, phoneNumber, firstName, lastName, fileId, appVersion);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerSpectatorsGet");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];
String *limit = limit_example; //  (default to null)
String *offset = offset_example; //  (default to null)
String *email = email_example; //  (optional) (default to null)
String *mobileAppId = mobileAppId_example; //  (optional) (default to null)
String *phoneNumber = phoneNumber_example; //  (optional) (default to null)
String *firstName = firstName_example; //  (optional) (default to null)
String *lastName = lastName_example; //  (optional) (default to null)
String *fileId = fileId_example; //  (optional) (default to null)
String *appVersion = appVersion_example; //  (optional) (default to null)

[apiInstance organizerSpectatorsGetWith:limit
    offset:offset
    email:email
    mobileAppId:mobileAppId
    phoneNumber:phoneNumber
    firstName:firstName
    lastName:lastName
    fileId:fileId
    appVersion:appVersion
              completionHandler: ^(OrganizerSpectatorsSearchResponse output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var TixngoRestApiBackendOrganizerApi = require('tixngo_rest_api_backend_organizer_api');

// Create an instance of the API class
var api = new TixngoRestApiBackendOrganizerApi.DefaultApi()
var limit = limit_example; // {String} 
var offset = offset_example; // {String} 
var opts = {
  'email': email_example, // {String} 
  'mobileAppId': mobileAppId_example, // {String} 
  'phoneNumber': phoneNumber_example, // {String} 
  'firstName': firstName_example, // {String} 
  'lastName': lastName_example, // {String} 
  'fileId': fileId_example, // {String} 
  'appVersion': appVersion_example // {String} 
};

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.organizerSpectatorsGet(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 organizerSpectatorsGetExample
    {
        public void main()
        {

            // Create an instance of the API class
            var apiInstance = new DefaultApi();
            var limit = limit_example;  // String |  (default to null)
            var offset = offset_example;  // String |  (default to null)
            var email = email_example;  // String |  (optional)  (default to null)
            var mobileAppId = mobileAppId_example;  // String |  (optional)  (default to null)
            var phoneNumber = phoneNumber_example;  // String |  (optional)  (default to null)
            var firstName = firstName_example;  // String |  (optional)  (default to null)
            var lastName = lastName_example;  // String |  (optional)  (default to null)
            var fileId = fileId_example;  // String |  (optional)  (default to null)
            var appVersion = appVersion_example;  // String |  (optional)  (default to null)

            try {
                OrganizerSpectatorsSearchResponse result = apiInstance.organizerSpectatorsGet(limit, offset, email, mobileAppId, phoneNumber, firstName, lastName, fileId, appVersion);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerSpectatorsGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();
$limit = limit_example; // String | 
$offset = offset_example; // String | 
$email = email_example; // String | 
$mobileAppId = mobileAppId_example; // String | 
$phoneNumber = phoneNumber_example; // String | 
$firstName = firstName_example; // String | 
$lastName = lastName_example; // String | 
$fileId = fileId_example; // String | 
$appVersion = appVersion_example; // String | 

try {
    $result = $api_instance->organizerSpectatorsGet($limit, $offset, $email, $mobileAppId, $phoneNumber, $firstName, $lastName, $fileId, $appVersion);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerSpectatorsGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::OPenAPIClient::Configuration;
use WWW::OPenAPIClient::DefaultApi;

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DefaultApi->new();
my $limit = limit_example; # String | 
my $offset = offset_example; # String | 
my $email = email_example; # String | 
my $mobileAppId = mobileAppId_example; # String | 
my $phoneNumber = phoneNumber_example; # String | 
my $firstName = firstName_example; # String | 
my $lastName = lastName_example; # String | 
my $fileId = fileId_example; # String | 
my $appVersion = appVersion_example; # String | 

eval {
    my $result = $api_instance->organizerSpectatorsGet(limit => $limit, offset => $offset, email => $email, mobileAppId => $mobileAppId, phoneNumber => $phoneNumber, firstName => $firstName, lastName => $lastName, fileId => $fileId, appVersion => $appVersion);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerSpectatorsGet: $@\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.DefaultApi()
limit = limit_example # String |  (default to null)
offset = offset_example # String |  (default to null)
email = email_example # String |  (optional) (default to null)
mobileAppId = mobileAppId_example # String |  (optional) (default to null)
phoneNumber = phoneNumber_example # String |  (optional) (default to null)
firstName = firstName_example # String |  (optional) (default to null)
lastName = lastName_example # String |  (optional) (default to null)
fileId = fileId_example # String |  (optional) (default to null)
appVersion = appVersion_example # String |  (optional) (default to null)

try:
    api_response = api_instance.organizer_spectators_get(limit, offset, email=email, mobileAppId=mobileAppId, phoneNumber=phoneNumber, firstName=firstName, lastName=lastName, fileId=fileId, appVersion=appVersion)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerSpectatorsGet: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let limit = limit_example; // String
    let offset = offset_example; // String
    let email = email_example; // String
    let mobileAppId = mobileAppId_example; // String
    let phoneNumber = phoneNumber_example; // String
    let firstName = firstName_example; // String
    let lastName = lastName_example; // String
    let fileId = fileId_example; // String
    let appVersion = appVersion_example; // String

    let mut context = DefaultApi::Context::default();
    let result = client.organizerSpectatorsGet(limit, offset, email, mobileAppId, phoneNumber, firstName, lastName, fileId, appVersion, &context).wait();

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

Scopes

Parameters

Query parameters
Name Description
limit*
String
Required
offset*
String
Required
email
String
mobileAppId
String
phoneNumber
String
firstName
String
lastName
String
fileId
String
appVersion
String

Responses


organizerSpectatorsSpectatorIdDelete

delete/anonymize spectator base on email and appId


/organizer/spectators/{spectatorId}

Usage and SDK Samples

curl -X DELETE \
 "https://api.tixngo.io/prod/v1.0/organizer/spectators/{spectatorId}?mobileAppId=mobileAppId_example&mustNotifySpectator=true"
import com.secutix.tixngo.v1.0.*;
import com.secutix.tixngo.v1.0.auth.*;
import com.secutix.tixngo.v1.0.model.*;
import com.secutix.tixngo.v1.0.api.DefaultApi;

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

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

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();
        String spectatorId = spectatorId_example; // String | the email of the spectator
        String mobileAppId = mobileAppId_example; // String | Mobile app id of spectator
        Boolean mustNotifySpectator = true; // Boolean | false to anonymize immediately - true to apply communicating spectator through email for confirmation

        try {
            apiInstance.organizerSpectatorsSpectatorIdDelete(spectatorId, mobileAppId, mustNotifySpectator);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerSpectatorsSpectatorIdDelete");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();

final String spectatorId = new String(); // String | the email of the spectator
final String mobileAppId = new String(); // String | Mobile app id of spectator
final Boolean mustNotifySpectator = new Boolean(); // Boolean | false to anonymize immediately - true to apply communicating spectator through email for confirmation

try {
    final result = await api_instance.organizerSpectatorsSpectatorIdDelete(spectatorId, mobileAppId, mustNotifySpectator);
    print(result);
} catch (e) {
    print('Exception when calling DefaultApi->organizerSpectatorsSpectatorIdDelete: $e\n');
}

import com.secutix.tixngo.v1.0.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        String spectatorId = spectatorId_example; // String | the email of the spectator
        String mobileAppId = mobileAppId_example; // String | Mobile app id of spectator
        Boolean mustNotifySpectator = true; // Boolean | false to anonymize immediately - true to apply communicating spectator through email for confirmation

        try {
            apiInstance.organizerSpectatorsSpectatorIdDelete(spectatorId, mobileAppId, mustNotifySpectator);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerSpectatorsSpectatorIdDelete");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];
String *spectatorId = spectatorId_example; // the email of the spectator (default to null)
String *mobileAppId = mobileAppId_example; // Mobile app id of spectator (default to null)
Boolean *mustNotifySpectator = true; // false to anonymize immediately - true to apply communicating spectator through email for confirmation (default to null)

[apiInstance organizerSpectatorsSpectatorIdDeleteWith:spectatorId
    mobileAppId:mobileAppId
    mustNotifySpectator:mustNotifySpectator
              completionHandler: ^(NSError* error) {
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var TixngoRestApiBackendOrganizerApi = require('tixngo_rest_api_backend_organizer_api');

// Create an instance of the API class
var api = new TixngoRestApiBackendOrganizerApi.DefaultApi()
var spectatorId = spectatorId_example; // {String} the email of the spectator
var mobileAppId = mobileAppId_example; // {String} Mobile app id of spectator
var mustNotifySpectator = true; // {Boolean} false to anonymize immediately - true to apply communicating spectator through email for confirmation

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

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

            // Create an instance of the API class
            var apiInstance = new DefaultApi();
            var spectatorId = spectatorId_example;  // String | the email of the spectator (default to null)
            var mobileAppId = mobileAppId_example;  // String | Mobile app id of spectator (default to null)
            var mustNotifySpectator = true;  // Boolean | false to anonymize immediately - true to apply communicating spectator through email for confirmation (default to null)

            try {
                apiInstance.organizerSpectatorsSpectatorIdDelete(spectatorId, mobileAppId, mustNotifySpectator);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerSpectatorsSpectatorIdDelete: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();
$spectatorId = spectatorId_example; // String | the email of the spectator
$mobileAppId = mobileAppId_example; // String | Mobile app id of spectator
$mustNotifySpectator = true; // Boolean | false to anonymize immediately - true to apply communicating spectator through email for confirmation

try {
    $api_instance->organizerSpectatorsSpectatorIdDelete($spectatorId, $mobileAppId, $mustNotifySpectator);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerSpectatorsSpectatorIdDelete: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::OPenAPIClient::Configuration;
use WWW::OPenAPIClient::DefaultApi;

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DefaultApi->new();
my $spectatorId = spectatorId_example; # String | the email of the spectator
my $mobileAppId = mobileAppId_example; # String | Mobile app id of spectator
my $mustNotifySpectator = true; # Boolean | false to anonymize immediately - true to apply communicating spectator through email for confirmation

eval {
    $api_instance->organizerSpectatorsSpectatorIdDelete(spectatorId => $spectatorId, mobileAppId => $mobileAppId, mustNotifySpectator => $mustNotifySpectator);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerSpectatorsSpectatorIdDelete: $@\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.DefaultApi()
spectatorId = spectatorId_example # String | the email of the spectator (default to null)
mobileAppId = mobileAppId_example # String | Mobile app id of spectator (default to null)
mustNotifySpectator = true # Boolean | false to anonymize immediately - true to apply communicating spectator through email for confirmation (default to null)

try:
    api_instance.organizer_spectators_spectator_id_delete(spectatorId, mobileAppId, mustNotifySpectator)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerSpectatorsSpectatorIdDelete: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let spectatorId = spectatorId_example; // String
    let mobileAppId = mobileAppId_example; // String
    let mustNotifySpectator = true; // Boolean

    let mut context = DefaultApi::Context::default();
    let result = client.organizerSpectatorsSpectatorIdDelete(spectatorId, mobileAppId, mustNotifySpectator, &context).wait();

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

Scopes

Parameters

Path parameters
Name Description
spectatorId*
String
the email of the spectator
Required
Query parameters
Name Description
mobileAppId*
String
Mobile app id of spectator
Required
mustNotifySpectator*
Boolean
false to anonymize immediately - true to apply communicating spectator through email for confirmation
Required

Responses


organizerSpectatorsSpectatorIdGet

Get information about a spectator


/organizer/spectators/{spectatorId}

Usage and SDK Samples

curl -X GET \
 -H "Accept: application/json" \
 "https://api.tixngo.io/prod/v1.0/organizer/spectators/{spectatorId}?mobileAppId=mobileAppId_example"
import com.secutix.tixngo.v1.0.*;
import com.secutix.tixngo.v1.0.auth.*;
import com.secutix.tixngo.v1.0.model.*;
import com.secutix.tixngo.v1.0.api.DefaultApi;

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

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

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();
        String spectatorId = spectatorId_example; // String | the email of the spectator
        String mobileAppId = mobileAppId_example; // String | Mobile app id of spectator

        try {
            OrgSpectatorIdentity result = apiInstance.organizerSpectatorsSpectatorIdGet(spectatorId, mobileAppId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerSpectatorsSpectatorIdGet");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();

final String spectatorId = new String(); // String | the email of the spectator
final String mobileAppId = new String(); // String | Mobile app id of spectator

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

import com.secutix.tixngo.v1.0.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        String spectatorId = spectatorId_example; // String | the email of the spectator
        String mobileAppId = mobileAppId_example; // String | Mobile app id of spectator

        try {
            OrgSpectatorIdentity result = apiInstance.organizerSpectatorsSpectatorIdGet(spectatorId, mobileAppId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerSpectatorsSpectatorIdGet");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];
String *spectatorId = spectatorId_example; // the email of the spectator (default to null)
String *mobileAppId = mobileAppId_example; // Mobile app id of spectator (default to null)

[apiInstance organizerSpectatorsSpectatorIdGetWith:spectatorId
    mobileAppId:mobileAppId
              completionHandler: ^(OrgSpectatorIdentity output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var TixngoRestApiBackendOrganizerApi = require('tixngo_rest_api_backend_organizer_api');

// Create an instance of the API class
var api = new TixngoRestApiBackendOrganizerApi.DefaultApi()
var spectatorId = spectatorId_example; // {String} the email of the spectator
var mobileAppId = mobileAppId_example; // {String} Mobile app id of spectator

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

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

            // Create an instance of the API class
            var apiInstance = new DefaultApi();
            var spectatorId = spectatorId_example;  // String | the email of the spectator (default to null)
            var mobileAppId = mobileAppId_example;  // String | Mobile app id of spectator (default to null)

            try {
                OrgSpectatorIdentity result = apiInstance.organizerSpectatorsSpectatorIdGet(spectatorId, mobileAppId);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerSpectatorsSpectatorIdGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();
$spectatorId = spectatorId_example; // String | the email of the spectator
$mobileAppId = mobileAppId_example; // String | Mobile app id of spectator

try {
    $result = $api_instance->organizerSpectatorsSpectatorIdGet($spectatorId, $mobileAppId);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerSpectatorsSpectatorIdGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::OPenAPIClient::Configuration;
use WWW::OPenAPIClient::DefaultApi;

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DefaultApi->new();
my $spectatorId = spectatorId_example; # String | the email of the spectator
my $mobileAppId = mobileAppId_example; # String | Mobile app id of spectator

eval {
    my $result = $api_instance->organizerSpectatorsSpectatorIdGet(spectatorId => $spectatorId, mobileAppId => $mobileAppId);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerSpectatorsSpectatorIdGet: $@\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.DefaultApi()
spectatorId = spectatorId_example # String | the email of the spectator (default to null)
mobileAppId = mobileAppId_example # String | Mobile app id of spectator (default to null)

try:
    api_response = api_instance.organizer_spectators_spectator_id_get(spectatorId, mobileAppId)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerSpectatorsSpectatorIdGet: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let spectatorId = spectatorId_example; // String
    let mobileAppId = mobileAppId_example; // String

    let mut context = DefaultApi::Context::default();
    let result = client.organizerSpectatorsSpectatorIdGet(spectatorId, mobileAppId, &context).wait();

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

Scopes

Parameters

Path parameters
Name Description
spectatorId*
String
the email of the spectator
Required
Query parameters
Name Description
mobileAppId*
String
Mobile app id of spectator
Required

Responses


organizerSpectatorsSpectatorIdLockGet

Get information that spectator is locked or not


/organizer/spectators/{spectatorId}/lock

Usage and SDK Samples

curl -X GET \
 -H "Accept: application/json" \
 "https://api.tixngo.io/prod/v1.0/organizer/spectators/{spectatorId}/lock?mobileAppId=mobileAppId_example"
import com.secutix.tixngo.v1.0.*;
import com.secutix.tixngo.v1.0.auth.*;
import com.secutix.tixngo.v1.0.model.*;
import com.secutix.tixngo.v1.0.api.DefaultApi;

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

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

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();
        String spectatorId = spectatorId_example; // String | the email of the spectator
        String mobileAppId = mobileAppId_example; // String | Mobile app id of spectator

        try {
            OrgSpecLockInfo result = apiInstance.organizerSpectatorsSpectatorIdLockGet(spectatorId, mobileAppId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerSpectatorsSpectatorIdLockGet");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();

final String spectatorId = new String(); // String | the email of the spectator
final String mobileAppId = new String(); // String | Mobile app id of spectator

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

import com.secutix.tixngo.v1.0.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        String spectatorId = spectatorId_example; // String | the email of the spectator
        String mobileAppId = mobileAppId_example; // String | Mobile app id of spectator

        try {
            OrgSpecLockInfo result = apiInstance.organizerSpectatorsSpectatorIdLockGet(spectatorId, mobileAppId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerSpectatorsSpectatorIdLockGet");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];
String *spectatorId = spectatorId_example; // the email of the spectator (default to null)
String *mobileAppId = mobileAppId_example; // Mobile app id of spectator (default to null)

[apiInstance organizerSpectatorsSpectatorIdLockGetWith:spectatorId
    mobileAppId:mobileAppId
              completionHandler: ^(OrgSpecLockInfo output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var TixngoRestApiBackendOrganizerApi = require('tixngo_rest_api_backend_organizer_api');

// Create an instance of the API class
var api = new TixngoRestApiBackendOrganizerApi.DefaultApi()
var spectatorId = spectatorId_example; // {String} the email of the spectator
var mobileAppId = mobileAppId_example; // {String} Mobile app id of spectator

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

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

            // Create an instance of the API class
            var apiInstance = new DefaultApi();
            var spectatorId = spectatorId_example;  // String | the email of the spectator (default to null)
            var mobileAppId = mobileAppId_example;  // String | Mobile app id of spectator (default to null)

            try {
                OrgSpecLockInfo result = apiInstance.organizerSpectatorsSpectatorIdLockGet(spectatorId, mobileAppId);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerSpectatorsSpectatorIdLockGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();
$spectatorId = spectatorId_example; // String | the email of the spectator
$mobileAppId = mobileAppId_example; // String | Mobile app id of spectator

try {
    $result = $api_instance->organizerSpectatorsSpectatorIdLockGet($spectatorId, $mobileAppId);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerSpectatorsSpectatorIdLockGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::OPenAPIClient::Configuration;
use WWW::OPenAPIClient::DefaultApi;

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DefaultApi->new();
my $spectatorId = spectatorId_example; # String | the email of the spectator
my $mobileAppId = mobileAppId_example; # String | Mobile app id of spectator

eval {
    my $result = $api_instance->organizerSpectatorsSpectatorIdLockGet(spectatorId => $spectatorId, mobileAppId => $mobileAppId);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerSpectatorsSpectatorIdLockGet: $@\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.DefaultApi()
spectatorId = spectatorId_example # String | the email of the spectator (default to null)
mobileAppId = mobileAppId_example # String | Mobile app id of spectator (default to null)

try:
    api_response = api_instance.organizer_spectators_spectator_id_lock_get(spectatorId, mobileAppId)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerSpectatorsSpectatorIdLockGet: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let spectatorId = spectatorId_example; // String
    let mobileAppId = mobileAppId_example; // String

    let mut context = DefaultApi::Context::default();
    let result = client.organizerSpectatorsSpectatorIdLockGet(spectatorId, mobileAppId, &context).wait();

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

Scopes

Parameters

Path parameters
Name Description
spectatorId*
String
the email of the spectator
Required
Query parameters
Name Description
mobileAppId*
String
Mobile app id of spectator
Required

Responses


organizerSpectatorsSpectatorIdLockPatch

Update that spectator is locked or not


/organizer/spectators/{spectatorId}/lock

Usage and SDK Samples

curl -X PATCH \
 -H "Content-Type: application/json" \
 "https://api.tixngo.io/prod/v1.0/organizer/spectators/{spectatorId}/lock?mustNotifySpectator=true&mobileAppId=mobileAppId_example" \
 -d '{
  "isLocked" : true
}'
import com.secutix.tixngo.v1.0.*;
import com.secutix.tixngo.v1.0.auth.*;
import com.secutix.tixngo.v1.0.model.*;
import com.secutix.tixngo.v1.0.api.DefaultApi;

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

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

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();
        String spectatorId = spectatorId_example; // String | the email of the spectator
        String mobileAppId = mobileAppId_example; // String | Mobile app id of spectator
        OrgSpecLockInfo orgSpecLockInfo = ; // OrgSpecLockInfo | 
        Boolean mustNotifySpectator = true; // Boolean | 

        try {
            apiInstance.organizerSpectatorsSpectatorIdLockPatch(spectatorId, mobileAppId, orgSpecLockInfo, mustNotifySpectator);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerSpectatorsSpectatorIdLockPatch");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();

final String spectatorId = new String(); // String | the email of the spectator
final String mobileAppId = new String(); // String | Mobile app id of spectator
final OrgSpecLockInfo orgSpecLockInfo = new OrgSpecLockInfo(); // OrgSpecLockInfo | 
final Boolean mustNotifySpectator = new Boolean(); // Boolean | 

try {
    final result = await api_instance.organizerSpectatorsSpectatorIdLockPatch(spectatorId, mobileAppId, orgSpecLockInfo, mustNotifySpectator);
    print(result);
} catch (e) {
    print('Exception when calling DefaultApi->organizerSpectatorsSpectatorIdLockPatch: $e\n');
}

import com.secutix.tixngo.v1.0.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        String spectatorId = spectatorId_example; // String | the email of the spectator
        String mobileAppId = mobileAppId_example; // String | Mobile app id of spectator
        OrgSpecLockInfo orgSpecLockInfo = ; // OrgSpecLockInfo | 
        Boolean mustNotifySpectator = true; // Boolean | 

        try {
            apiInstance.organizerSpectatorsSpectatorIdLockPatch(spectatorId, mobileAppId, orgSpecLockInfo, mustNotifySpectator);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerSpectatorsSpectatorIdLockPatch");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];
String *spectatorId = spectatorId_example; // the email of the spectator (default to null)
String *mobileAppId = mobileAppId_example; // Mobile app id of spectator (default to null)
OrgSpecLockInfo *orgSpecLockInfo = ; // 
Boolean *mustNotifySpectator = true; //  (optional) (default to null)

[apiInstance organizerSpectatorsSpectatorIdLockPatchWith:spectatorId
    mobileAppId:mobileAppId
    orgSpecLockInfo:orgSpecLockInfo
    mustNotifySpectator:mustNotifySpectator
              completionHandler: ^(NSError* error) {
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var TixngoRestApiBackendOrganizerApi = require('tixngo_rest_api_backend_organizer_api');

// Create an instance of the API class
var api = new TixngoRestApiBackendOrganizerApi.DefaultApi()
var spectatorId = spectatorId_example; // {String} the email of the spectator
var mobileAppId = mobileAppId_example; // {String} Mobile app id of spectator
var orgSpecLockInfo = ; // {OrgSpecLockInfo} 
var opts = {
  'mustNotifySpectator': true // {Boolean} 
};

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

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

            // Create an instance of the API class
            var apiInstance = new DefaultApi();
            var spectatorId = spectatorId_example;  // String | the email of the spectator (default to null)
            var mobileAppId = mobileAppId_example;  // String | Mobile app id of spectator (default to null)
            var orgSpecLockInfo = new OrgSpecLockInfo(); // OrgSpecLockInfo | 
            var mustNotifySpectator = true;  // Boolean |  (optional)  (default to null)

            try {
                apiInstance.organizerSpectatorsSpectatorIdLockPatch(spectatorId, mobileAppId, orgSpecLockInfo, mustNotifySpectator);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerSpectatorsSpectatorIdLockPatch: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();
$spectatorId = spectatorId_example; // String | the email of the spectator
$mobileAppId = mobileAppId_example; // String | Mobile app id of spectator
$orgSpecLockInfo = ; // OrgSpecLockInfo | 
$mustNotifySpectator = true; // Boolean | 

try {
    $api_instance->organizerSpectatorsSpectatorIdLockPatch($spectatorId, $mobileAppId, $orgSpecLockInfo, $mustNotifySpectator);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerSpectatorsSpectatorIdLockPatch: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::OPenAPIClient::Configuration;
use WWW::OPenAPIClient::DefaultApi;

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DefaultApi->new();
my $spectatorId = spectatorId_example; # String | the email of the spectator
my $mobileAppId = mobileAppId_example; # String | Mobile app id of spectator
my $orgSpecLockInfo = WWW::OPenAPIClient::Object::OrgSpecLockInfo->new(); # OrgSpecLockInfo | 
my $mustNotifySpectator = true; # Boolean | 

eval {
    $api_instance->organizerSpectatorsSpectatorIdLockPatch(spectatorId => $spectatorId, mobileAppId => $mobileAppId, orgSpecLockInfo => $orgSpecLockInfo, mustNotifySpectator => $mustNotifySpectator);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerSpectatorsSpectatorIdLockPatch: $@\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.DefaultApi()
spectatorId = spectatorId_example # String | the email of the spectator (default to null)
mobileAppId = mobileAppId_example # String | Mobile app id of spectator (default to null)
orgSpecLockInfo =  # OrgSpecLockInfo | 
mustNotifySpectator = true # Boolean |  (optional) (default to null)

try:
    api_instance.organizer_spectators_spectator_id_lock_patch(spectatorId, mobileAppId, orgSpecLockInfo, mustNotifySpectator=mustNotifySpectator)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerSpectatorsSpectatorIdLockPatch: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let spectatorId = spectatorId_example; // String
    let mobileAppId = mobileAppId_example; // String
    let orgSpecLockInfo = ; // OrgSpecLockInfo
    let mustNotifySpectator = true; // Boolean

    let mut context = DefaultApi::Context::default();
    let result = client.organizerSpectatorsSpectatorIdLockPatch(spectatorId, mobileAppId, orgSpecLockInfo, mustNotifySpectator, &context).wait();

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

Scopes

Parameters

Path parameters
Name Description
spectatorId*
String
the email of the spectator
Required
Body parameters
Name Description
orgSpecLockInfo *

Query parameters
Name Description
mustNotifySpectator
Boolean
mobileAppId*
String
Mobile app id of spectator
Required

Responses


organizerSpectatorsSpectatorIdTicketSummaryGet

Get tickets summary information belonged to the spectator


/organizer/spectators/{spectatorId}/ticketSummary

Usage and SDK Samples

curl -X GET \
 -H "Accept: application/json" \
 "https://api.tixngo.io/prod/v1.0/organizer/spectators/{spectatorId}/ticketSummary?mobileAppId=mobileAppId_example"
import com.secutix.tixngo.v1.0.*;
import com.secutix.tixngo.v1.0.auth.*;
import com.secutix.tixngo.v1.0.model.*;
import com.secutix.tixngo.v1.0.api.DefaultApi;

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

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

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();
        String spectatorId = spectatorId_example; // String | the email of the spectator
        String mobileAppId = mobileAppId_example; // String | Mobile app id of spectator

        try {
            TicketSummaryResponse result = apiInstance.organizerSpectatorsSpectatorIdTicketSummaryGet(spectatorId, mobileAppId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerSpectatorsSpectatorIdTicketSummaryGet");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();

final String spectatorId = new String(); // String | the email of the spectator
final String mobileAppId = new String(); // String | Mobile app id of spectator

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

import com.secutix.tixngo.v1.0.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        String spectatorId = spectatorId_example; // String | the email of the spectator
        String mobileAppId = mobileAppId_example; // String | Mobile app id of spectator

        try {
            TicketSummaryResponse result = apiInstance.organizerSpectatorsSpectatorIdTicketSummaryGet(spectatorId, mobileAppId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerSpectatorsSpectatorIdTicketSummaryGet");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];
String *spectatorId = spectatorId_example; // the email of the spectator (default to null)
String *mobileAppId = mobileAppId_example; // Mobile app id of spectator (default to null)

[apiInstance organizerSpectatorsSpectatorIdTicketSummaryGetWith:spectatorId
    mobileAppId:mobileAppId
              completionHandler: ^(TicketSummaryResponse output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var TixngoRestApiBackendOrganizerApi = require('tixngo_rest_api_backend_organizer_api');

// Create an instance of the API class
var api = new TixngoRestApiBackendOrganizerApi.DefaultApi()
var spectatorId = spectatorId_example; // {String} the email of the spectator
var mobileAppId = mobileAppId_example; // {String} Mobile app id of spectator

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

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

            // Create an instance of the API class
            var apiInstance = new DefaultApi();
            var spectatorId = spectatorId_example;  // String | the email of the spectator (default to null)
            var mobileAppId = mobileAppId_example;  // String | Mobile app id of spectator (default to null)

            try {
                TicketSummaryResponse result = apiInstance.organizerSpectatorsSpectatorIdTicketSummaryGet(spectatorId, mobileAppId);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerSpectatorsSpectatorIdTicketSummaryGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();
$spectatorId = spectatorId_example; // String | the email of the spectator
$mobileAppId = mobileAppId_example; // String | Mobile app id of spectator

try {
    $result = $api_instance->organizerSpectatorsSpectatorIdTicketSummaryGet($spectatorId, $mobileAppId);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerSpectatorsSpectatorIdTicketSummaryGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::OPenAPIClient::Configuration;
use WWW::OPenAPIClient::DefaultApi;

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DefaultApi->new();
my $spectatorId = spectatorId_example; # String | the email of the spectator
my $mobileAppId = mobileAppId_example; # String | Mobile app id of spectator

eval {
    my $result = $api_instance->organizerSpectatorsSpectatorIdTicketSummaryGet(spectatorId => $spectatorId, mobileAppId => $mobileAppId);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerSpectatorsSpectatorIdTicketSummaryGet: $@\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.DefaultApi()
spectatorId = spectatorId_example # String | the email of the spectator (default to null)
mobileAppId = mobileAppId_example # String | Mobile app id of spectator (default to null)

try:
    api_response = api_instance.organizer_spectators_spectator_id_ticket_summary_get(spectatorId, mobileAppId)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerSpectatorsSpectatorIdTicketSummaryGet: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let spectatorId = spectatorId_example; // String
    let mobileAppId = mobileAppId_example; // String

    let mut context = DefaultApi::Context::default();
    let result = client.organizerSpectatorsSpectatorIdTicketSummaryGet(spectatorId, mobileAppId, &context).wait();

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

Scopes

Parameters

Path parameters
Name Description
spectatorId*
String
the email of the spectator
Required
Query parameters
Name Description
mobileAppId*
String
Mobile app id of spectator
Required

Responses


organizerSupportCommunicationResendPost

Resend notification or email to a spectator (for support team)


/organizer/support/communication/resend

Usage and SDK Samples

curl -X POST \
 -H "Content-Type: application/json" \
 "https://api.tixngo.io/prod/v1.0/organizer/support/communication/resend" \
 -d '{
  "communicationId" : 0,
  "email" : "email"
}'
import com.secutix.tixngo.v1.0.*;
import com.secutix.tixngo.v1.0.auth.*;
import com.secutix.tixngo.v1.0.model.*;
import com.secutix.tixngo.v1.0.api.DefaultApi;

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

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

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();
        OrganizerCommunicationResendRequest organizerCommunicationResendRequest = ; // OrganizerCommunicationResendRequest | 

        try {
            apiInstance.organizerSupportCommunicationResendPost(organizerCommunicationResendRequest);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerSupportCommunicationResendPost");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();

final OrganizerCommunicationResendRequest organizerCommunicationResendRequest = new OrganizerCommunicationResendRequest(); // OrganizerCommunicationResendRequest | 

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

import com.secutix.tixngo.v1.0.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        OrganizerCommunicationResendRequest organizerCommunicationResendRequest = ; // OrganizerCommunicationResendRequest | 

        try {
            apiInstance.organizerSupportCommunicationResendPost(organizerCommunicationResendRequest);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerSupportCommunicationResendPost");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];
OrganizerCommunicationResendRequest *organizerCommunicationResendRequest = ; // 

[apiInstance organizerSupportCommunicationResendPostWith:organizerCommunicationResendRequest
              completionHandler: ^(NSError* error) {
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var TixngoRestApiBackendOrganizerApi = require('tixngo_rest_api_backend_organizer_api');

// Create an instance of the API class
var api = new TixngoRestApiBackendOrganizerApi.DefaultApi()
var organizerCommunicationResendRequest = ; // {OrganizerCommunicationResendRequest} 

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

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

            // Create an instance of the API class
            var apiInstance = new DefaultApi();
            var organizerCommunicationResendRequest = new OrganizerCommunicationResendRequest(); // OrganizerCommunicationResendRequest | 

            try {
                apiInstance.organizerSupportCommunicationResendPost(organizerCommunicationResendRequest);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerSupportCommunicationResendPost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();
$organizerCommunicationResendRequest = ; // OrganizerCommunicationResendRequest | 

try {
    $api_instance->organizerSupportCommunicationResendPost($organizerCommunicationResendRequest);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerSupportCommunicationResendPost: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::OPenAPIClient::Configuration;
use WWW::OPenAPIClient::DefaultApi;

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DefaultApi->new();
my $organizerCommunicationResendRequest = WWW::OPenAPIClient::Object::OrganizerCommunicationResendRequest->new(); # OrganizerCommunicationResendRequest | 

eval {
    $api_instance->organizerSupportCommunicationResendPost(organizerCommunicationResendRequest => $organizerCommunicationResendRequest);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerSupportCommunicationResendPost: $@\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.DefaultApi()
organizerCommunicationResendRequest =  # OrganizerCommunicationResendRequest | 

try:
    api_instance.organizer_support_communication_resend_post(organizerCommunicationResendRequest)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerSupportCommunicationResendPost: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let organizerCommunicationResendRequest = ; // OrganizerCommunicationResendRequest

    let mut context = DefaultApi::Context::default();
    let result = client.organizerSupportCommunicationResendPost(organizerCommunicationResendRequest, &context).wait();

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

Scopes

Parameters

Body parameters
Name Description
organizerCommunicationResendRequest *

Responses


organizerSupportSpectatorCommunicationsGet

Get all communications of a spectator (for support team)


/organizer/support/spectator/communications

Usage and SDK Samples

curl -X GET \
 -H "Accept: application/json" \
 "https://api.tixngo.io/prod/v1.0/organizer/support/spectator/communications?email=email_example&mobileAppId=mobileAppId_example&limit=56&pageOffset=56"
import com.secutix.tixngo.v1.0.*;
import com.secutix.tixngo.v1.0.auth.*;
import com.secutix.tixngo.v1.0.model.*;
import com.secutix.tixngo.v1.0.api.DefaultApi;

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

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

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();
        String email = email_example; // String | 
        String mobileAppId = mobileAppId_example; // String | 
        Integer limit = 56; // Integer | 
        Integer pageOffset = 56; // Integer | 

        try {
            SupportSpectatorCommunicationLogsResponse result = apiInstance.organizerSupportSpectatorCommunicationsGet(email, mobileAppId, limit, pageOffset);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerSupportSpectatorCommunicationsGet");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();

final String email = new String(); // String | 
final String mobileAppId = new String(); // String | 
final Integer limit = new Integer(); // Integer | 
final Integer pageOffset = new Integer(); // Integer | 

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

import com.secutix.tixngo.v1.0.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        String email = email_example; // String | 
        String mobileAppId = mobileAppId_example; // String | 
        Integer limit = 56; // Integer | 
        Integer pageOffset = 56; // Integer | 

        try {
            SupportSpectatorCommunicationLogsResponse result = apiInstance.organizerSupportSpectatorCommunicationsGet(email, mobileAppId, limit, pageOffset);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerSupportSpectatorCommunicationsGet");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];
String *email = email_example; //  (optional) (default to null)
String *mobileAppId = mobileAppId_example; //  (optional) (default to null)
Integer *limit = 56; //  (optional) (default to null)
Integer *pageOffset = 56; //  (optional) (default to null)

[apiInstance organizerSupportSpectatorCommunicationsGetWith:email
    mobileAppId:mobileAppId
    limit:limit
    pageOffset:pageOffset
              completionHandler: ^(SupportSpectatorCommunicationLogsResponse output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var TixngoRestApiBackendOrganizerApi = require('tixngo_rest_api_backend_organizer_api');

// Create an instance of the API class
var api = new TixngoRestApiBackendOrganizerApi.DefaultApi()
var opts = {
  'email': email_example, // {String} 
  'mobileAppId': mobileAppId_example, // {String} 
  'limit': 56, // {Integer} 
  'pageOffset': 56 // {Integer} 
};

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

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

            // Create an instance of the API class
            var apiInstance = new DefaultApi();
            var email = email_example;  // String |  (optional)  (default to null)
            var mobileAppId = mobileAppId_example;  // String |  (optional)  (default to null)
            var limit = 56;  // Integer |  (optional)  (default to null)
            var pageOffset = 56;  // Integer |  (optional)  (default to null)

            try {
                SupportSpectatorCommunicationLogsResponse result = apiInstance.organizerSupportSpectatorCommunicationsGet(email, mobileAppId, limit, pageOffset);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerSupportSpectatorCommunicationsGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();
$email = email_example; // String | 
$mobileAppId = mobileAppId_example; // String | 
$limit = 56; // Integer | 
$pageOffset = 56; // Integer | 

try {
    $result = $api_instance->organizerSupportSpectatorCommunicationsGet($email, $mobileAppId, $limit, $pageOffset);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerSupportSpectatorCommunicationsGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::OPenAPIClient::Configuration;
use WWW::OPenAPIClient::DefaultApi;

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DefaultApi->new();
my $email = email_example; # String | 
my $mobileAppId = mobileAppId_example; # String | 
my $limit = 56; # Integer | 
my $pageOffset = 56; # Integer | 

eval {
    my $result = $api_instance->organizerSupportSpectatorCommunicationsGet(email => $email, mobileAppId => $mobileAppId, limit => $limit, pageOffset => $pageOffset);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerSupportSpectatorCommunicationsGet: $@\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.DefaultApi()
email = email_example # String |  (optional) (default to null)
mobileAppId = mobileAppId_example # String |  (optional) (default to null)
limit = 56 # Integer |  (optional) (default to null)
pageOffset = 56 # Integer |  (optional) (default to null)

try:
    api_response = api_instance.organizer_support_spectator_communications_get(email=email, mobileAppId=mobileAppId, limit=limit, pageOffset=pageOffset)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerSupportSpectatorCommunicationsGet: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let email = email_example; // String
    let mobileAppId = mobileAppId_example; // String
    let limit = 56; // Integer
    let pageOffset = 56; // Integer

    let mut context = DefaultApi::Context::default();
    let result = client.organizerSupportSpectatorCommunicationsGet(email, mobileAppId, limit, pageOffset, &context).wait();

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

Scopes

Parameters

Query parameters
Name Description
email
String
mobileAppId
String
limit
Integer
pageOffset
Integer

Responses


organizerSupportSpectatorGet

Get the main information about a spectator (for support team)


/organizer/support/spectator

Usage and SDK Samples

curl -X GET \
 -H "Accept: application/json" \
 "https://api.tixngo.io/prod/v1.0/organizer/support/spectator?email=email_example&mobileAppId=mobileAppId_example&firstName=firstName_example&lastName=lastName_example&idCardNumber=idCardNumber_example&passportNumber=passportNumber_example&ticketId=ticketId_example&barcode=barcode_example"
import com.secutix.tixngo.v1.0.*;
import com.secutix.tixngo.v1.0.auth.*;
import com.secutix.tixngo.v1.0.model.*;
import com.secutix.tixngo.v1.0.api.DefaultApi;

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

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

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();
        String email = email_example; // String | 
        String mobileAppId = mobileAppId_example; // String | 
        String firstName = firstName_example; // String | 
        String lastName = lastName_example; // String | 
        String idCardNumber = idCardNumber_example; // String | 
        String passportNumber = passportNumber_example; // String | 
        String ticketId = ticketId_example; // String | 
        String barcode = barcode_example; // String | 

        try {
            OrganizerSupportSpectator result = apiInstance.organizerSupportSpectatorGet(email, mobileAppId, firstName, lastName, idCardNumber, passportNumber, ticketId, barcode);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerSupportSpectatorGet");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();

final String email = new String(); // String | 
final String mobileAppId = new String(); // String | 
final String firstName = new String(); // String | 
final String lastName = new String(); // String | 
final String idCardNumber = new String(); // String | 
final String passportNumber = new String(); // String | 
final String ticketId = new String(); // String | 
final String barcode = new String(); // String | 

try {
    final result = await api_instance.organizerSupportSpectatorGet(email, mobileAppId, firstName, lastName, idCardNumber, passportNumber, ticketId, barcode);
    print(result);
} catch (e) {
    print('Exception when calling DefaultApi->organizerSupportSpectatorGet: $e\n');
}

import com.secutix.tixngo.v1.0.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        String email = email_example; // String | 
        String mobileAppId = mobileAppId_example; // String | 
        String firstName = firstName_example; // String | 
        String lastName = lastName_example; // String | 
        String idCardNumber = idCardNumber_example; // String | 
        String passportNumber = passportNumber_example; // String | 
        String ticketId = ticketId_example; // String | 
        String barcode = barcode_example; // String | 

        try {
            OrganizerSupportSpectator result = apiInstance.organizerSupportSpectatorGet(email, mobileAppId, firstName, lastName, idCardNumber, passportNumber, ticketId, barcode);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerSupportSpectatorGet");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];
String *email = email_example; //  (optional) (default to null)
String *mobileAppId = mobileAppId_example; //  (optional) (default to null)
String *firstName = firstName_example; //  (optional) (default to null)
String *lastName = lastName_example; //  (optional) (default to null)
String *idCardNumber = idCardNumber_example; //  (optional) (default to null)
String *passportNumber = passportNumber_example; //  (optional) (default to null)
String *ticketId = ticketId_example; //  (optional) (default to null)
String *barcode = barcode_example; //  (optional) (default to null)

[apiInstance organizerSupportSpectatorGetWith:email
    mobileAppId:mobileAppId
    firstName:firstName
    lastName:lastName
    idCardNumber:idCardNumber
    passportNumber:passportNumber
    ticketId:ticketId
    barcode:barcode
              completionHandler: ^(OrganizerSupportSpectator output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var TixngoRestApiBackendOrganizerApi = require('tixngo_rest_api_backend_organizer_api');

// Create an instance of the API class
var api = new TixngoRestApiBackendOrganizerApi.DefaultApi()
var opts = {
  'email': email_example, // {String} 
  'mobileAppId': mobileAppId_example, // {String} 
  'firstName': firstName_example, // {String} 
  'lastName': lastName_example, // {String} 
  'idCardNumber': idCardNumber_example, // {String} 
  'passportNumber': passportNumber_example, // {String} 
  'ticketId': ticketId_example, // {String} 
  'barcode': barcode_example // {String} 
};

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

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

            // Create an instance of the API class
            var apiInstance = new DefaultApi();
            var email = email_example;  // String |  (optional)  (default to null)
            var mobileAppId = mobileAppId_example;  // String |  (optional)  (default to null)
            var firstName = firstName_example;  // String |  (optional)  (default to null)
            var lastName = lastName_example;  // String |  (optional)  (default to null)
            var idCardNumber = idCardNumber_example;  // String |  (optional)  (default to null)
            var passportNumber = passportNumber_example;  // String |  (optional)  (default to null)
            var ticketId = ticketId_example;  // String |  (optional)  (default to null)
            var barcode = barcode_example;  // String |  (optional)  (default to null)

            try {
                OrganizerSupportSpectator result = apiInstance.organizerSupportSpectatorGet(email, mobileAppId, firstName, lastName, idCardNumber, passportNumber, ticketId, barcode);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerSupportSpectatorGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();
$email = email_example; // String | 
$mobileAppId = mobileAppId_example; // String | 
$firstName = firstName_example; // String | 
$lastName = lastName_example; // String | 
$idCardNumber = idCardNumber_example; // String | 
$passportNumber = passportNumber_example; // String | 
$ticketId = ticketId_example; // String | 
$barcode = barcode_example; // String | 

try {
    $result = $api_instance->organizerSupportSpectatorGet($email, $mobileAppId, $firstName, $lastName, $idCardNumber, $passportNumber, $ticketId, $barcode);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerSupportSpectatorGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::OPenAPIClient::Configuration;
use WWW::OPenAPIClient::DefaultApi;

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DefaultApi->new();
my $email = email_example; # String | 
my $mobileAppId = mobileAppId_example; # String | 
my $firstName = firstName_example; # String | 
my $lastName = lastName_example; # String | 
my $idCardNumber = idCardNumber_example; # String | 
my $passportNumber = passportNumber_example; # String | 
my $ticketId = ticketId_example; # String | 
my $barcode = barcode_example; # String | 

eval {
    my $result = $api_instance->organizerSupportSpectatorGet(email => $email, mobileAppId => $mobileAppId, firstName => $firstName, lastName => $lastName, idCardNumber => $idCardNumber, passportNumber => $passportNumber, ticketId => $ticketId, barcode => $barcode);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerSupportSpectatorGet: $@\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.DefaultApi()
email = email_example # String |  (optional) (default to null)
mobileAppId = mobileAppId_example # String |  (optional) (default to null)
firstName = firstName_example # String |  (optional) (default to null)
lastName = lastName_example # String |  (optional) (default to null)
idCardNumber = idCardNumber_example # String |  (optional) (default to null)
passportNumber = passportNumber_example # String |  (optional) (default to null)
ticketId = ticketId_example # String |  (optional) (default to null)
barcode = barcode_example # String |  (optional) (default to null)

try:
    api_response = api_instance.organizer_support_spectator_get(email=email, mobileAppId=mobileAppId, firstName=firstName, lastName=lastName, idCardNumber=idCardNumber, passportNumber=passportNumber, ticketId=ticketId, barcode=barcode)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerSupportSpectatorGet: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let email = email_example; // String
    let mobileAppId = mobileAppId_example; // String
    let firstName = firstName_example; // String
    let lastName = lastName_example; // String
    let idCardNumber = idCardNumber_example; // String
    let passportNumber = passportNumber_example; // String
    let ticketId = ticketId_example; // String
    let barcode = barcode_example; // String

    let mut context = DefaultApi::Context::default();
    let result = client.organizerSupportSpectatorGet(email, mobileAppId, firstName, lastName, idCardNumber, passportNumber, ticketId, barcode, &context).wait();

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

Scopes

Parameters

Query parameters
Name Description
email
String
mobileAppId
String
firstName
String
lastName
String
idCardNumber
String
passportNumber
String
ticketId
String
barcode
String

Responses


organizerSupportSpectatorMobileLogsGet

Get all mobileLogs of a spectator (for support team)


/organizer/support/spectator/mobile-logs

Usage and SDK Samples

curl -X GET \
 -H "Accept: application/json" \
 "https://api.tixngo.io/prod/v1.0/organizer/support/spectator/mobile-logs?email=email_example&mobileAppId=mobileAppId_example&limit=56&pageOffset=56"
import com.secutix.tixngo.v1.0.*;
import com.secutix.tixngo.v1.0.auth.*;
import com.secutix.tixngo.v1.0.model.*;
import com.secutix.tixngo.v1.0.api.DefaultApi;

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

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

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();
        String email = email_example; // String | 
        String mobileAppId = mobileAppId_example; // String | 
        Integer limit = 56; // Integer | 
        Integer pageOffset = 56; // Integer | 

        try {
            SupportSpectatorMobileLogsResponse result = apiInstance.organizerSupportSpectatorMobileLogsGet(email, mobileAppId, limit, pageOffset);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerSupportSpectatorMobileLogsGet");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();

final String email = new String(); // String | 
final String mobileAppId = new String(); // String | 
final Integer limit = new Integer(); // Integer | 
final Integer pageOffset = new Integer(); // Integer | 

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

import com.secutix.tixngo.v1.0.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        String email = email_example; // String | 
        String mobileAppId = mobileAppId_example; // String | 
        Integer limit = 56; // Integer | 
        Integer pageOffset = 56; // Integer | 

        try {
            SupportSpectatorMobileLogsResponse result = apiInstance.organizerSupportSpectatorMobileLogsGet(email, mobileAppId, limit, pageOffset);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerSupportSpectatorMobileLogsGet");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];
String *email = email_example; //  (optional) (default to null)
String *mobileAppId = mobileAppId_example; //  (optional) (default to null)
Integer *limit = 56; //  (optional) (default to null)
Integer *pageOffset = 56; //  (optional) (default to null)

[apiInstance organizerSupportSpectatorMobileLogsGetWith:email
    mobileAppId:mobileAppId
    limit:limit
    pageOffset:pageOffset
              completionHandler: ^(SupportSpectatorMobileLogsResponse output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var TixngoRestApiBackendOrganizerApi = require('tixngo_rest_api_backend_organizer_api');

// Create an instance of the API class
var api = new TixngoRestApiBackendOrganizerApi.DefaultApi()
var opts = {
  'email': email_example, // {String} 
  'mobileAppId': mobileAppId_example, // {String} 
  'limit': 56, // {Integer} 
  'pageOffset': 56 // {Integer} 
};

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

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

            // Create an instance of the API class
            var apiInstance = new DefaultApi();
            var email = email_example;  // String |  (optional)  (default to null)
            var mobileAppId = mobileAppId_example;  // String |  (optional)  (default to null)
            var limit = 56;  // Integer |  (optional)  (default to null)
            var pageOffset = 56;  // Integer |  (optional)  (default to null)

            try {
                SupportSpectatorMobileLogsResponse result = apiInstance.organizerSupportSpectatorMobileLogsGet(email, mobileAppId, limit, pageOffset);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerSupportSpectatorMobileLogsGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();
$email = email_example; // String | 
$mobileAppId = mobileAppId_example; // String | 
$limit = 56; // Integer | 
$pageOffset = 56; // Integer | 

try {
    $result = $api_instance->organizerSupportSpectatorMobileLogsGet($email, $mobileAppId, $limit, $pageOffset);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerSupportSpectatorMobileLogsGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::OPenAPIClient::Configuration;
use WWW::OPenAPIClient::DefaultApi;

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DefaultApi->new();
my $email = email_example; # String | 
my $mobileAppId = mobileAppId_example; # String | 
my $limit = 56; # Integer | 
my $pageOffset = 56; # Integer | 

eval {
    my $result = $api_instance->organizerSupportSpectatorMobileLogsGet(email => $email, mobileAppId => $mobileAppId, limit => $limit, pageOffset => $pageOffset);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerSupportSpectatorMobileLogsGet: $@\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.DefaultApi()
email = email_example # String |  (optional) (default to null)
mobileAppId = mobileAppId_example # String |  (optional) (default to null)
limit = 56 # Integer |  (optional) (default to null)
pageOffset = 56 # Integer |  (optional) (default to null)

try:
    api_response = api_instance.organizer_support_spectator_mobile_logs_get(email=email, mobileAppId=mobileAppId, limit=limit, pageOffset=pageOffset)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerSupportSpectatorMobileLogsGet: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let email = email_example; // String
    let mobileAppId = mobileAppId_example; // String
    let limit = 56; // Integer
    let pageOffset = 56; // Integer

    let mut context = DefaultApi::Context::default();
    let result = client.organizerSupportSpectatorMobileLogsGet(email, mobileAppId, limit, pageOffset, &context).wait();

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

Scopes

Parameters

Query parameters
Name Description
email
String
mobileAppId
String
limit
Integer
pageOffset
Integer

Responses


organizerSupportSpectatorTicketsGet

Get all tickets of a spectator (for support team)


/organizer/support/spectator/tickets

Usage and SDK Samples

curl -X GET \
 -H "Accept: application/json" \
 "https://api.tixngo.io/prod/v1.0/organizer/support/spectator/tickets?email=email_example&mobileAppId=mobileAppId_example&ownership=&ticketStatusLog=ticketStatusLog_example&limit=56&pageOffset=56"
import com.secutix.tixngo.v1.0.*;
import com.secutix.tixngo.v1.0.auth.*;
import com.secutix.tixngo.v1.0.model.*;
import com.secutix.tixngo.v1.0.api.DefaultApi;

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

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

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();
        String email = email_example; // String | 
        String mobileAppId = mobileAppId_example; // String | 
        SupportSpectatorTicketsOwnership ownership = ; // SupportSpectatorTicketsOwnership | 
        String ticketStatusLog = ticketStatusLog_example; // String | 
        Integer limit = 56; // Integer | 
        Integer pageOffset = 56; // Integer | 

        try {
            SupportSpectatorTicketsResponse result = apiInstance.organizerSupportSpectatorTicketsGet(email, mobileAppId, ownership, ticketStatusLog, limit, pageOffset);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerSupportSpectatorTicketsGet");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();

final String email = new String(); // String | 
final String mobileAppId = new String(); // String | 
final SupportSpectatorTicketsOwnership ownership = new SupportSpectatorTicketsOwnership(); // SupportSpectatorTicketsOwnership | 
final String ticketStatusLog = new String(); // String | 
final Integer limit = new Integer(); // Integer | 
final Integer pageOffset = new Integer(); // Integer | 

try {
    final result = await api_instance.organizerSupportSpectatorTicketsGet(email, mobileAppId, ownership, ticketStatusLog, limit, pageOffset);
    print(result);
} catch (e) {
    print('Exception when calling DefaultApi->organizerSupportSpectatorTicketsGet: $e\n');
}

import com.secutix.tixngo.v1.0.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        String email = email_example; // String | 
        String mobileAppId = mobileAppId_example; // String | 
        SupportSpectatorTicketsOwnership ownership = ; // SupportSpectatorTicketsOwnership | 
        String ticketStatusLog = ticketStatusLog_example; // String | 
        Integer limit = 56; // Integer | 
        Integer pageOffset = 56; // Integer | 

        try {
            SupportSpectatorTicketsResponse result = apiInstance.organizerSupportSpectatorTicketsGet(email, mobileAppId, ownership, ticketStatusLog, limit, pageOffset);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerSupportSpectatorTicketsGet");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];
String *email = email_example; //  (optional) (default to null)
String *mobileAppId = mobileAppId_example; //  (optional) (default to null)
SupportSpectatorTicketsOwnership *ownership = ; //  (optional) (default to null)
String *ticketStatusLog = ticketStatusLog_example; //  (optional) (default to null)
Integer *limit = 56; //  (optional) (default to null)
Integer *pageOffset = 56; //  (optional) (default to null)

[apiInstance organizerSupportSpectatorTicketsGetWith:email
    mobileAppId:mobileAppId
    ownership:ownership
    ticketStatusLog:ticketStatusLog
    limit:limit
    pageOffset:pageOffset
              completionHandler: ^(SupportSpectatorTicketsResponse output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var TixngoRestApiBackendOrganizerApi = require('tixngo_rest_api_backend_organizer_api');

// Create an instance of the API class
var api = new TixngoRestApiBackendOrganizerApi.DefaultApi()
var opts = {
  'email': email_example, // {String} 
  'mobileAppId': mobileAppId_example, // {String} 
  'ownership': , // {SupportSpectatorTicketsOwnership} 
  'ticketStatusLog': ticketStatusLog_example, // {String} 
  'limit': 56, // {Integer} 
  'pageOffset': 56 // {Integer} 
};

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

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

            // Create an instance of the API class
            var apiInstance = new DefaultApi();
            var email = email_example;  // String |  (optional)  (default to null)
            var mobileAppId = mobileAppId_example;  // String |  (optional)  (default to null)
            var ownership = new SupportSpectatorTicketsOwnership(); // SupportSpectatorTicketsOwnership |  (optional)  (default to null)
            var ticketStatusLog = ticketStatusLog_example;  // String |  (optional)  (default to null)
            var limit = 56;  // Integer |  (optional)  (default to null)
            var pageOffset = 56;  // Integer |  (optional)  (default to null)

            try {
                SupportSpectatorTicketsResponse result = apiInstance.organizerSupportSpectatorTicketsGet(email, mobileAppId, ownership, ticketStatusLog, limit, pageOffset);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerSupportSpectatorTicketsGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();
$email = email_example; // String | 
$mobileAppId = mobileAppId_example; // String | 
$ownership = ; // SupportSpectatorTicketsOwnership | 
$ticketStatusLog = ticketStatusLog_example; // String | 
$limit = 56; // Integer | 
$pageOffset = 56; // Integer | 

try {
    $result = $api_instance->organizerSupportSpectatorTicketsGet($email, $mobileAppId, $ownership, $ticketStatusLog, $limit, $pageOffset);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerSupportSpectatorTicketsGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::OPenAPIClient::Configuration;
use WWW::OPenAPIClient::DefaultApi;

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DefaultApi->new();
my $email = email_example; # String | 
my $mobileAppId = mobileAppId_example; # String | 
my $ownership = ; # SupportSpectatorTicketsOwnership | 
my $ticketStatusLog = ticketStatusLog_example; # String | 
my $limit = 56; # Integer | 
my $pageOffset = 56; # Integer | 

eval {
    my $result = $api_instance->organizerSupportSpectatorTicketsGet(email => $email, mobileAppId => $mobileAppId, ownership => $ownership, ticketStatusLog => $ticketStatusLog, limit => $limit, pageOffset => $pageOffset);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerSupportSpectatorTicketsGet: $@\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.DefaultApi()
email = email_example # String |  (optional) (default to null)
mobileAppId = mobileAppId_example # String |  (optional) (default to null)
ownership =  # SupportSpectatorTicketsOwnership |  (optional) (default to null)
ticketStatusLog = ticketStatusLog_example # String |  (optional) (default to null)
limit = 56 # Integer |  (optional) (default to null)
pageOffset = 56 # Integer |  (optional) (default to null)

try:
    api_response = api_instance.organizer_support_spectator_tickets_get(email=email, mobileAppId=mobileAppId, ownership=ownership, ticketStatusLog=ticketStatusLog, limit=limit, pageOffset=pageOffset)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerSupportSpectatorTicketsGet: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let email = email_example; // String
    let mobileAppId = mobileAppId_example; // String
    let ownership = ; // SupportSpectatorTicketsOwnership
    let ticketStatusLog = ticketStatusLog_example; // String
    let limit = 56; // Integer
    let pageOffset = 56; // Integer

    let mut context = DefaultApi::Context::default();
    let result = client.organizerSupportSpectatorTicketsGet(email, mobileAppId, ownership, ticketStatusLog, limit, pageOffset, &context).wait();

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

Scopes

Parameters

Query parameters
Name Description
email
String
mobileAppId
String
ownership
SupportSpectatorTicketsOwnership
ticketStatusLog
String
limit
Integer
pageOffset
Integer

Responses


organizerSupportSpectatorTicketsPendingGet

Get all tickets pending transfer of a spectator (for support team)


/organizer/support/spectator/tickets/pending

Usage and SDK Samples

curl -X GET \
 -H "Accept: application/json" \
 "https://api.tixngo.io/prod/v1.0/organizer/support/spectator/tickets/pending?email=email_example&mobileAppId=mobileAppId_example®istered=true&limit=56&offset=56"
import com.secutix.tixngo.v1.0.*;
import com.secutix.tixngo.v1.0.auth.*;
import com.secutix.tixngo.v1.0.model.*;
import com.secutix.tixngo.v1.0.api.DefaultApi;

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

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

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();
        Integer limit = 56; // Integer | 
        Integer offset = 56; // Integer | 
        String email = email_example; // String | 
        String mobileAppId = mobileAppId_example; // String | 
        Boolean registered = true; // Boolean | 

        try {
            SupportSpectatorTicketsPendingResponse result = apiInstance.organizerSupportSpectatorTicketsPendingGet(limit, offset, email, mobileAppId, registered);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerSupportSpectatorTicketsPendingGet");
            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 email = new String(); // String | 
final String mobileAppId = new String(); // String | 
final Boolean registered = new Boolean(); // Boolean | 

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

import com.secutix.tixngo.v1.0.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        Integer limit = 56; // Integer | 
        Integer offset = 56; // Integer | 
        String email = email_example; // String | 
        String mobileAppId = mobileAppId_example; // String | 
        Boolean registered = true; // Boolean | 

        try {
            SupportSpectatorTicketsPendingResponse result = apiInstance.organizerSupportSpectatorTicketsPendingGet(limit, offset, email, mobileAppId, registered);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerSupportSpectatorTicketsPendingGet");
            e.printStackTrace();
        }
    }
}


// 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 *email = email_example; //  (optional) (default to null)
String *mobileAppId = mobileAppId_example; //  (optional) (default to null)
Boolean *registered = true; //  (optional) (default to null)

[apiInstance organizerSupportSpectatorTicketsPendingGetWith:limit
    offset:offset
    email:email
    mobileAppId:mobileAppId
    registered:registered
              completionHandler: ^(SupportSpectatorTicketsPendingResponse output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var TixngoRestApiBackendOrganizerApi = require('tixngo_rest_api_backend_organizer_api');

// Create an instance of the API class
var api = new TixngoRestApiBackendOrganizerApi.DefaultApi()
var limit = 56; // {Integer} 
var offset = 56; // {Integer} 
var opts = {
  'email': email_example, // {String} 
  'mobileAppId': mobileAppId_example, // {String} 
  'registered': true // {Boolean} 
};

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.organizerSupportSpectatorTicketsPendingGet(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 organizerSupportSpectatorTicketsPendingGetExample
    {
        public void main()
        {

            // 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 email = email_example;  // String |  (optional)  (default to null)
            var mobileAppId = mobileAppId_example;  // String |  (optional)  (default to null)
            var registered = true;  // Boolean |  (optional)  (default to null)

            try {
                SupportSpectatorTicketsPendingResponse result = apiInstance.organizerSupportSpectatorTicketsPendingGet(limit, offset, email, mobileAppId, registered);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerSupportSpectatorTicketsPendingGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();
$limit = 56; // Integer | 
$offset = 56; // Integer | 
$email = email_example; // String | 
$mobileAppId = mobileAppId_example; // String | 
$registered = true; // Boolean | 

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

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DefaultApi->new();
my $limit = 56; # Integer | 
my $offset = 56; # Integer | 
my $email = email_example; # String | 
my $mobileAppId = mobileAppId_example; # String | 
my $registered = true; # Boolean | 

eval {
    my $result = $api_instance->organizerSupportSpectatorTicketsPendingGet(limit => $limit, offset => $offset, email => $email, mobileAppId => $mobileAppId, registered => $registered);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerSupportSpectatorTicketsPendingGet: $@\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.DefaultApi()
limit = 56 # Integer |  (default to null)
offset = 56 # Integer |  (default to null)
email = email_example # String |  (optional) (default to null)
mobileAppId = mobileAppId_example # String |  (optional) (default to null)
registered = true # Boolean |  (optional) (default to null)

try:
    api_response = api_instance.organizer_support_spectator_tickets_pending_get(limit, offset, email=email, mobileAppId=mobileAppId, registered=registered)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerSupportSpectatorTicketsPendingGet: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let limit = 56; // Integer
    let offset = 56; // Integer
    let email = email_example; // String
    let mobileAppId = mobileAppId_example; // String
    let registered = true; // Boolean

    let mut context = DefaultApi::Context::default();
    let result = client.organizerSupportSpectatorTicketsPendingGet(limit, offset, email, mobileAppId, registered, &context).wait();

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

Scopes

Parameters

Query parameters
Name Description
email
String
mobileAppId
String
registered
Boolean
limit*
Integer
Required
offset*
Integer
Required

Responses


organizerSupportTicketGet

Get the main information about a ticket (for support team)


/organizer/support/ticket

Usage and SDK Samples

curl -X GET \
 -H "Accept: application/json" \
 "https://api.tixngo.io/prod/v1.0/organizer/support/ticket?ticketId=ticketId_example&mobileAppId=mobileAppId_example&barcode=barcode_example&email=email_example"
import com.secutix.tixngo.v1.0.*;
import com.secutix.tixngo.v1.0.auth.*;
import com.secutix.tixngo.v1.0.model.*;
import com.secutix.tixngo.v1.0.api.DefaultApi;

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

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

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();
        String ticketId = ticketId_example; // String | 
        String mobileAppId = mobileAppId_example; // String | 
        String barcode = barcode_example; // String | 
        String email = email_example; // String | 

        try {
            OrganizerSupportTicket result = apiInstance.organizerSupportTicketGet(ticketId, mobileAppId, barcode, email);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerSupportTicketGet");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();

final String ticketId = new String(); // String | 
final String mobileAppId = new String(); // String | 
final String barcode = new String(); // String | 
final String email = new String(); // String | 

try {
    final result = await api_instance.organizerSupportTicketGet(ticketId, mobileAppId, barcode, email);
    print(result);
} catch (e) {
    print('Exception when calling DefaultApi->organizerSupportTicketGet: $e\n');
}

import com.secutix.tixngo.v1.0.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        String ticketId = ticketId_example; // String | 
        String mobileAppId = mobileAppId_example; // String | 
        String barcode = barcode_example; // String | 
        String email = email_example; // String | 

        try {
            OrganizerSupportTicket result = apiInstance.organizerSupportTicketGet(ticketId, mobileAppId, barcode, email);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerSupportTicketGet");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];
String *ticketId = ticketId_example; //  (optional) (default to null)
String *mobileAppId = mobileAppId_example; //  (optional) (default to null)
String *barcode = barcode_example; //  (optional) (default to null)
String *email = email_example; //  (optional) (default to null)

[apiInstance organizerSupportTicketGetWith:ticketId
    mobileAppId:mobileAppId
    barcode:barcode
    email:email
              completionHandler: ^(OrganizerSupportTicket output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var TixngoRestApiBackendOrganizerApi = require('tixngo_rest_api_backend_organizer_api');

// Create an instance of the API class
var api = new TixngoRestApiBackendOrganizerApi.DefaultApi()
var opts = {
  'ticketId': ticketId_example, // {String} 
  'mobileAppId': mobileAppId_example, // {String} 
  'barcode': barcode_example, // {String} 
  'email': email_example // {String} 
};

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

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

            // Create an instance of the API class
            var apiInstance = new DefaultApi();
            var ticketId = ticketId_example;  // String |  (optional)  (default to null)
            var mobileAppId = mobileAppId_example;  // String |  (optional)  (default to null)
            var barcode = barcode_example;  // String |  (optional)  (default to null)
            var email = email_example;  // String |  (optional)  (default to null)

            try {
                OrganizerSupportTicket result = apiInstance.organizerSupportTicketGet(ticketId, mobileAppId, barcode, email);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerSupportTicketGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();
$ticketId = ticketId_example; // String | 
$mobileAppId = mobileAppId_example; // String | 
$barcode = barcode_example; // String | 
$email = email_example; // String | 

try {
    $result = $api_instance->organizerSupportTicketGet($ticketId, $mobileAppId, $barcode, $email);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerSupportTicketGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::OPenAPIClient::Configuration;
use WWW::OPenAPIClient::DefaultApi;

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DefaultApi->new();
my $ticketId = ticketId_example; # String | 
my $mobileAppId = mobileAppId_example; # String | 
my $barcode = barcode_example; # String | 
my $email = email_example; # String | 

eval {
    my $result = $api_instance->organizerSupportTicketGet(ticketId => $ticketId, mobileAppId => $mobileAppId, barcode => $barcode, email => $email);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerSupportTicketGet: $@\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.DefaultApi()
ticketId = ticketId_example # String |  (optional) (default to null)
mobileAppId = mobileAppId_example # String |  (optional) (default to null)
barcode = barcode_example # String |  (optional) (default to null)
email = email_example # String |  (optional) (default to null)

try:
    api_response = api_instance.organizer_support_ticket_get(ticketId=ticketId, mobileAppId=mobileAppId, barcode=barcode, email=email)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerSupportTicketGet: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let ticketId = ticketId_example; // String
    let mobileAppId = mobileAppId_example; // String
    let barcode = barcode_example; // String
    let email = email_example; // String

    let mut context = DefaultApi::Context::default();
    let result = client.organizerSupportTicketGet(ticketId, mobileAppId, barcode, email, &context).wait();

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

Scopes

Parameters

Query parameters
Name Description
ticketId
String
mobileAppId
String
barcode
String
email
String

Responses


organizerSupportedApplicationsGet

Get list applications (mobileAppId) of organizer


/organizer/supported-applications

Usage and SDK Samples

curl -X GET \
 -H "Accept: application/json" \
 "https://api.tixngo.io/prod/v1.0/organizer/supported-applications"
import com.secutix.tixngo.v1.0.*;
import com.secutix.tixngo.v1.0.auth.*;
import com.secutix.tixngo.v1.0.model.*;
import com.secutix.tixngo.v1.0.api.DefaultApi;

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

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

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();

        try {
            array[ApplicationInfo] result = apiInstance.organizerSupportedApplicationsGet();
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerSupportedApplicationsGet");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();


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

import com.secutix.tixngo.v1.0.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();

        try {
            array[ApplicationInfo] result = apiInstance.organizerSupportedApplicationsGet();
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerSupportedApplicationsGet");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];

[apiInstance organizerSupportedApplicationsGetWithCompletionHandler: 
              ^(array[ApplicationInfo] output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var TixngoRestApiBackendOrganizerApi = require('tixngo_rest_api_backend_organizer_api');

// Create an instance of the API class
var api = new TixngoRestApiBackendOrganizerApi.DefaultApi()
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.organizerSupportedApplicationsGet(callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

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

            // Create an instance of the API class
            var apiInstance = new DefaultApi();

            try {
                array[ApplicationInfo] result = apiInstance.organizerSupportedApplicationsGet();
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerSupportedApplicationsGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();

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

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DefaultApi->new();

eval {
    my $result = $api_instance->organizerSupportedApplicationsGet();
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerSupportedApplicationsGet: $@\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.DefaultApi()

try:
    api_response = api_instance.organizer_supported_applications_get()
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerSupportedApplicationsGet: %s\n" % e)
extern crate DefaultApi;

pub fn main() {

    let mut context = DefaultApi::Context::default();
    let result = client.organizerSupportedApplicationsGet(&context).wait();

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

Scopes

Parameters

Responses


organizerTicketDetailsKeysGet

Get the ticket details keys of the organizer.


/organizer/ticket-details-keys

Usage and SDK Samples

curl -X GET \
 -H "Accept: application/json" \
 "https://api.tixngo.io/prod/v1.0/organizer/ticket-details-keys?eventId=eventId_example"
import com.secutix.tixngo.v1.0.*;
import com.secutix.tixngo.v1.0.auth.*;
import com.secutix.tixngo.v1.0.model.*;
import com.secutix.tixngo.v1.0.api.DefaultApi;

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

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

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();
        String eventId = eventId_example; // String | 

        try {
            OrganizerTicketDetailsKeysResponse result = apiInstance.organizerTicketDetailsKeysGet(eventId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerTicketDetailsKeysGet");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();

final String eventId = new String(); // String | 

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

import com.secutix.tixngo.v1.0.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        String eventId = eventId_example; // String | 

        try {
            OrganizerTicketDetailsKeysResponse result = apiInstance.organizerTicketDetailsKeysGet(eventId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerTicketDetailsKeysGet");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];
String *eventId = eventId_example; //  (optional) (default to null)

[apiInstance organizerTicketDetailsKeysGetWith:eventId
              completionHandler: ^(OrganizerTicketDetailsKeysResponse output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var TixngoRestApiBackendOrganizerApi = require('tixngo_rest_api_backend_organizer_api');

// Create an instance of the API class
var api = new TixngoRestApiBackendOrganizerApi.DefaultApi()
var opts = {
  'eventId': eventId_example // {String} 
};

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

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

            // Create an instance of the API class
            var apiInstance = new DefaultApi();
            var eventId = eventId_example;  // String |  (optional)  (default to null)

            try {
                OrganizerTicketDetailsKeysResponse result = apiInstance.organizerTicketDetailsKeysGet(eventId);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerTicketDetailsKeysGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();
$eventId = eventId_example; // String | 

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

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DefaultApi->new();
my $eventId = eventId_example; # String | 

eval {
    my $result = $api_instance->organizerTicketDetailsKeysGet(eventId => $eventId);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerTicketDetailsKeysGet: $@\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.DefaultApi()
eventId = eventId_example # String |  (optional) (default to null)

try:
    api_response = api_instance.organizer_ticket_details_keys_get(eventId=eventId)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerTicketDetailsKeysGet: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let eventId = eventId_example; // String

    let mut context = DefaultApi::Context::default();
    let result = client.organizerTicketDetailsKeysGet(eventId, &context).wait();

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

Scopes

Parameters

Query parameters
Name Description
eventId
String

Responses


organizerTicketStatusLogTicketIdGet

Get the ticket status logs for the given ticketId.


/organizer/ticketStatusLog/{ticketId}

Usage and SDK Samples

curl -X GET \
 -H "Accept: application/json" \
 "https://api.tixngo.io/prod/v1.0/organizer/ticketStatusLog/{ticketId}"
import com.secutix.tixngo.v1.0.*;
import com.secutix.tixngo.v1.0.auth.*;
import com.secutix.tixngo.v1.0.model.*;
import com.secutix.tixngo.v1.0.api.DefaultApi;

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

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

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();
        String ticketId = ticketId_example; // String | 

        try {
            array[OrganizerTicketStatusLog] result = apiInstance.organizerTicketStatusLogTicketIdGet(ticketId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerTicketStatusLogTicketIdGet");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();

final String ticketId = new String(); // String | 

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

import com.secutix.tixngo.v1.0.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        String ticketId = ticketId_example; // String | 

        try {
            array[OrganizerTicketStatusLog] result = apiInstance.organizerTicketStatusLogTicketIdGet(ticketId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerTicketStatusLogTicketIdGet");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];
String *ticketId = ticketId_example; //  (default to null)

[apiInstance organizerTicketStatusLogTicketIdGetWith:ticketId
              completionHandler: ^(array[OrganizerTicketStatusLog] output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var TixngoRestApiBackendOrganizerApi = require('tixngo_rest_api_backend_organizer_api');

// Create an instance of the API class
var api = new TixngoRestApiBackendOrganizerApi.DefaultApi()
var ticketId = ticketId_example; // {String} 

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

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

            // Create an instance of the API class
            var apiInstance = new DefaultApi();
            var ticketId = ticketId_example;  // String |  (default to null)

            try {
                array[OrganizerTicketStatusLog] result = apiInstance.organizerTicketStatusLogTicketIdGet(ticketId);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerTicketStatusLogTicketIdGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();
$ticketId = ticketId_example; // String | 

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

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DefaultApi->new();
my $ticketId = ticketId_example; # String | 

eval {
    my $result = $api_instance->organizerTicketStatusLogTicketIdGet(ticketId => $ticketId);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerTicketStatusLogTicketIdGet: $@\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.DefaultApi()
ticketId = ticketId_example # String |  (default to null)

try:
    api_response = api_instance.organizer_ticket_status_log_ticket_id_get(ticketId)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerTicketStatusLogTicketIdGet: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let ticketId = ticketId_example; // String

    let mut context = DefaultApi::Context::default();
    let result = client.organizerTicketStatusLogTicketIdGet(ticketId, &context).wait();

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

Scopes

Parameters

Path parameters
Name Description
ticketId*
String
Required

Responses


organizerTicketsControlledPost

Orders TIXnGO to mark tickets as controlled.


/organizer/tickets/controlled

Usage and SDK Samples

curl -X POST \
 -H "Accept: application/json" \
 -H "Content-Type: application/json" \
 "https://api.tixngo.io/prod/v1.0/organizer/tickets/controlled" \
 -d '{
  "controlledTimestamp" : "2000-01-23T04:56:07.000+00:00",
  "ticketId" : "ticketId"
}'
import com.secutix.tixngo.v1.0.*;
import com.secutix.tixngo.v1.0.auth.*;
import com.secutix.tixngo.v1.0.model.*;
import com.secutix.tixngo.v1.0.api.DefaultApi;

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

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

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();
        set[OrganizerTicketControlOrder] organizerTicketControlOrder = ; // set[OrganizerTicketControlOrder] | 

        try {
            array[OrganizerTicketControlStatus] result = apiInstance.organizerTicketsControlledPost(organizerTicketControlOrder);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerTicketsControlledPost");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();

final set[OrganizerTicketControlOrder] organizerTicketControlOrder = new set[OrganizerTicketControlOrder](); // set[OrganizerTicketControlOrder] | 

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

import com.secutix.tixngo.v1.0.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        set[OrganizerTicketControlOrder] organizerTicketControlOrder = ; // set[OrganizerTicketControlOrder] | 

        try {
            array[OrganizerTicketControlStatus] result = apiInstance.organizerTicketsControlledPost(organizerTicketControlOrder);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerTicketsControlledPost");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];
set[OrganizerTicketControlOrder] *organizerTicketControlOrder = ; //  (optional)

[apiInstance organizerTicketsControlledPostWith:organizerTicketControlOrder
              completionHandler: ^(array[OrganizerTicketControlStatus] output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var TixngoRestApiBackendOrganizerApi = require('tixngo_rest_api_backend_organizer_api');

// Create an instance of the API class
var api = new TixngoRestApiBackendOrganizerApi.DefaultApi()
var opts = {
  'organizerTicketControlOrder':  // {set[OrganizerTicketControlOrder]} 
};

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

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

            // Create an instance of the API class
            var apiInstance = new DefaultApi();
            var organizerTicketControlOrder = new set[OrganizerTicketControlOrder](); // set[OrganizerTicketControlOrder] |  (optional) 

            try {
                array[OrganizerTicketControlStatus] result = apiInstance.organizerTicketsControlledPost(organizerTicketControlOrder);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerTicketsControlledPost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();
$organizerTicketControlOrder = ; // set[OrganizerTicketControlOrder] | 

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

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DefaultApi->new();
my $organizerTicketControlOrder = [WWW::OPenAPIClient::Object::set[OrganizerTicketControlOrder]->new()]; # set[OrganizerTicketControlOrder] | 

eval {
    my $result = $api_instance->organizerTicketsControlledPost(organizerTicketControlOrder => $organizerTicketControlOrder);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerTicketsControlledPost: $@\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.DefaultApi()
organizerTicketControlOrder =  # set[OrganizerTicketControlOrder] |  (optional)

try:
    api_response = api_instance.organizer_tickets_controlled_post(organizerTicketControlOrder=organizerTicketControlOrder)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerTicketsControlledPost: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let organizerTicketControlOrder = ; // set[OrganizerTicketControlOrder]

    let mut context = DefaultApi::Context::default();
    let result = client.organizerTicketsControlledPost(organizerTicketControlOrder, &context).wait();

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

Scopes

Parameters

Body parameters
Name Description
organizerTicketControlOrder

Responses


organizerTicketsCsvDownloadStatusJobIdGet

Retrieve the given csv


/organizer/tickets/csv/download/{status}/{jobId}

Usage and SDK Samples

curl -X GET \
 -H "Accept: application/json" \
 "https://api.tixngo.io/prod/v1.0/organizer/tickets/csv/download/{status}/{jobId}"
import com.secutix.tixngo.v1.0.*;
import com.secutix.tixngo.v1.0.auth.*;
import com.secutix.tixngo.v1.0.model.*;
import com.secutix.tixngo.v1.0.api.DefaultApi;

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

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

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();
        String status = status_example; // String | 
        String jobId = jobId_example; // String | 

        try {
            OrganizerS3Url result = apiInstance.organizerTicketsCsvDownloadStatusJobIdGet(status, jobId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerTicketsCsvDownloadStatusJobIdGet");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();

final String status = new String(); // String | 
final String jobId = new String(); // String | 

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

import com.secutix.tixngo.v1.0.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        String status = status_example; // String | 
        String jobId = jobId_example; // String | 

        try {
            OrganizerS3Url result = apiInstance.organizerTicketsCsvDownloadStatusJobIdGet(status, jobId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerTicketsCsvDownloadStatusJobIdGet");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];
String *status = status_example; //  (default to null)
String *jobId = jobId_example; //  (default to null)

[apiInstance organizerTicketsCsvDownloadStatusJobIdGetWith:status
    jobId:jobId
              completionHandler: ^(OrganizerS3Url output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var TixngoRestApiBackendOrganizerApi = require('tixngo_rest_api_backend_organizer_api');

// Create an instance of the API class
var api = new TixngoRestApiBackendOrganizerApi.DefaultApi()
var status = status_example; // {String} 
var jobId = jobId_example; // {String} 

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

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

            // Create an instance of the API class
            var apiInstance = new DefaultApi();
            var status = status_example;  // String |  (default to null)
            var jobId = jobId_example;  // String |  (default to null)

            try {
                OrganizerS3Url result = apiInstance.organizerTicketsCsvDownloadStatusJobIdGet(status, jobId);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerTicketsCsvDownloadStatusJobIdGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();
$status = status_example; // String | 
$jobId = jobId_example; // String | 

try {
    $result = $api_instance->organizerTicketsCsvDownloadStatusJobIdGet($status, $jobId);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerTicketsCsvDownloadStatusJobIdGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::OPenAPIClient::Configuration;
use WWW::OPenAPIClient::DefaultApi;

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DefaultApi->new();
my $status = status_example; # String | 
my $jobId = jobId_example; # String | 

eval {
    my $result = $api_instance->organizerTicketsCsvDownloadStatusJobIdGet(status => $status, jobId => $jobId);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerTicketsCsvDownloadStatusJobIdGet: $@\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.DefaultApi()
status = status_example # String |  (default to null)
jobId = jobId_example # String |  (default to null)

try:
    api_response = api_instance.organizer_tickets_csv_download_status_job_id_get(status, jobId)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerTicketsCsvDownloadStatusJobIdGet: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let status = status_example; // String
    let jobId = jobId_example; // String

    let mut context = DefaultApi::Context::default();
    let result = client.organizerTicketsCsvDownloadStatusJobIdGet(status, jobId, &context).wait();

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

Scopes

Parameters

Path parameters
Name Description
status*
String
Required
jobId*
String
Required

Responses


organizerTicketsCsvGet

Get the lists of uploaded & outputted csv


/organizer/tickets/csv

Usage and SDK Samples

curl -X GET \
 -H "Accept: application/json" \
 "https://api.tixngo.io/prod/v1.0/organizer/tickets/csv"
import com.secutix.tixngo.v1.0.*;
import com.secutix.tixngo.v1.0.auth.*;
import com.secutix.tixngo.v1.0.model.*;
import com.secutix.tixngo.v1.0.api.DefaultApi;

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

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

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();

        try {
            OrganizerTicketsCsvResponse result = apiInstance.organizerTicketsCsvGet();
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerTicketsCsvGet");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();


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

import com.secutix.tixngo.v1.0.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();

        try {
            OrganizerTicketsCsvResponse result = apiInstance.organizerTicketsCsvGet();
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerTicketsCsvGet");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];

[apiInstance organizerTicketsCsvGetWithCompletionHandler: 
              ^(OrganizerTicketsCsvResponse output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var TixngoRestApiBackendOrganizerApi = require('tixngo_rest_api_backend_organizer_api');

// Create an instance of the API class
var api = new TixngoRestApiBackendOrganizerApi.DefaultApi()
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.organizerTicketsCsvGet(callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

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

            // Create an instance of the API class
            var apiInstance = new DefaultApi();

            try {
                OrganizerTicketsCsvResponse result = apiInstance.organizerTicketsCsvGet();
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerTicketsCsvGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();

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

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DefaultApi->new();

eval {
    my $result = $api_instance->organizerTicketsCsvGet();
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerTicketsCsvGet: $@\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.DefaultApi()

try:
    api_response = api_instance.organizer_tickets_csv_get()
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerTicketsCsvGet: %s\n" % e)
extern crate DefaultApi;

pub fn main() {

    let mut context = DefaultApi::Context::default();
    let result = client.organizerTicketsCsvGet(&context).wait();

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

Scopes

Parameters

Responses


organizerTicketsCsvUploadJobIdGet

Get pre-signed url to upload large csv file


/organizer/tickets/csv/upload/{jobId}

Usage and SDK Samples

curl -X GET \
 -H "Accept: application/json" \
 "https://api.tixngo.io/prod/v1.0/organizer/tickets/csv/upload/{jobId}"
import com.secutix.tixngo.v1.0.*;
import com.secutix.tixngo.v1.0.auth.*;
import com.secutix.tixngo.v1.0.model.*;
import com.secutix.tixngo.v1.0.api.DefaultApi;

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

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

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();
        String jobId = jobId_example; // String | 

        try {
            OrganizerS3Url result = apiInstance.organizerTicketsCsvUploadJobIdGet(jobId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerTicketsCsvUploadJobIdGet");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();

final String jobId = new String(); // String | 

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

import com.secutix.tixngo.v1.0.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        String jobId = jobId_example; // String | 

        try {
            OrganizerS3Url result = apiInstance.organizerTicketsCsvUploadJobIdGet(jobId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerTicketsCsvUploadJobIdGet");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];
String *jobId = jobId_example; //  (default to null)

[apiInstance organizerTicketsCsvUploadJobIdGetWith:jobId
              completionHandler: ^(OrganizerS3Url output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var TixngoRestApiBackendOrganizerApi = require('tixngo_rest_api_backend_organizer_api');

// Create an instance of the API class
var api = new TixngoRestApiBackendOrganizerApi.DefaultApi()
var jobId = jobId_example; // {String} 

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

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

            // Create an instance of the API class
            var apiInstance = new DefaultApi();
            var jobId = jobId_example;  // String |  (default to null)

            try {
                OrganizerS3Url result = apiInstance.organizerTicketsCsvUploadJobIdGet(jobId);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerTicketsCsvUploadJobIdGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();
$jobId = jobId_example; // String | 

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

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DefaultApi->new();
my $jobId = jobId_example; # String | 

eval {
    my $result = $api_instance->organizerTicketsCsvUploadJobIdGet(jobId => $jobId);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerTicketsCsvUploadJobIdGet: $@\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.DefaultApi()
jobId = jobId_example # String |  (default to null)

try:
    api_response = api_instance.organizer_tickets_csv_upload_job_id_get(jobId)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerTicketsCsvUploadJobIdGet: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let jobId = jobId_example; // String

    let mut context = DefaultApi::Context::default();
    let result = client.organizerTicketsCsvUploadJobIdGet(jobId, &context).wait();

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

Scopes

Parameters

Path parameters
Name Description
jobId*
String
Required

Responses


organizerTicketsDiffGet

Get the tickets whose status changed since the reference date


/organizer/tickets/diff

Usage and SDK Samples

curl -X GET \
 -H "Accept: application/json" \
 "https://api.tixngo.io/prod/v1.0/organizer/tickets/diff?batchSize=56&referenceTimestamp=referenceTimestamp_example&appId=appId_example&lightPayload=true&taxNumber=&updatedDate=2013-10-20T19:20:30+01:00"
import com.secutix.tixngo.v1.0.*;
import com.secutix.tixngo.v1.0.auth.*;
import com.secutix.tixngo.v1.0.model.*;
import com.secutix.tixngo.v1.0.api.DefaultApi;

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

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

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();
        Integer batchSize = 56; // Integer | maximum number of tickets returned by the call
        String referenceTimestamp = referenceTimestamp_example; // String | null at the first call and updated at each call
        String appId = appId_example; // String | to filter tickets by appId
        Boolean lightPayload = true; // Boolean | if true, exclude several information
        array[String] taxNumber = ; // array[String] | 
        Date updatedDate = 2013-10-20T19:20:30+01:00; // Date | 

        try {
            OrganizerTicketsDiff result = apiInstance.organizerTicketsDiffGet(batchSize, referenceTimestamp, appId, lightPayload, taxNumber, updatedDate);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerTicketsDiffGet");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();

final Integer batchSize = new Integer(); // Integer | maximum number of tickets returned by the call
final String referenceTimestamp = new String(); // String | null at the first call and updated at each call
final String appId = new String(); // String | to filter tickets by appId
final Boolean lightPayload = new Boolean(); // Boolean | if true, exclude several information
final array[String] taxNumber = new array[String](); // array[String] | 
final Date updatedDate = new Date(); // Date | 

try {
    final result = await api_instance.organizerTicketsDiffGet(batchSize, referenceTimestamp, appId, lightPayload, taxNumber, updatedDate);
    print(result);
} catch (e) {
    print('Exception when calling DefaultApi->organizerTicketsDiffGet: $e\n');
}

import com.secutix.tixngo.v1.0.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        Integer batchSize = 56; // Integer | maximum number of tickets returned by the call
        String referenceTimestamp = referenceTimestamp_example; // String | null at the first call and updated at each call
        String appId = appId_example; // String | to filter tickets by appId
        Boolean lightPayload = true; // Boolean | if true, exclude several information
        array[String] taxNumber = ; // array[String] | 
        Date updatedDate = 2013-10-20T19:20:30+01:00; // Date | 

        try {
            OrganizerTicketsDiff result = apiInstance.organizerTicketsDiffGet(batchSize, referenceTimestamp, appId, lightPayload, taxNumber, updatedDate);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerTicketsDiffGet");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];
Integer *batchSize = 56; // maximum number of tickets returned by the call (default to null)
String *referenceTimestamp = referenceTimestamp_example; // null at the first call and updated at each call (optional) (default to null)
String *appId = appId_example; // to filter tickets by appId (optional) (default to null)
Boolean *lightPayload = true; // if true, exclude several information (optional) (default to null)
array[String] *taxNumber = ; //  (optional) (default to null)
Date *updatedDate = 2013-10-20T19:20:30+01:00; //  (optional) (default to null)

[apiInstance organizerTicketsDiffGetWith:batchSize
    referenceTimestamp:referenceTimestamp
    appId:appId
    lightPayload:lightPayload
    taxNumber:taxNumber
    updatedDate:updatedDate
              completionHandler: ^(OrganizerTicketsDiff output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var TixngoRestApiBackendOrganizerApi = require('tixngo_rest_api_backend_organizer_api');

// Create an instance of the API class
var api = new TixngoRestApiBackendOrganizerApi.DefaultApi()
var batchSize = 56; // {Integer} maximum number of tickets returned by the call
var opts = {
  'referenceTimestamp': referenceTimestamp_example, // {String} null at the first call and updated at each call
  'appId': appId_example, // {String} to filter tickets by appId
  'lightPayload': true, // {Boolean} if true, exclude several information
  'taxNumber': , // {array[String]} 
  'updatedDate': 2013-10-20T19:20:30+01:00 // {Date} 
};

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

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

            // Create an instance of the API class
            var apiInstance = new DefaultApi();
            var batchSize = 56;  // Integer | maximum number of tickets returned by the call (default to null)
            var referenceTimestamp = referenceTimestamp_example;  // String | null at the first call and updated at each call (optional)  (default to null)
            var appId = appId_example;  // String | to filter tickets by appId (optional)  (default to null)
            var lightPayload = true;  // Boolean | if true, exclude several information (optional)  (default to null)
            var taxNumber = new array[String](); // array[String] |  (optional)  (default to null)
            var updatedDate = 2013-10-20T19:20:30+01:00;  // Date |  (optional)  (default to null)

            try {
                OrganizerTicketsDiff result = apiInstance.organizerTicketsDiffGet(batchSize, referenceTimestamp, appId, lightPayload, taxNumber, updatedDate);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerTicketsDiffGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();
$batchSize = 56; // Integer | maximum number of tickets returned by the call
$referenceTimestamp = referenceTimestamp_example; // String | null at the first call and updated at each call
$appId = appId_example; // String | to filter tickets by appId
$lightPayload = true; // Boolean | if true, exclude several information
$taxNumber = ; // array[String] | 
$updatedDate = 2013-10-20T19:20:30+01:00; // Date | 

try {
    $result = $api_instance->organizerTicketsDiffGet($batchSize, $referenceTimestamp, $appId, $lightPayload, $taxNumber, $updatedDate);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerTicketsDiffGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::OPenAPIClient::Configuration;
use WWW::OPenAPIClient::DefaultApi;

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DefaultApi->new();
my $batchSize = 56; # Integer | maximum number of tickets returned by the call
my $referenceTimestamp = referenceTimestamp_example; # String | null at the first call and updated at each call
my $appId = appId_example; # String | to filter tickets by appId
my $lightPayload = true; # Boolean | if true, exclude several information
my $taxNumber = []; # array[String] | 
my $updatedDate = 2013-10-20T19:20:30+01:00; # Date | 

eval {
    my $result = $api_instance->organizerTicketsDiffGet(batchSize => $batchSize, referenceTimestamp => $referenceTimestamp, appId => $appId, lightPayload => $lightPayload, taxNumber => $taxNumber, updatedDate => $updatedDate);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerTicketsDiffGet: $@\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.DefaultApi()
batchSize = 56 # Integer | maximum number of tickets returned by the call (default to null)
referenceTimestamp = referenceTimestamp_example # String | null at the first call and updated at each call (optional) (default to null)
appId = appId_example # String | to filter tickets by appId (optional) (default to null)
lightPayload = true # Boolean | if true, exclude several information (optional) (default to null)
taxNumber =  # array[String] |  (optional) (default to null)
updatedDate = 2013-10-20T19:20:30+01:00 # Date |  (optional) (default to null)

try:
    api_response = api_instance.organizer_tickets_diff_get(batchSize, referenceTimestamp=referenceTimestamp, appId=appId, lightPayload=lightPayload, taxNumber=taxNumber, updatedDate=updatedDate)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerTicketsDiffGet: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let batchSize = 56; // Integer
    let referenceTimestamp = referenceTimestamp_example; // String
    let appId = appId_example; // String
    let lightPayload = true; // Boolean
    let taxNumber = ; // array[String]
    let updatedDate = 2013-10-20T19:20:30+01:00; // Date

    let mut context = DefaultApi::Context::default();
    let result = client.organizerTicketsDiffGet(batchSize, referenceTimestamp, appId, lightPayload, taxNumber, updatedDate, &context).wait();

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

Scopes

Parameters

Query parameters
Name Description
batchSize*
Integer
maximum number of tickets returned by the call
Required
referenceTimestamp
String
null at the first call and updated at each call
appId
String
to filter tickets by appId
lightPayload
Boolean
if true, exclude several information
taxNumber
array[String]
updatedDate
Date (date-time)

Responses


organizerTicketsGet

Get all the tickets of the organizer.


/organizer/tickets

Usage and SDK Samples

curl -X GET \
 -H "Accept: application/json" \
 "https://api.tixngo.io/prod/v1.0/organizer/tickets?limit=limit_example&offset=offset_example&ticketId=ticketId_example&eventId=eventId_example&eventIds=&eventName=eventName_example&eventFrom=eventFrom_example&eventTo=eventTo_example&fileId=fileId_example&status=status_example&latestTicketStatusLog=latestTicketStatusLog_example&activated=true&blockchainStatus=blockchainStatus_example&mobileAppId=mobileAppId_example&barcode=barcode_example&spectatorEmail=spectatorEmail_example&withTransactions=true&taxationNumber=taxationNumber_example&contingentIds=&eventGroupIds="
import com.secutix.tixngo.v1.0.*;
import com.secutix.tixngo.v1.0.auth.*;
import com.secutix.tixngo.v1.0.model.*;
import com.secutix.tixngo.v1.0.api.DefaultApi;

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

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

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();
        String limit = limit_example; // String | Set the number of results returned
        String offset = offset_example; // String | Specify the offset of the first hit to return.
        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 eventFrom = eventFrom_example; // String | 
        String eventTo = eventTo_example; // String | 
        String fileId = fileId_example; // String | 
        String status = status_example; // String | 
        String latestTicketStatusLog = latestTicketStatusLog_example; // String | 
        Boolean activated = true; // Boolean | 
        String blockchainStatus = blockchainStatus_example; // String | 
        String mobileAppId = mobileAppId_example; // String | 
        String barcode = barcode_example; // String | 
        String spectatorEmail = spectatorEmail_example; // String | 
        Boolean withTransactions = true; // Boolean | 
        String taxationNumber = taxationNumber_example; // String | 
        array[String] contingentIds = ; // array[String] | 
        array[String] eventGroupIds = ; // array[String] | 

        try {
            OrganizerTicketsGetResponse result = apiInstance.organizerTicketsGet(limit, offset, ticketId, eventId, eventIds, eventName, eventFrom, eventTo, fileId, status, latestTicketStatusLog, activated, blockchainStatus, mobileAppId, barcode, spectatorEmail, withTransactions, taxationNumber, contingentIds, eventGroupIds);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerTicketsGet");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();

final String limit = new String(); // String | Set the number of results returned
final String offset = new String(); // String | Specify the offset of the first hit to return.
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 eventFrom = new String(); // String | 
final String eventTo = new String(); // String | 
final String fileId = new String(); // String | 
final String status = new String(); // String | 
final String latestTicketStatusLog = new String(); // String | 
final Boolean activated = new Boolean(); // Boolean | 
final String blockchainStatus = new String(); // String | 
final String mobileAppId = new String(); // String | 
final String barcode = new String(); // String | 
final String spectatorEmail = new String(); // String | 
final Boolean withTransactions = new Boolean(); // Boolean | 
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.organizerTicketsGet(limit, offset, ticketId, eventId, eventIds, eventName, eventFrom, eventTo, fileId, status, latestTicketStatusLog, activated, blockchainStatus, mobileAppId, barcode, spectatorEmail, withTransactions, taxationNumber, contingentIds, eventGroupIds);
    print(result);
} catch (e) {
    print('Exception when calling DefaultApi->organizerTicketsGet: $e\n');
}

import com.secutix.tixngo.v1.0.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        String limit = limit_example; // String | Set the number of results returned
        String offset = offset_example; // String | Specify the offset of the first hit to return.
        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 eventFrom = eventFrom_example; // String | 
        String eventTo = eventTo_example; // String | 
        String fileId = fileId_example; // String | 
        String status = status_example; // String | 
        String latestTicketStatusLog = latestTicketStatusLog_example; // String | 
        Boolean activated = true; // Boolean | 
        String blockchainStatus = blockchainStatus_example; // String | 
        String mobileAppId = mobileAppId_example; // String | 
        String barcode = barcode_example; // String | 
        String spectatorEmail = spectatorEmail_example; // String | 
        Boolean withTransactions = true; // Boolean | 
        String taxationNumber = taxationNumber_example; // String | 
        array[String] contingentIds = ; // array[String] | 
        array[String] eventGroupIds = ; // array[String] | 

        try {
            OrganizerTicketsGetResponse result = apiInstance.organizerTicketsGet(limit, offset, ticketId, eventId, eventIds, eventName, eventFrom, eventTo, fileId, status, latestTicketStatusLog, activated, blockchainStatus, mobileAppId, barcode, spectatorEmail, withTransactions, taxationNumber, contingentIds, eventGroupIds);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerTicketsGet");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];
String *limit = limit_example; // Set the number of results returned (default to null)
String *offset = offset_example; // Specify the offset of the first hit to return. (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 *eventFrom = eventFrom_example; //  (optional) (default to null)
String *eventTo = eventTo_example; //  (optional) (default to null)
String *fileId = fileId_example; //  (optional) (default to null)
String *status = status_example; //  (optional) (default to null)
String *latestTicketStatusLog = latestTicketStatusLog_example; //  (optional) (default to null)
Boolean *activated = true; //  (optional) (default to null)
String *blockchainStatus = blockchainStatus_example; //  (optional) (default to null)
String *mobileAppId = mobileAppId_example; //  (optional) (default to null)
String *barcode = barcode_example; //  (optional) (default to null)
String *spectatorEmail = spectatorEmail_example; //  (optional) (default to null)
Boolean *withTransactions = true; //  (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 organizerTicketsGetWith:limit
    offset:offset
    ticketId:ticketId
    eventId:eventId
    eventIds:eventIds
    eventName:eventName
    eventFrom:eventFrom
    eventTo:eventTo
    fileId:fileId
    status:status
    latestTicketStatusLog:latestTicketStatusLog
    activated:activated
    blockchainStatus:blockchainStatus
    mobileAppId:mobileAppId
    barcode:barcode
    spectatorEmail:spectatorEmail
    withTransactions:withTransactions
    taxationNumber:taxationNumber
    contingentIds:contingentIds
    eventGroupIds:eventGroupIds
              completionHandler: ^(OrganizerTicketsGetResponse output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var TixngoRestApiBackendOrganizerApi = require('tixngo_rest_api_backend_organizer_api');

// Create an instance of the API class
var api = new TixngoRestApiBackendOrganizerApi.DefaultApi()
var limit = limit_example; // {String} Set the number of results returned
var offset = offset_example; // {String} Specify the offset of the first hit to return.
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} 
  'eventFrom': eventFrom_example, // {String} 
  'eventTo': eventTo_example, // {String} 
  'fileId': fileId_example, // {String} 
  'status': status_example, // {String} 
  'latestTicketStatusLog': latestTicketStatusLog_example, // {String} 
  'activated': true, // {Boolean} 
  'blockchainStatus': blockchainStatus_example, // {String} 
  'mobileAppId': mobileAppId_example, // {String} 
  'barcode': barcode_example, // {String} 
  'spectatorEmail': spectatorEmail_example, // {String} 
  'withTransactions': true, // {Boolean} 
  '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.organizerTicketsGet(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 organizerTicketsGetExample
    {
        public void main()
        {

            // Create an instance of the API class
            var apiInstance = new DefaultApi();
            var limit = limit_example;  // String | Set the number of results returned (default to null)
            var offset = offset_example;  // String | Specify the offset of the first hit to return. (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 eventFrom = eventFrom_example;  // String |  (optional)  (default to null)
            var eventTo = eventTo_example;  // String |  (optional)  (default to null)
            var fileId = fileId_example;  // String |  (optional)  (default to null)
            var status = status_example;  // String |  (optional)  (default to null)
            var latestTicketStatusLog = latestTicketStatusLog_example;  // String |  (optional)  (default to null)
            var activated = true;  // Boolean |  (optional)  (default to null)
            var blockchainStatus = blockchainStatus_example;  // String |  (optional)  (default to null)
            var mobileAppId = mobileAppId_example;  // String |  (optional)  (default to null)
            var barcode = barcode_example;  // String |  (optional)  (default to null)
            var spectatorEmail = spectatorEmail_example;  // String |  (optional)  (default to null)
            var withTransactions = true;  // Boolean |  (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 {
                OrganizerTicketsGetResponse result = apiInstance.organizerTicketsGet(limit, offset, ticketId, eventId, eventIds, eventName, eventFrom, eventTo, fileId, status, latestTicketStatusLog, activated, blockchainStatus, mobileAppId, barcode, spectatorEmail, withTransactions, taxationNumber, contingentIds, eventGroupIds);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerTicketsGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();
$limit = limit_example; // String | Set the number of results returned
$offset = offset_example; // String | Specify the offset of the first hit to return.
$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 | 
$eventFrom = eventFrom_example; // String | 
$eventTo = eventTo_example; // String | 
$fileId = fileId_example; // String | 
$status = status_example; // String | 
$latestTicketStatusLog = latestTicketStatusLog_example; // String | 
$activated = true; // Boolean | 
$blockchainStatus = blockchainStatus_example; // String | 
$mobileAppId = mobileAppId_example; // String | 
$barcode = barcode_example; // String | 
$spectatorEmail = spectatorEmail_example; // String | 
$withTransactions = true; // Boolean | 
$taxationNumber = taxationNumber_example; // String | 
$contingentIds = ; // array[String] | 
$eventGroupIds = ; // array[String] | 

try {
    $result = $api_instance->organizerTicketsGet($limit, $offset, $ticketId, $eventId, $eventIds, $eventName, $eventFrom, $eventTo, $fileId, $status, $latestTicketStatusLog, $activated, $blockchainStatus, $mobileAppId, $barcode, $spectatorEmail, $withTransactions, $taxationNumber, $contingentIds, $eventGroupIds);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerTicketsGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::OPenAPIClient::Configuration;
use WWW::OPenAPIClient::DefaultApi;

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DefaultApi->new();
my $limit = limit_example; # String | Set the number of results returned
my $offset = offset_example; # String | Specify the offset of the first hit to return.
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 $eventFrom = eventFrom_example; # String | 
my $eventTo = eventTo_example; # String | 
my $fileId = fileId_example; # String | 
my $status = status_example; # String | 
my $latestTicketStatusLog = latestTicketStatusLog_example; # String | 
my $activated = true; # Boolean | 
my $blockchainStatus = blockchainStatus_example; # String | 
my $mobileAppId = mobileAppId_example; # String | 
my $barcode = barcode_example; # String | 
my $spectatorEmail = spectatorEmail_example; # String | 
my $withTransactions = true; # Boolean | 
my $taxationNumber = taxationNumber_example; # String | 
my $contingentIds = []; # array[String] | 
my $eventGroupIds = []; # array[String] | 

eval {
    my $result = $api_instance->organizerTicketsGet(limit => $limit, offset => $offset, ticketId => $ticketId, eventId => $eventId, eventIds => $eventIds, eventName => $eventName, eventFrom => $eventFrom, eventTo => $eventTo, fileId => $fileId, status => $status, latestTicketStatusLog => $latestTicketStatusLog, activated => $activated, blockchainStatus => $blockchainStatus, mobileAppId => $mobileAppId, barcode => $barcode, spectatorEmail => $spectatorEmail, withTransactions => $withTransactions, taxationNumber => $taxationNumber, contingentIds => $contingentIds, eventGroupIds => $eventGroupIds);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerTicketsGet: $@\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.DefaultApi()
limit = limit_example # String | Set the number of results returned (default to null)
offset = offset_example # String | Specify the offset of the first hit to return. (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)
eventFrom = eventFrom_example # String |  (optional) (default to null)
eventTo = eventTo_example # String |  (optional) (default to null)
fileId = fileId_example # String |  (optional) (default to null)
status = status_example # String |  (optional) (default to null)
latestTicketStatusLog = latestTicketStatusLog_example # String |  (optional) (default to null)
activated = true # Boolean |  (optional) (default to null)
blockchainStatus = blockchainStatus_example # String |  (optional) (default to null)
mobileAppId = mobileAppId_example # String |  (optional) (default to null)
barcode = barcode_example # String |  (optional) (default to null)
spectatorEmail = spectatorEmail_example # String |  (optional) (default to null)
withTransactions = true # Boolean |  (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.organizer_tickets_get(limit, offset, ticketId=ticketId, eventId=eventId, eventIds=eventIds, eventName=eventName, eventFrom=eventFrom, eventTo=eventTo, fileId=fileId, status=status, latestTicketStatusLog=latestTicketStatusLog, activated=activated, blockchainStatus=blockchainStatus, mobileAppId=mobileAppId, barcode=barcode, spectatorEmail=spectatorEmail, withTransactions=withTransactions, taxationNumber=taxationNumber, contingentIds=contingentIds, eventGroupIds=eventGroupIds)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerTicketsGet: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let limit = limit_example; // String
    let offset = offset_example; // String
    let ticketId = ticketId_example; // String
    let eventId = eventId_example; // String
    let eventIds = ; // array[String]
    let eventName = eventName_example; // String
    let eventFrom = eventFrom_example; // String
    let eventTo = eventTo_example; // String
    let fileId = fileId_example; // String
    let status = status_example; // String
    let latestTicketStatusLog = latestTicketStatusLog_example; // String
    let activated = true; // Boolean
    let blockchainStatus = blockchainStatus_example; // String
    let mobileAppId = mobileAppId_example; // String
    let barcode = barcode_example; // String
    let spectatorEmail = spectatorEmail_example; // String
    let withTransactions = true; // Boolean
    let taxationNumber = taxationNumber_example; // String
    let contingentIds = ; // array[String]
    let eventGroupIds = ; // array[String]

    let mut context = DefaultApi::Context::default();
    let result = client.organizerTicketsGet(limit, offset, ticketId, eventId, eventIds, eventName, eventFrom, eventTo, fileId, status, latestTicketStatusLog, activated, blockchainStatus, mobileAppId, barcode, spectatorEmail, withTransactions, taxationNumber, contingentIds, eventGroupIds, &context).wait();

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

Scopes

Parameters

Query parameters
Name Description
limit*
String
Set the number of results returned
Required
offset*
String
Specify the offset of the first hit to return.
Required
ticketId
String
Filter ticket on given ticketId
eventId
String
Filter ticket on given eventId
eventIds
array[String]
eventName
String
eventFrom
String
eventTo
String
fileId
String
status
String
latestTicketStatusLog
String
activated
Boolean
blockchainStatus
String
mobileAppId
String
barcode
String
spectatorEmail
String
withTransactions
Boolean
taxationNumber
String
contingentIds
array[String]
eventGroupIds
array[String]

Responses


organizerTicketsInjectionReportGet

get injected ticket number for period time of the organizer


/organizer/tickets-injection/report

Usage and SDK Samples

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

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

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

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();
        Integer limit = 56; // Integer | 
        Integer offset = 56; // Integer | 
        String period = period_example; // String | 

        try {
            OrganizerTicketInjectionReportResponse result = apiInstance.organizerTicketsInjectionReportGet(limit, offset, period);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerTicketsInjectionReportGet");
            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 period = new String(); // String | 

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

import com.secutix.tixngo.v1.0.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        Integer limit = 56; // Integer | 
        Integer offset = 56; // Integer | 
        String period = period_example; // String | 

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


// 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 *period = period_example; //  (default to null)

[apiInstance organizerTicketsInjectionReportGetWith:limit
    offset:offset
    period:period
              completionHandler: ^(OrganizerTicketInjectionReportResponse output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var TixngoRestApiBackendOrganizerApi = require('tixngo_rest_api_backend_organizer_api');

// Create an instance of the API class
var api = new TixngoRestApiBackendOrganizerApi.DefaultApi()
var limit = 56; // {Integer} 
var offset = 56; // {Integer} 
var period = period_example; // {String} 

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

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

            // 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 period = period_example;  // String |  (default to null)

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

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();
$limit = 56; // Integer | 
$offset = 56; // Integer | 
$period = period_example; // String | 

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

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DefaultApi->new();
my $limit = 56; # Integer | 
my $offset = 56; # Integer | 
my $period = period_example; # String | 

eval {
    my $result = $api_instance->organizerTicketsInjectionReportGet(limit => $limit, offset => $offset, period => $period);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerTicketsInjectionReportGet: $@\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.DefaultApi()
limit = 56 # Integer |  (default to null)
offset = 56 # Integer |  (default to null)
period = period_example # String |  (default to null)

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

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

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

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

Scopes

Parameters

Query parameters
Name Description
limit*
Integer
Required
offset*
Integer
Required
period*
String
Required

Responses


organizerTicketsMultilingualPost

Inject a ticket to the TIXnGO system with multilingual


/organizer/tickets/multilingual

Usage and SDK Samples

curl -X POST \
 -H "Accept: application/json" \
 -H "Content-Type: application/json" \
 "https://api.tixngo.io/prod/v1.0/organizer/tickets/multilingual" \
 -d '{
  "tickets" : [ {
    "image" : "https://openapi-generator.tech",
    "contingent" : {
      "cs" : "cs",
      "ar" : "ar",
      "de" : "de",
      "pt" : "pt",
      "en" : "en",
      "it" : "it",
      "fr" : "fr",
      "hu" : "hu",
      "ca" : "ca",
      "nl" : "nl",
      "es" : "es",
      "tr" : "tr"
    },
    "purchaseDetails" : {
      "date" : "2000-01-23T04:56:07.000+00:00",
      "price" : 1.4658129805029452,
      "priceCategory" : "priceCategory",
      "currency" : "currency",
      "taxationNumber" : "taxationNumber"
    },
    "activationParameters" : {
      "instanceId" : "instanceId",
      "method" : "online",
      "groupId" : "groupId",
      "time" : "2000-01-23T04:56:07.000+00:00"
    },
    "ticketDetails" : {
      "hidden" : [ {
        "value" : {
          "cs" : "cs",
          "ar" : "ar",
          "de" : "de",
          "pt" : "pt",
          "en" : "en",
          "it" : "it",
          "fr" : "fr",
          "hu" : "hu",
          "ca" : "ca",
          "nl" : "nl",
          "es" : "es",
          "tr" : "tr"
        },
        "key" : "key"
      }, {
        "value" : {
          "cs" : "cs",
          "ar" : "ar",
          "de" : "de",
          "pt" : "pt",
          "en" : "en",
          "it" : "it",
          "fr" : "fr",
          "hu" : "hu",
          "ca" : "ca",
          "nl" : "nl",
          "es" : "es",
          "tr" : "tr"
        },
        "key" : "key"
      }, {
        "value" : {
          "cs" : "cs",
          "ar" : "ar",
          "de" : "de",
          "pt" : "pt",
          "en" : "en",
          "it" : "it",
          "fr" : "fr",
          "hu" : "hu",
          "ca" : "ca",
          "nl" : "nl",
          "es" : "es",
          "tr" : "tr"
        },
        "key" : "key"
      }, {
        "value" : {
          "cs" : "cs",
          "ar" : "ar",
          "de" : "de",
          "pt" : "pt",
          "en" : "en",
          "it" : "it",
          "fr" : "fr",
          "hu" : "hu",
          "ca" : "ca",
          "nl" : "nl",
          "es" : "es",
          "tr" : "tr"
        },
        "key" : "key"
      }, {
        "value" : {
          "cs" : "cs",
          "ar" : "ar",
          "de" : "de",
          "pt" : "pt",
          "en" : "en",
          "it" : "it",
          "fr" : "fr",
          "hu" : "hu",
          "ca" : "ca",
          "nl" : "nl",
          "es" : "es",
          "tr" : "tr"
        },
        "key" : "key"
      } ],
      "extra" : [ {
        "value" : {
          "cs" : "cs",
          "ar" : "ar",
          "de" : "de",
          "pt" : "pt",
          "en" : "en",
          "it" : "it",
          "fr" : "fr",
          "hu" : "hu",
          "ca" : "ca",
          "nl" : "nl",
          "es" : "es",
          "tr" : "tr"
        },
        "key" : "key"
      }, {
        "value" : {
          "cs" : "cs",
          "ar" : "ar",
          "de" : "de",
          "pt" : "pt",
          "en" : "en",
          "it" : "it",
          "fr" : "fr",
          "hu" : "hu",
          "ca" : "ca",
          "nl" : "nl",
          "es" : "es",
          "tr" : "tr"
        },
        "key" : "key"
      }, {
        "value" : {
          "cs" : "cs",
          "ar" : "ar",
          "de" : "de",
          "pt" : "pt",
          "en" : "en",
          "it" : "it",
          "fr" : "fr",
          "hu" : "hu",
          "ca" : "ca",
          "nl" : "nl",
          "es" : "es",
          "tr" : "tr"
        },
        "key" : "key"
      }, {
        "value" : {
          "cs" : "cs",
          "ar" : "ar",
          "de" : "de",
          "pt" : "pt",
          "en" : "en",
          "it" : "it",
          "fr" : "fr",
          "hu" : "hu",
          "ca" : "ca",
          "nl" : "nl",
          "es" : "es",
          "tr" : "tr"
        },
        "key" : "key"
      }, {
        "value" : {
          "cs" : "cs",
          "ar" : "ar",
          "de" : "de",
          "pt" : "pt",
          "en" : "en",
          "it" : "it",
          "fr" : "fr",
          "hu" : "hu",
          "ca" : "ca",
          "nl" : "nl",
          "es" : "es",
          "tr" : "tr"
        },
        "key" : "key"
      } ],
      "main" : [ {
        "value" : {
          "cs" : "cs",
          "ar" : "ar",
          "de" : "de",
          "pt" : "pt",
          "en" : "en",
          "it" : "it",
          "fr" : "fr",
          "hu" : "hu",
          "ca" : "ca",
          "nl" : "nl",
          "es" : "es",
          "tr" : "tr"
        },
        "key" : "key"
      }, {
        "value" : {
          "cs" : "cs",
          "ar" : "ar",
          "de" : "de",
          "pt" : "pt",
          "en" : "en",
          "it" : "it",
          "fr" : "fr",
          "hu" : "hu",
          "ca" : "ca",
          "nl" : "nl",
          "es" : "es",
          "tr" : "tr"
        },
        "key" : "key"
      }, {
        "value" : {
          "cs" : "cs",
          "ar" : "ar",
          "de" : "de",
          "pt" : "pt",
          "en" : "en",
          "it" : "it",
          "fr" : "fr",
          "hu" : "hu",
          "ca" : "ca",
          "nl" : "nl",
          "es" : "es",
          "tr" : "tr"
        },
        "key" : "key"
      }, {
        "value" : {
          "cs" : "cs",
          "ar" : "ar",
          "de" : "de",
          "pt" : "pt",
          "en" : "en",
          "it" : "it",
          "fr" : "fr",
          "hu" : "hu",
          "ca" : "ca",
          "nl" : "nl",
          "es" : "es",
          "tr" : "tr"
        },
        "key" : "key"
      }, {
        "value" : {
          "cs" : "cs",
          "ar" : "ar",
          "de" : "de",
          "pt" : "pt",
          "en" : "en",
          "it" : "it",
          "fr" : "fr",
          "hu" : "hu",
          "ca" : "ca",
          "nl" : "nl",
          "es" : "es",
          "tr" : "tr"
        },
        "key" : "key"
      } ]
    },
    "proofOfIdentity" : {
      "publicKey" : "publicKey",
      "signedMessage" : "signedMessage"
    },
    "spectatorDetails" : {
      "residenceCountry" : "residenceCountry",
      "lastName" : "lastName",
      "preferredLanguage" : "preferredLanguage",
      "gender" : "gender",
      "spectatorUsedDevices" : [ {
        "appVersion" : "appVersion",
        "lastActiveTime" : "2000-01-23T04:56:07.000+00:00",
        "os" : "os",
        "osVersion" : "osVersion",
        "deviceId" : "deviceId",
        "deviceName" : "deviceName"
      }, {
        "appVersion" : "appVersion",
        "lastActiveTime" : "2000-01-23T04:56:07.000+00:00",
        "os" : "os",
        "osVersion" : "osVersion",
        "deviceId" : "deviceId",
        "deviceName" : "deviceName"
      } ],
      "extraInfo1" : "extraInfo1",
      "spectatorId" : "spectatorId",
      "extraInfo4" : "extraInfo4",
      "firstLoginDate" : "2000-01-23T04:56:07.000+00:00",
      "extraInfo2" : "extraInfo2",
      "extraInfo3" : "extraInfo3",
      "spectatorStatus" : "activated",
      "mobileAppId" : "mobileAppId",
      "isLocked" : true,
      "organizerSpectatorPreference" : {
        "allowPromoEmail" : true,
        "allowPromoThirdPartyEmail" : true,
        "allowTracking" : true
      },
      "registeredDevices" : 2,
      "email" : "email",
      "passportNumber" : "passportNumber",
      "lastActiveTime" : "lastActiveTime",
      "dateOfBirth" : "2000-01-23",
      "firstName" : "firstName",
      "phoneNumber" : "phoneNumber",
      "createdDate" : "createdDate",
      "nationality" : "nationality",
      "activeSessions" : 5,
      "pinCode" : "pinCode",
      "idCardNumber" : "idCardNumber",
      "ticketHolder" : {
        "reason" : "reason",
        "identity" : {
          "passportNumber" : "passportNumber",
          "residenceCountry" : "residenceCountry",
          "lastName" : "lastName",
          "address" : {
            "zip" : "zip",
            "city" : "city",
            "countryCode" : "countryCode",
            "line3" : "line3",
            "line2" : "line2",
            "line1" : "line1"
          },
          "gender" : "m",
          "extraInfo1" : "extraInfo1",
          "dateOfBirth" : "2000-01-23",
          "birthCity" : "birthCity",
          "extraInfo4" : "extraInfo4",
          "extraInfo2" : "extraInfo2",
          "extraInfo3" : "extraInfo3",
          "firstName" : "firstName",
          "face" : "face",
          "phoneNumber" : "phoneNumber",
          "nationality" : "nationality",
          "idCardNumber" : "idCardNumber",
          "birthCountry" : "birthCountry",
          "email" : "email"
        }
      },
      "appLanguage" : "appLanguage"
    },
    "security" : {
      "clearanceLevel" : 5,
      "barcode" : "barcode"
    },
    "transferRules" : {
      "maxNumberOfTransferPerTicketInGroupId" : 3,
      "allowReturnToOrganizerForInitialSpectator" : false,
      "s360ExchangeForAnySpectator" : false,
      "maxNumberOfTransferPerPhoneInGroupId" : 9,
      "groupId" : "groupId",
      "allowTransferAfterActivation" : false,
      "allowTransferAfterControl" : false,
      "keepOneAtInjectInGroupId" : false,
      "keepOneInGroupId" : false,
      "assignTransferLimit" : 2,
      "allowTransferAfterActivationByBT" : true,
      "allowTransferMainApplicant" : false,
      "allowTransfer" : true,
      "s360ExchangeForInitialSpectator" : false,
      "transferLevel" : 4,
      "allowReturnToOrganizer" : false,
      "maxNumberOfTicketPerPhoneInGroupId" : 7
    },
    "privilegeInstanceId" : "privilegeInstanceId",
    "sortingKey" : "sortingKey",
    "design" : {
      "backgroundColor" : "backgroundColor",
      "secureColor" : "secureColor",
      "secureImage" : "secureImage",
      "id" : "id"
    },
    "event" : {
      "website" : {
        "cs" : "cs",
        "ar" : "ar",
        "de" : "de",
        "pt" : "pt",
        "en" : "en",
        "it" : "it",
        "fr" : "fr",
        "hu" : "hu",
        "ca" : "ca",
        "nl" : "nl",
        "es" : "es",
        "tr" : "tr"
      },
      "metadata" : [ {
        "value" : "value",
        "key" : "key"
      }, {
        "value" : "value",
        "key" : "key"
      }, {
        "value" : "value",
        "key" : "key"
      }, {
        "value" : "value",
        "key" : "key"
      }, {
        "value" : "value",
        "key" : "key"
      } ],
      "address" : {
        "zip" : "zip",
        "site" : {
          "cs" : "cs",
          "ar" : "ar",
          "de" : "de",
          "pt" : "pt",
          "en" : "en",
          "it" : "it",
          "fr" : "fr",
          "hu" : "hu",
          "ca" : "ca",
          "nl" : "nl",
          "es" : "es",
          "tr" : "tr"
        },
        "city" : {
          "cs" : "cs",
          "ar" : "ar",
          "de" : "de",
          "pt" : "pt",
          "en" : "en",
          "it" : "it",
          "fr" : "fr",
          "hu" : "hu",
          "ca" : "ca",
          "nl" : "nl",
          "es" : "es",
          "tr" : "tr"
        },
        "countryCode" : "countryCode",
        "latitude" : 6.027456183070403,
        "line3" : {
          "cs" : "cs",
          "ar" : "ar",
          "de" : "de",
          "pt" : "pt",
          "en" : "en",
          "it" : "it",
          "fr" : "fr",
          "hu" : "hu",
          "ca" : "ca",
          "nl" : "nl",
          "es" : "es",
          "tr" : "tr"
        },
        "region" : "region",
        "line2" : {
          "cs" : "cs",
          "ar" : "ar",
          "de" : "de",
          "pt" : "pt",
          "en" : "en",
          "it" : "it",
          "fr" : "fr",
          "hu" : "hu",
          "ca" : "ca",
          "nl" : "nl",
          "es" : "es",
          "tr" : "tr"
        },
        "line1" : {
          "cs" : "cs",
          "ar" : "ar",
          "de" : "de",
          "pt" : "pt",
          "en" : "en",
          "it" : "it",
          "fr" : "fr",
          "hu" : "hu",
          "ca" : "ca",
          "nl" : "nl",
          "es" : "es",
          "tr" : "tr"
        },
        "longitude" : 0.8008281904610115
      },
      "bluetoothPreparationRibbonDisplayTime" : "bluetoothPreparationRibbonDisplayTime",
      "name" : {
        "cs" : "cs",
        "ar" : "ar",
        "de" : "de",
        "pt" : "pt",
        "en" : "en",
        "it" : "it",
        "fr" : "fr",
        "hu" : "hu",
        "ca" : "ca",
        "nl" : "nl",
        "es" : "es",
        "tr" : "tr"
      },
      "startTime" : "startTime",
      "id" : "id",
      "name2" : {
        "cs" : "cs",
        "ar" : "ar",
        "de" : "de",
        "pt" : "pt",
        "en" : "en",
        "it" : "it",
        "fr" : "fr",
        "hu" : "hu",
        "ca" : "ca",
        "nl" : "nl",
        "es" : "es",
        "tr" : "tr"
      },
      "expirationDate" : "expirationDate",
      "bluetoothPreparationRibbonEndTime" : "bluetoothPreparationRibbonEndTime",
      "group" : {
        "image" : {
          "cs" : "cs",
          "ar" : "ar",
          "de" : "de",
          "pt" : "pt",
          "en" : "en",
          "it" : "it",
          "fr" : "fr",
          "hu" : "hu",
          "ca" : "ca",
          "nl" : "nl",
          "es" : "es",
          "tr" : "tr"
        },
        "name" : {
          "cs" : "cs",
          "ar" : "ar",
          "de" : "de",
          "pt" : "pt",
          "en" : "en",
          "it" : "it",
          "fr" : "fr",
          "hu" : "hu",
          "ca" : "ca",
          "nl" : "nl",
          "es" : "es",
          "tr" : "tr"
        },
        "id" : "id"
      }
    },
    "lang" : "lang",
    "mainApplicant" : false,
    "ticketId" : "ticketId",
    "ticketInjectionDate" : "2000-01-23T04:56:07.000+00:00"
  }, {
    "image" : "https://openapi-generator.tech",
    "contingent" : {
      "cs" : "cs",
      "ar" : "ar",
      "de" : "de",
      "pt" : "pt",
      "en" : "en",
      "it" : "it",
      "fr" : "fr",
      "hu" : "hu",
      "ca" : "ca",
      "nl" : "nl",
      "es" : "es",
      "tr" : "tr"
    },
    "purchaseDetails" : {
      "date" : "2000-01-23T04:56:07.000+00:00",
      "price" : 1.4658129805029452,
      "priceCategory" : "priceCategory",
      "currency" : "currency",
      "taxationNumber" : "taxationNumber"
    },
    "activationParameters" : {
      "instanceId" : "instanceId",
      "method" : "online",
      "groupId" : "groupId",
      "time" : "2000-01-23T04:56:07.000+00:00"
    },
    "ticketDetails" : {
      "hidden" : [ {
        "value" : {
          "cs" : "cs",
          "ar" : "ar",
          "de" : "de",
          "pt" : "pt",
          "en" : "en",
          "it" : "it",
          "fr" : "fr",
          "hu" : "hu",
          "ca" : "ca",
          "nl" : "nl",
          "es" : "es",
          "tr" : "tr"
        },
        "key" : "key"
      }, {
        "value" : {
          "cs" : "cs",
          "ar" : "ar",
          "de" : "de",
          "pt" : "pt",
          "en" : "en",
          "it" : "it",
          "fr" : "fr",
          "hu" : "hu",
          "ca" : "ca",
          "nl" : "nl",
          "es" : "es",
          "tr" : "tr"
        },
        "key" : "key"
      }, {
        "value" : {
          "cs" : "cs",
          "ar" : "ar",
          "de" : "de",
          "pt" : "pt",
          "en" : "en",
          "it" : "it",
          "fr" : "fr",
          "hu" : "hu",
          "ca" : "ca",
          "nl" : "nl",
          "es" : "es",
          "tr" : "tr"
        },
        "key" : "key"
      }, {
        "value" : {
          "cs" : "cs",
          "ar" : "ar",
          "de" : "de",
          "pt" : "pt",
          "en" : "en",
          "it" : "it",
          "fr" : "fr",
          "hu" : "hu",
          "ca" : "ca",
          "nl" : "nl",
          "es" : "es",
          "tr" : "tr"
        },
        "key" : "key"
      }, {
        "value" : {
          "cs" : "cs",
          "ar" : "ar",
          "de" : "de",
          "pt" : "pt",
          "en" : "en",
          "it" : "it",
          "fr" : "fr",
          "hu" : "hu",
          "ca" : "ca",
          "nl" : "nl",
          "es" : "es",
          "tr" : "tr"
        },
        "key" : "key"
      } ],
      "extra" : [ {
        "value" : {
          "cs" : "cs",
          "ar" : "ar",
          "de" : "de",
          "pt" : "pt",
          "en" : "en",
          "it" : "it",
          "fr" : "fr",
          "hu" : "hu",
          "ca" : "ca",
          "nl" : "nl",
          "es" : "es",
          "tr" : "tr"
        },
        "key" : "key"
      }, {
        "value" : {
          "cs" : "cs",
          "ar" : "ar",
          "de" : "de",
          "pt" : "pt",
          "en" : "en",
          "it" : "it",
          "fr" : "fr",
          "hu" : "hu",
          "ca" : "ca",
          "nl" : "nl",
          "es" : "es",
          "tr" : "tr"
        },
        "key" : "key"
      }, {
        "value" : {
          "cs" : "cs",
          "ar" : "ar",
          "de" : "de",
          "pt" : "pt",
          "en" : "en",
          "it" : "it",
          "fr" : "fr",
          "hu" : "hu",
          "ca" : "ca",
          "nl" : "nl",
          "es" : "es",
          "tr" : "tr"
        },
        "key" : "key"
      }, {
        "value" : {
          "cs" : "cs",
          "ar" : "ar",
          "de" : "de",
          "pt" : "pt",
          "en" : "en",
          "it" : "it",
          "fr" : "fr",
          "hu" : "hu",
          "ca" : "ca",
          "nl" : "nl",
          "es" : "es",
          "tr" : "tr"
        },
        "key" : "key"
      }, {
        "value" : {
          "cs" : "cs",
          "ar" : "ar",
          "de" : "de",
          "pt" : "pt",
          "en" : "en",
          "it" : "it",
          "fr" : "fr",
          "hu" : "hu",
          "ca" : "ca",
          "nl" : "nl",
          "es" : "es",
          "tr" : "tr"
        },
        "key" : "key"
      } ],
      "main" : [ {
        "value" : {
          "cs" : "cs",
          "ar" : "ar",
          "de" : "de",
          "pt" : "pt",
          "en" : "en",
          "it" : "it",
          "fr" : "fr",
          "hu" : "hu",
          "ca" : "ca",
          "nl" : "nl",
          "es" : "es",
          "tr" : "tr"
        },
        "key" : "key"
      }, {
        "value" : {
          "cs" : "cs",
          "ar" : "ar",
          "de" : "de",
          "pt" : "pt",
          "en" : "en",
          "it" : "it",
          "fr" : "fr",
          "hu" : "hu",
          "ca" : "ca",
          "nl" : "nl",
          "es" : "es",
          "tr" : "tr"
        },
        "key" : "key"
      }, {
        "value" : {
          "cs" : "cs",
          "ar" : "ar",
          "de" : "de",
          "pt" : "pt",
          "en" : "en",
          "it" : "it",
          "fr" : "fr",
          "hu" : "hu",
          "ca" : "ca",
          "nl" : "nl",
          "es" : "es",
          "tr" : "tr"
        },
        "key" : "key"
      }, {
        "value" : {
          "cs" : "cs",
          "ar" : "ar",
          "de" : "de",
          "pt" : "pt",
          "en" : "en",
          "it" : "it",
          "fr" : "fr",
          "hu" : "hu",
          "ca" : "ca",
          "nl" : "nl",
          "es" : "es",
          "tr" : "tr"
        },
        "key" : "key"
      }, {
        "value" : {
          "cs" : "cs",
          "ar" : "ar",
          "de" : "de",
          "pt" : "pt",
          "en" : "en",
          "it" : "it",
          "fr" : "fr",
          "hu" : "hu",
          "ca" : "ca",
          "nl" : "nl",
          "es" : "es",
          "tr" : "tr"
        },
        "key" : "key"
      } ]
    },
    "proofOfIdentity" : {
      "publicKey" : "publicKey",
      "signedMessage" : "signedMessage"
    },
    "spectatorDetails" : {
      "residenceCountry" : "residenceCountry",
      "lastName" : "lastName",
      "preferredLanguage" : "preferredLanguage",
      "gender" : "gender",
      "spectatorUsedDevices" : [ {
        "appVersion" : "appVersion",
        "lastActiveTime" : "2000-01-23T04:56:07.000+00:00",
        "os" : "os",
        "osVersion" : "osVersion",
        "deviceId" : "deviceId",
        "deviceName" : "deviceName"
      }, {
        "appVersion" : "appVersion",
        "lastActiveTime" : "2000-01-23T04:56:07.000+00:00",
        "os" : "os",
        "osVersion" : "osVersion",
        "deviceId" : "deviceId",
        "deviceName" : "deviceName"
      } ],
      "extraInfo1" : "extraInfo1",
      "spectatorId" : "spectatorId",
      "extraInfo4" : "extraInfo4",
      "firstLoginDate" : "2000-01-23T04:56:07.000+00:00",
      "extraInfo2" : "extraInfo2",
      "extraInfo3" : "extraInfo3",
      "spectatorStatus" : "activated",
      "mobileAppId" : "mobileAppId",
      "isLocked" : true,
      "organizerSpectatorPreference" : {
        "allowPromoEmail" : true,
        "allowPromoThirdPartyEmail" : true,
        "allowTracking" : true
      },
      "registeredDevices" : 2,
      "email" : "email",
      "passportNumber" : "passportNumber",
      "lastActiveTime" : "lastActiveTime",
      "dateOfBirth" : "2000-01-23",
      "firstName" : "firstName",
      "phoneNumber" : "phoneNumber",
      "createdDate" : "createdDate",
      "nationality" : "nationality",
      "activeSessions" : 5,
      "pinCode" : "pinCode",
      "idCardNumber" : "idCardNumber",
      "ticketHolder" : {
        "reason" : "reason",
        "identity" : {
          "passportNumber" : "passportNumber",
          "residenceCountry" : "residenceCountry",
          "lastName" : "lastName",
          "address" : {
            "zip" : "zip",
            "city" : "city",
            "countryCode" : "countryCode",
            "line3" : "line3",
            "line2" : "line2",
            "line1" : "line1"
          },
          "gender" : "m",
          "extraInfo1" : "extraInfo1",
          "dateOfBirth" : "2000-01-23",
          "birthCity" : "birthCity",
          "extraInfo4" : "extraInfo4",
          "extraInfo2" : "extraInfo2",
          "extraInfo3" : "extraInfo3",
          "firstName" : "firstName",
          "face" : "face",
          "phoneNumber" : "phoneNumber",
          "nationality" : "nationality",
          "idCardNumber" : "idCardNumber",
          "birthCountry" : "birthCountry",
          "email" : "email"
        }
      },
      "appLanguage" : "appLanguage"
    },
    "security" : {
      "clearanceLevel" : 5,
      "barcode" : "barcode"
    },
    "transferRules" : {
      "maxNumberOfTransferPerTicketInGroupId" : 3,
      "allowReturnToOrganizerForInitialSpectator" : false,
      "s360ExchangeForAnySpectator" : false,
      "maxNumberOfTransferPerPhoneInGroupId" : 9,
      "groupId" : "groupId",
      "allowTransferAfterActivation" : false,
      "allowTransferAfterControl" : false,
      "keepOneAtInjectInGroupId" : false,
      "keepOneInGroupId" : false,
      "assignTransferLimit" : 2,
      "allowTransferAfterActivationByBT" : true,
      "allowTransferMainApplicant" : false,
      "allowTransfer" : true,
      "s360ExchangeForInitialSpectator" : false,
      "transferLevel" : 4,
      "allowReturnToOrganizer" : false,
      "maxNumberOfTicketPerPhoneInGroupId" : 7
    },
    "privilegeInstanceId" : "privilegeInstanceId",
    "sortingKey" : "sortingKey",
    "design" : {
      "backgroundColor" : "backgroundColor",
      "secureColor" : "secureColor",
      "secureImage" : "secureImage",
      "id" : "id"
    },
    "event" : {
      "website" : {
        "cs" : "cs",
        "ar" : "ar",
        "de" : "de",
        "pt" : "pt",
        "en" : "en",
        "it" : "it",
        "fr" : "fr",
        "hu" : "hu",
        "ca" : "ca",
        "nl" : "nl",
        "es" : "es",
        "tr" : "tr"
      },
      "metadata" : [ {
        "value" : "value",
        "key" : "key"
      }, {
        "value" : "value",
        "key" : "key"
      }, {
        "value" : "value",
        "key" : "key"
      }, {
        "value" : "value",
        "key" : "key"
      }, {
        "value" : "value",
        "key" : "key"
      } ],
      "address" : {
        "zip" : "zip",
        "site" : {
          "cs" : "cs",
          "ar" : "ar",
          "de" : "de",
          "pt" : "pt",
          "en" : "en",
          "it" : "it",
          "fr" : "fr",
          "hu" : "hu",
          "ca" : "ca",
          "nl" : "nl",
          "es" : "es",
          "tr" : "tr"
        },
        "city" : {
          "cs" : "cs",
          "ar" : "ar",
          "de" : "de",
          "pt" : "pt",
          "en" : "en",
          "it" : "it",
          "fr" : "fr",
          "hu" : "hu",
          "ca" : "ca",
          "nl" : "nl",
          "es" : "es",
          "tr" : "tr"
        },
        "countryCode" : "countryCode",
        "latitude" : 6.027456183070403,
        "line3" : {
          "cs" : "cs",
          "ar" : "ar",
          "de" : "de",
          "pt" : "pt",
          "en" : "en",
          "it" : "it",
          "fr" : "fr",
          "hu" : "hu",
          "ca" : "ca",
          "nl" : "nl",
          "es" : "es",
          "tr" : "tr"
        },
        "region" : "region",
        "line2" : {
          "cs" : "cs",
          "ar" : "ar",
          "de" : "de",
          "pt" : "pt",
          "en" : "en",
          "it" : "it",
          "fr" : "fr",
          "hu" : "hu",
          "ca" : "ca",
          "nl" : "nl",
          "es" : "es",
          "tr" : "tr"
        },
        "line1" : {
          "cs" : "cs",
          "ar" : "ar",
          "de" : "de",
          "pt" : "pt",
          "en" : "en",
          "it" : "it",
          "fr" : "fr",
          "hu" : "hu",
          "ca" : "ca",
          "nl" : "nl",
          "es" : "es",
          "tr" : "tr"
        },
        "longitude" : 0.8008281904610115
      },
      "bluetoothPreparationRibbonDisplayTime" : "bluetoothPreparationRibbonDisplayTime",
      "name" : {
        "cs" : "cs",
        "ar" : "ar",
        "de" : "de",
        "pt" : "pt",
        "en" : "en",
        "it" : "it",
        "fr" : "fr",
        "hu" : "hu",
        "ca" : "ca",
        "nl" : "nl",
        "es" : "es",
        "tr" : "tr"
      },
      "startTime" : "startTime",
      "id" : "id",
      "name2" : {
        "cs" : "cs",
        "ar" : "ar",
        "de" : "de",
        "pt" : "pt",
        "en" : "en",
        "it" : "it",
        "fr" : "fr",
        "hu" : "hu",
        "ca" : "ca",
        "nl" : "nl",
        "es" : "es",
        "tr" : "tr"
      },
      "expirationDate" : "expirationDate",
      "bluetoothPreparationRibbonEndTime" : "bluetoothPreparationRibbonEndTime",
      "group" : {
        "image" : {
          "cs" : "cs",
          "ar" : "ar",
          "de" : "de",
          "pt" : "pt",
          "en" : "en",
          "it" : "it",
          "fr" : "fr",
          "hu" : "hu",
          "ca" : "ca",
          "nl" : "nl",
          "es" : "es",
          "tr" : "tr"
        },
        "name" : {
          "cs" : "cs",
          "ar" : "ar",
          "de" : "de",
          "pt" : "pt",
          "en" : "en",
          "it" : "it",
          "fr" : "fr",
          "hu" : "hu",
          "ca" : "ca",
          "nl" : "nl",
          "es" : "es",
          "tr" : "tr"
        },
        "id" : "id"
      }
    },
    "lang" : "lang",
    "mainApplicant" : false,
    "ticketId" : "ticketId",
    "ticketInjectionDate" : "2000-01-23T04:56:07.000+00:00"
  }, {
    "image" : "https://openapi-generator.tech",
    "contingent" : {
      "cs" : "cs",
      "ar" : "ar",
      "de" : "de",
      "pt" : "pt",
      "en" : "en",
      "it" : "it",
      "fr" : "fr",
      "hu" : "hu",
      "ca" : "ca",
      "nl" : "nl",
      "es" : "es",
      "tr" : "tr"
    },
    "purchaseDetails" : {
      "date" : "2000-01-23T04:56:07.000+00:00",
      "price" : 1.4658129805029452,
      "priceCategory" : "priceCategory",
      "currency" : "currency",
      "taxationNumber" : "taxationNumber"
    },
    "activationParameters" : {
      "instanceId" : "instanceId",
      "method" : "online",
      "groupId" : "groupId",
      "time" : "2000-01-23T04:56:07.000+00:00"
    },
    "ticketDetails" : {
      "hidden" : [ {
        "value" : {
          "cs" : "cs",
          "ar" : "ar",
          "de" : "de",
          "pt" : "pt",
          "en" : "en",
          "it" : "it",
          "fr" : "fr",
          "hu" : "hu",
          "ca" : "ca",
          "nl" : "nl",
          "es" : "es",
          "tr" : "tr"
        },
        "key" : "key"
      }, {
        "value" : {
          "cs" : "cs",
          "ar" : "ar",
          "de" : "de",
          "pt" : "pt",
          "en" : "en",
          "it" : "it",
          "fr" : "fr",
          "hu" : "hu",
          "ca" : "ca",
          "nl" : "nl",
          "es" : "es",
          "tr" : "tr"
        },
        "key" : "key"
      }, {
        "value" : {
          "cs" : "cs",
          "ar" : "ar",
          "de" : "de",
          "pt" : "pt",
          "en" : "en",
          "it" : "it",
          "fr" : "fr",
          "hu" : "hu",
          "ca" : "ca",
          "nl" : "nl",
          "es" : "es",
          "tr" : "tr"
        },
        "key" : "key"
      }, {
        "value" : {
          "cs" : "cs",
          "ar" : "ar",
          "de" : "de",
          "pt" : "pt",
          "en" : "en",
          "it" : "it",
          "fr" : "fr",
          "hu" : "hu",
          "ca" : "ca",
          "nl" : "nl",
          "es" : "es",
          "tr" : "tr"
        },
        "key" : "key"
      }, {
        "value" : {
          "cs" : "cs",
          "ar" : "ar",
          "de" : "de",
          "pt" : "pt",
          "en" : "en",
          "it" : "it",
          "fr" : "fr",
          "hu" : "hu",
          "ca" : "ca",
          "nl" : "nl",
          "es" : "es",
          "tr" : "tr"
        },
        "key" : "key"
      } ],
      "extra" : [ {
        "value" : {
          "cs" : "cs",
          "ar" : "ar",
          "de" : "de",
          "pt" : "pt",
          "en" : "en",
          "it" : "it",
          "fr" : "fr",
          "hu" : "hu",
          "ca" : "ca",
          "nl" : "nl",
          "es" : "es",
          "tr" : "tr"
        },
        "key" : "key"
      }, {
        "value" : {
          "cs" : "cs",
          "ar" : "ar",
          "de" : "de",
          "pt" : "pt",
          "en" : "en",
          "it" : "it",
          "fr" : "fr",
          "hu" : "hu",
          "ca" : "ca",
          "nl" : "nl",
          "es" : "es",
          "tr" : "tr"
        },
        "key" : "key"
      }, {
        "value" : {
          "cs" : "cs",
          "ar" : "ar",
          "de" : "de",
          "pt" : "pt",
          "en" : "en",
          "it" : "it",
          "fr" : "fr",
          "hu" : "hu",
          "ca" : "ca",
          "nl" : "nl",
          "es" : "es",
          "tr" : "tr"
        },
        "key" : "key"
      }, {
        "value" : {
          "cs" : "cs",
          "ar" : "ar",
          "de" : "de",
          "pt" : "pt",
          "en" : "en",
          "it" : "it",
          "fr" : "fr",
          "hu" : "hu",
          "ca" : "ca",
          "nl" : "nl",
          "es" : "es",
          "tr" : "tr"
        },
        "key" : "key"
      }, {
        "value" : {
          "cs" : "cs",
          "ar" : "ar",
          "de" : "de",
          "pt" : "pt",
          "en" : "en",
          "it" : "it",
          "fr" : "fr",
          "hu" : "hu",
          "ca" : "ca",
          "nl" : "nl",
          "es" : "es",
          "tr" : "tr"
        },
        "key" : "key"
      } ],
      "main" : [ {
        "value" : {
          "cs" : "cs",
          "ar" : "ar",
          "de" : "de",
          "pt" : "pt",
          "en" : "en",
          "it" : "it",
          "fr" : "fr",
          "hu" : "hu",
          "ca" : "ca",
          "nl" : "nl",
          "es" : "es",
          "tr" : "tr"
        },
        "key" : "key"
      }, {
        "value" : {
          "cs" : "cs",
          "ar" : "ar",
          "de" : "de",
          "pt" : "pt",
          "en" : "en",
          "it" : "it",
          "fr" : "fr",
          "hu" : "hu",
          "ca" : "ca",
          "nl" : "nl",
          "es" : "es",
          "tr" : "tr"
        },
        "key" : "key"
      }, {
        "value" : {
          "cs" : "cs",
          "ar" : "ar",
          "de" : "de",
          "pt" : "pt",
          "en" : "en",
          "it" : "it",
          "fr" : "fr",
          "hu" : "hu",
          "ca" : "ca",
          "nl" : "nl",
          "es" : "es",
          "tr" : "tr"
        },
        "key" : "key"
      }, {
        "value" : {
          "cs" : "cs",
          "ar" : "ar",
          "de" : "de",
          "pt" : "pt",
          "en" : "en",
          "it" : "it",
          "fr" : "fr",
          "hu" : "hu",
          "ca" : "ca",
          "nl" : "nl",
          "es" : "es",
          "tr" : "tr"
        },
        "key" : "key"
      }, {
        "value" : {
          "cs" : "cs",
          "ar" : "ar",
          "de" : "de",
          "pt" : "pt",
          "en" : "en",
          "it" : "it",
          "fr" : "fr",
          "hu" : "hu",
          "ca" : "ca",
          "nl" : "nl",
          "es" : "es",
          "tr" : "tr"
        },
        "key" : "key"
      } ]
    },
    "proofOfIdentity" : {
      "publicKey" : "publicKey",
      "signedMessage" : "signedMessage"
    },
    "spectatorDetails" : {
      "residenceCountry" : "residenceCountry",
      "lastName" : "lastName",
      "preferredLanguage" : "preferredLanguage",
      "gender" : "gender",
      "spectatorUsedDevices" : [ {
        "appVersion" : "appVersion",
        "lastActiveTime" : "2000-01-23T04:56:07.000+00:00",
        "os" : "os",
        "osVersion" : "osVersion",
        "deviceId" : "deviceId",
        "deviceName" : "deviceName"
      }, {
        "appVersion" : "appVersion",
        "lastActiveTime" : "2000-01-23T04:56:07.000+00:00",
        "os" : "os",
        "osVersion" : "osVersion",
        "deviceId" : "deviceId",
        "deviceName" : "deviceName"
      } ],
      "extraInfo1" : "extraInfo1",
      "spectatorId" : "spectatorId",
      "extraInfo4" : "extraInfo4",
      "firstLoginDate" : "2000-01-23T04:56:07.000+00:00",
      "extraInfo2" : "extraInfo2",
      "extraInfo3" : "extraInfo3",
      "spectatorStatus" : "activated",
      "mobileAppId" : "mobileAppId",
      "isLocked" : true,
      "organizerSpectatorPreference" : {
        "allowPromoEmail" : true,
        "allowPromoThirdPartyEmail" : true,
        "allowTracking" : true
      },
      "registeredDevices" : 2,
      "email" : "email",
      "passportNumber" : "passportNumber",
      "lastActiveTime" : "lastActiveTime",
      "dateOfBirth" : "2000-01-23",
      "firstName" : "firstName",
      "phoneNumber" : "phoneNumber",
      "createdDate" : "createdDate",
      "nationality" : "nationality",
      "activeSessions" : 5,
      "pinCode" : "pinCode",
      "idCardNumber" : "idCardNumber",
      "ticketHolder" : {
        "reason" : "reason",
        "identity" : {
          "passportNumber" : "passportNumber",
          "residenceCountry" : "residenceCountry",
          "lastName" : "lastName",
          "address" : {
            "zip" : "zip",
            "city" : "city",
            "countryCode" : "countryCode",
            "line3" : "line3",
            "line2" : "line2",
            "line1" : "line1"
          },
          "gender" : "m",
          "extraInfo1" : "extraInfo1",
          "dateOfBirth" : "2000-01-23",
          "birthCity" : "birthCity",
          "extraInfo4" : "extraInfo4",
          "extraInfo2" : "extraInfo2",
          "extraInfo3" : "extraInfo3",
          "firstName" : "firstName",
          "face" : "face",
          "phoneNumber" : "phoneNumber",
          "nationality" : "nationality",
          "idCardNumber" : "idCardNumber",
          "birthCountry" : "birthCountry",
          "email" : "email"
        }
      },
      "appLanguage" : "appLanguage"
    },
    "security" : {
      "clearanceLevel" : 5,
      "barcode" : "barcode"
    },
    "transferRules" : {
      "maxNumberOfTransferPerTicketInGroupId" : 3,
      "allowReturnToOrganizerForInitialSpectator" : false,
      "s360ExchangeForAnySpectator" : false,
      "maxNumberOfTransferPerPhoneInGroupId" : 9,
      "groupId" : "groupId",
      "allowTransferAfterActivation" : false,
      "allowTransferAfterControl" : false,
      "keepOneAtInjectInGroupId" : false,
      "keepOneInGroupId" : false,
      "assignTransferLimit" : 2,
      "allowTransferAfterActivationByBT" : true,
      "allowTransferMainApplicant" : false,
      "allowTransfer" : true,
      "s360ExchangeForInitialSpectator" : false,
      "transferLevel" : 4,
      "allowReturnToOrganizer" : false,
      "maxNumberOfTicketPerPhoneInGroupId" : 7
    },
    "privilegeInstanceId" : "privilegeInstanceId",
    "sortingKey" : "sortingKey",
    "design" : {
      "backgroundColor" : "backgroundColor",
      "secureColor" : "secureColor",
      "secureImage" : "secureImage",
      "id" : "id"
    },
    "event" : {
      "website" : {
        "cs" : "cs",
        "ar" : "ar",
        "de" : "de",
        "pt" : "pt",
        "en" : "en",
        "it" : "it",
        "fr" : "fr",
        "hu" : "hu",
        "ca" : "ca",
        "nl" : "nl",
        "es" : "es",
        "tr" : "tr"
      },
      "metadata" : [ {
        "value" : "value",
        "key" : "key"
      }, {
        "value" : "value",
        "key" : "key"
      }, {
        "value" : "value",
        "key" : "key"
      }, {
        "value" : "value",
        "key" : "key"
      }, {
        "value" : "value",
        "key" : "key"
      } ],
      "address" : {
        "zip" : "zip",
        "site" : {
          "cs" : "cs",
          "ar" : "ar",
          "de" : "de",
          "pt" : "pt",
          "en" : "en",
          "it" : "it",
          "fr" : "fr",
          "hu" : "hu",
          "ca" : "ca",
          "nl" : "nl",
          "es" : "es",
          "tr" : "tr"
        },
        "city" : {
          "cs" : "cs",
          "ar" : "ar",
          "de" : "de",
          "pt" : "pt",
          "en" : "en",
          "it" : "it",
          "fr" : "fr",
          "hu" : "hu",
          "ca" : "ca",
          "nl" : "nl",
          "es" : "es",
          "tr" : "tr"
        },
        "countryCode" : "countryCode",
        "latitude" : 6.027456183070403,
        "line3" : {
          "cs" : "cs",
          "ar" : "ar",
          "de" : "de",
          "pt" : "pt",
          "en" : "en",
          "it" : "it",
          "fr" : "fr",
          "hu" : "hu",
          "ca" : "ca",
          "nl" : "nl",
          "es" : "es",
          "tr" : "tr"
        },
        "region" : "region",
        "line2" : {
          "cs" : "cs",
          "ar" : "ar",
          "de" : "de",
          "pt" : "pt",
          "en" : "en",
          "it" : "it",
          "fr" : "fr",
          "hu" : "hu",
          "ca" : "ca",
          "nl" : "nl",
          "es" : "es",
          "tr" : "tr"
        },
        "line1" : {
          "cs" : "cs",
          "ar" : "ar",
          "de" : "de",
          "pt" : "pt",
          "en" : "en",
          "it" : "it",
          "fr" : "fr",
          "hu" : "hu",
          "ca" : "ca",
          "nl" : "nl",
          "es" : "es",
          "tr" : "tr"
        },
        "longitude" : 0.8008281904610115
      },
      "bluetoothPreparationRibbonDisplayTime" : "bluetoothPreparationRibbonDisplayTime",
      "name" : {
        "cs" : "cs",
        "ar" : "ar",
        "de" : "de",
        "pt" : "pt",
        "en" : "en",
        "it" : "it",
        "fr" : "fr",
        "hu" : "hu",
        "ca" : "ca",
        "nl" : "nl",
        "es" : "es",
        "tr" : "tr"
      },
      "startTime" : "startTime",
      "id" : "id",
      "name2" : {
        "cs" : "cs",
        "ar" : "ar",
        "de" : "de",
        "pt" : "pt",
        "en" : "en",
        "it" : "it",
        "fr" : "fr",
        "hu" : "hu",
        "ca" : "ca",
        "nl" : "nl",
        "es" : "es",
        "tr" : "tr"
      },
      "expirationDate" : "expirationDate",
      "bluetoothPreparationRibbonEndTime" : "bluetoothPreparationRibbonEndTime",
      "group" : {
        "image" : {
          "cs" : "cs",
          "ar" : "ar",
          "de" : "de",
          "pt" : "pt",
          "en" : "en",
          "it" : "it",
          "fr" : "fr",
          "hu" : "hu",
          "ca" : "ca",
          "nl" : "nl",
          "es" : "es",
          "tr" : "tr"
        },
        "name" : {
          "cs" : "cs",
          "ar" : "ar",
          "de" : "de",
          "pt" : "pt",
          "en" : "en",
          "it" : "it",
          "fr" : "fr",
          "hu" : "hu",
          "ca" : "ca",
          "nl" : "nl",
          "es" : "es",
          "tr" : "tr"
        },
        "id" : "id"
      }
    },
    "lang" : "lang",
    "mainApplicant" : false,
    "ticketId" : "ticketId",
    "ticketInjectionDate" : "2000-01-23T04:56:07.000+00:00"
  }, {
    "image" : "https://openapi-generator.tech",
    "contingent" : {
      "cs" : "cs",
      "ar" : "ar",
      "de" : "de",
      "pt" : "pt",
      "en" : "en",
      "it" : "it",
      "fr" : "fr",
      "hu" : "hu",
      "ca" : "ca",
      "nl" : "nl",
      "es" : "es",
      "tr" : "tr"
    },
    "purchaseDetails" : {
      "date" : "2000-01-23T04:56:07.000+00:00",
      "price" : 1.4658129805029452,
      "priceCategory" : "priceCategory",
      "currency" : "currency",
      "taxationNumber" : "taxationNumber"
    },
    "activationParameters" : {
      "instanceId" : "instanceId",
      "method" : "online",
      "groupId" : "groupId",
      "time" : "2000-01-23T04:56:07.000+00:00"
    },
    "ticketDetails" : {
      "hidden" : [ {
        "value" : {
          "cs" : "cs",
          "ar" : "ar",
          "de" : "de",
          "pt" : "pt",
          "en" : "en",
          "it" : "it",
          "fr" : "fr",
          "hu" : "hu",
          "ca" : "ca",
          "nl" : "nl",
          "es" : "es",
          "tr" : "tr"
        },
        "key" : "key"
      }, {
        "value" : {
          "cs" : "cs",
          "ar" : "ar",
          "de" : "de",
          "pt" : "pt",
          "en" : "en",
          "it" : "it",
          "fr" : "fr",
          "hu" : "hu",
          "ca" : "ca",
          "nl" : "nl",
          "es" : "es",
          "tr" : "tr"
        },
        "key" : "key"
      }, {
        "value" : {
          "cs" : "cs",
          "ar" : "ar",
          "de" : "de",
          "pt" : "pt",
          "en" : "en",
          "it" : "it",
          "fr" : "fr",
          "hu" : "hu",
          "ca" : "ca",
          "nl" : "nl",
          "es" : "es",
          "tr" : "tr"
        },
        "key" : "key"
      }, {
        "value" : {
          "cs" : "cs",
          "ar" : "ar",
          "de" : "de",
          "pt" : "pt",
          "en" : "en",
          "it" : "it",
          "fr" : "fr",
          "hu" : "hu",
          "ca" : "ca",
          "nl" : "nl",
          "es" : "es",
          "tr" : "tr"
        },
        "key" : "key"
      }, {
        "value" : {
          "cs" : "cs",
          "ar" : "ar",
          "de" : "de",
          "pt" : "pt",
          "en" : "en",
          "it" : "it",
          "fr" : "fr",
          "hu" : "hu",
          "ca" : "ca",
          "nl" : "nl",
          "es" : "es",
          "tr" : "tr"
        },
        "key" : "key"
      } ],
      "extra" : [ {
        "value" : {
          "cs" : "cs",
          "ar" : "ar",
          "de" : "de",
          "pt" : "pt",
          "en" : "en",
          "it" : "it",
          "fr" : "fr",
          "hu" : "hu",
          "ca" : "ca",
          "nl" : "nl",
          "es" : "es",
          "tr" : "tr"
        },
        "key" : "key"
      }, {
        "value" : {
          "cs" : "cs",
          "ar" : "ar",
          "de" : "de",
          "pt" : "pt",
          "en" : "en",
          "it" : "it",
          "fr" : "fr",
          "hu" : "hu",
          "ca" : "ca",
          "nl" : "nl",
          "es" : "es",
          "tr" : "tr"
        },
        "key" : "key"
      }, {
        "value" : {
          "cs" : "cs",
          "ar" : "ar",
          "de" : "de",
          "pt" : "pt",
          "en" : "en",
          "it" : "it",
          "fr" : "fr",
          "hu" : "hu",
          "ca" : "ca",
          "nl" : "nl",
          "es" : "es",
          "tr" : "tr"
        },
        "key" : "key"
      }, {
        "value" : {
          "cs" : "cs",
          "ar" : "ar",
          "de" : "de",
          "pt" : "pt",
          "en" : "en",
          "it" : "it",
          "fr" : "fr",
          "hu" : "hu",
          "ca" : "ca",
          "nl" : "nl",
          "es" : "es",
          "tr" : "tr"
        },
        "key" : "key"
      }, {
        "value" : {
          "cs" : "cs",
          "ar" : "ar",
          "de" : "de",
          "pt" : "pt",
          "en" : "en",
          "it" : "it",
          "fr" : "fr",
          "hu" : "hu",
          "ca" : "ca",
          "nl" : "nl",
          "es" : "es",
          "tr" : "tr"
        },
        "key" : "key"
      } ],
      "main" : [ {
        "value" : {
          "cs" : "cs",
          "ar" : "ar",
          "de" : "de",
          "pt" : "pt",
          "en" : "en",
          "it" : "it",
          "fr" : "fr",
          "hu" : "hu",
          "ca" : "ca",
          "nl" : "nl",
          "es" : "es",
          "tr" : "tr"
        },
        "key" : "key"
      }, {
        "value" : {
          "cs" : "cs",
          "ar" : "ar",
          "de" : "de",
          "pt" : "pt",
          "en" : "en",
          "it" : "it",
          "fr" : "fr",
          "hu" : "hu",
          "ca" : "ca",
          "nl" : "nl",
          "es" : "es",
          "tr" : "tr"
        },
        "key" : "key"
      }, {
        "value" : {
          "cs" : "cs",
          "ar" : "ar",
          "de" : "de",
          "pt" : "pt",
          "en" : "en",
          "it" : "it",
          "fr" : "fr",
          "hu" : "hu",
          "ca" : "ca",
          "nl" : "nl",
          "es" : "es",
          "tr" : "tr"
        },
        "key" : "key"
      }, {
        "value" : {
          "cs" : "cs",
          "ar" : "ar",
          "de" : "de",
          "pt" : "pt",
          "en" : "en",
          "it" : "it",
          "fr" : "fr",
          "hu" : "hu",
          "ca" : "ca",
          "nl" : "nl",
          "es" : "es",
          "tr" : "tr"
        },
        "key" : "key"
      }, {
        "value" : {
          "cs" : "cs",
          "ar" : "ar",
          "de" : "de",
          "pt" : "pt",
          "en" : "en",
          "it" : "it",
          "fr" : "fr",
          "hu" : "hu",
          "ca" : "ca",
          "nl" : "nl",
          "es" : "es",
          "tr" : "tr"
        },
        "key" : "key"
      } ]
    },
    "proofOfIdentity" : {
      "publicKey" : "publicKey",
      "signedMessage" : "signedMessage"
    },
    "spectatorDetails" : {
      "residenceCountry" : "residenceCountry",
      "lastName" : "lastName",
      "preferredLanguage" : "preferredLanguage",
      "gender" : "gender",
      "spectatorUsedDevices" : [ {
        "appVersion" : "appVersion",
        "lastActiveTime" : "2000-01-23T04:56:07.000+00:00",
        "os" : "os",
        "osVersion" : "osVersion",
        "deviceId" : "deviceId",
        "deviceName" : "deviceName"
      }, {
        "appVersion" : "appVersion",
        "lastActiveTime" : "2000-01-23T04:56:07.000+00:00",
        "os" : "os",
        "osVersion" : "osVersion",
        "deviceId" : "deviceId",
        "deviceName" : "deviceName"
      } ],
      "extraInfo1" : "extraInfo1",
      "spectatorId" : "spectatorId",
      "extraInfo4" : "extraInfo4",
      "firstLoginDate" : "2000-01-23T04:56:07.000+00:00",
      "extraInfo2" : "extraInfo2",
      "extraInfo3" : "extraInfo3",
      "spectatorStatus" : "activated",
      "mobileAppId" : "mobileAppId",
      "isLocked" : true,
      "organizerSpectatorPreference" : {
        "allowPromoEmail" : true,
        "allowPromoThirdPartyEmail" : true,
        "allowTracking" : true
      },
      "registeredDevices" : 2,
      "email" : "email",
      "passportNumber" : "passportNumber",
      "lastActiveTime" : "lastActiveTime",
      "dateOfBirth" : "2000-01-23",
      "firstName" : "firstName",
      "phoneNumber" : "phoneNumber",
      "createdDate" : "createdDate",
      "nationality" : "nationality",
      "activeSessions" : 5,
      "pinCode" : "pinCode",
      "idCardNumber" : "idCardNumber",
      "ticketHolder" : {
        "reason" : "reason",
        "identity" : {
          "passportNumber" : "passportNumber",
          "residenceCountry" : "residenceCountry",
          "lastName" : "lastName",
          "address" : {
            "zip" : "zip",
            "city" : "city",
            "countryCode" : "countryCode",
            "line3" : "line3",
            "line2" : "line2",
            "line1" : "line1"
          },
          "gender" : "m",
          "extraInfo1" : "extraInfo1",
          "dateOfBirth" : "2000-01-23",
          "birthCity" : "birthCity",
          "extraInfo4" : "extraInfo4",
          "extraInfo2" : "extraInfo2",
          "extraInfo3" : "extraInfo3",
          "firstName" : "firstName",
          "face" : "face",
          "phoneNumber" : "phoneNumber",
          "nationality" : "nationality",
          "idCardNumber" : "idCardNumber",
          "birthCountry" : "birthCountry",
          "email" : "email"
        }
      },
      "appLanguage" : "appLanguage"
    },
    "security" : {
      "clearanceLevel" : 5,
      "barcode" : "barcode"
    },
    "transferRules" : {
      "maxNumberOfTransferPerTicketInGroupId" : 3,
      "allowReturnToOrganizerForInitialSpectator" : false,
      "s360ExchangeForAnySpectator" : false,
      "maxNumberOfTransferPerPhoneInGroupId" : 9,
      "groupId" : "groupId",
      "allowTransferAfterActivation" : false,
      "allowTransferAfterControl" : false,
      "keepOneAtInjectInGroupId" : false,
      "keepOneInGroupId" : false,
      "assignTransferLimit" : 2,
      "allowTransferAfterActivationByBT" : true,
      "allowTransferMainApplicant" : false,
      "allowTransfer" : true,
      "s360ExchangeForInitialSpectator" : false,
      "transferLevel" : 4,
      "allowReturnToOrganizer" : false,
      "maxNumberOfTicketPerPhoneInGroupId" : 7
    },
    "privilegeInstanceId" : "privilegeInstanceId",
    "sortingKey" : "sortingKey",
    "design" : {
      "backgroundColor" : "backgroundColor",
      "secureColor" : "secureColor",
      "secureImage" : "secureImage",
      "id" : "id"
    },
    "event" : {
      "website" : {
        "cs" : "cs",
        "ar" : "ar",
        "de" : "de",
        "pt" : "pt",
        "en" : "en",
        "it" : "it",
        "fr" : "fr",
        "hu" : "hu",
        "ca" : "ca",
        "nl" : "nl",
        "es" : "es",
        "tr" : "tr"
      },
      "metadata" : [ {
        "value" : "value",
        "key" : "key"
      }, {
        "value" : "value",
        "key" : "key"
      }, {
        "value" : "value",
        "key" : "key"
      }, {
        "value" : "value",
        "key" : "key"
      }, {
        "value" : "value",
        "key" : "key"
      } ],
      "address" : {
        "zip" : "zip",
        "site" : {
          "cs" : "cs",
          "ar" : "ar",
          "de" : "de",
          "pt" : "pt",
          "en" : "en",
          "it" : "it",
          "fr" : "fr",
          "hu" : "hu",
          "ca" : "ca",
          "nl" : "nl",
          "es" : "es",
          "tr" : "tr"
        },
        "city" : {
          "cs" : "cs",
          "ar" : "ar",
          "de" : "de",
          "pt" : "pt",
          "en" : "en",
          "it" : "it",
          "fr" : "fr",
          "hu" : "hu",
          "ca" : "ca",
          "nl" : "nl",
          "es" : "es",
          "tr" : "tr"
        },
        "countryCode" : "countryCode",
        "latitude" : 6.027456183070403,
        "line3" : {
          "cs" : "cs",
          "ar" : "ar",
          "de" : "de",
          "pt" : "pt",
          "en" : "en",
          "it" : "it",
          "fr" : "fr",
          "hu" : "hu",
          "ca" : "ca",
          "nl" : "nl",
          "es" : "es",
          "tr" : "tr"
        },
        "region" : "region",
        "line2" : {
          "cs" : "cs",
          "ar" : "ar",
          "de" : "de",
          "pt" : "pt",
          "en" : "en",
          "it" : "it",
          "fr" : "fr",
          "hu" : "hu",
          "ca" : "ca",
          "nl" : "nl",
          "es" : "es",
          "tr" : "tr"
        },
        "line1" : {
          "cs" : "cs",
          "ar" : "ar",
          "de" : "de",
          "pt" : "pt",
          "en" : "en",
          "it" : "it",
          "fr" : "fr",
          "hu" : "hu",
          "ca" : "ca",
          "nl" : "nl",
          "es" : "es",
          "tr" : "tr"
        },
        "longitude" : 0.8008281904610115
      },
      "bluetoothPreparationRibbonDisplayTime" : "bluetoothPreparationRibbonDisplayTime",
      "name" : {
        "cs" : "cs",
        "ar" : "ar",
        "de" : "de",
        "pt" : "pt",
        "en" : "en",
        "it" : "it",
        "fr" : "fr",
        "hu" : "hu",
        "ca" : "ca",
        "nl" : "nl",
        "es" : "es",
        "tr" : "tr"
      },
      "startTime" : "startTime",
      "id" : "id",
      "name2" : {
        "cs" : "cs",
        "ar" : "ar",
        "de" : "de",
        "pt" : "pt",
        "en" : "en",
        "it" : "it",
        "fr" : "fr",
        "hu" : "hu",
        "ca" : "ca",
        "nl" : "nl",
        "es" : "es",
        "tr" : "tr"
      },
      "expirationDate" : "expirationDate",
      "bluetoothPreparationRibbonEndTime" : "bluetoothPreparationRibbonEndTime",
      "group" : {
        "image" : {
          "cs" : "cs",
          "ar" : "ar",
          "de" : "de",
          "pt" : "pt",
          "en" : "en",
          "it" : "it",
          "fr" : "fr",
          "hu" : "hu",
          "ca" : "ca",
          "nl" : "nl",
          "es" : "es",
          "tr" : "tr"
        },
        "name" : {
          "cs" : "cs",
          "ar" : "ar",
          "de" : "de",
          "pt" : "pt",
          "en" : "en",
          "it" : "it",
          "fr" : "fr",
          "hu" : "hu",
          "ca" : "ca",
          "nl" : "nl",
          "es" : "es",
          "tr" : "tr"
        },
        "id" : "id"
      }
    },
    "lang" : "lang",
    "mainApplicant" : false,
    "ticketId" : "ticketId",
    "ticketInjectionDate" : "2000-01-23T04:56:07.000+00:00"
  }, {
    "image" : "https://openapi-generator.tech",
    "contingent" : {
      "cs" : "cs",
      "ar" : "ar",
      "de" : "de",
      "pt" : "pt",
      "en" : "en",
      "it" : "it",
      "fr" : "fr",
      "hu" : "hu",
      "ca" : "ca",
      "nl" : "nl",
      "es" : "es",
      "tr" : "tr"
    },
    "purchaseDetails" : {
      "date" : "2000-01-23T04:56:07.000+00:00",
      "price" : 1.4658129805029452,
      "priceCategory" : "priceCategory",
      "currency" : "currency",
      "taxationNumber" : "taxationNumber"
    },
    "activationParameters" : {
      "instanceId" : "instanceId",
      "method" : "online",
      "groupId" : "groupId",
      "time" : "2000-01-23T04:56:07.000+00:00"
    },
    "ticketDetails" : {
      "hidden" : [ {
        "value" : {
          "cs" : "cs",
          "ar" : "ar",
          "de" : "de",
          "pt" : "pt",
          "en" : "en",
          "it" : "it",
          "fr" : "fr",
          "hu" : "hu",
          "ca" : "ca",
          "nl" : "nl",
          "es" : "es",
          "tr" : "tr"
        },
        "key" : "key"
      }, {
        "value" : {
          "cs" : "cs",
          "ar" : "ar",
          "de" : "de",
          "pt" : "pt",
          "en" : "en",
          "it" : "it",
          "fr" : "fr",
          "hu" : "hu",
          "ca" : "ca",
          "nl" : "nl",
          "es" : "es",
          "tr" : "tr"
        },
        "key" : "key"
      }, {
        "value" : {
          "cs" : "cs",
          "ar" : "ar",
          "de" : "de",
          "pt" : "pt",
          "en" : "en",
          "it" : "it",
          "fr" : "fr",
          "hu" : "hu",
          "ca" : "ca",
          "nl" : "nl",
          "es" : "es",
          "tr" : "tr"
        },
        "key" : "key"
      }, {
        "value" : {
          "cs" : "cs",
          "ar" : "ar",
          "de" : "de",
          "pt" : "pt",
          "en" : "en",
          "it" : "it",
          "fr" : "fr",
          "hu" : "hu",
          "ca" : "ca",
          "nl" : "nl",
          "es" : "es",
          "tr" : "tr"
        },
        "key" : "key"
      }, {
        "value" : {
          "cs" : "cs",
          "ar" : "ar",
          "de" : "de",
          "pt" : "pt",
          "en" : "en",
          "it" : "it",
          "fr" : "fr",
          "hu" : "hu",
          "ca" : "ca",
          "nl" : "nl",
          "es" : "es",
          "tr" : "tr"
        },
        "key" : "key"
      } ],
      "extra" : [ {
        "value" : {
          "cs" : "cs",
          "ar" : "ar",
          "de" : "de",
          "pt" : "pt",
          "en" : "en",
          "it" : "it",
          "fr" : "fr",
          "hu" : "hu",
          "ca" : "ca",
          "nl" : "nl",
          "es" : "es",
          "tr" : "tr"
        },
        "key" : "key"
      }, {
        "value" : {
          "cs" : "cs",
          "ar" : "ar",
          "de" : "de",
          "pt" : "pt",
          "en" : "en",
          "it" : "it",
          "fr" : "fr",
          "hu" : "hu",
          "ca" : "ca",
          "nl" : "nl",
          "es" : "es",
          "tr" : "tr"
        },
        "key" : "key"
      }, {
        "value" : {
          "cs" : "cs",
          "ar" : "ar",
          "de" : "de",
          "pt" : "pt",
          "en" : "en",
          "it" : "it",
          "fr" : "fr",
          "hu" : "hu",
          "ca" : "ca",
          "nl" : "nl",
          "es" : "es",
          "tr" : "tr"
        },
        "key" : "key"
      }, {
        "value" : {
          "cs" : "cs",
          "ar" : "ar",
          "de" : "de",
          "pt" : "pt",
          "en" : "en",
          "it" : "it",
          "fr" : "fr",
          "hu" : "hu",
          "ca" : "ca",
          "nl" : "nl",
          "es" : "es",
          "tr" : "tr"
        },
        "key" : "key"
      }, {
        "value" : {
          "cs" : "cs",
          "ar" : "ar",
          "de" : "de",
          "pt" : "pt",
          "en" : "en",
          "it" : "it",
          "fr" : "fr",
          "hu" : "hu",
          "ca" : "ca",
          "nl" : "nl",
          "es" : "es",
          "tr" : "tr"
        },
        "key" : "key"
      } ],
      "main" : [ {
        "value" : {
          "cs" : "cs",
          "ar" : "ar",
          "de" : "de",
          "pt" : "pt",
          "en" : "en",
          "it" : "it",
          "fr" : "fr",
          "hu" : "hu",
          "ca" : "ca",
          "nl" : "nl",
          "es" : "es",
          "tr" : "tr"
        },
        "key" : "key"
      }, {
        "value" : {
          "cs" : "cs",
          "ar" : "ar",
          "de" : "de",
          "pt" : "pt",
          "en" : "en",
          "it" : "it",
          "fr" : "fr",
          "hu" : "hu",
          "ca" : "ca",
          "nl" : "nl",
          "es" : "es",
          "tr" : "tr"
        },
        "key" : "key"
      }, {
        "value" : {
          "cs" : "cs",
          "ar" : "ar",
          "de" : "de",
          "pt" : "pt",
          "en" : "en",
          "it" : "it",
          "fr" : "fr",
          "hu" : "hu",
          "ca" : "ca",
          "nl" : "nl",
          "es" : "es",
          "tr" : "tr"
        },
        "key" : "key"
      }, {
        "value" : {
          "cs" : "cs",
          "ar" : "ar",
          "de" : "de",
          "pt" : "pt",
          "en" : "en",
          "it" : "it",
          "fr" : "fr",
          "hu" : "hu",
          "ca" : "ca",
          "nl" : "nl",
          "es" : "es",
          "tr" : "tr"
        },
        "key" : "key"
      }, {
        "value" : {
          "cs" : "cs",
          "ar" : "ar",
          "de" : "de",
          "pt" : "pt",
          "en" : "en",
          "it" : "it",
          "fr" : "fr",
          "hu" : "hu",
          "ca" : "ca",
          "nl" : "nl",
          "es" : "es",
          "tr" : "tr"
        },
        "key" : "key"
      } ]
    },
    "proofOfIdentity" : {
      "publicKey" : "publicKey",
      "signedMessage" : "signedMessage"
    },
    "spectatorDetails" : {
      "residenceCountry" : "residenceCountry",
      "lastName" : "lastName",
      "preferredLanguage" : "preferredLanguage",
      "gender" : "gender",
      "spectatorUsedDevices" : [ {
        "appVersion" : "appVersion",
        "lastActiveTime" : "2000-01-23T04:56:07.000+00:00",
        "os" : "os",
        "osVersion" : "osVersion",
        "deviceId" : "deviceId",
        "deviceName" : "deviceName"
      }, {
        "appVersion" : "appVersion",
        "lastActiveTime" : "2000-01-23T04:56:07.000+00:00",
        "os" : "os",
        "osVersion" : "osVersion",
        "deviceId" : "deviceId",
        "deviceName" : "deviceName"
      } ],
      "extraInfo1" : "extraInfo1",
      "spectatorId" : "spectatorId",
      "extraInfo4" : "extraInfo4",
      "firstLoginDate" : "2000-01-23T04:56:07.000+00:00",
      "extraInfo2" : "extraInfo2",
      "extraInfo3" : "extraInfo3",
      "spectatorStatus" : "activated",
      "mobileAppId" : "mobileAppId",
      "isLocked" : true,
      "organizerSpectatorPreference" : {
        "allowPromoEmail" : true,
        "allowPromoThirdPartyEmail" : true,
        "allowTracking" : true
      },
      "registeredDevices" : 2,
      "email" : "email",
      "passportNumber" : "passportNumber",
      "lastActiveTime" : "lastActiveTime",
      "dateOfBirth" : "2000-01-23",
      "firstName" : "firstName",
      "phoneNumber" : "phoneNumber",
      "createdDate" : "createdDate",
      "nationality" : "nationality",
      "activeSessions" : 5,
      "pinCode" : "pinCode",
      "idCardNumber" : "idCardNumber",
      "ticketHolder" : {
        "reason" : "reason",
        "identity" : {
          "passportNumber" : "passportNumber",
          "residenceCountry" : "residenceCountry",
          "lastName" : "lastName",
          "address" : {
            "zip" : "zip",
            "city" : "city",
            "countryCode" : "countryCode",
            "line3" : "line3",
            "line2" : "line2",
            "line1" : "line1"
          },
          "gender" : "m",
          "extraInfo1" : "extraInfo1",
          "dateOfBirth" : "2000-01-23",
          "birthCity" : "birthCity",
          "extraInfo4" : "extraInfo4",
          "extraInfo2" : "extraInfo2",
          "extraInfo3" : "extraInfo3",
          "firstName" : "firstName",
          "face" : "face",
          "phoneNumber" : "phoneNumber",
          "nationality" : "nationality",
          "idCardNumber" : "idCardNumber",
          "birthCountry" : "birthCountry",
          "email" : "email"
        }
      },
      "appLanguage" : "appLanguage"
    },
    "security" : {
      "clearanceLevel" : 5,
      "barcode" : "barcode"
    },
    "transferRules" : {
      "maxNumberOfTransferPerTicketInGroupId" : 3,
      "allowReturnToOrganizerForInitialSpectator" : false,
      "s360ExchangeForAnySpectator" : false,
      "maxNumberOfTransferPerPhoneInGroupId" : 9,
      "groupId" : "groupId",
      "allowTransferAfterActivation" : false,
      "allowTransferAfterControl" : false,
      "keepOneAtInjectInGroupId" : false,
      "keepOneInGroupId" : false,
      "assignTransferLimit" : 2,
      "allowTransferAfterActivationByBT" : true,
      "allowTransferMainApplicant" : false,
      "allowTransfer" : true,
      "s360ExchangeForInitialSpectator" : false,
      "transferLevel" : 4,
      "allowReturnToOrganizer" : false,
      "maxNumberOfTicketPerPhoneInGroupId" : 7
    },
    "privilegeInstanceId" : "privilegeInstanceId",
    "sortingKey" : "sortingKey",
    "design" : {
      "backgroundColor" : "backgroundColor",
      "secureColor" : "secureColor",
      "secureImage" : "secureImage",
      "id" : "id"
    },
    "event" : {
      "website" : {
        "cs" : "cs",
        "ar" : "ar",
        "de" : "de",
        "pt" : "pt",
        "en" : "en",
        "it" : "it",
        "fr" : "fr",
        "hu" : "hu",
        "ca" : "ca",
        "nl" : "nl",
        "es" : "es",
        "tr" : "tr"
      },
      "metadata" : [ {
        "value" : "value",
        "key" : "key"
      }, {
        "value" : "value",
        "key" : "key"
      }, {
        "value" : "value",
        "key" : "key"
      }, {
        "value" : "value",
        "key" : "key"
      }, {
        "value" : "value",
        "key" : "key"
      } ],
      "address" : {
        "zip" : "zip",
        "site" : {
          "cs" : "cs",
          "ar" : "ar",
          "de" : "de",
          "pt" : "pt",
          "en" : "en",
          "it" : "it",
          "fr" : "fr",
          "hu" : "hu",
          "ca" : "ca",
          "nl" : "nl",
          "es" : "es",
          "tr" : "tr"
        },
        "city" : {
          "cs" : "cs",
          "ar" : "ar",
          "de" : "de",
          "pt" : "pt",
          "en" : "en",
          "it" : "it",
          "fr" : "fr",
          "hu" : "hu",
          "ca" : "ca",
          "nl" : "nl",
          "es" : "es",
          "tr" : "tr"
        },
        "countryCode" : "countryCode",
        "latitude" : 6.027456183070403,
        "line3" : {
          "cs" : "cs",
          "ar" : "ar",
          "de" : "de",
          "pt" : "pt",
          "en" : "en",
          "it" : "it",
          "fr" : "fr",
          "hu" : "hu",
          "ca" : "ca",
          "nl" : "nl",
          "es" : "es",
          "tr" : "tr"
        },
        "region" : "region",
        "line2" : {
          "cs" : "cs",
          "ar" : "ar",
          "de" : "de",
          "pt" : "pt",
          "en" : "en",
          "it" : "it",
          "fr" : "fr",
          "hu" : "hu",
          "ca" : "ca",
          "nl" : "nl",
          "es" : "es",
          "tr" : "tr"
        },
        "line1" : {
          "cs" : "cs",
          "ar" : "ar",
          "de" : "de",
          "pt" : "pt",
          "en" : "en",
          "it" : "it",
          "fr" : "fr",
          "hu" : "hu",
          "ca" : "ca",
          "nl" : "nl",
          "es" : "es",
          "tr" : "tr"
        },
        "longitude" : 0.8008281904610115
      },
      "bluetoothPreparationRibbonDisplayTime" : "bluetoothPreparationRibbonDisplayTime",
      "name" : {
        "cs" : "cs",
        "ar" : "ar",
        "de" : "de",
        "pt" : "pt",
        "en" : "en",
        "it" : "it",
        "fr" : "fr",
        "hu" : "hu",
        "ca" : "ca",
        "nl" : "nl",
        "es" : "es",
        "tr" : "tr"
      },
      "startTime" : "startTime",
      "id" : "id",
      "name2" : {
        "cs" : "cs",
        "ar" : "ar",
        "de" : "de",
        "pt" : "pt",
        "en" : "en",
        "it" : "it",
        "fr" : "fr",
        "hu" : "hu",
        "ca" : "ca",
        "nl" : "nl",
        "es" : "es",
        "tr" : "tr"
      },
      "expirationDate" : "expirationDate",
      "bluetoothPreparationRibbonEndTime" : "bluetoothPreparationRibbonEndTime",
      "group" : {
        "image" : {
          "cs" : "cs",
          "ar" : "ar",
          "de" : "de",
          "pt" : "pt",
          "en" : "en",
          "it" : "it",
          "fr" : "fr",
          "hu" : "hu",
          "ca" : "ca",
          "nl" : "nl",
          "es" : "es",
          "tr" : "tr"
        },
        "name" : {
          "cs" : "cs",
          "ar" : "ar",
          "de" : "de",
          "pt" : "pt",
          "en" : "en",
          "it" : "it",
          "fr" : "fr",
          "hu" : "hu",
          "ca" : "ca",
          "nl" : "nl",
          "es" : "es",
          "tr" : "tr"
        },
        "id" : "id"
      }
    },
    "lang" : "lang",
    "mainApplicant" : false,
    "ticketId" : "ticketId",
    "ticketInjectionDate" : "2000-01-23T04:56:07.000+00:00"
  } ],
  "mobileAppId" : "mobileAppId",
  "validate" : true
}'
import com.secutix.tixngo.v1.0.*;
import com.secutix.tixngo.v1.0.auth.*;
import com.secutix.tixngo.v1.0.model.*;
import com.secutix.tixngo.v1.0.api.DefaultApi;

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

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

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();
        OrganizerTicketsMultilingualRequest organizerTicketsMultilingualRequest = ; // OrganizerTicketsMultilingualRequest | 

        try {
            OrganizerTicketsResponse result = apiInstance.organizerTicketsMultilingualPost(organizerTicketsMultilingualRequest);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerTicketsMultilingualPost");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();

final OrganizerTicketsMultilingualRequest organizerTicketsMultilingualRequest = new OrganizerTicketsMultilingualRequest(); // OrganizerTicketsMultilingualRequest | 

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

import com.secutix.tixngo.v1.0.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        OrganizerTicketsMultilingualRequest organizerTicketsMultilingualRequest = ; // OrganizerTicketsMultilingualRequest | 

        try {
            OrganizerTicketsResponse result = apiInstance.organizerTicketsMultilingualPost(organizerTicketsMultilingualRequest);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerTicketsMultilingualPost");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];
OrganizerTicketsMultilingualRequest *organizerTicketsMultilingualRequest = ; // 

[apiInstance organizerTicketsMultilingualPostWith:organizerTicketsMultilingualRequest
              completionHandler: ^(OrganizerTicketsResponse output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var TixngoRestApiBackendOrganizerApi = require('tixngo_rest_api_backend_organizer_api');

// Create an instance of the API class
var api = new TixngoRestApiBackendOrganizerApi.DefaultApi()
var organizerTicketsMultilingualRequest = ; // {OrganizerTicketsMultilingualRequest} 

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

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

            // Create an instance of the API class
            var apiInstance = new DefaultApi();
            var organizerTicketsMultilingualRequest = new OrganizerTicketsMultilingualRequest(); // OrganizerTicketsMultilingualRequest | 

            try {
                OrganizerTicketsResponse result = apiInstance.organizerTicketsMultilingualPost(organizerTicketsMultilingualRequest);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerTicketsMultilingualPost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();
$organizerTicketsMultilingualRequest = ; // OrganizerTicketsMultilingualRequest | 

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

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DefaultApi->new();
my $organizerTicketsMultilingualRequest = WWW::OPenAPIClient::Object::OrganizerTicketsMultilingualRequest->new(); # OrganizerTicketsMultilingualRequest | 

eval {
    my $result = $api_instance->organizerTicketsMultilingualPost(organizerTicketsMultilingualRequest => $organizerTicketsMultilingualRequest);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerTicketsMultilingualPost: $@\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.DefaultApi()
organizerTicketsMultilingualRequest =  # OrganizerTicketsMultilingualRequest | 

try:
    api_response = api_instance.organizer_tickets_multilingual_post(organizerTicketsMultilingualRequest)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerTicketsMultilingualPost: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let organizerTicketsMultilingualRequest = ; // OrganizerTicketsMultilingualRequest

    let mut context = DefaultApi::Context::default();
    let result = client.organizerTicketsMultilingualPost(organizerTicketsMultilingualRequest, &context).wait();

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

Scopes

Parameters

Body parameters
Name Description
organizerTicketsMultilingualRequest *

Responses


organizerTicketsPatch

Allow organizers to modify tickets with the same body used for the post. Note that all fields are not updatable and that coherence between tickets will not be guaranteed


/organizer/tickets

Usage and SDK Samples

curl -X PATCH \
 -H "Content-Type: application/json" \
 "https://api.tixngo.io/prod/v1.0/organizer/tickets?mustNotifySpectator=true" \
 -d '{
  "tickets" : [ {
    "ticketImageUrl" : "ticketImageUrl",
    "security" : {
      "clearanceLevel" : 5,
      "barcode" : "barcode"
    },
    "transferRules" : {
      "maxNumberOfTransferPerTicketInGroupId" : 3,
      "allowReturnToOrganizerForInitialSpectator" : false,
      "s360ExchangeForAnySpectator" : false,
      "maxNumberOfTransferPerPhoneInGroupId" : 9,
      "groupId" : "groupId",
      "allowTransferAfterActivation" : false,
      "allowTransferAfterControl" : false,
      "keepOneAtInjectInGroupId" : false,
      "keepOneInGroupId" : false,
      "assignTransferLimit" : 2,
      "allowTransferAfterActivationByBT" : true,
      "allowTransferMainApplicant" : false,
      "allowTransfer" : true,
      "s360ExchangeForInitialSpectator" : false,
      "transferLevel" : 4,
      "allowReturnToOrganizer" : false,
      "maxNumberOfTicketPerPhoneInGroupId" : 7
    },
    "sortingKey" : "sortingKey",
    "designId" : "designId",
    "controlledDate" : "2000-01-23T04:56:07.000+00:00",
    "event" : {
      "website" : "http://example.com/aeiou",
      "metadata" : [ {
        "value" : "value",
        "key" : "key"
      }, {
        "value" : "value",
        "key" : "key"
      }, {
        "value" : "value",
        "key" : "key"
      }, {
        "value" : "value",
        "key" : "key"
      }, {
        "value" : "value",
        "key" : "key"
      } ],
      "address" : {
        "zip" : "zip",
        "site" : "site",
        "city" : "city",
        "countryCode" : "countryCode",
        "latitude" : 6.027456183070403,
        "line3" : "line3",
        "region" : "region",
        "line2" : "line2",
        "line1" : "line1",
        "longitude" : 0.8008281904610115
      },
      "bluetoothPreparationRibbonDisplayTime" : "bluetoothPreparationRibbonDisplayTime",
      "name" : "name",
      "startTime" : "startTime",
      "id" : "id",
      "name2" : "name2",
      "expirationDate" : "expirationDate",
      "bluetoothPreparationRibbonEndTime" : "bluetoothPreparationRibbonEndTime",
      "group" : {
        "image" : "image",
        "name" : "name",
        "id" : "id"
      }
    },
    "lang" : "lang",
    "ticketId" : "ticketId",
    "activationParameters" : {
      "method" : "online",
      "time" : "2000-01-23T04:56:07.000+00:00"
    },
    "ticketDetails" : {
      "hidden" : [ {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      }, {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      }, {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      }, {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      }, {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      } ],
      "extra" : [ {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      }, {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      }, {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      }, {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      }, {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      } ],
      "main" : [ {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      }, {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      }, {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      }, {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      }, {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      } ]
    },
    "status" : "controlled"
  }, {
    "ticketImageUrl" : "ticketImageUrl",
    "security" : {
      "clearanceLevel" : 5,
      "barcode" : "barcode"
    },
    "transferRules" : {
      "maxNumberOfTransferPerTicketInGroupId" : 3,
      "allowReturnToOrganizerForInitialSpectator" : false,
      "s360ExchangeForAnySpectator" : false,
      "maxNumberOfTransferPerPhoneInGroupId" : 9,
      "groupId" : "groupId",
      "allowTransferAfterActivation" : false,
      "allowTransferAfterControl" : false,
      "keepOneAtInjectInGroupId" : false,
      "keepOneInGroupId" : false,
      "assignTransferLimit" : 2,
      "allowTransferAfterActivationByBT" : true,
      "allowTransferMainApplicant" : false,
      "allowTransfer" : true,
      "s360ExchangeForInitialSpectator" : false,
      "transferLevel" : 4,
      "allowReturnToOrganizer" : false,
      "maxNumberOfTicketPerPhoneInGroupId" : 7
    },
    "sortingKey" : "sortingKey",
    "designId" : "designId",
    "controlledDate" : "2000-01-23T04:56:07.000+00:00",
    "event" : {
      "website" : "http://example.com/aeiou",
      "metadata" : [ {
        "value" : "value",
        "key" : "key"
      }, {
        "value" : "value",
        "key" : "key"
      }, {
        "value" : "value",
        "key" : "key"
      }, {
        "value" : "value",
        "key" : "key"
      }, {
        "value" : "value",
        "key" : "key"
      } ],
      "address" : {
        "zip" : "zip",
        "site" : "site",
        "city" : "city",
        "countryCode" : "countryCode",
        "latitude" : 6.027456183070403,
        "line3" : "line3",
        "region" : "region",
        "line2" : "line2",
        "line1" : "line1",
        "longitude" : 0.8008281904610115
      },
      "bluetoothPreparationRibbonDisplayTime" : "bluetoothPreparationRibbonDisplayTime",
      "name" : "name",
      "startTime" : "startTime",
      "id" : "id",
      "name2" : "name2",
      "expirationDate" : "expirationDate",
      "bluetoothPreparationRibbonEndTime" : "bluetoothPreparationRibbonEndTime",
      "group" : {
        "image" : "image",
        "name" : "name",
        "id" : "id"
      }
    },
    "lang" : "lang",
    "ticketId" : "ticketId",
    "activationParameters" : {
      "method" : "online",
      "time" : "2000-01-23T04:56:07.000+00:00"
    },
    "ticketDetails" : {
      "hidden" : [ {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      }, {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      }, {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      }, {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      }, {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      } ],
      "extra" : [ {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      }, {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      }, {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      }, {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      }, {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      } ],
      "main" : [ {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      }, {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      }, {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      }, {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      }, {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      } ]
    },
    "status" : "controlled"
  }, {
    "ticketImageUrl" : "ticketImageUrl",
    "security" : {
      "clearanceLevel" : 5,
      "barcode" : "barcode"
    },
    "transferRules" : {
      "maxNumberOfTransferPerTicketInGroupId" : 3,
      "allowReturnToOrganizerForInitialSpectator" : false,
      "s360ExchangeForAnySpectator" : false,
      "maxNumberOfTransferPerPhoneInGroupId" : 9,
      "groupId" : "groupId",
      "allowTransferAfterActivation" : false,
      "allowTransferAfterControl" : false,
      "keepOneAtInjectInGroupId" : false,
      "keepOneInGroupId" : false,
      "assignTransferLimit" : 2,
      "allowTransferAfterActivationByBT" : true,
      "allowTransferMainApplicant" : false,
      "allowTransfer" : true,
      "s360ExchangeForInitialSpectator" : false,
      "transferLevel" : 4,
      "allowReturnToOrganizer" : false,
      "maxNumberOfTicketPerPhoneInGroupId" : 7
    },
    "sortingKey" : "sortingKey",
    "designId" : "designId",
    "controlledDate" : "2000-01-23T04:56:07.000+00:00",
    "event" : {
      "website" : "http://example.com/aeiou",
      "metadata" : [ {
        "value" : "value",
        "key" : "key"
      }, {
        "value" : "value",
        "key" : "key"
      }, {
        "value" : "value",
        "key" : "key"
      }, {
        "value" : "value",
        "key" : "key"
      }, {
        "value" : "value",
        "key" : "key"
      } ],
      "address" : {
        "zip" : "zip",
        "site" : "site",
        "city" : "city",
        "countryCode" : "countryCode",
        "latitude" : 6.027456183070403,
        "line3" : "line3",
        "region" : "region",
        "line2" : "line2",
        "line1" : "line1",
        "longitude" : 0.8008281904610115
      },
      "bluetoothPreparationRibbonDisplayTime" : "bluetoothPreparationRibbonDisplayTime",
      "name" : "name",
      "startTime" : "startTime",
      "id" : "id",
      "name2" : "name2",
      "expirationDate" : "expirationDate",
      "bluetoothPreparationRibbonEndTime" : "bluetoothPreparationRibbonEndTime",
      "group" : {
        "image" : "image",
        "name" : "name",
        "id" : "id"
      }
    },
    "lang" : "lang",
    "ticketId" : "ticketId",
    "activationParameters" : {
      "method" : "online",
      "time" : "2000-01-23T04:56:07.000+00:00"
    },
    "ticketDetails" : {
      "hidden" : [ {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      }, {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      }, {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      }, {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      }, {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      } ],
      "extra" : [ {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      }, {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      }, {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      }, {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      }, {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      } ],
      "main" : [ {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      }, {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      }, {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      }, {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      }, {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      } ]
    },
    "status" : "controlled"
  }, {
    "ticketImageUrl" : "ticketImageUrl",
    "security" : {
      "clearanceLevel" : 5,
      "barcode" : "barcode"
    },
    "transferRules" : {
      "maxNumberOfTransferPerTicketInGroupId" : 3,
      "allowReturnToOrganizerForInitialSpectator" : false,
      "s360ExchangeForAnySpectator" : false,
      "maxNumberOfTransferPerPhoneInGroupId" : 9,
      "groupId" : "groupId",
      "allowTransferAfterActivation" : false,
      "allowTransferAfterControl" : false,
      "keepOneAtInjectInGroupId" : false,
      "keepOneInGroupId" : false,
      "assignTransferLimit" : 2,
      "allowTransferAfterActivationByBT" : true,
      "allowTransferMainApplicant" : false,
      "allowTransfer" : true,
      "s360ExchangeForInitialSpectator" : false,
      "transferLevel" : 4,
      "allowReturnToOrganizer" : false,
      "maxNumberOfTicketPerPhoneInGroupId" : 7
    },
    "sortingKey" : "sortingKey",
    "designId" : "designId",
    "controlledDate" : "2000-01-23T04:56:07.000+00:00",
    "event" : {
      "website" : "http://example.com/aeiou",
      "metadata" : [ {
        "value" : "value",
        "key" : "key"
      }, {
        "value" : "value",
        "key" : "key"
      }, {
        "value" : "value",
        "key" : "key"
      }, {
        "value" : "value",
        "key" : "key"
      }, {
        "value" : "value",
        "key" : "key"
      } ],
      "address" : {
        "zip" : "zip",
        "site" : "site",
        "city" : "city",
        "countryCode" : "countryCode",
        "latitude" : 6.027456183070403,
        "line3" : "line3",
        "region" : "region",
        "line2" : "line2",
        "line1" : "line1",
        "longitude" : 0.8008281904610115
      },
      "bluetoothPreparationRibbonDisplayTime" : "bluetoothPreparationRibbonDisplayTime",
      "name" : "name",
      "startTime" : "startTime",
      "id" : "id",
      "name2" : "name2",
      "expirationDate" : "expirationDate",
      "bluetoothPreparationRibbonEndTime" : "bluetoothPreparationRibbonEndTime",
      "group" : {
        "image" : "image",
        "name" : "name",
        "id" : "id"
      }
    },
    "lang" : "lang",
    "ticketId" : "ticketId",
    "activationParameters" : {
      "method" : "online",
      "time" : "2000-01-23T04:56:07.000+00:00"
    },
    "ticketDetails" : {
      "hidden" : [ {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      }, {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      }, {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      }, {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      }, {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      } ],
      "extra" : [ {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      }, {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      }, {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      }, {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      }, {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      } ],
      "main" : [ {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      }, {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      }, {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      }, {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      }, {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      } ]
    },
    "status" : "controlled"
  }, {
    "ticketImageUrl" : "ticketImageUrl",
    "security" : {
      "clearanceLevel" : 5,
      "barcode" : "barcode"
    },
    "transferRules" : {
      "maxNumberOfTransferPerTicketInGroupId" : 3,
      "allowReturnToOrganizerForInitialSpectator" : false,
      "s360ExchangeForAnySpectator" : false,
      "maxNumberOfTransferPerPhoneInGroupId" : 9,
      "groupId" : "groupId",
      "allowTransferAfterActivation" : false,
      "allowTransferAfterControl" : false,
      "keepOneAtInjectInGroupId" : false,
      "keepOneInGroupId" : false,
      "assignTransferLimit" : 2,
      "allowTransferAfterActivationByBT" : true,
      "allowTransferMainApplicant" : false,
      "allowTransfer" : true,
      "s360ExchangeForInitialSpectator" : false,
      "transferLevel" : 4,
      "allowReturnToOrganizer" : false,
      "maxNumberOfTicketPerPhoneInGroupId" : 7
    },
    "sortingKey" : "sortingKey",
    "designId" : "designId",
    "controlledDate" : "2000-01-23T04:56:07.000+00:00",
    "event" : {
      "website" : "http://example.com/aeiou",
      "metadata" : [ {
        "value" : "value",
        "key" : "key"
      }, {
        "value" : "value",
        "key" : "key"
      }, {
        "value" : "value",
        "key" : "key"
      }, {
        "value" : "value",
        "key" : "key"
      }, {
        "value" : "value",
        "key" : "key"
      } ],
      "address" : {
        "zip" : "zip",
        "site" : "site",
        "city" : "city",
        "countryCode" : "countryCode",
        "latitude" : 6.027456183070403,
        "line3" : "line3",
        "region" : "region",
        "line2" : "line2",
        "line1" : "line1",
        "longitude" : 0.8008281904610115
      },
      "bluetoothPreparationRibbonDisplayTime" : "bluetoothPreparationRibbonDisplayTime",
      "name" : "name",
      "startTime" : "startTime",
      "id" : "id",
      "name2" : "name2",
      "expirationDate" : "expirationDate",
      "bluetoothPreparationRibbonEndTime" : "bluetoothPreparationRibbonEndTime",
      "group" : {
        "image" : "image",
        "name" : "name",
        "id" : "id"
      }
    },
    "lang" : "lang",
    "ticketId" : "ticketId",
    "activationParameters" : {
      "method" : "online",
      "time" : "2000-01-23T04:56:07.000+00:00"
    },
    "ticketDetails" : {
      "hidden" : [ {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      }, {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      }, {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      }, {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      }, {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      } ],
      "extra" : [ {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      }, {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      }, {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      }, {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      }, {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      } ],
      "main" : [ {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      }, {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      }, {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      }, {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      }, {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      } ]
    },
    "status" : "controlled"
  } ]
}'
import com.secutix.tixngo.v1.0.*;
import com.secutix.tixngo.v1.0.auth.*;
import com.secutix.tixngo.v1.0.model.*;
import com.secutix.tixngo.v1.0.api.DefaultApi;

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

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

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();
        OrganizerTicketsPatchRequest organizerTicketsPatchRequest = ; // OrganizerTicketsPatchRequest | 
        Boolean mustNotifySpectator = true; // Boolean | 

        try {
            apiInstance.organizerTicketsPatch(organizerTicketsPatchRequest, mustNotifySpectator);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerTicketsPatch");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();

final OrganizerTicketsPatchRequest organizerTicketsPatchRequest = new OrganizerTicketsPatchRequest(); // OrganizerTicketsPatchRequest | 
final Boolean mustNotifySpectator = new Boolean(); // Boolean | 

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

import com.secutix.tixngo.v1.0.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        OrganizerTicketsPatchRequest organizerTicketsPatchRequest = ; // OrganizerTicketsPatchRequest | 
        Boolean mustNotifySpectator = true; // Boolean | 

        try {
            apiInstance.organizerTicketsPatch(organizerTicketsPatchRequest, mustNotifySpectator);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerTicketsPatch");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];
OrganizerTicketsPatchRequest *organizerTicketsPatchRequest = ; // 
Boolean *mustNotifySpectator = true; //  (optional) (default to null)

[apiInstance organizerTicketsPatchWith:organizerTicketsPatchRequest
    mustNotifySpectator:mustNotifySpectator
              completionHandler: ^(NSError* error) {
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var TixngoRestApiBackendOrganizerApi = require('tixngo_rest_api_backend_organizer_api');

// Create an instance of the API class
var api = new TixngoRestApiBackendOrganizerApi.DefaultApi()
var organizerTicketsPatchRequest = ; // {OrganizerTicketsPatchRequest} 
var opts = {
  'mustNotifySpectator': true // {Boolean} 
};

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

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

            // Create an instance of the API class
            var apiInstance = new DefaultApi();
            var organizerTicketsPatchRequest = new OrganizerTicketsPatchRequest(); // OrganizerTicketsPatchRequest | 
            var mustNotifySpectator = true;  // Boolean |  (optional)  (default to null)

            try {
                apiInstance.organizerTicketsPatch(organizerTicketsPatchRequest, mustNotifySpectator);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerTicketsPatch: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();
$organizerTicketsPatchRequest = ; // OrganizerTicketsPatchRequest | 
$mustNotifySpectator = true; // Boolean | 

try {
    $api_instance->organizerTicketsPatch($organizerTicketsPatchRequest, $mustNotifySpectator);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerTicketsPatch: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::OPenAPIClient::Configuration;
use WWW::OPenAPIClient::DefaultApi;

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DefaultApi->new();
my $organizerTicketsPatchRequest = WWW::OPenAPIClient::Object::OrganizerTicketsPatchRequest->new(); # OrganizerTicketsPatchRequest | 
my $mustNotifySpectator = true; # Boolean | 

eval {
    $api_instance->organizerTicketsPatch(organizerTicketsPatchRequest => $organizerTicketsPatchRequest, mustNotifySpectator => $mustNotifySpectator);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerTicketsPatch: $@\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.DefaultApi()
organizerTicketsPatchRequest =  # OrganizerTicketsPatchRequest | 
mustNotifySpectator = true # Boolean |  (optional) (default to null)

try:
    api_instance.organizer_tickets_patch(organizerTicketsPatchRequest, mustNotifySpectator=mustNotifySpectator)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerTicketsPatch: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let organizerTicketsPatchRequest = ; // OrganizerTicketsPatchRequest
    let mustNotifySpectator = true; // Boolean

    let mut context = DefaultApi::Context::default();
    let result = client.organizerTicketsPatch(organizerTicketsPatchRequest, mustNotifySpectator, &context).wait();

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

Scopes

Parameters

Body parameters
Name Description
organizerTicketsPatchRequest *

Query parameters
Name Description
mustNotifySpectator
Boolean

Responses


organizerTicketsPost

Inject a ticket to the TIXnGO system


/organizer/tickets

Usage and SDK Samples

curl -X POST \
 -H "Accept: application/json" \
 -H "Content-Type: application/json" \
 "https://api.tixngo.io/prod/v1.0/organizer/tickets" \
 -d '{
  "tickets" : [ {
    "image" : "https://openapi-generator.tech",
    "contingent" : "contingent",
    "purchaseDetails" : {
      "date" : "2000-01-23T04:56:07.000+00:00",
      "price" : 1.4658129805029452,
      "priceCategory" : "priceCategory",
      "currency" : "currency",
      "taxationNumber" : "taxationNumber"
    },
    "activationParameters" : {
      "instanceId" : "instanceId",
      "method" : "online",
      "groupId" : "groupId",
      "time" : "2000-01-23T04:56:07.000+00:00"
    },
    "ticketDetails" : {
      "hidden" : [ {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      }, {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      }, {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      }, {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      }, {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      } ],
      "extra" : [ {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      }, {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      }, {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      }, {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      }, {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      } ],
      "main" : [ {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      }, {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      }, {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      }, {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      }, {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      } ]
    },
    "proofOfIdentity" : {
      "publicKey" : "publicKey",
      "signedMessage" : "signedMessage"
    },
    "spectatorDetails" : {
      "residenceCountry" : "residenceCountry",
      "lastName" : "lastName",
      "preferredLanguage" : "preferredLanguage",
      "gender" : "gender",
      "spectatorUsedDevices" : [ {
        "appVersion" : "appVersion",
        "lastActiveTime" : "2000-01-23T04:56:07.000+00:00",
        "os" : "os",
        "osVersion" : "osVersion",
        "deviceId" : "deviceId",
        "deviceName" : "deviceName"
      }, {
        "appVersion" : "appVersion",
        "lastActiveTime" : "2000-01-23T04:56:07.000+00:00",
        "os" : "os",
        "osVersion" : "osVersion",
        "deviceId" : "deviceId",
        "deviceName" : "deviceName"
      } ],
      "extraInfo1" : "extraInfo1",
      "spectatorId" : "spectatorId",
      "extraInfo4" : "extraInfo4",
      "firstLoginDate" : "2000-01-23T04:56:07.000+00:00",
      "extraInfo2" : "extraInfo2",
      "extraInfo3" : "extraInfo3",
      "spectatorStatus" : "activated",
      "mobileAppId" : "mobileAppId",
      "isLocked" : true,
      "organizerSpectatorPreference" : {
        "allowPromoEmail" : true,
        "allowPromoThirdPartyEmail" : true,
        "allowTracking" : true
      },
      "registeredDevices" : 2,
      "email" : "email",
      "passportNumber" : "passportNumber",
      "lastActiveTime" : "lastActiveTime",
      "dateOfBirth" : "2000-01-23",
      "firstName" : "firstName",
      "phoneNumber" : "phoneNumber",
      "createdDate" : "createdDate",
      "nationality" : "nationality",
      "activeSessions" : 5,
      "pinCode" : "pinCode",
      "idCardNumber" : "idCardNumber",
      "ticketHolder" : {
        "reason" : "reason",
        "identity" : {
          "passportNumber" : "passportNumber",
          "residenceCountry" : "residenceCountry",
          "lastName" : "lastName",
          "address" : {
            "zip" : "zip",
            "city" : "city",
            "countryCode" : "countryCode",
            "line3" : "line3",
            "line2" : "line2",
            "line1" : "line1"
          },
          "gender" : "m",
          "extraInfo1" : "extraInfo1",
          "dateOfBirth" : "2000-01-23",
          "birthCity" : "birthCity",
          "extraInfo4" : "extraInfo4",
          "extraInfo2" : "extraInfo2",
          "extraInfo3" : "extraInfo3",
          "firstName" : "firstName",
          "face" : "face",
          "phoneNumber" : "phoneNumber",
          "nationality" : "nationality",
          "idCardNumber" : "idCardNumber",
          "birthCountry" : "birthCountry",
          "email" : "email"
        }
      },
      "appLanguage" : "appLanguage"
    },
    "security" : {
      "clearanceLevel" : 5,
      "barcode" : "barcode"
    },
    "transferRules" : {
      "maxNumberOfTransferPerTicketInGroupId" : 3,
      "allowReturnToOrganizerForInitialSpectator" : false,
      "s360ExchangeForAnySpectator" : false,
      "maxNumberOfTransferPerPhoneInGroupId" : 9,
      "groupId" : "groupId",
      "allowTransferAfterActivation" : false,
      "allowTransferAfterControl" : false,
      "keepOneAtInjectInGroupId" : false,
      "keepOneInGroupId" : false,
      "assignTransferLimit" : 2,
      "allowTransferAfterActivationByBT" : true,
      "allowTransferMainApplicant" : false,
      "allowTransfer" : true,
      "s360ExchangeForInitialSpectator" : false,
      "transferLevel" : 4,
      "allowReturnToOrganizer" : false,
      "maxNumberOfTicketPerPhoneInGroupId" : 7
    },
    "privilegeInstanceId" : "privilegeInstanceId",
    "sortingKey" : "sortingKey",
    "design" : {
      "backgroundColor" : "backgroundColor",
      "secureColor" : "secureColor",
      "secureImage" : "secureImage",
      "id" : "id"
    },
    "event" : {
      "website" : "http://example.com/aeiou",
      "metadata" : [ {
        "value" : "value",
        "key" : "key"
      }, {
        "value" : "value",
        "key" : "key"
      }, {
        "value" : "value",
        "key" : "key"
      }, {
        "value" : "value",
        "key" : "key"
      }, {
        "value" : "value",
        "key" : "key"
      } ],
      "address" : {
        "zip" : "zip",
        "site" : "site",
        "city" : "city",
        "countryCode" : "countryCode",
        "latitude" : 6.027456183070403,
        "line3" : "line3",
        "region" : "region",
        "line2" : "line2",
        "line1" : "line1",
        "longitude" : 0.8008281904610115
      },
      "bluetoothPreparationRibbonDisplayTime" : "bluetoothPreparationRibbonDisplayTime",
      "name" : "name",
      "startTime" : "startTime",
      "id" : "id",
      "name2" : "name2",
      "expirationDate" : "expirationDate",
      "bluetoothPreparationRibbonEndTime" : "bluetoothPreparationRibbonEndTime",
      "group" : {
        "image" : "image",
        "name" : "name",
        "id" : "id"
      }
    },
    "lang" : "lang",
    "mainApplicant" : false,
    "ticketId" : "ticketId",
    "ticketInjectionDate" : "2000-01-23T04:56:07.000+00:00"
  }, {
    "image" : "https://openapi-generator.tech",
    "contingent" : "contingent",
    "purchaseDetails" : {
      "date" : "2000-01-23T04:56:07.000+00:00",
      "price" : 1.4658129805029452,
      "priceCategory" : "priceCategory",
      "currency" : "currency",
      "taxationNumber" : "taxationNumber"
    },
    "activationParameters" : {
      "instanceId" : "instanceId",
      "method" : "online",
      "groupId" : "groupId",
      "time" : "2000-01-23T04:56:07.000+00:00"
    },
    "ticketDetails" : {
      "hidden" : [ {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      }, {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      }, {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      }, {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      }, {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      } ],
      "extra" : [ {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      }, {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      }, {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      }, {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      }, {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      } ],
      "main" : [ {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      }, {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      }, {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      }, {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      }, {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      } ]
    },
    "proofOfIdentity" : {
      "publicKey" : "publicKey",
      "signedMessage" : "signedMessage"
    },
    "spectatorDetails" : {
      "residenceCountry" : "residenceCountry",
      "lastName" : "lastName",
      "preferredLanguage" : "preferredLanguage",
      "gender" : "gender",
      "spectatorUsedDevices" : [ {
        "appVersion" : "appVersion",
        "lastActiveTime" : "2000-01-23T04:56:07.000+00:00",
        "os" : "os",
        "osVersion" : "osVersion",
        "deviceId" : "deviceId",
        "deviceName" : "deviceName"
      }, {
        "appVersion" : "appVersion",
        "lastActiveTime" : "2000-01-23T04:56:07.000+00:00",
        "os" : "os",
        "osVersion" : "osVersion",
        "deviceId" : "deviceId",
        "deviceName" : "deviceName"
      } ],
      "extraInfo1" : "extraInfo1",
      "spectatorId" : "spectatorId",
      "extraInfo4" : "extraInfo4",
      "firstLoginDate" : "2000-01-23T04:56:07.000+00:00",
      "extraInfo2" : "extraInfo2",
      "extraInfo3" : "extraInfo3",
      "spectatorStatus" : "activated",
      "mobileAppId" : "mobileAppId",
      "isLocked" : true,
      "organizerSpectatorPreference" : {
        "allowPromoEmail" : true,
        "allowPromoThirdPartyEmail" : true,
        "allowTracking" : true
      },
      "registeredDevices" : 2,
      "email" : "email",
      "passportNumber" : "passportNumber",
      "lastActiveTime" : "lastActiveTime",
      "dateOfBirth" : "2000-01-23",
      "firstName" : "firstName",
      "phoneNumber" : "phoneNumber",
      "createdDate" : "createdDate",
      "nationality" : "nationality",
      "activeSessions" : 5,
      "pinCode" : "pinCode",
      "idCardNumber" : "idCardNumber",
      "ticketHolder" : {
        "reason" : "reason",
        "identity" : {
          "passportNumber" : "passportNumber",
          "residenceCountry" : "residenceCountry",
          "lastName" : "lastName",
          "address" : {
            "zip" : "zip",
            "city" : "city",
            "countryCode" : "countryCode",
            "line3" : "line3",
            "line2" : "line2",
            "line1" : "line1"
          },
          "gender" : "m",
          "extraInfo1" : "extraInfo1",
          "dateOfBirth" : "2000-01-23",
          "birthCity" : "birthCity",
          "extraInfo4" : "extraInfo4",
          "extraInfo2" : "extraInfo2",
          "extraInfo3" : "extraInfo3",
          "firstName" : "firstName",
          "face" : "face",
          "phoneNumber" : "phoneNumber",
          "nationality" : "nationality",
          "idCardNumber" : "idCardNumber",
          "birthCountry" : "birthCountry",
          "email" : "email"
        }
      },
      "appLanguage" : "appLanguage"
    },
    "security" : {
      "clearanceLevel" : 5,
      "barcode" : "barcode"
    },
    "transferRules" : {
      "maxNumberOfTransferPerTicketInGroupId" : 3,
      "allowReturnToOrganizerForInitialSpectator" : false,
      "s360ExchangeForAnySpectator" : false,
      "maxNumberOfTransferPerPhoneInGroupId" : 9,
      "groupId" : "groupId",
      "allowTransferAfterActivation" : false,
      "allowTransferAfterControl" : false,
      "keepOneAtInjectInGroupId" : false,
      "keepOneInGroupId" : false,
      "assignTransferLimit" : 2,
      "allowTransferAfterActivationByBT" : true,
      "allowTransferMainApplicant" : false,
      "allowTransfer" : true,
      "s360ExchangeForInitialSpectator" : false,
      "transferLevel" : 4,
      "allowReturnToOrganizer" : false,
      "maxNumberOfTicketPerPhoneInGroupId" : 7
    },
    "privilegeInstanceId" : "privilegeInstanceId",
    "sortingKey" : "sortingKey",
    "design" : {
      "backgroundColor" : "backgroundColor",
      "secureColor" : "secureColor",
      "secureImage" : "secureImage",
      "id" : "id"
    },
    "event" : {
      "website" : "http://example.com/aeiou",
      "metadata" : [ {
        "value" : "value",
        "key" : "key"
      }, {
        "value" : "value",
        "key" : "key"
      }, {
        "value" : "value",
        "key" : "key"
      }, {
        "value" : "value",
        "key" : "key"
      }, {
        "value" : "value",
        "key" : "key"
      } ],
      "address" : {
        "zip" : "zip",
        "site" : "site",
        "city" : "city",
        "countryCode" : "countryCode",
        "latitude" : 6.027456183070403,
        "line3" : "line3",
        "region" : "region",
        "line2" : "line2",
        "line1" : "line1",
        "longitude" : 0.8008281904610115
      },
      "bluetoothPreparationRibbonDisplayTime" : "bluetoothPreparationRibbonDisplayTime",
      "name" : "name",
      "startTime" : "startTime",
      "id" : "id",
      "name2" : "name2",
      "expirationDate" : "expirationDate",
      "bluetoothPreparationRibbonEndTime" : "bluetoothPreparationRibbonEndTime",
      "group" : {
        "image" : "image",
        "name" : "name",
        "id" : "id"
      }
    },
    "lang" : "lang",
    "mainApplicant" : false,
    "ticketId" : "ticketId",
    "ticketInjectionDate" : "2000-01-23T04:56:07.000+00:00"
  }, {
    "image" : "https://openapi-generator.tech",
    "contingent" : "contingent",
    "purchaseDetails" : {
      "date" : "2000-01-23T04:56:07.000+00:00",
      "price" : 1.4658129805029452,
      "priceCategory" : "priceCategory",
      "currency" : "currency",
      "taxationNumber" : "taxationNumber"
    },
    "activationParameters" : {
      "instanceId" : "instanceId",
      "method" : "online",
      "groupId" : "groupId",
      "time" : "2000-01-23T04:56:07.000+00:00"
    },
    "ticketDetails" : {
      "hidden" : [ {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      }, {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      }, {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      }, {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      }, {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      } ],
      "extra" : [ {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      }, {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      }, {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      }, {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      }, {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      } ],
      "main" : [ {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      }, {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      }, {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      }, {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      }, {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      } ]
    },
    "proofOfIdentity" : {
      "publicKey" : "publicKey",
      "signedMessage" : "signedMessage"
    },
    "spectatorDetails" : {
      "residenceCountry" : "residenceCountry",
      "lastName" : "lastName",
      "preferredLanguage" : "preferredLanguage",
      "gender" : "gender",
      "spectatorUsedDevices" : [ {
        "appVersion" : "appVersion",
        "lastActiveTime" : "2000-01-23T04:56:07.000+00:00",
        "os" : "os",
        "osVersion" : "osVersion",
        "deviceId" : "deviceId",
        "deviceName" : "deviceName"
      }, {
        "appVersion" : "appVersion",
        "lastActiveTime" : "2000-01-23T04:56:07.000+00:00",
        "os" : "os",
        "osVersion" : "osVersion",
        "deviceId" : "deviceId",
        "deviceName" : "deviceName"
      } ],
      "extraInfo1" : "extraInfo1",
      "spectatorId" : "spectatorId",
      "extraInfo4" : "extraInfo4",
      "firstLoginDate" : "2000-01-23T04:56:07.000+00:00",
      "extraInfo2" : "extraInfo2",
      "extraInfo3" : "extraInfo3",
      "spectatorStatus" : "activated",
      "mobileAppId" : "mobileAppId",
      "isLocked" : true,
      "organizerSpectatorPreference" : {
        "allowPromoEmail" : true,
        "allowPromoThirdPartyEmail" : true,
        "allowTracking" : true
      },
      "registeredDevices" : 2,
      "email" : "email",
      "passportNumber" : "passportNumber",
      "lastActiveTime" : "lastActiveTime",
      "dateOfBirth" : "2000-01-23",
      "firstName" : "firstName",
      "phoneNumber" : "phoneNumber",
      "createdDate" : "createdDate",
      "nationality" : "nationality",
      "activeSessions" : 5,
      "pinCode" : "pinCode",
      "idCardNumber" : "idCardNumber",
      "ticketHolder" : {
        "reason" : "reason",
        "identity" : {
          "passportNumber" : "passportNumber",
          "residenceCountry" : "residenceCountry",
          "lastName" : "lastName",
          "address" : {
            "zip" : "zip",
            "city" : "city",
            "countryCode" : "countryCode",
            "line3" : "line3",
            "line2" : "line2",
            "line1" : "line1"
          },
          "gender" : "m",
          "extraInfo1" : "extraInfo1",
          "dateOfBirth" : "2000-01-23",
          "birthCity" : "birthCity",
          "extraInfo4" : "extraInfo4",
          "extraInfo2" : "extraInfo2",
          "extraInfo3" : "extraInfo3",
          "firstName" : "firstName",
          "face" : "face",
          "phoneNumber" : "phoneNumber",
          "nationality" : "nationality",
          "idCardNumber" : "idCardNumber",
          "birthCountry" : "birthCountry",
          "email" : "email"
        }
      },
      "appLanguage" : "appLanguage"
    },
    "security" : {
      "clearanceLevel" : 5,
      "barcode" : "barcode"
    },
    "transferRules" : {
      "maxNumberOfTransferPerTicketInGroupId" : 3,
      "allowReturnToOrganizerForInitialSpectator" : false,
      "s360ExchangeForAnySpectator" : false,
      "maxNumberOfTransferPerPhoneInGroupId" : 9,
      "groupId" : "groupId",
      "allowTransferAfterActivation" : false,
      "allowTransferAfterControl" : false,
      "keepOneAtInjectInGroupId" : false,
      "keepOneInGroupId" : false,
      "assignTransferLimit" : 2,
      "allowTransferAfterActivationByBT" : true,
      "allowTransferMainApplicant" : false,
      "allowTransfer" : true,
      "s360ExchangeForInitialSpectator" : false,
      "transferLevel" : 4,
      "allowReturnToOrganizer" : false,
      "maxNumberOfTicketPerPhoneInGroupId" : 7
    },
    "privilegeInstanceId" : "privilegeInstanceId",
    "sortingKey" : "sortingKey",
    "design" : {
      "backgroundColor" : "backgroundColor",
      "secureColor" : "secureColor",
      "secureImage" : "secureImage",
      "id" : "id"
    },
    "event" : {
      "website" : "http://example.com/aeiou",
      "metadata" : [ {
        "value" : "value",
        "key" : "key"
      }, {
        "value" : "value",
        "key" : "key"
      }, {
        "value" : "value",
        "key" : "key"
      }, {
        "value" : "value",
        "key" : "key"
      }, {
        "value" : "value",
        "key" : "key"
      } ],
      "address" : {
        "zip" : "zip",
        "site" : "site",
        "city" : "city",
        "countryCode" : "countryCode",
        "latitude" : 6.027456183070403,
        "line3" : "line3",
        "region" : "region",
        "line2" : "line2",
        "line1" : "line1",
        "longitude" : 0.8008281904610115
      },
      "bluetoothPreparationRibbonDisplayTime" : "bluetoothPreparationRibbonDisplayTime",
      "name" : "name",
      "startTime" : "startTime",
      "id" : "id",
      "name2" : "name2",
      "expirationDate" : "expirationDate",
      "bluetoothPreparationRibbonEndTime" : "bluetoothPreparationRibbonEndTime",
      "group" : {
        "image" : "image",
        "name" : "name",
        "id" : "id"
      }
    },
    "lang" : "lang",
    "mainApplicant" : false,
    "ticketId" : "ticketId",
    "ticketInjectionDate" : "2000-01-23T04:56:07.000+00:00"
  }, {
    "image" : "https://openapi-generator.tech",
    "contingent" : "contingent",
    "purchaseDetails" : {
      "date" : "2000-01-23T04:56:07.000+00:00",
      "price" : 1.4658129805029452,
      "priceCategory" : "priceCategory",
      "currency" : "currency",
      "taxationNumber" : "taxationNumber"
    },
    "activationParameters" : {
      "instanceId" : "instanceId",
      "method" : "online",
      "groupId" : "groupId",
      "time" : "2000-01-23T04:56:07.000+00:00"
    },
    "ticketDetails" : {
      "hidden" : [ {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      }, {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      }, {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      }, {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      }, {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      } ],
      "extra" : [ {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      }, {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      }, {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      }, {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      }, {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      } ],
      "main" : [ {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      }, {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      }, {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      }, {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      }, {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      } ]
    },
    "proofOfIdentity" : {
      "publicKey" : "publicKey",
      "signedMessage" : "signedMessage"
    },
    "spectatorDetails" : {
      "residenceCountry" : "residenceCountry",
      "lastName" : "lastName",
      "preferredLanguage" : "preferredLanguage",
      "gender" : "gender",
      "spectatorUsedDevices" : [ {
        "appVersion" : "appVersion",
        "lastActiveTime" : "2000-01-23T04:56:07.000+00:00",
        "os" : "os",
        "osVersion" : "osVersion",
        "deviceId" : "deviceId",
        "deviceName" : "deviceName"
      }, {
        "appVersion" : "appVersion",
        "lastActiveTime" : "2000-01-23T04:56:07.000+00:00",
        "os" : "os",
        "osVersion" : "osVersion",
        "deviceId" : "deviceId",
        "deviceName" : "deviceName"
      } ],
      "extraInfo1" : "extraInfo1",
      "spectatorId" : "spectatorId",
      "extraInfo4" : "extraInfo4",
      "firstLoginDate" : "2000-01-23T04:56:07.000+00:00",
      "extraInfo2" : "extraInfo2",
      "extraInfo3" : "extraInfo3",
      "spectatorStatus" : "activated",
      "mobileAppId" : "mobileAppId",
      "isLocked" : true,
      "organizerSpectatorPreference" : {
        "allowPromoEmail" : true,
        "allowPromoThirdPartyEmail" : true,
        "allowTracking" : true
      },
      "registeredDevices" : 2,
      "email" : "email",
      "passportNumber" : "passportNumber",
      "lastActiveTime" : "lastActiveTime",
      "dateOfBirth" : "2000-01-23",
      "firstName" : "firstName",
      "phoneNumber" : "phoneNumber",
      "createdDate" : "createdDate",
      "nationality" : "nationality",
      "activeSessions" : 5,
      "pinCode" : "pinCode",
      "idCardNumber" : "idCardNumber",
      "ticketHolder" : {
        "reason" : "reason",
        "identity" : {
          "passportNumber" : "passportNumber",
          "residenceCountry" : "residenceCountry",
          "lastName" : "lastName",
          "address" : {
            "zip" : "zip",
            "city" : "city",
            "countryCode" : "countryCode",
            "line3" : "line3",
            "line2" : "line2",
            "line1" : "line1"
          },
          "gender" : "m",
          "extraInfo1" : "extraInfo1",
          "dateOfBirth" : "2000-01-23",
          "birthCity" : "birthCity",
          "extraInfo4" : "extraInfo4",
          "extraInfo2" : "extraInfo2",
          "extraInfo3" : "extraInfo3",
          "firstName" : "firstName",
          "face" : "face",
          "phoneNumber" : "phoneNumber",
          "nationality" : "nationality",
          "idCardNumber" : "idCardNumber",
          "birthCountry" : "birthCountry",
          "email" : "email"
        }
      },
      "appLanguage" : "appLanguage"
    },
    "security" : {
      "clearanceLevel" : 5,
      "barcode" : "barcode"
    },
    "transferRules" : {
      "maxNumberOfTransferPerTicketInGroupId" : 3,
      "allowReturnToOrganizerForInitialSpectator" : false,
      "s360ExchangeForAnySpectator" : false,
      "maxNumberOfTransferPerPhoneInGroupId" : 9,
      "groupId" : "groupId",
      "allowTransferAfterActivation" : false,
      "allowTransferAfterControl" : false,
      "keepOneAtInjectInGroupId" : false,
      "keepOneInGroupId" : false,
      "assignTransferLimit" : 2,
      "allowTransferAfterActivationByBT" : true,
      "allowTransferMainApplicant" : false,
      "allowTransfer" : true,
      "s360ExchangeForInitialSpectator" : false,
      "transferLevel" : 4,
      "allowReturnToOrganizer" : false,
      "maxNumberOfTicketPerPhoneInGroupId" : 7
    },
    "privilegeInstanceId" : "privilegeInstanceId",
    "sortingKey" : "sortingKey",
    "design" : {
      "backgroundColor" : "backgroundColor",
      "secureColor" : "secureColor",
      "secureImage" : "secureImage",
      "id" : "id"
    },
    "event" : {
      "website" : "http://example.com/aeiou",
      "metadata" : [ {
        "value" : "value",
        "key" : "key"
      }, {
        "value" : "value",
        "key" : "key"
      }, {
        "value" : "value",
        "key" : "key"
      }, {
        "value" : "value",
        "key" : "key"
      }, {
        "value" : "value",
        "key" : "key"
      } ],
      "address" : {
        "zip" : "zip",
        "site" : "site",
        "city" : "city",
        "countryCode" : "countryCode",
        "latitude" : 6.027456183070403,
        "line3" : "line3",
        "region" : "region",
        "line2" : "line2",
        "line1" : "line1",
        "longitude" : 0.8008281904610115
      },
      "bluetoothPreparationRibbonDisplayTime" : "bluetoothPreparationRibbonDisplayTime",
      "name" : "name",
      "startTime" : "startTime",
      "id" : "id",
      "name2" : "name2",
      "expirationDate" : "expirationDate",
      "bluetoothPreparationRibbonEndTime" : "bluetoothPreparationRibbonEndTime",
      "group" : {
        "image" : "image",
        "name" : "name",
        "id" : "id"
      }
    },
    "lang" : "lang",
    "mainApplicant" : false,
    "ticketId" : "ticketId",
    "ticketInjectionDate" : "2000-01-23T04:56:07.000+00:00"
  }, {
    "image" : "https://openapi-generator.tech",
    "contingent" : "contingent",
    "purchaseDetails" : {
      "date" : "2000-01-23T04:56:07.000+00:00",
      "price" : 1.4658129805029452,
      "priceCategory" : "priceCategory",
      "currency" : "currency",
      "taxationNumber" : "taxationNumber"
    },
    "activationParameters" : {
      "instanceId" : "instanceId",
      "method" : "online",
      "groupId" : "groupId",
      "time" : "2000-01-23T04:56:07.000+00:00"
    },
    "ticketDetails" : {
      "hidden" : [ {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      }, {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      }, {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      }, {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      }, {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      } ],
      "extra" : [ {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      }, {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      }, {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      }, {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      }, {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      } ],
      "main" : [ {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      }, {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      }, {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      }, {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      }, {
        "lang" : "en",
        "value" : "value",
        "key" : "key"
      } ]
    },
    "proofOfIdentity" : {
      "publicKey" : "publicKey",
      "signedMessage" : "signedMessage"
    },
    "spectatorDetails" : {
      "residenceCountry" : "residenceCountry",
      "lastName" : "lastName",
      "preferredLanguage" : "preferredLanguage",
      "gender" : "gender",
      "spectatorUsedDevices" : [ {
        "appVersion" : "appVersion",
        "lastActiveTime" : "2000-01-23T04:56:07.000+00:00",
        "os" : "os",
        "osVersion" : "osVersion",
        "deviceId" : "deviceId",
        "deviceName" : "deviceName"
      }, {
        "appVersion" : "appVersion",
        "lastActiveTime" : "2000-01-23T04:56:07.000+00:00",
        "os" : "os",
        "osVersion" : "osVersion",
        "deviceId" : "deviceId",
        "deviceName" : "deviceName"
      } ],
      "extraInfo1" : "extraInfo1",
      "spectatorId" : "spectatorId",
      "extraInfo4" : "extraInfo4",
      "firstLoginDate" : "2000-01-23T04:56:07.000+00:00",
      "extraInfo2" : "extraInfo2",
      "extraInfo3" : "extraInfo3",
      "spectatorStatus" : "activated",
      "mobileAppId" : "mobileAppId",
      "isLocked" : true,
      "organizerSpectatorPreference" : {
        "allowPromoEmail" : true,
        "allowPromoThirdPartyEmail" : true,
        "allowTracking" : true
      },
      "registeredDevices" : 2,
      "email" : "email",
      "passportNumber" : "passportNumber",
      "lastActiveTime" : "lastActiveTime",
      "dateOfBirth" : "2000-01-23",
      "firstName" : "firstName",
      "phoneNumber" : "phoneNumber",
      "createdDate" : "createdDate",
      "nationality" : "nationality",
      "activeSessions" : 5,
      "pinCode" : "pinCode",
      "idCardNumber" : "idCardNumber",
      "ticketHolder" : {
        "reason" : "reason",
        "identity" : {
          "passportNumber" : "passportNumber",
          "residenceCountry" : "residenceCountry",
          "lastName" : "lastName",
          "address" : {
            "zip" : "zip",
            "city" : "city",
            "countryCode" : "countryCode",
            "line3" : "line3",
            "line2" : "line2",
            "line1" : "line1"
          },
          "gender" : "m",
          "extraInfo1" : "extraInfo1",
          "dateOfBirth" : "2000-01-23",
          "birthCity" : "birthCity",
          "extraInfo4" : "extraInfo4",
          "extraInfo2" : "extraInfo2",
          "extraInfo3" : "extraInfo3",
          "firstName" : "firstName",
          "face" : "face",
          "phoneNumber" : "phoneNumber",
          "nationality" : "nationality",
          "idCardNumber" : "idCardNumber",
          "birthCountry" : "birthCountry",
          "email" : "email"
        }
      },
      "appLanguage" : "appLanguage"
    },
    "security" : {
      "clearanceLevel" : 5,
      "barcode" : "barcode"
    },
    "transferRules" : {
      "maxNumberOfTransferPerTicketInGroupId" : 3,
      "allowReturnToOrganizerForInitialSpectator" : false,
      "s360ExchangeForAnySpectator" : false,
      "maxNumberOfTransferPerPhoneInGroupId" : 9,
      "groupId" : "groupId",
      "allowTransferAfterActivation" : false,
      "allowTransferAfterControl" : false,
      "keepOneAtInjectInGroupId" : false,
      "keepOneInGroupId" : false,
      "assignTransferLimit" : 2,
      "allowTransferAfterActivationByBT" : true,
      "allowTransferMainApplicant" : false,
      "allowTransfer" : true,
      "s360ExchangeForInitialSpectator" : false,
      "transferLevel" : 4,
      "allowReturnToOrganizer" : false,
      "maxNumberOfTicketPerPhoneInGroupId" : 7
    },
    "privilegeInstanceId" : "privilegeInstanceId",
    "sortingKey" : "sortingKey",
    "design" : {
      "backgroundColor" : "backgroundColor",
      "secureColor" : "secureColor",
      "secureImage" : "secureImage",
      "id" : "id"
    },
    "event" : {
      "website" : "http://example.com/aeiou",
      "metadata" : [ {
        "value" : "value",
        "key" : "key"
      }, {
        "value" : "value",
        "key" : "key"
      }, {
        "value" : "value",
        "key" : "key"
      }, {
        "value" : "value",
        "key" : "key"
      }, {
        "value" : "value",
        "key" : "key"
      } ],
      "address" : {
        "zip" : "zip",
        "site" : "site",
        "city" : "city",
        "countryCode" : "countryCode",
        "latitude" : 6.027456183070403,
        "line3" : "line3",
        "region" : "region",
        "line2" : "line2",
        "line1" : "line1",
        "longitude" : 0.8008281904610115
      },
      "bluetoothPreparationRibbonDisplayTime" : "bluetoothPreparationRibbonDisplayTime",
      "name" : "name",
      "startTime" : "startTime",
      "id" : "id",
      "name2" : "name2",
      "expirationDate" : "expirationDate",
      "bluetoothPreparationRibbonEndTime" : "bluetoothPreparationRibbonEndTime",
      "group" : {
        "image" : "image",
        "name" : "name",
        "id" : "id"
      }
    },
    "lang" : "lang",
    "mainApplicant" : false,
    "ticketId" : "ticketId",
    "ticketInjectionDate" : "2000-01-23T04:56:07.000+00:00"
  } ],
  "mobileAppId" : "mobileAppId",
  "validate" : true
}'
import com.secutix.tixngo.v1.0.*;
import com.secutix.tixngo.v1.0.auth.*;
import com.secutix.tixngo.v1.0.model.*;
import com.secutix.tixngo.v1.0.api.DefaultApi;

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

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

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();
        OrganizerTicketsRequest organizerTicketsRequest = ; // OrganizerTicketsRequest | 

        try {
            OrganizerTicketsResponse result = apiInstance.organizerTicketsPost(organizerTicketsRequest);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerTicketsPost");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();

final OrganizerTicketsRequest organizerTicketsRequest = new OrganizerTicketsRequest(); // OrganizerTicketsRequest | 

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

import com.secutix.tixngo.v1.0.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        OrganizerTicketsRequest organizerTicketsRequest = ; // OrganizerTicketsRequest | 

        try {
            OrganizerTicketsResponse result = apiInstance.organizerTicketsPost(organizerTicketsRequest);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerTicketsPost");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];
OrganizerTicketsRequest *organizerTicketsRequest = ; // 

[apiInstance organizerTicketsPostWith:organizerTicketsRequest
              completionHandler: ^(OrganizerTicketsResponse output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var TixngoRestApiBackendOrganizerApi = require('tixngo_rest_api_backend_organizer_api');

// Create an instance of the API class
var api = new TixngoRestApiBackendOrganizerApi.DefaultApi()
var organizerTicketsRequest = ; // {OrganizerTicketsRequest} 

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

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

            // Create an instance of the API class
            var apiInstance = new DefaultApi();
            var organizerTicketsRequest = new OrganizerTicketsRequest(); // OrganizerTicketsRequest | 

            try {
                OrganizerTicketsResponse result = apiInstance.organizerTicketsPost(organizerTicketsRequest);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerTicketsPost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();
$organizerTicketsRequest = ; // OrganizerTicketsRequest | 

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

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DefaultApi->new();
my $organizerTicketsRequest = WWW::OPenAPIClient::Object::OrganizerTicketsRequest->new(); # OrganizerTicketsRequest | 

eval {
    my $result = $api_instance->organizerTicketsPost(organizerTicketsRequest => $organizerTicketsRequest);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerTicketsPost: $@\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.DefaultApi()
organizerTicketsRequest =  # OrganizerTicketsRequest | 

try:
    api_response = api_instance.organizer_tickets_post(organizerTicketsRequest)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerTicketsPost: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let organizerTicketsRequest = ; // OrganizerTicketsRequest

    let mut context = DefaultApi::Context::default();
    let result = client.organizerTicketsPost(organizerTicketsRequest, &context).wait();

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

Scopes

Parameters

Body parameters
Name Description
organizerTicketsRequest *

Responses


organizerTicketsPut

(deprecated) allow to delete or burn a list of tickets


/organizer/tickets

Usage and SDK Samples

curl -X PUT \
 -H "Accept: application/json" \
 -H "Content-Type: application/json" \
 "https://api.tixngo.io/prod/v1.0/organizer/tickets" \
 -d '{
  "reason" : "reason",
  "showDeletedTicket" : true,
  "ticketIds" : [ "ticketIds", "ticketIds", "ticketIds", "ticketIds", "ticketIds" ],
  "status" : "BURN"
}'
import com.secutix.tixngo.v1.0.*;
import com.secutix.tixngo.v1.0.auth.*;
import com.secutix.tixngo.v1.0.model.*;
import com.secutix.tixngo.v1.0.api.DefaultApi;

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

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

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();
        OrganizerTicketPutRequest organizerTicketPutRequest = ; // OrganizerTicketPutRequest | 

        try {
            OrganizerTicketPutResponse result = apiInstance.organizerTicketsPut(organizerTicketPutRequest);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerTicketsPut");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();

final OrganizerTicketPutRequest organizerTicketPutRequest = new OrganizerTicketPutRequest(); // OrganizerTicketPutRequest | 

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

import com.secutix.tixngo.v1.0.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        OrganizerTicketPutRequest organizerTicketPutRequest = ; // OrganizerTicketPutRequest | 

        try {
            OrganizerTicketPutResponse result = apiInstance.organizerTicketsPut(organizerTicketPutRequest);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerTicketsPut");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];
OrganizerTicketPutRequest *organizerTicketPutRequest = ; // 

[apiInstance organizerTicketsPutWith:organizerTicketPutRequest
              completionHandler: ^(OrganizerTicketPutResponse output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var TixngoRestApiBackendOrganizerApi = require('tixngo_rest_api_backend_organizer_api');

// Create an instance of the API class
var api = new TixngoRestApiBackendOrganizerApi.DefaultApi()
var organizerTicketPutRequest = ; // {OrganizerTicketPutRequest} 

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

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

            // Create an instance of the API class
            var apiInstance = new DefaultApi();
            var organizerTicketPutRequest = new OrganizerTicketPutRequest(); // OrganizerTicketPutRequest | 

            try {
                OrganizerTicketPutResponse result = apiInstance.organizerTicketsPut(organizerTicketPutRequest);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerTicketsPut: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();
$organizerTicketPutRequest = ; // OrganizerTicketPutRequest | 

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

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DefaultApi->new();
my $organizerTicketPutRequest = WWW::OPenAPIClient::Object::OrganizerTicketPutRequest->new(); # OrganizerTicketPutRequest | 

eval {
    my $result = $api_instance->organizerTicketsPut(organizerTicketPutRequest => $organizerTicketPutRequest);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerTicketsPut: $@\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.DefaultApi()
organizerTicketPutRequest =  # OrganizerTicketPutRequest | 

try:
    api_response = api_instance.organizer_tickets_put(organizerTicketPutRequest)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerTicketsPut: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let organizerTicketPutRequest = ; // OrganizerTicketPutRequest

    let mut context = DefaultApi::Context::default();
    let result = client.organizerTicketsPut(organizerTicketPutRequest, &context).wait();

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

Scopes

Parameters

Body parameters
Name Description
organizerTicketPutRequest *

Responses


organizerTicketsTicketIdDelete

Delete a ticket. The ticket will be seen as deleted from a spectator perspective but will sill be kept in the caller orgnaizer database.


/organizer/tickets/{ticketId}

Usage and SDK Samples

curl -X DELETE \
 -H "Accept: application/json" \
 "https://api.tixngo.io/prod/v1.0/organizer/tickets/{ticketId}?reason=reason_example&showDeletedTicket=true&operatorEmail=operatorEmail_example"
import com.secutix.tixngo.v1.0.*;
import com.secutix.tixngo.v1.0.auth.*;
import com.secutix.tixngo.v1.0.model.*;
import com.secutix.tixngo.v1.0.api.DefaultApi;

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

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

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();
        String ticketId = ticketId_example; // String | 
        String reason = reason_example; // String | 
        Boolean showDeletedTicket = true; // Boolean | 
        String operatorEmail = operatorEmail_example; // String | 

        try {
            OrganizerTicketDeleteResponse result = apiInstance.organizerTicketsTicketIdDelete(ticketId, reason, showDeletedTicket, operatorEmail);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerTicketsTicketIdDelete");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();

final String ticketId = new String(); // String | 
final String reason = new String(); // String | 
final Boolean showDeletedTicket = new Boolean(); // Boolean | 
final String operatorEmail = new String(); // String | 

try {
    final result = await api_instance.organizerTicketsTicketIdDelete(ticketId, reason, showDeletedTicket, operatorEmail);
    print(result);
} catch (e) {
    print('Exception when calling DefaultApi->organizerTicketsTicketIdDelete: $e\n');
}

import com.secutix.tixngo.v1.0.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        String ticketId = ticketId_example; // String | 
        String reason = reason_example; // String | 
        Boolean showDeletedTicket = true; // Boolean | 
        String operatorEmail = operatorEmail_example; // String | 

        try {
            OrganizerTicketDeleteResponse result = apiInstance.organizerTicketsTicketIdDelete(ticketId, reason, showDeletedTicket, operatorEmail);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerTicketsTicketIdDelete");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];
String *ticketId = ticketId_example; //  (default to null)
String *reason = reason_example; //  (optional) (default to null)
Boolean *showDeletedTicket = true; //  (optional) (default to null)
String *operatorEmail = operatorEmail_example; //  (optional) (default to null)

[apiInstance organizerTicketsTicketIdDeleteWith:ticketId
    reason:reason
    showDeletedTicket:showDeletedTicket
    operatorEmail:operatorEmail
              completionHandler: ^(OrganizerTicketDeleteResponse output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var TixngoRestApiBackendOrganizerApi = require('tixngo_rest_api_backend_organizer_api');

// Create an instance of the API class
var api = new TixngoRestApiBackendOrganizerApi.DefaultApi()
var ticketId = ticketId_example; // {String} 
var opts = {
  'reason': reason_example, // {String} 
  'showDeletedTicket': true, // {Boolean} 
  'operatorEmail': operatorEmail_example // {String} 
};

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

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

            // Create an instance of the API class
            var apiInstance = new DefaultApi();
            var ticketId = ticketId_example;  // String |  (default to null)
            var reason = reason_example;  // String |  (optional)  (default to null)
            var showDeletedTicket = true;  // Boolean |  (optional)  (default to null)
            var operatorEmail = operatorEmail_example;  // String |  (optional)  (default to null)

            try {
                OrganizerTicketDeleteResponse result = apiInstance.organizerTicketsTicketIdDelete(ticketId, reason, showDeletedTicket, operatorEmail);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerTicketsTicketIdDelete: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();
$ticketId = ticketId_example; // String | 
$reason = reason_example; // String | 
$showDeletedTicket = true; // Boolean | 
$operatorEmail = operatorEmail_example; // String | 

try {
    $result = $api_instance->organizerTicketsTicketIdDelete($ticketId, $reason, $showDeletedTicket, $operatorEmail);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerTicketsTicketIdDelete: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::OPenAPIClient::Configuration;
use WWW::OPenAPIClient::DefaultApi;

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DefaultApi->new();
my $ticketId = ticketId_example; # String | 
my $reason = reason_example; # String | 
my $showDeletedTicket = true; # Boolean | 
my $operatorEmail = operatorEmail_example; # String | 

eval {
    my $result = $api_instance->organizerTicketsTicketIdDelete(ticketId => $ticketId, reason => $reason, showDeletedTicket => $showDeletedTicket, operatorEmail => $operatorEmail);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerTicketsTicketIdDelete: $@\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.DefaultApi()
ticketId = ticketId_example # String |  (default to null)
reason = reason_example # String |  (optional) (default to null)
showDeletedTicket = true # Boolean |  (optional) (default to null)
operatorEmail = operatorEmail_example # String |  (optional) (default to null)

try:
    api_response = api_instance.organizer_tickets_ticket_id_delete(ticketId, reason=reason, showDeletedTicket=showDeletedTicket, operatorEmail=operatorEmail)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerTicketsTicketIdDelete: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let ticketId = ticketId_example; // String
    let reason = reason_example; // String
    let showDeletedTicket = true; // Boolean
    let operatorEmail = operatorEmail_example; // String

    let mut context = DefaultApi::Context::default();
    let result = client.organizerTicketsTicketIdDelete(ticketId, reason, showDeletedTicket, operatorEmail, &context).wait();

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

Scopes

Parameters

Path parameters
Name Description
ticketId*
String
Required
Query parameters
Name Description
reason
String
showDeletedTicket
Boolean
operatorEmail
String

Responses


organizerTicketsTicketIdGet

Get information about a single ticket


/organizer/tickets/{ticketId}

Usage and SDK Samples

curl -X GET \
 -H "Accept: application/json" \
 "https://api.tixngo.io/prod/v1.0/organizer/tickets/{ticketId}?language=language_example"
import com.secutix.tixngo.v1.0.*;
import com.secutix.tixngo.v1.0.auth.*;
import com.secutix.tixngo.v1.0.model.*;
import com.secutix.tixngo.v1.0.api.DefaultApi;

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

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

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();
        String ticketId = ticketId_example; // String | 
        String language = language_example; // String | 

        try {
            OrganizerTicketDetailResponse result = apiInstance.organizerTicketsTicketIdGet(ticketId, language);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerTicketsTicketIdGet");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();

final String ticketId = new String(); // String | 
final String language = new String(); // String | 

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

import com.secutix.tixngo.v1.0.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        String ticketId = ticketId_example; // String | 
        String language = language_example; // String | 

        try {
            OrganizerTicketDetailResponse result = apiInstance.organizerTicketsTicketIdGet(ticketId, language);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerTicketsTicketIdGet");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];
String *ticketId = ticketId_example; //  (default to null)
String *language = language_example; //  (optional) (default to null)

[apiInstance organizerTicketsTicketIdGetWith:ticketId
    language:language
              completionHandler: ^(OrganizerTicketDetailResponse output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var TixngoRestApiBackendOrganizerApi = require('tixngo_rest_api_backend_organizer_api');

// Create an instance of the API class
var api = new TixngoRestApiBackendOrganizerApi.DefaultApi()
var ticketId = ticketId_example; // {String} 
var opts = {
  'language': language_example // {String} 
};

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

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

            // Create an instance of the API class
            var apiInstance = new DefaultApi();
            var ticketId = ticketId_example;  // String |  (default to null)
            var language = language_example;  // String |  (optional)  (default to null)

            try {
                OrganizerTicketDetailResponse result = apiInstance.organizerTicketsTicketIdGet(ticketId, language);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerTicketsTicketIdGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();
$ticketId = ticketId_example; // String | 
$language = language_example; // String | 

try {
    $result = $api_instance->organizerTicketsTicketIdGet($ticketId, $language);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerTicketsTicketIdGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::OPenAPIClient::Configuration;
use WWW::OPenAPIClient::DefaultApi;

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DefaultApi->new();
my $ticketId = ticketId_example; # String | 
my $language = language_example; # String | 

eval {
    my $result = $api_instance->organizerTicketsTicketIdGet(ticketId => $ticketId, language => $language);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerTicketsTicketIdGet: $@\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.DefaultApi()
ticketId = ticketId_example # String |  (default to null)
language = language_example # String |  (optional) (default to null)

try:
    api_response = api_instance.organizer_tickets_ticket_id_get(ticketId, language=language)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerTicketsTicketIdGet: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let ticketId = ticketId_example; // String
    let language = language_example; // String

    let mut context = DefaultApi::Context::default();
    let result = client.organizerTicketsTicketIdGet(ticketId, language, &context).wait();

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

Scopes

Parameters

Path parameters
Name Description
ticketId*
String
Required
Query parameters
Name Description
language
String

Responses


organizerTicketsTicketIdPatch

Update information of a ticket. This path ensure that only the ticket will be affected and no corner case happen


/organizer/tickets/{ticketId}

Usage and SDK Samples

curl -X PATCH \
 -H "Content-Type: application/json" \
 "https://api.tixngo.io/prod/v1.0/organizer/tickets/{ticketId}?mustNotifySpectator=true" \
 -d '{
  "ticketImageUrl" : "ticketImageUrl",
  "security" : {
    "clearanceLevel" : 5,
    "barcode" : "barcode"
  },
  "transferRules" : {
    "maxNumberOfTransferPerTicketInGroupId" : 3,
    "allowReturnToOrganizerForInitialSpectator" : false,
    "s360ExchangeForAnySpectator" : false,
    "maxNumberOfTransferPerPhoneInGroupId" : 9,
    "groupId" : "groupId",
    "allowTransferAfterActivation" : false,
    "allowTransferAfterControl" : false,
    "keepOneAtInjectInGroupId" : false,
    "keepOneInGroupId" : false,
    "assignTransferLimit" : 2,
    "allowTransferAfterActivationByBT" : true,
    "allowTransferMainApplicant" : false,
    "allowTransfer" : true,
    "s360ExchangeForInitialSpectator" : false,
    "transferLevel" : 4,
    "allowReturnToOrganizer" : false,
    "maxNumberOfTicketPerPhoneInGroupId" : 7
  },
  "sortingKey" : "sortingKey",
  "designId" : "designId",
  "controlledDate" : "2000-01-23T04:56:07.000+00:00",
  "lang" : "lang",
  "activationParameters" : {
    "method" : "online",
    "time" : "2000-01-23T04:56:07.000+00:00"
  },
  "ticketDetails" : {
    "hidden" : [ {
      "lang" : "en",
      "value" : "value",
      "key" : "key"
    }, {
      "lang" : "en",
      "value" : "value",
      "key" : "key"
    }, {
      "lang" : "en",
      "value" : "value",
      "key" : "key"
    }, {
      "lang" : "en",
      "value" : "value",
      "key" : "key"
    }, {
      "lang" : "en",
      "value" : "value",
      "key" : "key"
    } ],
    "extra" : [ {
      "lang" : "en",
      "value" : "value",
      "key" : "key"
    }, {
      "lang" : "en",
      "value" : "value",
      "key" : "key"
    }, {
      "lang" : "en",
      "value" : "value",
      "key" : "key"
    }, {
      "lang" : "en",
      "value" : "value",
      "key" : "key"
    }, {
      "lang" : "en",
      "value" : "value",
      "key" : "key"
    } ],
    "main" : [ {
      "lang" : "en",
      "value" : "value",
      "key" : "key"
    }, {
      "lang" : "en",
      "value" : "value",
      "key" : "key"
    }, {
      "lang" : "en",
      "value" : "value",
      "key" : "key"
    }, {
      "lang" : "en",
      "value" : "value",
      "key" : "key"
    }, {
      "lang" : "en",
      "value" : "value",
      "key" : "key"
    } ]
  },
  "status" : "controlled"
}'
import com.secutix.tixngo.v1.0.*;
import com.secutix.tixngo.v1.0.auth.*;
import com.secutix.tixngo.v1.0.model.*;
import com.secutix.tixngo.v1.0.api.DefaultApi;

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

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

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();
        String ticketId = ticketId_example; // String | 
        OrganizerSelfAffectedEditableTicket organizerSelfAffectedEditableTicket = ; // OrganizerSelfAffectedEditableTicket | 
        Boolean mustNotifySpectator = true; // Boolean | 

        try {
            apiInstance.organizerTicketsTicketIdPatch(ticketId, organizerSelfAffectedEditableTicket, mustNotifySpectator);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerTicketsTicketIdPatch");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();

final String ticketId = new String(); // String | 
final OrganizerSelfAffectedEditableTicket organizerSelfAffectedEditableTicket = new OrganizerSelfAffectedEditableTicket(); // OrganizerSelfAffectedEditableTicket | 
final Boolean mustNotifySpectator = new Boolean(); // Boolean | 

try {
    final result = await api_instance.organizerTicketsTicketIdPatch(ticketId, organizerSelfAffectedEditableTicket, mustNotifySpectator);
    print(result);
} catch (e) {
    print('Exception when calling DefaultApi->organizerTicketsTicketIdPatch: $e\n');
}

import com.secutix.tixngo.v1.0.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        String ticketId = ticketId_example; // String | 
        OrganizerSelfAffectedEditableTicket organizerSelfAffectedEditableTicket = ; // OrganizerSelfAffectedEditableTicket | 
        Boolean mustNotifySpectator = true; // Boolean | 

        try {
            apiInstance.organizerTicketsTicketIdPatch(ticketId, organizerSelfAffectedEditableTicket, mustNotifySpectator);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerTicketsTicketIdPatch");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];
String *ticketId = ticketId_example; //  (default to null)
OrganizerSelfAffectedEditableTicket *organizerSelfAffectedEditableTicket = ; // 
Boolean *mustNotifySpectator = true; //  (optional) (default to null)

[apiInstance organizerTicketsTicketIdPatchWith:ticketId
    organizerSelfAffectedEditableTicket:organizerSelfAffectedEditableTicket
    mustNotifySpectator:mustNotifySpectator
              completionHandler: ^(NSError* error) {
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var TixngoRestApiBackendOrganizerApi = require('tixngo_rest_api_backend_organizer_api');

// Create an instance of the API class
var api = new TixngoRestApiBackendOrganizerApi.DefaultApi()
var ticketId = ticketId_example; // {String} 
var organizerSelfAffectedEditableTicket = ; // {OrganizerSelfAffectedEditableTicket} 
var opts = {
  'mustNotifySpectator': true // {Boolean} 
};

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

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

            // Create an instance of the API class
            var apiInstance = new DefaultApi();
            var ticketId = ticketId_example;  // String |  (default to null)
            var organizerSelfAffectedEditableTicket = new OrganizerSelfAffectedEditableTicket(); // OrganizerSelfAffectedEditableTicket | 
            var mustNotifySpectator = true;  // Boolean |  (optional)  (default to null)

            try {
                apiInstance.organizerTicketsTicketIdPatch(ticketId, organizerSelfAffectedEditableTicket, mustNotifySpectator);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerTicketsTicketIdPatch: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();
$ticketId = ticketId_example; // String | 
$organizerSelfAffectedEditableTicket = ; // OrganizerSelfAffectedEditableTicket | 
$mustNotifySpectator = true; // Boolean | 

try {
    $api_instance->organizerTicketsTicketIdPatch($ticketId, $organizerSelfAffectedEditableTicket, $mustNotifySpectator);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerTicketsTicketIdPatch: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::OPenAPIClient::Configuration;
use WWW::OPenAPIClient::DefaultApi;

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DefaultApi->new();
my $ticketId = ticketId_example; # String | 
my $organizerSelfAffectedEditableTicket = WWW::OPenAPIClient::Object::OrganizerSelfAffectedEditableTicket->new(); # OrganizerSelfAffectedEditableTicket | 
my $mustNotifySpectator = true; # Boolean | 

eval {
    $api_instance->organizerTicketsTicketIdPatch(ticketId => $ticketId, organizerSelfAffectedEditableTicket => $organizerSelfAffectedEditableTicket, mustNotifySpectator => $mustNotifySpectator);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerTicketsTicketIdPatch: $@\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.DefaultApi()
ticketId = ticketId_example # String |  (default to null)
organizerSelfAffectedEditableTicket =  # OrganizerSelfAffectedEditableTicket | 
mustNotifySpectator = true # Boolean |  (optional) (default to null)

try:
    api_instance.organizer_tickets_ticket_id_patch(ticketId, organizerSelfAffectedEditableTicket, mustNotifySpectator=mustNotifySpectator)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerTicketsTicketIdPatch: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let ticketId = ticketId_example; // String
    let organizerSelfAffectedEditableTicket = ; // OrganizerSelfAffectedEditableTicket
    let mustNotifySpectator = true; // Boolean

    let mut context = DefaultApi::Context::default();
    let result = client.organizerTicketsTicketIdPatch(ticketId, organizerSelfAffectedEditableTicket, mustNotifySpectator, &context).wait();

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

Scopes

Parameters

Path parameters
Name Description
ticketId*
String
Required
Body parameters
Name Description
organizerSelfAffectedEditableTicket *

Query parameters
Name Description
mustNotifySpectator
Boolean

Responses


organizerTransfersPut

Create transfers. Can only be used by the owner (organizer) of the ticket.


/organizer/transfers

Usage and SDK Samples

curl -X PUT \
 -H "Accept: application/json" \
 -H "Content-Type: application/json" \
 "https://api.tixngo.io/prod/v1.0/organizer/transfers" \
 -d '{
  "reason" : "reason",
  "unlock" : true,
  "price" : {
    "amount" : 6.027456183070403,
    "currency" : "currency"
  },
  "extra" : "extra",
  "to" : "to",
  "recipientInfo" : {
    "firstName" : "firstName",
    "lastName" : "lastName"
  },
  "ticketId" : "ticketId"
}'
import com.secutix.tixngo.v1.0.*;
import com.secutix.tixngo.v1.0.auth.*;
import com.secutix.tixngo.v1.0.model.*;
import com.secutix.tixngo.v1.0.api.DefaultApi;

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

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

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();
        set[OrganizerTransferOrder] organizerTransferOrder = ; // set[OrganizerTransferOrder] | 

        try {
            OrganizerTransferPutResponse result = apiInstance.organizerTransfersPut(organizerTransferOrder);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerTransfersPut");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();

final set[OrganizerTransferOrder] organizerTransferOrder = new set[OrganizerTransferOrder](); // set[OrganizerTransferOrder] | 

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

import com.secutix.tixngo.v1.0.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        set[OrganizerTransferOrder] organizerTransferOrder = ; // set[OrganizerTransferOrder] | 

        try {
            OrganizerTransferPutResponse result = apiInstance.organizerTransfersPut(organizerTransferOrder);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerTransfersPut");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];
set[OrganizerTransferOrder] *organizerTransferOrder = ; //  (optional)

[apiInstance organizerTransfersPutWith:organizerTransferOrder
              completionHandler: ^(OrganizerTransferPutResponse output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var TixngoRestApiBackendOrganizerApi = require('tixngo_rest_api_backend_organizer_api');

// Create an instance of the API class
var api = new TixngoRestApiBackendOrganizerApi.DefaultApi()
var opts = {
  'organizerTransferOrder':  // {set[OrganizerTransferOrder]} 
};

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

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

            // Create an instance of the API class
            var apiInstance = new DefaultApi();
            var organizerTransferOrder = new set[OrganizerTransferOrder](); // set[OrganizerTransferOrder] |  (optional) 

            try {
                OrganizerTransferPutResponse result = apiInstance.organizerTransfersPut(organizerTransferOrder);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerTransfersPut: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();
$organizerTransferOrder = ; // set[OrganizerTransferOrder] | 

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

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DefaultApi->new();
my $organizerTransferOrder = [WWW::OPenAPIClient::Object::set[OrganizerTransferOrder]->new()]; # set[OrganizerTransferOrder] | 

eval {
    my $result = $api_instance->organizerTransfersPut(organizerTransferOrder => $organizerTransferOrder);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerTransfersPut: $@\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.DefaultApi()
organizerTransferOrder =  # set[OrganizerTransferOrder] |  (optional)

try:
    api_response = api_instance.organizer_transfers_put(organizerTransferOrder=organizerTransferOrder)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerTransfersPut: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let organizerTransferOrder = ; // set[OrganizerTransferOrder]

    let mut context = DefaultApi::Context::default();
    let result = client.organizerTransfersPut(organizerTransferOrder, &context).wait();

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

Scopes

Parameters

Body parameters
Name Description
organizerTransferOrder

Responses


organizerTransfersSingleTicketPut

Create a transfer, by the organizer of the ticket, to a new email


/organizer/transfers/single-ticket

Usage and SDK Samples

curl -X PUT \
 -H "Accept: application/json" \
 -H "Content-Type: application/json" \
 "https://api.tixngo.io/prod/v1.0/organizer/transfers/single-ticket" \
 -d '{
  "reason" : "reason",
  "unlock" : true,
  "to" : "to",
  "recipientInfo" : {
    "firstName" : "firstName",
    "lastName" : "lastName"
  },
  "ticketId" : "ticketId"
}'
import com.secutix.tixngo.v1.0.*;
import com.secutix.tixngo.v1.0.auth.*;
import com.secutix.tixngo.v1.0.model.*;
import com.secutix.tixngo.v1.0.api.DefaultApi;

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

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

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();
        OrganizerSingleTransferPutRequest organizerSingleTransferPutRequest = ; // OrganizerSingleTransferPutRequest | 

        try {
            OrganizerSingleTransferPutRequest result = apiInstance.organizerTransfersSingleTicketPut(organizerSingleTransferPutRequest);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerTransfersSingleTicketPut");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();

final OrganizerSingleTransferPutRequest organizerSingleTransferPutRequest = new OrganizerSingleTransferPutRequest(); // OrganizerSingleTransferPutRequest | 

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

import com.secutix.tixngo.v1.0.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        OrganizerSingleTransferPutRequest organizerSingleTransferPutRequest = ; // OrganizerSingleTransferPutRequest | 

        try {
            OrganizerSingleTransferPutRequest result = apiInstance.organizerTransfersSingleTicketPut(organizerSingleTransferPutRequest);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerTransfersSingleTicketPut");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];
OrganizerSingleTransferPutRequest *organizerSingleTransferPutRequest = ; //  (optional)

[apiInstance organizerTransfersSingleTicketPutWith:organizerSingleTransferPutRequest
              completionHandler: ^(OrganizerSingleTransferPutRequest output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var TixngoRestApiBackendOrganizerApi = require('tixngo_rest_api_backend_organizer_api');

// Create an instance of the API class
var api = new TixngoRestApiBackendOrganizerApi.DefaultApi()
var opts = {
  'organizerSingleTransferPutRequest':  // {OrganizerSingleTransferPutRequest} 
};

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

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

            // Create an instance of the API class
            var apiInstance = new DefaultApi();
            var organizerSingleTransferPutRequest = new OrganizerSingleTransferPutRequest(); // OrganizerSingleTransferPutRequest |  (optional) 

            try {
                OrganizerSingleTransferPutRequest result = apiInstance.organizerTransfersSingleTicketPut(organizerSingleTransferPutRequest);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerTransfersSingleTicketPut: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();
$organizerSingleTransferPutRequest = ; // OrganizerSingleTransferPutRequest | 

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

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DefaultApi->new();
my $organizerSingleTransferPutRequest = WWW::OPenAPIClient::Object::OrganizerSingleTransferPutRequest->new(); # OrganizerSingleTransferPutRequest | 

eval {
    my $result = $api_instance->organizerTransfersSingleTicketPut(organizerSingleTransferPutRequest => $organizerSingleTransferPutRequest);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerTransfersSingleTicketPut: $@\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.DefaultApi()
organizerSingleTransferPutRequest =  # OrganizerSingleTransferPutRequest |  (optional)

try:
    api_response = api_instance.organizer_transfers_single_ticket_put(organizerSingleTransferPutRequest=organizerSingleTransferPutRequest)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerTransfersSingleTicketPut: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let organizerSingleTransferPutRequest = ; // OrganizerSingleTransferPutRequest

    let mut context = DefaultApi::Context::default();
    let result = client.organizerTransfersSingleTicketPut(organizerSingleTransferPutRequest, &context).wait();

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

Scopes

Parameters

Body parameters
Name Description
organizerSingleTransferPutRequest

Responses


organizerTranslationsGet

Get the translations for the applications (mobileAppId)


/organizer/translations

Usage and SDK Samples

curl -X GET \
 -H "Accept: application/json" \
 "https://api.tixngo.io/prod/v1.0/organizer/translations?mobileAppId=mobileAppId_example&lang=lang_example&key=key_example&offset=56&limit=56"
import com.secutix.tixngo.v1.0.*;
import com.secutix.tixngo.v1.0.auth.*;
import com.secutix.tixngo.v1.0.model.*;
import com.secutix.tixngo.v1.0.api.DefaultApi;

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

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

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();
        String mobileAppId = mobileAppId_example; // String | 
        Integer offset = 56; // Integer | 
        Integer limit = 56; // Integer | 
        String lang = lang_example; // String | 
        String key = key_example; // String | 

        try {
            Multilingual result = apiInstance.organizerTranslationsGet(mobileAppId, offset, limit, lang, key);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerTranslationsGet");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();

final String mobileAppId = new String(); // String | 
final Integer offset = new Integer(); // Integer | 
final Integer limit = new Integer(); // Integer | 
final String lang = new String(); // String | 
final String key = new String(); // String | 

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

import com.secutix.tixngo.v1.0.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        String mobileAppId = mobileAppId_example; // String | 
        Integer offset = 56; // Integer | 
        Integer limit = 56; // Integer | 
        String lang = lang_example; // String | 
        String key = key_example; // String | 

        try {
            Multilingual result = apiInstance.organizerTranslationsGet(mobileAppId, offset, limit, lang, key);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerTranslationsGet");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];
String *mobileAppId = mobileAppId_example; //  (default to null)
Integer *offset = 56; //  (default to null)
Integer *limit = 56; //  (default to null)
String *lang = lang_example; //  (optional) (default to null)
String *key = key_example; //  (optional) (default to null)

[apiInstance organizerTranslationsGetWith:mobileAppId
    offset:offset
    limit:limit
    lang:lang
    key:key
              completionHandler: ^(Multilingual output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var TixngoRestApiBackendOrganizerApi = require('tixngo_rest_api_backend_organizer_api');

// Create an instance of the API class
var api = new TixngoRestApiBackendOrganizerApi.DefaultApi()
var mobileAppId = mobileAppId_example; // {String} 
var offset = 56; // {Integer} 
var limit = 56; // {Integer} 
var opts = {
  'lang': lang_example, // {String} 
  'key': key_example // {String} 
};

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

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

            // Create an instance of the API class
            var apiInstance = new DefaultApi();
            var mobileAppId = mobileAppId_example;  // String |  (default to null)
            var offset = 56;  // Integer |  (default to null)
            var limit = 56;  // Integer |  (default to null)
            var lang = lang_example;  // String |  (optional)  (default to null)
            var key = key_example;  // String |  (optional)  (default to null)

            try {
                Multilingual result = apiInstance.organizerTranslationsGet(mobileAppId, offset, limit, lang, key);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerTranslationsGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();
$mobileAppId = mobileAppId_example; // String | 
$offset = 56; // Integer | 
$limit = 56; // Integer | 
$lang = lang_example; // String | 
$key = key_example; // String | 

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

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DefaultApi->new();
my $mobileAppId = mobileAppId_example; # String | 
my $offset = 56; # Integer | 
my $limit = 56; # Integer | 
my $lang = lang_example; # String | 
my $key = key_example; # String | 

eval {
    my $result = $api_instance->organizerTranslationsGet(mobileAppId => $mobileAppId, offset => $offset, limit => $limit, lang => $lang, key => $key);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerTranslationsGet: $@\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.DefaultApi()
mobileAppId = mobileAppId_example # String |  (default to null)
offset = 56 # Integer |  (default to null)
limit = 56 # Integer |  (default to null)
lang = lang_example # String |  (optional) (default to null)
key = key_example # String |  (optional) (default to null)

try:
    api_response = api_instance.organizer_translations_get(mobileAppId, offset, limit, lang=lang, key=key)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerTranslationsGet: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let mobileAppId = mobileAppId_example; // String
    let offset = 56; // Integer
    let limit = 56; // Integer
    let lang = lang_example; // String
    let key = key_example; // String

    let mut context = DefaultApi::Context::default();
    let result = client.organizerTranslationsGet(mobileAppId, offset, limit, lang, key, &context).wait();

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

Scopes

Parameters

Query parameters
Name Description
mobileAppId*
String
Required
lang
String
key
String
offset*
Integer
Required
limit*
Integer
Required

Responses


organizerTranslationsMobileAppIdLangKeyDelete

Delete the translation


/organizer/translations/{mobile-app-id}/{lang}/{key}

Usage and SDK Samples

curl -X DELETE \
 "https://api.tixngo.io/prod/v1.0/organizer/translations/{mobile-app-id}/{lang}/{key}"
import com.secutix.tixngo.v1.0.*;
import com.secutix.tixngo.v1.0.auth.*;
import com.secutix.tixngo.v1.0.model.*;
import com.secutix.tixngo.v1.0.api.DefaultApi;

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

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

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();
        String mobileAppId = mobileAppId_example; // String | 
        String lang = lang_example; // String | 
        String key = key_example; // String | 

        try {
            apiInstance.organizerTranslationsMobileAppIdLangKeyDelete(mobileAppId, lang, key);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerTranslationsMobileAppIdLangKeyDelete");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();

final String mobileAppId = new String(); // String | 
final String lang = new String(); // String | 
final String key = new String(); // String | 

try {
    final result = await api_instance.organizerTranslationsMobileAppIdLangKeyDelete(mobileAppId, lang, key);
    print(result);
} catch (e) {
    print('Exception when calling DefaultApi->organizerTranslationsMobileAppIdLangKeyDelete: $e\n');
}

import com.secutix.tixngo.v1.0.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        String mobileAppId = mobileAppId_example; // String | 
        String lang = lang_example; // String | 
        String key = key_example; // String | 

        try {
            apiInstance.organizerTranslationsMobileAppIdLangKeyDelete(mobileAppId, lang, key);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerTranslationsMobileAppIdLangKeyDelete");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];
String *mobileAppId = mobileAppId_example; //  (default to null)
String *lang = lang_example; //  (default to null)
String *key = key_example; //  (default to null)

[apiInstance organizerTranslationsMobileAppIdLangKeyDeleteWith:mobileAppId
    lang:lang
    key:key
              completionHandler: ^(NSError* error) {
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var TixngoRestApiBackendOrganizerApi = require('tixngo_rest_api_backend_organizer_api');

// Create an instance of the API class
var api = new TixngoRestApiBackendOrganizerApi.DefaultApi()
var mobileAppId = mobileAppId_example; // {String} 
var lang = lang_example; // {String} 
var key = key_example; // {String} 

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

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

            // Create an instance of the API class
            var apiInstance = new DefaultApi();
            var mobileAppId = mobileAppId_example;  // String |  (default to null)
            var lang = lang_example;  // String |  (default to null)
            var key = key_example;  // String |  (default to null)

            try {
                apiInstance.organizerTranslationsMobileAppIdLangKeyDelete(mobileAppId, lang, key);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerTranslationsMobileAppIdLangKeyDelete: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();
$mobileAppId = mobileAppId_example; // String | 
$lang = lang_example; // String | 
$key = key_example; // String | 

try {
    $api_instance->organizerTranslationsMobileAppIdLangKeyDelete($mobileAppId, $lang, $key);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerTranslationsMobileAppIdLangKeyDelete: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::OPenAPIClient::Configuration;
use WWW::OPenAPIClient::DefaultApi;

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DefaultApi->new();
my $mobileAppId = mobileAppId_example; # String | 
my $lang = lang_example; # String | 
my $key = key_example; # String | 

eval {
    $api_instance->organizerTranslationsMobileAppIdLangKeyDelete(mobileAppId => $mobileAppId, lang => $lang, key => $key);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerTranslationsMobileAppIdLangKeyDelete: $@\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.DefaultApi()
mobileAppId = mobileAppId_example # String |  (default to null)
lang = lang_example # String |  (default to null)
key = key_example # String |  (default to null)

try:
    api_instance.organizer_translations_mobile_app_id_lang_key_delete(mobileAppId, lang, key)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerTranslationsMobileAppIdLangKeyDelete: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let mobileAppId = mobileAppId_example; // String
    let lang = lang_example; // String
    let key = key_example; // String

    let mut context = DefaultApi::Context::default();
    let result = client.organizerTranslationsMobileAppIdLangKeyDelete(mobileAppId, lang, key, &context).wait();

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

Scopes

Parameters

Path parameters
Name Description
mobile-app-id*
String
Required
lang*
String
Required
key*
String
Required

Responses


organizerTranslationsMobileAppIdLangKeyGet

Get the value of the translation for the given language and mobileAppId


/organizer/translations/{mobile-app-id}/{lang}/{key}

Usage and SDK Samples

curl -X GET \
 -H "Accept: application/json" \
 "https://api.tixngo.io/prod/v1.0/organizer/translations/{mobile-app-id}/{lang}/{key}"
import com.secutix.tixngo.v1.0.*;
import com.secutix.tixngo.v1.0.auth.*;
import com.secutix.tixngo.v1.0.model.*;
import com.secutix.tixngo.v1.0.api.DefaultApi;

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

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

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();
        String mobileAppId = mobileAppId_example; // String | 
        String lang = lang_example; // String | 
        String key = key_example; // String | 

        try {
            'String' result = apiInstance.organizerTranslationsMobileAppIdLangKeyGet(mobileAppId, lang, key);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerTranslationsMobileAppIdLangKeyGet");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();

final String mobileAppId = new String(); // String | 
final String lang = new String(); // String | 
final String key = new String(); // String | 

try {
    final result = await api_instance.organizerTranslationsMobileAppIdLangKeyGet(mobileAppId, lang, key);
    print(result);
} catch (e) {
    print('Exception when calling DefaultApi->organizerTranslationsMobileAppIdLangKeyGet: $e\n');
}

import com.secutix.tixngo.v1.0.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        String mobileAppId = mobileAppId_example; // String | 
        String lang = lang_example; // String | 
        String key = key_example; // String | 

        try {
            'String' result = apiInstance.organizerTranslationsMobileAppIdLangKeyGet(mobileAppId, lang, key);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerTranslationsMobileAppIdLangKeyGet");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];
String *mobileAppId = mobileAppId_example; //  (default to null)
String *lang = lang_example; //  (default to null)
String *key = key_example; //  (default to null)

[apiInstance organizerTranslationsMobileAppIdLangKeyGetWith:mobileAppId
    lang:lang
    key:key
              completionHandler: ^('String' output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var TixngoRestApiBackendOrganizerApi = require('tixngo_rest_api_backend_organizer_api');

// Create an instance of the API class
var api = new TixngoRestApiBackendOrganizerApi.DefaultApi()
var mobileAppId = mobileAppId_example; // {String} 
var lang = lang_example; // {String} 
var key = key_example; // {String} 

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

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

            // Create an instance of the API class
            var apiInstance = new DefaultApi();
            var mobileAppId = mobileAppId_example;  // String |  (default to null)
            var lang = lang_example;  // String |  (default to null)
            var key = key_example;  // String |  (default to null)

            try {
                'String' result = apiInstance.organizerTranslationsMobileAppIdLangKeyGet(mobileAppId, lang, key);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerTranslationsMobileAppIdLangKeyGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();
$mobileAppId = mobileAppId_example; // String | 
$lang = lang_example; // String | 
$key = key_example; // String | 

try {
    $result = $api_instance->organizerTranslationsMobileAppIdLangKeyGet($mobileAppId, $lang, $key);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerTranslationsMobileAppIdLangKeyGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::OPenAPIClient::Configuration;
use WWW::OPenAPIClient::DefaultApi;

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DefaultApi->new();
my $mobileAppId = mobileAppId_example; # String | 
my $lang = lang_example; # String | 
my $key = key_example; # String | 

eval {
    my $result = $api_instance->organizerTranslationsMobileAppIdLangKeyGet(mobileAppId => $mobileAppId, lang => $lang, key => $key);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerTranslationsMobileAppIdLangKeyGet: $@\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.DefaultApi()
mobileAppId = mobileAppId_example # String |  (default to null)
lang = lang_example # String |  (default to null)
key = key_example # String |  (default to null)

try:
    api_response = api_instance.organizer_translations_mobile_app_id_lang_key_get(mobileAppId, lang, key)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerTranslationsMobileAppIdLangKeyGet: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let mobileAppId = mobileAppId_example; // String
    let lang = lang_example; // String
    let key = key_example; // String

    let mut context = DefaultApi::Context::default();
    let result = client.organizerTranslationsMobileAppIdLangKeyGet(mobileAppId, lang, key, &context).wait();

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

Scopes

Parameters

Path parameters
Name Description
mobile-app-id*
String
Required
lang*
String
Required
key*
String
Required

Responses


organizerTranslationsMobileAppIdLangKeyPut

Update the value of the translation for the given language and mobileAppId


/organizer/translations/{mobile-app-id}/{lang}/{key}

Usage and SDK Samples

curl -X PUT \
 -H "Content-Type: application/json" \
 "https://api.tixngo.io/prod/v1.0/organizer/translations/{mobile-app-id}/{lang}/{key}" \
 -d ''
import com.secutix.tixngo.v1.0.*;
import com.secutix.tixngo.v1.0.auth.*;
import com.secutix.tixngo.v1.0.model.*;
import com.secutix.tixngo.v1.0.api.DefaultApi;

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

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

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();
        String mobileAppId = mobileAppId_example; // String | 
        String lang = lang_example; // String | 
        String key = key_example; // String | 
        String body = body_example; // String | 

        try {
            apiInstance.organizerTranslationsMobileAppIdLangKeyPut(mobileAppId, lang, key, body);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerTranslationsMobileAppIdLangKeyPut");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();

final String mobileAppId = new String(); // String | 
final String lang = new String(); // String | 
final String key = new String(); // String | 
final String body = new String(); // String | 

try {
    final result = await api_instance.organizerTranslationsMobileAppIdLangKeyPut(mobileAppId, lang, key, body);
    print(result);
} catch (e) {
    print('Exception when calling DefaultApi->organizerTranslationsMobileAppIdLangKeyPut: $e\n');
}

import com.secutix.tixngo.v1.0.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        String mobileAppId = mobileAppId_example; // String | 
        String lang = lang_example; // String | 
        String key = key_example; // String | 
        String body = body_example; // String | 

        try {
            apiInstance.organizerTranslationsMobileAppIdLangKeyPut(mobileAppId, lang, key, body);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerTranslationsMobileAppIdLangKeyPut");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];
String *mobileAppId = mobileAppId_example; //  (default to null)
String *lang = lang_example; //  (default to null)
String *key = key_example; //  (default to null)
String *body = body_example; // 

[apiInstance organizerTranslationsMobileAppIdLangKeyPutWith:mobileAppId
    lang:lang
    key:key
    body:body
              completionHandler: ^(NSError* error) {
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var TixngoRestApiBackendOrganizerApi = require('tixngo_rest_api_backend_organizer_api');

// Create an instance of the API class
var api = new TixngoRestApiBackendOrganizerApi.DefaultApi()
var mobileAppId = mobileAppId_example; // {String} 
var lang = lang_example; // {String} 
var key = key_example; // {String} 
var body = body_example; // {String} 

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.organizerTranslationsMobileAppIdLangKeyPut(mobileAppId, lang, key, body, callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

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

            // Create an instance of the API class
            var apiInstance = new DefaultApi();
            var mobileAppId = mobileAppId_example;  // String |  (default to null)
            var lang = lang_example;  // String |  (default to null)
            var key = key_example;  // String |  (default to null)
            var body = body_example;  // String | 

            try {
                apiInstance.organizerTranslationsMobileAppIdLangKeyPut(mobileAppId, lang, key, body);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerTranslationsMobileAppIdLangKeyPut: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();
$mobileAppId = mobileAppId_example; // String | 
$lang = lang_example; // String | 
$key = key_example; // String | 
$body = body_example; // String | 

try {
    $api_instance->organizerTranslationsMobileAppIdLangKeyPut($mobileAppId, $lang, $key, $body);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerTranslationsMobileAppIdLangKeyPut: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::OPenAPIClient::Configuration;
use WWW::OPenAPIClient::DefaultApi;

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DefaultApi->new();
my $mobileAppId = mobileAppId_example; # String | 
my $lang = lang_example; # String | 
my $key = key_example; # String | 
my $body = WWW::OPenAPIClient::Object::String->new(); # String | 

eval {
    $api_instance->organizerTranslationsMobileAppIdLangKeyPut(mobileAppId => $mobileAppId, lang => $lang, key => $key, body => $body);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerTranslationsMobileAppIdLangKeyPut: $@\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.DefaultApi()
mobileAppId = mobileAppId_example # String |  (default to null)
lang = lang_example # String |  (default to null)
key = key_example # String |  (default to null)
body = body_example # String | 

try:
    api_instance.organizer_translations_mobile_app_id_lang_key_put(mobileAppId, lang, key, body)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerTranslationsMobileAppIdLangKeyPut: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let mobileAppId = mobileAppId_example; // String
    let lang = lang_example; // String
    let key = key_example; // String
    let body = body_example; // String

    let mut context = DefaultApi::Context::default();
    let result = client.organizerTranslationsMobileAppIdLangKeyPut(mobileAppId, lang, key, body, &context).wait();

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

Scopes

Parameters

Path parameters
Name Description
mobile-app-id*
String
Required
lang*
String
Required
key*
String
Required
Body parameters
Name Description
body *

Responses


organizerTxlogsGet

Get the transaction logs. The transaction logs are all the events that happened in the blockchain, in particular injection and transfer


/organizer/txlogs

Usage and SDK Samples

curl -X GET \
 -H "Accept: application/json" \
 "https://api.tixngo.io/prod/v1.0/organizer/txlogs?limit=limit_example&offset=offset_example&txHash=txHash_example&status=status_example&from=from_example&to=to_example&txType=txType_example&ticketId=ticketId_example&email=email_example&mobileAppId=mobileAppId_example&taxationNumber=taxationNumber_example&contingentIds="
import com.secutix.tixngo.v1.0.*;
import com.secutix.tixngo.v1.0.auth.*;
import com.secutix.tixngo.v1.0.model.*;
import com.secutix.tixngo.v1.0.api.DefaultApi;

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

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

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();
        String limit = limit_example; // String | 
        String offset = offset_example; // String | 
        String txHash = txHash_example; // String | 
        String status = status_example; // String | 
        String from = from_example; // String | 
        String to = to_example; // String | 
        String txType = txType_example; // String | 
        String ticketId = ticketId_example; // String | 
        String email = email_example; // String | Email of sender or recipient
        String mobileAppId = mobileAppId_example; // String | Mobile app id of ticket
        String taxationNumber = taxationNumber_example; // String | taxation number of ticket
        array[String] contingentIds = ; // array[String] | 

        try {
            OrganizerTxLogsSearchResponse result = apiInstance.organizerTxlogsGet(limit, offset, txHash, status, from, to, txType, ticketId, email, mobileAppId, taxationNumber, contingentIds);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerTxlogsGet");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();

final String limit = new String(); // String | 
final String offset = new String(); // String | 
final String txHash = new String(); // String | 
final String status = new String(); // String | 
final String from = new String(); // String | 
final String to = new String(); // String | 
final String txType = new String(); // String | 
final String ticketId = new String(); // String | 
final String email = new String(); // String | Email of sender or recipient
final String mobileAppId = new String(); // String | Mobile app id of ticket
final String taxationNumber = new String(); // String | taxation number of ticket
final array[String] contingentIds = new array[String](); // array[String] | 

try {
    final result = await api_instance.organizerTxlogsGet(limit, offset, txHash, status, from, to, txType, ticketId, email, mobileAppId, taxationNumber, contingentIds);
    print(result);
} catch (e) {
    print('Exception when calling DefaultApi->organizerTxlogsGet: $e\n');
}

import com.secutix.tixngo.v1.0.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        String limit = limit_example; // String | 
        String offset = offset_example; // String | 
        String txHash = txHash_example; // String | 
        String status = status_example; // String | 
        String from = from_example; // String | 
        String to = to_example; // String | 
        String txType = txType_example; // String | 
        String ticketId = ticketId_example; // String | 
        String email = email_example; // String | Email of sender or recipient
        String mobileAppId = mobileAppId_example; // String | Mobile app id of ticket
        String taxationNumber = taxationNumber_example; // String | taxation number of ticket
        array[String] contingentIds = ; // array[String] | 

        try {
            OrganizerTxLogsSearchResponse result = apiInstance.organizerTxlogsGet(limit, offset, txHash, status, from, to, txType, ticketId, email, mobileAppId, taxationNumber, contingentIds);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerTxlogsGet");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];
String *limit = limit_example; //  (default to null)
String *offset = offset_example; //  (default to null)
String *txHash = txHash_example; //  (optional) (default to null)
String *status = status_example; //  (optional) (default to null)
String *from = from_example; //  (optional) (default to null)
String *to = to_example; //  (optional) (default to null)
String *txType = txType_example; //  (optional) (default to null)
String *ticketId = ticketId_example; //  (optional) (default to null)
String *email = email_example; // Email of sender or recipient (optional) (default to null)
String *mobileAppId = mobileAppId_example; // Mobile app id of ticket (optional) (default to null)
String *taxationNumber = taxationNumber_example; // taxation number of ticket (optional) (default to null)
array[String] *contingentIds = ; //  (optional) (default to null)

[apiInstance organizerTxlogsGetWith:limit
    offset:offset
    txHash:txHash
    status:status
    from:from
    to:to
    txType:txType
    ticketId:ticketId
    email:email
    mobileAppId:mobileAppId
    taxationNumber:taxationNumber
    contingentIds:contingentIds
              completionHandler: ^(OrganizerTxLogsSearchResponse output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var TixngoRestApiBackendOrganizerApi = require('tixngo_rest_api_backend_organizer_api');

// Create an instance of the API class
var api = new TixngoRestApiBackendOrganizerApi.DefaultApi()
var limit = limit_example; // {String} 
var offset = offset_example; // {String} 
var opts = {
  'txHash': txHash_example, // {String} 
  'status': status_example, // {String} 
  'from': from_example, // {String} 
  'to': to_example, // {String} 
  'txType': txType_example, // {String} 
  'ticketId': ticketId_example, // {String} 
  'email': email_example, // {String} Email of sender or recipient
  'mobileAppId': mobileAppId_example, // {String} Mobile app id of ticket
  'taxationNumber': taxationNumber_example, // {String} taxation number of ticket
  'contingentIds':  // {array[String]} 
};

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.organizerTxlogsGet(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 organizerTxlogsGetExample
    {
        public void main()
        {

            // Create an instance of the API class
            var apiInstance = new DefaultApi();
            var limit = limit_example;  // String |  (default to null)
            var offset = offset_example;  // String |  (default to null)
            var txHash = txHash_example;  // String |  (optional)  (default to null)
            var status = status_example;  // String |  (optional)  (default to null)
            var from = from_example;  // String |  (optional)  (default to null)
            var to = to_example;  // String |  (optional)  (default to null)
            var txType = txType_example;  // String |  (optional)  (default to null)
            var ticketId = ticketId_example;  // String |  (optional)  (default to null)
            var email = email_example;  // String | Email of sender or recipient (optional)  (default to null)
            var mobileAppId = mobileAppId_example;  // String | Mobile app id of ticket (optional)  (default to null)
            var taxationNumber = taxationNumber_example;  // String | taxation number of ticket (optional)  (default to null)
            var contingentIds = new array[String](); // array[String] |  (optional)  (default to null)

            try {
                OrganizerTxLogsSearchResponse result = apiInstance.organizerTxlogsGet(limit, offset, txHash, status, from, to, txType, ticketId, email, mobileAppId, taxationNumber, contingentIds);
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerTxlogsGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();
$limit = limit_example; // String | 
$offset = offset_example; // String | 
$txHash = txHash_example; // String | 
$status = status_example; // String | 
$from = from_example; // String | 
$to = to_example; // String | 
$txType = txType_example; // String | 
$ticketId = ticketId_example; // String | 
$email = email_example; // String | Email of sender or recipient
$mobileAppId = mobileAppId_example; // String | Mobile app id of ticket
$taxationNumber = taxationNumber_example; // String | taxation number of ticket
$contingentIds = ; // array[String] | 

try {
    $result = $api_instance->organizerTxlogsGet($limit, $offset, $txHash, $status, $from, $to, $txType, $ticketId, $email, $mobileAppId, $taxationNumber, $contingentIds);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerTxlogsGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::OPenAPIClient::Configuration;
use WWW::OPenAPIClient::DefaultApi;

# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DefaultApi->new();
my $limit = limit_example; # String | 
my $offset = offset_example; # String | 
my $txHash = txHash_example; # String | 
my $status = status_example; # String | 
my $from = from_example; # String | 
my $to = to_example; # String | 
my $txType = txType_example; # String | 
my $ticketId = ticketId_example; # String | 
my $email = email_example; # String | Email of sender or recipient
my $mobileAppId = mobileAppId_example; # String | Mobile app id of ticket
my $taxationNumber = taxationNumber_example; # String | taxation number of ticket
my $contingentIds = []; # array[String] | 

eval {
    my $result = $api_instance->organizerTxlogsGet(limit => $limit, offset => $offset, txHash => $txHash, status => $status, from => $from, to => $to, txType => $txType, ticketId => $ticketId, email => $email, mobileAppId => $mobileAppId, taxationNumber => $taxationNumber, contingentIds => $contingentIds);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerTxlogsGet: $@\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.DefaultApi()
limit = limit_example # String |  (default to null)
offset = offset_example # String |  (default to null)
txHash = txHash_example # String |  (optional) (default to null)
status = status_example # String |  (optional) (default to null)
from = from_example # String |  (optional) (default to null)
to = to_example # String |  (optional) (default to null)
txType = txType_example # String |  (optional) (default to null)
ticketId = ticketId_example # String |  (optional) (default to null)
email = email_example # String | Email of sender or recipient (optional) (default to null)
mobileAppId = mobileAppId_example # String | Mobile app id of ticket (optional) (default to null)
taxationNumber = taxationNumber_example # String | taxation number of ticket (optional) (default to null)
contingentIds =  # array[String] |  (optional) (default to null)

try:
    api_response = api_instance.organizer_txlogs_get(limit, offset, txHash=txHash, status=status, from=from, to=to, txType=txType, ticketId=ticketId, email=email, mobileAppId=mobileAppId, taxationNumber=taxationNumber, contingentIds=contingentIds)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerTxlogsGet: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let limit = limit_example; // String
    let offset = offset_example; // String
    let txHash = txHash_example; // String
    let status = status_example; // String
    let from = from_example; // String
    let to = to_example; // String
    let txType = txType_example; // String
    let ticketId = ticketId_example; // String
    let email = email_example; // String
    let mobileAppId = mobileAppId_example; // String
    let taxationNumber = taxationNumber_example; // String
    let contingentIds = ; // array[String]

    let mut context = DefaultApi::Context::default();
    let result = client.organizerTxlogsGet(limit, offset, txHash, status, from, to, txType, ticketId, email, mobileAppId, taxationNumber, contingentIds, &context).wait();

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

Scopes

Parameters

Query parameters
Name Description
limit*
String
Required
offset*
String
Required
txHash
String
status
String
from
String
to
String
txType
String
ticketId
String
email
String
Email of sender or recipient
mobileAppId
String
Mobile app id of ticket
taxationNumber
String
taxation number of ticket
contingentIds
array[String]

Responses