Catalog

Teil des Integration Service

Endpunkt: GET - /api/v1/Catalog/{type}
Version: 2.22.30
Beschreibung: Gibt den gesamten Katalog vom angegebenen Typen zurück.

Aktuell werden nur die typen ‘Country’, ’Title’ und ’Icon’ unterstützt!

Beispiel Requests:

https://localhost:9090/api/v1/Catalog/title https://localhost:9090/api/v1/Catalog/country https://localhost:9090/api/v1/Catalog/icon

 

Beispiel Responses:

// Title Response [ { "Id": 1, "Name": "Herr" } ] // Country Response [ { "Id": 1, "Name": "Deutschland", "ISO": "DE", "LandVorwahl":"+49", "Waehrung":"EUR" } ] // Icon Response [ { "Id": "antony://contact/", "Icon": "<base64_string_des_bildes>" } ]

Endpunkt: GET - /api/v1/Catalog/{type}/{id}
Version: 2.22.30
Beschreibung: Gibt den Eintrag mit der angegebenen Id aus dem angegebenen Katalog zurück

Aktuell werden nur die typen ‘Country’, ’Title’ und ’Icon’ unterstützt!

Beispiel Requests:

https://localhost:9090/api/v1/Catalog/title/1 https://localhost:9090/api/v1/Catalog/country/1 https://localhost:9090/api/v1/Catalog/country/antony://contact

 

Beispiel Responses: