Files
FE_CPONE/test/vuex/sql_requests.http
2026-04-27 10:13:31 +07:00

63 lines
1.5 KiB
HTTP

@baseUrl = https://devcpone.aplikasi.web.id/one-api/summarymcu
@contentType = application/json
### ============================================================
### LIST CORPORATE
### ============================================================
POST {{baseUrl}}/sqlgenerator/list_mcu_corporate
Content-Type: application/json
{
"db_name": "cpone_corporate"
}
### ============================================================
### LIST PASIEN
### ============================================================
### List Pasien MCU by Kelainan
# Mengelompokkan pasien berdasarkan kelainan dari tabel kelainan_details
# dan menghitung total pasien untuk setiap kelainan.
### LIST PASIEN MCU
POST {{baseUrl}}/sqlgenerator/list_pasien_mcu
Content-Type: application/json
{
}
###
POST {{baseUrl}}/sqlgenerator/generate_count_kelainan
Content-Type: application/json
{}
###
POST {{baseUrl}}/sqlgenerator/total_pasien_mcu
Content-Type: application/json
{}
###
POST {{baseUrl}}/sqlgenerator/select_sepuluh_pasien
Content-Type: {{contentType}}
{
"pasien_id": "25308, 25353, 25386, 25396, 25399, 25407, 25441, 25462, 25465, 25267"
}
### ============================================================
### DATABASE DUMP
### ============================================================
### Dump Seluruh Database (Struktur & Data)
# Ganti nilai "db_name" dengan 'onedev', 'cpone_corporate', atau 'log'
POST {{baseUrl}}/sqlgenerator/dump_database_sql
Content-Type: {{contentType}}
{
"db_name": "cpone_corporate"
}