rating/getprofiles

rating_getprofiles_description

Request

Endpoint: POST https://v7.fb-vertragscheck.fb-preview.de/external/rating/getprofiles

Schema: GET https://v7.fb-vertragscheck.fb-preview.de/external/rating/getprofiles/request/schema


property default description options
[ token ] * required
string
Token zur Authentifizierung mit der Schnittstelle
[ producttype ] * required
string
Producttype für die die Profile abgefragt werden sollen
example:

mime-type: application/json, text/json

{
    "token": "a1s2d3f4g5h6j7k8l9",
    "producttype": "TYPE_BU"
}
example:

mime-type: application/json, text/json

{
    "token": "a1s2d3f4g5h6j7k8l9",
    "producttype": "TYPE_BU"
}

Response

Schema: GET https://v7.fb-vertragscheck.fb-preview.de/external/rating/getprofiles/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
Profile die mit dem aktuellen Benutzer verwendet werden können
property description options
profiles[ profile_id ]
int
Profil ID
profiles[ name ]
string
Profil-Name
profiles[ is_global ]
bool
Profil ist global
profiles[ is_default ]
bool
Profil ist default
profiles[ is_globaldefault ]
bool
Profil ist globaldefault
example:

mime-type: application/json, text/json

{
    "status": "OK",
    "errors": [
        "Bitte geben Sie eine gültige Telefonnummer ein."
    ],
    "profiles": [
        {
            "profile_id": 31,
            "name": "fb - Angestellte",
            "is_global": true,
            "is_default": true,
            "is_globaldefault": true
        }
    ]
}