AS Server - API - DeveloperApplication

Default

developerApplicationDelete

DeveloperApplication_Delete


/DeveloperApplication/{id}

Usage and SDK Samples

curl -X DELETE \
 -H "Accept: application/json,text/json,application/xml,text/xml" \
 "https://api.dev.spenda.co/api/DeveloperApplication/{id}"
import org.openapitools.client.*;
import org.openapitools.client.auth.*;
import org.openapitools.client.model.*;
import org.openapitools.client.api.DefaultApi;

import java.io.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 id = 56; // Integer | Format - int32.

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

final api_instance = DefaultApi();

final Integer id = new Integer(); // Integer | Format - int32.

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

import org.openapitools.client.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        Integer id = 56; // Integer | Format - int32.

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


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];
Integer *id = 56; // Format - int32. (default to null)

// DeveloperApplication_Delete
[apiInstance developerApplicationDeleteWith:id
              completionHandler: ^(Object output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var AsServerApiDeveloperApplication = require('as_server_api_developer_application');

// Create an instance of the API class
var api = new AsServerApiDeveloperApplication.DefaultApi()
var id = 56; // {Integer} Format - int32.

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

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

            // Create an instance of the API class
            var apiInstance = new DefaultApi();
            var id = 56;  // Integer | Format - int32. (default to null)

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

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();
$id = 56; // Integer | Format - int32.

try {
    $result = $api_instance->developerApplicationDelete($id);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->developerApplicationDelete: ', $e->getMessage(), PHP_EOL;
}
?>
use 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 $id = 56; # Integer | Format - int32.

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

# Create an instance of the API class
api_instance = openapi_client.DefaultApi()
id = 56 # Integer | Format - int32. (default to null)

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

pub fn main() {
    let id = 56; // Integer

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

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

Scopes

Parameters

Path parameters
Name Description
id*
Integer (int32)
Format - int32.
Required

Responses


developerApplicationGetAll

DeveloperApplication_GetAll


/DeveloperApplication/

Usage and SDK Samples

curl -X GET \
 -H "Accept: application/json,text/json,application/xml,text/xml" \
 "https://api.dev.spenda.co/api/DeveloperApplication/"
import org.openapitools.client.*;
import org.openapitools.client.auth.*;
import org.openapitools.client.model.*;
import org.openapitools.client.api.DefaultApi;

import java.io.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 {
            Object result = apiInstance.developerApplicationGetAll();
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#developerApplicationGetAll");
            e.printStackTrace();
        }
    }
}
import 'package:openapi/api.dart';

final api_instance = DefaultApi();


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

import org.openapitools.client.api.DefaultApi;

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

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


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

// DeveloperApplication_GetAll
[apiInstance developerApplicationGetAllWithCompletionHandler: 
              ^(Object output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var AsServerApiDeveloperApplication = require('as_server_api_developer_application');

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

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

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

            try {
                // DeveloperApplication_GetAll
                Object result = apiInstance.developerApplicationGetAll();
                Debug.WriteLine(result);
            } catch (Exception e) {
                Debug.Print("Exception when calling DefaultApi.developerApplicationGetAll: " + 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->developerApplicationGetAll();
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->developerApplicationGetAll: ', $e->getMessage(), PHP_EOL;
}
?>
use 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->developerApplicationGetAll();
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->developerApplicationGetAll: $@\n";
}
from __future__ import print_statement
import time
import 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:
    # DeveloperApplication_GetAll
    api_response = api_instance.developer_application_get_all()
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->developerApplicationGetAll: %s\n" % e)
extern crate DefaultApi;

pub fn main() {

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

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

Scopes

Parameters

Responses


developerApplicationGetByID

DeveloperApplication_GetByID


/DeveloperApplication/{id}

Usage and SDK Samples

curl -X GET \
 -H "Accept: application/json,text/json,application/xml,text/xml" \
 "https://api.dev.spenda.co/api/DeveloperApplication/{id}"
import org.openapitools.client.*;
import org.openapitools.client.auth.*;
import org.openapitools.client.model.*;
import org.openapitools.client.api.DefaultApi;

import java.io.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 id = 56; // Integer | Format - int32.

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

final api_instance = DefaultApi();

final Integer id = new Integer(); // Integer | Format - int32.

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

import org.openapitools.client.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        Integer id = 56; // Integer | Format - int32.

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


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];
Integer *id = 56; // Format - int32. (default to null)

// DeveloperApplication_GetByID
[apiInstance developerApplicationGetByIDWith:id
              completionHandler: ^(Object output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var AsServerApiDeveloperApplication = require('as_server_api_developer_application');

// Create an instance of the API class
var api = new AsServerApiDeveloperApplication.DefaultApi()
var id = 56; // {Integer} Format - int32.

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

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

            // Create an instance of the API class
            var apiInstance = new DefaultApi();
            var id = 56;  // Integer | Format - int32. (default to null)

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

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();
$id = 56; // Integer | Format - int32.

try {
    $result = $api_instance->developerApplicationGetByID($id);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->developerApplicationGetByID: ', $e->getMessage(), PHP_EOL;
}
?>
use 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 $id = 56; # Integer | Format - int32.

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

# Create an instance of the API class
api_instance = openapi_client.DefaultApi()
id = 56 # Integer | Format - int32. (default to null)

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

pub fn main() {
    let id = 56; // Integer

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

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

Scopes

Parameters

Path parameters
Name Description
id*
Integer (int32)
Format - int32.
Required

Responses


developerApplicationSave

DeveloperApplication_Save


/DeveloperApplication/

Usage and SDK Samples

curl -X POST \
 -H "Accept: application/json,text/json,application/xml,text/xml" \
 -H "Content-Type: application/json,text/json,application/xml,text/xml,application/x-www-form-urlencoded" \
 "https://api.dev.spenda.co/api/DeveloperApplication/" \
 -d 'Custom MIME type example not yet supported: text/json' \
 -d '' \
 -d 'Custom MIME type example not yet supported: text/xml' \
 -d 'Custom MIME type example not yet supported: application/x-www-form-urlencoded'
import org.openapitools.client.*;
import org.openapitools.client.auth.*;
import org.openapitools.client.model.*;
import org.openapitools.client.api.DefaultApi;

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

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

        // Create an instance of the API class
        DefaultApi apiInstance = new DefaultApi();
        ActionRequestDeveloperApplicationDetails actionRequestDeveloperApplicationDetails = {"Value":{"ID":0,"ApplicationName":"string","CompanyName":"string","CompanyURL":"string","Auth0ApplicationClientID":"string","ApplicationType":"string","LoginUrl":"string","AllowedOrigins":"string","CallBackUrls":"string","WebhookURL":"string"},"TenantID":0,"WebsiteID":0,"UserID":0}; // ActionRequestDeveloperApplicationDetails | 

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

final api_instance = DefaultApi();

final ActionRequestDeveloperApplicationDetails actionRequestDeveloperApplicationDetails = new ActionRequestDeveloperApplicationDetails(); // ActionRequestDeveloperApplicationDetails | 

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

import org.openapitools.client.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        ActionRequestDeveloperApplicationDetails actionRequestDeveloperApplicationDetails = {"Value":{"ID":0,"ApplicationName":"string","CompanyName":"string","CompanyURL":"string","Auth0ApplicationClientID":"string","ApplicationType":"string","LoginUrl":"string","AllowedOrigins":"string","CallBackUrls":"string","WebhookURL":"string"},"TenantID":0,"WebsiteID":0,"UserID":0}; // ActionRequestDeveloperApplicationDetails | 

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


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];
ActionRequestDeveloperApplicationDetails *actionRequestDeveloperApplicationDetails = {"Value":{"ID":0,"ApplicationName":"string","CompanyName":"string","CompanyURL":"string","Auth0ApplicationClientID":"string","ApplicationType":"string","LoginUrl":"string","AllowedOrigins":"string","CallBackUrls":"string","WebhookURL":"string"},"TenantID":0,"WebsiteID":0,"UserID":0}; //  (optional)

// DeveloperApplication_Save
[apiInstance developerApplicationSaveWith:actionRequestDeveloperApplicationDetails
              completionHandler: ^(Object output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var AsServerApiDeveloperApplication = require('as_server_api_developer_application');

// Create an instance of the API class
var api = new AsServerApiDeveloperApplication.DefaultApi()
var opts = {
  'actionRequestDeveloperApplicationDetails': {"Value":{"ID":0,"ApplicationName":"string","CompanyName":"string","CompanyURL":"string","Auth0ApplicationClientID":"string","ApplicationType":"string","LoginUrl":"string","AllowedOrigins":"string","CallBackUrls":"string","WebhookURL":"string"},"TenantID":0,"WebsiteID":0,"UserID":0} // {ActionRequestDeveloperApplicationDetails} 
};

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

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

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

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

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();
$actionRequestDeveloperApplicationDetails = {"Value":{"ID":0,"ApplicationName":"string","CompanyName":"string","CompanyURL":"string","Auth0ApplicationClientID":"string","ApplicationType":"string","LoginUrl":"string","AllowedOrigins":"string","CallBackUrls":"string","WebhookURL":"string"},"TenantID":0,"WebsiteID":0,"UserID":0}; // ActionRequestDeveloperApplicationDetails | 

try {
    $result = $api_instance->developerApplicationSave($actionRequestDeveloperApplicationDetails);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->developerApplicationSave: ', $e->getMessage(), PHP_EOL;
}
?>
use 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 $actionRequestDeveloperApplicationDetails = WWW::OPenAPIClient::Object::ActionRequestDeveloperApplicationDetails->new(); # ActionRequestDeveloperApplicationDetails | 

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

# Create an instance of the API class
api_instance = openapi_client.DefaultApi()
actionRequestDeveloperApplicationDetails = {"Value":{"ID":0,"ApplicationName":"string","CompanyName":"string","CompanyURL":"string","Auth0ApplicationClientID":"string","ApplicationType":"string","LoginUrl":"string","AllowedOrigins":"string","CallBackUrls":"string","WebhookURL":"string"},"TenantID":0,"WebsiteID":0,"UserID":0} # ActionRequestDeveloperApplicationDetails |  (optional)

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

pub fn main() {
    let actionRequestDeveloperApplicationDetails = {"Value":{"ID":0,"ApplicationName":"string","CompanyName":"string","CompanyURL":"string","Auth0ApplicationClientID":"string","ApplicationType":"string","LoginUrl":"string","AllowedOrigins":"string","CallBackUrls":"string","WebhookURL":"string"},"TenantID":0,"WebsiteID":0,"UserID":0}; // ActionRequestDeveloperApplicationDetails

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

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

Scopes

Parameters

Body parameters
Name Description
actionRequestDeveloperApplicationDetails

Responses


developerApplicationUpdate

DeveloperApplication_Update


/DeveloperApplication/{id}

Usage and SDK Samples

curl -X PUT \
 -H "Accept: application/json,text/json,application/xml,text/xml" \
 -H "Content-Type: application/json,text/json,application/xml,text/xml,application/x-www-form-urlencoded" \
 "https://api.dev.spenda.co/api/DeveloperApplication/{id}" \
 -d 'Custom MIME type example not yet supported: text/json' \
 -d '' \
 -d 'Custom MIME type example not yet supported: text/xml' \
 -d 'Custom MIME type example not yet supported: application/x-www-form-urlencoded'
import org.openapitools.client.*;
import org.openapitools.client.auth.*;
import org.openapitools.client.model.*;
import org.openapitools.client.api.DefaultApi;

import java.io.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 id = 56; // Integer | Format - int32.
        ActionRequestDeveloperApplicationDetails actionRequestDeveloperApplicationDetails = {"Value":{"ID":0,"ApplicationName":"string","CompanyName":"string","CompanyURL":"string","Auth0ApplicationClientID":"string","ApplicationType":"string","LoginUrl":"string","AllowedOrigins":"string","CallBackUrls":"string","WebhookURL":"string"},"TenantID":0,"WebsiteID":0,"UserID":0}; // ActionRequestDeveloperApplicationDetails | 

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

final api_instance = DefaultApi();

final Integer id = new Integer(); // Integer | Format - int32.
final ActionRequestDeveloperApplicationDetails actionRequestDeveloperApplicationDetails = new ActionRequestDeveloperApplicationDetails(); // ActionRequestDeveloperApplicationDetails | 

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

import org.openapitools.client.api.DefaultApi;

public class DefaultApiExample {
    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        Integer id = 56; // Integer | Format - int32.
        ActionRequestDeveloperApplicationDetails actionRequestDeveloperApplicationDetails = {"Value":{"ID":0,"ApplicationName":"string","CompanyName":"string","CompanyURL":"string","Auth0ApplicationClientID":"string","ApplicationType":"string","LoginUrl":"string","AllowedOrigins":"string","CallBackUrls":"string","WebhookURL":"string"},"TenantID":0,"WebsiteID":0,"UserID":0}; // ActionRequestDeveloperApplicationDetails | 

        try {
            Object result = apiInstance.developerApplicationUpdate(id, actionRequestDeveloperApplicationDetails);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#developerApplicationUpdate");
            e.printStackTrace();
        }
    }
}


// Create an instance of the API class
DefaultApi *apiInstance = [[DefaultApi alloc] init];
Integer *id = 56; // Format - int32. (default to null)
ActionRequestDeveloperApplicationDetails *actionRequestDeveloperApplicationDetails = {"Value":{"ID":0,"ApplicationName":"string","CompanyName":"string","CompanyURL":"string","Auth0ApplicationClientID":"string","ApplicationType":"string","LoginUrl":"string","AllowedOrigins":"string","CallBackUrls":"string","WebhookURL":"string"},"TenantID":0,"WebsiteID":0,"UserID":0}; //  (optional)

// DeveloperApplication_Update
[apiInstance developerApplicationUpdateWith:id
    actionRequestDeveloperApplicationDetails:actionRequestDeveloperApplicationDetails
              completionHandler: ^(Object output, NSError* error) {
    if (output) {
        NSLog(@"%@", output);
    }
    if (error) {
        NSLog(@"Error: %@", error);
    }
}];
var AsServerApiDeveloperApplication = require('as_server_api_developer_application');

// Create an instance of the API class
var api = new AsServerApiDeveloperApplication.DefaultApi()
var id = 56; // {Integer} Format - int32.
var opts = {
  'actionRequestDeveloperApplicationDetails': {"Value":{"ID":0,"ApplicationName":"string","CompanyName":"string","CompanyURL":"string","Auth0ApplicationClientID":"string","ApplicationType":"string","LoginUrl":"string","AllowedOrigins":"string","CallBackUrls":"string","WebhookURL":"string"},"TenantID":0,"WebsiteID":0,"UserID":0} // {ActionRequestDeveloperApplicationDetails} 
};

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

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

            // Create an instance of the API class
            var apiInstance = new DefaultApi();
            var id = 56;  // Integer | Format - int32. (default to null)
            var actionRequestDeveloperApplicationDetails = new ActionRequestDeveloperApplicationDetails(); // ActionRequestDeveloperApplicationDetails |  (optional) 

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

// Create an instance of the API class
$api_instance = new OpenAPITools\Client\Api\DefaultApi();
$id = 56; // Integer | Format - int32.
$actionRequestDeveloperApplicationDetails = {"Value":{"ID":0,"ApplicationName":"string","CompanyName":"string","CompanyURL":"string","Auth0ApplicationClientID":"string","ApplicationType":"string","LoginUrl":"string","AllowedOrigins":"string","CallBackUrls":"string","WebhookURL":"string"},"TenantID":0,"WebsiteID":0,"UserID":0}; // ActionRequestDeveloperApplicationDetails | 

try {
    $result = $api_instance->developerApplicationUpdate($id, $actionRequestDeveloperApplicationDetails);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->developerApplicationUpdate: ', $e->getMessage(), PHP_EOL;
}
?>
use 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 $id = 56; # Integer | Format - int32.
my $actionRequestDeveloperApplicationDetails = WWW::OPenAPIClient::Object::ActionRequestDeveloperApplicationDetails->new(); # ActionRequestDeveloperApplicationDetails | 

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

# Create an instance of the API class
api_instance = openapi_client.DefaultApi()
id = 56 # Integer | Format - int32. (default to null)
actionRequestDeveloperApplicationDetails = {"Value":{"ID":0,"ApplicationName":"string","CompanyName":"string","CompanyURL":"string","Auth0ApplicationClientID":"string","ApplicationType":"string","LoginUrl":"string","AllowedOrigins":"string","CallBackUrls":"string","WebhookURL":"string"},"TenantID":0,"WebsiteID":0,"UserID":0} # ActionRequestDeveloperApplicationDetails |  (optional)

try:
    # DeveloperApplication_Update
    api_response = api_instance.developer_application_update(id, actionRequestDeveloperApplicationDetails=actionRequestDeveloperApplicationDetails)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->developerApplicationUpdate: %s\n" % e)
extern crate DefaultApi;

pub fn main() {
    let id = 56; // Integer
    let actionRequestDeveloperApplicationDetails = {"Value":{"ID":0,"ApplicationName":"string","CompanyName":"string","CompanyURL":"string","Auth0ApplicationClientID":"string","ApplicationType":"string","LoginUrl":"string","AllowedOrigins":"string","CallBackUrls":"string","WebhookURL":"string"},"TenantID":0,"WebsiteID":0,"UserID":0}; // ActionRequestDeveloperApplicationDetails

    let mut context = DefaultApi::Context::default();
    let result = client.developerApplicationUpdate(id, actionRequestDeveloperApplicationDetails, &context).wait();

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

Scopes

Parameters

Path parameters
Name Description
id*
Integer (int32)
Format - int32.
Required
Body parameters
Name Description
actionRequestDeveloperApplicationDetails

Responses