You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- 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.
Copy file name to clipboardExpand all lines: README.md
+26-4Lines changed: 26 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -16,12 +16,23 @@ This API is documented in **OpenAPI format version 3** you can use tools like th
16
16
17
17
## Changelog
18
18
19
+
### 2022-08-04 (v1.2.0)
20
+
- Add support for managing `CallbackSubscription`'s, this allows you to subscribe to callbacks for valuations that were not created with your API client.
- Add `taxateurnaam` field to the `Taxatiedata` model.
26
+
- 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).
27
+
- Updating configuration in the `POST /v1/configuratie/callbacks` endpoint now clears stored but decommissioned versions from the configuration object.
28
+
- Add `klantkenmerk` to the `WaarderingInputParameters` and `Waardering` models.
29
+
19
30
### 2022-07-12 (v1.1.7)
20
31
- Added support for the OAuth 2.0 authorization code flow for use of the API with user accounts.
21
-
- Add `Bouweenheid` to `FunderingSoortBron` enumeration.
32
+
- Add `bouweenheid` to `FunderingSoortBron` enumeration.
22
33
23
34
### 2022-05-19 (v1.1.6)
24
-
- Added `LtvTeHoogOverbrugging` value to the `BusinessRulesCode` enumeration.
35
+
- Added `ltvTeHoogOverbrugging` value to the `BusinessRulesCode` enumeration.
25
36
26
37
### 2022-04-13 (v1.1.5)
27
38
- 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.
@@ -134,8 +145,8 @@ Authentication is done via [OAuth2](https://oauth.net/2/) and the [client creden
134
145
135
146
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
*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).
237
248
*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).
238
249
*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.
250
+
*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.
251
+
*CallbacksApi* | [**delete_notification_subscription**](docs/CallbacksApi.md#delete_notification_subscription) | **DELETE** /api/v1/callbacks/inschrijvingen/{bagNummeraanduidingId} | Verwijder de callback inschrijving voor deze client en dit adres.
252
+
*CallbacksApi* | [**get_notification_subscription**](docs/CallbacksApi.md#get_notification_subscription) | **GET** /api/v1/callbacks/inschrijvingen/{bagNummeraanduidingId} | Haal de callback inschrijving op voor deze client en dit adres.
253
+
*CallbacksApi* | [**get_notification_subscriptions**](docs/CallbacksApi.md#get_notification_subscriptions) | **GET** /api/v1/callbacks/inschrijvingen | Haal de callback inschrijvingen binnen voor deze client.
239
254
*ConfiguratieApi* | [**get_callbacks**](docs/ConfiguratieApi.md#get_callbacks) | **GET** /api/v1/configuratie/callbacks | Haal de geconfigureerde callback URL's op voor de huidige client.
240
255
*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.
241
256
*FacturenApi* | [**get_factuur**](docs/FacturenApi.md#get_factuur) | **GET** /api/v1/facturen/{id} | Factuur op basis van een waardering Id.
0 commit comments