Bank

API BCA

Cek data rekening BCA pada database internal.

Request

GET https://cekid.fazonedigital.com/api/v1/check/bca?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/bca\n".$query;
$signature = hash_hmac('sha256', $canonical, $secret);