findGezichtByParameters
Stads- en Dorpsgezichten
Get information about a specific city or village view
/rest-api-gezicht/run
Usage and SDK Samples
curl -X GET\
-H "Accept: application/ld+json"\
"https://api.linkeddata.cultureelerfgoed.nl/queries/rce/rest-api-gezicht/run?page=&pageSize=&gezichtsnummer=&cultuurhistorischObjectnummer=&naam=®istratiedatum=&gezichtsstatus="import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.GezichtApi;
import java.io.File;
import java.util.*;
public class GezichtApiExample {
    public static void main(String[] args) {
        
        GezichtApi apiInstance = new GezichtApi();
        Integer page = 56; // Integer | The page number to retrieve.
        Integer pageSize = 56; // Integer | The number of items per page. (Fixed at 10)
        String gezichtsnummer = gezichtsnummer_example; // String | City or village view number
        Integer cultuurhistorischObjectnummer = 56; // Integer | Cultural historical object number
        String naam = naam_example; // String | Name of the city or village
        date registratiedatum = 2013-10-20; // date | Registration date of the city or village view
        String gezichtsstatus = gezichtsstatus_example; // String | City or village view status
        try {
            array[Gezicht] result = apiInstance.findGezichtByParameters(page, pageSize, gezichtsnummer, cultuurhistorischObjectnummer, naam, registratiedatum, gezichtsstatus);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling GezichtApi#findGezichtByParameters");
            e.printStackTrace();
        }
    }
}import io.swagger.client.api.GezichtApi;
public class GezichtApiExample {
    public static void main(String[] args) {
        GezichtApi apiInstance = new GezichtApi();
        Integer page = 56; // Integer | The page number to retrieve.
        Integer pageSize = 56; // Integer | The number of items per page. (Fixed at 10)
        String gezichtsnummer = gezichtsnummer_example; // String | City or village view number
        Integer cultuurhistorischObjectnummer = 56; // Integer | Cultural historical object number
        String naam = naam_example; // String | Name of the city or village
        date registratiedatum = 2013-10-20; // date | Registration date of the city or village view
        String gezichtsstatus = gezichtsstatus_example; // String | City or village view status
        try {
            array[Gezicht] result = apiInstance.findGezichtByParameters(page, pageSize, gezichtsnummer, cultuurhistorischObjectnummer, naam, registratiedatum, gezichtsstatus);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling GezichtApi#findGezichtByParameters");
            e.printStackTrace();
        }
    }
}Integer *page = 56; // The page number to retrieve. (optional)
Integer *pageSize = 56; // The number of items per page. (Fixed at 10) (optional) (default to 10)
String *gezichtsnummer = gezichtsnummer_example; // City or village view number (optional)
Integer *cultuurhistorischObjectnummer = 56; // Cultural historical object number (optional)
String *naam = naam_example; // Name of the city or village (optional)
date *registratiedatum = 2013-10-20; // Registration date of the city or village view (optional)
String *gezichtsstatus = gezichtsstatus_example; // City or village view status (optional)
GezichtApi *apiInstance = [[GezichtApi alloc] init];
// Stads- en Dorpsgezichten
[apiInstance findGezichtByParametersWith:page
    pageSize:pageSize
    gezichtsnummer:gezichtsnummer
    cultuurhistorischObjectnummer:cultuurhistorischObjectnummer
    naam:naam
    registratiedatum:registratiedatum
    gezichtsstatus:gezichtsstatus
              completionHandler: ^(array[Gezicht] output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var LinkedDataApiRce = require('linked_data_api_rce');
var api = new LinkedDataApiRce.GezichtApi()
var opts = { 
  'page': 56, // {{Integer}} The page number to retrieve.
  'pageSize': 56, // {{Integer}} The number of items per page. (Fixed at 10)
  'gezichtsnummer': gezichtsnummer_example, // {{String}} City or village view number
  'cultuurhistorischObjectnummer': 56, // {{Integer}} Cultural historical object number
  'naam': naam_example, // {{String}} Name of the city or village
  'registratiedatum': 2013-10-20, // {{date}} Registration date of the city or village view
  'gezichtsstatus': gezichtsstatus_example // {{String}} City or village view status
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.findGezichtByParameters(opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;
namespace Example
{
    public class findGezichtByParametersExample
    {
        public void main()
        {
            var apiInstance = new GezichtApi();
            var page = 56;  // Integer | The page number to retrieve. (optional) 
            var pageSize = 56;  // Integer | The number of items per page. (Fixed at 10) (optional)  (default to 10)
            var gezichtsnummer = gezichtsnummer_example;  // String | City or village view number (optional) 
            var cultuurhistorischObjectnummer = 56;  // Integer | Cultural historical object number (optional) 
            var naam = naam_example;  // String | Name of the city or village (optional) 
            var registratiedatum = 2013-10-20;  // date | Registration date of the city or village view (optional) 
            var gezichtsstatus = gezichtsstatus_example;  // String | City or village view status (optional) 
            try
            {
                // Stads- en Dorpsgezichten
                array[Gezicht] result = apiInstance.findGezichtByParameters(page, pageSize, gezichtsnummer, cultuurhistorischObjectnummer, naam, registratiedatum, gezichtsstatus);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling GezichtApi.findGezichtByParameters: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$api_instance = new Swagger\Client\ApiGezichtApi();
$page = 56; // Integer | The page number to retrieve.
$pageSize = 56; // Integer | The number of items per page. (Fixed at 10)
$gezichtsnummer = gezichtsnummer_example; // String | City or village view number
$cultuurhistorischObjectnummer = 56; // Integer | Cultural historical object number
$naam = naam_example; // String | Name of the city or village
$registratiedatum = 2013-10-20; // date | Registration date of the city or village view
$gezichtsstatus = gezichtsstatus_example; // String | City or village view status
try {
    $result = $api_instance->findGezichtByParameters($page, $pageSize, $gezichtsnummer, $cultuurhistorischObjectnummer, $naam, $registratiedatum, $gezichtsstatus);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling GezichtApi->findGezichtByParameters: ', $e->getMessage(), PHP_EOL;
}
?>use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::GezichtApi;
my $api_instance = WWW::SwaggerClient::GezichtApi->new();
my $page = 56; # Integer | The page number to retrieve.
my $pageSize = 56; # Integer | The number of items per page. (Fixed at 10)
my $gezichtsnummer = gezichtsnummer_example; # String | City or village view number
my $cultuurhistorischObjectnummer = 56; # Integer | Cultural historical object number
my $naam = naam_example; # String | Name of the city or village
my $registratiedatum = 2013-10-20; # date | Registration date of the city or village view
my $gezichtsstatus = gezichtsstatus_example; # String | City or village view status
eval { 
    my $result = $api_instance->findGezichtByParameters(page => $page, pageSize => $pageSize, gezichtsnummer => $gezichtsnummer, cultuurhistorischObjectnummer => $cultuurhistorischObjectnummer, naam => $naam, registratiedatum => $registratiedatum, gezichtsstatus => $gezichtsstatus);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling GezichtApi->findGezichtByParameters: $@\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.GezichtApi()
page = 56 # Integer | The page number to retrieve. (optional)
pageSize = 56 # Integer | The number of items per page. (Fixed at 10) (optional) (default to 10)
gezichtsnummer = gezichtsnummer_example # String | City or village view number (optional)
cultuurhistorischObjectnummer = 56 # Integer | Cultural historical object number (optional)
naam = naam_example # String | Name of the city or village (optional)
registratiedatum = 2013-10-20 # date | Registration date of the city or village view (optional)
gezichtsstatus = gezichtsstatus_example # String | City or village view status (optional)
try: 
    # Stads- en Dorpsgezichten
    api_response = api_instance.find_gezicht_by_parameters(page=page, pageSize=pageSize, gezichtsnummer=gezichtsnummer, cultuurhistorischObjectnummer=cultuurhistorischObjectnummer, naam=naam, registratiedatum=registratiedatum, gezichtsstatus=gezichtsstatus)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling GezichtApi->findGezichtByParameters: %s\n" % e)Parameters
Query parameters
                            | Name | Description | 
|---|---|
| page | 
                                                
                                                    Integer
                                                
                                
                                                     
                                                        The page number to retrieve.
                                                     | 
| pageSize | 
                                                
                                                    Integer
                                                
                                
                                                     
                                                        The number of items per page. (Fixed at 10)
                                                     | 
| gezichtsnummer | 
                                                
                                                    String
                                                
                                
                                                     
                                                        City or village view number
                                                     | 
| cultuurhistorischObjectnummer | 
                                                
                                                    Integer
                                                
                                
                                                     
                                                        Cultural historical object number
                                                     | 
| naam | 
                                                
                                                    String
                                                
                                
                                                     
                                                        Name of the city or village
                                                     | 
| registratiedatum | 
                                                
                                                    date
                                                
                                                    
                                                        (date)
                                                    
                                
                                                     
                                                        Registration date of the city or village view
                                                     | 
| gezichtsstatus | 
                                                
                                                    String
                                                
                                
                                                     
                                                        City or village view status
                                                     |