onlineoffer/getproductstatus

Liefert allgemeine Informationen für die Onlinebeantragung zum gewählten Produkt.

Request

Endpoint: POST https://bankathon.fb-xpert.fb-preview.de/external/onlineoffer/getproductstatus

Schema: GET https://bankathon.fb-xpert.fb-preview.de/external/onlineoffer/getproductstatus/request/schema


property default description options
[ token ] * required
string
Ein gültiger Token für die Authentifizierung mit der Schnittstelle.
[ pkfg ] * required
string
Produktkonfiguriation nach der gesucht werden soll
example:

mime-type: application/json, text/json

{
    "token": "a1s2d3f4g5h6j7k8l9",
    "pkfg": "123456789"
}
example:

mime-type: application/json, text/json

{
    "token": "a1s2d3f4g5h6j7k8l9",
    "pkfg": "123456789"
}

Response

Schema: GET https://bankathon.fb-xpert.fb-preview.de/external/onlineoffer/getproductstatus/response/schema


property description options
[ status ] * required
string
Status des Aufrufs
OK: Anfrage erfolgreich
ERROR: Anfrage verlief fehlerhaft
[ errors ]
string[]
Aufgetretene Fehler (Wird nur bei "status: ERROR" gefüllt!
* required
object
Allgemeine Informationen
property description options
productstatus[ transfer_mode ] * required
string
Art der Übermittlung
Value Label
null Keine Beantragung möglich
transfer_mode_email E-Mail
transfer_mode_online Webservice
transfer_mode_dispatcher Webservice (Dispatcher)
productstatus[ need_subscribe ] * required
bool
Gibt an ob die Onlinebeantragung nur mit einer Unterschrift erfolgen kann.
productstatus[ can_change_email_to ] * required
bool
Gibt an ob der E-Mail Empfänger geändert werden kann.
productstatus[ can_change_subject ] * required
bool
Gibt an ob der E-Mail Betreff geändert werden kann.
productstatus[ can_change_body ] * required
bool
Gibt an ob der E-Mail Body geändert werden kann.
example:

mime-type: application/json, text/json

{
    "status": "OK",
    "errors": [
        "Bitte geben Sie eine gültige Telefonnummer ein."
    ],
    "productstatus": {
        "transfer_mode": "transfer_mode_email",
        "need_subscribe": true,
        "can_change_email_to": true,
        "can_change_subject": true,
        "can_change_body": true
    }
}