productselector/getpkfginfo

Liefert Informationen wie Tarifname, Gesellschaft und Bausteine zu einer Produktkonfiguration.

Request

Endpoint: POST https://v7.fb-vertragscheck.fb-preview.de/external/productselector/getpkfginfo

Schema: GET https://v7.fb-vertragscheck.fb-preview.de/external/productselector/getpkfginfo/request/schema


property default description options
[ token ] * required
string
Dient der Authentifizierung mit der Schnittstelle.
[ producttype ] * required
string
Kurzform des Produkttyps (über Schnittstelle "/getproducttypes" zu erhalten)
[ pkfg ] * required
string
ID der Produktkonfiguration
example:

mime-type: application/json, text/json

{
    "token": "a1s2d3f4g5h6j7k8l9",
    "producttype": "TYPE_HR",
    "pkfg": "11069164"
}
example:

mime-type: application/json, text/json

{
    "token": "a1s2d3f4g5h6j7k8l9",
    "producttype": "TYPE_HR",
    "pkfg": "11069164"
}

Response

Schema: GET https://v7.fb-vertragscheck.fb-preview.de/external/productselector/getpkfginfo/response/schema


property description options
[ status ] * required
string
Status des Aufrufs
OK: Anfrage erfolgreich
ERROR: Anfrage verlief fehlerhaft
[ errors ]
array
Aufgetretene Fehler (Wird nur bei "status: ERROR" gefüllt!

array
Informationen zur Produktkonfiguration
property description options
pkfginfo[ pkfg ]
integer
Produktkonfigurations-ID
pkfginfo[ company ]
string
Name der Gesellschaft
pkfginfo[ year ]
integer
Jahr
pkfginfo[ is_current ]
integer
Produkt ist aktuell
Value Label
0 nicht aktuell
1 aktuell

array
property description options
products[ pkfg ]
integer
Produktkonfigurations-ID
products[ product_id ]
integer
Interne ID des Produktes
products[ product_version ]
integer
Version des Produktes
products[ product_id_version ]
string
ID und Version des Produktes
products[ product ]
string
Name des Produktes
products[ productname ]
string
Tarifbezeichnung
products[ description ]
string
Beschreibung der Konfiguration
products[ level ]
integer
Produkt liegt auf dieser Ebene in der Hierarchie
products[ year ]
integer
Jahr
products[ is_current ]
boolean
Produkt ist aktuell
Value Label
false nicht aktuell
true aktuell
products[ is_option ]
boolean
Produkt ist eine Option zum Hauptprodukt
example:

mime-type: application/json, text/json

{
    "status": "OK",
    "errors": [
        "Bitte geben Sie eine gültige Produktkonfigurations-ID ein."
    ],
    "pkfginfo": [
        {
            "pkfg": 11069164,
            "company": "Allianz LV",
            "year": 2016,
            "is_current": 1,
            "products": [
                {
                    "pkfg": 11069164,
                    "product_id": 25254,
                    "product_version": 17,
                    "product_id_version": "25254_17",
                    "product": "BasisRente Klassik mit Beitragsrückzahlung in Rentenform Tarif BVR2 (E 400) Zert.nr. 6033 Stand 12.2016",
                    "productname": "BasisRente Klassik mit Beitragsrückzahlung in Rentenform BVR2",
                    "description": "Selbstständige Berufsunfähigkeitsversicherung",
                    "level": 2,
                    "year": 2016,
                    "is_current": true,
                    "is_option": false
                }
            ]
        }
    ]
}