organizerAccountDelete
Delete the given operator account
/organizer/account
Usage and SDK Samples
curl -X DELETE \
"https://api.tixngo.io/prod/v1.0/organizer/account?email=email_example"
import com.secutix.tixngo.v1.0.*;
import com.secutix.tixngo.v1.0.auth.*;
import com.secutix.tixngo.v1.0.model.*;
import com.secutix.tixngo.v1.0.api.DefaultApi;
import java.io.File;
import java.util.*;
public class DefaultApiExample {
public static void main(String[] args) {
// Create an instance of the API class
DefaultApi apiInstance = new DefaultApi();
String email = email_example; // String |
try {
apiInstance.organizerAccountDelete(email);
} catch (ApiException e) {
System.err.println("Exception when calling DefaultApi#organizerAccountDelete");
e.printStackTrace();
}
}
}
import 'package:openapi/api.dart';
final api_instance = DefaultApi();
final String email = new String(); // String |
try {
final result = await api_instance.organizerAccountDelete(email);
print(result);
} catch (e) {
print('Exception when calling DefaultApi->organizerAccountDelete: $e\n');
}
import com.secutix.tixngo.v1.0.api.DefaultApi;
public class DefaultApiExample {
public static void main(String[] args) {
DefaultApi apiInstance = new DefaultApi();
String email = email_example; // String |
try {
apiInstance.organizerAccountDelete(email);
} catch (ApiException e) {
System.err.println("Exception when calling DefaultApi#organizerAccountDelete");
e.printStackTrace();
}
}
}
// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];
String *email = email_example; // (default to null)
[apiInstance organizerAccountDeleteWith:email
completionHandler: ^(NSError* error) {
if (error) {
NSLog(@"Error: %@", error);
}
}];
var TixngoRestApiBackendOrganizerApi = require('tixngo_rest_api_backend_organizer_api');
// Create an instance of the API class
var api = new TixngoRestApiBackendOrganizerApi.DefaultApi()
var email = email_example; // {String}
var callback = function(error, data, response) {
if (error) {
console.error(error);
} else {
console.log('API called successfully.');
}
};
api.organizerAccountDelete(email, callback);
using System;
using System.Diagnostics;
using Org.OpenAPITools.Api;
using Org.OpenAPITools.Client;
using Org.OpenAPITools.Model;
namespace Example
{
public class organizerAccountDeleteExample
{
public void main()
{
// Create an instance of the API class
var apiInstance = new DefaultApi();
var email = email_example; // String | (default to null)
try {
apiInstance.organizerAccountDelete(email);
} catch (Exception e) {
Debug.Print("Exception when calling DefaultApi.organizerAccountDelete: " + e.Message );
}
}
}
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();
$email = email_example; // String |
try {
$api_instance->organizerAccountDelete($email);
} catch (Exception $e) {
echo 'Exception when calling DefaultApi->organizerAccountDelete: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::OPenAPIClient::Configuration;
use WWW::OPenAPIClient::DefaultApi;
# Create an instance of the API class
my $api_instance = WWW::OPenAPIClient::DefaultApi->new();
my $email = email_example; # String |
eval {
$api_instance->organizerAccountDelete(email => $email);
};
if ($@) {
warn "Exception when calling DefaultApi->organizerAccountDelete: $@\n";
}
from __future__ import print_statement
import time
import openapi_client
from openapi_client.rest import ApiException
from pprint import pprint
# Create an instance of the API class
api_instance = openapi_client.DefaultApi()
email = email_example # String | (default to null)
try:
api_instance.organizer_account_delete(email)
except ApiException as e:
print("Exception when calling DefaultApi->organizerAccountDelete: %s\n" % e)
extern crate DefaultApi;
pub fn main() {
let email = email_example; // String
let mut context = DefaultApi::Context::default();
let result = client.organizerAccountDelete(email, &context).wait();
println!("{:?}", result);
}
Scopes
Parameters
| Name | Description |
|---|---|
| email* |
String
Required
|