v1PrixcgCalcGet
🇫🇷 Calculer le prix de la carte grise
L'API est destinée aux sites ou applications de cartes grises qui souhaitent calculer le prix de la carte grise en fonction de la démarche, département et de la plaque de voiture.
/v1/prixcg/calc
Usage and SDK Samples
curl -X GET\
-H "Accept: application/json"\
"https://app.auto-ways.net/api//v1/prixcg/calc?plaque=&token=&departement=&demarche=&code_postal="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.CalculateurDeCarteGriseApi;
import java.io.File;
import java.util.*;
public class CalculateurDeCarteGriseApiExample {
public static void main(String[] args) {
CalculateurDeCarteGriseApi apiInstance = new CalculateurDeCarteGriseApi();
String plaque = plaque_example; // String |
String token = token_example; // String |
Integer departement = 56; // Integer |
Integer demarche = 56; // Integer |
Integer codePostal = 56; // Integer | code postal est requis si le département est non fourni
try {
inline_response_200_6 result = apiInstance.v1PrixcgCalcGet(plaque, token, departement, demarche, codePostal);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling CalculateurDeCarteGriseApi#v1PrixcgCalcGet");
e.printStackTrace();
}
}
}
import io.swagger.client.api.CalculateurDeCarteGriseApi;
public class CalculateurDeCarteGriseApiExample {
public static void main(String[] args) {
CalculateurDeCarteGriseApi apiInstance = new CalculateurDeCarteGriseApi();
String plaque = plaque_example; // String |
String token = token_example; // String |
Integer departement = 56; // Integer |
Integer demarche = 56; // Integer |
Integer codePostal = 56; // Integer | code postal est requis si le département est non fourni
try {
inline_response_200_6 result = apiInstance.v1PrixcgCalcGet(plaque, token, departement, demarche, codePostal);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling CalculateurDeCarteGriseApi#v1PrixcgCalcGet");
e.printStackTrace();
}
}
}
String *plaque = plaque_example; //
String *token = token_example; //
Integer *departement = 56; //
Integer *demarche = 56; //
Integer *codePostal = 56; // code postal est requis si le département est non fourni (optional)
CalculateurDeCarteGriseApi *apiInstance = [[CalculateurDeCarteGriseApi alloc] init];
// 🇫🇷 Calculer le prix de la carte grise
[apiInstance v1PrixcgCalcGetWith:plaque
token:token
departement:departement
demarche:demarche
codePostal:codePostal
completionHandler: ^(inline_response_200_6 output, NSError* error) {
if (output) {
NSLog(@"%@", output);
}
if (error) {
NSLog(@"Error: %@", error);
}
}];
var AutoWaysNetwork = require('auto_ways_network');
var api = new AutoWaysNetwork.CalculateurDeCarteGriseApi()
var plaque = plaque_example; // {{String}}
var token = token_example; // {{String}}
var departement = 56; // {{Integer}}
var demarche = 56; // {{Integer}}
var opts = {
'codePostal': 56 // {{Integer}} code postal est requis si le département est non fourni
};
var callback = function(error, data, response) {
if (error) {
console.error(error);
} else {
console.log('API called successfully. Returned data: ' + data);
}
};
api.v1PrixcgCalcGet(plaque, token, departement, demarche, opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;
namespace Example
{
public class v1PrixcgCalcGetExample
{
public void main()
{
var apiInstance = new CalculateurDeCarteGriseApi();
var plaque = plaque_example; // String |
var token = token_example; // String |
var departement = 56; // Integer |
var demarche = 56; // Integer |
var codePostal = 56; // Integer | code postal est requis si le département est non fourni (optional)
try
{
// 🇫🇷 Calculer le prix de la carte grise
inline_response_200_6 result = apiInstance.v1PrixcgCalcGet(plaque, token, departement, demarche, codePostal);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling CalculateurDeCarteGriseApi.v1PrixcgCalcGet: " + e.Message );
}
}
}
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$api_instance = new Swagger\Client\ApiCalculateurDeCarteGriseApi();
$plaque = plaque_example; // String |
$token = token_example; // String |
$departement = 56; // Integer |
$demarche = 56; // Integer |
$codePostal = 56; // Integer | code postal est requis si le département est non fourni
try {
$result = $api_instance->v1PrixcgCalcGet($plaque, $token, $departement, $demarche, $codePostal);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling CalculateurDeCarteGriseApi->v1PrixcgCalcGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::CalculateurDeCarteGriseApi;
my $api_instance = WWW::SwaggerClient::CalculateurDeCarteGriseApi->new();
my $plaque = plaque_example; # String |
my $token = token_example; # String |
my $departement = 56; # Integer |
my $demarche = 56; # Integer |
my $codePostal = 56; # Integer | code postal est requis si le département est non fourni
eval {
my $result = $api_instance->v1PrixcgCalcGet(plaque => $plaque, token => $token, departement => $departement, demarche => $demarche, codePostal => $codePostal);
print Dumper($result);
};
if ($@) {
warn "Exception when calling CalculateurDeCarteGriseApi->v1PrixcgCalcGet: $@\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.CalculateurDeCarteGriseApi()
plaque = plaque_example # String |
token = token_example # String |
departement = 56 # Integer |
demarche = 56 # Integer |
codePostal = 56 # Integer | code postal est requis si le département est non fourni (optional)
try:
# 🇫🇷 Calculer le prix de la carte grise
api_response = api_instance.v1_prixcg_calc_get(plaque, token, departement, demarche, codePostal=codePostal)
pprint(api_response)
except ApiException as e:
print("Exception when calling CalculateurDeCarteGriseApi->v1PrixcgCalcGet: %s\n" % e)
Parameters
Name | Description |
---|---|
plaque* |
String
Required
|
token* |
String
Required
|
departement* |
Integer
Required
|
demarche* |
Integer
Required
|
code_postal |
Integer
code postal est requis si le département est non fourni
|