calcasa-api


Namecalcasa-api JSON
Version 1.3.0 PyPI version JSON
download
home_pagehttps://github.com/calcasa/api-python
SummaryCalcasa Public API v1
upload_time2023-09-22 08:42:01
maintainer
docs_urlNone
authorCalcasa B.V.
requires_python>=3.6
licenseApache-2.0
keywords openapi openapi-generator calcasa public api v1
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # calcasa-api
The Calcasa API is used to connect to Calcasa provided services. This is the first production version of the service

## Client packages
[Nuget](https://www.nuget.org/packages/Calcasa.Api) - [Packagist](https://packagist.org/packages/calcasa/api) - [PyPI](https://pypi.org/project/calcasa.api)
## Client implementation notes
Clients should at all times be tolerant to the following:

- Extra fields in responses
- Empty or hidden fields in responses
- Extra values in enumerations
- Unexpected error responses in the form of [Problem Details](https://rfc-editor.org/rfc/rfc7807)

## OpenAPI Specification
This API is documented in **OpenAPI format version 3** you can use tools like the [OpenAPI Generator](https://github.com/OpenAPITools/openapi-generator) to generate API clients for for example the languages we don't provide a pre-built client for. This is documented [here](/api/v1/articles/clients/generation).

## Changelog

### 2023-10-24 (v1.3.0)
- Add `geldverstrekker` field to the `CallbackInschrijving` model.
- Add support for mTLS on the callback service.
    - By default when requested by the target server the public CA signed TLS certificate with the appropriate domain as Common Name will be offered as the client certificate. 
    - Public TLS Certificates rotate every couple of months.
- Change a couple of `date-time` fields that only contained a date to pure `date` fields. This might result is a different type in the generated clients and the service-side validation will be more strict. Times included in values will no longer be silently dropped, but will generate an error.
    - Change `Modeldata` model `waardebepalingsdatum` field to type `date` in OpenAPI spec.
    - Change `Bestemmingsdata` model `datumBestemmingplan` field to type `date` in OpenAPI spec.
    - Change `Bodemdata` model `datumLaatsteOnderzoek` field to type `date` in OpenAPI spec.
    - Change `Referentieobject` model `verkoopdatum` field to type `date` in OpenAPI spec.
    - Change `VorigeVerkoop` model `verkoopdatum` field to type `date` in OpenAPI spec.
    - Change `waarderingInputParameters` model `peildatum` field to type `date` in OpenAPI spec. This is an input field and will now require a date without a time.
- Add `desktopTaxatieHerwaardering` product to enumeration `ProductType`.
- The service no longer returns CORS headers.
- Actions now correctly report the 'application/problem+json' Content-Type in the documentation for the `HTTP 422 Unprocessable Entity` responses.
- Added `energielabelData` field to `Objectdata` model to contain the extra information about the energy label.
- The OpenAPI spec generation was changed slightly and thus the generated and published clients might be affected. There might be some slight breaking changes at compile time, but the functionality remains the same.
    - For example for C# and PHP `AdresInfoAdres` is now just covered by `Adres`
    - Likewise for the `Omgevingsdata*` models that are now all covered by `Gebiedsdata`
    - For a lot of the `Waardering*` models they are now using the correct model names, like `WaarderingModel` -> `Modeldata`


### 2023-04-17 (v1.2.1)
- Add `externeReferentie` field to the `CallbackInschrijving` and `WaarderingWebhookPayload` models.

### 2022-08-04 (v1.2.0)
- Add support for managing `CallbackSubscription`'s, this allows you to subscribe to callbacks for valuations that were not created with your API client.
    - `GET /v1/callbacks/inschrijvingen`
    - `POST /v1/callbacks/inschrijvingen`
    - `GET /v1/callbacks/inschrijvingen/{bagNummeraanduidingId}`
    - `DELETE /v1/callbacks/inschrijvingen/{bagNummeraanduidingId}`
- Add `taxateurnaam` field to the `Taxatiedata` model.
- Callback URIs should now end in `/` not just contain it to help stop common errors (ending in `=` is also still allowed when using a query string).
- Updating configuration in the `POST /v1/configuratie/callbacks` endpoint now clears stored but decommissioned versions from the configuration object.
- Add `klantkenmerk` to the `WaarderingInputParameters` and `Waardering` models.

### 2022-07-12 (v1.1.7)
- Added support for the OAuth 2.0 authorization code flow for use of the API with user accounts.
- Add `bouweenheid` to `FunderingSoortBron` enumeration.

### 2022-05-19 (v1.1.6)
- Added `ltvTeHoogOverbrugging` value to the `BusinessRulesCode` enumeration.

### 2022-04-13 (v1.1.5)
- Fix the schema for `Operation` `value` field for the benefit of the PHP and Python code generators, these will now correctly support any value type.

### 2022-04-12 (v1.1.4)
- Added proper Content-Disposition headers to the `GET /v1/rapporten/{id}` and `GET /v1/facturen/{id}` endpoints with the correct filename.
- Fix Mime Types for the `POST /v1/configuratie/callbacks` endpoint to only accept `application/json`.
- Fix C# API client to correctly use the `application/json-patch+json` content type in requests that require it.
- Fix C# client's `FileParameter` type correct handling of response headers like `Content-Disposition` and `Content-Type`.
- Removed C# client's useless implementation of `IValidatableObject`.
- Fix Python client's internal namespace name being illegal `calcasa-api` -> `calcasa.api`.

### 2022-03-22 (v1.1.3)
- Add 402 (Payment required) and 422 (Unprocessable entity) as potential response for `PATCH /v1/waarderingen/{id}`.

### 2022-03-17 (v1.1.2)
- Fixed response type for `GET /v1/geldverstrekkers/{productType}` endpoint.

### 2022-03-08 (v1.1.1)
- Added `GET /v1/geldverstrekkers/{productType}` endpoint.
- Restored all `ProblemDetails` models.

### 2022-03-07 (v1.1.0)
- Added `isErfpacht` to `WaarderingInputParameters`.
- Cleaned up serialization of null values, they should no longer appear in the output.

### 2021-02-04
- Added extra clarification to the documentation pertaining to the `WaarderingInputParameters` and which fields are required for the different input parameter combinations.

### 2022-01-11 (v1.0.2)
- Fixed `GET /api/v1/bodem/{id}` endpoint path parameter description, query parameter was never meant to be there.

### 2021-12-23
- Clarified the documentation pertaining to the `WaarderingInputParameters` and which fields are required for the different product types.

### 2021-12-22 (v1.0.1)
- Dates are now serialized in the ISO date-only format `yyyy-MM-dd` to stop any confusion around timezones and are all assumed to be in UTC.
    - `peildatum` in `WaarderingsInputParameters`
    - `datum_bestemmingplan` in `Bestemmingsdata`
    - `datum_laatste_onderzoek` in `Bodemdata`
    - `verkoopdatum` in `Referentieobject`
    - `verkoopdatum` in `VorigeVerkoop`
    - `waardebepalingsdatum` in `Modeldata`
- Reintroduced the `WaarderingWebhookPayload` model that was omitted.

### 2021-12-21
- Patching the status of a `Waardering` object will now immediatly reflect its new status in the response object.

### 2021-12-13 (v1.0.0)
- Initial release of `v1` based on `v0.0.6`

## Cross-Origin Resource Sharing
This API features Cross-Origin Resource Sharing (CORS) implemented in compliance with [W3C spec](https://www.w3.org/TR/cors/).
And that allows cross-domain communication from the browser.
All responses have a wildcard same-origin which makes them completely public and accessible to everyone, including any code on any site.

## Authentication
Authentication is done via [OAuth2](https://oauth.net/2/) and the [client credentials](https://oauth.net/2/grant-types/client-credentials/) grant type.

## Previous versions changelogs

### 2022-02-02
- API version `v0` was removed from service.

### 2021-12-23
- Mark `v0` as officially deprecated. No further versions will be released. Every implementation should move to `v1`

### 2021-12-10 (v0.0.6)
- Added extra field `peildatum` to the `WaarderingInputParameters` model.

### 2021-11-25 (v0.0.5)
- Updated all reported OAuth2 scopes and reduced the superflous scope information on each endpoint.

### 2021-11-23 (v0.0.4)
- Added per square meter developments to the `WaarderingOntwikkeling` object (fields with the `PerVierkantemeter` suffix).

### 2021-11-15 (v0.0.3)
- Added callback update and read endpoints and models.
- Updated documentation.

### 2021-11-11
- Renamed /fundering endpoint to /funderingen to be more in line with other endpoints
- Renamed `HerstelType` to `FunderingHerstelType`.
- Added `FunderingType` values.

### 2021-11-10
- Adjusted OpenAPI Spec generation to fix some issues with certain generators. This also means that the nullable nature of certain fields is now correctly represented. Please refer to the Generation article for more information, the config files were updated aswell.

### 2021-11-09
- Added `Status` and `Taxatiedatum` to `Taxatiedata` model.

### 2021-11-08
- Renamed `id` field in `AdresInfo` model to `bagNummeraanduidingId`.
- Added `GET /v0/fundering/{id}` endpoint with corresponding models.
- Changed HTTP response code for the `BusinessRulesProblemDetails` error return type of `POST /v0/waardering` from `422 Unprocessable Entity` to `406 Not Acceptable` to fix a duplicate.

### 2021-10-13
- Added `taxatie` field to `Waardering` model.
- Added `Taxatiedata` model containing the `taxatieorganisatie` field for desktop valuations.

### 2021-09-29
- Added `aangemaakt` timestamp field to `Waardering` model.
- Added `WaarderingZoekParameters` model to replace `WaarderingInputParameters` in the `POST /v0/waarderingen/zoeken` endpoint.
- Split `Omgevingsdata` model into a set of separate `Gebiedsdata` models that also contain extra statistics.
- Added `bijzonderheden` field to `VorigeVerkoop` model.
- Renamed `ReferentieBijzonderheden` model to `VerkoopBijzonderheden`.

### 2021-09-22
- Initial release of `v0`

This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:

- API version: 1.3.0
- Package version: 1.3.0
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
For more information, please visit [https://www.calcasa.nl/contact](https://www.calcasa.nl/contact)

## Requirements.

Python >=3.6

## Installation & Usage
### pip install

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

```sh
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:
```python
import calcasa.api
```

### Setuptools

Install via [Setuptools](http://pypi.python.org/pypi/setuptools).

```sh
python setup.py install --user
```
(or `sudo python setup.py install` to install the package for all users)

Then import the package:
```python
import calcasa.api
```

## Getting Started

Please follow the [installation procedure](#installation--usage) and then run the following:

```python

import time
import calcasa.api
from pprint import pprint
from calcasa.api.api import adressen_api
from calcasa.api.model.adres import Adres
from calcasa.api.model.adres_info import AdresInfo
from calcasa.api.model.not_found_problem_details import NotFoundProblemDetails
from calcasa.api.model.permissions_denied_problem_details import PermissionsDeniedProblemDetails
from calcasa.api.model.problem_details import ProblemDetails
# Defining the host is optional and defaults to https://api.calcasa.nl
# See configuration.py for a list of all supported configuration parameters.
configuration = calcasa.api.Configuration(
    host = "https://api.calcasa.nl"
)

# 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.

# Configure OAuth2 access token for authorization: oauth
configuration = calcasa.api.Configuration(
    host = "https://api.calcasa.nl"
)
configuration.access_token = 'YOUR_ACCESS_TOKEN'

# Configure OAuth2 access token for authorization: oauth
configuration = calcasa.api.Configuration(
    host = "https://api.calcasa.nl"
)
configuration.access_token = 'YOUR_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 = adressen_api.AdressenApi(api_client)
    bag_nummeraanduiding_id = 1 # 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)
        pprint(api_response)
    except calcasa.api.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*

Class | Method | HTTP request | Description
------------ | ------------- | ------------- | -------------
*AdressenApi* | [**get_adres**](docs/AdressenApi.md#get_adres) | **GET** /api/v1/adressen/{bagNummeraanduidingId} | Adres info op basis van BAG Nummeraanduiding Id.
*AdressenApi* | [**search_adres**](docs/AdressenApi.md#search_adres) | **POST** /api/v1/adressen/zoeken | Zoek adres info op basis van het gegeven adres.
*BestemmingsplannenApi* | [**get_bestemming_by_id**](docs/BestemmingsplannenApi.md#get_bestemming_by_id) | **GET** /api/v1/bestemmingsplannen/{bagNummeraanduidingId} | Gegevens over de bestemmingsplannen op de locatie van een adres (BAG Nummeraanduiding ID).
*BodemApi* | [**get_bodem_by_id**](docs/BodemApi.md#get_bodem_by_id) | **GET** /api/v1/bodem/{bagNummeraanduidingId} | Gegevens over de bodemkwaliteit op de locatie van een adres (BAG Nummeraanduiding ID).
*BuurtApi* | [**get_buurt**](docs/BuurtApi.md#get_buurt) | **GET** /api/v1/buurt/{buurtId} | Gegevens over een buurt en de wijk, gemeente en land waarin deze buurt gesitueerd is.
*CallbacksApi* | [**add_or_update_callback_subscription**](docs/CallbacksApi.md#add_or_update_callback_subscription) | **POST** /api/v1/callbacks/inschrijvingen | Voeg een callback inschrijving toe (of werk bij) voor de huidige client voor een adres.
*CallbacksApi* | [**delete_notification_subscription**](docs/CallbacksApi.md#delete_notification_subscription) | **DELETE** /api/v1/callbacks/inschrijvingen/{bagNummeraanduidingId} | Verwijder de callback inschrijving voor deze client, dit adres en optioneel een geldverstrekker.
*CallbacksApi* | [**get_notification_subscription**](docs/CallbacksApi.md#get_notification_subscription) | **GET** /api/v1/callbacks/inschrijvingen/{bagNummeraanduidingId} | Haal de callback inschrijving op voor deze client, dit adres en eventueel opgegeven geldverstrekker.
*CallbacksApi* | [**get_notification_subscriptions**](docs/CallbacksApi.md#get_notification_subscriptions) | **GET** /api/v1/callbacks/inschrijvingen | Haal de callback inschrijvingen binnen voor deze client.
*ConfiguratieApi* | [**get_callbacks**](docs/ConfiguratieApi.md#get_callbacks) | **GET** /api/v1/configuratie/callbacks | Haal de geconfigureerde callback URL's op voor de huidige client.
*ConfiguratieApi* | [**update_callbacks**](docs/ConfiguratieApi.md#update_callbacks) | **POST** /api/v1/configuratie/callbacks | Configureer callback URL voor een specifieke API versie voor de huidige client.
*FacturenApi* | [**get_factuur**](docs/FacturenApi.md#get_factuur) | **GET** /api/v1/facturen/{id} | Factuur op basis van een waardering Id.
*FotosApi* | [**get_foto**](docs/FotosApi.md#get_foto) | **GET** /api/v1/fotos/{id} | Foto op basis van een foto Id.
*FunderingenApi* | [**get_fundering_by_id**](docs/FunderingenApi.md#get_fundering_by_id) | **GET** /api/v1/funderingen/{bagNummeraanduidingId} | Gegevens over de fundering op de locatie van een adres (BAG Nummeraanduiding ID).
*GeldverstrekkersApi* | [**get_geldverstrekkers**](docs/GeldverstrekkersApi.md#get_geldverstrekkers) | **GET** /api/v1/geldverstrekkers/{productType} | Alle geldverstrekkers die te gebruiken zijn voor aanvragen.
*RapportenApi* | [**get_rapport**](docs/RapportenApi.md#get_rapport) | **GET** /api/v1/rapporten/{id} | Rapport op basis van waardering Id.
*WaarderingenApi* | [**create_waardering**](docs/WaarderingenApi.md#create_waardering) | **POST** /api/v1/waarderingen | Creƫrt een waardering.
*WaarderingenApi* | [**get_waardering**](docs/WaarderingenApi.md#get_waardering) | **GET** /api/v1/waarderingen/{id} | Waardering op basis van Id.
*WaarderingenApi* | [**get_waardering_ontwikkeling**](docs/WaarderingenApi.md#get_waardering_ontwikkeling) | **GET** /api/v1/waarderingen/{id}/ontwikkeling | Waardering ontwikkeling op basis van waardering Id.
*WaarderingenApi* | [**patch_waarderingen**](docs/WaarderingenApi.md#patch_waarderingen) | **PATCH** /api/v1/waarderingen/{id} | Patcht een waardering.
*WaarderingenApi* | [**search_waarderingen**](docs/WaarderingenApi.md#search_waarderingen) | **POST** /api/v1/waarderingen/zoeken | Zoek waardering op basis van input parameters.


## Documentation For Models

 - [Aanvraagdoel](docs/Aanvraagdoel.md)
 - [Adres](docs/Adres.md)
 - [AdresInfo](docs/AdresInfo.md)
 - [Bestemmingsdata](docs/Bestemmingsdata.md)
 - [BodemStatusType](docs/BodemStatusType.md)
 - [Bodemdata](docs/Bodemdata.md)
 - [BusinessRulesCode](docs/BusinessRulesCode.md)
 - [BusinessRulesProblemDetails](docs/BusinessRulesProblemDetails.md)
 - [Callback](docs/Callback.md)
 - [CallbackInschrijving](docs/CallbackInschrijving.md)
 - [CbsIndeling](docs/CbsIndeling.md)
 - [Energielabel](docs/Energielabel.md)
 - [EnergielabelData](docs/EnergielabelData.md)
 - [Factuur](docs/Factuur.md)
 - [Foto](docs/Foto.md)
 - [FunderingDataBron](docs/FunderingDataBron.md)
 - [FunderingHerstelType](docs/FunderingHerstelType.md)
 - [FunderingRisico](docs/FunderingRisico.md)
 - [FunderingRisicoLabel](docs/FunderingRisicoLabel.md)
 - [FunderingSoortBron](docs/FunderingSoortBron.md)
 - [FunderingType](docs/FunderingType.md)
 - [FunderingTypering](docs/FunderingTypering.md)
 - [Funderingdata](docs/Funderingdata.md)
 - [Gebiedsdata](docs/Gebiedsdata.md)
 - [Geldverstrekker](docs/Geldverstrekker.md)
 - [InvalidArgumentProblemDetails](docs/InvalidArgumentProblemDetails.md)
 - [JsonPatchDocument](docs/JsonPatchDocument.md)
 - [KlantwaardeType](docs/KlantwaardeType.md)
 - [Kwartaal](docs/Kwartaal.md)
 - [Modeldata](docs/Modeldata.md)
 - [NotFoundProblemDetails](docs/NotFoundProblemDetails.md)
 - [Notitie](docs/Notitie.md)
 - [Notities](docs/Notities.md)
 - [Objectdata](docs/Objectdata.md)
 - [Omgevingsdata](docs/Omgevingsdata.md)
 - [Operation](docs/Operation.md)
 - [OperationType](docs/OperationType.md)
 - [PermissionsDeniedProblemDetails](docs/PermissionsDeniedProblemDetails.md)
 - [ProblemDetails](docs/ProblemDetails.md)
 - [ProductType](docs/ProductType.md)
 - [Rapport](docs/Rapport.md)
 - [Referentieobject](docs/Referentieobject.md)
 - [ResourceExhaustedProblemDetails](docs/ResourceExhaustedProblemDetails.md)
 - [Taxatiedata](docs/Taxatiedata.md)
 - [Taxatiestatus](docs/Taxatiestatus.md)
 - [ValidationProblemDetails](docs/ValidationProblemDetails.md)
 - [VerkoopBijzonderheden](docs/VerkoopBijzonderheden.md)
 - [VorigeVerkoop](docs/VorigeVerkoop.md)
 - [Waardering](docs/Waardering.md)
 - [WaarderingInputParameters](docs/WaarderingInputParameters.md)
 - [WaarderingOntwikkeling](docs/WaarderingOntwikkeling.md)
 - [WaarderingOntwikkelingKwartaal](docs/WaarderingOntwikkelingKwartaal.md)
 - [WaarderingStatus](docs/WaarderingStatus.md)
 - [WaarderingWebhookPayload](docs/WaarderingWebhookPayload.md)
 - [WaarderingZoekParameters](docs/WaarderingZoekParameters.md)
 - [WoningType](docs/WoningType.md)


## Documentation For Authorization


## oauth

- **Type**: OAuth
- **Flow**: application
- **Authorization URL**: 
- **Scopes**: 
 - **all**: Full permissions for all areas.
 - **api:all**: Full permissions for all areas of the public API.
 - **api:bestemmingsplannen:all**: Full permissions for the bestemmingsplannen area of the public API.
 - **api:bodem:all**: Full permissions for the bodem area of the public API.
 - **api:buurt:all**: Full permissions for the buurt area of the public API.
 - **api:configuratie:all**: Full permissions for the configuratie area of the public API.
 - **api:callback:all**: Full permissions for the callback area of the public API.
 - **api:facturen:all**: Full permissions for the facturen area of the public API.
 - **api:fotos:all**: Full permissions for the fotos area of the public API.
 - **api:funderingen:all**: Full permissions for the funderingen area of the public API.
 - **api:rapporten:all**: Full permissions for the rapporten area of the public API.
 - **api:waarderingen:all**: Full permissions for the waarderingen area of the public API.
 - **api:adressen:read**: Read permissions for the adressen area of the public API.
 - **api:bestemmingsplannen:read**: Read permissions for the bestemmingsplannen area of the public API.
 - **api:bodem:read**: Read permissions for the bodem area of the public API.
 - **api:buurt:read**: Read permissions for the buurt area of the public API.
 - **api:configuratie:read**: Read permissions for the configuratie area of the public API.
 - **api:configuratie:write**: Write permissions for the configuratie area of the public API.
 - **api:callback:read**: Read permissions for the callback area of the public API.
 - **api:callback:write**: Write permissions for the callback area of the public API.
 - **api:facturen:read**: Read permissions for the facturen area of the public API.
 - **api:fotos:read**: Read permissions for the fotos area of the public API.
 - **api:funderingen:read**: Read permissions for the funderingen area of the public API.
 - **api:geldverstrekkers:read**: Read permissions for the geldverstrekkers area of the public API.
 - **api:rapporten:read**: Read permissions for the rapporten area of the public API.
 - **api:waarderingen:create**: Create permissions for the waarderingen area of the public API.
 - **api:waarderingen:patch**: Patch permissions for the waarderingen area of the public API.
 - **api:waarderingen:read**: Read permissions for the waarderingen area of the public API.
 - **api:waarderingen:ontwikkeling**: Read permissions for the ontwikkelingen endpoint in the waarderingen area of the public API.


## oauth

- **Type**: OAuth
- **Flow**: accessCode
- **Authorization URL**: https://authentication.calcasa.nl/oauth2/v2.0/authorize
- **Scopes**: 
 - **all**: Full permissions for all areas.
 - **api:all**: Full permissions for all areas of the public API.
 - **api:bestemmingsplannen:all**: Full permissions for the bestemmingsplannen area of the public API.
 - **api:bodem:all**: Full permissions for the bodem area of the public API.
 - **api:buurt:all**: Full permissions for the buurt area of the public API.
 - **api:configuratie:all**: Full permissions for the configuratie area of the public API.
 - **api:callback:all**: Full permissions for the callback area of the public API.
 - **api:facturen:all**: Full permissions for the facturen area of the public API.
 - **api:fotos:all**: Full permissions for the fotos area of the public API.
 - **api:funderingen:all**: Full permissions for the funderingen area of the public API.
 - **api:rapporten:all**: Full permissions for the rapporten area of the public API.
 - **api:waarderingen:all**: Full permissions for the waarderingen area of the public API.
 - **api:adressen:read**: Read permissions for the adressen area of the public API.
 - **api:bestemmingsplannen:read**: Read permissions for the bestemmingsplannen area of the public API.
 - **api:bodem:read**: Read permissions for the bodem area of the public API.
 - **api:buurt:read**: Read permissions for the buurt area of the public API.
 - **api:configuratie:read**: Read permissions for the configuratie area of the public API.
 - **api:configuratie:write**: Write permissions for the configuratie area of the public API.
 - **api:callback:read**: Read permissions for the callback area of the public API.
 - **api:callback:write**: Write permissions for the callback area of the public API.
 - **api:facturen:read**: Read permissions for the facturen area of the public API.
 - **api:fotos:read**: Read permissions for the fotos area of the public API.
 - **api:funderingen:read**: Read permissions for the funderingen area of the public API.
 - **api:geldverstrekkers:read**: Read permissions for the geldverstrekkers area of the public API.
 - **api:rapporten:read**: Read permissions for the rapporten area of the public API.
 - **api:waarderingen:create**: Create permissions for the waarderingen area of the public API.
 - **api:waarderingen:patch**: Patch permissions for the waarderingen area of the public API.
 - **api:waarderingen:read**: Read permissions for the waarderingen area of the public API.
 - **api:waarderingen:ontwikkeling**: Read permissions for the ontwikkelingen endpoint in the waarderingen area of the public API.


## Author

info@calcasa.nl


## Notes for Large OpenAPI documents
If the OpenAPI document is large, imports in calcasa.api.apis and calcasa.api.models may fail with a
RecursionError indicating the maximum recursion limit has been exceeded. In that case, there are a couple of solutions:

Solution 1:
Use specific imports for apis and models like:
- `from calcasa.api.api.default_api import DefaultApi`
- `from calcasa.api.model.pet import Pet`

Solution 2:
Before importing the package, adjust the maximum recursion limit as shown below:
```
import sys
sys.setrecursionlimit(1500)
import calcasa.api
from calcasa.api.apis import *
from calcasa.api.models import *
```




            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/calcasa/api-python",
    "name": "calcasa-api",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.6",
    "maintainer_email": "",
    "keywords": "OpenAPI,OpenAPI-Generator,Calcasa Public API v1",
    "author": "Calcasa B.V.",
    "author_email": "info@calcasa.nl",
    "download_url": "https://files.pythonhosted.org/packages/08/0d/29b9805aae44ffcb51c347e08407beb709b58d0fed2d9aa6fc6604a863f9/calcasa-api-1.3.0.tar.gz",
    "platform": null,
    "description": "# calcasa-api\nThe Calcasa API is used to connect to Calcasa provided services. This is the first production version of the service\n\n## Client packages\n[Nuget](https://www.nuget.org/packages/Calcasa.Api) - [Packagist](https://packagist.org/packages/calcasa/api) - [PyPI](https://pypi.org/project/calcasa.api)\n## Client implementation notes\nClients should at all times be tolerant to the following:\n\n- Extra fields in responses\n- Empty or hidden fields in responses\n- Extra values in enumerations\n- Unexpected error responses in the form of [Problem Details](https://rfc-editor.org/rfc/rfc7807)\n\n## OpenAPI Specification\nThis API is documented in **OpenAPI format version 3** you can use tools like the [OpenAPI Generator](https://github.com/OpenAPITools/openapi-generator) to generate API clients for for example the languages we don't provide a pre-built client for. This is documented [here](/api/v1/articles/clients/generation).\n\n## Changelog\n\n### 2023-10-24 (v1.3.0)\n- Add `geldverstrekker` field to the `CallbackInschrijving` model.\n- Add support for mTLS on the callback service.\n    - By default when requested by the target server the public CA signed TLS certificate with the appropriate domain as Common Name will be offered as the client certificate. \n    - Public TLS Certificates rotate every couple of months.\n- Change a couple of `date-time` fields that only contained a date to pure `date` fields. This might result is a different type in the generated clients and the service-side validation will be more strict. Times included in values will no longer be silently dropped, but will generate an error.\n    - Change `Modeldata` model `waardebepalingsdatum` field to type `date` in OpenAPI spec.\n    - Change `Bestemmingsdata` model `datumBestemmingplan` field to type `date` in OpenAPI spec.\n    - Change `Bodemdata` model `datumLaatsteOnderzoek` field to type `date` in OpenAPI spec.\n    - Change `Referentieobject` model `verkoopdatum` field to type `date` in OpenAPI spec.\n    - Change `VorigeVerkoop` model `verkoopdatum` field to type `date` in OpenAPI spec.\n    - Change `waarderingInputParameters` model `peildatum` field to type `date` in OpenAPI spec. This is an input field and will now require a date without a time.\n- Add `desktopTaxatieHerwaardering` product to enumeration `ProductType`.\n- The service no longer returns CORS headers.\n- Actions now correctly report the 'application/problem+json' Content-Type in the documentation for the `HTTP 422 Unprocessable Entity` responses.\n- Added `energielabelData` field to `Objectdata` model to contain the extra information about the energy label.\n- The OpenAPI spec generation was changed slightly and thus the generated and published clients might be affected. There might be some slight breaking changes at compile time, but the functionality remains the same.\n    - For example for C# and PHP `AdresInfoAdres` is now just covered by `Adres`\n    - Likewise for the `Omgevingsdata*` models that are now all covered by `Gebiedsdata`\n    - For a lot of the `Waardering*` models they are now using the correct model names, like `WaarderingModel` -> `Modeldata`\n\n\n### 2023-04-17 (v1.2.1)\n- Add `externeReferentie` field to the `CallbackInschrijving` and `WaarderingWebhookPayload` models.\n\n### 2022-08-04 (v1.2.0)\n- Add support for managing `CallbackSubscription`'s, this allows you to subscribe to callbacks for valuations that were not created with your API client.\n    - `GET /v1/callbacks/inschrijvingen`\n    - `POST /v1/callbacks/inschrijvingen`\n    - `GET /v1/callbacks/inschrijvingen/{bagNummeraanduidingId}`\n    - `DELETE /v1/callbacks/inschrijvingen/{bagNummeraanduidingId}`\n- Add `taxateurnaam` field to the `Taxatiedata` model.\n- Callback URIs should now end in `/` not just contain it to help stop common errors (ending in `=` is also still allowed when using a query string).\n- Updating configuration in the `POST /v1/configuratie/callbacks` endpoint now clears stored but decommissioned versions from the configuration object.\n- Add `klantkenmerk` to the `WaarderingInputParameters` and `Waardering` models.\n\n### 2022-07-12 (v1.1.7)\n- Added support for the OAuth 2.0 authorization code flow for use of the API with user accounts.\n- Add `bouweenheid` to `FunderingSoortBron` enumeration.\n\n### 2022-05-19 (v1.1.6)\n- Added `ltvTeHoogOverbrugging` value to the `BusinessRulesCode` enumeration.\n\n### 2022-04-13 (v1.1.5)\n- Fix the schema for `Operation` `value` field for the benefit of the PHP and Python code generators, these will now correctly support any value type.\n\n### 2022-04-12 (v1.1.4)\n- Added proper Content-Disposition headers to the `GET /v1/rapporten/{id}` and `GET /v1/facturen/{id}` endpoints with the correct filename.\n- Fix Mime Types for the `POST /v1/configuratie/callbacks` endpoint to only accept `application/json`.\n- Fix C# API client to correctly use the `application/json-patch+json` content type in requests that require it.\n- Fix C# client's `FileParameter` type correct handling of response headers like `Content-Disposition` and `Content-Type`.\n- Removed C# client's useless implementation of `IValidatableObject`.\n- Fix Python client's internal namespace name being illegal `calcasa-api` -> `calcasa.api`.\n\n### 2022-03-22 (v1.1.3)\n- Add 402 (Payment required) and 422 (Unprocessable entity) as potential response for `PATCH /v1/waarderingen/{id}`.\n\n### 2022-03-17 (v1.1.2)\n- Fixed response type for `GET /v1/geldverstrekkers/{productType}` endpoint.\n\n### 2022-03-08 (v1.1.1)\n- Added `GET /v1/geldverstrekkers/{productType}` endpoint.\n- Restored all `ProblemDetails` models.\n\n### 2022-03-07 (v1.1.0)\n- Added `isErfpacht` to `WaarderingInputParameters`.\n- Cleaned up serialization of null values, they should no longer appear in the output.\n\n### 2021-02-04\n- Added extra clarification to the documentation pertaining to the `WaarderingInputParameters` and which fields are required for the different input parameter combinations.\n\n### 2022-01-11 (v1.0.2)\n- Fixed `GET /api/v1/bodem/{id}` endpoint path parameter description, query parameter was never meant to be there.\n\n### 2021-12-23\n- Clarified the documentation pertaining to the `WaarderingInputParameters` and which fields are required for the different product types.\n\n### 2021-12-22 (v1.0.1)\n- Dates are now serialized in the ISO date-only format `yyyy-MM-dd` to stop any confusion around timezones and are all assumed to be in UTC.\n    - `peildatum` in `WaarderingsInputParameters`\n    - `datum_bestemmingplan` in `Bestemmingsdata`\n    - `datum_laatste_onderzoek` in `Bodemdata`\n    - `verkoopdatum` in `Referentieobject`\n    - `verkoopdatum` in `VorigeVerkoop`\n    - `waardebepalingsdatum` in `Modeldata`\n- Reintroduced the `WaarderingWebhookPayload` model that was omitted.\n\n### 2021-12-21\n- Patching the status of a `Waardering` object will now immediatly reflect its new status in the response object.\n\n### 2021-12-13 (v1.0.0)\n- Initial release of `v1` based on `v0.0.6`\n\n## Cross-Origin Resource Sharing\nThis API features Cross-Origin Resource Sharing (CORS) implemented in compliance with [W3C spec](https://www.w3.org/TR/cors/).\nAnd that allows cross-domain communication from the browser.\nAll responses have a wildcard same-origin which makes them completely public and accessible to everyone, including any code on any site.\n\n## Authentication\nAuthentication is done via [OAuth2](https://oauth.net/2/) and the [client credentials](https://oauth.net/2/grant-types/client-credentials/) grant type.\n\n## Previous versions changelogs\n\n### 2022-02-02\n- API version `v0` was removed from service.\n\n### 2021-12-23\n- Mark `v0` as officially deprecated. No further versions will be released. Every implementation should move to `v1`\n\n### 2021-12-10 (v0.0.6)\n- Added extra field `peildatum` to the `WaarderingInputParameters` model.\n\n### 2021-11-25 (v0.0.5)\n- Updated all reported OAuth2 scopes and reduced the superflous scope information on each endpoint.\n\n### 2021-11-23 (v0.0.4)\n- Added per square meter developments to the `WaarderingOntwikkeling` object (fields with the `PerVierkantemeter` suffix).\n\n### 2021-11-15 (v0.0.3)\n- Added callback update and read endpoints and models.\n- Updated documentation.\n\n### 2021-11-11\n- Renamed /fundering endpoint to /funderingen to be more in line with other endpoints\n- Renamed `HerstelType` to `FunderingHerstelType`.\n- Added `FunderingType` values.\n\n### 2021-11-10\n- Adjusted OpenAPI Spec generation to fix some issues with certain generators. This also means that the nullable nature of certain fields is now correctly represented. Please refer to the Generation article for more information, the config files were updated aswell.\n\n### 2021-11-09\n- Added `Status` and `Taxatiedatum` to `Taxatiedata` model.\n\n### 2021-11-08\n- Renamed `id` field in `AdresInfo` model to `bagNummeraanduidingId`.\n- Added `GET /v0/fundering/{id}` endpoint with corresponding models.\n- Changed HTTP response code for the `BusinessRulesProblemDetails` error return type of `POST /v0/waardering` from `422 Unprocessable Entity` to `406 Not Acceptable` to fix a duplicate.\n\n### 2021-10-13\n- Added `taxatie` field to `Waardering` model.\n- Added `Taxatiedata` model containing the `taxatieorganisatie` field for desktop valuations.\n\n### 2021-09-29\n- Added `aangemaakt` timestamp field to `Waardering` model.\n- Added `WaarderingZoekParameters` model to replace `WaarderingInputParameters` in the `POST /v0/waarderingen/zoeken` endpoint.\n- Split `Omgevingsdata` model into a set of separate `Gebiedsdata` models that also contain extra statistics.\n- Added `bijzonderheden` field to `VorigeVerkoop` model.\n- Renamed `ReferentieBijzonderheden` model to `VerkoopBijzonderheden`.\n\n### 2021-09-22\n- Initial release of `v0`\n\nThis Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:\n\n- API version: 1.3.0\n- Package version: 1.3.0\n- Build package: org.openapitools.codegen.languages.PythonClientCodegen\nFor more information, please visit [https://www.calcasa.nl/contact](https://www.calcasa.nl/contact)\n\n## Requirements.\n\nPython >=3.6\n\n## Installation & Usage\n### pip install\n\nIf the python package is hosted on a repository, you can install directly using:\n\n```sh\npip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git\n```\n(you may need to run `pip` with root permission: `sudo pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git`)\n\nThen import the package:\n```python\nimport calcasa.api\n```\n\n### Setuptools\n\nInstall via [Setuptools](http://pypi.python.org/pypi/setuptools).\n\n```sh\npython setup.py install --user\n```\n(or `sudo python setup.py install` to install the package for all users)\n\nThen import the package:\n```python\nimport calcasa.api\n```\n\n## Getting Started\n\nPlease follow the [installation procedure](#installation--usage) and then run the following:\n\n```python\n\nimport time\nimport calcasa.api\nfrom pprint import pprint\nfrom calcasa.api.api import adressen_api\nfrom calcasa.api.model.adres import Adres\nfrom calcasa.api.model.adres_info import AdresInfo\nfrom calcasa.api.model.not_found_problem_details import NotFoundProblemDetails\nfrom calcasa.api.model.permissions_denied_problem_details import PermissionsDeniedProblemDetails\nfrom calcasa.api.model.problem_details import ProblemDetails\n# Defining the host is optional and defaults to https://api.calcasa.nl\n# See configuration.py for a list of all supported configuration parameters.\nconfiguration = calcasa.api.Configuration(\n    host = \"https://api.calcasa.nl\"\n)\n\n# The client must configure the authentication and authorization parameters\n# in accordance with the API server security policy.\n# Examples for each auth method are provided below, use the example that\n# satisfies your auth use case.\n\n# Configure OAuth2 access token for authorization: oauth\nconfiguration = calcasa.api.Configuration(\n    host = \"https://api.calcasa.nl\"\n)\nconfiguration.access_token = 'YOUR_ACCESS_TOKEN'\n\n# Configure OAuth2 access token for authorization: oauth\nconfiguration = calcasa.api.Configuration(\n    host = \"https://api.calcasa.nl\"\n)\nconfiguration.access_token = 'YOUR_ACCESS_TOKEN'\n\n\n# Enter a context with an instance of the API client\nwith calcasa.api.ApiClient(configuration) as api_client:\n    # Create an instance of the API class\n    api_instance = adressen_api.AdressenApi(api_client)\n    bag_nummeraanduiding_id = 1 # int | Een BAG Nummeraanduiding ID om een adres te specificeren.\n\n    try:\n        # Adres info op basis van BAG Nummeraanduiding Id.\n        api_response = api_instance.get_adres(bag_nummeraanduiding_id)\n        pprint(api_response)\n    except calcasa.api.ApiException as e:\n        print(\"Exception when calling AdressenApi->get_adres: %s\\n\" % e)\n```\n\n## Documentation for API Endpoints\n\nAll URIs are relative to *https://api.calcasa.nl*\n\nClass | Method | HTTP request | Description\n------------ | ------------- | ------------- | -------------\n*AdressenApi* | [**get_adres**](docs/AdressenApi.md#get_adres) | **GET** /api/v1/adressen/{bagNummeraanduidingId} | Adres info op basis van BAG Nummeraanduiding Id.\n*AdressenApi* | [**search_adres**](docs/AdressenApi.md#search_adres) | **POST** /api/v1/adressen/zoeken | Zoek adres info op basis van het gegeven adres.\n*BestemmingsplannenApi* | [**get_bestemming_by_id**](docs/BestemmingsplannenApi.md#get_bestemming_by_id) | **GET** /api/v1/bestemmingsplannen/{bagNummeraanduidingId} | Gegevens over de bestemmingsplannen op de locatie van een adres (BAG Nummeraanduiding ID).\n*BodemApi* | [**get_bodem_by_id**](docs/BodemApi.md#get_bodem_by_id) | **GET** /api/v1/bodem/{bagNummeraanduidingId} | Gegevens over de bodemkwaliteit op de locatie van een adres (BAG Nummeraanduiding ID).\n*BuurtApi* | [**get_buurt**](docs/BuurtApi.md#get_buurt) | **GET** /api/v1/buurt/{buurtId} | Gegevens over een buurt en de wijk, gemeente en land waarin deze buurt gesitueerd is.\n*CallbacksApi* | [**add_or_update_callback_subscription**](docs/CallbacksApi.md#add_or_update_callback_subscription) | **POST** /api/v1/callbacks/inschrijvingen | Voeg een callback inschrijving toe (of werk bij) voor de huidige client voor een adres.\n*CallbacksApi* | [**delete_notification_subscription**](docs/CallbacksApi.md#delete_notification_subscription) | **DELETE** /api/v1/callbacks/inschrijvingen/{bagNummeraanduidingId} | Verwijder de callback inschrijving voor deze client, dit adres en optioneel een geldverstrekker.\n*CallbacksApi* | [**get_notification_subscription**](docs/CallbacksApi.md#get_notification_subscription) | **GET** /api/v1/callbacks/inschrijvingen/{bagNummeraanduidingId} | Haal de callback inschrijving op voor deze client, dit adres en eventueel opgegeven geldverstrekker.\n*CallbacksApi* | [**get_notification_subscriptions**](docs/CallbacksApi.md#get_notification_subscriptions) | **GET** /api/v1/callbacks/inschrijvingen | Haal de callback inschrijvingen binnen voor deze client.\n*ConfiguratieApi* | [**get_callbacks**](docs/ConfiguratieApi.md#get_callbacks) | **GET** /api/v1/configuratie/callbacks | Haal de geconfigureerde callback URL's op voor de huidige client.\n*ConfiguratieApi* | [**update_callbacks**](docs/ConfiguratieApi.md#update_callbacks) | **POST** /api/v1/configuratie/callbacks | Configureer callback URL voor een specifieke API versie voor de huidige client.\n*FacturenApi* | [**get_factuur**](docs/FacturenApi.md#get_factuur) | **GET** /api/v1/facturen/{id} | Factuur op basis van een waardering Id.\n*FotosApi* | [**get_foto**](docs/FotosApi.md#get_foto) | **GET** /api/v1/fotos/{id} | Foto op basis van een foto Id.\n*FunderingenApi* | [**get_fundering_by_id**](docs/FunderingenApi.md#get_fundering_by_id) | **GET** /api/v1/funderingen/{bagNummeraanduidingId} | Gegevens over de fundering op de locatie van een adres (BAG Nummeraanduiding ID).\n*GeldverstrekkersApi* | [**get_geldverstrekkers**](docs/GeldverstrekkersApi.md#get_geldverstrekkers) | **GET** /api/v1/geldverstrekkers/{productType} | Alle geldverstrekkers die te gebruiken zijn voor aanvragen.\n*RapportenApi* | [**get_rapport**](docs/RapportenApi.md#get_rapport) | **GET** /api/v1/rapporten/{id} | Rapport op basis van waardering Id.\n*WaarderingenApi* | [**create_waardering**](docs/WaarderingenApi.md#create_waardering) | **POST** /api/v1/waarderingen | Cre\u00ebrt een waardering.\n*WaarderingenApi* | [**get_waardering**](docs/WaarderingenApi.md#get_waardering) | **GET** /api/v1/waarderingen/{id} | Waardering op basis van Id.\n*WaarderingenApi* | [**get_waardering_ontwikkeling**](docs/WaarderingenApi.md#get_waardering_ontwikkeling) | **GET** /api/v1/waarderingen/{id}/ontwikkeling | Waardering ontwikkeling op basis van waardering Id.\n*WaarderingenApi* | [**patch_waarderingen**](docs/WaarderingenApi.md#patch_waarderingen) | **PATCH** /api/v1/waarderingen/{id} | Patcht een waardering.\n*WaarderingenApi* | [**search_waarderingen**](docs/WaarderingenApi.md#search_waarderingen) | **POST** /api/v1/waarderingen/zoeken | Zoek waardering op basis van input parameters.\n\n\n## Documentation For Models\n\n - [Aanvraagdoel](docs/Aanvraagdoel.md)\n - [Adres](docs/Adres.md)\n - [AdresInfo](docs/AdresInfo.md)\n - [Bestemmingsdata](docs/Bestemmingsdata.md)\n - [BodemStatusType](docs/BodemStatusType.md)\n - [Bodemdata](docs/Bodemdata.md)\n - [BusinessRulesCode](docs/BusinessRulesCode.md)\n - [BusinessRulesProblemDetails](docs/BusinessRulesProblemDetails.md)\n - [Callback](docs/Callback.md)\n - [CallbackInschrijving](docs/CallbackInschrijving.md)\n - [CbsIndeling](docs/CbsIndeling.md)\n - [Energielabel](docs/Energielabel.md)\n - [EnergielabelData](docs/EnergielabelData.md)\n - [Factuur](docs/Factuur.md)\n - [Foto](docs/Foto.md)\n - [FunderingDataBron](docs/FunderingDataBron.md)\n - [FunderingHerstelType](docs/FunderingHerstelType.md)\n - [FunderingRisico](docs/FunderingRisico.md)\n - [FunderingRisicoLabel](docs/FunderingRisicoLabel.md)\n - [FunderingSoortBron](docs/FunderingSoortBron.md)\n - [FunderingType](docs/FunderingType.md)\n - [FunderingTypering](docs/FunderingTypering.md)\n - [Funderingdata](docs/Funderingdata.md)\n - [Gebiedsdata](docs/Gebiedsdata.md)\n - [Geldverstrekker](docs/Geldverstrekker.md)\n - [InvalidArgumentProblemDetails](docs/InvalidArgumentProblemDetails.md)\n - [JsonPatchDocument](docs/JsonPatchDocument.md)\n - [KlantwaardeType](docs/KlantwaardeType.md)\n - [Kwartaal](docs/Kwartaal.md)\n - [Modeldata](docs/Modeldata.md)\n - [NotFoundProblemDetails](docs/NotFoundProblemDetails.md)\n - [Notitie](docs/Notitie.md)\n - [Notities](docs/Notities.md)\n - [Objectdata](docs/Objectdata.md)\n - [Omgevingsdata](docs/Omgevingsdata.md)\n - [Operation](docs/Operation.md)\n - [OperationType](docs/OperationType.md)\n - [PermissionsDeniedProblemDetails](docs/PermissionsDeniedProblemDetails.md)\n - [ProblemDetails](docs/ProblemDetails.md)\n - [ProductType](docs/ProductType.md)\n - [Rapport](docs/Rapport.md)\n - [Referentieobject](docs/Referentieobject.md)\n - [ResourceExhaustedProblemDetails](docs/ResourceExhaustedProblemDetails.md)\n - [Taxatiedata](docs/Taxatiedata.md)\n - [Taxatiestatus](docs/Taxatiestatus.md)\n - [ValidationProblemDetails](docs/ValidationProblemDetails.md)\n - [VerkoopBijzonderheden](docs/VerkoopBijzonderheden.md)\n - [VorigeVerkoop](docs/VorigeVerkoop.md)\n - [Waardering](docs/Waardering.md)\n - [WaarderingInputParameters](docs/WaarderingInputParameters.md)\n - [WaarderingOntwikkeling](docs/WaarderingOntwikkeling.md)\n - [WaarderingOntwikkelingKwartaal](docs/WaarderingOntwikkelingKwartaal.md)\n - [WaarderingStatus](docs/WaarderingStatus.md)\n - [WaarderingWebhookPayload](docs/WaarderingWebhookPayload.md)\n - [WaarderingZoekParameters](docs/WaarderingZoekParameters.md)\n - [WoningType](docs/WoningType.md)\n\n\n## Documentation For Authorization\n\n\n## oauth\n\n- **Type**: OAuth\n- **Flow**: application\n- **Authorization URL**: \n- **Scopes**: \n - **all**: Full permissions for all areas.\n - **api:all**: Full permissions for all areas of the public API.\n - **api:bestemmingsplannen:all**: Full permissions for the bestemmingsplannen area of the public API.\n - **api:bodem:all**: Full permissions for the bodem area of the public API.\n - **api:buurt:all**: Full permissions for the buurt area of the public API.\n - **api:configuratie:all**: Full permissions for the configuratie area of the public API.\n - **api:callback:all**: Full permissions for the callback area of the public API.\n - **api:facturen:all**: Full permissions for the facturen area of the public API.\n - **api:fotos:all**: Full permissions for the fotos area of the public API.\n - **api:funderingen:all**: Full permissions for the funderingen area of the public API.\n - **api:rapporten:all**: Full permissions for the rapporten area of the public API.\n - **api:waarderingen:all**: Full permissions for the waarderingen area of the public API.\n - **api:adressen:read**: Read permissions for the adressen area of the public API.\n - **api:bestemmingsplannen:read**: Read permissions for the bestemmingsplannen area of the public API.\n - **api:bodem:read**: Read permissions for the bodem area of the public API.\n - **api:buurt:read**: Read permissions for the buurt area of the public API.\n - **api:configuratie:read**: Read permissions for the configuratie area of the public API.\n - **api:configuratie:write**: Write permissions for the configuratie area of the public API.\n - **api:callback:read**: Read permissions for the callback area of the public API.\n - **api:callback:write**: Write permissions for the callback area of the public API.\n - **api:facturen:read**: Read permissions for the facturen area of the public API.\n - **api:fotos:read**: Read permissions for the fotos area of the public API.\n - **api:funderingen:read**: Read permissions for the funderingen area of the public API.\n - **api:geldverstrekkers:read**: Read permissions for the geldverstrekkers area of the public API.\n - **api:rapporten:read**: Read permissions for the rapporten area of the public API.\n - **api:waarderingen:create**: Create permissions for the waarderingen area of the public API.\n - **api:waarderingen:patch**: Patch permissions for the waarderingen area of the public API.\n - **api:waarderingen:read**: Read permissions for the waarderingen area of the public API.\n - **api:waarderingen:ontwikkeling**: Read permissions for the ontwikkelingen endpoint in the waarderingen area of the public API.\n\n\n## oauth\n\n- **Type**: OAuth\n- **Flow**: accessCode\n- **Authorization URL**: https://authentication.calcasa.nl/oauth2/v2.0/authorize\n- **Scopes**: \n - **all**: Full permissions for all areas.\n - **api:all**: Full permissions for all areas of the public API.\n - **api:bestemmingsplannen:all**: Full permissions for the bestemmingsplannen area of the public API.\n - **api:bodem:all**: Full permissions for the bodem area of the public API.\n - **api:buurt:all**: Full permissions for the buurt area of the public API.\n - **api:configuratie:all**: Full permissions for the configuratie area of the public API.\n - **api:callback:all**: Full permissions for the callback area of the public API.\n - **api:facturen:all**: Full permissions for the facturen area of the public API.\n - **api:fotos:all**: Full permissions for the fotos area of the public API.\n - **api:funderingen:all**: Full permissions for the funderingen area of the public API.\n - **api:rapporten:all**: Full permissions for the rapporten area of the public API.\n - **api:waarderingen:all**: Full permissions for the waarderingen area of the public API.\n - **api:adressen:read**: Read permissions for the adressen area of the public API.\n - **api:bestemmingsplannen:read**: Read permissions for the bestemmingsplannen area of the public API.\n - **api:bodem:read**: Read permissions for the bodem area of the public API.\n - **api:buurt:read**: Read permissions for the buurt area of the public API.\n - **api:configuratie:read**: Read permissions for the configuratie area of the public API.\n - **api:configuratie:write**: Write permissions for the configuratie area of the public API.\n - **api:callback:read**: Read permissions for the callback area of the public API.\n - **api:callback:write**: Write permissions for the callback area of the public API.\n - **api:facturen:read**: Read permissions for the facturen area of the public API.\n - **api:fotos:read**: Read permissions for the fotos area of the public API.\n - **api:funderingen:read**: Read permissions for the funderingen area of the public API.\n - **api:geldverstrekkers:read**: Read permissions for the geldverstrekkers area of the public API.\n - **api:rapporten:read**: Read permissions for the rapporten area of the public API.\n - **api:waarderingen:create**: Create permissions for the waarderingen area of the public API.\n - **api:waarderingen:patch**: Patch permissions for the waarderingen area of the public API.\n - **api:waarderingen:read**: Read permissions for the waarderingen area of the public API.\n - **api:waarderingen:ontwikkeling**: Read permissions for the ontwikkelingen endpoint in the waarderingen area of the public API.\n\n\n## Author\n\ninfo@calcasa.nl\n\n\n## Notes for Large OpenAPI documents\nIf the OpenAPI document is large, imports in calcasa.api.apis and calcasa.api.models may fail with a\nRecursionError indicating the maximum recursion limit has been exceeded. In that case, there are a couple of solutions:\n\nSolution 1:\nUse specific imports for apis and models like:\n- `from calcasa.api.api.default_api import DefaultApi`\n- `from calcasa.api.model.pet import Pet`\n\nSolution 2:\nBefore importing the package, adjust the maximum recursion limit as shown below:\n```\nimport sys\nsys.setrecursionlimit(1500)\nimport calcasa.api\nfrom calcasa.api.apis import *\nfrom calcasa.api.models import *\n```\n\n\n\n",
    "bugtrack_url": null,
    "license": "Apache-2.0",
    "summary": "Calcasa Public API v1",
    "version": "1.3.0",
    "project_urls": {
        "Homepage": "https://github.com/calcasa/api-python"
    },
    "split_keywords": [
        "openapi",
        "openapi-generator",
        "calcasa public api v1"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "886f171d1abf07d5418a44d7edb074dbe5ac71a359d72a40f6abf1ff9048f7fd",
                "md5": "8556989e2e3b2b92ef4123fc9ca1d8ca",
                "sha256": "e2273290f1065e2cfd12270f8c53dcbb07de4ccaf800ed4b0dc054ea81afa507"
            },
            "downloads": -1,
            "filename": "calcasa_api-1.3.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "8556989e2e3b2b92ef4123fc9ca1d8ca",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.6",
            "size": 247584,
            "upload_time": "2023-09-22T08:41:58",
            "upload_time_iso_8601": "2023-09-22T08:41:58.753151Z",
            "url": "https://files.pythonhosted.org/packages/88/6f/171d1abf07d5418a44d7edb074dbe5ac71a359d72a40f6abf1ff9048f7fd/calcasa_api-1.3.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "080d29b9805aae44ffcb51c347e08407beb709b58d0fed2d9aa6fc6604a863f9",
                "md5": "baaea0fa3cf1236058e684c13e9483f2",
                "sha256": "7e1823189c68fa91f883046433fc5465ac80397b8ca28597fffd69c8f3aa7f0a"
            },
            "downloads": -1,
            "filename": "calcasa-api-1.3.0.tar.gz",
            "has_sig": false,
            "md5_digest": "baaea0fa3cf1236058e684c13e9483f2",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.6",
            "size": 89732,
            "upload_time": "2023-09-22T08:42:01",
            "upload_time_iso_8601": "2023-09-22T08:42:01.263825Z",
            "url": "https://files.pythonhosted.org/packages/08/0d/29b9805aae44ffcb51c347e08407beb709b58d0fed2d9aa6fc6604a863f9/calcasa-api-1.3.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-09-22 08:42:01",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "calcasa",
    "github_project": "api-python",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "requirements": [],
    "lcname": "calcasa-api"
}
        
Elapsed time: 0.13313s