Wrapper for BPJS Indonesia

Installs: 143

Dependents: 0

Suggesters: 0

Security: 0

Stars: 6

Watchers: 1

Forks: 4

Open Issues: 0

Type:package

V1.6.2 2024-04-12 13:38 UTC

This package is auto-updated.

Last update: 2024-09-12 14:35:00 UTC


README

This Package clone from nsulistiyawan/bpjs under maintenance.

PHP package to access BPJS Kesehatan API 🚑. This package is a wrapper of BPJS VClaim Web Service https://dvlp.bpjs-kesehatan.go.id/VClaim-Katalog

Installation 🔥

composer require mbahmario/bpjs

Example Usage 🎊

//use your own bpjs config
$vclaim_conf = [
    'cons_id' => '123456',
    'secret_key' => '123456',
    'base_url' => 'https://dvlp.bpjs-kesehatan.go.id',
    'service_name' => 'vclaim-rest'
];

// use Referensi service
// https://dvlp.bpjs-kesehatan.go.id/VClaim-Katalog/Referensi

$referensi = new Mbahmario\Bpjs\VClaim\Referensi($vclaim_conf);
var_dump($referensi->diagnosa('A00'));

//use Peserta service
//https://dvlp.bpjs-kesehatan.go.id/VClaim-Katalog/Peserta

$peserta = new \Mbahmario\Bpjs\VClaim\Peserta($vclaim_conf);
var_dump($peserta->getByNoKartu('123456789','2018-09-16'));

Supported Services (WIP) 🚀

  • Referensi
  • Peserta
  • SEP
  • Rujukan
  • Lembar Pengajuan Klaim
  • Monitoring
  • Aplicare

Contributions 👌

Your contribution is always welcome!