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
@@ -17,12 +17,23 @@ This API is documented in **OpenAPI format version 3** you can use tools like th
17
17
18
18
## Changelog
19
19
20
+
### 2022-08-04 (v1.2.0)
21
+
- 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.
27
+
- 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).
28
+
- Updating configuration in the `POST /v1/configuratie/callbacks` endpoint now clears stored but decommissioned versions from the configuration object.
29
+
- Add `klantkenmerk` to the `WaarderingInputParameters` and `Waardering` models.
30
+
20
31
### 2022-07-12 (v1.1.7)
21
32
- Added support for the OAuth 2.0 authorization code flow for use of the API with user accounts.
22
-
- Add `Bouweenheid` to `FunderingSoortBron` enumeration.
33
+
- Add `bouweenheid` to `FunderingSoortBron` enumeration.
23
34
24
35
### 2022-05-19 (v1.1.6)
25
-
- Added `LtvTeHoogOverbrugging` value to the `BusinessRulesCode` enumeration.
36
+
- Added `ltvTeHoogOverbrugging` value to the `BusinessRulesCode` enumeration.
26
37
27
38
### 2022-04-13 (v1.1.5)
28
39
- 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.
@@ -135,8 +146,8 @@ Authentication is done via [OAuth2](https://oauth.net/2/) and the [client creden
135
146
136
147
This C# SDK is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
*BestemmingsplannenApi* | [**GetBestemmingById**](docs/BestemmingsplannenApi.md#getbestemmingbyid) | **GET** /api/v1/bestemmingsplannen/{bagNummeraanduidingId} | Gegevens over de bestemmingsplannen op de locatie van een adres (BAG Nummeraanduiding ID).
267
278
*BodemApi* | [**GetBodemById**](docs/BodemApi.md#getbodembyid) | **GET** /api/v1/bodem/{bagNummeraanduidingId} | Gegevens over de bodemkwaliteit op de locatie van een adres (BAG Nummeraanduiding ID).
268
279
*BuurtApi* | [**GetBuurt**](docs/BuurtApi.md#getbuurt) | **GET** /api/v1/buurt/{buurtId} | Gegevens over een buurt en de wijk, gemeente en land waarin deze buurt gesitueerd is.
280
+
*CallbacksApi* | [**AddOrUpdateCallbackSubscription**](docs/CallbacksApi.md#addorupdatecallbacksubscription) | **POST** /api/v1/callbacks/inschrijvingen | Voeg een callback inschrijving toe (of werk bij) voor de huidige client voor een adres.
281
+
*CallbacksApi* | [**DeleteNotificationSubscription**](docs/CallbacksApi.md#deletenotificationsubscription) | **DELETE** /api/v1/callbacks/inschrijvingen/{bagNummeraanduidingId} | Verwijder de callback inschrijving voor deze client en dit adres.
282
+
*CallbacksApi* | [**GetNotificationSubscription**](docs/CallbacksApi.md#getnotificationsubscription) | **GET** /api/v1/callbacks/inschrijvingen/{bagNummeraanduidingId} | Haal de callback inschrijving op voor deze client en dit adres.
283
+
*CallbacksApi* | [**GetNotificationSubscriptions**](docs/CallbacksApi.md#getnotificationsubscriptions) | **GET** /api/v1/callbacks/inschrijvingen | Haal de callback inschrijvingen binnen voor deze client.
269
284
*ConfiguratieApi* | [**GetCallbacks**](docs/ConfiguratieApi.md#getcallbacks) | **GET** /api/v1/configuratie/callbacks | Haal de geconfigureerde callback URL's op voor de huidige client.
270
285
*ConfiguratieApi* | [**UpdateCallbacks**](docs/ConfiguratieApi.md#updatecallbacks) | **POST** /api/v1/configuratie/callbacks | Configureer callback URL voor een specifieke API versie voor de huidige client.
271
286
*FacturenApi* | [**GetFactuur**](docs/FacturenApi.md#getfactuur) | **GET** /api/v1/facturen/{id} | Factuur op basis van een waardering Id.
0 commit comments