Skip to main content

Calcasa Public API

Project description

calcasa.api

The Calcasa API is used to connect to Calcasa provided services. For more information, please visit Documentation or GitHub.

This Python package is automatically generated by the OpenAPI Generator project:

  • API version: 1.5.4
  • Package version: 1.5.4
  • Generator version: 7.16.0
  • Build package: org.openapitools.codegen.languages.PythonClientCodegen For more information, please visit https://www.calcasa.nl/contact

Requirements.

Python 3.9+

Installation & Usage

pip install

If the python package is hosted on a repository, you can install directly using:

pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git

(you may need to run pip with root permission: sudo pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git)

Then import the package:

import calcasa.api

Setuptools

Install via Setuptools.

python setup.py install --user

(or sudo python setup.py install to install the package for all users)

Then import the package:

import calcasa.api

Tests

Execute pytest to run the tests.

Getting Started

Please follow the installation procedure and then run the following:

import calcasa.api
from calcasa.api.rest import ApiException
from pprint import pprint

# Defining the host is optional and defaults to https://api.calcasa.nl/api/v1
# See configuration.py for a list of all supported configuration parameters.
configuration = calcasa.api.Configuration(
    host = "https://api.calcasa.nl/api/v1"
)

# The client must configure the authentication and authorization parameters
# in accordance with the API server security policy.
# Examples for each auth method are provided below, use the example that
# satisfies your auth use case.

configuration.access_token = os.environ["ACCESS_TOKEN"]


# Enter a context with an instance of the API client
with calcasa.api.ApiClient(configuration) as api_client:
    # Create an instance of the API class
    api_instance = calcasa.api.AdressenApi(api_client)
    bag_nummeraanduiding_id = 56 # int | Een BAG Nummeraanduiding ID om een adres te specificeren.

    try:
        # Adres info op basis van BAG Nummeraanduiding Id.
        api_response = api_instance.get_adres(bag_nummeraanduiding_id)
        print("The response of AdressenApi->get_adres:\n")
        pprint(api_response)
    except ApiException as e:
        print("Exception when calling AdressenApi->get_adres: %s\n" % e)

Documentation for API Endpoints

All URIs are relative to https://api.calcasa.nl/api/v1

Class Method HTTP request Description
AdressenApi get_adres GET /adressen/{bagNummeraanduidingId} Adres info op basis van BAG Nummeraanduiding Id.
AdressenApi search_adres POST /adressen/zoeken Zoek adres info op basis van het gegeven adres.
BestemmingsplannenApi get_bestemming_by_id GET /bestemmingsplannen/{bagNummeraanduidingId} Gegevens over de bestemmingsplannen op de locatie van een adres (BAG Nummeraanduiding ID).
BodemApi get_bodem_by_id GET /bodem/{bagNummeraanduidingId} Gegevens over de bodemkwaliteit op de locatie van een adres (BAG Nummeraanduiding ID).
BuurtApi get_buurt GET /buurt/{buurtCode} Gegevens over een buurt en de wijk, gemeente en land waarin deze buurt gesitueerd is.
CallbacksApi add_or_update_callback_subscription POST /callbacks/inschrijvingen Voeg een callback inschrijving toe (of werk bij) voor de huidige client voor een adres.
CallbacksApi delete_notification_subscription DELETE /callbacks/inschrijvingen/{bagNummeraanduidingId} Verwijder de callback inschrijving voor deze client, dit adres en optioneel een geldverstrekker.
CallbacksApi get_notification_subscription GET /callbacks/inschrijvingen/{bagNummeraanduidingId} Haal de callback inschrijving op voor deze client, dit adres en eventueel opgegeven geldverstrekker.
CallbacksApi get_notification_subscriptions GET /callbacks/inschrijvingen Haal de callback inschrijvingen binnen voor deze client.
ConfiguratieApi get_callback_authentication GET /configuratie/callbacks/authentication Haal de geconfigureerde callback authenticatie op voor de huidige client.
ConfiguratieApi get_callbacks GET /configuratie/callbacks Haal de geconfigureerde callback URL's op voor de huidige client.
ConfiguratieApi get_mtls_certificate GET /configuratie/callbacks/mtls-certificate Get the self-signed mTLS certificate.
ConfiguratieApi get_signature_keys GET /configuratie/callbacks/signature-keys Get the JWKS keys, deze kunnen worden gebruikt om de echtheid van webhooks te verifiëren.
ConfiguratieApi post_callback_authentication POST /configuratie/callbacks/authentication Update de geconfigureerde callback authenticatie voor de huidige client.
ConfiguratieApi update_callbacks POST /configuratie/callbacks Configureer callback URL voor een specifieke API versie voor de huidige client.
FacturenApi get_factuur GET /facturen/{id} Factuur op basis van een waardering Id.
FotosApi get_foto GET /fotos/{id} Foto op basis van een foto Id.
FunderingenApi get_fundering_by_id GET /funderingen/{bagNummeraanduidingId} Gegevens over de fundering op de locatie van een adres (BAG Nummeraanduiding ID).
GeldverstrekkersApi get_geldverstrekkers GET /geldverstrekkers/{productType} Alle geldverstrekkers die te gebruiken zijn voor aanvragen.
RapportenApi get_rapport GET /rapporten/{id} Rapport op basis van waardering Id.
WaarderingenApi check_producten POST /waarderingen/check Controleert mogelijke producten.
WaarderingenApi create_waardering POST /waarderingen Creërt een waardering.
WaarderingenApi get_waardering GET /waarderingen/{id} Waardering op basis van Id.
WaarderingenApi get_waardering_ontwikkeling GET /waarderingen/{id}/ontwikkeling Waardering ontwikkeling op basis van waardering Id.
WaarderingenApi patch_waarderingen PATCH /waarderingen/{id} Patcht een waardering.
WaarderingenApi search_waarderingen POST /waarderingen/zoeken Zoek waardering op basis van input parameters.

