TIXNGO REST API backend-organizer-api

Default

organizerAccessValidationOptions

CORS support

Enable CORS by returning correct headers


/organizer/access/validation

Usage and SDK Samples

curl -X OPTIONS \
 "https://api.tixngo.io/prod/_legacy/organizer/access/validation"
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

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

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

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

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

final api_instance = DefaultApi();


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

import com.secutix.tixngo._legacy.api.DefaultApi;

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

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


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

// CORS support
[apiInstance organizerAccessValidationOptionsWithCompletionHandler: 
              ^(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 callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.organizerAccessValidationOptions(callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

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

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

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

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

try {
    $api_instance->organizerAccessValidationOptions();
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerAccessValidationOptions: ', $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 {
    $api_instance->organizerAccessValidationOptions();
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerAccessValidationOptions: $@\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:
    # CORS support
    api_instance.organizer_access_validation_options()
except ApiException as e:
    print("Exception when calling DefaultApi->organizerAccessValidationOptions: %s\n" % e)
extern crate DefaultApi;

pub fn main() {

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

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

Scopes

Parameters

Responses

Name Type Format Description
Access-Control-Allow-Origin String
Access-Control-Allow-Methods String
Access-Control-Allow-Headers String

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/_legacy/organizer/access/validation" \
 -d '{
  "barcode" : "barcode",
  "validationMode" : "tixngo-v1"
}'
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

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

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

        // 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._legacy.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/_legacy/organizer/account?email=email_example"
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

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

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

        // 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._legacy.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


organizerAccountOptions

CORS support

Enable CORS by returning correct headers


/organizer/account

Usage and SDK Samples

curl -X OPTIONS \
 "https://api.tixngo.io/prod/_legacy/organizer/account"
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

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

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

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

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

final api_instance = DefaultApi();


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

import com.secutix.tixngo._legacy.api.DefaultApi;

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

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


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

// CORS support
[apiInstance organizerAccountOptionsWithCompletionHandler: 
              ^(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 callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.organizerAccountOptions(callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

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

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

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

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

try {
    $api_instance->organizerAccountOptions();
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerAccountOptions: ', $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 {
    $api_instance->organizerAccountOptions();
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerAccountOptions: $@\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:
    # CORS support
    api_instance.organizer_account_options()
except ApiException as e:
    print("Exception when calling DefaultApi->organizerAccountOptions: %s\n" % e)
extern crate DefaultApi;

pub fn main() {

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

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

Scopes

Parameters

Responses

Name Type Format Description
Access-Control-Allow-Origin String
Access-Control-Allow-Methods String
Access-Control-Allow-Headers String

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/_legacy/organizer/account" \
 -d '{
  "password" : "password",
  "role" : "ADMIN",
  "mfaEnabled" : false,
  "email" : "email"
}'
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

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

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

        // 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._legacy.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


organizerAccountsAccountEmailMfaInitTotpOptions

CORS support

Enable CORS by returning correct headers


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

Usage and SDK Samples

curl -X OPTIONS \
 "https://api.tixngo.io/prod/_legacy/organizer/accounts/{account-email}/mfa/init-totp"
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

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

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

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

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

final api_instance = DefaultApi();

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

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

import com.secutix.tixngo._legacy.api.DefaultApi;

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

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


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

// CORS support
[apiInstance organizerAccountsAccountEmailMfaInitTotpOptionsWith:accountEmail
              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 accountEmail = accountEmail_example; // {String} 

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

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

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

            try {
                // CORS support
                apiInstance.organizerAccountsAccountEmailMfaInitTotpOptions(accountEmail);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerAccountsAccountEmailMfaInitTotpOptions: " + 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 | 

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

eval {
    $api_instance->organizerAccountsAccountEmailMfaInitTotpOptions(accountEmail => $accountEmail);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerAccountsAccountEmailMfaInitTotpOptions: $@\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)

try:
    # CORS support
    api_instance.organizer_accounts_account_email_mfa_init_totp_options(accountEmail)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerAccountsAccountEmailMfaInitTotpOptions: %s\n" % e)
extern crate DefaultApi;

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

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

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

Scopes

Parameters

Path parameters
Name Description
account-email*
String
Required

Responses

Name Type Format Description
Access-Control-Allow-Origin String
Access-Control-Allow-Methods String
Access-Control-Allow-Headers String

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/_legacy/organizer/accounts/{account-email}/mfa/init-totp" \
 -d '{
  "accessToken" : "accessToken"
}'
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

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

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

        // 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._legacy.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


organizerAccountsAccountEmailMfaVerifyTotpOptions

CORS support

Enable CORS by returning correct headers


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

Usage and SDK Samples

curl -X OPTIONS \
 "https://api.tixngo.io/prod/_legacy/organizer/accounts/{account-email}/mfa/verify-totp"
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

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

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

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

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

final api_instance = DefaultApi();

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

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

import com.secutix.tixngo._legacy.api.DefaultApi;

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

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


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

// CORS support
[apiInstance organizerAccountsAccountEmailMfaVerifyTotpOptionsWith:accountEmail
              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 accountEmail = accountEmail_example; // {String} 

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

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

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

            try {
                // CORS support
                apiInstance.organizerAccountsAccountEmailMfaVerifyTotpOptions(accountEmail);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerAccountsAccountEmailMfaVerifyTotpOptions: " + 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 | 

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

eval {
    $api_instance->organizerAccountsAccountEmailMfaVerifyTotpOptions(accountEmail => $accountEmail);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerAccountsAccountEmailMfaVerifyTotpOptions: $@\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)

try:
    # CORS support
    api_instance.organizer_accounts_account_email_mfa_verify_totp_options(accountEmail)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerAccountsAccountEmailMfaVerifyTotpOptions: %s\n" % e)
extern crate DefaultApi;

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

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

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

Scopes

Parameters

Path parameters
Name Description
account-email*
String
Required

Responses

Name Type Format Description
Access-Control-Allow-Origin String
Access-Control-Allow-Methods String
Access-Control-Allow-Headers String

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/_legacy/organizer/accounts/{account-email}/mfa/verify-totp" \
 -d '{
  "code" : "code",
  "accessToken" : "accessToken"
}'
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

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

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

        // 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._legacy.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


organizerAccountsAccountEmailOptions

CORS support

Enable CORS by returning correct headers


/organizer/accounts/{account-email}

Usage and SDK Samples

curl -X OPTIONS \
 "https://api.tixngo.io/prod/_legacy/organizer/accounts/{account-email}"
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

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

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

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

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

final api_instance = DefaultApi();

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

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

import com.secutix.tixngo._legacy.api.DefaultApi;

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

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


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

// CORS support
[apiInstance organizerAccountsAccountEmailOptionsWith:accountEmail
              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 accountEmail = accountEmail_example; // {String} 

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

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

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

            try {
                // CORS support
                apiInstance.organizerAccountsAccountEmailOptions(accountEmail);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerAccountsAccountEmailOptions: " + 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 | 

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

eval {
    $api_instance->organizerAccountsAccountEmailOptions(accountEmail => $accountEmail);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerAccountsAccountEmailOptions: $@\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)

try:
    # CORS support
    api_instance.organizer_accounts_account_email_options(accountEmail)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerAccountsAccountEmailOptions: %s\n" % e)
extern crate DefaultApi;

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

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

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

Scopes

Parameters

Path parameters
Name Description
account-email*
String
Required

Responses

Name Type Format Description
Access-Control-Allow-Origin String
Access-Control-Allow-Methods String
Access-Control-Allow-Headers String

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/_legacy/organizer/accounts/{account-email}" \
 -d '{
  "requester" : "requester",
  "role" : "ADMIN",
  "newPassword" : "newPassword",
  "mfaEnabled" : true,
  "forceReset" : false
}'
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

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

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

        // 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._legacy.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/_legacy/organizer/accounts"
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

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

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

        // 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._legacy.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


organizerAccountsOptions

CORS support

Enable CORS by returning correct headers


/organizer/accounts

Usage and SDK Samples

curl -X OPTIONS \
 "https://api.tixngo.io/prod/_legacy/organizer/accounts"
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

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

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

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

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

final api_instance = DefaultApi();


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

import com.secutix.tixngo._legacy.api.DefaultApi;

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

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


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

// CORS support
[apiInstance organizerAccountsOptionsWithCompletionHandler: 
              ^(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 callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.organizerAccountsOptions(callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

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

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

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

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

try {
    $api_instance->organizerAccountsOptions();
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerAccountsOptions: ', $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 {
    $api_instance->organizerAccountsOptions();
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerAccountsOptions: $@\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:
    # CORS support
    api_instance.organizer_accounts_options()
except ApiException as e:
    print("Exception when calling DefaultApi->organizerAccountsOptions: %s\n" % e)
extern crate DefaultApi;

pub fn main() {

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

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

Scopes

Parameters

Responses

Name Type Format Description
Access-Control-Allow-Origin String
Access-Control-Allow-Methods String
Access-Control-Allow-Headers String

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/_legacy/organizer/activation"
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

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

public class DefaultApiExample {
    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();

        // Configure API key authorization: tyxr-organizers
        ApiKeyAuth tyxr-organizers = (ApiKeyAuth) defaultClient.getAuthentication("tyxr-organizers");
        tyxr-organizers.setApiKey("YOUR API KEY");
        // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
        //tyxr-organizers.setApiKeyPrefix("Token");

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

        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._legacy.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


organizerActivationOptions

CORS support

Enable CORS by returning correct headers


/organizer/activation

Usage and SDK Samples

curl -X OPTIONS \
 "https://api.tixngo.io/prod/_legacy/organizer/activation"
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

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

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

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

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

final api_instance = DefaultApi();


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

import com.secutix.tixngo._legacy.api.DefaultApi;

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

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


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

// CORS support
[apiInstance organizerActivationOptionsWithCompletionHandler: 
              ^(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 callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.organizerActivationOptions(callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

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

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

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

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

try {
    $api_instance->organizerActivationOptions();
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerActivationOptions: ', $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 {
    $api_instance->organizerActivationOptions();
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerActivationOptions: $@\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:
    # CORS support
    api_instance.organizer_activation_options()
except ApiException as e:
    print("Exception when calling DefaultApi->organizerActivationOptions: %s\n" % e)
extern crate DefaultApi;

pub fn main() {

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

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

Scopes

Parameters

Responses

Name Type Format Description
Access-Control-Allow-Origin String
Access-Control-Allow-Methods String
Access-Control-Allow-Headers String

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/_legacy/organizer/apikey"
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

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

public class DefaultApiExample {
    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();

        // Configure API key authorization: tyxr-organizers
        ApiKeyAuth tyxr-organizers = (ApiKeyAuth) defaultClient.getAuthentication("tyxr-organizers");
        tyxr-organizers.setApiKey("YOUR API KEY");
        // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
        //tyxr-organizers.setApiKeyPrefix("Token");

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

        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._legacy.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


organizerApikeyOptions

CORS support

Enable CORS by returning correct headers


/organizer/apikey

Usage and SDK Samples

curl -X OPTIONS \
 "https://api.tixngo.io/prod/_legacy/organizer/apikey"
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

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

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

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

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

final api_instance = DefaultApi();


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

import com.secutix.tixngo._legacy.api.DefaultApi;

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

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


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

// CORS support
[apiInstance organizerApikeyOptionsWithCompletionHandler: 
              ^(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 callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.organizerApikeyOptions(callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

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

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

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

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

try {
    $api_instance->organizerApikeyOptions();
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerApikeyOptions: ', $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 {
    $api_instance->organizerApikeyOptions();
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerApikeyOptions: $@\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:
    # CORS support
    api_instance.organizer_apikey_options()
except ApiException as e:
    print("Exception when calling DefaultApi->organizerApikeyOptions: %s\n" % e)
extern crate DefaultApi;

pub fn main() {

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

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

Scopes

Parameters

Responses

Name Type Format Description
Access-Control-Allow-Origin String
Access-Control-Allow-Methods String
Access-Control-Allow-Headers String

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/_legacy/organizer/application-features/{appId}?key=key_example&offset=56&limit=56"
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

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

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

        // 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._legacy.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


organizerApplicationFeaturesAppIdOptions

CORS support

Enable CORS by returning correct headers


/organizer/application-features/{appId}

Usage and SDK Samples

curl -X OPTIONS \
 "https://api.tixngo.io/prod/_legacy/organizer/application-features/{appId}"
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

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

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

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

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

final api_instance = DefaultApi();

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

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

import com.secutix.tixngo._legacy.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

        try {
            apiInstance.organizerApplicationFeaturesAppIdOptions(appId);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerApplicationFeaturesAppIdOptions");
            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)

// CORS support
[apiInstance organizerApplicationFeaturesAppIdOptionsWith:appId
              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 callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.organizerApplicationFeaturesAppIdOptions(appId, callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

namespace Example
{
    public class organizerApplicationFeaturesAppIdOptionsExample
    {
        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)

            try {
                // CORS support
                apiInstance.organizerApplicationFeaturesAppIdOptions(appId);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerApplicationFeaturesAppIdOptions: " + 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

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

eval {
    $api_instance->organizerApplicationFeaturesAppIdOptions(appId => $appId);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerApplicationFeaturesAppIdOptions: $@\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)

try:
    # CORS support
    api_instance.organizer_application_features_app_id_options(appId)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerApplicationFeaturesAppIdOptions: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let appId = appId_example; // String

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

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

Scopes

Parameters

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

Responses

Name Type Format Description
Access-Control-Allow-Origin String
Access-Control-Allow-Methods String
Access-Control-Allow-Headers String

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/_legacy/organizer/application-features/{appId}" \
 -d '{
  "isEnabled" : true,
  "description" : "description",
  "featureKey" : "featureKey"
}'
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

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

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

        // 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._legacy.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/_legacy/organizer/application-settings/all-supported-appId-supported-languages"
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

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

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

        // 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._legacy.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


organizerApplicationSettingsAllSupportedAppIdSupportedLanguagesOptions

CORS support

Enable CORS by returning correct headers


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

Usage and SDK Samples

curl -X OPTIONS \
 "https://api.tixngo.io/prod/_legacy/organizer/application-settings/all-supported-appId-supported-languages"
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

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

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

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

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

final api_instance = DefaultApi();


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

import com.secutix.tixngo._legacy.api.DefaultApi;

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

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


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

// CORS support
[apiInstance organizerApplicationSettingsAllSupportedAppIdSupportedLanguagesOptionsWithCompletionHandler: 
              ^(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 callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.organizerApplicationSettingsAllSupportedAppIdSupportedLanguagesOptions(callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

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

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

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

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

try {
    $api_instance->organizerApplicationSettingsAllSupportedAppIdSupportedLanguagesOptions();
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerApplicationSettingsAllSupportedAppIdSupportedLanguagesOptions: ', $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 {
    $api_instance->organizerApplicationSettingsAllSupportedAppIdSupportedLanguagesOptions();
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerApplicationSettingsAllSupportedAppIdSupportedLanguagesOptions: $@\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:
    # CORS support
    api_instance.organizer_application_settings_all_supported_app_id_supported_languages_options()
except ApiException as e:
    print("Exception when calling DefaultApi->organizerApplicationSettingsAllSupportedAppIdSupportedLanguagesOptions: %s\n" % e)
extern crate DefaultApi;

pub fn main() {

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

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

Scopes

Parameters

Responses

Name Type Format Description
Access-Control-Allow-Origin String
Access-Control-Allow-Methods String
Access-Control-Allow-Headers String

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/_legacy/organizer/application-settings?mobileAppId=mobileAppId_example&key=key_example&offset=56&limit=56"
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

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

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

        // 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._legacy.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/_legacy/organizer/application-settings/{mobile-app-id}/{config-type}?searchKey=searchKey_example&offset=56&limit=56"
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

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

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

        // 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._legacy.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


organizerApplicationSettingsMobileAppIdConfigTypeOptions

CORS support

Enable CORS by returning correct headers


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

Usage and SDK Samples

curl -X OPTIONS \
 "https://api.tixngo.io/prod/_legacy/organizer/application-settings/{mobile-app-id}/{config-type}"
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

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

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

        // 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

        try {
            apiInstance.organizerApplicationSettingsMobileAppIdConfigTypeOptions(mobileAppId, configType);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerApplicationSettingsMobileAppIdConfigTypeOptions");
            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

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

import com.secutix.tixngo._legacy.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

        try {
            apiInstance.organizerApplicationSettingsMobileAppIdConfigTypeOptions(mobileAppId, configType);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerApplicationSettingsMobileAppIdConfigTypeOptions");
            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)

// CORS support
[apiInstance organizerApplicationSettingsMobileAppIdConfigTypeOptionsWith:mobileAppId
    configType:configType
              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 configType = configType_example; // {String} The configuration type to filter out the result

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

namespace Example
{
    public class organizerApplicationSettingsMobileAppIdConfigTypeOptionsExample
    {
        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)

            try {
                // CORS support
                apiInstance.organizerApplicationSettingsMobileAppIdConfigTypeOptions(mobileAppId, configType);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerApplicationSettingsMobileAppIdConfigTypeOptions: " + 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

try {
    $api_instance->organizerApplicationSettingsMobileAppIdConfigTypeOptions($mobileAppId, $configType);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerApplicationSettingsMobileAppIdConfigTypeOptions: ', $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

eval {
    $api_instance->organizerApplicationSettingsMobileAppIdConfigTypeOptions(mobileAppId => $mobileAppId, configType => $configType);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerApplicationSettingsMobileAppIdConfigTypeOptions: $@\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)

try:
    # CORS support
    api_instance.organizer_application_settings_mobile_app_id_config_type_options(mobileAppId, configType)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerApplicationSettingsMobileAppIdConfigTypeOptions: %s\n" % e)
extern crate DefaultApi;

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

    let mut context = DefaultApi::Context::default();
    let result = client.organizerApplicationSettingsMobileAppIdConfigTypeOptions(mobileAppId, configType, &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

Responses

Name Type Format Description
Access-Control-Allow-Origin String
Access-Control-Allow-Methods String
Access-Control-Allow-Headers String

organizerApplicationSettingsMobileAppIdOptions

CORS support

Enable CORS by returning correct headers


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

Usage and SDK Samples

curl -X OPTIONS \
 "https://api.tixngo.io/prod/_legacy/organizer/application-settings/{mobile-app-id}"
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

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

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

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

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

final api_instance = DefaultApi();

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

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

import com.secutix.tixngo._legacy.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

        try {
            apiInstance.organizerApplicationSettingsMobileAppIdOptions(mobileAppId);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerApplicationSettingsMobileAppIdOptions");
            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)

// CORS support
[apiInstance organizerApplicationSettingsMobileAppIdOptionsWith:mobileAppId
              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 callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.organizerApplicationSettingsMobileAppIdOptions(mobileAppId, callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

namespace Example
{
    public class organizerApplicationSettingsMobileAppIdOptionsExample
    {
        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)

            try {
                // CORS support
                apiInstance.organizerApplicationSettingsMobileAppIdOptions(mobileAppId);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerApplicationSettingsMobileAppIdOptions: " + 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

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

eval {
    $api_instance->organizerApplicationSettingsMobileAppIdOptions(mobileAppId => $mobileAppId);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerApplicationSettingsMobileAppIdOptions: $@\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)

try:
    # CORS support
    api_instance.organizer_application_settings_mobile_app_id_options(mobileAppId)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerApplicationSettingsMobileAppIdOptions: %s\n" % e)
extern crate DefaultApi;

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

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

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

Scopes

Parameters

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

Responses

Name Type Format Description
Access-Control-Allow-Origin String
Access-Control-Allow-Methods String
Access-Control-Allow-Headers String

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/_legacy/organizer/application-settings/{mobile-app-id}" \
 -d '{
  "value" : "value",
  "key" : "key"
}'
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

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

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

        // 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._legacy.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/_legacy/organizer/application-settings/{mobile-app-id}/supported-languages"
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

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

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

        // 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._legacy.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


organizerApplicationSettingsMobileAppIdSupportedLanguagesOptions

CORS support

Enable CORS by returning correct headers


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

Usage and SDK Samples

curl -X OPTIONS \
 "https://api.tixngo.io/prod/_legacy/organizer/application-settings/{mobile-app-id}/supported-languages"
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

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

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

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

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

final api_instance = DefaultApi();

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

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

import com.secutix.tixngo._legacy.api.DefaultApi;

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

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


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

// CORS support
[apiInstance organizerApplicationSettingsMobileAppIdSupportedLanguagesOptionsWith:mobileAppId
              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 callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.organizerApplicationSettingsMobileAppIdSupportedLanguagesOptions(mobileAppId, callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

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

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

            try {
                // CORS support
                apiInstance.organizerApplicationSettingsMobileAppIdSupportedLanguagesOptions(mobileAppId);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerApplicationSettingsMobileAppIdSupportedLanguagesOptions: " + 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 {
    $api_instance->organizerApplicationSettingsMobileAppIdSupportedLanguagesOptions($mobileAppId);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerApplicationSettingsMobileAppIdSupportedLanguagesOptions: ', $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 {
    $api_instance->organizerApplicationSettingsMobileAppIdSupportedLanguagesOptions(mobileAppId => $mobileAppId);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerApplicationSettingsMobileAppIdSupportedLanguagesOptions: $@\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:
    # CORS support
    api_instance.organizer_application_settings_mobile_app_id_supported_languages_options(mobileAppId)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerApplicationSettingsMobileAppIdSupportedLanguagesOptions: %s\n" % e)
extern crate DefaultApi;

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

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

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

Scopes

Parameters

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

Responses

Name Type Format Description
Access-Control-Allow-Origin String
Access-Control-Allow-Methods String
Access-Control-Allow-Headers String

organizerApplicationSettingsOptions

CORS support

Enable CORS by returning correct headers


/organizer/application-settings

Usage and SDK Samples

curl -X OPTIONS \
 "https://api.tixngo.io/prod/_legacy/organizer/application-settings"
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

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

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

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

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

final api_instance = DefaultApi();


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

import com.secutix.tixngo._legacy.api.DefaultApi;

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

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


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

// CORS support
[apiInstance organizerApplicationSettingsOptionsWithCompletionHandler: 
              ^(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 callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.organizerApplicationSettingsOptions(callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

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

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

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

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

try {
    $api_instance->organizerApplicationSettingsOptions();
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerApplicationSettingsOptions: ', $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 {
    $api_instance->organizerApplicationSettingsOptions();
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerApplicationSettingsOptions: $@\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:
    # CORS support
    api_instance.organizer_application_settings_options()
except ApiException as e:
    print("Exception when calling DefaultApi->organizerApplicationSettingsOptions: %s\n" % e)
extern crate DefaultApi;

pub fn main() {

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

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

Scopes

Parameters

Responses

Name Type Format Description
Access-Control-Allow-Origin String
Access-Control-Allow-Methods String
Access-Control-Allow-Headers String

organizerCommunicationResendOptions

CORS support

Enable CORS by returning correct headers


/organizer/communication/resend

Usage and SDK Samples

curl -X OPTIONS \
 "https://api.tixngo.io/prod/_legacy/organizer/communication/resend"
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

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

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

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

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

final api_instance = DefaultApi();


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

import com.secutix.tixngo._legacy.api.DefaultApi;

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

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


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

// CORS support
[apiInstance organizerCommunicationResendOptionsWithCompletionHandler: 
              ^(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 callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.organizerCommunicationResendOptions(callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

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

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

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

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

try {
    $api_instance->organizerCommunicationResendOptions();
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerCommunicationResendOptions: ', $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 {
    $api_instance->organizerCommunicationResendOptions();
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerCommunicationResendOptions: $@\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:
    # CORS support
    api_instance.organizer_communication_resend_options()
except ApiException as e:
    print("Exception when calling DefaultApi->organizerCommunicationResendOptions: %s\n" % e)
extern crate DefaultApi;

pub fn main() {

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

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

Scopes

Parameters

Responses

Name Type Format Description
Access-Control-Allow-Origin String
Access-Control-Allow-Methods String
Access-Control-Allow-Headers String

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/_legacy/organizer/communication/resend" \
 -d '{
  "communicationId" : 0,
  "email" : "email"
}'
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

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

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

        // 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._legacy.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/_legacy/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._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

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

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

        // 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._legacy.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


organizerCommunicationsOptions

CORS support

Enable CORS by returning correct headers


/organizer/communications

Usage and SDK Samples

curl -X OPTIONS \
 "https://api.tixngo.io/prod/_legacy/organizer/communications"
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

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

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

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

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

final api_instance = DefaultApi();


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

import com.secutix.tixngo._legacy.api.DefaultApi;

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

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


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

// CORS support
[apiInstance organizerCommunicationsOptionsWithCompletionHandler: 
              ^(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 callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.organizerCommunicationsOptions(callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

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

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

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

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

try {
    $api_instance->organizerCommunicationsOptions();
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerCommunicationsOptions: ', $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 {
    $api_instance->organizerCommunicationsOptions();
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerCommunicationsOptions: $@\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:
    # CORS support
    api_instance.organizer_communications_options()
except ApiException as e:
    print("Exception when calling DefaultApi->organizerCommunicationsOptions: %s\n" % e)
extern crate DefaultApi;

pub fn main() {

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

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

Scopes

Parameters

Responses

Name Type Format Description
Access-Control-Allow-Origin String
Access-Control-Allow-Methods String
Access-Control-Allow-Headers String

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/_legacy/organizer/config"
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

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

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

        // 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._legacy.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


organizerConfigOptions

CORS support

Enable CORS by returning correct headers


/organizer/config

Usage and SDK Samples

curl -X OPTIONS \
 "https://api.tixngo.io/prod/_legacy/organizer/config"
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

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

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

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

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

final api_instance = DefaultApi();


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

import com.secutix.tixngo._legacy.api.DefaultApi;

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

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


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

// CORS support
[apiInstance organizerConfigOptionsWithCompletionHandler: 
              ^(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 callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.organizerConfigOptions(callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

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

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

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

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

try {
    $api_instance->organizerConfigOptions();
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerConfigOptions: ', $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 {
    $api_instance->organizerConfigOptions();
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerConfigOptions: $@\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:
    # CORS support
    api_instance.organizer_config_options()
except ApiException as e:
    print("Exception when calling DefaultApi->organizerConfigOptions: %s\n" % e)
extern crate DefaultApi;

pub fn main() {

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

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

Scopes

Parameters

Responses

Name Type Format Description
Access-Control-Allow-Origin String
Access-Control-Allow-Methods String
Access-Control-Allow-Headers String

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/_legacy/organizer/config/ui"
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

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

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

        // 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._legacy.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


organizerConfigUiOptions

CORS support

Enable CORS by returning correct headers


/organizer/config/ui

Usage and SDK Samples

curl -X OPTIONS \
 "https://api.tixngo.io/prod/_legacy/organizer/config/ui"
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

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

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

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

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

final api_instance = DefaultApi();


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

import com.secutix.tixngo._legacy.api.DefaultApi;

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

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


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

// CORS support
[apiInstance organizerConfigUiOptionsWithCompletionHandler: 
              ^(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 callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.organizerConfigUiOptions(callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

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

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

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

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

try {
    $api_instance->organizerConfigUiOptions();
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerConfigUiOptions: ', $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 {
    $api_instance->organizerConfigUiOptions();
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerConfigUiOptions: $@\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:
    # CORS support
    api_instance.organizer_config_ui_options()
except ApiException as e:
    print("Exception when calling DefaultApi->organizerConfigUiOptions: %s\n" % e)
extern crate DefaultApi;

pub fn main() {

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

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

Scopes

Parameters

Responses

Name Type Format Description
Access-Control-Allow-Origin String
Access-Control-Allow-Methods String
Access-Control-Allow-Headers String

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/_legacy/organizer/devices/{mobileAppId}/{spectatorEmail}"
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

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

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

        // 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._legacy.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


organizerDevicesMobileAppIdSpectatorEmailOptions

CORS support

Enable CORS by returning correct headers


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

Usage and SDK Samples

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

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

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

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

        try {
            apiInstance.organizerDevicesMobileAppIdSpectatorEmailOptions(mobileAppId, spectatorEmail);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerDevicesMobileAppIdSpectatorEmailOptions");
            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.organizerDevicesMobileAppIdSpectatorEmailOptions(mobileAppId, spectatorEmail);
    print(result);
} catch (e) {
    print('Exception when calling DefaultApi->organizerDevicesMobileAppIdSpectatorEmailOptions: $e\n');
}

import com.secutix.tixngo._legacy.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.organizerDevicesMobileAppIdSpectatorEmailOptions(mobileAppId, spectatorEmail);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerDevicesMobileAppIdSpectatorEmailOptions");
            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)

// CORS support
[apiInstance organizerDevicesMobileAppIdSpectatorEmailOptionsWith: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.organizerDevicesMobileAppIdSpectatorEmailOptions(mobileAppId, spectatorEmail, callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

namespace Example
{
    public class organizerDevicesMobileAppIdSpectatorEmailOptionsExample
    {
        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 {
                // CORS support
                apiInstance.organizerDevicesMobileAppIdSpectatorEmailOptions(mobileAppId, spectatorEmail);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerDevicesMobileAppIdSpectatorEmailOptions: " + 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->organizerDevicesMobileAppIdSpectatorEmailOptions($mobileAppId, $spectatorEmail);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerDevicesMobileAppIdSpectatorEmailOptions: ', $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->organizerDevicesMobileAppIdSpectatorEmailOptions(mobileAppId => $mobileAppId, spectatorEmail => $spectatorEmail);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerDevicesMobileAppIdSpectatorEmailOptions: $@\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:
    # CORS support
    api_instance.organizer_devices_mobile_app_id_spectator_email_options(mobileAppId, spectatorEmail)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerDevicesMobileAppIdSpectatorEmailOptions: %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.organizerDevicesMobileAppIdSpectatorEmailOptions(mobileAppId, spectatorEmail, &context).wait();

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

Scopes

Parameters

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

Responses

Name Type Format Description
Access-Control-Allow-Origin String
Access-Control-Allow-Methods String
Access-Control-Allow-Headers String

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/_legacy/organizer/event-group-list"
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

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

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

        // 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._legacy.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


organizerEventGroupListOptions

CORS support

Enable CORS by returning correct headers


/organizer/event-group-list

Usage and SDK Samples

curl -X OPTIONS \
 "https://api.tixngo.io/prod/_legacy/organizer/event-group-list"
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

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

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

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

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

final api_instance = DefaultApi();


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

import com.secutix.tixngo._legacy.api.DefaultApi;

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

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


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

// CORS support
[apiInstance organizerEventGroupListOptionsWithCompletionHandler: 
              ^(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 callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.organizerEventGroupListOptions(callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

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

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

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

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

try {
    $api_instance->organizerEventGroupListOptions();
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerEventGroupListOptions: ', $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 {
    $api_instance->organizerEventGroupListOptions();
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerEventGroupListOptions: $@\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:
    # CORS support
    api_instance.organizer_event_group_list_options()
except ApiException as e:
    print("Exception when calling DefaultApi->organizerEventGroupListOptions: %s\n" % e)
extern crate DefaultApi;

pub fn main() {

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

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

Scopes

Parameters

Responses

Name Type Format Description
Access-Control-Allow-Origin String
Access-Control-Allow-Methods String
Access-Control-Allow-Headers String

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/_legacy/organizer/event-sites?groups="
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

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

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

        // 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._legacy.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


organizerEventSitesOptions

CORS support

Enable CORS by returning correct headers


/organizer/event-sites

Usage and SDK Samples

curl -X OPTIONS \
 "https://api.tixngo.io/prod/_legacy/organizer/event-sites"
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

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

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

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

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

final api_instance = DefaultApi();


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

import com.secutix.tixngo._legacy.api.DefaultApi;

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

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


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

// CORS support
[apiInstance organizerEventSitesOptionsWithCompletionHandler: 
              ^(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 callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.organizerEventSitesOptions(callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

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

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

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

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

try {
    $api_instance->organizerEventSitesOptions();
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerEventSitesOptions: ', $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 {
    $api_instance->organizerEventSitesOptions();
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerEventSitesOptions: $@\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:
    # CORS support
    api_instance.organizer_event_sites_options()
except ApiException as e:
    print("Exception when calling DefaultApi->organizerEventSitesOptions: %s\n" % e)
extern crate DefaultApi;

pub fn main() {

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

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

Scopes

Parameters

Responses

Name Type Format Description
Access-Control-Allow-Origin String
Access-Control-Allow-Methods String
Access-Control-Allow-Headers String

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/_legacy/organizer/events/all?groups=&sites="
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

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

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

        // 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._legacy.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


organizerEventsAllOptions

CORS support

Enable CORS by returning correct headers


/organizer/events/all

Usage and SDK Samples

curl -X OPTIONS \
 "https://api.tixngo.io/prod/_legacy/organizer/events/all"
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

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

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

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

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

final api_instance = DefaultApi();


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

import com.secutix.tixngo._legacy.api.DefaultApi;

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

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


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

// CORS support
[apiInstance organizerEventsAllOptionsWithCompletionHandler: 
              ^(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 callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.organizerEventsAllOptions(callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

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

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

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

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

try {
    $api_instance->organizerEventsAllOptions();
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerEventsAllOptions: ', $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 {
    $api_instance->organizerEventsAllOptions();
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerEventsAllOptions: $@\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:
    # CORS support
    api_instance.organizer_events_all_options()
except ApiException as e:
    print("Exception when calling DefaultApi->organizerEventsAllOptions: %s\n" % e)
extern crate DefaultApi;

pub fn main() {

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

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

Scopes

Parameters

Responses

Name Type Format Description
Access-Control-Allow-Origin String
Access-Control-Allow-Methods String
Access-Control-Allow-Headers String

organizerEventsEventIdActivationIdOptions

CORS support

Enable CORS by returning correct headers


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

Usage and SDK Samples

curl -X OPTIONS \
 "https://api.tixngo.io/prod/_legacy/organizer/events/{eventId}/{activationId}"
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

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

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

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

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

final api_instance = DefaultApi();

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

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

import com.secutix.tixngo._legacy.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 | 

        try {
            apiInstance.organizerEventsEventIdActivationIdOptions(activationId, eventId);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerEventsEventIdActivationIdOptions");
            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)

// CORS support
[apiInstance organizerEventsEventIdActivationIdOptionsWith:activationId
    eventId:eventId
              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 callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.organizerEventsEventIdActivationIdOptions(activationId, eventId, callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

namespace Example
{
    public class organizerEventsEventIdActivationIdOptionsExample
    {
        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)

            try {
                // CORS support
                apiInstance.organizerEventsEventIdActivationIdOptions(activationId, eventId);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerEventsEventIdActivationIdOptions: " + 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 | 

try {
    $api_instance->organizerEventsEventIdActivationIdOptions($activationId, $eventId);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerEventsEventIdActivationIdOptions: ', $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 | 

eval {
    $api_instance->organizerEventsEventIdActivationIdOptions(activationId => $activationId, eventId => $eventId);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerEventsEventIdActivationIdOptions: $@\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)

try:
    # CORS support
    api_instance.organizer_events_event_id_activation_id_options(activationId, eventId)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerEventsEventIdActivationIdOptions: %s\n" % e)
extern crate DefaultApi;

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

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

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

Scopes

Parameters

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

Responses

Name Type Format Description
Access-Control-Allow-Origin String
Access-Control-Allow-Methods String
Access-Control-Allow-Headers String

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/_legacy/organizer/events/{eventId}/{activationId}" \
 -d '{
  "method" : "online",
  "time" : "2000-01-23T04:56:07.000+00:00"
}'
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

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

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

        // 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._legacy.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/_legacy/organizer/events/{eventId}/charts"
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

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

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

        // 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._legacy.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


organizerEventsEventIdChartsOptions

CORS support

Enable CORS by returning correct headers


/organizer/events/{eventId}/charts

Usage and SDK Samples

curl -X OPTIONS \
 "https://api.tixngo.io/prod/_legacy/organizer/events/{eventId}/charts"
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

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

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

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

        try {
            apiInstance.organizerEventsEventIdChartsOptions(eventId);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerEventsEventIdChartsOptions");
            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.organizerEventsEventIdChartsOptions(eventId);
    print(result);
} catch (e) {
    print('Exception when calling DefaultApi->organizerEventsEventIdChartsOptions: $e\n');
}

import com.secutix.tixngo._legacy.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 {
            apiInstance.organizerEventsEventIdChartsOptions(eventId);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerEventsEventIdChartsOptions");
            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)

// CORS support
[apiInstance organizerEventsEventIdChartsOptionsWith:eventId
              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 callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.organizerEventsEventIdChartsOptions(eventId, callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

namespace Example
{
    public class organizerEventsEventIdChartsOptionsExample
    {
        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 {
                // CORS support
                apiInstance.organizerEventsEventIdChartsOptions(eventId);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerEventsEventIdChartsOptions: " + 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 {
    $api_instance->organizerEventsEventIdChartsOptions($eventId);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerEventsEventIdChartsOptions: ', $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 {
    $api_instance->organizerEventsEventIdChartsOptions(eventId => $eventId);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerEventsEventIdChartsOptions: $@\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:
    # CORS support
    api_instance.organizer_events_event_id_charts_options(eventId)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerEventsEventIdChartsOptions: %s\n" % e)
extern crate DefaultApi;

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

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

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

Scopes

Parameters

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

Responses

Name Type Format Description
Access-Control-Allow-Origin String
Access-Control-Allow-Methods String
Access-Control-Allow-Headers String

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/_legacy/organizer/events/{eventId}/designs"
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

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

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

        // 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._legacy.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


organizerEventsEventIdDesignsOptions

CORS support

Enable CORS by returning correct headers


/organizer/events/{eventId}/designs

Usage and SDK Samples

curl -X OPTIONS \
 "https://api.tixngo.io/prod/_legacy/organizer/events/{eventId}/designs"
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

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

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

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

        try {
            apiInstance.organizerEventsEventIdDesignsOptions(eventId);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerEventsEventIdDesignsOptions");
            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.organizerEventsEventIdDesignsOptions(eventId);
    print(result);
} catch (e) {
    print('Exception when calling DefaultApi->organizerEventsEventIdDesignsOptions: $e\n');
}

import com.secutix.tixngo._legacy.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 {
            apiInstance.organizerEventsEventIdDesignsOptions(eventId);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerEventsEventIdDesignsOptions");
            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)

// CORS support
[apiInstance organizerEventsEventIdDesignsOptionsWith:eventId
              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} event id for the given event

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

namespace Example
{
    public class organizerEventsEventIdDesignsOptionsExample
    {
        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 {
                // CORS support
                apiInstance.organizerEventsEventIdDesignsOptions(eventId);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerEventsEventIdDesignsOptions: " + 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 {
    $api_instance->organizerEventsEventIdDesignsOptions($eventId);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerEventsEventIdDesignsOptions: ', $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 {
    $api_instance->organizerEventsEventIdDesignsOptions(eventId => $eventId);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerEventsEventIdDesignsOptions: $@\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:
    # CORS support
    api_instance.organizer_events_event_id_designs_options(eventId)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerEventsEventIdDesignsOptions: %s\n" % e)
extern crate DefaultApi;

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

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

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

Scopes

Parameters

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

Responses

Name Type Format Description
Access-Control-Allow-Origin String
Access-Control-Allow-Methods String
Access-Control-Allow-Headers String

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/_legacy/organizer/events/{eventId}?language=language_example"
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

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

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

        // 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._legacy.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/_legacy/organizer/events/{eventId}/group?language=language_example"
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

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

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

        // 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._legacy.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


organizerEventsEventIdGroupOptions

CORS support

Enable CORS by returning correct headers


/organizer/events/{eventId}/group

Usage and SDK Samples

curl -X OPTIONS \
 "https://api.tixngo.io/prod/_legacy/organizer/events/{eventId}/group"
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

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

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

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

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

final api_instance = DefaultApi();

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

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

import com.secutix.tixngo._legacy.api.DefaultApi;

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

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


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

// CORS support
[apiInstance organizerEventsEventIdGroupOptionsWith:eventId
              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 callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.organizerEventsEventIdGroupOptions(eventId, callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

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

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

            try {
                // CORS support
                apiInstance.organizerEventsEventIdGroupOptions(eventId);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerEventsEventIdGroupOptions: " + 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 {
    $api_instance->organizerEventsEventIdGroupOptions($eventId);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerEventsEventIdGroupOptions: ', $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 {
    $api_instance->organizerEventsEventIdGroupOptions(eventId => $eventId);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerEventsEventIdGroupOptions: $@\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)

try:
    # CORS support
    api_instance.organizer_events_event_id_group_options(eventId)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerEventsEventIdGroupOptions: %s\n" % e)
extern crate DefaultApi;

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

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

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

Scopes

Parameters

Path parameters
Name Description
eventId*
String
Required

Responses

Name Type Format Description
Access-Control-Allow-Origin String
Access-Control-Allow-Methods String
Access-Control-Allow-Headers String

organizerEventsEventIdOptions

CORS support

Enable CORS by returning correct headers


/organizer/events/{eventId}

Usage and SDK Samples

curl -X OPTIONS \
 "https://api.tixngo.io/prod/_legacy/organizer/events/{eventId}"
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

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

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

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

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

final api_instance = DefaultApi();

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

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

import com.secutix.tixngo._legacy.api.DefaultApi;

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

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


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

// CORS support
[apiInstance organizerEventsEventIdOptionsWith:eventId
              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 callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.organizerEventsEventIdOptions(eventId, callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

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

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

            try {
                // CORS support
                apiInstance.organizerEventsEventIdOptions(eventId);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerEventsEventIdOptions: " + 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 {
    $api_instance->organizerEventsEventIdOptions($eventId);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerEventsEventIdOptions: ', $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 {
    $api_instance->organizerEventsEventIdOptions(eventId => $eventId);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerEventsEventIdOptions: $@\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)

try:
    # CORS support
    api_instance.organizer_events_event_id_options(eventId)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerEventsEventIdOptions: %s\n" % e)
extern crate DefaultApi;

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

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

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

Scopes

Parameters

Path parameters
Name Description
eventId*
String
Required

Responses

Name Type Format Description
Access-Control-Allow-Origin String
Access-Control-Allow-Methods String
Access-Control-Allow-Headers String

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/_legacy/organizer/events/{eventId}/override-settings?mobileAppId=mobileAppId_example"
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

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

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

        // 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._legacy.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


organizerEventsEventIdOverrideSettingsOptions

CORS support

Enable CORS by returning correct headers


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

Usage and SDK Samples

curl -X OPTIONS \
 "https://api.tixngo.io/prod/_legacy/organizer/events/{eventId}/override-settings"
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

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

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

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

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

final api_instance = DefaultApi();

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

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

import com.secutix.tixngo._legacy.api.DefaultApi;

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

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


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

// CORS support
[apiInstance organizerEventsEventIdOverrideSettingsOptionsWith:eventId
              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} eventId

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

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

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

            try {
                // CORS support
                apiInstance.organizerEventsEventIdOverrideSettingsOptions(eventId);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerEventsEventIdOverrideSettingsOptions: " + 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 | eventId

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

eval {
    $api_instance->organizerEventsEventIdOverrideSettingsOptions(eventId => $eventId);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerEventsEventIdOverrideSettingsOptions: $@\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 | eventId (default to null)

try:
    # CORS support
    api_instance.organizer_events_event_id_override_settings_options(eventId)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerEventsEventIdOverrideSettingsOptions: %s\n" % e)
extern crate DefaultApi;

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

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

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

Scopes

Parameters

Path parameters
Name Description
eventId*
String
eventId
Required

Responses

Name Type Format Description
Access-Control-Allow-Origin String
Access-Control-Allow-Methods String
Access-Control-Allow-Headers String

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/_legacy/organizer/events/{eventId}/override-settings" \
 -d '{
  "value" : "value",
  "key" : "key"
}'
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

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

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

        // 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._legacy.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/_legacy/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._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

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

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

        // 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._legacy.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/_legacy/organizer/events/{eventId}/reference-data/ticket-details?language=language_example"
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

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

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

        // 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._legacy.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


organizerEventsEventIdReferenceDataTicketDetailsOptions

CORS support

Enable CORS by returning correct headers


/organizer/events/{eventId}/reference-data/ticket-details

Usage and SDK Samples

curl -X OPTIONS \
 "https://api.tixngo.io/prod/_legacy/organizer/events/{eventId}/reference-data/ticket-details"
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

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

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

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();
        String eventId = eventId_example; // String | Reference data key

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

final api_instance = DefaultApi();

final String eventId = new String(); // String | Reference data key

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

import com.secutix.tixngo._legacy.api.DefaultApi;

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

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


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

// CORS support
[apiInstance organizerEventsEventIdReferenceDataTicketDetailsOptionsWith:eventId
              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} Reference data key

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

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

            // Create an instance of the API class
            var apiInstance = new DefaultApi();
            var eventId = eventId_example;  // String | Reference data key (default to null)

            try {
                // CORS support
                apiInstance.organizerEventsEventIdReferenceDataTicketDetailsOptions(eventId);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerEventsEventIdReferenceDataTicketDetailsOptions: " + 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 | Reference data key

try {
    $api_instance->organizerEventsEventIdReferenceDataTicketDetailsOptions($eventId);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerEventsEventIdReferenceDataTicketDetailsOptions: ', $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 | Reference data key

eval {
    $api_instance->organizerEventsEventIdReferenceDataTicketDetailsOptions(eventId => $eventId);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerEventsEventIdReferenceDataTicketDetailsOptions: $@\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 | Reference data key (default to null)

try:
    # CORS support
    api_instance.organizer_events_event_id_reference_data_ticket_details_options(eventId)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerEventsEventIdReferenceDataTicketDetailsOptions: %s\n" % e)
extern crate DefaultApi;

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

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

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

Scopes

Parameters

Path parameters
Name Description
eventId*
String
Reference data key
Required

Responses

Name Type Format Description
Access-Control-Allow-Origin String
Access-Control-Allow-Methods String
Access-Control-Allow-Headers String

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/_legacy/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._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

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

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

        // 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._legacy.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


organizerEventsEventIdTicketsOptions

CORS support

Enable CORS by returning correct headers


/organizer/events/{eventId}/tickets

Usage and SDK Samples

curl -X OPTIONS \
 "https://api.tixngo.io/prod/_legacy/organizer/events/{eventId}/tickets"
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

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

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

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

        try {
            apiInstance.organizerEventsEventIdTicketsOptions(eventId);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerEventsEventIdTicketsOptions");
            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.organizerEventsEventIdTicketsOptions(eventId);
    print(result);
} catch (e) {
    print('Exception when calling DefaultApi->organizerEventsEventIdTicketsOptions: $e\n');
}

import com.secutix.tixngo._legacy.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 {
            apiInstance.organizerEventsEventIdTicketsOptions(eventId);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerEventsEventIdTicketsOptions");
            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)

// CORS support
[apiInstance organizerEventsEventIdTicketsOptionsWith:eventId
              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 callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.organizerEventsEventIdTicketsOptions(eventId, callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

namespace Example
{
    public class organizerEventsEventIdTicketsOptionsExample
    {
        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 {
                // CORS support
                apiInstance.organizerEventsEventIdTicketsOptions(eventId);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerEventsEventIdTicketsOptions: " + 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 {
    $api_instance->organizerEventsEventIdTicketsOptions($eventId);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerEventsEventIdTicketsOptions: ', $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 {
    $api_instance->organizerEventsEventIdTicketsOptions(eventId => $eventId);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerEventsEventIdTicketsOptions: $@\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:
    # CORS support
    api_instance.organizer_events_event_id_tickets_options(eventId)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerEventsEventIdTicketsOptions: %s\n" % e)
extern crate DefaultApi;

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

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

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

Scopes

Parameters

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

Responses

Name Type Format Description
Access-Control-Allow-Origin String
Access-Control-Allow-Methods String
Access-Control-Allow-Headers String

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/_legacy/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._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

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

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

        // 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._legacy.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/_legacy/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._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

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

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

        // 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._legacy.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/_legacy/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._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

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

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

        // 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._legacy.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


organizerEventsExportMultilingualsOptions

CORS support

Enable CORS by returning correct headers


/organizer/events/export-multilinguals

Usage and SDK Samples

curl -X OPTIONS \
 "https://api.tixngo.io/prod/_legacy/organizer/events/export-multilinguals"
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

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

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

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

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

final api_instance = DefaultApi();


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

import com.secutix.tixngo._legacy.api.DefaultApi;

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

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


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

// CORS support
[apiInstance organizerEventsExportMultilingualsOptionsWithCompletionHandler: 
              ^(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 callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.organizerEventsExportMultilingualsOptions(callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

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

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

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

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

try {
    $api_instance->organizerEventsExportMultilingualsOptions();
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerEventsExportMultilingualsOptions: ', $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 {
    $api_instance->organizerEventsExportMultilingualsOptions();
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerEventsExportMultilingualsOptions: $@\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:
    # CORS support
    api_instance.organizer_events_export_multilinguals_options()
except ApiException as e:
    print("Exception when calling DefaultApi->organizerEventsExportMultilingualsOptions: %s\n" % e)
extern crate DefaultApi;

pub fn main() {

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

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

Scopes

Parameters

Responses

Name Type Format Description
Access-Control-Allow-Origin String
Access-Control-Allow-Methods String
Access-Control-Allow-Headers String

organizerEventsExportOptions

CORS support

Enable CORS by returning correct headers


/organizer/events/export

Usage and SDK Samples

curl -X OPTIONS \
 "https://api.tixngo.io/prod/_legacy/organizer/events/export"
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

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

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

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

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

final api_instance = DefaultApi();


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

import com.secutix.tixngo._legacy.api.DefaultApi;

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

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


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

// CORS support
[apiInstance organizerEventsExportOptionsWithCompletionHandler: 
              ^(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 callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.organizerEventsExportOptions(callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

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

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

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

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

try {
    $api_instance->organizerEventsExportOptions();
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerEventsExportOptions: ', $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 {
    $api_instance->organizerEventsExportOptions();
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerEventsExportOptions: $@\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:
    # CORS support
    api_instance.organizer_events_export_options()
except ApiException as e:
    print("Exception when calling DefaultApi->organizerEventsExportOptions: %s\n" % e)
extern crate DefaultApi;

pub fn main() {

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

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

Scopes

Parameters

Responses

Name Type Format Description
Access-Control-Allow-Origin String
Access-Control-Allow-Methods String
Access-Control-Allow-Headers String

organizerGroupsGroupIdOptions

CORS support

Enable CORS by returning correct headers


/organizer/groups/{groupId}

Usage and SDK Samples

curl -X OPTIONS \
 "https://api.tixngo.io/prod/_legacy/organizer/groups/{groupId}"
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

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

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

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

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

final api_instance = DefaultApi();

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

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

import com.secutix.tixngo._legacy.api.DefaultApi;

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

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


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

// CORS support
[apiInstance organizerGroupsGroupIdOptionsWith:groupId
              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 callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.organizerGroupsGroupIdOptions(groupId, callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

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

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

            try {
                // CORS support
                apiInstance.organizerGroupsGroupIdOptions(groupId);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerGroupsGroupIdOptions: " + 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 | 

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

eval {
    $api_instance->organizerGroupsGroupIdOptions(groupId => $groupId);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerGroupsGroupIdOptions: $@\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)

try:
    # CORS support
    api_instance.organizer_groups_group_id_options(groupId)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerGroupsGroupIdOptions: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let groupId = groupId_example; // String

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

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

Scopes

Parameters

Path parameters
Name Description
groupId*
String
Required

Responses

Name Type Format Description
Access-Control-Allow-Origin String
Access-Control-Allow-Methods String
Access-Control-Allow-Headers String

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/_legacy/organizer/groups/{groupId}?language=language_example" \
 -d '{
  "image" : "image",
  "groupId" : "groupId",
  "name" : "name"
}'
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

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

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

        // 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._legacy.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/_legacy/organizer/injection/settings"
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

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

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

        // 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._legacy.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


organizerInjectionSettingsOptions

CORS support

Enable CORS by returning correct headers


/organizer/injection/settings

Usage and SDK Samples

curl -X OPTIONS \
 "https://api.tixngo.io/prod/_legacy/organizer/injection/settings"
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

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

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

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

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

final api_instance = DefaultApi();


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

import com.secutix.tixngo._legacy.api.DefaultApi;

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

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


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

// CORS support
[apiInstance organizerInjectionSettingsOptionsWithCompletionHandler: 
              ^(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 callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.organizerInjectionSettingsOptions(callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

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

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

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

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

try {
    $api_instance->organizerInjectionSettingsOptions();
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerInjectionSettingsOptions: ', $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 {
    $api_instance->organizerInjectionSettingsOptions();
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerInjectionSettingsOptions: $@\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:
    # CORS support
    api_instance.organizer_injection_settings_options()
except ApiException as e:
    print("Exception when calling DefaultApi->organizerInjectionSettingsOptions: %s\n" % e)
extern crate DefaultApi;

pub fn main() {

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

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

Scopes

Parameters

Responses

Name Type Format Description
Access-Control-Allow-Origin String
Access-Control-Allow-Methods String
Access-Control-Allow-Headers String

organizerMobileAppIdSettingsKeyOptions

CORS support

Enable CORS by returning correct headers


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

Usage and SDK Samples

curl -X OPTIONS \
 "https://api.tixngo.io/prod/_legacy/organizer/{mobile-app-id}/settings/{key}"
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

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

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

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

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

final api_instance = DefaultApi();

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

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

import com.secutix.tixngo._legacy.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 | 

        try {
            apiInstance.organizerMobileAppIdSettingsKeyOptions(mobileAppId, key);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerMobileAppIdSettingsKeyOptions");
            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)

// CORS support
[apiInstance organizerMobileAppIdSettingsKeyOptionsWith:mobileAppId
    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 key = key_example; // {String} 

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

namespace Example
{
    public class organizerMobileAppIdSettingsKeyOptionsExample
    {
        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)

            try {
                // CORS support
                apiInstance.organizerMobileAppIdSettingsKeyOptions(mobileAppId, key);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerMobileAppIdSettingsKeyOptions: " + 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 | 

try {
    $api_instance->organizerMobileAppIdSettingsKeyOptions($mobileAppId, $key);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerMobileAppIdSettingsKeyOptions: ', $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 | 

eval {
    $api_instance->organizerMobileAppIdSettingsKeyOptions(mobileAppId => $mobileAppId, key => $key);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerMobileAppIdSettingsKeyOptions: $@\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)

try:
    # CORS support
    api_instance.organizer_mobile_app_id_settings_key_options(mobileAppId, key)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerMobileAppIdSettingsKeyOptions: %s\n" % e)
extern crate DefaultApi;

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

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

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

Scopes

Parameters

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

Responses

Name Type Format Description
Access-Control-Allow-Origin String
Access-Control-Allow-Methods String
Access-Control-Allow-Headers String

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/_legacy/organizer/{mobile-app-id}/settings/{key}?oldValue=oldValue_example" \
 -d '{
  "value" : "value"
}'
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

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

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

        // 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._legacy.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/_legacy/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._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

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

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

        // 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._legacy.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


organizerMobilelogsOptions

CORS support

Enable CORS by returning correct headers


/organizer/mobilelogs

Usage and SDK Samples

curl -X OPTIONS \
 "https://api.tixngo.io/prod/_legacy/organizer/mobilelogs"
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

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

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

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

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

final api_instance = DefaultApi();


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

import com.secutix.tixngo._legacy.api.DefaultApi;

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

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


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

// CORS support
[apiInstance organizerMobilelogsOptionsWithCompletionHandler: 
              ^(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 callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.organizerMobilelogsOptions(callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

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

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

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

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

try {
    $api_instance->organizerMobilelogsOptions();
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerMobilelogsOptions: ', $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 {
    $api_instance->organizerMobilelogsOptions();
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerMobilelogsOptions: $@\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:
    # CORS support
    api_instance.organizer_mobilelogs_options()
except ApiException as e:
    print("Exception when calling DefaultApi->organizerMobilelogsOptions: %s\n" % e)
extern crate DefaultApi;

pub fn main() {

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

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

Scopes

Parameters

Responses

Name Type Format Description
Access-Control-Allow-Origin String
Access-Control-Allow-Methods String
Access-Control-Allow-Headers String

organizerNotificationcampaignCampaignIdDelete

Cancel campaign details


/organizer/notificationcampaign/{campaignId}

Usage and SDK Samples

curl -X DELETE \
 "https://api.tixngo.io/prod/_legacy/organizer/notificationcampaign/{campaignId}"
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

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

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

        // 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._legacy.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/_legacy/organizer/notificationcampaign/{campaignId}"
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

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

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

        // 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._legacy.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


organizerNotificationcampaignCampaignIdOptions

CORS support

Enable CORS by returning correct headers


/organizer/notificationcampaign/{campaignId}

Usage and SDK Samples

curl -X OPTIONS \
 "https://api.tixngo.io/prod/_legacy/organizer/notificationcampaign/{campaignId}"
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

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

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

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

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

final api_instance = DefaultApi();

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

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

import com.secutix.tixngo._legacy.api.DefaultApi;

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

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


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

// CORS support
[apiInstance organizerNotificationcampaignCampaignIdOptionsWith: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 = campaignId_example; // {String} 

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

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

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

            try {
                // CORS support
                apiInstance.organizerNotificationcampaignCampaignIdOptions(campaignId);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerNotificationcampaignCampaignIdOptions: " + 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 {
    $api_instance->organizerNotificationcampaignCampaignIdOptions($campaignId);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerNotificationcampaignCampaignIdOptions: ', $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 {
    $api_instance->organizerNotificationcampaignCampaignIdOptions(campaignId => $campaignId);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerNotificationcampaignCampaignIdOptions: $@\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:
    # CORS support
    api_instance.organizer_notificationcampaign_campaign_id_options(campaignId)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerNotificationcampaignCampaignIdOptions: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let campaignId = campaignId_example; // String

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

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

Scopes

Parameters

Path parameters
Name Description
campaignId*
String
Required

Responses

Name Type Format Description
Access-Control-Allow-Origin String
Access-Control-Allow-Methods String
Access-Control-Allow-Headers String

organizerNotificationcampaignOptions

CORS support

Enable CORS by returning correct headers


/organizer/notificationcampaign

Usage and SDK Samples

curl -X OPTIONS \
 "https://api.tixngo.io/prod/_legacy/organizer/notificationcampaign"
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

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

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

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

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

final api_instance = DefaultApi();


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

import com.secutix.tixngo._legacy.api.DefaultApi;

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

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


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

// CORS support
[apiInstance organizerNotificationcampaignOptionsWithCompletionHandler: 
              ^(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 callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.organizerNotificationcampaignOptions(callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

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

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

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

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

try {
    $api_instance->organizerNotificationcampaignOptions();
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerNotificationcampaignOptions: ', $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 {
    $api_instance->organizerNotificationcampaignOptions();
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerNotificationcampaignOptions: $@\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:
    # CORS support
    api_instance.organizer_notificationcampaign_options()
except ApiException as e:
    print("Exception when calling DefaultApi->organizerNotificationcampaignOptions: %s\n" % e)
extern crate DefaultApi;

pub fn main() {

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

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

Scopes

Parameters

Responses

Name Type Format Description
Access-Control-Allow-Origin String
Access-Control-Allow-Methods String
Access-Control-Allow-Headers String

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/_legacy/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._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

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

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

        // 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._legacy.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/_legacy/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._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

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

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

        // 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._legacy.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/_legacy/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._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

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

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

        // 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._legacy.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/_legacy/organizer/notificationcampaign/report/{campaignId}"
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

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

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

        // 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._legacy.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


organizerNotificationcampaignReportCampaignIdOptions

CORS support

Enable CORS by returning correct headers


/organizer/notificationcampaign/report/{campaignId}

Usage and SDK Samples

curl -X OPTIONS \
 "https://api.tixngo.io/prod/_legacy/organizer/notificationcampaign/report/{campaignId}"
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

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

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

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

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

final api_instance = DefaultApi();

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

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

import com.secutix.tixngo._legacy.api.DefaultApi;

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

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


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

// CORS support
[apiInstance organizerNotificationcampaignReportCampaignIdOptionsWith: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 = campaignId_example; // {String} 

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

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

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

            try {
                // CORS support
                apiInstance.organizerNotificationcampaignReportCampaignIdOptions(campaignId);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerNotificationcampaignReportCampaignIdOptions: " + 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 {
    $api_instance->organizerNotificationcampaignReportCampaignIdOptions($campaignId);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerNotificationcampaignReportCampaignIdOptions: ', $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 {
    $api_instance->organizerNotificationcampaignReportCampaignIdOptions(campaignId => $campaignId);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerNotificationcampaignReportCampaignIdOptions: $@\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:
    # CORS support
    api_instance.organizer_notificationcampaign_report_campaign_id_options(campaignId)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerNotificationcampaignReportCampaignIdOptions: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let campaignId = campaignId_example; // String

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

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

Scopes

Parameters

Path parameters
Name Description
campaignId*
String
Required

Responses

Name Type Format Description
Access-Control-Allow-Origin String
Access-Control-Allow-Methods String
Access-Control-Allow-Headers String

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/_legacy/organizer/notificationcampaign/reports?limit=limit_example&offset=offset_example&mobileAppId=mobileAppId_example&name=name_example&contentLanguage=contentLanguage_example&status="
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

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

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

        // 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._legacy.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


organizerNotificationcampaignReportsOptions

CORS support

Enable CORS by returning correct headers


/organizer/notificationcampaign/reports

Usage and SDK Samples

curl -X OPTIONS \
 "https://api.tixngo.io/prod/_legacy/organizer/notificationcampaign/reports"
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

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

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

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

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

final api_instance = DefaultApi();


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

import com.secutix.tixngo._legacy.api.DefaultApi;

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

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


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

// CORS support
[apiInstance organizerNotificationcampaignReportsOptionsWithCompletionHandler: 
              ^(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 callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.organizerNotificationcampaignReportsOptions(callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

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

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

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

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

try {
    $api_instance->organizerNotificationcampaignReportsOptions();
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerNotificationcampaignReportsOptions: ', $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 {
    $api_instance->organizerNotificationcampaignReportsOptions();
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerNotificationcampaignReportsOptions: $@\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:
    # CORS support
    api_instance.organizer_notificationcampaign_reports_options()
except ApiException as e:
    print("Exception when calling DefaultApi->organizerNotificationcampaignReportsOptions: %s\n" % e)
extern crate DefaultApi;

pub fn main() {

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

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

Scopes

Parameters

Responses

Name Type Format Description
Access-Control-Allow-Origin String
Access-Control-Allow-Methods String
Access-Control-Allow-Headers String

organizerNotificationcampaignTargetsOptions

CORS support

Enable CORS by returning correct headers


/organizer/notificationcampaign/targets

Usage and SDK Samples

curl -X OPTIONS \
 "https://api.tixngo.io/prod/_legacy/organizer/notificationcampaign/targets"
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

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

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

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

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

final api_instance = DefaultApi();


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

import com.secutix.tixngo._legacy.api.DefaultApi;

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

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


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

// CORS support
[apiInstance organizerNotificationcampaignTargetsOptionsWithCompletionHandler: 
              ^(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 callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.organizerNotificationcampaignTargetsOptions(callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

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

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

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

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

try {
    $api_instance->organizerNotificationcampaignTargetsOptions();
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerNotificationcampaignTargetsOptions: ', $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 {
    $api_instance->organizerNotificationcampaignTargetsOptions();
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerNotificationcampaignTargetsOptions: $@\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:
    # CORS support
    api_instance.organizer_notificationcampaign_targets_options()
except ApiException as e:
    print("Exception when calling DefaultApi->organizerNotificationcampaignTargetsOptions: %s\n" % e)
extern crate DefaultApi;

pub fn main() {

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

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

Scopes

Parameters

Responses

Name Type Format Description
Access-Control-Allow-Origin String
Access-Control-Allow-Methods String
Access-Control-Allow-Headers String

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/_legacy/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._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

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

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

        // 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._legacy.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/_legacy/organizer/operator/role"
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

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

public class DefaultApiExample {
    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();

        // Configure API key authorization: tyxr-organizers
        ApiKeyAuth tyxr-organizers = (ApiKeyAuth) defaultClient.getAuthentication("tyxr-organizers");
        tyxr-organizers.setApiKey("YOUR API KEY");
        // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
        //tyxr-organizers.setApiKeyPrefix("Token");

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

        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._legacy.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


organizerOperatorRoleOptions

CORS support

Enable CORS by returning correct headers


/organizer/operator/role

Usage and SDK Samples

curl -X OPTIONS \
 "https://api.tixngo.io/prod/_legacy/organizer/operator/role"
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

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

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

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

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

final api_instance = DefaultApi();


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

import com.secutix.tixngo._legacy.api.DefaultApi;

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

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


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

// CORS support
[apiInstance organizerOperatorRoleOptionsWithCompletionHandler: 
              ^(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 callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.organizerOperatorRoleOptions(callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

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

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

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

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

try {
    $api_instance->organizerOperatorRoleOptions();
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerOperatorRoleOptions: ', $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 {
    $api_instance->organizerOperatorRoleOptions();
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerOperatorRoleOptions: $@\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:
    # CORS support
    api_instance.organizer_operator_role_options()
except ApiException as e:
    print("Exception when calling DefaultApi->organizerOperatorRoleOptions: %s\n" % e)
extern crate DefaultApi;

pub fn main() {

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

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

Scopes

Parameters

Responses

Name Type Format Description
Access-Control-Allow-Origin String
Access-Control-Allow-Methods String
Access-Control-Allow-Headers String

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/_legacy/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._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

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

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

        // 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._legacy.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


organizerPendingSpectatorsOptions

CORS support

Enable CORS by returning correct headers


/organizer/pendingSpectators

Usage and SDK Samples

curl -X OPTIONS \
 "https://api.tixngo.io/prod/_legacy/organizer/pendingSpectators"
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

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

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

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

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

final api_instance = DefaultApi();


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

import com.secutix.tixngo._legacy.api.DefaultApi;

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

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


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

// CORS support
[apiInstance organizerPendingSpectatorsOptionsWithCompletionHandler: 
              ^(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 callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.organizerPendingSpectatorsOptions(callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

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

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

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

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

try {
    $api_instance->organizerPendingSpectatorsOptions();
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerPendingSpectatorsOptions: ', $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 {
    $api_instance->organizerPendingSpectatorsOptions();
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerPendingSpectatorsOptions: $@\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:
    # CORS support
    api_instance.organizer_pending_spectators_options()
except ApiException as e:
    print("Exception when calling DefaultApi->organizerPendingSpectatorsOptions: %s\n" % e)
extern crate DefaultApi;

pub fn main() {

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

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

Scopes

Parameters

Responses

Name Type Format Description
Access-Control-Allow-Origin String
Access-Control-Allow-Methods String
Access-Control-Allow-Headers String

organizerPrivilegeDefinitionOptions

CORS support

Enable CORS by returning correct headers


/organizer/privilege-definition

Usage and SDK Samples

curl -X OPTIONS \
 "https://api.tixngo.io/prod/_legacy/organizer/privilege-definition"
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

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

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

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

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

final api_instance = DefaultApi();


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

import com.secutix.tixngo._legacy.api.DefaultApi;

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

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


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

// CORS support
[apiInstance organizerPrivilegeDefinitionOptionsWithCompletionHandler: 
              ^(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 callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.organizerPrivilegeDefinitionOptions(callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

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

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

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

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

try {
    $api_instance->organizerPrivilegeDefinitionOptions();
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerPrivilegeDefinitionOptions: ', $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 {
    $api_instance->organizerPrivilegeDefinitionOptions();
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerPrivilegeDefinitionOptions: $@\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:
    # CORS support
    api_instance.organizer_privilege_definition_options()
except ApiException as e:
    print("Exception when calling DefaultApi->organizerPrivilegeDefinitionOptions: %s\n" % e)
extern crate DefaultApi;

pub fn main() {

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

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

Scopes

Parameters

Responses

Name Type Format Description
Access-Control-Allow-Origin String
Access-Control-Allow-Methods String
Access-Control-Allow-Headers String

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/_legacy/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._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

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

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

        // 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._legacy.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/_legacy/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._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

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

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

        // 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._legacy.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/_legacy/organizer/privilege-spectator-instance?reason=reason_example&showDeletedInstance=true&operatorEmail=operatorEmail_example&privilegeSpectatorInstances="
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

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

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

        // 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._legacy.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


organizerPrivilegeSpectatorInstanceOptions

CORS support

Enable CORS by returning correct headers


/organizer/privilege-spectator-instance

Usage and SDK Samples

curl -X OPTIONS \
 "https://api.tixngo.io/prod/_legacy/organizer/privilege-spectator-instance"
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

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

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

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

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

final api_instance = DefaultApi();


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

import com.secutix.tixngo._legacy.api.DefaultApi;

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

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


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

// CORS support
[apiInstance organizerPrivilegeSpectatorInstanceOptionsWithCompletionHandler: 
              ^(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 callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.organizerPrivilegeSpectatorInstanceOptions(callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

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

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

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

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

try {
    $api_instance->organizerPrivilegeSpectatorInstanceOptions();
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerPrivilegeSpectatorInstanceOptions: ', $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 {
    $api_instance->organizerPrivilegeSpectatorInstanceOptions();
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerPrivilegeSpectatorInstanceOptions: $@\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:
    # CORS support
    api_instance.organizer_privilege_spectator_instance_options()
except ApiException as e:
    print("Exception when calling DefaultApi->organizerPrivilegeSpectatorInstanceOptions: %s\n" % e)
extern crate DefaultApi;

pub fn main() {

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

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

Scopes

Parameters

Responses

Name Type Format Description
Access-Control-Allow-Origin String
Access-Control-Allow-Methods String
Access-Control-Allow-Headers String

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/_legacy/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._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

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

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

        // 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._legacy.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/_legacy/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._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

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

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

        // 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._legacy.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


organizerPrivilegeSpectatorInstancesOptions

CORS support

Enable CORS by returning correct headers


/organizer/privilege-spectator-instances

Usage and SDK Samples

curl -X OPTIONS \
 "https://api.tixngo.io/prod/_legacy/organizer/privilege-spectator-instances"
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

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

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

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

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

final api_instance = DefaultApi();


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

import com.secutix.tixngo._legacy.api.DefaultApi;

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

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


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

// CORS support
[apiInstance organizerPrivilegeSpectatorInstancesOptionsWithCompletionHandler: 
              ^(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 callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.organizerPrivilegeSpectatorInstancesOptions(callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

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

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

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

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

try {
    $api_instance->organizerPrivilegeSpectatorInstancesOptions();
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerPrivilegeSpectatorInstancesOptions: ', $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 {
    $api_instance->organizerPrivilegeSpectatorInstancesOptions();
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerPrivilegeSpectatorInstancesOptions: $@\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:
    # CORS support
    api_instance.organizer_privilege_spectator_instances_options()
except ApiException as e:
    print("Exception when calling DefaultApi->organizerPrivilegeSpectatorInstancesOptions: %s\n" % e)
extern crate DefaultApi;

pub fn main() {

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

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

Scopes

Parameters

Responses

Name Type Format Description
Access-Control-Allow-Origin String
Access-Control-Allow-Methods String
Access-Control-Allow-Headers String

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/_legacy/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._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

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

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

        // 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._legacy.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/_legacy/organizer/profile"
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

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

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

        // 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._legacy.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


organizerProfileOptions

CORS support

Enable CORS by returning correct headers


/organizer/profile

Usage and SDK Samples

curl -X OPTIONS \
 "https://api.tixngo.io/prod/_legacy/organizer/profile"
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

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

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

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

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

final api_instance = DefaultApi();


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

import com.secutix.tixngo._legacy.api.DefaultApi;

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

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


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

// CORS support
[apiInstance organizerProfileOptionsWithCompletionHandler: 
              ^(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 callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.organizerProfileOptions(callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

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

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

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

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

try {
    $api_instance->organizerProfileOptions();
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerProfileOptions: ', $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 {
    $api_instance->organizerProfileOptions();
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerProfileOptions: $@\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:
    # CORS support
    api_instance.organizer_profile_options()
except ApiException as e:
    print("Exception when calling DefaultApi->organizerProfileOptions: %s\n" % e)
extern crate DefaultApi;

pub fn main() {

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

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

Scopes

Parameters

Responses

Name Type Format Description
Access-Control-Allow-Origin String
Access-Control-Allow-Methods String
Access-Control-Allow-Headers String

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/_legacy/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._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

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

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

        // 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._legacy.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/_legacy/organizer/reference-data/{key}?language=language_example&groups=&sites=&eventIds="
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

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

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

        // 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._legacy.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


organizerReferenceDataKeyOptions

CORS support

Enable CORS by returning correct headers


/organizer/reference-data/{key}

Usage and SDK Samples

curl -X OPTIONS \
 "https://api.tixngo.io/prod/_legacy/organizer/reference-data/{key}"
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

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

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

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();
        String key = key_example; // String | Reference data key

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

final api_instance = DefaultApi();

final String key = new String(); // String | Reference data key

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

import com.secutix.tixngo._legacy.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        String key = key_example; // String | Reference data key

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


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];
String *key = key_example; // Reference data key (default to null)

// CORS support
[apiInstance organizerReferenceDataKeyOptionsWith: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 key = key_example; // {String} Reference data key

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

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

            // Create an instance of the API class
            var apiInstance = new DefaultApi();
            var key = key_example;  // String | Reference data key (default to null)

            try {
                // CORS support
                apiInstance.organizerReferenceDataKeyOptions(key);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerReferenceDataKeyOptions: " + 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 | Reference data key

try {
    $api_instance->organizerReferenceDataKeyOptions($key);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerReferenceDataKeyOptions: ', $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 | Reference data key

eval {
    $api_instance->organizerReferenceDataKeyOptions(key => $key);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerReferenceDataKeyOptions: $@\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 | Reference data key (default to null)

try:
    # CORS support
    api_instance.organizer_reference_data_key_options(key)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerReferenceDataKeyOptions: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let key = key_example; // String

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

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

Scopes

Parameters

Path parameters
Name Description
key*
String
Reference data key
Required

Responses

Name Type Format Description
Access-Control-Allow-Origin String
Access-Control-Allow-Methods String
Access-Control-Allow-Headers String

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/_legacy/organizer/reports/event-tickets?eventIds=&contingents="
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

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

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

        // 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._legacy.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


organizerReportsEventTicketsOptions

CORS support

Enable CORS by returning correct headers


/organizer/reports/event-tickets

Usage and SDK Samples

curl -X OPTIONS \
 "https://api.tixngo.io/prod/_legacy/organizer/reports/event-tickets?eventIds="
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

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

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

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

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

final api_instance = DefaultApi();

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

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

import com.secutix.tixngo._legacy.api.DefaultApi;

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

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


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

// CORS support
[apiInstance organizerReportsEventTicketsOptionsWith:eventIds
              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 eventIds = ; // {array[String]} 

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

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

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

            try {
                // CORS support
                apiInstance.organizerReportsEventTicketsOptions(eventIds);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerReportsEventTicketsOptions: " + 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] | 

try {
    $api_instance->organizerReportsEventTicketsOptions($eventIds);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerReportsEventTicketsOptions: ', $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] | 

eval {
    $api_instance->organizerReportsEventTicketsOptions(eventIds => $eventIds);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerReportsEventTicketsOptions: $@\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)

try:
    # CORS support
    api_instance.organizer_reports_event_tickets_options(eventIds)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerReportsEventTicketsOptions: %s\n" % e)
extern crate DefaultApi;

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

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

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

Scopes

Parameters

Query parameters
Name Description
eventIds*
array[String]
Required

Responses

Name Type Format Description
Access-Control-Allow-Origin String
Access-Control-Allow-Methods String
Access-Control-Allow-Headers String

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/_legacy/organizer/reports/{reportName}/{eventId}?offset=789&limit=789"
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

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

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

        // 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._legacy.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


organizerReportsReportNameEventIdOptions

CORS support

Enable CORS by returning correct headers


/organizer/reports/{reportName}/{eventId}

Usage and SDK Samples

curl -X OPTIONS \
 "https://api.tixngo.io/prod/_legacy/organizer/reports/{reportName}/{eventId}"
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

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

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

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

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

final api_instance = DefaultApi();

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

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

import com.secutix.tixngo._legacy.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 | 

        try {
            apiInstance.organizerReportsReportNameEventIdOptions(reportName, eventId);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerReportsReportNameEventIdOptions");
            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)

// CORS support
[apiInstance organizerReportsReportNameEventIdOptionsWith:reportName
    eventId:eventId
              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 reportName = reportName_example; // {String} 
var eventId = eventId_example; // {String} 

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

namespace Example
{
    public class organizerReportsReportNameEventIdOptionsExample
    {
        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)

            try {
                // CORS support
                apiInstance.organizerReportsReportNameEventIdOptions(reportName, eventId);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerReportsReportNameEventIdOptions: " + 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 | 

try {
    $api_instance->organizerReportsReportNameEventIdOptions($reportName, $eventId);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerReportsReportNameEventIdOptions: ', $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 | 

eval {
    $api_instance->organizerReportsReportNameEventIdOptions(reportName => $reportName, eventId => $eventId);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerReportsReportNameEventIdOptions: $@\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)

try:
    # CORS support
    api_instance.organizer_reports_report_name_event_id_options(reportName, eventId)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerReportsReportNameEventIdOptions: %s\n" % e)
extern crate DefaultApi;

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

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

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

Scopes

Parameters

Path parameters
Name Description
reportName*
String
Required
eventId*
String
Required

Responses

Name Type Format Description
Access-Control-Allow-Origin String
Access-Control-Allow-Methods String
Access-Control-Allow-Headers String

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/_legacy/organizer/securitytokens/{mobileAppId}/{spectatorEmail}"
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

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

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

        // 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._legacy.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


organizerSecuritytokensMobileAppIdSpectatorEmailOptions

CORS support

Enable CORS by returning correct headers


/organizer/securitytokens/{mobileAppId}/{spectatorEmail}

Usage and SDK Samples

curl -X OPTIONS \
 "https://api.tixngo.io/prod/_legacy/organizer/securitytokens/{mobileAppId}/{spectatorEmail}"
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

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

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

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

        try {
            apiInstance.organizerSecuritytokensMobileAppIdSpectatorEmailOptions(mobileAppId, spectatorEmail);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerSecuritytokensMobileAppIdSpectatorEmailOptions");
            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.organizerSecuritytokensMobileAppIdSpectatorEmailOptions(mobileAppId, spectatorEmail);
    print(result);
} catch (e) {
    print('Exception when calling DefaultApi->organizerSecuritytokensMobileAppIdSpectatorEmailOptions: $e\n');
}

import com.secutix.tixngo._legacy.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.organizerSecuritytokensMobileAppIdSpectatorEmailOptions(mobileAppId, spectatorEmail);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerSecuritytokensMobileAppIdSpectatorEmailOptions");
            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)

// CORS support
[apiInstance organizerSecuritytokensMobileAppIdSpectatorEmailOptionsWith: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.organizerSecuritytokensMobileAppIdSpectatorEmailOptions(mobileAppId, spectatorEmail, callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

namespace Example
{
    public class organizerSecuritytokensMobileAppIdSpectatorEmailOptionsExample
    {
        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 {
                // CORS support
                apiInstance.organizerSecuritytokensMobileAppIdSpectatorEmailOptions(mobileAppId, spectatorEmail);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerSecuritytokensMobileAppIdSpectatorEmailOptions: " + 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->organizerSecuritytokensMobileAppIdSpectatorEmailOptions($mobileAppId, $spectatorEmail);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerSecuritytokensMobileAppIdSpectatorEmailOptions: ', $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->organizerSecuritytokensMobileAppIdSpectatorEmailOptions(mobileAppId => $mobileAppId, spectatorEmail => $spectatorEmail);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerSecuritytokensMobileAppIdSpectatorEmailOptions: $@\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:
    # CORS support
    api_instance.organizer_securitytokens_mobile_app_id_spectator_email_options(mobileAppId, spectatorEmail)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerSecuritytokensMobileAppIdSpectatorEmailOptions: %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.organizerSecuritytokensMobileAppIdSpectatorEmailOptions(mobileAppId, spectatorEmail, &context).wait();

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

Scopes

Parameters

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

Responses

Name Type Format Description
Access-Control-Allow-Origin String
Access-Control-Allow-Methods String
Access-Control-Allow-Headers String

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/_legacy/organizer/settings?key=key_example&limit=56&offset=56"
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

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

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

        // 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._legacy.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        Integer limit = 56; // Integer | 
        Integer offset = 56; // Integer | 
        String 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


organizerSettingsKeyOptions

CORS support

Enable CORS by returning correct headers


/organizer/settings/{key}

Usage and SDK Samples

curl -X OPTIONS \
 "https://api.tixngo.io/prod/_legacy/organizer/settings/{key}"
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

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

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

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

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

final api_instance = DefaultApi();

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

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

import com.secutix.tixngo._legacy.api.DefaultApi;

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

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


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

// CORS support
[apiInstance organizerSettingsKeyOptionsWith: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 key = key_example; // {String} 

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.organizerSettingsKeyOptions(key, callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

namespace Example
{
    public class organizerSettingsKeyOptionsExample
    {
        public void main()
        {

            // Create an instance of the API class
            var apiInstance = new DefaultApi();
            var key = key_example;  // String |  (default to null)

            try {
                // CORS support
                apiInstance.organizerSettingsKeyOptions(key);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerSettingsKeyOptions: " + 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 | 

try {
    $api_instance->organizerSettingsKeyOptions($key);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerSettingsKeyOptions: ', $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 | 

eval {
    $api_instance->organizerSettingsKeyOptions(key => $key);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerSettingsKeyOptions: $@\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)

try:
    # CORS support
    api_instance.organizer_settings_key_options(key)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerSettingsKeyOptions: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let key = key_example; // String

    let mut context = DefaultApi::Context::default();
    let result = client.organizerSettingsKeyOptions(key, &context).wait();

    println!("{:?}", result);
}

Scopes

Parameters

Path parameters
Name Description
key*
String
Required

Responses

Name Type Format Description
Access-Control-Allow-Origin String
Access-Control-Allow-Methods String
Access-Control-Allow-Headers String

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/_legacy/organizer/settings/{key}" \
 -d '{
  "value" : "value"
}'
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

import java.io.File;
import java.util.*;

public class DefaultApiExample {
    public static void main(String[] args) {

        // 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._legacy.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


organizerSettingsOptions

CORS support

Enable CORS by returning correct headers


/organizer/settings

Usage and SDK Samples

curl -X OPTIONS \
 "https://api.tixngo.io/prod/_legacy/organizer/settings"
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

import java.io.File;
import java.util.*;

public class DefaultApiExample {
    public static void main(String[] args) {

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();

        try {
            apiInstance.organizerSettingsOptions();
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerSettingsOptions");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();


try {
    final result = await api_instance.organizerSettingsOptions();
    print(result);
} catch (e) {
    print('Exception when calling DefaultApi->organizerSettingsOptions: $e\n');
}

import com.secutix.tixngo._legacy.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();

        try {
            apiInstance.organizerSettingsOptions();
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerSettingsOptions");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];

// CORS support
[apiInstance organizerSettingsOptionsWithCompletionHandler: 
              ^(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 callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.organizerSettingsOptions(callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

namespace Example
{
    public class organizerSettingsOptionsExample
    {
        public void main()
        {

            // Create an instance of the API class
            var apiInstance = new DefaultApi();

            try {
                // CORS support
                apiInstance.organizerSettingsOptions();
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerSettingsOptions: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();

try {
    $api_instance->organizerSettingsOptions();
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerSettingsOptions: ', $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 {
    $api_instance->organizerSettingsOptions();
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerSettingsOptions: $@\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:
    # CORS support
    api_instance.organizer_settings_options()
except ApiException as e:
    print("Exception when calling DefaultApi->organizerSettingsOptions: %s\n" % e)
extern crate DefaultApi;

pub fn main() {

    let mut context = DefaultApi::Context::default();
    let result = client.organizerSettingsOptions(&context).wait();

    println!("{:?}", result);
}

Scopes

Parameters

Responses

Name Type Format Description
Access-Control-Allow-Origin String
Access-Control-Allow-Methods String
Access-Control-Allow-Headers String

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/_legacy/organizer/spectators?limit=limit_example&offset=offset_example&idCardNumber=idCardNumber_example&email=email_example&mobileAppId=mobileAppId_example&passportNumber=passportNumber_example&phoneNumber=phoneNumber_example&firstName=firstName_example&lastName=lastName_example&fileId=fileId_example&appVersion=appVersion_example"
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

import java.io.File;
import java.util.*;

public class DefaultApiExample {
    public static void main(String[] args) {

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();
        String limit = limit_example; // String | 
        String offset = offset_example; // String | 
        String idCardNumber = idCardNumber_example; // String | 
        String email = email_example; // String | 
        String mobileAppId = mobileAppId_example; // String | 
        String passportNumber = passportNumber_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, idCardNumber, email, mobileAppId, passportNumber, 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 idCardNumber = new String(); // String | 
final String email = new String(); // String | 
final String mobileAppId = new String(); // String | 
final String passportNumber = 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, idCardNumber, email, mobileAppId, passportNumber, phoneNumber, firstName, lastName, fileId, appVersion);
    print(result);
} catch (e) {
    print('Exception when calling DefaultApi->organizerSpectatorsGet: $e\n');
}

import com.secutix.tixngo._legacy.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 idCardNumber = idCardNumber_example; // String | 
        String email = email_example; // String | 
        String mobileAppId = mobileAppId_example; // String | 
        String passportNumber = passportNumber_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, idCardNumber, email, mobileAppId, passportNumber, 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 *idCardNumber = idCardNumber_example; //  (optional) (default to null)
String *email = email_example; //  (optional) (default to null)
String *mobileAppId = mobileAppId_example; //  (optional) (default to null)
String *passportNumber = passportNumber_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
    idCardNumber:idCardNumber
    email:email
    mobileAppId:mobileAppId
    passportNumber:passportNumber
    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 = {
  'idCardNumber': idCardNumber_example, // {String} 
  'email': email_example, // {String} 
  'mobileAppId': mobileAppId_example, // {String} 
  'passportNumber': passportNumber_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 idCardNumber = idCardNumber_example;  // String |  (optional)  (default to null)
            var email = email_example;  // String |  (optional)  (default to null)
            var mobileAppId = mobileAppId_example;  // String |  (optional)  (default to null)
            var passportNumber = passportNumber_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, idCardNumber, email, mobileAppId, passportNumber, 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 | 
$idCardNumber = idCardNumber_example; // String | 
$email = email_example; // String | 
$mobileAppId = mobileAppId_example; // String | 
$passportNumber = passportNumber_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, $idCardNumber, $email, $mobileAppId, $passportNumber, $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 $idCardNumber = idCardNumber_example; # String | 
my $email = email_example; # String | 
my $mobileAppId = mobileAppId_example; # String | 
my $passportNumber = passportNumber_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, idCardNumber => $idCardNumber, email => $email, mobileAppId => $mobileAppId, passportNumber => $passportNumber, 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)
idCardNumber = idCardNumber_example # String |  (optional) (default to null)
email = email_example # String |  (optional) (default to null)
mobileAppId = mobileAppId_example # String |  (optional) (default to null)
passportNumber = passportNumber_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, idCardNumber=idCardNumber, email=email, mobileAppId=mobileAppId, passportNumber=passportNumber, 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 idCardNumber = idCardNumber_example; // String
    let email = email_example; // String
    let mobileAppId = mobileAppId_example; // String
    let passportNumber = passportNumber_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, idCardNumber, email, mobileAppId, passportNumber, phoneNumber, firstName, lastName, fileId, appVersion, &context).wait();

    println!("{:?}", result);
}

Scopes

Parameters

Query parameters
Name Description
limit*
String
Required
offset*
String
Required
idCardNumber
String
email
String
mobileAppId
String
passportNumber
String
phoneNumber
String
firstName
String
lastName
String
fileId
String
appVersion
String

Responses


organizerSpectatorsOptions

CORS support

Enable CORS by returning correct headers


/organizer/spectators

Usage and SDK Samples

curl -X OPTIONS \
 "https://api.tixngo.io/prod/_legacy/organizer/spectators"
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

import java.io.File;
import java.util.*;

public class DefaultApiExample {
    public static void main(String[] args) {

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();

        try {
            apiInstance.organizerSpectatorsOptions();
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerSpectatorsOptions");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();


try {
    final result = await api_instance.organizerSpectatorsOptions();
    print(result);
} catch (e) {
    print('Exception when calling DefaultApi->organizerSpectatorsOptions: $e\n');
}

import com.secutix.tixngo._legacy.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();

        try {
            apiInstance.organizerSpectatorsOptions();
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerSpectatorsOptions");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];

// CORS support
[apiInstance organizerSpectatorsOptionsWithCompletionHandler: 
              ^(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 callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.organizerSpectatorsOptions(callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

namespace Example
{
    public class organizerSpectatorsOptionsExample
    {
        public void main()
        {

            // Create an instance of the API class
            var apiInstance = new DefaultApi();

            try {
                // CORS support
                apiInstance.organizerSpectatorsOptions();
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerSpectatorsOptions: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();

try {
    $api_instance->organizerSpectatorsOptions();
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerSpectatorsOptions: ', $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 {
    $api_instance->organizerSpectatorsOptions();
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerSpectatorsOptions: $@\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:
    # CORS support
    api_instance.organizer_spectators_options()
except ApiException as e:
    print("Exception when calling DefaultApi->organizerSpectatorsOptions: %s\n" % e)
extern crate DefaultApi;

pub fn main() {

    let mut context = DefaultApi::Context::default();
    let result = client.organizerSpectatorsOptions(&context).wait();

    println!("{:?}", result);
}

Scopes

Parameters

Responses

Name Type Format Description
Access-Control-Allow-Origin String
Access-Control-Allow-Methods String
Access-Control-Allow-Headers String

organizerSpectatorsSpectatorIdDelete

delete/anonymize spectator base on email and appId


/organizer/spectators/{spectatorId}

Usage and SDK Samples

curl -X DELETE \
 "https://api.tixngo.io/prod/_legacy/organizer/spectators/{spectatorId}?mobileAppId=mobileAppId_example&mustNotifySpectator=true"
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

import java.io.File;
import java.util.*;

public class DefaultApiExample {
    public static void main(String[] args) {

        // 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._legacy.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/_legacy/organizer/spectators/{spectatorId}?mobileAppId=mobileAppId_example"
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

import java.io.File;
import java.util.*;

public class DefaultApiExample {
    public static void main(String[] args) {

        // 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._legacy.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/_legacy/organizer/spectators/{spectatorId}/lock?mobileAppId=mobileAppId_example"
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

import java.io.File;
import java.util.*;

public class DefaultApiExample {
    public static void main(String[] args) {

        // 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._legacy.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


organizerSpectatorsSpectatorIdLockOptions

CORS support

Enable CORS by returning correct headers


/organizer/spectators/{spectatorId}/lock

Usage and SDK Samples

curl -X OPTIONS \
 "https://api.tixngo.io/prod/_legacy/organizer/spectators/{spectatorId}/lock"
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

import java.io.File;
import java.util.*;

public class DefaultApiExample {
    public static void main(String[] args) {

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();
        String spectatorId = spectatorId_example; // String | the email of the spectator

        try {
            apiInstance.organizerSpectatorsSpectatorIdLockOptions(spectatorId);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerSpectatorsSpectatorIdLockOptions");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();

final String spectatorId = new String(); // String | the email of the spectator

try {
    final result = await api_instance.organizerSpectatorsSpectatorIdLockOptions(spectatorId);
    print(result);
} catch (e) {
    print('Exception when calling DefaultApi->organizerSpectatorsSpectatorIdLockOptions: $e\n');
}

import com.secutix.tixngo._legacy.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

        try {
            apiInstance.organizerSpectatorsSpectatorIdLockOptions(spectatorId);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerSpectatorsSpectatorIdLockOptions");
            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)

// CORS support
[apiInstance organizerSpectatorsSpectatorIdLockOptionsWith:spectatorId
              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 callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.organizerSpectatorsSpectatorIdLockOptions(spectatorId, callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

namespace Example
{
    public class organizerSpectatorsSpectatorIdLockOptionsExample
    {
        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)

            try {
                // CORS support
                apiInstance.organizerSpectatorsSpectatorIdLockOptions(spectatorId);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerSpectatorsSpectatorIdLockOptions: " + 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

try {
    $api_instance->organizerSpectatorsSpectatorIdLockOptions($spectatorId);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerSpectatorsSpectatorIdLockOptions: ', $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

eval {
    $api_instance->organizerSpectatorsSpectatorIdLockOptions(spectatorId => $spectatorId);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerSpectatorsSpectatorIdLockOptions: $@\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)

try:
    # CORS support
    api_instance.organizer_spectators_spectator_id_lock_options(spectatorId)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerSpectatorsSpectatorIdLockOptions: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let spectatorId = spectatorId_example; // String

    let mut context = DefaultApi::Context::default();
    let result = client.organizerSpectatorsSpectatorIdLockOptions(spectatorId, &context).wait();

    println!("{:?}", result);
}

Scopes

Parameters

Path parameters
Name Description
spectatorId*
String
the email of the spectator
Required

Responses

Name Type Format Description
Access-Control-Allow-Origin String
Access-Control-Allow-Methods String
Access-Control-Allow-Headers String

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/_legacy/organizer/spectators/{spectatorId}/lock?mustNotifySpectator=true&mobileAppId=mobileAppId_example" \
 -d '{
  "isLocked" : true
}'
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

import java.io.File;
import java.util.*;

public class DefaultApiExample {
    public static void main(String[] args) {

        // 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._legacy.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


organizerSpectatorsSpectatorIdOptions

CORS support

Enable CORS by returning correct headers


/organizer/spectators/{spectatorId}

Usage and SDK Samples

curl -X OPTIONS \
 "https://api.tixngo.io/prod/_legacy/organizer/spectators/{spectatorId}"
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

import java.io.File;
import java.util.*;

public class DefaultApiExample {
    public static void main(String[] args) {

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();
        String spectatorId = spectatorId_example; // String | the email of the spectator

        try {
            apiInstance.organizerSpectatorsSpectatorIdOptions(spectatorId);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerSpectatorsSpectatorIdOptions");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();

final String spectatorId = new String(); // String | the email of the spectator

try {
    final result = await api_instance.organizerSpectatorsSpectatorIdOptions(spectatorId);
    print(result);
} catch (e) {
    print('Exception when calling DefaultApi->organizerSpectatorsSpectatorIdOptions: $e\n');
}

import com.secutix.tixngo._legacy.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

        try {
            apiInstance.organizerSpectatorsSpectatorIdOptions(spectatorId);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerSpectatorsSpectatorIdOptions");
            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)

// CORS support
[apiInstance organizerSpectatorsSpectatorIdOptionsWith:spectatorId
              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 callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.organizerSpectatorsSpectatorIdOptions(spectatorId, callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

namespace Example
{
    public class organizerSpectatorsSpectatorIdOptionsExample
    {
        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)

            try {
                // CORS support
                apiInstance.organizerSpectatorsSpectatorIdOptions(spectatorId);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerSpectatorsSpectatorIdOptions: " + 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

try {
    $api_instance->organizerSpectatorsSpectatorIdOptions($spectatorId);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerSpectatorsSpectatorIdOptions: ', $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

eval {
    $api_instance->organizerSpectatorsSpectatorIdOptions(spectatorId => $spectatorId);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerSpectatorsSpectatorIdOptions: $@\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)

try:
    # CORS support
    api_instance.organizer_spectators_spectator_id_options(spectatorId)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerSpectatorsSpectatorIdOptions: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let spectatorId = spectatorId_example; // String

    let mut context = DefaultApi::Context::default();
    let result = client.organizerSpectatorsSpectatorIdOptions(spectatorId, &context).wait();

    println!("{:?}", result);
}

Scopes

Parameters

Path parameters
Name Description
spectatorId*
String
the email of the spectator
Required

Responses

Name Type Format Description
Access-Control-Allow-Origin String
Access-Control-Allow-Methods String
Access-Control-Allow-Headers String

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/_legacy/organizer/spectators/{spectatorId}/ticketSummary?mobileAppId=mobileAppId_example"
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

import java.io.File;
import java.util.*;

public class DefaultApiExample {
    public static void main(String[] args) {

        // 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._legacy.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


organizerSpectatorsSpectatorIdTicketSummaryOptions

CORS support

Enable CORS by returning correct headers


/organizer/spectators/{spectatorId}/ticketSummary

Usage and SDK Samples

curl -X OPTIONS \
 "https://api.tixngo.io/prod/_legacy/organizer/spectators/{spectatorId}/ticketSummary"
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

import java.io.File;
import java.util.*;

public class DefaultApiExample {
    public static void main(String[] args) {

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();
        String spectatorId = spectatorId_example; // String | the email of the spectator

        try {
            apiInstance.organizerSpectatorsSpectatorIdTicketSummaryOptions(spectatorId);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerSpectatorsSpectatorIdTicketSummaryOptions");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();

final String spectatorId = new String(); // String | the email of the spectator

try {
    final result = await api_instance.organizerSpectatorsSpectatorIdTicketSummaryOptions(spectatorId);
    print(result);
} catch (e) {
    print('Exception when calling DefaultApi->organizerSpectatorsSpectatorIdTicketSummaryOptions: $e\n');
}

import com.secutix.tixngo._legacy.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

        try {
            apiInstance.organizerSpectatorsSpectatorIdTicketSummaryOptions(spectatorId);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerSpectatorsSpectatorIdTicketSummaryOptions");
            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)

// CORS support
[apiInstance organizerSpectatorsSpectatorIdTicketSummaryOptionsWith:spectatorId
              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 callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.organizerSpectatorsSpectatorIdTicketSummaryOptions(spectatorId, callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

namespace Example
{
    public class organizerSpectatorsSpectatorIdTicketSummaryOptionsExample
    {
        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)

            try {
                // CORS support
                apiInstance.organizerSpectatorsSpectatorIdTicketSummaryOptions(spectatorId);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerSpectatorsSpectatorIdTicketSummaryOptions: " + 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

try {
    $api_instance->organizerSpectatorsSpectatorIdTicketSummaryOptions($spectatorId);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerSpectatorsSpectatorIdTicketSummaryOptions: ', $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

eval {
    $api_instance->organizerSpectatorsSpectatorIdTicketSummaryOptions(spectatorId => $spectatorId);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerSpectatorsSpectatorIdTicketSummaryOptions: $@\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)

try:
    # CORS support
    api_instance.organizer_spectators_spectator_id_ticket_summary_options(spectatorId)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerSpectatorsSpectatorIdTicketSummaryOptions: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let spectatorId = spectatorId_example; // String

    let mut context = DefaultApi::Context::default();
    let result = client.organizerSpectatorsSpectatorIdTicketSummaryOptions(spectatorId, &context).wait();

    println!("{:?}", result);
}

Scopes

Parameters

Path parameters
Name Description
spectatorId*
String
the email of the spectator
Required

Responses

Name Type Format Description
Access-Control-Allow-Origin String
Access-Control-Allow-Methods String
Access-Control-Allow-Headers String

organizerSupportCommunicationResendOptions

CORS support

Enable CORS by returning correct headers


/organizer/support/communication/resend

Usage and SDK Samples

curl -X OPTIONS \
 "https://api.tixngo.io/prod/_legacy/organizer/support/communication/resend"
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

import java.io.File;
import java.util.*;

public class DefaultApiExample {
    public static void main(String[] args) {

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();

        try {
            apiInstance.organizerSupportCommunicationResendOptions();
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerSupportCommunicationResendOptions");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();


try {
    final result = await api_instance.organizerSupportCommunicationResendOptions();
    print(result);
} catch (e) {
    print('Exception when calling DefaultApi->organizerSupportCommunicationResendOptions: $e\n');
}

import com.secutix.tixngo._legacy.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();

        try {
            apiInstance.organizerSupportCommunicationResendOptions();
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerSupportCommunicationResendOptions");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];

// CORS support
[apiInstance organizerSupportCommunicationResendOptionsWithCompletionHandler: 
              ^(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 callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.organizerSupportCommunicationResendOptions(callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

namespace Example
{
    public class organizerSupportCommunicationResendOptionsExample
    {
        public void main()
        {

            // Create an instance of the API class
            var apiInstance = new DefaultApi();

            try {
                // CORS support
                apiInstance.organizerSupportCommunicationResendOptions();
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerSupportCommunicationResendOptions: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();

try {
    $api_instance->organizerSupportCommunicationResendOptions();
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerSupportCommunicationResendOptions: ', $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 {
    $api_instance->organizerSupportCommunicationResendOptions();
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerSupportCommunicationResendOptions: $@\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:
    # CORS support
    api_instance.organizer_support_communication_resend_options()
except ApiException as e:
    print("Exception when calling DefaultApi->organizerSupportCommunicationResendOptions: %s\n" % e)
extern crate DefaultApi;

pub fn main() {

    let mut context = DefaultApi::Context::default();
    let result = client.organizerSupportCommunicationResendOptions(&context).wait();

    println!("{:?}", result);
}

Scopes

Parameters

Responses

Name Type Format Description
Access-Control-Allow-Origin String
Access-Control-Allow-Methods String
Access-Control-Allow-Headers String

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/_legacy/organizer/support/communication/resend" \
 -d '{
  "communicationId" : 0,
  "email" : "email"
}'
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

import java.io.File;
import java.util.*;

public class DefaultApiExample {
    public static void main(String[] args) {

        // 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._legacy.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/_legacy/organizer/support/spectator/communications?email=email_example&mobileAppId=mobileAppId_example&limit=56&pageOffset=56"
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

import java.io.File;
import java.util.*;

public class DefaultApiExample {
    public static void main(String[] args) {

        // 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._legacy.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


organizerSupportSpectatorCommunicationsOptions

CORS support

Enable CORS by returning correct headers


/organizer/support/spectator/communications

Usage and SDK Samples

curl -X OPTIONS \
 "https://api.tixngo.io/prod/_legacy/organizer/support/spectator/communications"
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

import java.io.File;
import java.util.*;

public class DefaultApiExample {
    public static void main(String[] args) {

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();

        try {
            apiInstance.organizerSupportSpectatorCommunicationsOptions();
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerSupportSpectatorCommunicationsOptions");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();


try {
    final result = await api_instance.organizerSupportSpectatorCommunicationsOptions();
    print(result);
} catch (e) {
    print('Exception when calling DefaultApi->organizerSupportSpectatorCommunicationsOptions: $e\n');
}

import com.secutix.tixngo._legacy.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();

        try {
            apiInstance.organizerSupportSpectatorCommunicationsOptions();
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerSupportSpectatorCommunicationsOptions");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];

// CORS support
[apiInstance organizerSupportSpectatorCommunicationsOptionsWithCompletionHandler: 
              ^(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 callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.organizerSupportSpectatorCommunicationsOptions(callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

namespace Example
{
    public class organizerSupportSpectatorCommunicationsOptionsExample
    {
        public void main()
        {

            // Create an instance of the API class
            var apiInstance = new DefaultApi();

            try {
                // CORS support
                apiInstance.organizerSupportSpectatorCommunicationsOptions();
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerSupportSpectatorCommunicationsOptions: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();

try {
    $api_instance->organizerSupportSpectatorCommunicationsOptions();
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerSupportSpectatorCommunicationsOptions: ', $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 {
    $api_instance->organizerSupportSpectatorCommunicationsOptions();
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerSupportSpectatorCommunicationsOptions: $@\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:
    # CORS support
    api_instance.organizer_support_spectator_communications_options()
except ApiException as e:
    print("Exception when calling DefaultApi->organizerSupportSpectatorCommunicationsOptions: %s\n" % e)
extern crate DefaultApi;

pub fn main() {

    let mut context = DefaultApi::Context::default();
    let result = client.organizerSupportSpectatorCommunicationsOptions(&context).wait();

    println!("{:?}", result);
}

Scopes

Parameters

Responses

Name Type Format Description
Access-Control-Allow-Origin String
Access-Control-Allow-Methods String
Access-Control-Allow-Headers String

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/_legacy/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._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

import java.io.File;
import java.util.*;

public class DefaultApiExample {
    public static void main(String[] args) {

        // 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._legacy.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/_legacy/organizer/support/spectator/mobile-logs?email=email_example&mobileAppId=mobileAppId_example&limit=56&pageOffset=56"
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

import java.io.File;
import java.util.*;

public class DefaultApiExample {
    public static void main(String[] args) {

        // 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._legacy.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


organizerSupportSpectatorMobileLogsOptions

CORS support

Enable CORS by returning correct headers


/organizer/support/spectator/mobile-logs

Usage and SDK Samples

curl -X OPTIONS \
 "https://api.tixngo.io/prod/_legacy/organizer/support/spectator/mobile-logs"
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

import java.io.File;
import java.util.*;

public class DefaultApiExample {
    public static void main(String[] args) {

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();

        try {
            apiInstance.organizerSupportSpectatorMobileLogsOptions();
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerSupportSpectatorMobileLogsOptions");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();


try {
    final result = await api_instance.organizerSupportSpectatorMobileLogsOptions();
    print(result);
} catch (e) {
    print('Exception when calling DefaultApi->organizerSupportSpectatorMobileLogsOptions: $e\n');
}

import com.secutix.tixngo._legacy.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();

        try {
            apiInstance.organizerSupportSpectatorMobileLogsOptions();
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerSupportSpectatorMobileLogsOptions");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];

// CORS support
[apiInstance organizerSupportSpectatorMobileLogsOptionsWithCompletionHandler: 
              ^(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 callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.organizerSupportSpectatorMobileLogsOptions(callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

namespace Example
{
    public class organizerSupportSpectatorMobileLogsOptionsExample
    {
        public void main()
        {

            // Create an instance of the API class
            var apiInstance = new DefaultApi();

            try {
                // CORS support
                apiInstance.organizerSupportSpectatorMobileLogsOptions();
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerSupportSpectatorMobileLogsOptions: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();

try {
    $api_instance->organizerSupportSpectatorMobileLogsOptions();
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerSupportSpectatorMobileLogsOptions: ', $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 {
    $api_instance->organizerSupportSpectatorMobileLogsOptions();
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerSupportSpectatorMobileLogsOptions: $@\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:
    # CORS support
    api_instance.organizer_support_spectator_mobile_logs_options()
except ApiException as e:
    print("Exception when calling DefaultApi->organizerSupportSpectatorMobileLogsOptions: %s\n" % e)
extern crate DefaultApi;

pub fn main() {

    let mut context = DefaultApi::Context::default();
    let result = client.organizerSupportSpectatorMobileLogsOptions(&context).wait();

    println!("{:?}", result);
}

Scopes

Parameters

Responses

Name Type Format Description
Access-Control-Allow-Origin String
Access-Control-Allow-Methods String
Access-Control-Allow-Headers String

organizerSupportSpectatorOptions

CORS support

Enable CORS by returning correct headers


/organizer/support/spectator

Usage and SDK Samples

curl -X OPTIONS \
 "https://api.tixngo.io/prod/_legacy/organizer/support/spectator"
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

import java.io.File;
import java.util.*;

public class DefaultApiExample {
    public static void main(String[] args) {

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();

        try {
            apiInstance.organizerSupportSpectatorOptions();
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerSupportSpectatorOptions");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();


try {
    final result = await api_instance.organizerSupportSpectatorOptions();
    print(result);
} catch (e) {
    print('Exception when calling DefaultApi->organizerSupportSpectatorOptions: $e\n');
}

import com.secutix.tixngo._legacy.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();

        try {
            apiInstance.organizerSupportSpectatorOptions();
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerSupportSpectatorOptions");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];

// CORS support
[apiInstance organizerSupportSpectatorOptionsWithCompletionHandler: 
              ^(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 callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.organizerSupportSpectatorOptions(callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

namespace Example
{
    public class organizerSupportSpectatorOptionsExample
    {
        public void main()
        {

            // Create an instance of the API class
            var apiInstance = new DefaultApi();

            try {
                // CORS support
                apiInstance.organizerSupportSpectatorOptions();
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerSupportSpectatorOptions: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();

try {
    $api_instance->organizerSupportSpectatorOptions();
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerSupportSpectatorOptions: ', $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 {
    $api_instance->organizerSupportSpectatorOptions();
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerSupportSpectatorOptions: $@\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:
    # CORS support
    api_instance.organizer_support_spectator_options()
except ApiException as e:
    print("Exception when calling DefaultApi->organizerSupportSpectatorOptions: %s\n" % e)
extern crate DefaultApi;

pub fn main() {

    let mut context = DefaultApi::Context::default();
    let result = client.organizerSupportSpectatorOptions(&context).wait();

    println!("{:?}", result);
}

Scopes

Parameters

Responses

Name Type Format Description
Access-Control-Allow-Origin String
Access-Control-Allow-Methods String
Access-Control-Allow-Headers String

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/_legacy/organizer/support/spectator/tickets?email=email_example&mobileAppId=mobileAppId_example&ownership=&ticketStatusLog=ticketStatusLog_example&limit=56&pageOffset=56"
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

import java.io.File;
import java.util.*;

public class DefaultApiExample {
    public static void main(String[] args) {

        // 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._legacy.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


organizerSupportSpectatorTicketsOptions

CORS support

Enable CORS by returning correct headers


/organizer/support/spectator/tickets

Usage and SDK Samples

curl -X OPTIONS \
 "https://api.tixngo.io/prod/_legacy/organizer/support/spectator/tickets"
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

import java.io.File;
import java.util.*;

public class DefaultApiExample {
    public static void main(String[] args) {

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();

        try {
            apiInstance.organizerSupportSpectatorTicketsOptions();
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerSupportSpectatorTicketsOptions");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();


try {
    final result = await api_instance.organizerSupportSpectatorTicketsOptions();
    print(result);
} catch (e) {
    print('Exception when calling DefaultApi->organizerSupportSpectatorTicketsOptions: $e\n');
}

import com.secutix.tixngo._legacy.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();

        try {
            apiInstance.organizerSupportSpectatorTicketsOptions();
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerSupportSpectatorTicketsOptions");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];

// CORS support
[apiInstance organizerSupportSpectatorTicketsOptionsWithCompletionHandler: 
              ^(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 callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.organizerSupportSpectatorTicketsOptions(callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

namespace Example
{
    public class organizerSupportSpectatorTicketsOptionsExample
    {
        public void main()
        {

            // Create an instance of the API class
            var apiInstance = new DefaultApi();

            try {
                // CORS support
                apiInstance.organizerSupportSpectatorTicketsOptions();
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerSupportSpectatorTicketsOptions: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();

try {
    $api_instance->organizerSupportSpectatorTicketsOptions();
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerSupportSpectatorTicketsOptions: ', $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 {
    $api_instance->organizerSupportSpectatorTicketsOptions();
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerSupportSpectatorTicketsOptions: $@\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:
    # CORS support
    api_instance.organizer_support_spectator_tickets_options()
except ApiException as e:
    print("Exception when calling DefaultApi->organizerSupportSpectatorTicketsOptions: %s\n" % e)
extern crate DefaultApi;

pub fn main() {

    let mut context = DefaultApi::Context::default();
    let result = client.organizerSupportSpectatorTicketsOptions(&context).wait();

    println!("{:?}", result);
}

Scopes

Parameters

Responses

Name Type Format Description
Access-Control-Allow-Origin String
Access-Control-Allow-Methods String
Access-Control-Allow-Headers String

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/_legacy/organizer/support/spectator/tickets/pending?email=email_example&mobileAppId=mobileAppId_example®istered=true&limit=56&offset=56"
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

import java.io.File;
import java.util.*;

public class DefaultApiExample {
    public static void main(String[] args) {

        // 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._legacy.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        Integer limit = 56; // Integer | 
        Integer offset = 56; // Integer | 
        String 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


organizerSupportSpectatorTicketsPendingOptions

CORS support

Enable CORS by returning correct headers


/organizer/support/spectator/tickets/pending

Usage and SDK Samples

curl -X OPTIONS \
 "https://api.tixngo.io/prod/_legacy/organizer/support/spectator/tickets/pending"
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

import java.io.File;
import java.util.*;

public class DefaultApiExample {
    public static void main(String[] args) {

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();

        try {
            apiInstance.organizerSupportSpectatorTicketsPendingOptions();
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerSupportSpectatorTicketsPendingOptions");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();


try {
    final result = await api_instance.organizerSupportSpectatorTicketsPendingOptions();
    print(result);
} catch (e) {
    print('Exception when calling DefaultApi->organizerSupportSpectatorTicketsPendingOptions: $e\n');
}

import com.secutix.tixngo._legacy.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();

        try {
            apiInstance.organizerSupportSpectatorTicketsPendingOptions();
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerSupportSpectatorTicketsPendingOptions");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];

// CORS support
[apiInstance organizerSupportSpectatorTicketsPendingOptionsWithCompletionHandler: 
              ^(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 callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.organizerSupportSpectatorTicketsPendingOptions(callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

namespace Example
{
    public class organizerSupportSpectatorTicketsPendingOptionsExample
    {
        public void main()
        {

            // Create an instance of the API class
            var apiInstance = new DefaultApi();

            try {
                // CORS support
                apiInstance.organizerSupportSpectatorTicketsPendingOptions();
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerSupportSpectatorTicketsPendingOptions: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();

try {
    $api_instance->organizerSupportSpectatorTicketsPendingOptions();
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerSupportSpectatorTicketsPendingOptions: ', $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 {
    $api_instance->organizerSupportSpectatorTicketsPendingOptions();
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerSupportSpectatorTicketsPendingOptions: $@\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:
    # CORS support
    api_instance.organizer_support_spectator_tickets_pending_options()
except ApiException as e:
    print("Exception when calling DefaultApi->organizerSupportSpectatorTicketsPendingOptions: %s\n" % e)
extern crate DefaultApi;

pub fn main() {

    let mut context = DefaultApi::Context::default();
    let result = client.organizerSupportSpectatorTicketsPendingOptions(&context).wait();

    println!("{:?}", result);
}

Scopes

Parameters

Responses

Name Type Format Description
Access-Control-Allow-Origin String
Access-Control-Allow-Methods String
Access-Control-Allow-Headers String

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/_legacy/organizer/support/ticket?ticketId=ticketId_example&mobileAppId=mobileAppId_example&barcode=barcode_example&email=email_example"
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

import java.io.File;
import java.util.*;

public class DefaultApiExample {
    public static void main(String[] args) {

        // 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._legacy.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


organizerSupportTicketOptions

CORS support

Enable CORS by returning correct headers


/organizer/support/ticket

Usage and SDK Samples

curl -X OPTIONS \
 "https://api.tixngo.io/prod/_legacy/organizer/support/ticket"
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

import java.io.File;
import java.util.*;

public class DefaultApiExample {
    public static void main(String[] args) {

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();

        try {
            apiInstance.organizerSupportTicketOptions();
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerSupportTicketOptions");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();


try {
    final result = await api_instance.organizerSupportTicketOptions();
    print(result);
} catch (e) {
    print('Exception when calling DefaultApi->organizerSupportTicketOptions: $e\n');
}

import com.secutix.tixngo._legacy.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();

        try {
            apiInstance.organizerSupportTicketOptions();
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerSupportTicketOptions");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];

// CORS support
[apiInstance organizerSupportTicketOptionsWithCompletionHandler: 
              ^(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 callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.organizerSupportTicketOptions(callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

namespace Example
{
    public class organizerSupportTicketOptionsExample
    {
        public void main()
        {

            // Create an instance of the API class
            var apiInstance = new DefaultApi();

            try {
                // CORS support
                apiInstance.organizerSupportTicketOptions();
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerSupportTicketOptions: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();

try {
    $api_instance->organizerSupportTicketOptions();
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerSupportTicketOptions: ', $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 {
    $api_instance->organizerSupportTicketOptions();
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerSupportTicketOptions: $@\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:
    # CORS support
    api_instance.organizer_support_ticket_options()
except ApiException as e:
    print("Exception when calling DefaultApi->organizerSupportTicketOptions: %s\n" % e)
extern crate DefaultApi;

pub fn main() {

    let mut context = DefaultApi::Context::default();
    let result = client.organizerSupportTicketOptions(&context).wait();

    println!("{:?}", result);
}

Scopes

Parameters

Responses

Name Type Format Description
Access-Control-Allow-Origin String
Access-Control-Allow-Methods String
Access-Control-Allow-Headers String

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/_legacy/organizer/supported-applications"
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

import java.io.File;
import java.util.*;

public class DefaultApiExample {
    public static void main(String[] args) {

        // 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._legacy.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


organizerSupportedApplicationsOptions

CORS support

Enable CORS by returning correct headers


/organizer/supported-applications

Usage and SDK Samples

curl -X OPTIONS \
 "https://api.tixngo.io/prod/_legacy/organizer/supported-applications"
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

import java.io.File;
import java.util.*;

public class DefaultApiExample {
    public static void main(String[] args) {

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();

        try {
            apiInstance.organizerSupportedApplicationsOptions();
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerSupportedApplicationsOptions");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();


try {
    final result = await api_instance.organizerSupportedApplicationsOptions();
    print(result);
} catch (e) {
    print('Exception when calling DefaultApi->organizerSupportedApplicationsOptions: $e\n');
}

import com.secutix.tixngo._legacy.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();

        try {
            apiInstance.organizerSupportedApplicationsOptions();
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerSupportedApplicationsOptions");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];

// CORS support
[apiInstance organizerSupportedApplicationsOptionsWithCompletionHandler: 
              ^(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 callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.organizerSupportedApplicationsOptions(callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

namespace Example
{
    public class organizerSupportedApplicationsOptionsExample
    {
        public void main()
        {

            // Create an instance of the API class
            var apiInstance = new DefaultApi();

            try {
                // CORS support
                apiInstance.organizerSupportedApplicationsOptions();
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerSupportedApplicationsOptions: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();

try {
    $api_instance->organizerSupportedApplicationsOptions();
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerSupportedApplicationsOptions: ', $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 {
    $api_instance->organizerSupportedApplicationsOptions();
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerSupportedApplicationsOptions: $@\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:
    # CORS support
    api_instance.organizer_supported_applications_options()
except ApiException as e:
    print("Exception when calling DefaultApi->organizerSupportedApplicationsOptions: %s\n" % e)
extern crate DefaultApi;

pub fn main() {

    let mut context = DefaultApi::Context::default();
    let result = client.organizerSupportedApplicationsOptions(&context).wait();

    println!("{:?}", result);
}

Scopes

Parameters

Responses

Name Type Format Description
Access-Control-Allow-Origin String
Access-Control-Allow-Methods String
Access-Control-Allow-Headers String

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/_legacy/organizer/ticket-details-keys?eventId=eventId_example"
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

import java.io.File;
import java.util.*;

public class DefaultApiExample {
    public static void main(String[] args) {

        // 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._legacy.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


organizerTicketDetailsKeysOptions

CORS support

Enable CORS by returning correct headers


/organizer/ticket-details-keys

Usage and SDK Samples

curl -X OPTIONS \
 "https://api.tixngo.io/prod/_legacy/organizer/ticket-details-keys"
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

import java.io.File;
import java.util.*;

public class DefaultApiExample {
    public static void main(String[] args) {

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();

        try {
            apiInstance.organizerTicketDetailsKeysOptions();
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerTicketDetailsKeysOptions");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();


try {
    final result = await api_instance.organizerTicketDetailsKeysOptions();
    print(result);
} catch (e) {
    print('Exception when calling DefaultApi->organizerTicketDetailsKeysOptions: $e\n');
}

import com.secutix.tixngo._legacy.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();

        try {
            apiInstance.organizerTicketDetailsKeysOptions();
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerTicketDetailsKeysOptions");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];

// CORS support
[apiInstance organizerTicketDetailsKeysOptionsWithCompletionHandler: 
              ^(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 callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.organizerTicketDetailsKeysOptions(callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

namespace Example
{
    public class organizerTicketDetailsKeysOptionsExample
    {
        public void main()
        {

            // Create an instance of the API class
            var apiInstance = new DefaultApi();

            try {
                // CORS support
                apiInstance.organizerTicketDetailsKeysOptions();
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerTicketDetailsKeysOptions: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();

try {
    $api_instance->organizerTicketDetailsKeysOptions();
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerTicketDetailsKeysOptions: ', $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 {
    $api_instance->organizerTicketDetailsKeysOptions();
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerTicketDetailsKeysOptions: $@\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:
    # CORS support
    api_instance.organizer_ticket_details_keys_options()
except ApiException as e:
    print("Exception when calling DefaultApi->organizerTicketDetailsKeysOptions: %s\n" % e)
extern crate DefaultApi;

pub fn main() {

    let mut context = DefaultApi::Context::default();
    let result = client.organizerTicketDetailsKeysOptions(&context).wait();

    println!("{:?}", result);
}

Scopes

Parameters

Responses

Name Type Format Description
Access-Control-Allow-Origin String
Access-Control-Allow-Methods String
Access-Control-Allow-Headers String

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/_legacy/organizer/ticketStatusLog/{ticketId}"
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

import java.io.File;
import java.util.*;

public class DefaultApiExample {
    public static void main(String[] args) {

        // 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._legacy.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


organizerTicketStatusLogTicketIdOptions

CORS support

Enable CORS by returning correct headers


/organizer/ticketStatusLog/{ticketId}

Usage and SDK Samples

curl -X OPTIONS \
 "https://api.tixngo.io/prod/_legacy/organizer/ticketStatusLog/{ticketId}"
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

import java.io.File;
import java.util.*;

public class DefaultApiExample {
    public static void main(String[] args) {

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();
        String ticketId = ticketId_example; // String | 

        try {
            apiInstance.organizerTicketStatusLogTicketIdOptions(ticketId);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerTicketStatusLogTicketIdOptions");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();

final String ticketId = new String(); // String | 

try {
    final result = await api_instance.organizerTicketStatusLogTicketIdOptions(ticketId);
    print(result);
} catch (e) {
    print('Exception when calling DefaultApi->organizerTicketStatusLogTicketIdOptions: $e\n');
}

import com.secutix.tixngo._legacy.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        String ticketId = ticketId_example; // String | 

        try {
            apiInstance.organizerTicketStatusLogTicketIdOptions(ticketId);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerTicketStatusLogTicketIdOptions");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];
String *ticketId = ticketId_example; //  (default to null)

// CORS support
[apiInstance organizerTicketStatusLogTicketIdOptionsWith:ticketId
              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 callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.organizerTicketStatusLogTicketIdOptions(ticketId, callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

namespace Example
{
    public class organizerTicketStatusLogTicketIdOptionsExample
    {
        public void main()
        {

            // Create an instance of the API class
            var apiInstance = new DefaultApi();
            var ticketId = ticketId_example;  // String |  (default to null)

            try {
                // CORS support
                apiInstance.organizerTicketStatusLogTicketIdOptions(ticketId);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerTicketStatusLogTicketIdOptions: " + 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 {
    $api_instance->organizerTicketStatusLogTicketIdOptions($ticketId);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerTicketStatusLogTicketIdOptions: ', $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 {
    $api_instance->organizerTicketStatusLogTicketIdOptions(ticketId => $ticketId);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerTicketStatusLogTicketIdOptions: $@\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:
    # CORS support
    api_instance.organizer_ticket_status_log_ticket_id_options(ticketId)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerTicketStatusLogTicketIdOptions: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let ticketId = ticketId_example; // String

    let mut context = DefaultApi::Context::default();
    let result = client.organizerTicketStatusLogTicketIdOptions(ticketId, &context).wait();

    println!("{:?}", result);
}

Scopes

Parameters

Path parameters
Name Description
ticketId*
String
Required

Responses

Name Type Format Description
Access-Control-Allow-Origin String
Access-Control-Allow-Methods String
Access-Control-Allow-Headers String

organizerTicketsControlledOptions

CORS support

Enable CORS by returning correct headers


/organizer/tickets/controlled

Usage and SDK Samples

curl -X OPTIONS \
 "https://api.tixngo.io/prod/_legacy/organizer/tickets/controlled"
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

import java.io.File;
import java.util.*;

public class DefaultApiExample {
    public static void main(String[] args) {

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();

        try {
            apiInstance.organizerTicketsControlledOptions();
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerTicketsControlledOptions");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();


try {
    final result = await api_instance.organizerTicketsControlledOptions();
    print(result);
} catch (e) {
    print('Exception when calling DefaultApi->organizerTicketsControlledOptions: $e\n');
}

import com.secutix.tixngo._legacy.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();

        try {
            apiInstance.organizerTicketsControlledOptions();
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerTicketsControlledOptions");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];

// CORS support
[apiInstance organizerTicketsControlledOptionsWithCompletionHandler: 
              ^(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 callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.organizerTicketsControlledOptions(callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

namespace Example
{
    public class organizerTicketsControlledOptionsExample
    {
        public void main()
        {

            // Create an instance of the API class
            var apiInstance = new DefaultApi();

            try {
                // CORS support
                apiInstance.organizerTicketsControlledOptions();
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerTicketsControlledOptions: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();

try {
    $api_instance->organizerTicketsControlledOptions();
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerTicketsControlledOptions: ', $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 {
    $api_instance->organizerTicketsControlledOptions();
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerTicketsControlledOptions: $@\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:
    # CORS support
    api_instance.organizer_tickets_controlled_options()
except ApiException as e:
    print("Exception when calling DefaultApi->organizerTicketsControlledOptions: %s\n" % e)
extern crate DefaultApi;

pub fn main() {

    let mut context = DefaultApi::Context::default();
    let result = client.organizerTicketsControlledOptions(&context).wait();

    println!("{:?}", result);
}

Scopes

Parameters

Responses

Name Type Format Description
Access-Control-Allow-Origin String
Access-Control-Allow-Methods String
Access-Control-Allow-Headers String

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/_legacy/organizer/tickets/controlled" \
 -d '{
  "controlledTimestamp" : "2000-01-23T04:56:07.000+00:00",
  "ticketId" : "ticketId"
}'
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

import java.io.File;
import java.util.*;

public class DefaultApiExample {
    public static void main(String[] args) {

        // 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._legacy.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/_legacy/organizer/tickets/csv/download/{status}/{jobId}"
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

import java.io.File;
import java.util.*;

public class DefaultApiExample {
    public static void main(String[] args) {

        // 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._legacy.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


organizerTicketsCsvDownloadStatusJobIdOptions

CORS support

Enable CORS by returning correct headers


/organizer/tickets/csv/download/{status}/{jobId}

Usage and SDK Samples

curl -X OPTIONS \
 "https://api.tixngo.io/prod/_legacy/organizer/tickets/csv/download/{status}/{jobId}"
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

import java.io.File;
import java.util.*;

public class DefaultApiExample {
    public static void main(String[] args) {

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();
        String status = status_example; // String | 
        String jobId = jobId_example; // String | 

        try {
            apiInstance.organizerTicketsCsvDownloadStatusJobIdOptions(status, jobId);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerTicketsCsvDownloadStatusJobIdOptions");
            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.organizerTicketsCsvDownloadStatusJobIdOptions(status, jobId);
    print(result);
} catch (e) {
    print('Exception when calling DefaultApi->organizerTicketsCsvDownloadStatusJobIdOptions: $e\n');
}

import com.secutix.tixngo._legacy.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 {
            apiInstance.organizerTicketsCsvDownloadStatusJobIdOptions(status, jobId);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerTicketsCsvDownloadStatusJobIdOptions");
            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)

// CORS support
[apiInstance organizerTicketsCsvDownloadStatusJobIdOptionsWith:status
    jobId:jobId
              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 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.');
  }
};
api.organizerTicketsCsvDownloadStatusJobIdOptions(status, jobId, callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

namespace Example
{
    public class organizerTicketsCsvDownloadStatusJobIdOptionsExample
    {
        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 {
                // CORS support
                apiInstance.organizerTicketsCsvDownloadStatusJobIdOptions(status, jobId);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerTicketsCsvDownloadStatusJobIdOptions: " + 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 {
    $api_instance->organizerTicketsCsvDownloadStatusJobIdOptions($status, $jobId);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerTicketsCsvDownloadStatusJobIdOptions: ', $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 {
    $api_instance->organizerTicketsCsvDownloadStatusJobIdOptions(status => $status, jobId => $jobId);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerTicketsCsvDownloadStatusJobIdOptions: $@\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:
    # CORS support
    api_instance.organizer_tickets_csv_download_status_job_id_options(status, jobId)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerTicketsCsvDownloadStatusJobIdOptions: %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.organizerTicketsCsvDownloadStatusJobIdOptions(status, jobId, &context).wait();

    println!("{:?}", result);
}

Scopes

Parameters

Path parameters
Name Description
status*
String
Required
jobId*
String
Required

Responses

Name Type Format Description
Access-Control-Allow-Origin String
Access-Control-Allow-Methods String
Access-Control-Allow-Headers String

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/_legacy/organizer/tickets/csv"
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

import java.io.File;
import java.util.*;

public class DefaultApiExample {
    public static void main(String[] args) {

        // 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._legacy.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


organizerTicketsCsvOptions

CORS support

Enable CORS by returning correct headers


/organizer/tickets/csv

Usage and SDK Samples

curl -X OPTIONS \
 "https://api.tixngo.io/prod/_legacy/organizer/tickets/csv"
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

import java.io.File;
import java.util.*;

public class DefaultApiExample {
    public static void main(String[] args) {

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();

        try {
            apiInstance.organizerTicketsCsvOptions();
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerTicketsCsvOptions");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();


try {
    final result = await api_instance.organizerTicketsCsvOptions();
    print(result);
} catch (e) {
    print('Exception when calling DefaultApi->organizerTicketsCsvOptions: $e\n');
}

import com.secutix.tixngo._legacy.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();

        try {
            apiInstance.organizerTicketsCsvOptions();
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerTicketsCsvOptions");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];

// CORS support
[apiInstance organizerTicketsCsvOptionsWithCompletionHandler: 
              ^(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 callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.organizerTicketsCsvOptions(callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

namespace Example
{
    public class organizerTicketsCsvOptionsExample
    {
        public void main()
        {

            // Create an instance of the API class
            var apiInstance = new DefaultApi();

            try {
                // CORS support
                apiInstance.organizerTicketsCsvOptions();
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerTicketsCsvOptions: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();

try {
    $api_instance->organizerTicketsCsvOptions();
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerTicketsCsvOptions: ', $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 {
    $api_instance->organizerTicketsCsvOptions();
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerTicketsCsvOptions: $@\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:
    # CORS support
    api_instance.organizer_tickets_csv_options()
except ApiException as e:
    print("Exception when calling DefaultApi->organizerTicketsCsvOptions: %s\n" % e)
extern crate DefaultApi;

pub fn main() {

    let mut context = DefaultApi::Context::default();
    let result = client.organizerTicketsCsvOptions(&context).wait();

    println!("{:?}", result);
}

Scopes

Parameters

Responses

Name Type Format Description
Access-Control-Allow-Origin String
Access-Control-Allow-Methods String
Access-Control-Allow-Headers String

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/_legacy/organizer/tickets/csv/upload/{jobId}"
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

import java.io.File;
import java.util.*;

public class DefaultApiExample {
    public static void main(String[] args) {

        // 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._legacy.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


organizerTicketsCsvUploadJobIdOptions

CORS support

Enable CORS by returning correct headers


/organizer/tickets/csv/upload/{jobId}

Usage and SDK Samples

curl -X OPTIONS \
 "https://api.tixngo.io/prod/_legacy/organizer/tickets/csv/upload/{jobId}"
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

import java.io.File;
import java.util.*;

public class DefaultApiExample {
    public static void main(String[] args) {

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();
        String jobId = jobId_example; // String | 

        try {
            apiInstance.organizerTicketsCsvUploadJobIdOptions(jobId);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerTicketsCsvUploadJobIdOptions");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();

final String jobId = new String(); // String | 

try {
    final result = await api_instance.organizerTicketsCsvUploadJobIdOptions(jobId);
    print(result);
} catch (e) {
    print('Exception when calling DefaultApi->organizerTicketsCsvUploadJobIdOptions: $e\n');
}

import com.secutix.tixngo._legacy.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        String jobId = jobId_example; // String | 

        try {
            apiInstance.organizerTicketsCsvUploadJobIdOptions(jobId);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerTicketsCsvUploadJobIdOptions");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];
String *jobId = jobId_example; //  (default to null)

// CORS support
[apiInstance organizerTicketsCsvUploadJobIdOptionsWith:jobId
              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 jobId = jobId_example; // {String} 

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.organizerTicketsCsvUploadJobIdOptions(jobId, callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

namespace Example
{
    public class organizerTicketsCsvUploadJobIdOptionsExample
    {
        public void main()
        {

            // Create an instance of the API class
            var apiInstance = new DefaultApi();
            var jobId = jobId_example;  // String |  (default to null)

            try {
                // CORS support
                apiInstance.organizerTicketsCsvUploadJobIdOptions(jobId);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerTicketsCsvUploadJobIdOptions: " + 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 {
    $api_instance->organizerTicketsCsvUploadJobIdOptions($jobId);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerTicketsCsvUploadJobIdOptions: ', $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 {
    $api_instance->organizerTicketsCsvUploadJobIdOptions(jobId => $jobId);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerTicketsCsvUploadJobIdOptions: $@\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:
    # CORS support
    api_instance.organizer_tickets_csv_upload_job_id_options(jobId)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerTicketsCsvUploadJobIdOptions: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let jobId = jobId_example; // String

    let mut context = DefaultApi::Context::default();
    let result = client.organizerTicketsCsvUploadJobIdOptions(jobId, &context).wait();

    println!("{:?}", result);
}

Scopes

Parameters

Path parameters
Name Description
jobId*
String
Required

Responses

Name Type Format Description
Access-Control-Allow-Origin String
Access-Control-Allow-Methods String
Access-Control-Allow-Headers String

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/_legacy/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._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

import java.io.File;
import java.util.*;

public class DefaultApiExample {
    public static void main(String[] args) {

        // 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._legacy.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


organizerTicketsDiffOptions

CORS support

Enable CORS by returning correct headers


/organizer/tickets/diff

Usage and SDK Samples

curl -X OPTIONS \
 "https://api.tixngo.io/prod/_legacy/organizer/tickets/diff"
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

import java.io.File;
import java.util.*;

public class DefaultApiExample {
    public static void main(String[] args) {

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();

        try {
            apiInstance.organizerTicketsDiffOptions();
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerTicketsDiffOptions");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();


try {
    final result = await api_instance.organizerTicketsDiffOptions();
    print(result);
} catch (e) {
    print('Exception when calling DefaultApi->organizerTicketsDiffOptions: $e\n');
}

import com.secutix.tixngo._legacy.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();

        try {
            apiInstance.organizerTicketsDiffOptions();
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerTicketsDiffOptions");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];

// CORS support
[apiInstance organizerTicketsDiffOptionsWithCompletionHandler: 
              ^(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 callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.organizerTicketsDiffOptions(callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

namespace Example
{
    public class organizerTicketsDiffOptionsExample
    {
        public void main()
        {

            // Create an instance of the API class
            var apiInstance = new DefaultApi();

            try {
                // CORS support
                apiInstance.organizerTicketsDiffOptions();
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerTicketsDiffOptions: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();

try {
    $api_instance->organizerTicketsDiffOptions();
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerTicketsDiffOptions: ', $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 {
    $api_instance->organizerTicketsDiffOptions();
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerTicketsDiffOptions: $@\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:
    # CORS support
    api_instance.organizer_tickets_diff_options()
except ApiException as e:
    print("Exception when calling DefaultApi->organizerTicketsDiffOptions: %s\n" % e)
extern crate DefaultApi;

pub fn main() {

    let mut context = DefaultApi::Context::default();
    let result = client.organizerTicketsDiffOptions(&context).wait();

    println!("{:?}", result);
}

Scopes

Parameters

Responses

Name Type Format Description
Access-Control-Allow-Origin String
Access-Control-Allow-Methods String
Access-Control-Allow-Headers String

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/_legacy/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._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

import java.io.File;
import java.util.*;

public class DefaultApiExample {
    public static void main(String[] args) {

        // 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._legacy.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/_legacy/organizer/tickets-injection/report?limit=56&offset=56&period=period_example"
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

import java.io.File;
import java.util.*;

public class DefaultApiExample {
    public static void main(String[] args) {

        // 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._legacy.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        Integer limit = 56; // Integer | 
        Integer offset = 56; // Integer | 
        String 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


organizerTicketsInjectionReportOptions

CORS support

Enable CORS by returning correct headers


/organizer/tickets-injection/report

Usage and SDK Samples

curl -X OPTIONS \
 "https://api.tixngo.io/prod/_legacy/organizer/tickets-injection/report"
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

import java.io.File;
import java.util.*;

public class DefaultApiExample {
    public static void main(String[] args) {

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();

        try {
            apiInstance.organizerTicketsInjectionReportOptions();
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerTicketsInjectionReportOptions");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();


try {
    final result = await api_instance.organizerTicketsInjectionReportOptions();
    print(result);
} catch (e) {
    print('Exception when calling DefaultApi->organizerTicketsInjectionReportOptions: $e\n');
}

import com.secutix.tixngo._legacy.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();

        try {
            apiInstance.organizerTicketsInjectionReportOptions();
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerTicketsInjectionReportOptions");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];

// CORS support
[apiInstance organizerTicketsInjectionReportOptionsWithCompletionHandler: 
              ^(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 callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.organizerTicketsInjectionReportOptions(callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

namespace Example
{
    public class organizerTicketsInjectionReportOptionsExample
    {
        public void main()
        {

            // Create an instance of the API class
            var apiInstance = new DefaultApi();

            try {
                // CORS support
                apiInstance.organizerTicketsInjectionReportOptions();
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerTicketsInjectionReportOptions: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();

try {
    $api_instance->organizerTicketsInjectionReportOptions();
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerTicketsInjectionReportOptions: ', $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 {
    $api_instance->organizerTicketsInjectionReportOptions();
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerTicketsInjectionReportOptions: $@\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:
    # CORS support
    api_instance.organizer_tickets_injection_report_options()
except ApiException as e:
    print("Exception when calling DefaultApi->organizerTicketsInjectionReportOptions: %s\n" % e)
extern crate DefaultApi;

pub fn main() {

    let mut context = DefaultApi::Context::default();
    let result = client.organizerTicketsInjectionReportOptions(&context).wait();

    println!("{:?}", result);
}

Scopes

Parameters

Responses

Name Type Format Description
Access-Control-Allow-Origin String
Access-Control-Allow-Methods String
Access-Control-Allow-Headers String

organizerTicketsMultilingualOptions

CORS support

Enable CORS by returning correct headers


/organizer/tickets/multilingual

Usage and SDK Samples

curl -X OPTIONS \
 "https://api.tixngo.io/prod/_legacy/organizer/tickets/multilingual"
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

import java.io.File;
import java.util.*;

public class DefaultApiExample {
    public static void main(String[] args) {

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();

        try {
            apiInstance.organizerTicketsMultilingualOptions();
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerTicketsMultilingualOptions");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();


try {
    final result = await api_instance.organizerTicketsMultilingualOptions();
    print(result);
} catch (e) {
    print('Exception when calling DefaultApi->organizerTicketsMultilingualOptions: $e\n');
}

import com.secutix.tixngo._legacy.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();

        try {
            apiInstance.organizerTicketsMultilingualOptions();
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerTicketsMultilingualOptions");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];

// CORS support
[apiInstance organizerTicketsMultilingualOptionsWithCompletionHandler: 
              ^(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 callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.organizerTicketsMultilingualOptions(callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

namespace Example
{
    public class organizerTicketsMultilingualOptionsExample
    {
        public void main()
        {

            // Create an instance of the API class
            var apiInstance = new DefaultApi();

            try {
                // CORS support
                apiInstance.organizerTicketsMultilingualOptions();
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerTicketsMultilingualOptions: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();

try {
    $api_instance->organizerTicketsMultilingualOptions();
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerTicketsMultilingualOptions: ', $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 {
    $api_instance->organizerTicketsMultilingualOptions();
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerTicketsMultilingualOptions: $@\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:
    # CORS support
    api_instance.organizer_tickets_multilingual_options()
except ApiException as e:
    print("Exception when calling DefaultApi->organizerTicketsMultilingualOptions: %s\n" % e)
extern crate DefaultApi;

pub fn main() {

    let mut context = DefaultApi::Context::default();
    let result = client.organizerTicketsMultilingualOptions(&context).wait();

    println!("{:?}", result);
}

Scopes

Parameters

Responses

Name Type Format Description
Access-Control-Allow-Origin String
Access-Control-Allow-Methods String
Access-Control-Allow-Headers String

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/_legacy/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._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

import java.io.File;
import java.util.*;

public class DefaultApiExample {
    public static void main(String[] args) {

        // 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._legacy.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


organizerTicketsOptions

CORS support

Enable CORS by returning correct headers


/organizer/tickets

Usage and SDK Samples

curl -X OPTIONS \
 "https://api.tixngo.io/prod/_legacy/organizer/tickets"
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

import java.io.File;
import java.util.*;

public class DefaultApiExample {
    public static void main(String[] args) {

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();

        try {
            apiInstance.organizerTicketsOptions();
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerTicketsOptions");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();


try {
    final result = await api_instance.organizerTicketsOptions();
    print(result);
} catch (e) {
    print('Exception when calling DefaultApi->organizerTicketsOptions: $e\n');
}

import com.secutix.tixngo._legacy.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();

        try {
            apiInstance.organizerTicketsOptions();
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerTicketsOptions");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];

// CORS support
[apiInstance organizerTicketsOptionsWithCompletionHandler: 
              ^(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 callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.organizerTicketsOptions(callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

namespace Example
{
    public class organizerTicketsOptionsExample
    {
        public void main()
        {

            // Create an instance of the API class
            var apiInstance = new DefaultApi();

            try {
                // CORS support
                apiInstance.organizerTicketsOptions();
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerTicketsOptions: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();

try {
    $api_instance->organizerTicketsOptions();
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerTicketsOptions: ', $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 {
    $api_instance->organizerTicketsOptions();
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerTicketsOptions: $@\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:
    # CORS support
    api_instance.organizer_tickets_options()
except ApiException as e:
    print("Exception when calling DefaultApi->organizerTicketsOptions: %s\n" % e)
extern crate DefaultApi;

pub fn main() {

    let mut context = DefaultApi::Context::default();
    let result = client.organizerTicketsOptions(&context).wait();

    println!("{:?}", result);
}

Scopes

Parameters

Responses

Name Type Format Description
Access-Control-Allow-Origin String
Access-Control-Allow-Methods String
Access-Control-Allow-Headers String

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/_legacy/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._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

import java.io.File;
import java.util.*;

public class DefaultApiExample {
    public static void main(String[] args) {

        // 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._legacy.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/_legacy/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._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

import java.io.File;
import java.util.*;

public class DefaultApiExample {
    public static void main(String[] args) {

        // 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._legacy.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/_legacy/organizer/tickets" \
 -d '{
  "reason" : "reason",
  "showDeletedTicket" : true,
  "ticketIds" : [ "ticketIds", "ticketIds", "ticketIds", "ticketIds", "ticketIds" ],
  "status" : "BURN"
}'
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

import java.io.File;
import java.util.*;

public class DefaultApiExample {
    public static void main(String[] args) {

        // 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._legacy.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/_legacy/organizer/tickets/{ticketId}?reason=reason_example&showDeletedTicket=true&operatorEmail=operatorEmail_example"
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

import java.io.File;
import java.util.*;

public class DefaultApiExample {
    public static void main(String[] args) {

        // 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._legacy.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/_legacy/organizer/tickets/{ticketId}?language=language_example"
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

import java.io.File;
import java.util.*;

public class DefaultApiExample {
    public static void main(String[] args) {

        // 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._legacy.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


organizerTicketsTicketIdOptions

CORS support

Enable CORS by returning correct headers


/organizer/tickets/{ticketId}

Usage and SDK Samples

curl -X OPTIONS \
 "https://api.tixngo.io/prod/_legacy/organizer/tickets/{ticketId}"
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

import java.io.File;
import java.util.*;

public class DefaultApiExample {
    public static void main(String[] args) {

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();
        String ticketId = ticketId_example; // String | 

        try {
            apiInstance.organizerTicketsTicketIdOptions(ticketId);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerTicketsTicketIdOptions");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();

final String ticketId = new String(); // String | 

try {
    final result = await api_instance.organizerTicketsTicketIdOptions(ticketId);
    print(result);
} catch (e) {
    print('Exception when calling DefaultApi->organizerTicketsTicketIdOptions: $e\n');
}

import com.secutix.tixngo._legacy.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        String ticketId = ticketId_example; // String | 

        try {
            apiInstance.organizerTicketsTicketIdOptions(ticketId);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerTicketsTicketIdOptions");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];
String *ticketId = ticketId_example; //  (default to null)

// CORS support
[apiInstance organizerTicketsTicketIdOptionsWith:ticketId
              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 callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.organizerTicketsTicketIdOptions(ticketId, callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

namespace Example
{
    public class organizerTicketsTicketIdOptionsExample
    {
        public void main()
        {

            // Create an instance of the API class
            var apiInstance = new DefaultApi();
            var ticketId = ticketId_example;  // String |  (default to null)

            try {
                // CORS support
                apiInstance.organizerTicketsTicketIdOptions(ticketId);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerTicketsTicketIdOptions: " + 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 {
    $api_instance->organizerTicketsTicketIdOptions($ticketId);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerTicketsTicketIdOptions: ', $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 {
    $api_instance->organizerTicketsTicketIdOptions(ticketId => $ticketId);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerTicketsTicketIdOptions: $@\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:
    # CORS support
    api_instance.organizer_tickets_ticket_id_options(ticketId)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerTicketsTicketIdOptions: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let ticketId = ticketId_example; // String

    let mut context = DefaultApi::Context::default();
    let result = client.organizerTicketsTicketIdOptions(ticketId, &context).wait();

    println!("{:?}", result);
}

Scopes

Parameters

Path parameters
Name Description
ticketId*
String
Required

Responses

Name Type Format Description
Access-Control-Allow-Origin String
Access-Control-Allow-Methods String
Access-Control-Allow-Headers String

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/_legacy/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._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

import java.io.File;
import java.util.*;

public class DefaultApiExample {
    public static void main(String[] args) {

        // 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._legacy.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


organizerTransfersOptions

CORS support

Enable CORS by returning correct headers


/organizer/transfers

Usage and SDK Samples

curl -X OPTIONS \
 "https://api.tixngo.io/prod/_legacy/organizer/transfers"
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

import java.io.File;
import java.util.*;

public class DefaultApiExample {
    public static void main(String[] args) {

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();

        try {
            apiInstance.organizerTransfersOptions();
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerTransfersOptions");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();


try {
    final result = await api_instance.organizerTransfersOptions();
    print(result);
} catch (e) {
    print('Exception when calling DefaultApi->organizerTransfersOptions: $e\n');
}

import com.secutix.tixngo._legacy.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();

        try {
            apiInstance.organizerTransfersOptions();
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerTransfersOptions");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];

// CORS support
[apiInstance organizerTransfersOptionsWithCompletionHandler: 
              ^(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 callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.organizerTransfersOptions(callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

namespace Example
{
    public class organizerTransfersOptionsExample
    {
        public void main()
        {

            // Create an instance of the API class
            var apiInstance = new DefaultApi();

            try {
                // CORS support
                apiInstance.organizerTransfersOptions();
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerTransfersOptions: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();

try {
    $api_instance->organizerTransfersOptions();
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerTransfersOptions: ', $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 {
    $api_instance->organizerTransfersOptions();
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerTransfersOptions: $@\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:
    # CORS support
    api_instance.organizer_transfers_options()
except ApiException as e:
    print("Exception when calling DefaultApi->organizerTransfersOptions: %s\n" % e)
extern crate DefaultApi;

pub fn main() {

    let mut context = DefaultApi::Context::default();
    let result = client.organizerTransfersOptions(&context).wait();

    println!("{:?}", result);
}

Scopes

Parameters

Responses

Name Type Format Description
Access-Control-Allow-Origin String
Access-Control-Allow-Methods String
Access-Control-Allow-Headers String

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/_legacy/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._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

import java.io.File;
import java.util.*;

public class DefaultApiExample {
    public static void main(String[] args) {

        // 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._legacy.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


organizerTransfersSingleTicketOptions

CORS support

Enable CORS by returning correct headers


/organizer/transfers/single-ticket

Usage and SDK Samples

curl -X OPTIONS \
 "https://api.tixngo.io/prod/_legacy/organizer/transfers/single-ticket"
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

import java.io.File;
import java.util.*;

public class DefaultApiExample {
    public static void main(String[] args) {

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();

        try {
            apiInstance.organizerTransfersSingleTicketOptions();
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerTransfersSingleTicketOptions");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();


try {
    final result = await api_instance.organizerTransfersSingleTicketOptions();
    print(result);
} catch (e) {
    print('Exception when calling DefaultApi->organizerTransfersSingleTicketOptions: $e\n');
}

import com.secutix.tixngo._legacy.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();

        try {
            apiInstance.organizerTransfersSingleTicketOptions();
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerTransfersSingleTicketOptions");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];

// CORS support
[apiInstance organizerTransfersSingleTicketOptionsWithCompletionHandler: 
              ^(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 callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.organizerTransfersSingleTicketOptions(callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

namespace Example
{
    public class organizerTransfersSingleTicketOptionsExample
    {
        public void main()
        {

            // Create an instance of the API class
            var apiInstance = new DefaultApi();

            try {
                // CORS support
                apiInstance.organizerTransfersSingleTicketOptions();
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerTransfersSingleTicketOptions: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();

try {
    $api_instance->organizerTransfersSingleTicketOptions();
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerTransfersSingleTicketOptions: ', $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 {
    $api_instance->organizerTransfersSingleTicketOptions();
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerTransfersSingleTicketOptions: $@\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:
    # CORS support
    api_instance.organizer_transfers_single_ticket_options()
except ApiException as e:
    print("Exception when calling DefaultApi->organizerTransfersSingleTicketOptions: %s\n" % e)
extern crate DefaultApi;

pub fn main() {

    let mut context = DefaultApi::Context::default();
    let result = client.organizerTransfersSingleTicketOptions(&context).wait();

    println!("{:?}", result);
}

Scopes

Parameters

Responses

Name Type Format Description
Access-Control-Allow-Origin String
Access-Control-Allow-Methods String
Access-Control-Allow-Headers String

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/_legacy/organizer/transfers/single-ticket" \
 -d '{
  "reason" : "reason",
  "unlock" : true,
  "to" : "to",
  "recipientInfo" : {
    "firstName" : "firstName",
    "lastName" : "lastName"
  },
  "ticketId" : "ticketId"
}'
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

import java.io.File;
import java.util.*;

public class DefaultApiExample {
    public static void main(String[] args) {

        // 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._legacy.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/_legacy/organizer/translations?mobileAppId=mobileAppId_example&lang=lang_example&key=key_example&offset=56&limit=56"
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

import java.io.File;
import java.util.*;

public class DefaultApiExample {
    public static void main(String[] args) {

        // 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._legacy.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/_legacy/organizer/translations/{mobile-app-id}/{lang}/{key}"
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

import java.io.File;
import java.util.*;

public class DefaultApiExample {
    public static void main(String[] args) {

        // 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._legacy.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/_legacy/organizer/translations/{mobile-app-id}/{lang}/{key}"
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

import java.io.File;
import java.util.*;

public class DefaultApiExample {
    public static void main(String[] args) {

        // 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._legacy.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


organizerTranslationsMobileAppIdLangKeyOptions

CORS support

Enable CORS by returning correct headers


/organizer/translations/{mobile-app-id}/{lang}/{key}

Usage and SDK Samples

curl -X OPTIONS \
 "https://api.tixngo.io/prod/_legacy/organizer/translations/{mobile-app-id}/{lang}/{key}"
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

import java.io.File;
import java.util.*;

public class DefaultApiExample {
    public static void main(String[] args) {

        // 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.organizerTranslationsMobileAppIdLangKeyOptions(mobileAppId, lang, key);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerTranslationsMobileAppIdLangKeyOptions");
            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.organizerTranslationsMobileAppIdLangKeyOptions(mobileAppId, lang, key);
    print(result);
} catch (e) {
    print('Exception when calling DefaultApi->organizerTranslationsMobileAppIdLangKeyOptions: $e\n');
}

import com.secutix.tixngo._legacy.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.organizerTranslationsMobileAppIdLangKeyOptions(mobileAppId, lang, key);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerTranslationsMobileAppIdLangKeyOptions");
            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)

// CORS support
[apiInstance organizerTranslationsMobileAppIdLangKeyOptionsWith: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.organizerTranslationsMobileAppIdLangKeyOptions(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 organizerTranslationsMobileAppIdLangKeyOptionsExample
    {
        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 {
                // CORS support
                apiInstance.organizerTranslationsMobileAppIdLangKeyOptions(mobileAppId, lang, key);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerTranslationsMobileAppIdLangKeyOptions: " + 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->organizerTranslationsMobileAppIdLangKeyOptions($mobileAppId, $lang, $key);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerTranslationsMobileAppIdLangKeyOptions: ', $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->organizerTranslationsMobileAppIdLangKeyOptions(mobileAppId => $mobileAppId, lang => $lang, key => $key);
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerTranslationsMobileAppIdLangKeyOptions: $@\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:
    # CORS support
    api_instance.organizer_translations_mobile_app_id_lang_key_options(mobileAppId, lang, key)
except ApiException as e:
    print("Exception when calling DefaultApi->organizerTranslationsMobileAppIdLangKeyOptions: %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.organizerTranslationsMobileAppIdLangKeyOptions(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

Name Type Format Description
Access-Control-Allow-Origin String
Access-Control-Allow-Methods String
Access-Control-Allow-Headers String

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/_legacy/organizer/translations/{mobile-app-id}/{lang}/{key}" \
 -d ''
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

import java.io.File;
import java.util.*;

public class DefaultApiExample {
    public static void main(String[] args) {

        // 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._legacy.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


organizerTranslationsOptions

CORS support

Enable CORS by returning correct headers


/organizer/translations

Usage and SDK Samples

curl -X OPTIONS \
 "https://api.tixngo.io/prod/_legacy/organizer/translations"
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

import java.io.File;
import java.util.*;

public class DefaultApiExample {
    public static void main(String[] args) {

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();

        try {
            apiInstance.organizerTranslationsOptions();
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerTranslationsOptions");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();


try {
    final result = await api_instance.organizerTranslationsOptions();
    print(result);
} catch (e) {
    print('Exception when calling DefaultApi->organizerTranslationsOptions: $e\n');
}

import com.secutix.tixngo._legacy.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();

        try {
            apiInstance.organizerTranslationsOptions();
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerTranslationsOptions");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];

// CORS support
[apiInstance organizerTranslationsOptionsWithCompletionHandler: 
              ^(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 callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.organizerTranslationsOptions(callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

namespace Example
{
    public class organizerTranslationsOptionsExample
    {
        public void main()
        {

            // Create an instance of the API class
            var apiInstance = new DefaultApi();

            try {
                // CORS support
                apiInstance.organizerTranslationsOptions();
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerTranslationsOptions: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();

try {
    $api_instance->organizerTranslationsOptions();
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerTranslationsOptions: ', $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 {
    $api_instance->organizerTranslationsOptions();
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerTranslationsOptions: $@\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:
    # CORS support
    api_instance.organizer_translations_options()
except ApiException as e:
    print("Exception when calling DefaultApi->organizerTranslationsOptions: %s\n" % e)
extern crate DefaultApi;

pub fn main() {

    let mut context = DefaultApi::Context::default();
    let result = client.organizerTranslationsOptions(&context).wait();

    println!("{:?}", result);
}

Scopes

Parameters

Responses

Name Type Format Description
Access-Control-Allow-Origin String
Access-Control-Allow-Methods String
Access-Control-Allow-Headers String

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/_legacy/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._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

import java.io.File;
import java.util.*;

public class DefaultApiExample {
    public static void main(String[] args) {

        // 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._legacy.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


organizerTxlogsOptions

CORS support

Enable CORS by returning correct headers


/organizer/txlogs

Usage and SDK Samples

curl -X OPTIONS \
 "https://api.tixngo.io/prod/_legacy/organizer/txlogs"
import com.secutix.tixngo._legacy.*;
import com.secutix.tixngo._legacy.auth.*;
import com.secutix.tixngo._legacy.model.*;
import com.secutix.tixngo._legacy.api.DefaultApi;

import java.io.File;
import java.util.*;

public class DefaultApiExample {
    public static void main(String[] args) {

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();

        try {
            apiInstance.organizerTxlogsOptions();
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerTxlogsOptions");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();


try {
    final result = await api_instance.organizerTxlogsOptions();
    print(result);
} catch (e) {
    print('Exception when calling DefaultApi->organizerTxlogsOptions: $e\n');
}

import com.secutix.tixngo._legacy.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();

        try {
            apiInstance.organizerTxlogsOptions();
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#organizerTxlogsOptions");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];

// CORS support
[apiInstance organizerTxlogsOptionsWithCompletionHandler: 
              ^(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 callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.organizerTxlogsOptions(callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;

namespace Example
{
    public class organizerTxlogsOptionsExample
    {
        public void main()
        {

            // Create an instance of the API class
            var apiInstance = new DefaultApi();

            try {
                // CORS support
                apiInstance.organizerTxlogsOptions();
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.organizerTxlogsOptions: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();

try {
    $api_instance->organizerTxlogsOptions();
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->organizerTxlogsOptions: ', $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 {
    $api_instance->organizerTxlogsOptions();
};
if ($@) {
    warn "Exception when calling DefaultApi->organizerTxlogsOptions: $@\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:
    # CORS support
    api_instance.organizer_txlogs_options()
except ApiException as e:
    print("Exception when calling DefaultApi->organizerTxlogsOptions: %s\n" % e)
extern crate DefaultApi;

pub fn main() {

    let mut context = DefaultApi::Context::default();
    let result = client.organizerTxlogsOptions(&context).wait();

    println!("{:?}", result);
}

Scopes

Parameters

Responses

Name Type Format Description
Access-Control-Allow-Origin String
Access-Control-Allow-Methods String
Access-Control-Allow-Headers String