getBrands
Fetch all vehicle brands
Retrieve a list of all vehicle brands available in the database.
/brands
Usage and SDK Samples
curl -X GET\
-H "Accept: application/json"\
"https://api.24-7chiptuning.com/brands"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ABrandsApi;
import java.io.File;
import java.util.*;
public class ABrandsApiExample {
public static void main(String[] args) {
ABrandsApi apiInstance = new ABrandsApi();
try {
array[BrandModel] result = apiInstance.getBrands();
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling ABrandsApi#getBrands");
e.printStackTrace();
}
}
}
import io.swagger.client.api.ABrandsApi;
public class ABrandsApiExample {
public static void main(String[] args) {
ABrandsApi apiInstance = new ABrandsApi();
try {
array[BrandModel] result = apiInstance.getBrands();
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling ABrandsApi#getBrands");
e.printStackTrace();
}
}
}
ABrandsApi *apiInstance = [[ABrandsApi alloc] init];
// Fetch all vehicle brands
[apiInstance getBrandsWithCompletionHandler:
^(array[BrandModel] output, NSError* error) {
if (output) {
NSLog(@"%@", output);
}
if (error) {
NSLog(@"Error: %@", error);
}
}];
var TuningFileDatabaseApi = require('tuning_file_database_api');
var api = new TuningFileDatabaseApi.ABrandsApi()
var callback = function(error, data, response) {
if (error) {
console.error(error);
} else {
console.log('API called successfully. Returned data: ' + data);
}
};
api.getBrands(callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;
namespace Example
{
public class getBrandsExample
{
public void main()
{
var apiInstance = new ABrandsApi();
try
{
// Fetch all vehicle brands
array[BrandModel] result = apiInstance.getBrands();
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling ABrandsApi.getBrands: " + e.Message );
}
}
}
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$api_instance = new Swagger\Client\ApiABrandsApi();
try {
$result = $api_instance->getBrands();
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling ABrandsApi->getBrands: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::ABrandsApi;
my $api_instance = WWW::SwaggerClient::ABrandsApi->new();
eval {
my $result = $api_instance->getBrands();
print Dumper($result);
};
if ($@) {
warn "Exception when calling ABrandsApi->getBrands: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint
# create an instance of the API class
api_instance = swagger_client.ABrandsApi()
try:
# Fetch all vehicle brands
api_response = api_instance.get_brands()
pprint(api_response)
except ApiException as e:
print("Exception when calling ABrandsApi->getBrands: %s\n" % e)