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 `DeelWaarderingWebhookPayload` model.
- Use of strings for CBS codes.
- Add `buurtCode` field to `CbsIndeling` model.
- Allow for string input for endpoint `buurt`.
- Add UserAgent header to callback requests with format: CalcasaPublicAPI/`<version>`
Copy file name to clipboardExpand all lines: README.md
+13-5Lines changed: 13 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -17,7 +17,14 @@ This API is documented in **OpenAPI format version 3** you can use tools like th
17
17
18
18
## Changelog
19
19
20
-
### 2023-10-24 (v1.3.0)
20
+
### 2024-05-14 (v1.3.1)
21
+
- Add `DeelWaarderingWebhookPayload` model.
22
+
- Use of strings for CBS codes.
23
+
- Add `buurtCode` field to `CbsIndeling` model.
24
+
- Allow for string input for endpoint `buurt`.
25
+
- Add UserAgent header to callback requests with format: CalcasaPublicAPI/`<version>`
26
+
27
+
### 2023-11-14 (v1.3.0)
21
28
- Add `geldverstrekker` field to the `CallbackInschrijving` model.
22
29
- Add support for mTLS on the callback service.
23
30
- 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.
@@ -171,8 +178,8 @@ Authentication is done via [OAuth2](https://oauth.net/2/) and the [client creden
171
178
172
179
This C# SDK is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
*AdressenApi* | [**SearchAdres**](docs/AdressenApi.md#searchadres) | **POST** /api/v1/adressen/zoeken | Zoek adres info op basis van het gegeven adres.
302
309
*BestemmingsplannenApi* | [**GetBestemmingById**](docs/BestemmingsplannenApi.md#getbestemmingbyid) | **GET** /api/v1/bestemmingsplannen/{bagNummeraanduidingId} | Gegevens over de bestemmingsplannen op de locatie van een adres (BAG Nummeraanduiding ID).
303
310
*BodemApi* | [**GetBodemById**](docs/BodemApi.md#getbodembyid) | **GET** /api/v1/bodem/{bagNummeraanduidingId} | Gegevens over de bodemkwaliteit op de locatie van een adres (BAG Nummeraanduiding ID).
304
-
*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.
311
+
*BuurtApi* | [**GetBuurt**](docs/BuurtApi.md#getbuurt) | **GET** /api/v1/buurt/{buurtCode} | Gegevens over een buurt en de wijk, gemeente en land waarin deze buurt gesitueerd is.
305
312
*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.
306
313
*CallbacksApi* | [**DeleteNotificationSubscription**](docs/CallbacksApi.md#deletenotificationsubscription) | **DELETE** /api/v1/callbacks/inschrijvingen/{bagNummeraanduidingId} | Verwijder de callback inschrijving voor deze client, dit adres en optioneel een geldverstrekker.
307
314
*CallbacksApi* | [**GetNotificationSubscription**](docs/CallbacksApi.md#getnotificationsubscription) | **GET** /api/v1/callbacks/inschrijvingen/{bagNummeraanduidingId} | Haal de callback inschrijving op voor deze client, dit adres en eventueel opgegeven geldverstrekker.
@@ -309,22 +309,26 @@ public Calcasa.Api.Client.ExceptionFactory ExceptionFactory
309
309
/// Gegevens over een buurt en de wijk, gemeente en land waarin deze buurt gesitueerd is. Het omgevingdata object zal gefilterd terug komen afhankelijk van het client_id wat gebruikt is voor de authenticatie.
310
310
/// </summary>
311
311
/// <exception cref="Calcasa.Api.Client.ApiException">Thrown when fails to make API call</exception>
312
-
/// <param name="buurtId">Een CBS buurt ID.</param>
312
+
/// <param name="buurtCode">Een CBS buurt code.</param>
/// Gegevens over een buurt en de wijk, gemeente en land waarin deze buurt gesitueerd is. Het omgevingdata object zal gefilterd terug komen afhankelijk van het client_id wat gebruikt is voor de authenticatie.
322
322
/// </summary>
323
323
/// <exception cref="Calcasa.Api.Client.ApiException">Thrown when fails to make API call</exception>
324
-
/// <param name="buurtId">Een CBS buurt ID.</param>
324
+
/// <param name="buurtCode">Een CBS buurt code.</param>
325
325
/// <returns>ApiResponse of Omgevingsdata</returns>
@@ -373,24 +377,28 @@ public Calcasa.Api.Client.ApiResponse<Omgevingsdata> GetBuurtWithHttpInfo(int bu
373
377
/// Gegevens over een buurt en de wijk, gemeente en land waarin deze buurt gesitueerd is. Het omgevingdata object zal gefilterd terug komen afhankelijk van het client_id wat gebruikt is voor de authenticatie.
374
378
/// </summary>
375
379
/// <exception cref="Calcasa.Api.Client.ApiException">Thrown when fails to make API call</exception>
376
-
/// <param name="buurtId">Een CBS buurt ID.</param>
380
+
/// <param name="buurtCode">Een CBS buurt code.</param>
377
381
/// <param name="cancellationToken">Cancellation Token to cancel the request.</param>
/// Gegevens over een buurt en de wijk, gemeente en land waarin deze buurt gesitueerd is. Het omgevingdata object zal gefilterd terug komen afhankelijk van het client_id wat gebruikt is voor de authenticatie.
387
391
/// </summary>
388
392
/// <exception cref="Calcasa.Api.Client.ApiException">Thrown when fails to make API call</exception>
389
-
/// <param name="buurtId">Een CBS buurt ID.</param>
393
+
/// <param name="buurtCode">Een CBS buurt code.</param>
390
394
/// <param name="cancellationToken">Cancellation Token to cancel the request.</param>
391
395
/// <returns>Task of ApiResponse (Omgevingsdata)</returns>
0 commit comments