Bank

API BRI

Cek data rekening BRI pada database internal.

Request

GET https://www.cekid.fazonedigital.com/api/v1/check/bri?account_number=account_number 

Parameter

KeyLabelTypeRequired
account_numberNomor RekeningtextYes

Output

KeyLabelVisibility
account_nameNama Pemilikmember
account_numberNomor Rekeningmember
statusStatusmember

PHP Example

$timestamp = time();
$query = http_build_query(['account_number' => 'VALUE'], '', '&', PHP_QUERY_RFC3986);
$canonical = $timestamp."\nGET\n/api/v1/check/bri\n".$query;
$signature = hash_hmac('sha256', $canonical, $secret);