getCommune
Trouve une commune en fonction de son ID
Retourne une commune
/epsg:{typeProjection}/commune/{idCommune}
Utilisation
curl -X GET "https://api-cadastre.sig.rennesmetropole.fr/v1/epsg:{typeProjection}/commune/{idCommune}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.CommuneApi;
import java.io.File;
import java.util.*;
public class CommuneApiExample {
public static void main(String[] args) {
CommuneApi apiInstance = new CommuneApi();
Integer typeProjection = 56; // Integer | Type de projection demandé
String idCommune = idCommune_example; // String | L'ID de la commune à retourner
try {
Commune result = apiInstance.getCommune(typeProjection, idCommune);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling CommuneApi#getCommune");
e.printStackTrace();
}
}
}
import io.swagger.client.api.CommuneApi;
public class CommuneApiExample {
public static void main(String[] args) {
CommuneApi apiInstance = new CommuneApi();
Integer typeProjection = 56; // Integer | Type de projection demandé
String idCommune = idCommune_example; // String | L'ID de la commune à retourner
try {
Commune result = apiInstance.getCommune(typeProjection, idCommune);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling CommuneApi#getCommune");
e.printStackTrace();
}
}
}
Integer *typeProjection = 56; // Type de projection demandé
String *idCommune = idCommune_example; // L'ID de la commune à retourner
CommuneApi *apiInstance = [[CommuneApi alloc] init];
// Trouve une commune en fonction de son ID
[apiInstance getCommuneWith:typeProjection
idCommune:idCommune
completionHandler: ^(Commune output, NSError* error) {
if (output) {
NSLog(@"%@", output);
}
if (error) {
NSLog(@"Error: %@", error);
}
}];
var ApiRestCadastre = require('api_rest_cadastre');
var api = new ApiRestCadastre.CommuneApi()
var typeProjection = 56; // {Integer} Type de projection demandé
var idCommune = idCommune_example; // {String} L'ID de la commune à retourner
var callback = function(error, data, response) {
if (error) {
console.error(error);
} else {
console.log('API called successfully. Returned data: ' + data);
}
};
api.getCommune(typeProjection, idCommune, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;
namespace Example
{
public class getCommuneExample
{
public void main()
{
var apiInstance = new CommuneApi();
var typeProjection = 56; // Integer | Type de projection demandé
var idCommune = idCommune_example; // String | L'ID de la commune à retourner
try
{
// Trouve une commune en fonction de son ID
Commune result = apiInstance.getCommune(typeProjection, idCommune);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling CommuneApi.getCommune: " + e.Message );
}
}
}
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$api_instance = new Swagger\Client\Api\CommuneApi();
$typeProjection = 56; // Integer | Type de projection demandé
$idCommune = idCommune_example; // String | L'ID de la commune à retourner
try {
$result = $api_instance->getCommune($typeProjection, $idCommune);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling CommuneApi->getCommune: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::CommuneApi;
my $api_instance = WWW::SwaggerClient::CommuneApi->new();
my $typeProjection = 56; # Integer | Type de projection demandé
my $idCommune = idCommune_example; # String | L'ID de la commune à retourner
eval {
my $result = $api_instance->getCommune(typeProjection => $typeProjection, idCommune => $idCommune);
print Dumper($result);
};
if ($@) {
warn "Exception when calling CommuneApi->getCommune: $@\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.CommuneApi()
typeProjection = 56 # Integer | Type de projection demandé
idCommune = idCommune_example # String | L'ID de la commune à retourner
try:
# Trouve une commune en fonction de son ID
api_response = api_instance.get_commune(typeProjection, idCommune)
pprint(api_response)
except ApiException as e:
print("Exception when calling CommuneApi->getCommune: %s\n" % e)
Paramètres
Name | Description |
---|---|
typeProjection* |
Integer
Type de projection demandé
Required
|
idCommune* |
String
L'ID de la commune à retourner
Required
|