Schnittstelle:
Json
- Infos
- Allgemein
- Tabellen
- Fehlercodes
- Funktionen
- Transfer-Service
- • listPostbox
- • getPostbox
- • updatePostbox
- • importPostbox
- • listModule
- • startModule
- Extranet-Service
- • listExtranet
- • startExtranet
- • checkSession
- • saveRSAToken
- Partner-Service
- • getData
- • getChange
- • setChange
- Listen-Service
- • Enumerate
listModule
Die Funktion liefert ein indexiertes Array aller Gesellschaft die zum Abruf eingerichtet sind.
    
Request Beispiel
$UpdateParams = array(
    "APIData" => array(
        "_Security_Token_" => "vZHa8ChCkhjPG2l253zmgg80s6NdgkKRqiytY2Q4yN6vH5rMzVkVJMdswbmOlG5",
        "action" => 'listModule' //Name der Funktion
    )
);
$url = 'https://www.bipro-box.de/app/core/api/json/v1.0'; //URL vom BiPRO-Box-Server
$tmp = execCurl( json_encode( $UpdateParams ), $url ); //Wandelt das Array $UpdateParams in ein json um und startet den RequestResponse Beispiel
$data = json_decode( $tmp, true );
print_r( $data );
Array
(
    [function] => listExtranet
    [status] => success
    [error_code] => 0
    [count] => 2
    [module] => Array
        (
            [0] => Array
                (
                    [agencynumber] => 5445/1512112/33
                    [username] => dn@mr-money.de
                    [code] => neodigital
                    [name] => Neodigital AG
                )
            [1] => Array
                (
                    [agencynumber] =>
                    [username] => 8329455595
                    [code] => continentale
                    [name] => Continentale Versicherungsverbund
                )
        )
)