Documentation For Models

Documentation For Authorization

Authentication schemes defined for the API:

oauth

  • Type: OAuth
  • Flow: application
  • Authorization URL:
  • Scopes:
  • api:adressen:read:
  • api:bestemmingsplannen:read:
  • api:bodem:read:
  • api:buurt:read:
  • api:callback:read:
  • api:callback:write:
  • api:configuratie:read:
  • api:configuratie:write:
  • api:facturen:read:
  • api:fotos:read:
  • api:funderingen:read:
  • api:geldverstrekkers:read:
  • api:rapporten:read:
  • api:waarderingen:read:
  • api:waarderingen:patch:
  • api:waarderingen:ontwikkeling:
  • api:waarderingen:create:

Author

info@calcasa.nl

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

calcasa_api-1.5.4.tar.gz (69.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

calcasa_api-1.5.4-py3-none-any.whl (179.5 kB view details)

Uploaded Python 3

File details

Details for the file calcasa_api-1.5.4.tar.gz.

File metadata

  • Download URL: calcasa_api-1.5.4.tar.gz
  • Upload date:
  • Size: 69.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.3

File hashes

Hashes for calcasa_api-1.5.4.tar.gz
Algorithm Hash digest
SHA256 18489b20ac0a0edc109ed4394dcbbac14c7e7c64db64032aa307b79bca3c0bf7
MD5 077de828ac9c675b127c4a6f3dd652b1
BLAKE2b-256 cdf5a0a29d5db78b02ebed2a3ee18c0596ae606cf0fc3f332e47bcb8b8365bd1

See more details on using hashes here.

File details

Details for the file calcasa_api-1.5.4-py3-none-any.whl.

File metadata

  • Download URL: calcasa_api-1.5.4-py3-none-any.whl
  • Upload date:
  • Size: 179.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.3

File hashes

Hashes for calcasa_api-1.5.4-py3-none-any.whl
Algorithm Hash digest
SHA256 f567a8f1d9679730cb6e19e19105daf82ae8ad679ab10f57ea87b47be328f431
MD5 e9597b56829d47f7cb9e865cb81c9427
BLAKE2b-256 53f2f9278adfa520c8d9292ea008ee53815ff6b9e3c91d9be985ea407005b798

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page