Request
GET https://www.cekid.fazonedigital.com/api/v1/check/bni?account_number=account_number
Parameter
| Key | Label | Type | Required |
|---|---|---|---|
account_number | Nomor Rekening | text | Yes |
Output
| Key | Label | Visibility |
|---|---|---|
account_name | Nama Pemilik | member |
account_number | Nomor Rekening | member |
status | Status | member |
PHP Example
$timestamp = time();
$query = http_build_query(['account_number' => 'VALUE'], '', '&', PHP_QUERY_RFC3986);
$canonical = $timestamp."\nGET\n/api/v1/check/bni\n".$query;
$signature = hash_hmac('sha256', $canonical, $secret);