Skip to content

Instantly share code, notes, and snippets.

@muhammadyana
Created January 2, 2026 07:05
Show Gist options
  • Select an option

  • Save muhammadyana/415bf7b65371f31332ac89324c08a9d2 to your computer and use it in GitHub Desktop.

Select an option

Save muhammadyana/415bf7b65371f31332ac89324c08a9d2 to your computer and use it in GitHub Desktop.
hermina-authenticated-api
openapi: 3.1.0
x-stoplight:
id: k6y74gefyakdi
info:
title: authenticated-api
version: '1.0'
contact:
name: Muhammad Yana Mulyana
url: 'https://muhammadyana.me'
email: hi@muhammadyana.me
termsOfService: 'https://muhammadyana.me'
summary: Authenticated API
description: This API require user authentication
license:
name: ''
url: ''
servers:
- url: 'https://api.herminahospital.com/api/v1'
description: Staging
- url: 'https://api.herminahospitals.com/api/v1'
description: Production
paths:
/customer-feedbacks:
post:
summary: Submit customer feedback
operationId: post-customer-feedbacks
responses:
'200':
$ref: '#/components/responses/success-create-customer-feedback'
'422':
$ref: '#/components/responses/failure-create-customer-feedback'
x-stoplight:
id: et1xz6vrwvmaq
requestBody:
$ref: '#/components/requestBodies/customer-feedback-params'
tags:
- customer feedbacks
parameters: []
parameters:
- $ref: '#/components/parameters/Authorization'
/ask-doctors:
post:
summary: Ask doctors
operationId: post-ask-doctors
responses:
'200':
$ref: '#/components/responses/success-ask-doctor'
'422':
$ref: '#/components/responses/error-ask-doctors'
requestBody:
$ref: '#/components/requestBodies/ask-doctor-params'
parameters: []
x-stoplight:
id: 62ajyik4f55g2
tags:
- ask doctors
parameters:
- $ref: '#/components/parameters/Authorization'
get:
summary: Get account ask doctors
tags:
- ask doctors
responses:
'200':
$ref: '#/components/responses/ask-doctors'
operationId: get-ask-doctors
x-stoplight:
id: 4597jmhu4l6h4
parameters:
- $ref: ./public-api.yaml#/components/parameters/page
- $ref: ./public-api.yaml#/components/parameters/per_page
- $ref: ./public-api.yaml#/components/parameters/query
'/ask-doctors/{slug}':
parameters:
- schema:
type: string
name: slug
in: path
required: true
- name: Authorization
in: header
schema:
type: string
default: Bearer eyJhY2Nlc3MtdG9rZW4iOiIyM0luZVJDZ0NENi1jYXJRdktoRXF3IiwidG9rZW4tdHlwZSI6IkJlYXJlciIsImNsaWVudCI6ImtyVWp2dFA2U1NmaWpUbkJCdlNoc0EiLCJleHBpcnkiOiIxNzQ0MTMzODIyIiwidWlkIjoiMTExNjY4NzIwMDUzMDY0NjQ4OTc4In0=
description: Bearer token
required: true
get:
summary: Show account ask doctors
tags:
- ask doctors
responses:
'200':
$ref: '#/components/responses/ask-doctor'
'404':
$ref: '#/components/responses/not-found'
operationId: show-ask-doctors
x-stoplight:
id: 861d0lcjr7hs1
/profiles/check-patient:
post:
summary: Check patient data SIMRS
tags:
- profiles
responses:
'200':
$ref: '#/components/responses/check-patient-data-simrs'
'404':
description: Not Found
content:
application/json:
schema:
type: object
properties:
success:
type: boolean
code:
type: integer
status:
type: string
message:
type: string
x-examples:
Example 1:
success: false
code: 404
status: Resource not found
message: 'Patient not registered yet, please continue to registration page'
examples:
Example:
value:
success: false
code: 404
status: Resource not found
message: 'Patient not registered yet, please continue to registration page'
'406':
description: Not Acceptable
content:
application/json:
schema:
type: object
properties:
success:
type: boolean
code:
type: integer
status:
type: string
message:
type: string
x-examples:
Example 1:
success: false
code: 404
status: Resource not found
message: 'Patient not registered yet, please continue to registration page'
examples:
Example 1:
value:
success: false
code: 406
status: Not acceptable
message: 'NIK and DOB has already registered in your account, please continue to verification page'
'409':
description: Conflict
content:
application/json:
schema:
type: object
properties:
success:
type: boolean
code:
type: integer
status:
type: string
message:
type: string
x-examples:
Example 1:
success: false
code: 409
status: Resource not found
message: 'Patient not registered yet, please continue to registration page'
examples:
Example 1:
value:
success: false
code: 409
status: Resource conflict
message: NIK 123123213424324 & date of birth 07-04-1994 has already registered in vznarapati@gmail.com
operationId: post-profiles-check-patient
x-stoplight:
id: exq03rz1gqnum
parameters: []
requestBody:
content:
application/json:
schema:
type: object
properties:
dob:
type: string
nik:
type: string
x-examples:
Example 1:
dob: '1994-04-07'
nik: '1671080704940008'
examples:
Example 1:
value:
dob: '1994-04-07'
nik: '1671080704940008'
parameters:
- $ref: '#/components/parameters/Authorization'
'/profiles/{profile_id}/generate-otp':
post:
summary: Generate and sent otp to whatsapp
tags:
- profiles
responses:
'200':
$ref: '#/components/responses/success-generate-otp'
'422':
$ref: '#/components/responses/failed-send-otp'
operationId: generate-otp
parameters: []
requestBody:
content:
application/json:
schema:
type: object
properties:
phone_number:
type: string
x-examples:
Example 1:
phone_number: '6285714757247'
examples:
Example 1:
value:
phone_number: '6285714757247'
description: 'phone_numbe must be start with `62` ex: 6285714757247'
x-stoplight:
id: 3hjmdpnbyc3kx
parameters:
- schema:
type: string
name: profile_id
in: path
required: true
- $ref: '#/components/parameters/Authorization'
'/profiles/{profile_id}/validate-otp':
post:
summary: validate otp or phone number
tags:
- profiles
responses:
'200':
$ref: '#/components/responses/valid-otp'
'403':
$ref: '#/components/responses/phone-already-verified'
'422':
$ref: '#/components/responses/invalid-otp'
operationId: generate-otp
parameters: []
requestBody:
content:
application/json:
schema:
type: object
x-examples:
Example 1:
phone_number: '6285714757247'
properties:
otp:
type: string
x-stoplight:
id: sw0weun5gzbfk
examples:
Example 1:
value:
otp: '1122'
description: ''
x-stoplight:
id: cngwwnqoe1vkh
parameters:
- schema:
type: string
name: profile_id
in: path
required: true
- $ref: '#/components/parameters/Authorization'
'/profiles/{profile_id}/insurances':
post:
summary: Add profile insurance
tags:
- profiles
responses:
'200':
$ref: '#/components/responses/success-create-profile-insurance'
'400':
description: |-
```json
{
"success": false,
"code": 400,
"status": "Bad request",
"message": "Insurance must exist and Policy number can't be blank"
}
```
content:
application/json:
schema:
type: object
properties:
success:
type: boolean
code:
type: integer
status:
type: string
message:
type: string
x-examples:
Example 1:
success: false
code: 400
status: Bad request
message: Insurance must exist and Policy number can't be blank
examples:
Example 1:
value:
success: false
code: 400
status: Bad request
message: Insurance must exist and Policy number can't be blank
operationId: generate-otp
parameters: []
requestBody:
$ref: '#/components/requestBodies/insurances-params'
x-stoplight:
id: 3p49fg7q5vran
parameters:
- schema:
type: string
name: profile_id
in: path
required: true
- schema:
type: string
name: profile_id
in: path
required: true
- schema:
type: string
name: profile_id
in: path
required: true
- $ref: '#/components/parameters/Authorization'
get:
summary: Get profile insurances
tags:
- profiles
responses:
'200':
$ref: '#/components/responses/profile-insurances'
operationId: get-profiles-profile_id-insurances
x-stoplight:
id: xehsfc8tmhr8f
description: 'For show insurance the path is same but please add ID in the end paramateres, examnple `/api/v1/profiles/7/insurances/14`'
'/profiles/{profile_id}/insurances/{id}':
parameters:
- schema:
type: string
name: profile_id
in: path
required: true
- schema:
type: string
name: id
in: path
required: true
- schema:
type: string
name: profile_id
in: path
required: true
- schema:
type: string
name: id
in: path
required: true
- schema:
type: string
name: profile_id
in: path
required: true
- schema:
type: string
name: profile_id
in: path
required: true
- schema:
type: string
name: profile_id
in: path
required: true
- schema:
type: string
name: id
in: path
required: true
- $ref: '#/components/parameters/Authorization'
get:
description: ''
summary: Show profile insurance
responses:
'200':
$ref: '#/components/responses/profile-insurances'
tags:
- profiles
- insurances
put:
summary: Update profile insurance
tags:
- profiles
- insurances
responses:
'200':
$ref: '#/components/responses/profile-insurance'
operationId: put-profiles-profile_id-insurances-id
x-stoplight:
id: da0p8gel5eqac
requestBody:
$ref: '#/components/requestBodies/insurances-params'
delete:
summary: Delete profile insurance
tags:
- profiles
- insurances
responses:
'200':
$ref: '#/components/responses/profile-insurance'
'404':
$ref: '#/components/responses/not-found'
operationId: delete-profiles-profile_id-insurances-id
x-stoplight:
id: p4cnao7zco5sn
/appointments:
post:
summary: Create appointment
tags:
- appointments
responses:
'200':
description: OK
content:
application/json:
schema:
type: object
properties:
success:
type: boolean
code:
type: integer
status:
type: string
message:
type: string
data:
type: object
properties:
id:
type: string
type:
type: string
attributes:
type: object
properties:
id:
type: integer
date:
type: string
email:
type: string
dob:
type: string
name:
type: string
mobile_phone:
type: string
is_bpjs:
type: boolean
old_patient:
type: boolean
slug:
type: string
status:
type: string
time:
type: 'null'
created_at:
type: string
updated_at:
type: string
account_id:
type: integer
profile_id:
type: integer
doctor_id:
type: integer
hospital_id:
type: integer
queue_number:
type: 'null'
appointment_time:
type: 'null'
estimation_time:
type: 'null'
notes:
type: 'null'
schedule_type:
type: 'null'
hospital_name:
type: string
doctor_name:
type: string
metadata:
type: object
properties:
simrs_data:
type: object
properties:
branchid:
type: string
eventid:
type: string
no_mrn:
type: string
unit_name:
type: string
doctor_name:
type: string
estimation:
type: string
booking_code:
type: string
queue_no:
type: integer
keterangan:
type: string
x-examples:
Example 1:
success: true
code: 200
status: Success
message: OK
data:
id: '80'
type: appointment
attributes:
id: 80
date: '2025-05-15T00:00:00.000+07:00'
email: asa@as
dob: '2010-10-06'
name: Imam Muttaqien
mobile_phone: '6281221344848'
is_bpjs: false
old_patient: false
slug: 871d82f6-c85b-4625-afc5-56d7dfad6723
status: unconfirmed
time: null
created_at: '2024-05-24T14:56:28.286+07:00'
updated_at: '2024-05-24T14:56:28.286+07:00'
account_id: 14
profile_id: 145
doctor_id: 185
hospital_id: 1
queue_number: null
appointment_time: null
estimation_time: null
notes: null
schedule_type: null
hospital_name: Hermina Jatinegara
doctor_name: Dea Ramadanti
metadata:
simrs_data:
branchid: '104'
eventid: '19954564'
no_mrn: '1150232908'
unit_name: Spesialis Kedokteran Fisik & Rehabilitasi Medik Eksekutif
doctor_name: 'dr. Tirza Z Tamin, Sp.KFR '
estimation: '05 Jun 2024 19:00:00'
booking_code: 11502329080L2024-00-050L104
queue_no: 1
keterangan: Harap datang 30 menit sebelum waktu pelayanan sudah berada di poli.
examples:
Example 1:
value:
success: true
code: 200
status: Success
message: OK
data:
id: '80'
type: appointment
attributes:
id: 80
date: '2025-05-15T00:00:00.000+07:00'
email: asa@as
dob: '2010-10-06'
name: Imam Muttaqien
mobile_phone: '6281221344848'
is_bpjs: false
old_patient: false
slug: 871d82f6-c85b-4625-afc5-56d7dfad6723
status: unconfirmed
time: null
created_at: '2024-05-24T14:56:28.286+07:00'
updated_at: '2024-05-24T14:56:28.286+07:00'
account_id: 14
profile_id: 145
doctor_id: 185
hospital_id: 1
queue_number: null
appointment_time: null
estimation_time: null
notes: null
schedule_type: null
hospital_name: Hermina Jatinegara
doctor_name: Dea Ramadanti
metadata:
simrs_data:
branchid: '104'
eventid: '19954564'
no_mrn: '1150232908'
unit_name: Spesialis Kedokteran Fisik & Rehabilitasi Medik Eksekutif
doctor_name: 'dr. Tirza Z Tamin, Sp.KFR '
estimation: '05 Jun 2024 19:00:00'
booking_code: 11502329080L2024-00-050L104
queue_no: 1
keterangan: Harap datang 30 menit sebelum waktu pelayanan sudah berada di poli.
operationId: post-appointments
x-stoplight:
id: mlehxlrcr3y05
requestBody:
$ref: '#/components/requestBodies/appointment'
parameters: []
post - copy:
summary: Create appointment
tags:
- appointments
responses:
'200':
description: OK
content:
application/json:
schema:
type: object
properties:
success:
type: boolean
code:
type: integer
status:
type: string
message:
type: string
data:
type: object
properties:
id:
type: string
type:
type: string
attributes:
type: object
properties:
id:
type: integer
date:
type: string
email:
type: string
dob:
type: string
name:
type: string
mobile_phone:
type: string
is_bpjs:
type: boolean
old_patient:
type: boolean
slug:
type: string
status:
type: string
time:
type: 'null'
created_at:
type: string
updated_at:
type: string
account_id:
type: integer
profile_id:
type: integer
doctor_id:
type: integer
hospital_id:
type: integer
queue_number:
type: 'null'
appointment_time:
type: 'null'
estimation_time:
type: 'null'
notes:
type: 'null'
schedule_type:
type: 'null'
hospital_name:
type: string
doctor_name:
type: string
metadata:
type: object
properties:
simrs_data:
type: object
properties:
branchid:
type: string
eventid:
type: string
no_mrn:
type: string
unit_name:
type: string
doctor_name:
type: string
estimation:
type: string
booking_code:
type: string
queue_no:
type: integer
keterangan:
type: string
x-examples:
Example 1:
success: true
code: 200
status: Success
message: OK
data:
id: '80'
type: appointment
attributes:
id: 80
date: '2025-05-15T00:00:00.000+07:00'
email: asa@as
dob: '2010-10-06'
name: Imam Muttaqien
mobile_phone: '6281221344848'
is_bpjs: false
old_patient: false
slug: 871d82f6-c85b-4625-afc5-56d7dfad6723
status: unconfirmed
time: null
created_at: '2024-05-24T14:56:28.286+07:00'
updated_at: '2024-05-24T14:56:28.286+07:00'
account_id: 14
profile_id: 145
doctor_id: 185
hospital_id: 1
queue_number: null
appointment_time: null
estimation_time: null
notes: null
schedule_type: null
hospital_name: Hermina Jatinegara
doctor_name: Dea Ramadanti
metadata:
simrs_data:
branchid: '104'
eventid: '19954564'
no_mrn: '1150232908'
unit_name: Spesialis Kedokteran Fisik & Rehabilitasi Medik Eksekutif
doctor_name: 'dr. Tirza Z Tamin, Sp.KFR '
estimation: '05 Jun 2024 19:00:00'
booking_code: 11502329080L2024-00-050L104
queue_no: 1
keterangan: Harap datang 30 menit sebelum waktu pelayanan sudah berada di poli.
examples:
Example 1:
value:
success: true
code: 200
status: Success
message: OK
data:
id: '80'
type: appointment
attributes:
id: 80
date: '2025-05-15T00:00:00.000+07:00'
email: asa@as
dob: '2010-10-06'
name: Imam Muttaqien
mobile_phone: '6281221344848'
is_bpjs: false
old_patient: false
slug: 871d82f6-c85b-4625-afc5-56d7dfad6723
status: unconfirmed
time: null
created_at: '2024-05-24T14:56:28.286+07:00'
updated_at: '2024-05-24T14:56:28.286+07:00'
account_id: 14
profile_id: 145
doctor_id: 185
hospital_id: 1
queue_number: null
appointment_time: null
estimation_time: null
notes: null
schedule_type: null
hospital_name: Hermina Jatinegara
doctor_name: Dea Ramadanti
metadata:
simrs_data:
branchid: '104'
eventid: '19954564'
no_mrn: '1150232908'
unit_name: Spesialis Kedokteran Fisik & Rehabilitasi Medik Eksekutif
doctor_name: 'dr. Tirza Z Tamin, Sp.KFR '
estimation: '05 Jun 2024 19:00:00'
booking_code: 11502329080L2024-00-050L104
queue_no: 1
keterangan: Harap datang 30 menit sebelum waktu pelayanan sudah berada di poli.
operationId: post-appointments
requestBody:
$ref: '#/components/requestBodies/appointment'
parameters: []
parameters:
- $ref: '#/components/parameters/Authorization'
get:
summary: List of Appointments
tags:
- appointments
responses:
'200':
$ref: '#/components/responses/appointments'
operationId: get-appointments
x-stoplight:
id: 7s2vv5xig6gf1
get - copy:
summary: List of Appointments
tags: []
responses:
'200':
$ref: '#/components/responses/appointments'
operationId: get-appointments
'/appointments/{slug}':
parameters:
- $ref: ./public-api.yaml#/components/parameters/slug
- $ref: '#/components/parameters/Authorization'
get:
summary: Appointment detail
tags:
- appointments
responses:
'200':
$ref: '#/components/responses/appointment'
operationId: get-appointment
x-stoplight:
id: bxtgji1tlyyho
get - copy:
summary: List of Appointments
tags: []
responses:
'200':
$ref: '#/components/responses/appointments'
operationId: get-appointments
'/appointments/{slug}/cancel':
parameters:
- schema:
type: string
name: slug
in: path
required: true
- $ref: '#/components/parameters/Authorization'
post:
summary: Cancel Appointment
tags:
- appointments
responses:
'200':
description: OK
content:
application/json:
schema:
type: object
properties:
success:
type: boolean
code:
type: integer
status:
type: string
message:
type: string
data:
type: object
properties:
id:
type: string
type:
type: string
attributes:
type: object
properties:
id:
type: integer
date:
type: string
email:
type: string
dob:
type: string
name:
type: string
profile_gender:
type: string
profile_nik:
type: string
mobile_phone:
type: string
is_bpjs:
type: boolean
old_patient:
type: boolean
slug:
type: string
status:
type: string
old_patient?:
type: boolean
time:
type: string
created_at:
type: string
account_id:
type: integer
profile_id:
type: integer
doctor_id:
type: integer
hospital_id:
type: integer
queue_number:
type: 'null'
appointment_time:
type: 'null'
estimation_time:
type: 'null'
notes:
type: string
schedule_type:
type: string
hospital_name:
type: string
hospital_logo:
type: object
properties:
url:
type: string
thumb:
type: object
properties:
url:
type: string
doctor_name:
type: string
doctor_avatar:
type: object
properties:
url:
type: string
thumb:
type: object
properties:
url:
type: string
metadata:
type: object
properties:
simrs_data:
type: object
properties:
no_mrn:
type: string
eventid:
type: string
branchid:
type: string
queue_no:
type: integer
unit_name:
type: string
estimation:
type: string
keterangan:
type: string
doctor_name:
type: string
booking_code:
type: string
x-examples:
Example 1:
success: true
code: 200
status: Success
message: Your appointment has been cancelled
data:
id: '83'
type: appointment
attributes:
id: 83
date: '2025-06-17T00:00:00.000+07:00'
email: imam@gmail.com
dob: '2010-10-06'
name: Imam Muttaqien
profile_gender: Laki-Laki
profile_nik: '1987624370982345'
mobile_phone: '6281221344848'
is_bpjs: false
old_patient: false
slug: 75cd7ae4-a710-4fc5-873e-d91e1e222400
status: cancelled
old_patient?: false
time: '19:00-21:00'
created_at: '2024-05-30T21:55:28.272+07:00'
account_id: 14
profile_id: 145
doctor_id: 185
hospital_id: 1
queue_number: null
appointment_time: null
estimation_time: null
notes: Ada RS yg lebih bagus pelayanannya
schedule_type: executive
hospital_name: Hermina Jatinegara
hospital_logo:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/hospital/logo/1/icon-hermina.png'
thumb:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/hospital/logo/1/thumb_icon-hermina.png'
doctor_name: Dea Ramadanti
doctor_avatar:
url: 'https://hermina.s3-ap-southeast-1.amazonaws.com/assets/images/user.svg'
thumb:
url: 'https://hermina.s3-ap-southeast-1.amazonaws.com/assets/images/user.svg'
metadata:
simrs_data:
no_mrn: '1150232908'
eventid: '19954564'
branchid: '104'
queue_no: 1
unit_name: Spesialis Kedokteran Fisik & Rehabilitasi Medik Eksekutif
estimation: '05 Jun 2024 19:00:00'
keterangan: Harap datang 30 menit sebelum waktu pelayanan sudah berada di poli.
doctor_name: 'dr. Tirza Z Tamin, Sp.KFR '
booking_code: 11502329080L2024-00-050L104
examples:
Example 1:
value:
success: true
code: 200
status: Success
message: Your appointment has been cancelled
data:
id: '83'
type: appointment
attributes:
id: 83
date: '2025-06-17T00:00:00.000+07:00'
email: imam@gmail.com
dob: '2010-10-06'
name: Imam Muttaqien
profile_gender: Laki-Laki
profile_nik: '1987624370982345'
mobile_phone: '6281221344848'
is_bpjs: false
old_patient: false
slug: 75cd7ae4-a710-4fc5-873e-d91e1e222400
status: cancelled
old_patient?: false
time: '19:00-21:00'
created_at: '2024-05-30T21:55:28.272+07:00'
account_id: 14
profile_id: 145
doctor_id: 185
hospital_id: 1
queue_number: null
appointment_time: null
estimation_time: null
notes: Ada RS yg lebih bagus pelayanannya
schedule_type: executive
hospital_name: Hermina Jatinegara
hospital_logo:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/hospital/logo/1/icon-hermina.png'
thumb:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/hospital/logo/1/thumb_icon-hermina.png'
doctor_name: Dea Ramadanti
doctor_avatar:
url: 'https://hermina.s3-ap-southeast-1.amazonaws.com/assets/images/user.svg'
thumb:
url: 'https://hermina.s3-ap-southeast-1.amazonaws.com/assets/images/user.svg'
metadata:
simrs_data:
no_mrn: '1150232908'
eventid: '19954564'
branchid: '104'
queue_no: 1
unit_name: Spesialis Kedokteran Fisik & Rehabilitasi Medik Eksekutif
estimation: '05 Jun 2024 19:00:00'
keterangan: Harap datang 30 menit sebelum waktu pelayanan sudah berada di poli.
doctor_name: 'dr. Tirza Z Tamin, Sp.KFR '
booking_code: 11502329080L2024-00-050L104
operationId: cancel-appointment
x-stoplight:
id: sohyh0osza7y0
requestBody:
content:
application/json:
schema:
type: object
properties:
notes:
type: string
x-examples:
Example 1:
notes: Ada RS yg lebih bagus pelayanannya
examples:
Example 1:
value:
notes: Ingin mengubah jadwal
'/appointments/{slug}/encounter':
parameters:
- schema:
type: string
name: slug
in: path
required: true
- $ref: '#/components/parameters/Authorization'
post:
summary: Encounter Appointment
tags:
- appointments
responses:
'200':
description: OK
content:
application/json:
schema:
type: object
properties:
success:
type: boolean
code:
type: integer
status:
type: string
message:
type: string
data:
type: object
properties:
id:
type: string
type:
type: string
attributes:
type: object
properties:
id:
type: integer
date:
type: string
email:
type: string
dob:
type: string
name:
type: string
profile_gender:
type: string
profile_nik:
type: 'null'
mobile_phone:
type: string
is_bpjs:
type: boolean
old_patient:
type: boolean
slug:
type: string
status:
type: string
old_patient?:
type: boolean
time:
type: string
created_at:
type: string
account_id:
type: integer
profile_id:
type: integer
doctor_id:
type: integer
hospital_id:
type: integer
queue_number:
type: 'null'
appointment_time:
type: string
estimation_time:
type: 'null'
notes:
type: 'null'
schedule_type:
type: string
hospital_name:
type: string
hospital_logo:
type: object
properties:
url:
type: string
thumb:
type: object
properties:
url:
type: string
doctor_name:
type: string
doctor_avatar:
type: object
properties:
url:
type: string
thumb:
type: object
properties:
url:
type: string
metadata:
type: object
properties:
simrs_data:
type: object
properties:
encounter_id:
type: string
date_appointment:
type: string
patient_name:
type: string
MRN:
type: string
doctor_code:
type: string
doctor_name:
type: string
unit_name:
type: string
department_name:
type: string
branch:
type: integer
eventid:
type: integer
queueno:
type: integer
estimasi_time:
type: string
third_party:
type: string
noted:
type: string
visitid:
type: string
x-examples:
Example 1:
success: true
code: 200
status: OK
message: Your appointment has been checked in
data:
id: '57'
type: appointment
attributes:
id: 57
date: '2022-06-06T00:00:00.000+07:00'
email: muhammadyanaa@gmail.com
dob: '1993-09-21'
name: Muhammad Yana Mulyana
profile_gender: Male
profile_nik: null
mobile_phone: '6281221344848'
is_bpjs: false
old_patient: false
slug: eb07bd0b-e60d-44ec-af7a-ea8f0b90513b
status: checked_in
old_patient?: false
time: '13:00 - 14:00'
created_at: '2022-06-03T23:38:11.666+07:00'
account_id: 14
profile_id: 14
doctor_id: 179
hospital_id: 31
queue_number: null
appointment_time: 'Monday - 13:00 - 14:00'
estimation_time: null
notes: null
schedule_type: executive
hospital_name: Hermina Padang
hospital_logo:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/hospital/logo/31/RS-Hermina-Padang-1024x712.jpg'
thumb:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/hospital/logo/31/thumb_RS-Hermina-Padang-1024x712.jpg'
doctor_name: malika
doctor_avatar:
url: 'https://hermina.s3-ap-southeast-1.amazonaws.com/assets/images/user.svg'
thumb:
url: 'https://hermina.s3-ap-southeast-1.amazonaws.com/assets/images/user.svg'
metadata:
simrs_data:
encounter_id: '10361255'
date_appointment: 'Oct 27, 2023 7:06:00 PM'
patient_name: MUHAMMAD GHIBRAN HAFIT
MRN: '1350016825'
doctor_code: 104201015SP
doctor_name: 'Tirza Z Tamin, Sp.KFR'
unit_name: Spesialis Kedokteran Fisik & Rehabilitasi Medik Eksekutif
department_name: Kedokteran Fisik dan Rehabilitasi Medik
branch: 104
eventid: 13931016
queueno: 2
estimasi_time: '19:06-19:11'
third_party: 'ASURANSI ASTRA BUANA, PT'
noted: 'Silahkan Lengkapi Informasi Penjaminan Anda, Hubungi Bagian Pendaftaran'
visitid: '18764958'
examples:
Example 1:
value:
success: true
code: 200
status: OK
message: Your appointment has been checked in
data:
id: '57'
type: appointment
attributes:
id: 57
date: '2022-06-06T00:00:00.000+07:00'
email: muhammadyanaa@gmail.com
dob: '1993-09-21'
name: Muhammad Yana Mulyana
profile_gender: Male
profile_nik: null
mobile_phone: '6281221344848'
is_bpjs: false
old_patient: false
slug: eb07bd0b-e60d-44ec-af7a-ea8f0b90513b
status: checked_in
old_patient?: false
time: '13:00 - 14:00'
created_at: '2022-06-03T23:38:11.666+07:00'
account_id: 14
profile_id: 14
doctor_id: 179
hospital_id: 31
queue_number: null
appointment_time: 'Monday - 13:00 - 14:00'
estimation_time: null
notes: null
schedule_type: executive
hospital_name: Hermina Padang
hospital_logo:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/hospital/logo/31/RS-Hermina-Padang-1024x712.jpg'
thumb:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/hospital/logo/31/thumb_RS-Hermina-Padang-1024x712.jpg'
doctor_name: malika
doctor_avatar:
url: 'https://hermina.s3-ap-southeast-1.amazonaws.com/assets/images/user.svg'
thumb:
url: 'https://hermina.s3-ap-southeast-1.amazonaws.com/assets/images/user.svg'
metadata:
simrs_data:
encounter_id: '10361255'
date_appointment: 'Oct 27, 2023 7:06:00 PM'
patient_name: MUHAMMAD GHIBRAN HAFIT
MRN: '1350016825'
doctor_code: 104201015SP
doctor_name: 'Tirza Z Tamin, Sp.KFR'
unit_name: Spesialis Kedokteran Fisik & Rehabilitasi Medik Eksekutif
department_name: Kedokteran Fisik dan Rehabilitasi Medik
branch: 104
eventid: 13931016
queueno: 2
estimasi_time: '19:06-19:11'
third_party: 'ASURANSI ASTRA BUANA, PT'
noted: 'Silahkan Lengkapi Informasi Penjaminan Anda, Hubungi Bagian Pendaftaran'
visitid: '18764958'
'403':
description: |-
Forbidden
```json
{
"success": false,
"code": 403,
"status": "Forbidden",
"message": "You can only check-in on your appointment day"
}
```
content:
application/json:
schema:
type: object
properties:
success:
type: boolean
code:
type: integer
status:
type: string
message:
type: string
x-examples:
Example 1:
success: false
code: 403
status: Forbidden
message: You can only check-in on your appointment day
examples:
Example 1:
value:
success: false
code: 403
status: Forbidden
message: You can only check-in on your appointment day
'422':
description: |-
There is an error from HIS
```json
{
"success": false,
"code": 422,
"status": "Unprocessable Content",
"message": "Unprocessable Content"
}
```
content:
application/json:
schema:
type: object
properties:
success:
type: boolean
code:
type: integer
status:
type: string
message:
type: string
x-examples:
Example 1:
success: false
code: 422
status: Unprocessable Content
message: Unprocessable Content
examples:
Example 1:
value:
success: false
code: 422
status: Unprocessable Content
message: Unprocessable Content
operationId: encounter-appointment
requestBody:
description: ''
x-stoplight:
id: fs1sm7rxucqao
'/doctors/{slug}/like':
parameters:
- schema:
type: string
name: slug
in: path
required: true
- schema:
type: string
name: slug
in: path
required: true
- $ref: '#/components/parameters/Authorization'
post:
summary: Like doctor
tags:
- doctors
responses:
'200':
$ref: '#/components/responses/success-like-doctor'
'422':
$ref: '#/components/responses/failed-like-doctor'
operationId: post-doctors-slug-like
x-stoplight:
id: g0ex0yxw1ukff
'/doctors/{slug}/feedbacks':
parameters:
- schema:
type: string
name: slug
in: path
required: true
- schema:
type: string
name: slug
in: path
required: true
- name: Authorization
in: header
schema:
type: string
default: Bearer eyJhY2Nlc3MtdG9rZW4iOiJoRUxnNjZQM2o0aFNTVFlkdjFKN2FRIiwidG9rZW4tdHlwZSI6IkJlYXJlciIsImNsaWVudCI6Ind5MTRCeHNHY29pNVI2LUszakxxbXciLCJleHBpcnkiOiIxNzUwODE5NDk1IiwidWlkIjoiMTExNjY4NzIwMDUzMDY0NjQ4OTc4In0=
description: Bearer token
required: true
post:
summary: Submit Doctor's feedback
tags:
- doctors
responses:
'200':
$ref: '#/components/responses/succees-doctors-feedback'
operationId: post-doctors-slug-feedback
x-stoplight:
id: j01ccadeh33px
requestBody:
description: |-
```json
{
"feedback": "Assertively brand backend outsourcing without covalent systems. Authoritatively productivate bleeding-edge technology for value-added deliverables. Energistically recaptiualize multifunctional ideas via turnkey."
}
```
content:
application/json:
schema:
type: object
properties:
feedback:
type: string
x-examples:
Example 1:
feedback: Assertively brand backend outsourcing without covalent systems. Authoritatively productivate bleeding-edge technology for value-added deliverables. Energistically recaptiualize multifunctional ideas via turnkey.
examples:
params:
value:
feedback: Assertively brand backend outsourcing without covalent systems. Authoritatively productivate bleeding-edge technology for value-added deliverables. Energistically recaptiualize multifunctional ideas via turnkey.
'/doctors/{slug}/unlike':
parameters:
- schema:
type: string
name: slug
in: path
required: true
- schema:
type: string
name: slug
in: path
required: true
- schema:
type: string
name: slug
in: path
required: true
delete:
summary: Unlike doctor
tags:
- doctors
responses:
'200':
$ref: '#/components/responses/success-unlike-doctor'
operationId: delete-doctors-slug-unlike
x-stoplight:
id: wj6flndv297tq
parameters:
- $ref: '#/components/parameters/Authorization'
/doctors/liked_doctors:
get:
summary: Get liked doctors
responses:
'200':
$ref: '#/components/responses/liked_doctors'
operationId: get-doctors-liked_doctors
x-stoplight:
id: eh9tuo5rxrax6
tags:
- doctors
parameters:
- $ref: '#/components/parameters/Authorization'
servers:
- url: 'https://api.staging.herminahospitals.com/api/v1'
description: staging
- url: 'https://api.herminahospitals.com/api/v1'
description: production
/addresses:
get:
summary: Get addresses
tags:
- addresses
responses:
'200':
$ref: '#/components/responses/addresses'
operationId: get-addresses
x-stoplight:
id: j05dcpkssbkxx
parameters:
- $ref: '#/components/parameters/Authorization'
post:
summary: Create address
tags:
- addresses
responses:
'201':
$ref: '#/components/responses/success-create-address'
'400':
$ref: '#/components/responses/failed-create-address'
operationId: post-addresses
x-stoplight:
id: 4js41mgk6d0c9
requestBody:
$ref: '#/components/requestBodies/address'
parameters:
- $ref: '#/components/parameters/Authorization'
parameters:
- $ref: '#/components/parameters/Authorization'
servers:
- url: 'https://api.staging.herminahospitals.com/api/v1'
description: staging
- url: 'https://api.herminahospitals.com/api/v1'
description: production
'/addresses/{id}':
parameters:
- schema:
type: string
name: id
in: path
required: true
- schema:
type: string
name: id
in: path
required: true
- schema:
type: string
name: id
in: path
required: true
- name: Authorization
in: header
required: false
schema:
type: string
description: Bearer token
servers:
- url: 'https://api.staging.herminahospitals.com/api/v1'
description: staging
- url: 'https://api.herminahospitals.com/api/v1'
description: production
delete:
summary: Delete address
tags:
- addresses
responses:
'200':
description: |-
```json
{
"success": true,
"code": 200,
"status": "Success",
"message": "Address deleted",
"data": [
{
"id": "118",
"type": "address",
"attributes": {
"id": 118,
"address": "Jl. Tubagus Ismail VIII No.11 A, Sekeloa, Kecamatan Coblong, Kota Bandung, Jawa Barat 40134, Indonesia",
"contact_name": "Muhammad Yana Mulyana",
"city": "Bandung",
"district": "Coblong",
"label": "Home",
"latitude": "-6.88417285407515",
"longitude": "107.62091653032",
"mobile_phone": "08571251757123",
"pin_location": "Jl. Tubagus Ismail VIII No.11 A",
"primary": true,
"province": "West Java",
"sub_district": "Sekeloa",
"zip_code": "40134"
}
},
{
"id": "117",
"type": "address",
"attributes": {
"id": 117,
"address": "Jl. Tubagus Ismail VIII No.11 A, Sekeloa, Kecamatan Coblong, Kota Bandung, Jawa Barat 40134, Indonesia",
"contact_name": "Muhammad Yana Mulyana",
"city": "Bandung",
"district": "Coblong",
"label": "Home",
"latitude": "-6.88417285407515",
"longitude": "107.62091653032",
"mobile_phone": "08571251757123",
"pin_location": "Jl. Tubagus Ismail VIII No.11 A",
"primary": true,
"province": "West Java",
"sub_district": "Sekeloa",
"zip_code": "40134"
}
}
]
}
```
content:
application/json:
schema:
type: object
properties:
success:
type: boolean
code:
type: integer
status:
type: string
message:
type: string
data:
type: array
items:
type: object
properties:
id:
type: string
type:
type: string
attributes:
type: object
properties:
id:
type: integer
address:
type: string
contact_name:
type: string
city:
type: string
district:
type: string
label:
type: string
latitude:
type: string
longitude:
type: string
mobile_phone:
type: string
pin_location:
type: string
primary:
type: boolean
province:
type: string
sub_district:
type: string
zip_code:
type: string
x-examples:
Example 1:
success: true
code: 200
status: Success
message: Address deleted
data:
- id: '118'
type: address
attributes:
id: 118
address: 'Jl. Tubagus Ismail VIII No.11 A, Sekeloa, Kecamatan Coblong, Kota Bandung, Jawa Barat 40134, Indonesia'
contact_name: Muhammad Yana Mulyana
city: Bandung
district: Coblong
label: Home
latitude: '-6.88417285407515'
longitude: '107.62091653032'
mobile_phone: '08571251757123'
pin_location: Jl. Tubagus Ismail VIII No.11 A
primary: true
province: West Java
sub_district: Sekeloa
zip_code: '40134'
- id: '117'
type: address
attributes:
id: 117
address: 'Jl. Tubagus Ismail VIII No.11 A, Sekeloa, Kecamatan Coblong, Kota Bandung, Jawa Barat 40134, Indonesia'
contact_name: Muhammad Yana Mulyana
city: Bandung
district: Coblong
label: Home
latitude: '-6.88417285407515'
longitude: '107.62091653032'
mobile_phone: '08571251757123'
pin_location: Jl. Tubagus Ismail VIII No.11 A
primary: true
province: West Java
sub_district: Sekeloa
zip_code: '40134'
examples:
Example 1:
value:
success: true
code: 200
status: Success
message: Address deleted
data:
- id: '118'
type: address
attributes:
id: 118
address: 'Jl. Tubagus Ismail VIII No.11 A, Sekeloa, Kecamatan Coblong, Kota Bandung, Jawa Barat 40134, Indonesia'
contact_name: Muhammad Yana Mulyana
city: Bandung
district: Coblong
label: Home
latitude: '-6.88417285407515'
longitude: '107.62091653032'
mobile_phone: '08571251757123'
pin_location: Jl. Tubagus Ismail VIII No.11 A
primary: true
province: West Java
sub_district: Sekeloa
zip_code: '40134'
- id: '117'
type: address
attributes:
id: 117
address: 'Jl. Tubagus Ismail VIII No.11 A, Sekeloa, Kecamatan Coblong, Kota Bandung, Jawa Barat 40134, Indonesia'
contact_name: Muhammad Yana Mulyana
city: Bandung
district: Coblong
label: Home
latitude: '-6.88417285407515'
longitude: '107.62091653032'
mobile_phone: '08571251757123'
pin_location: Jl. Tubagus Ismail VIII No.11 A
primary: true
province: West Java
sub_district: Sekeloa
zip_code: '40134'
operationId: delete-addresses-id
x-stoplight:
id: qncc26dx8decn
requestBody:
description: Shared Request
parameters:
- $ref: '#/components/parameters/Authorization'
put:
summary: Update address
tags:
- addresses
responses:
'200':
$ref: '#/components/responses/success-create-address'
operationId: put-addresses-id
x-stoplight:
id: huwnds9hixw4t
requestBody:
$ref: '#/components/requestBodies/address'
parameters:
- $ref: '#/components/parameters/Authorization'
'/profiles/{id}':
parameters:
- schema:
type: string
name: id
in: path
required: true
- schema:
type: string
name: id
in: path
required: true
- schema:
type: string
name: id
in: path
required: true
description: Profile id
- schema:
type: string
name: id
in: path
required: true
- $ref: '#/components/parameters/Authorization'
put:
summary: Update profile
tags:
- profiles
responses:
'200':
$ref: '#/components/responses/success-update-profile'
operationId: put-profiles-id
x-stoplight:
id: 7fgzfct8qhp10
requestBody:
$ref: '#/components/requestBodies/update-profile-params'
parameters:
- $ref: '#/components/parameters/Authorization'
servers:
- url: 'https://api.staging.herminahospitals.com/api/v1'
description: staging
delete:
summary: Delete profiles
tags:
- profiles
responses:
'200':
description: |-
```json
{
"success": true,
"code": 200,
"status": "OK",
"message": "Profile deleted"
}
```
content:
application/json:
schema:
type: object
properties:
success:
type: boolean
code:
type: integer
status:
type: string
message:
type: string
x-examples:
Example 1:
success: true
code: 200
status: OK
message: Profile deleted
examples:
Example 1:
value:
success: true
code: 200
status: OK
message: Profile deleted
operationId: delete-profiles-id
x-stoplight:
id: 64ijo99aeogo7
parameters:
- $ref: '#/components/parameters/Authorization'
get:
summary: Show profile
tags:
- profiles
responses:
'200':
$ref: '#/components/responses/profile'
'404':
$ref: '#/components/responses/not-found'
operationId: get-profiles-id
x-stoplight:
id: myz83kfqq9ig9
/profiles:
get:
summary: Get all profiles
tags:
- profiles
responses:
'200':
$ref: '#/components/responses/profiles'
operationId: get-profiles
x-stoplight:
id: umxdvykf1v5tn
parameters:
- $ref: '#/components/parameters/Authorization'
post:
summary: Create profile
tags:
- profiles
responses:
'201':
description: |-
```json
{
"success": true,
"code": 201,
"status": "Success",
"message": "Profile created",
"data": {
"id": "47",
"type": "profile",
"attributes": {
"id": 47,
"full_name": "Muhammad Abdussalam",
"avatar": {
"url": "https://hermina.s3.ap-southeast-1.amazonaws.com/assets/images/user.png",
"thumb": {
"url": "https://hermina.s3.ap-southeast-1.amazonaws.com/assets/images/user.png"
}
},
"blood_type": "A",
"nik": "1232134234324324",
"birth_place": "Bandung",
"date_of_birth": "2010-09-21",
"email": "salam@muhammadyana.me",
"marital_status": "single",
"mobile_phone": "243235434566",
"gender": "Male",
"simrs_data": {
"table": {
"success?": false,
"message": "Failed to process response"
}
},
"otp_sent_at": null,
"phone_verified": null,
"title": null,
"metadata": null,
"primary_profile": null
}
}
}
```
content:
application/json:
schema:
type: object
x-examples:
Example 1:
success: true
code: 201
status: Success
message: Profile created
data:
id: '47'
type: profile
attributes:
id: 47
full_name: Muhammad Abdussalam
avatar:
url: 'https://hermina.s3.ap-southeast-1.amazonaws.com/assets/images/user.png'
thumb:
url: 'https://hermina.s3.ap-southeast-1.amazonaws.com/assets/images/user.png'
blood_type: A
nik: '1232134234324324'
birth_place: Bandung
date_of_birth: '2010-09-21'
email: salam@muhammadyana.me
marital_status: single
mobile_phone: '243235434566'
gender: Male
simrs_data:
table:
success?: false
message: Failed to process response
otp_sent_at: null
phone_verified: null
title: null
metadata: null
primary_profile: null
properties:
success:
type: boolean
code:
type: integer
status:
type: string
message:
type: string
data:
type: object
properties:
id:
type: string
type:
type: string
attributes:
type: object
properties:
id:
type: integer
full_name:
type: string
avatar:
type: object
properties:
url:
type: string
thumb:
type: object
properties:
url:
type: string
blood_type:
type: string
nik:
type: string
birth_place:
type: string
date_of_birth:
type: string
email:
type: string
marital_status:
type: string
mobile_phone:
type: string
gender:
type: string
simrs_data:
type: object
properties:
table:
type: object
properties:
success?:
type: boolean
message:
type: string
otp_sent_at:
type:
- string
- 'null'
format: date-time
phone_verified:
type:
- boolean
- 'null'
title:
type:
- string
- 'null'
metadata:
type: 'null'
primary_profile:
type:
- boolean
- 'null'
examples:
Example 1:
value:
success: true
code: 201
status: Success
message: Profile created
data:
id: '47'
type: profile
attributes:
id: 47
full_name: Muhammad Abdussalam
avatar:
url: 'https://hermina.s3.ap-southeast-1.amazonaws.com/assets/images/user.png'
thumb:
url: 'https://hermina.s3.ap-southeast-1.amazonaws.com/assets/images/user.png'
blood_type: A
nik: '1232134234324324'
birth_place: Bandung
date_of_birth: '2010-09-21'
email: salam@muhammadyana.me
marital_status: single
mobile_phone: '243235434566'
gender: Male
simrs_data:
table:
success?: false
message: Failed to process response
otp_sent_at: null
phone_verified: null
title: null
metadata: null
primary_profile: null
operationId: post-profiles
x-stoplight:
id: o5d4ajf5wz6hb
requestBody:
description: |-
```json
{
"mobile_phone": "085714757241",
"email": "hi@muhammadyana.me",
"first_name": "Abu",
"last_name": "Ubaidah",
"nik": "3277030101900001",
"date_of_birth": "1990-01-01"
}
```
content:
application/json:
schema:
type: object
x-examples:
Example 1:
mobile_phone: '085714757241'
email: hi@muhammadyana.me
first_name: Abu
last_name: Ubaidah
nik: '3277030101900001'
dob: '1990-01-01'
blood_type: B
bpjs_number: '27836427842'
address: Bandung Jawa Barat Indonesia
birth_place: Bandung
gender: '1'
province_code: '655117'
district_code: '655554'
sub_district_code: '655995'
village_code: '662920'
province_name: BANTEN
district_name: MINAHASA TENGGARA
sub_district_name: GIRI MULIA
village_name: GULINGAN
rt: '01'
rw: '02'
religion: '350186'
marital_status: '350144'
residence_status: null
education: '354393'
occupation: '350148'
prefix: '655108'
required:
- mobile_phone
- email
- first_name
- nik
- date_of_birth
properties:
mobile_phone:
type: string
email:
type: string
first_name:
type: string
last_name:
type:
- string
- 'null'
nik:
type: string
date_of_birth:
type: string
format: date
x-stoplight:
id: u8feltr87811k
examples:
Example 1:
value:
mobile_phone: '085714757241'
email: hi@muhammadyana.me
first_name: Abu
last_name: Ubaidah
nik: '3277030101900001'
date_of_birth: '1990-01-01'
parameters:
- $ref: '#/components/parameters/Authorization'
/purchases:
get:
summary: Get purchases histories
tags:
- purchases
responses:
'200':
$ref: '#/components/responses/purchases'
operationId: get-purchases
x-stoplight:
id: q395029g4fi96
parameters:
- $ref: '#/components/parameters/Authorization'
- schema:
type: string
in: query
name: type
description: default type is `SupportService`
'/purchases/{slug}':
get:
summary: Show purchase
tags:
- purchases
responses:
'200':
description: Shared Response
operationId: show-purchase
parameters:
- $ref: '#/components/parameters/Authorization'
- schema:
type: string
in: query
name: type
description: default type is `SupportService`
x-stoplight:
id: twmi42fj16zp7
parameters:
- $ref: ./public-api.yaml#/components/parameters/slug
/events:
get:
summary: Upcoming events
tags:
- events
responses:
'200':
$ref: '#/components/responses/upcoming-events'
'401':
$ref: '#/components/responses/unauthorized'
operationId: get-upcoming-events
x-stoplight:
id: ewd6t7ffm0kiz
parameters:
- $ref: '#/components/parameters/Authorization'
/ehc/enrollments/verify:
post:
summary: Verify service order enrollment
tags:
- ehc
responses:
'200':
$ref: '#/components/responses/ehc-user-eligible'
'403':
$ref: '#/components/responses/ehc-participant-not-found'
'404':
$ref: '#/components/responses/ehc-profile-notfound'
'422':
description: |-
```json
{
"success": false,
"code": 422,
"status": "Unprocessable Content",
"message": "Missing required parameters: profile_id, service_package_id, and employee_id are required"
}
```
content:
application/json:
schema:
type: object
properties:
success:
type: boolean
code:
type: integer
status:
type: string
message:
type: string
x-examples:
Example 1:
success: false
code: 422
status: Unprocessable Content
message: 'Missing required parameters: profile_id, service_package_id, and employee_id are required'
examples:
Example 1:
value:
success: false
code: 422
status: Unprocessable Content
message: 'Missing required parameters: profile_id, service_package_id, and employee_id are required'
operationId: post-ehc-enrollments-verify
x-stoplight:
id: ovlx3l4aaydoi
requestBody:
content:
application/json:
schema:
type: object
properties:
profile_id:
type: integer
service_package_id:
type: integer
employee_id:
type: string
x-examples:
Example 1:
profile_id: 153
service_package_id: 3
employee_id: SH10212204
description: |-
```json
{
"profile_id": 153,
"service_package_id": 3,
"employee_id": "SH10212204"
}
```
/ehc/enrollments:
patch:
summary: Update service order enrollment
tags:
- ehc
responses:
'200':
$ref: '#/components/responses/ehc-user-eligible'
'403':
$ref: '#/components/responses/ehc-participant-not-found'
'404':
$ref: '#/components/responses/ehc-profile-notfound'
'422':
description: |-
```json
{
"success": false,
"code": 422,
"status": "Unprocessable Content",
"message": "Missing required parameters: profile_id, service_package_id, and employee_id are required"
}
```
content:
application/json:
schema:
type: object
properties:
success:
type: boolean
code:
type: integer
status:
type: string
message:
type: string
x-examples:
Example 1:
success: false
code: 422
status: Unprocessable Content
message: 'Missing required parameters: profile_id, service_package_id, and employee_id are required'
examples:
Example 1:
value:
success: false
code: 422
status: Unprocessable Content
message: 'Missing required parameters: profile_id, service_package_id, and employee_id are required'
operationId: patch-ehc-enrollments
requestBody:
content:
application/json:
schema:
type: object
x-examples:
Example 1:
profile_id: 153
service_package_id: 3
employee_id: SH10212204
hospital_id: 1
visit_date: '2025-11-25'
properties:
profile_id:
type: integer
service_package_id:
type: integer
employee_id:
type: string
hospital_id:
type: integer
visit_date:
type: string
format: date
examples:
Example 1:
value:
profile_id: 153
service_package_id: 3
employee_id: SH10212204
hospital_id: 1
visit_date: '2025-11-25'
description: |-
```json
{
"profile_id": 153,
"service_package_id": 3,
"employee_id": "SH10212204",
"hospital_id": 1,
"visit_date": "2025-11-25"
}
```
x-stoplight:
id: kc5jdmfimt0q0
parameters:
- $ref: '#/components/parameters/Authorization'
get:
summary: Get service order enrollments
tags:
- ehc
responses:
'200':
description: |-
```json
{
"success": true,
"code": 200,
"status": "OK",
"message": "OK",
"data": [
{
"id": "3",
"type": "service_order_participant",
"attributes": {
"id": 3,
"employment_id_number": "10212203",
"covered": true,
"result_enabled": true,
"status": "booked",
"visit_date": null,
"profile": {
"id": 14,
"full_name": "Muhammad Yana Mulyana",
"date_of_birth": "1993-09-21",
"email": "muhammadyanaa@gmail.com",
"avatar": {
"url": "https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/profile/avatar/14/unnamed.jpg",
"thumb": {
"url": "https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/profile/avatar/14/thumb_unnamed.jpg"
}
}
},
"service_order": {
"id": 1,
"order_name": "Batch 1",
"status": "draft",
"company_id": 16,
"participants_count": 4,
"start_date": null,
"end_date": "2026-03-26T07:00:00.000+07:00",
"service_package": {
"id": 3,
"name": "Layanan Dokter Pribadi",
"title": "Ayo segera beli",
"description": "<p>Conveniently generate high-quality models without client-based methodologies. Collaboratively visualize market-driven content through top-line metrics. Dramatically harness frictionless technology with plug-and-play web-readiness. Completely re-engineer progressive experiences with 24/7 vortals. Professionally transition premier e-business via client-focused solutions.</p>\r\n\r\n<p>Conveniently supply robust vortals without multimedia based methods of empowerment. Continually communicate interdependent networks and one-to-one methodologies. Distinctively pontificate one-to-one e-business before clicks-and-mortar niches. Conveniently harness state of the art total linkage before high-payoff partnerships. Credibly strategize top-line products before orthogonal networks.</p>\r\n\r\n<p>Appropriately fabricate best-of-breed functionalities whereas 2.0 core competencies. Compellingly drive timely processes without empowered outsourcing. Enthusiastically visualize magnetic internal or &quot;organic&quot; sources without stand-alone ROI. Globally benchmark turnkey ROI vis-a-vis front-end innovation. Synergistically underwhelm excellent systems with plug-and-play methodologies.</p>\r\n\r\n<p>Energistically impact user-centric strategic theme areas rather than distinctive infomediaries. Seamlessly incubate enabled architectures rather than worldwide internal or &quot;organic&quot; sources. Objectively redefine empowered platforms and maintainable markets. Rapidiously visualize prospective scenarios after maintainable methods of empowerment. Appropriately evolve cross-unit testing procedures and inexpensive process improvements.</p>\r\n\r\n<p>Distinctively actualize covalent value rather than parallel value. Conveniently re-engineer granular functionalities with effective synergy. Enthusiastically build.</p>\r\n",
"short_desc": " Conveniently generate high-quality models without client-based methodologies. Collaboratively visualize market-driven content through top-line metrics. Dramatically harness frictionless technology...",
"name_id": "Layanan Dokter Pribadi",
"name_en": "Layanan Dokter Pribadi",
"title_id": "Ayo segera beli",
"title_en": "Let's buy this package",
"desc_id": "<p>Conveniently generate high-quality models without client-based methodologies. Collaboratively visualize market-driven content through top-line metrics. Dramatically harness frictionless technology with plug-and-play web-readiness. Completely re-engineer progressive experiences with 24/7 vortals. Professionally transition premier e-business via client-focused solutions.</p>\r\n\r\n<p>Conveniently supply robust vortals without multimedia based methods of empowerment. Continually communicate interdependent networks and one-to-one methodologies. Distinctively pontificate one-to-one e-business before clicks-and-mortar niches. Conveniently harness state of the art total linkage before high-payoff partnerships. Credibly strategize top-line products before orthogonal networks.</p>\r\n\r\n<p>Appropriately fabricate best-of-breed functionalities whereas 2.0 core competencies. Compellingly drive timely processes without empowered outsourcing. Enthusiastically visualize magnetic internal or &quot;organic&quot; sources without stand-alone ROI. Globally benchmark turnkey ROI vis-a-vis front-end innovation. Synergistically underwhelm excellent systems with plug-and-play methodologies.</p>\r\n\r\n<p>Energistically impact user-centric strategic theme areas rather than distinctive infomediaries. Seamlessly incubate enabled architectures rather than worldwide internal or &quot;organic&quot; sources. Objectively redefine empowered platforms and maintainable markets. Rapidiously visualize prospective scenarios after maintainable methods of empowerment. Appropriately evolve cross-unit testing procedures and inexpensive process improvements.</p>\r\n\r\n<p>Distinctively actualize covalent value rather than parallel value. Conveniently re-engineer granular functionalities with effective synergy. Enthusiastically build.</p>\r\n",
"desc_en": "<p>Conveniently generate high-quality models without client-based methodologies. Collaboratively visualize market-driven content through top-line metrics. Dramatically harness frictionless technology with plug-and-play web-readiness. Completely re-engineer progressive experiences with 24/7 vortals. Professionally transition premier e-business via client-focused solutions.</p>\r\n\r\n<p>Conveniently supply robust vortals without multimedia based methods of empowerment. Continually communicate interdependent networks and one-to-one methodologies. Distinctively pontificate one-to-one e-business before clicks-and-mortar niches. Conveniently harness state of the art total linkage before high-payoff partnerships. Credibly strategize top-line products before orthogonal networks.</p>\r\n\r\n<p>Appropriately fabricate best-of-breed functionalities whereas 2.0 core competencies. Compellingly drive timely processes without empowered outsourcing. Enthusiastically visualize magnetic internal or &quot;organic&quot; sources without stand-alone ROI. Globally benchmark turnkey ROI vis-a-vis front-end innovation. Synergistically underwhelm excellent systems with plug-and-play methodologies.</p>\r\n\r\n<p>Energistically impact user-centric strategic theme areas rather than distinctive infomediaries. Seamlessly incubate enabled architectures rather than worldwide internal or &quot;organic&quot; sources. Objectively redefine empowered platforms and maintainable markets. Rapidiously visualize prospective scenarios after maintainable methods of empowerment. Appropriately evolve cross-unit testing procedures and inexpensive process improvements.</p>\r\n\r\n<p>Distinctively actualize covalent value rather than parallel value. Conveniently re-engineer granular functionalities with effective synergy. Enthusiastically build.</p>\r\n",
"image": {
"url": "https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/support_service/image/3/package2.jpg",
"thumb": {
"url": "https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/support_service/image/3/thumb_package2.jpg"
}
},
"price": "500000.0",
"ref_number": "SPPRTSRVC0000003",
"scheduleable": false,
"seens_count": 2,
"slug": "layanan-dokter-pribadi"
},
"company": {
"id": 16,
"name": "NinjaOne",
"slug": "ninjaone",
"logo": {
"url": "https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/company/logo/16/ninjaOne-icon-blue-green.png",
"thumb": {
"url": "https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/company/logo/16/thumb_ninjaOne-icon-blue-green.png"
}
}
}
},
"hospital": null
}
},
{
"id": "5",
"type": "service_order_participant",
"attributes": {
"id": 5,
"employment_id_number": "10212201",
"covered": true,
"result_enabled": true,
"status": "booked",
"visit_date": "2025-11-21",
"profile": {
"id": 14,
"full_name": "Muhammad Yana Mulyana",
"date_of_birth": "1993-09-21",
"email": "muhammadyanaa@gmail.com",
"avatar": {
"url": "https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/profile/avatar/14/unnamed.jpg",
"thumb": {
"url": "https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/profile/avatar/14/thumb_unnamed.jpg"
}
}
},
"service_order": {
"id": 2,
"order_name": "Batch 2",
"status": "draft",
"company_id": 16,
"participants_count": 1,
"start_date": "2025-10-28T07:00:00.000+07:00",
"end_date": "2026-02-18T07:00:00.000+07:00",
"service_package": {
"id": 1,
"name": "Layanan Periksa dirumah",
"title": "Ayo segera beli",
"description": "<p>Dramatically build collaborative relationships with market positioning platforms. Phosfluorescently pontificate prospective core competencies rather than inexpensive best practices. Dynamically benchmark distributed channels with open-source communities. Synergistically benchmark user-centric human capital for wireless e-business. Conveniently.</p>\r\n\r\n<p>Dynamically formulate cross-media solutions for mission-critical ROI. Progressively negotiate an expanded array of testing procedures after value-added technology. Completely mesh top-line niche markets vis-a-vis fully tested value. Completely maximize front-end architectures via visionary innovation.</p>\r\n\r\n<p>Seamlessly leverage existing focused leadership skills after leveraged supply chains. Dramatically scale revolutionary ROI for equity invested scenarios. Interactively transition open-source models without cost effective niche markets. Professionally facilitate technically sound process improvements with prospective bandwidth. Competently pursue exceptional process improvements before proactive supply chains.</p>\r\n\r\n<p>Professionally innovate global e-tailers with corporate partnerships. Intrinsicly customize unique schemas vis-a-vis visionary quality vectors. Dynamically conceptualize distributed processes whereas premier mindshare. Credibly myocardinate excellent value whereas goal-oriented architectures. Dramatically reconceptualize compelling e-commerce rather than resource maximizing technology.</p>\r\n\r\n<p>Uniquely strategize standards compliant web services for best-of-breed expertise. Authoritatively scale 2.0 technology vis-a-vis backend deliverables. Compellingly matrix client-centric infomediaries before high standards in experiences. Competently aggregate transparent.</p>\r\n",
"short_desc": " Dramatically build collaborative relationships with market positioning platforms. Phosfluorescently pontificate prospective core competencies rather than inexpensive best practices. Dynamically be...",
"name_id": "Layanan Periksa dirumah",
"name_en": "Checkt at home",
"title_id": "Ayo segera beli",
"title_en": "Let's buy this package",
"desc_id": "<p>Dramatically build collaborative relationships with market positioning platforms. Phosfluorescently pontificate prospective core competencies rather than inexpensive best practices. Dynamically benchmark distributed channels with open-source communities. Synergistically benchmark user-centric human capital for wireless e-business. Conveniently.</p>\r\n\r\n<p>Dynamically formulate cross-media solutions for mission-critical ROI. Progressively negotiate an expanded array of testing procedures after value-added technology. Completely mesh top-line niche markets vis-a-vis fully tested value. Completely maximize front-end architectures via visionary innovation.</p>\r\n\r\n<p>Seamlessly leverage existing focused leadership skills after leveraged supply chains. Dramatically scale revolutionary ROI for equity invested scenarios. Interactively transition open-source models without cost effective niche markets. Professionally facilitate technically sound process improvements with prospective bandwidth. Competently pursue exceptional process improvements before proactive supply chains.</p>\r\n\r\n<p>Professionally innovate global e-tailers with corporate partnerships. Intrinsicly customize unique schemas vis-a-vis visionary quality vectors. Dynamically conceptualize distributed processes whereas premier mindshare. Credibly myocardinate excellent value whereas goal-oriented architectures. Dramatically reconceptualize compelling e-commerce rather than resource maximizing technology.</p>\r\n\r\n<p>Uniquely strategize standards compliant web services for best-of-breed expertise. Authoritatively scale 2.0 technology vis-a-vis backend deliverables. Compellingly matrix client-centric infomediaries before high standards in experiences. Competently aggregate transparent.</p>\r\n",
"desc_en": "<p>Collaboratively utilize distributed &quot;outside the box&quot; thinking after synergistic e-business. Completely unleash multimedia based total linkage for ethical channels. Holisticly pursue prospective methods of empowerment for cutting-edge services. Proactively streamline strategic potentialities before dynamic.</p>\r\n\r\n<p>Seamlessly leverage existing focused leadership skills after leveraged supply chains. Dramatically scale revolutionary ROI for equity invested scenarios. Interactively transition open-source models without cost effective niche markets. Professionally facilitate technically sound process improvements with prospective bandwidth. Competently pursue exceptional process improvements before proactive supply chains.</p>\r\n\r\n<p>Professionally innovate global e-tailers with corporate partnerships. Intrinsicly customize unique schemas vis-a-vis visionary quality vectors. Dynamically conceptualize distributed processes whereas premier mindshare. Credibly myocardinate excellent value whereas goal-oriented architectures. Dramatically reconceptualize compelling e-commerce rather than resource maximizing technology.</p>\r\n\r\n<p>Uniquely strategize standards compliant web services for best-of-breed expertise. Authoritatively scale 2.0 technology vis-a-vis backend deliverables. Compellingly matrix client-centric infomediaries before high standards in experiences. Competently aggregate transparent.</p>\r\n",
"image": {
"url": "https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/support_service/image/1/package1.jpg",
"thumb": {
"url": "https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/support_service/image/1/thumb_package1.jpg"
}
},
"price": "310000.0",
"ref_number": null,
"scheduleable": true,
"seens_count": 2,
"slug": "layanan-periksa-dirumah"
},
"company": {
"id": 16,
"name": "NinjaOne",
"slug": "ninjaone",
"logo": {
"url": "https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/company/logo/16/ninjaOne-icon-blue-green.png",
"thumb": {
"url": "https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/company/logo/16/thumb_ninjaOne-icon-blue-green.png"
}
}
}
},
"hospital": {
"id": 13,
"name": "Hermina Arcamanik",
"address": "Hermina Arcamanik Hospital, Jalan A.H. Nasution, Antapani Wetan, Bandung City, West Java, Indonesia",
"logo": {
"url": "https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/hospital/logo/13/IMG-20200619-WA0105-01.jpeg",
"thumb": {
"url": "https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/hospital/logo/13/thumb_IMG-20200619-WA0105-01.jpeg"
}
},
"slug": "hermina-arcamanik"
}
}
}
]
}
```
content:
application/json:
schema:
type: object
properties:
success:
type: boolean
code:
type: integer
status:
type: string
message:
type: string
data:
type: array
items:
type: object
properties:
id:
type: string
type:
type: string
attributes:
type: object
properties:
id:
type: integer
employment_id_number:
type: string
covered:
type: boolean
result_enabled:
type: boolean
status:
type: string
visit_date:
type:
- 'null'
- string
profile:
type: object
properties:
id:
type: integer
full_name:
type: string
date_of_birth:
type: string
email:
type: string
avatar:
type: object
properties:
url:
type: string
thumb:
type: object
properties:
url:
type: string
service_order:
type: object
properties:
id:
type: integer
order_name:
type: string
status:
type: string
company_id:
type: integer
participants_count:
type: integer
start_date:
type:
- 'null'
- string
end_date:
type: string
service_package:
type: object
properties:
id:
type: integer
name:
type: string
title:
type: string
description:
type: string
short_desc:
type: string
name_id:
type: string
name_en:
type: string
title_id:
type: string
title_en:
type: string
desc_id:
type: string
desc_en:
type: string
image:
type: object
properties:
url:
type: string
thumb:
type: object
properties:
url:
type: string
price:
type: string
ref_number:
type:
- 'null'
- string
scheduleable:
type: boolean
seens_count:
type: integer
slug:
type: string
company:
type: object
properties:
id:
type: integer
name:
type: string
slug:
type: string
logo:
type: object
properties:
url:
type: string
thumb:
type: object
properties:
url:
type: string
hospital:
type: 'null'
x-examples:
Example 1:
success: true
code: 200
status: OK
message: OK
data:
- id: '3'
type: service_order_participant
attributes:
id: 3
employment_id_number: '10212203'
covered: true
result_enabled: true
status: booked
visit_date: null
profile:
id: 14
full_name: Muhammad Yana Mulyana
date_of_birth: '1993-09-21'
email: muhammadyanaa@gmail.com
avatar:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/profile/avatar/14/unnamed.jpg'
thumb:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/profile/avatar/14/thumb_unnamed.jpg'
service_order:
id: 1
order_name: Batch 1
status: draft
company_id: 16
participants_count: 4
start_date: null
end_date: '2026-03-26T07:00:00.000+07:00'
service_package:
id: 3
name: Layanan Dokter Pribadi
title: Ayo segera beli
description: "<p>Conveniently generate high-quality models without client-based methodologies. Collaboratively visualize market-driven content through top-line metrics. Dramatically harness frictionless technology with plug-and-play web-readiness. Completely re-engineer progressive experiences with 24/7 vortals. Professionally transition premier e-business via client-focused solutions.</p>\r\n\r\n<p>Conveniently supply robust vortals without multimedia based methods of empowerment. Continually communicate interdependent networks and one-to-one methodologies. Distinctively pontificate one-to-one e-business before clicks-and-mortar niches. Conveniently harness state of the art total linkage before high-payoff partnerships. Credibly strategize top-line products before orthogonal networks.</p>\r\n\r\n<p>Appropriately fabricate best-of-breed functionalities whereas 2.0 core competencies. Compellingly drive timely processes without empowered outsourcing. Enthusiastically visualize magnetic internal or &quot;organic&quot; sources without stand-alone ROI. Globally benchmark turnkey ROI vis-a-vis front-end innovation. Synergistically underwhelm excellent systems with plug-and-play methodologies.</p>\r\n\r\n<p>Energistically impact user-centric strategic theme areas rather than distinctive infomediaries. Seamlessly incubate enabled architectures rather than worldwide internal or &quot;organic&quot; sources. Objectively redefine empowered platforms and maintainable markets. Rapidiously visualize prospective scenarios after maintainable methods of empowerment. Appropriately evolve cross-unit testing procedures and inexpensive process improvements.</p>\r\n\r\n<p>Distinctively actualize covalent value rather than parallel value. Conveniently re-engineer granular functionalities with effective synergy. Enthusiastically build.</p>\r\n"
short_desc: ' Conveniently generate high-quality models without client-based methodologies. Collaboratively visualize market-driven content through top-line metrics. Dramatically harness frictionless technology...'
name_id: Layanan Dokter Pribadi
name_en: Layanan Dokter Pribadi
title_id: Ayo segera beli
title_en: Let's buy this package
desc_id: "<p>Conveniently generate high-quality models without client-based methodologies. Collaboratively visualize market-driven content through top-line metrics. Dramatically harness frictionless technology with plug-and-play web-readiness. Completely re-engineer progressive experiences with 24/7 vortals. Professionally transition premier e-business via client-focused solutions.</p>\r\n\r\n<p>Conveniently supply robust vortals without multimedia based methods of empowerment. Continually communicate interdependent networks and one-to-one methodologies. Distinctively pontificate one-to-one e-business before clicks-and-mortar niches. Conveniently harness state of the art total linkage before high-payoff partnerships. Credibly strategize top-line products before orthogonal networks.</p>\r\n\r\n<p>Appropriately fabricate best-of-breed functionalities whereas 2.0 core competencies. Compellingly drive timely processes without empowered outsourcing. Enthusiastically visualize magnetic internal or &quot;organic&quot; sources without stand-alone ROI. Globally benchmark turnkey ROI vis-a-vis front-end innovation. Synergistically underwhelm excellent systems with plug-and-play methodologies.</p>\r\n\r\n<p>Energistically impact user-centric strategic theme areas rather than distinctive infomediaries. Seamlessly incubate enabled architectures rather than worldwide internal or &quot;organic&quot; sources. Objectively redefine empowered platforms and maintainable markets. Rapidiously visualize prospective scenarios after maintainable methods of empowerment. Appropriately evolve cross-unit testing procedures and inexpensive process improvements.</p>\r\n\r\n<p>Distinctively actualize covalent value rather than parallel value. Conveniently re-engineer granular functionalities with effective synergy. Enthusiastically build.</p>\r\n"
desc_en: "<p>Conveniently generate high-quality models without client-based methodologies. Collaboratively visualize market-driven content through top-line metrics. Dramatically harness frictionless technology with plug-and-play web-readiness. Completely re-engineer progressive experiences with 24/7 vortals. Professionally transition premier e-business via client-focused solutions.</p>\r\n\r\n<p>Conveniently supply robust vortals without multimedia based methods of empowerment. Continually communicate interdependent networks and one-to-one methodologies. Distinctively pontificate one-to-one e-business before clicks-and-mortar niches. Conveniently harness state of the art total linkage before high-payoff partnerships. Credibly strategize top-line products before orthogonal networks.</p>\r\n\r\n<p>Appropriately fabricate best-of-breed functionalities whereas 2.0 core competencies. Compellingly drive timely processes without empowered outsourcing. Enthusiastically visualize magnetic internal or &quot;organic&quot; sources without stand-alone ROI. Globally benchmark turnkey ROI vis-a-vis front-end innovation. Synergistically underwhelm excellent systems with plug-and-play methodologies.</p>\r\n\r\n<p>Energistically impact user-centric strategic theme areas rather than distinctive infomediaries. Seamlessly incubate enabled architectures rather than worldwide internal or &quot;organic&quot; sources. Objectively redefine empowered platforms and maintainable markets. Rapidiously visualize prospective scenarios after maintainable methods of empowerment. Appropriately evolve cross-unit testing procedures and inexpensive process improvements.</p>\r\n\r\n<p>Distinctively actualize covalent value rather than parallel value. Conveniently re-engineer granular functionalities with effective synergy. Enthusiastically build.</p>\r\n"
image:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/support_service/image/3/package2.jpg'
thumb:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/support_service/image/3/thumb_package2.jpg'
price: '500000.0'
ref_number: SPPRTSRVC0000003
scheduleable: false
seens_count: 2
slug: layanan-dokter-pribadi
company:
id: 16
name: NinjaOne
slug: ninjaone
logo:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/company/logo/16/ninjaOne-icon-blue-green.png'
thumb:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/company/logo/16/thumb_ninjaOne-icon-blue-green.png'
hospital: null
- id: '5'
type: service_order_participant
attributes:
id: 5
employment_id_number: '10212201'
covered: true
result_enabled: true
status: booked
visit_date: '2025-11-21'
profile:
id: 14
full_name: Muhammad Yana Mulyana
date_of_birth: '1993-09-21'
email: muhammadyanaa@gmail.com
avatar:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/profile/avatar/14/unnamed.jpg'
thumb:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/profile/avatar/14/thumb_unnamed.jpg'
service_order:
id: 2
order_name: Batch 2
status: draft
company_id: 16
participants_count: 1
start_date: '2025-10-28T07:00:00.000+07:00'
end_date: '2026-02-18T07:00:00.000+07:00'
service_package:
id: 1
name: Layanan Periksa dirumah
title: Ayo segera beli
description: "<p>Dramatically build collaborative relationships with market positioning platforms. Phosfluorescently pontificate prospective core competencies rather than inexpensive best practices. Dynamically benchmark distributed channels with open-source communities. Synergistically benchmark user-centric human capital for wireless e-business. Conveniently.</p>\r\n\r\n<p>Dynamically formulate cross-media solutions for mission-critical ROI. Progressively negotiate an expanded array of testing procedures after value-added technology. Completely mesh top-line niche markets vis-a-vis fully tested value. Completely maximize front-end architectures via visionary innovation.</p>\r\n\r\n<p>Seamlessly leverage existing focused leadership skills after leveraged supply chains. Dramatically scale revolutionary ROI for equity invested scenarios. Interactively transition open-source models without cost effective niche markets. Professionally facilitate technically sound process improvements with prospective bandwidth. Competently pursue exceptional process improvements before proactive supply chains.</p>\r\n\r\n<p>Professionally innovate global e-tailers with corporate partnerships. Intrinsicly customize unique schemas vis-a-vis visionary quality vectors. Dynamically conceptualize distributed processes whereas premier mindshare. Credibly myocardinate excellent value whereas goal-oriented architectures. Dramatically reconceptualize compelling e-commerce rather than resource maximizing technology.</p>\r\n\r\n<p>Uniquely strategize standards compliant web services for best-of-breed expertise. Authoritatively scale 2.0 technology vis-a-vis backend deliverables. Compellingly matrix client-centric infomediaries before high standards in experiences. Competently aggregate transparent.</p>\r\n"
short_desc: ' Dramatically build collaborative relationships with market positioning platforms. Phosfluorescently pontificate prospective core competencies rather than inexpensive best practices. Dynamically be...'
name_id: Layanan Periksa dirumah
name_en: Checkt at home
title_id: Ayo segera beli
title_en: Let's buy this package
desc_id: "<p>Dramatically build collaborative relationships with market positioning platforms. Phosfluorescently pontificate prospective core competencies rather than inexpensive best practices. Dynamically benchmark distributed channels with open-source communities. Synergistically benchmark user-centric human capital for wireless e-business. Conveniently.</p>\r\n\r\n<p>Dynamically formulate cross-media solutions for mission-critical ROI. Progressively negotiate an expanded array of testing procedures after value-added technology. Completely mesh top-line niche markets vis-a-vis fully tested value. Completely maximize front-end architectures via visionary innovation.</p>\r\n\r\n<p>Seamlessly leverage existing focused leadership skills after leveraged supply chains. Dramatically scale revolutionary ROI for equity invested scenarios. Interactively transition open-source models without cost effective niche markets. Professionally facilitate technically sound process improvements with prospective bandwidth. Competently pursue exceptional process improvements before proactive supply chains.</p>\r\n\r\n<p>Professionally innovate global e-tailers with corporate partnerships. Intrinsicly customize unique schemas vis-a-vis visionary quality vectors. Dynamically conceptualize distributed processes whereas premier mindshare. Credibly myocardinate excellent value whereas goal-oriented architectures. Dramatically reconceptualize compelling e-commerce rather than resource maximizing technology.</p>\r\n\r\n<p>Uniquely strategize standards compliant web services for best-of-breed expertise. Authoritatively scale 2.0 technology vis-a-vis backend deliverables. Compellingly matrix client-centric infomediaries before high standards in experiences. Competently aggregate transparent.</p>\r\n"
desc_en: "<p>Collaboratively utilize distributed &quot;outside the box&quot; thinking after synergistic e-business. Completely unleash multimedia based total linkage for ethical channels. Holisticly pursue prospective methods of empowerment for cutting-edge services. Proactively streamline strategic potentialities before dynamic.</p>\r\n\r\n<p>Seamlessly leverage existing focused leadership skills after leveraged supply chains. Dramatically scale revolutionary ROI for equity invested scenarios. Interactively transition open-source models without cost effective niche markets. Professionally facilitate technically sound process improvements with prospective bandwidth. Competently pursue exceptional process improvements before proactive supply chains.</p>\r\n\r\n<p>Professionally innovate global e-tailers with corporate partnerships. Intrinsicly customize unique schemas vis-a-vis visionary quality vectors. Dynamically conceptualize distributed processes whereas premier mindshare. Credibly myocardinate excellent value whereas goal-oriented architectures. Dramatically reconceptualize compelling e-commerce rather than resource maximizing technology.</p>\r\n\r\n<p>Uniquely strategize standards compliant web services for best-of-breed expertise. Authoritatively scale 2.0 technology vis-a-vis backend deliverables. Compellingly matrix client-centric infomediaries before high standards in experiences. Competently aggregate transparent.</p>\r\n"
image:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/support_service/image/1/package1.jpg'
thumb:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/support_service/image/1/thumb_package1.jpg'
price: '310000.0'
ref_number: null
scheduleable: true
seens_count: 2
slug: layanan-periksa-dirumah
company:
id: 16
name: NinjaOne
slug: ninjaone
logo:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/company/logo/16/ninjaOne-icon-blue-green.png'
thumb:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/company/logo/16/thumb_ninjaOne-icon-blue-green.png'
hospital:
id: 13
name: Hermina Arcamanik
address: 'Hermina Arcamanik Hospital, Jalan A.H. Nasution, Antapani Wetan, Bandung City, West Java, Indonesia'
logo:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/hospital/logo/13/IMG-20200619-WA0105-01.jpeg'
thumb:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/hospital/logo/13/thumb_IMG-20200619-WA0105-01.jpeg'
slug: hermina-arcamanik
examples:
Example 1:
value:
success: true
code: 200
status: OK
message: OK
data:
- id: '3'
type: service_order_participant
attributes:
id: 3
employment_id_number: '10212203'
covered: true
result_enabled: true
status: booked
visit_date: null
profile:
id: 14
full_name: Muhammad Yana Mulyana
date_of_birth: '1993-09-21'
email: muhammadyanaa@gmail.com
avatar:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/profile/avatar/14/unnamed.jpg'
thumb:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/profile/avatar/14/thumb_unnamed.jpg'
service_order:
id: 1
order_name: Batch 1
status: draft
company_id: 16
participants_count: 4
start_date: null
end_date: '2026-03-26T07:00:00.000+07:00'
service_package:
id: 3
name: Layanan Dokter Pribadi
title: Ayo segera beli
description: "<p>Conveniently generate high-quality models without client-based methodologies. Collaboratively visualize market-driven content through top-line metrics. Dramatically harness frictionless technology with plug-and-play web-readiness. Completely re-engineer progressive experiences with 24/7 vortals. Professionally transition premier e-business via client-focused solutions.</p>\r\n\r\n<p>Conveniently supply robust vortals without multimedia based methods of empowerment. Continually communicate interdependent networks and one-to-one methodologies. Distinctively pontificate one-to-one e-business before clicks-and-mortar niches. Conveniently harness state of the art total linkage before high-payoff partnerships. Credibly strategize top-line products before orthogonal networks.</p>\r\n\r\n<p>Appropriately fabricate best-of-breed functionalities whereas 2.0 core competencies. Compellingly drive timely processes without empowered outsourcing. Enthusiastically visualize magnetic internal or &quot;organic&quot; sources without stand-alone ROI. Globally benchmark turnkey ROI vis-a-vis front-end innovation. Synergistically underwhelm excellent systems with plug-and-play methodologies.</p>\r\n\r\n<p>Energistically impact user-centric strategic theme areas rather than distinctive infomediaries. Seamlessly incubate enabled architectures rather than worldwide internal or &quot;organic&quot; sources. Objectively redefine empowered platforms and maintainable markets. Rapidiously visualize prospective scenarios after maintainable methods of empowerment. Appropriately evolve cross-unit testing procedures and inexpensive process improvements.</p>\r\n\r\n<p>Distinctively actualize covalent value rather than parallel value. Conveniently re-engineer granular functionalities with effective synergy. Enthusiastically build.</p>\r\n"
short_desc: ' Conveniently generate high-quality models without client-based methodologies. Collaboratively visualize market-driven content through top-line metrics. Dramatically harness frictionless technology...'
name_id: Layanan Dokter Pribadi
name_en: Layanan Dokter Pribadi
title_id: Ayo segera beli
title_en: Let's buy this package
desc_id: "<p>Conveniently generate high-quality models without client-based methodologies. Collaboratively visualize market-driven content through top-line metrics. Dramatically harness frictionless technology with plug-and-play web-readiness. Completely re-engineer progressive experiences with 24/7 vortals. Professionally transition premier e-business via client-focused solutions.</p>\r\n\r\n<p>Conveniently supply robust vortals without multimedia based methods of empowerment. Continually communicate interdependent networks and one-to-one methodologies. Distinctively pontificate one-to-one e-business before clicks-and-mortar niches. Conveniently harness state of the art total linkage before high-payoff partnerships. Credibly strategize top-line products before orthogonal networks.</p>\r\n\r\n<p>Appropriately fabricate best-of-breed functionalities whereas 2.0 core competencies. Compellingly drive timely processes without empowered outsourcing. Enthusiastically visualize magnetic internal or &quot;organic&quot; sources without stand-alone ROI. Globally benchmark turnkey ROI vis-a-vis front-end innovation. Synergistically underwhelm excellent systems with plug-and-play methodologies.</p>\r\n\r\n<p>Energistically impact user-centric strategic theme areas rather than distinctive infomediaries. Seamlessly incubate enabled architectures rather than worldwide internal or &quot;organic&quot; sources. Objectively redefine empowered platforms and maintainable markets. Rapidiously visualize prospective scenarios after maintainable methods of empowerment. Appropriately evolve cross-unit testing procedures and inexpensive process improvements.</p>\r\n\r\n<p>Distinctively actualize covalent value rather than parallel value. Conveniently re-engineer granular functionalities with effective synergy. Enthusiastically build.</p>\r\n"
desc_en: "<p>Conveniently generate high-quality models without client-based methodologies. Collaboratively visualize market-driven content through top-line metrics. Dramatically harness frictionless technology with plug-and-play web-readiness. Completely re-engineer progressive experiences with 24/7 vortals. Professionally transition premier e-business via client-focused solutions.</p>\r\n\r\n<p>Conveniently supply robust vortals without multimedia based methods of empowerment. Continually communicate interdependent networks and one-to-one methodologies. Distinctively pontificate one-to-one e-business before clicks-and-mortar niches. Conveniently harness state of the art total linkage before high-payoff partnerships. Credibly strategize top-line products before orthogonal networks.</p>\r\n\r\n<p>Appropriately fabricate best-of-breed functionalities whereas 2.0 core competencies. Compellingly drive timely processes without empowered outsourcing. Enthusiastically visualize magnetic internal or &quot;organic&quot; sources without stand-alone ROI. Globally benchmark turnkey ROI vis-a-vis front-end innovation. Synergistically underwhelm excellent systems with plug-and-play methodologies.</p>\r\n\r\n<p>Energistically impact user-centric strategic theme areas rather than distinctive infomediaries. Seamlessly incubate enabled architectures rather than worldwide internal or &quot;organic&quot; sources. Objectively redefine empowered platforms and maintainable markets. Rapidiously visualize prospective scenarios after maintainable methods of empowerment. Appropriately evolve cross-unit testing procedures and inexpensive process improvements.</p>\r\n\r\n<p>Distinctively actualize covalent value rather than parallel value. Conveniently re-engineer granular functionalities with effective synergy. Enthusiastically build.</p>\r\n"
image:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/support_service/image/3/package2.jpg'
thumb:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/support_service/image/3/thumb_package2.jpg'
price: '500000.0'
ref_number: SPPRTSRVC0000003
scheduleable: false
seens_count: 2
slug: layanan-dokter-pribadi
company:
id: 16
name: NinjaOne
slug: ninjaone
logo:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/company/logo/16/ninjaOne-icon-blue-green.png'
thumb:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/company/logo/16/thumb_ninjaOne-icon-blue-green.png'
hospital: null
- id: '5'
type: service_order_participant
attributes:
id: 5
employment_id_number: '10212201'
covered: true
result_enabled: true
status: booked
visit_date: '2025-11-21'
profile:
id: 14
full_name: Muhammad Yana Mulyana
date_of_birth: '1993-09-21'
email: muhammadyanaa@gmail.com
avatar:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/profile/avatar/14/unnamed.jpg'
thumb:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/profile/avatar/14/thumb_unnamed.jpg'
service_order:
id: 2
order_name: Batch 2
status: draft
company_id: 16
participants_count: 1
start_date: '2025-10-28T07:00:00.000+07:00'
end_date: '2026-02-18T07:00:00.000+07:00'
service_package:
id: 1
name: Layanan Periksa dirumah
title: Ayo segera beli
description: "<p>Dramatically build collaborative relationships with market positioning platforms. Phosfluorescently pontificate prospective core competencies rather than inexpensive best practices. Dynamically benchmark distributed channels with open-source communities. Synergistically benchmark user-centric human capital for wireless e-business. Conveniently.</p>\r\n\r\n<p>Dynamically formulate cross-media solutions for mission-critical ROI. Progressively negotiate an expanded array of testing procedures after value-added technology. Completely mesh top-line niche markets vis-a-vis fully tested value. Completely maximize front-end architectures via visionary innovation.</p>\r\n\r\n<p>Seamlessly leverage existing focused leadership skills after leveraged supply chains. Dramatically scale revolutionary ROI for equity invested scenarios. Interactively transition open-source models without cost effective niche markets. Professionally facilitate technically sound process improvements with prospective bandwidth. Competently pursue exceptional process improvements before proactive supply chains.</p>\r\n\r\n<p>Professionally innovate global e-tailers with corporate partnerships. Intrinsicly customize unique schemas vis-a-vis visionary quality vectors. Dynamically conceptualize distributed processes whereas premier mindshare. Credibly myocardinate excellent value whereas goal-oriented architectures. Dramatically reconceptualize compelling e-commerce rather than resource maximizing technology.</p>\r\n\r\n<p>Uniquely strategize standards compliant web services for best-of-breed expertise. Authoritatively scale 2.0 technology vis-a-vis backend deliverables. Compellingly matrix client-centric infomediaries before high standards in experiences. Competently aggregate transparent.</p>\r\n"
short_desc: ' Dramatically build collaborative relationships with market positioning platforms. Phosfluorescently pontificate prospective core competencies rather than inexpensive best practices. Dynamically be...'
name_id: Layanan Periksa dirumah
name_en: Checkt at home
title_id: Ayo segera beli
title_en: Let's buy this package
desc_id: "<p>Dramatically build collaborative relationships with market positioning platforms. Phosfluorescently pontificate prospective core competencies rather than inexpensive best practices. Dynamically benchmark distributed channels with open-source communities. Synergistically benchmark user-centric human capital for wireless e-business. Conveniently.</p>\r\n\r\n<p>Dynamically formulate cross-media solutions for mission-critical ROI. Progressively negotiate an expanded array of testing procedures after value-added technology. Completely mesh top-line niche markets vis-a-vis fully tested value. Completely maximize front-end architectures via visionary innovation.</p>\r\n\r\n<p>Seamlessly leverage existing focused leadership skills after leveraged supply chains. Dramatically scale revolutionary ROI for equity invested scenarios. Interactively transition open-source models without cost effective niche markets. Professionally facilitate technically sound process improvements with prospective bandwidth. Competently pursue exceptional process improvements before proactive supply chains.</p>\r\n\r\n<p>Professionally innovate global e-tailers with corporate partnerships. Intrinsicly customize unique schemas vis-a-vis visionary quality vectors. Dynamically conceptualize distributed processes whereas premier mindshare. Credibly myocardinate excellent value whereas goal-oriented architectures. Dramatically reconceptualize compelling e-commerce rather than resource maximizing technology.</p>\r\n\r\n<p>Uniquely strategize standards compliant web services for best-of-breed expertise. Authoritatively scale 2.0 technology vis-a-vis backend deliverables. Compellingly matrix client-centric infomediaries before high standards in experiences. Competently aggregate transparent.</p>\r\n"
desc_en: "<p>Collaboratively utilize distributed &quot;outside the box&quot; thinking after synergistic e-business. Completely unleash multimedia based total linkage for ethical channels. Holisticly pursue prospective methods of empowerment for cutting-edge services. Proactively streamline strategic potentialities before dynamic.</p>\r\n\r\n<p>Seamlessly leverage existing focused leadership skills after leveraged supply chains. Dramatically scale revolutionary ROI for equity invested scenarios. Interactively transition open-source models without cost effective niche markets. Professionally facilitate technically sound process improvements with prospective bandwidth. Competently pursue exceptional process improvements before proactive supply chains.</p>\r\n\r\n<p>Professionally innovate global e-tailers with corporate partnerships. Intrinsicly customize unique schemas vis-a-vis visionary quality vectors. Dynamically conceptualize distributed processes whereas premier mindshare. Credibly myocardinate excellent value whereas goal-oriented architectures. Dramatically reconceptualize compelling e-commerce rather than resource maximizing technology.</p>\r\n\r\n<p>Uniquely strategize standards compliant web services for best-of-breed expertise. Authoritatively scale 2.0 technology vis-a-vis backend deliverables. Compellingly matrix client-centric infomediaries before high standards in experiences. Competently aggregate transparent.</p>\r\n"
image:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/support_service/image/1/package1.jpg'
thumb:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/support_service/image/1/thumb_package1.jpg'
price: '310000.0'
ref_number: null
scheduleable: true
seens_count: 2
slug: layanan-periksa-dirumah
company:
id: 16
name: NinjaOne
slug: ninjaone
logo:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/company/logo/16/ninjaOne-icon-blue-green.png'
thumb:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/company/logo/16/thumb_ninjaOne-icon-blue-green.png'
hospital:
id: 13
name: Hermina Arcamanik
address: 'Hermina Arcamanik Hospital, Jalan A.H. Nasution, Antapani Wetan, Bandung City, West Java, Indonesia'
logo:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/hospital/logo/13/IMG-20200619-WA0105-01.jpeg'
thumb:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/hospital/logo/13/thumb_IMG-20200619-WA0105-01.jpeg'
slug: hermina-arcamanik
operationId: get-ehc-enrollments
x-stoplight:
id: egov7beix2h0c
parameters:
- $ref: ./public-api.yaml#/components/parameters/page
- $ref: ./public-api.yaml#/components/parameters/per_page
parameters:
- $ref: '#/components/parameters/Authorization'
'/ehc/enrollments/{id}':
get:
summary: Show service order enrollment
tags:
- ehc
responses:
'200':
description: |-
```json
{
"success": true,
"code": 200,
"status": "OK",
"message": "OK",
"data": {
"id": "3",
"type": "service_order_participant",
"attributes": {
"id": 3,
"employment_id_number": "10212203",
"covered": true,
"result_enabled": true,
"status": "booked",
"visit_date": null,
"profile": {
"id": 14,
"full_name": "Muhammad Yana Mulyana",
"date_of_birth": "1993-09-21",
"email": "muhammadyanaa@gmail.com",
"avatar": {
"url": "https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/profile/avatar/14/unnamed.jpg",
"thumb": {
"url": "https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/profile/avatar/14/thumb_unnamed.jpg"
}
}
},
"service_order": {
"id": 1,
"order_name": "Batch 1",
"status": "draft",
"company_id": 16,
"participants_count": 4,
"start_date": null,
"end_date": "2026-03-26T07:00:00.000+07:00",
"service_package": {
"id": 3,
"name": "Layanan Dokter Pribadi",
"title": "Ayo segera beli",
"description": "<p>Conveniently generate high-quality models without client-based methodologies. Collaboratively visualize market-driven content through top-line metrics. Dramatically harness frictionless technology with plug-and-play web-readiness. Completely re-engineer progressive experiences with 24/7 vortals. Professionally transition premier e-business via client-focused solutions.</p>\r\n\r\n<p>Conveniently supply robust vortals without multimedia based methods of empowerment. Continually communicate interdependent networks and one-to-one methodologies. Distinctively pontificate one-to-one e-business before clicks-and-mortar niches. Conveniently harness state of the art total linkage before high-payoff partnerships. Credibly strategize top-line products before orthogonal networks.</p>\r\n\r\n<p>Appropriately fabricate best-of-breed functionalities whereas 2.0 core competencies. Compellingly drive timely processes without empowered outsourcing. Enthusiastically visualize magnetic internal or &quot;organic&quot; sources without stand-alone ROI. Globally benchmark turnkey ROI vis-a-vis front-end innovation. Synergistically underwhelm excellent systems with plug-and-play methodologies.</p>\r\n\r\n<p>Energistically impact user-centric strategic theme areas rather than distinctive infomediaries. Seamlessly incubate enabled architectures rather than worldwide internal or &quot;organic&quot; sources. Objectively redefine empowered platforms and maintainable markets. Rapidiously visualize prospective scenarios after maintainable methods of empowerment. Appropriately evolve cross-unit testing procedures and inexpensive process improvements.</p>\r\n\r\n<p>Distinctively actualize covalent value rather than parallel value. Conveniently re-engineer granular functionalities with effective synergy. Enthusiastically build.</p>\r\n",
"short_desc": " Conveniently generate high-quality models without client-based methodologies. Collaboratively visualize market-driven content through top-line metrics. Dramatically harness frictionless technology...",
"name_id": "Layanan Dokter Pribadi",
"name_en": "Layanan Dokter Pribadi",
"title_id": "Ayo segera beli",
"title_en": "Let's buy this package",
"desc_id": "<p>Conveniently generate high-quality models without client-based methodologies. Collaboratively visualize market-driven content through top-line metrics. Dramatically harness frictionless technology with plug-and-play web-readiness. Completely re-engineer progressive experiences with 24/7 vortals. Professionally transition premier e-business via client-focused solutions.</p>\r\n\r\n<p>Conveniently supply robust vortals without multimedia based methods of empowerment. Continually communicate interdependent networks and one-to-one methodologies. Distinctively pontificate one-to-one e-business before clicks-and-mortar niches. Conveniently harness state of the art total linkage before high-payoff partnerships. Credibly strategize top-line products before orthogonal networks.</p>\r\n\r\n<p>Appropriately fabricate best-of-breed functionalities whereas 2.0 core competencies. Compellingly drive timely processes without empowered outsourcing. Enthusiastically visualize magnetic internal or &quot;organic&quot; sources without stand-alone ROI. Globally benchmark turnkey ROI vis-a-vis front-end innovation. Synergistically underwhelm excellent systems with plug-and-play methodologies.</p>\r\n\r\n<p>Energistically impact user-centric strategic theme areas rather than distinctive infomediaries. Seamlessly incubate enabled architectures rather than worldwide internal or &quot;organic&quot; sources. Objectively redefine empowered platforms and maintainable markets. Rapidiously visualize prospective scenarios after maintainable methods of empowerment. Appropriately evolve cross-unit testing procedures and inexpensive process improvements.</p>\r\n\r\n<p>Distinctively actualize covalent value rather than parallel value. Conveniently re-engineer granular functionalities with effective synergy. Enthusiastically build.</p>\r\n",
"desc_en": "<p>Conveniently generate high-quality models without client-based methodologies. Collaboratively visualize market-driven content through top-line metrics. Dramatically harness frictionless technology with plug-and-play web-readiness. Completely re-engineer progressive experiences with 24/7 vortals. Professionally transition premier e-business via client-focused solutions.</p>\r\n\r\n<p>Conveniently supply robust vortals without multimedia based methods of empowerment. Continually communicate interdependent networks and one-to-one methodologies. Distinctively pontificate one-to-one e-business before clicks-and-mortar niches. Conveniently harness state of the art total linkage before high-payoff partnerships. Credibly strategize top-line products before orthogonal networks.</p>\r\n\r\n<p>Appropriately fabricate best-of-breed functionalities whereas 2.0 core competencies. Compellingly drive timely processes without empowered outsourcing. Enthusiastically visualize magnetic internal or &quot;organic&quot; sources without stand-alone ROI. Globally benchmark turnkey ROI vis-a-vis front-end innovation. Synergistically underwhelm excellent systems with plug-and-play methodologies.</p>\r\n\r\n<p>Energistically impact user-centric strategic theme areas rather than distinctive infomediaries. Seamlessly incubate enabled architectures rather than worldwide internal or &quot;organic&quot; sources. Objectively redefine empowered platforms and maintainable markets. Rapidiously visualize prospective scenarios after maintainable methods of empowerment. Appropriately evolve cross-unit testing procedures and inexpensive process improvements.</p>\r\n\r\n<p>Distinctively actualize covalent value rather than parallel value. Conveniently re-engineer granular functionalities with effective synergy. Enthusiastically build.</p>\r\n",
"image": {
"url": "https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/support_service/image/3/package2.jpg",
"thumb": {
"url": "https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/support_service/image/3/thumb_package2.jpg"
}
},
"price": "500000.0",
"ref_number": "SPPRTSRVC0000003",
"scheduleable": false,
"seens_count": 2,
"slug": "layanan-dokter-pribadi"
},
"company": {
"id": 16,
"name": "NinjaOne",
"slug": "ninjaone",
"logo": {
"url": "https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/company/logo/16/ninjaOne-icon-blue-green.png",
"thumb": {
"url": "https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/company/logo/16/thumb_ninjaOne-icon-blue-green.png"
}
}
}
},
"hospital": null
}
}
}
```
content:
application/json:
schema:
type: object
properties:
success:
type: boolean
code:
type: integer
status:
type: string
message:
type: string
data:
type: object
properties:
id:
type: string
type:
type: string
attributes:
type: object
properties:
id:
type: integer
employment_id_number:
type: string
covered:
type: boolean
result_enabled:
type: boolean
status:
type: string
visit_date:
type: 'null'
profile:
type: object
properties:
id:
type: integer
full_name:
type: string
date_of_birth:
type: string
email:
type: string
avatar:
type: object
properties:
url:
type: string
thumb:
type: object
properties:
url:
type: string
service_order:
type: object
properties:
id:
type: integer
order_name:
type: string
status:
type: string
company_id:
type: integer
participants_count:
type: integer
start_date:
type: 'null'
end_date:
type: string
service_package:
type: object
properties:
id:
type: integer
name:
type: string
title:
type: string
description:
type: string
short_desc:
type: string
name_id:
type: string
name_en:
type: string
title_id:
type: string
title_en:
type: string
desc_id:
type: string
desc_en:
type: string
image:
type: object
properties:
url:
type: string
thumb:
type: object
properties:
url:
type: string
price:
type: string
ref_number:
type: string
scheduleable:
type: boolean
seens_count:
type: integer
slug:
type: string
company:
type: object
properties:
id:
type: integer
name:
type: string
slug:
type: string
logo:
type: object
properties:
url:
type: string
thumb:
type: object
properties:
url:
type: string
hospital:
type: 'null'
x-examples:
Example 1:
success: true
code: 200
status: OK
message: OK
data:
id: '3'
type: service_order_participant
attributes:
id: 3
employment_id_number: '10212203'
covered: true
result_enabled: true
status: booked
visit_date: null
profile:
id: 14
full_name: Muhammad Yana Mulyana
date_of_birth: '1993-09-21'
email: muhammadyanaa@gmail.com
avatar:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/profile/avatar/14/unnamed.jpg'
thumb:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/profile/avatar/14/thumb_unnamed.jpg'
service_order:
id: 1
order_name: Batch 1
status: draft
company_id: 16
participants_count: 4
start_date: null
end_date: '2026-03-26T07:00:00.000+07:00'
service_package:
id: 3
name: Layanan Dokter Pribadi
title: Ayo segera beli
description: "<p>Conveniently generate high-quality models without client-based methodologies. Collaboratively visualize market-driven content through top-line metrics. Dramatically harness frictionless technology with plug-and-play web-readiness. Completely re-engineer progressive experiences with 24/7 vortals. Professionally transition premier e-business via client-focused solutions.</p>\r\n\r\n<p>Conveniently supply robust vortals without multimedia based methods of empowerment. Continually communicate interdependent networks and one-to-one methodologies. Distinctively pontificate one-to-one e-business before clicks-and-mortar niches. Conveniently harness state of the art total linkage before high-payoff partnerships. Credibly strategize top-line products before orthogonal networks.</p>\r\n\r\n<p>Appropriately fabricate best-of-breed functionalities whereas 2.0 core competencies. Compellingly drive timely processes without empowered outsourcing. Enthusiastically visualize magnetic internal or &quot;organic&quot; sources without stand-alone ROI. Globally benchmark turnkey ROI vis-a-vis front-end innovation. Synergistically underwhelm excellent systems with plug-and-play methodologies.</p>\r\n\r\n<p>Energistically impact user-centric strategic theme areas rather than distinctive infomediaries. Seamlessly incubate enabled architectures rather than worldwide internal or &quot;organic&quot; sources. Objectively redefine empowered platforms and maintainable markets. Rapidiously visualize prospective scenarios after maintainable methods of empowerment. Appropriately evolve cross-unit testing procedures and inexpensive process improvements.</p>\r\n\r\n<p>Distinctively actualize covalent value rather than parallel value. Conveniently re-engineer granular functionalities with effective synergy. Enthusiastically build.</p>\r\n"
short_desc: ' Conveniently generate high-quality models without client-based methodologies. Collaboratively visualize market-driven content through top-line metrics. Dramatically harness frictionless technology...'
name_id: Layanan Dokter Pribadi
name_en: Layanan Dokter Pribadi
title_id: Ayo segera beli
title_en: Let's buy this package
desc_id: "<p>Conveniently generate high-quality models without client-based methodologies. Collaboratively visualize market-driven content through top-line metrics. Dramatically harness frictionless technology with plug-and-play web-readiness. Completely re-engineer progressive experiences with 24/7 vortals. Professionally transition premier e-business via client-focused solutions.</p>\r\n\r\n<p>Conveniently supply robust vortals without multimedia based methods of empowerment. Continually communicate interdependent networks and one-to-one methodologies. Distinctively pontificate one-to-one e-business before clicks-and-mortar niches. Conveniently harness state of the art total linkage before high-payoff partnerships. Credibly strategize top-line products before orthogonal networks.</p>\r\n\r\n<p>Appropriately fabricate best-of-breed functionalities whereas 2.0 core competencies. Compellingly drive timely processes without empowered outsourcing. Enthusiastically visualize magnetic internal or &quot;organic&quot; sources without stand-alone ROI. Globally benchmark turnkey ROI vis-a-vis front-end innovation. Synergistically underwhelm excellent systems with plug-and-play methodologies.</p>\r\n\r\n<p>Energistically impact user-centric strategic theme areas rather than distinctive infomediaries. Seamlessly incubate enabled architectures rather than worldwide internal or &quot;organic&quot; sources. Objectively redefine empowered platforms and maintainable markets. Rapidiously visualize prospective scenarios after maintainable methods of empowerment. Appropriately evolve cross-unit testing procedures and inexpensive process improvements.</p>\r\n\r\n<p>Distinctively actualize covalent value rather than parallel value. Conveniently re-engineer granular functionalities with effective synergy. Enthusiastically build.</p>\r\n"
desc_en: "<p>Conveniently generate high-quality models without client-based methodologies. Collaboratively visualize market-driven content through top-line metrics. Dramatically harness frictionless technology with plug-and-play web-readiness. Completely re-engineer progressive experiences with 24/7 vortals. Professionally transition premier e-business via client-focused solutions.</p>\r\n\r\n<p>Conveniently supply robust vortals without multimedia based methods of empowerment. Continually communicate interdependent networks and one-to-one methodologies. Distinctively pontificate one-to-one e-business before clicks-and-mortar niches. Conveniently harness state of the art total linkage before high-payoff partnerships. Credibly strategize top-line products before orthogonal networks.</p>\r\n\r\n<p>Appropriately fabricate best-of-breed functionalities whereas 2.0 core competencies. Compellingly drive timely processes without empowered outsourcing. Enthusiastically visualize magnetic internal or &quot;organic&quot; sources without stand-alone ROI. Globally benchmark turnkey ROI vis-a-vis front-end innovation. Synergistically underwhelm excellent systems with plug-and-play methodologies.</p>\r\n\r\n<p>Energistically impact user-centric strategic theme areas rather than distinctive infomediaries. Seamlessly incubate enabled architectures rather than worldwide internal or &quot;organic&quot; sources. Objectively redefine empowered platforms and maintainable markets. Rapidiously visualize prospective scenarios after maintainable methods of empowerment. Appropriately evolve cross-unit testing procedures and inexpensive process improvements.</p>\r\n\r\n<p>Distinctively actualize covalent value rather than parallel value. Conveniently re-engineer granular functionalities with effective synergy. Enthusiastically build.</p>\r\n"
image:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/support_service/image/3/package2.jpg'
thumb:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/support_service/image/3/thumb_package2.jpg'
price: '500000.0'
ref_number: SPPRTSRVC0000003
scheduleable: false
seens_count: 2
slug: layanan-dokter-pribadi
company:
id: 16
name: NinjaOne
slug: ninjaone
logo:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/company/logo/16/ninjaOne-icon-blue-green.png'
thumb:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/company/logo/16/thumb_ninjaOne-icon-blue-green.png'
hospital: null
examples:
Example 1:
value:
success: true
code: 200
status: OK
message: OK
data:
id: '3'
type: service_order_participant
attributes:
id: 3
employment_id_number: '10212203'
covered: true
result_enabled: true
status: booked
visit_date: null
profile:
id: 14
full_name: Muhammad Yana Mulyana
date_of_birth: '1993-09-21'
email: muhammadyanaa@gmail.com
avatar:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/profile/avatar/14/unnamed.jpg'
thumb:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/profile/avatar/14/thumb_unnamed.jpg'
service_order:
id: 1
order_name: Batch 1
status: draft
company_id: 16
participants_count: 4
start_date: null
end_date: '2026-03-26T07:00:00.000+07:00'
service_package:
id: 3
name: Layanan Dokter Pribadi
title: Ayo segera beli
description: "<p>Conveniently generate high-quality models without client-based methodologies. Collaboratively visualize market-driven content through top-line metrics. Dramatically harness frictionless technology with plug-and-play web-readiness. Completely re-engineer progressive experiences with 24/7 vortals. Professionally transition premier e-business via client-focused solutions.</p>\r\n\r\n<p>Conveniently supply robust vortals without multimedia based methods of empowerment. Continually communicate interdependent networks and one-to-one methodologies. Distinctively pontificate one-to-one e-business before clicks-and-mortar niches. Conveniently harness state of the art total linkage before high-payoff partnerships. Credibly strategize top-line products before orthogonal networks.</p>\r\n\r\n<p>Appropriately fabricate best-of-breed functionalities whereas 2.0 core competencies. Compellingly drive timely processes without empowered outsourcing. Enthusiastically visualize magnetic internal or &quot;organic&quot; sources without stand-alone ROI. Globally benchmark turnkey ROI vis-a-vis front-end innovation. Synergistically underwhelm excellent systems with plug-and-play methodologies.</p>\r\n\r\n<p>Energistically impact user-centric strategic theme areas rather than distinctive infomediaries. Seamlessly incubate enabled architectures rather than worldwide internal or &quot;organic&quot; sources. Objectively redefine empowered platforms and maintainable markets. Rapidiously visualize prospective scenarios after maintainable methods of empowerment. Appropriately evolve cross-unit testing procedures and inexpensive process improvements.</p>\r\n\r\n<p>Distinctively actualize covalent value rather than parallel value. Conveniently re-engineer granular functionalities with effective synergy. Enthusiastically build.</p>\r\n"
short_desc: ' Conveniently generate high-quality models without client-based methodologies. Collaboratively visualize market-driven content through top-line metrics. Dramatically harness frictionless technology...'
name_id: Layanan Dokter Pribadi
name_en: Layanan Dokter Pribadi
title_id: Ayo segera beli
title_en: Let's buy this package
desc_id: "<p>Conveniently generate high-quality models without client-based methodologies. Collaboratively visualize market-driven content through top-line metrics. Dramatically harness frictionless technology with plug-and-play web-readiness. Completely re-engineer progressive experiences with 24/7 vortals. Professionally transition premier e-business via client-focused solutions.</p>\r\n\r\n<p>Conveniently supply robust vortals without multimedia based methods of empowerment. Continually communicate interdependent networks and one-to-one methodologies. Distinctively pontificate one-to-one e-business before clicks-and-mortar niches. Conveniently harness state of the art total linkage before high-payoff partnerships. Credibly strategize top-line products before orthogonal networks.</p>\r\n\r\n<p>Appropriately fabricate best-of-breed functionalities whereas 2.0 core competencies. Compellingly drive timely processes without empowered outsourcing. Enthusiastically visualize magnetic internal or &quot;organic&quot; sources without stand-alone ROI. Globally benchmark turnkey ROI vis-a-vis front-end innovation. Synergistically underwhelm excellent systems with plug-and-play methodologies.</p>\r\n\r\n<p>Energistically impact user-centric strategic theme areas rather than distinctive infomediaries. Seamlessly incubate enabled architectures rather than worldwide internal or &quot;organic&quot; sources. Objectively redefine empowered platforms and maintainable markets. Rapidiously visualize prospective scenarios after maintainable methods of empowerment. Appropriately evolve cross-unit testing procedures and inexpensive process improvements.</p>\r\n\r\n<p>Distinctively actualize covalent value rather than parallel value. Conveniently re-engineer granular functionalities with effective synergy. Enthusiastically build.</p>\r\n"
desc_en: "<p>Conveniently generate high-quality models without client-based methodologies. Collaboratively visualize market-driven content through top-line metrics. Dramatically harness frictionless technology with plug-and-play web-readiness. Completely re-engineer progressive experiences with 24/7 vortals. Professionally transition premier e-business via client-focused solutions.</p>\r\n\r\n<p>Conveniently supply robust vortals without multimedia based methods of empowerment. Continually communicate interdependent networks and one-to-one methodologies. Distinctively pontificate one-to-one e-business before clicks-and-mortar niches. Conveniently harness state of the art total linkage before high-payoff partnerships. Credibly strategize top-line products before orthogonal networks.</p>\r\n\r\n<p>Appropriately fabricate best-of-breed functionalities whereas 2.0 core competencies. Compellingly drive timely processes without empowered outsourcing. Enthusiastically visualize magnetic internal or &quot;organic&quot; sources without stand-alone ROI. Globally benchmark turnkey ROI vis-a-vis front-end innovation. Synergistically underwhelm excellent systems with plug-and-play methodologies.</p>\r\n\r\n<p>Energistically impact user-centric strategic theme areas rather than distinctive infomediaries. Seamlessly incubate enabled architectures rather than worldwide internal or &quot;organic&quot; sources. Objectively redefine empowered platforms and maintainable markets. Rapidiously visualize prospective scenarios after maintainable methods of empowerment. Appropriately evolve cross-unit testing procedures and inexpensive process improvements.</p>\r\n\r\n<p>Distinctively actualize covalent value rather than parallel value. Conveniently re-engineer granular functionalities with effective synergy. Enthusiastically build.</p>\r\n"
image:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/support_service/image/3/package2.jpg'
thumb:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/support_service/image/3/thumb_package2.jpg'
price: '500000.0'
ref_number: SPPRTSRVC0000003
scheduleable: false
seens_count: 2
slug: layanan-dokter-pribadi
company:
id: 16
name: NinjaOne
slug: ninjaone
logo:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/company/logo/16/ninjaOne-icon-blue-green.png'
thumb:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/company/logo/16/thumb_ninjaOne-icon-blue-green.png'
hospital: null
operationId: show-enrollment
x-stoplight:
id: gtydcnwwqo5z1
parameters:
- schema:
type: string
name: id
in: path
required: true
- $ref: '#/components/parameters/Authorization'
/ehc/medical_results:
get:
summary: Get medical results
tags:
- ehc
responses:
'200':
description: |-
```json
{
"success": true,
"code": 200,
"status": "OK",
"message": "OK",
"data": [
{
"id": "1",
"type": "attachment",
"attributes": {
"id": 1,
"attachment_number": null,
"guarantor": null,
"polyclinic": null,
"created_at": "2025-11-17T04:36:00.000+07:00",
"updated_at": "2025-11-17T04:36:00.000+07:00",
"file": {
"url": null
},
"profile": {
"id": 22,
"full_name": "John Pantau",
"date_of_birth": "1990-01-30",
"email": "john_pantau@gmail.corp",
"avatar": {
"url": "https://hermina.s3.ap-southeast-1.amazonaws.com/assets/images/user.png",
"thumb": {
"url": "https://hermina.s3.ap-southeast-1.amazonaws.com/assets/images/user.png"
}
}
},
"attachable": {
"id": 2,
"order_name": "BATCH 01",
"status": "in_progress",
"company_id": 3,
"participants_count": 151,
"start_date": "2025-10-10T07:00:00.000+07:00",
"end_date": "2025-10-11T07:00:00.000+07:00",
"service_package": {
"id": 4,
"name": "Vessel",
"title": "Vessel",
"description": "<p>Ini vessel</p><p>Vessel adalah vessel</p>",
"short_desc": " Ini vessel Vessel adalah vessel ",
"name_id": "Vessel",
"name_en": "Vessel",
"title_id": "Vessel",
"title_en": "Vessel",
"desc_id": "<p>Ini vessel</p><p>Vessel adalah vessel</p>",
"desc_en": "<p>Ini vessel</p><p>Vessel adalah vessel</p>",
"image": {
"url": "https://dk4fkkwa4o9l0.cloudfront.net/staging/uploads/support_service/image/3/messaging-thumbnail-7Hk2y8a7.png",
"thumb": {
"url": "https://dk4fkkwa4o9l0.cloudfront.net/staging/uploads/support_service/image/3/messaging-thumbnail-7Hk2y8a7.png"
}
},
"price": "0.0",
"ref_number": null,
"scheduleable": false,
"seens_count": 0,
"slug": "samudera-vessel"
},
"company": {
"id": 3,
"name": "PT Samudera Indonesia",
"slug": "samudera-indonesia",
"logo": {
"url": "https://dk4fkkwa4o9l0.cloudfront.net/staging/uploads/company/logo/419/unnamed.png",
"thumb": {
"url": "https://dk4fkkwa4o9l0.cloudfront.net/staging/uploads/company/logo/419/unnamed.png"
}
}
}
},
"hospital": {
"id": 19,
"name": "Hermina Banyumanik",
"address": "Banyumanik",
"logo": {
"url": "https://hermina.s3-ap-southeast-1.amazonaws.com/assets/images/user.svg",
"thumb": {
"url": "https://hermina.s3-ap-southeast-1.amazonaws.com/assets/images/user.svg"
}
},
"slug": "hermina-banyumanik"
},
"doctor": {
"id": 1,
"full_name": "Danang Saputra",
"gender": "male",
"avatar": {
"url": "https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/doctor/avatar/1/thumb_male-doctor.webp",
"webp": {
"url": "https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/doctor/avatar/1/thumb_male-doctor.webp"
},
"thumb": {
"url": "https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/doctor/avatar/1/thumb_male-doctor.webp"
}
}
}
}
}
]
}
```
content:
application/json:
schema:
type: object
properties:
success:
type: boolean
code:
type: integer
status:
type: string
message:
type: string
data:
type: array
items:
type: object
properties:
id:
type: string
type:
type: string
attributes:
type: object
properties:
id:
type: integer
attachment_number:
type: 'null'
guarantor:
type: 'null'
polyclinic:
type: 'null'
created_at:
type: string
updated_at:
type: string
file:
type: object
properties:
url:
type: 'null'
profile:
type: object
properties:
id:
type: integer
full_name:
type: string
date_of_birth:
type: string
email:
type: string
avatar:
type: object
properties:
url:
type: string
thumb:
type: object
properties:
url:
type: string
attachable:
type: object
properties:
id:
type: integer
order_name:
type: string
status:
type: string
company_id:
type: integer
participants_count:
type: integer
start_date:
type: string
end_date:
type: string
service_package:
type: object
properties:
id:
type: integer
name:
type: string
title:
type: string
description:
type: string
short_desc:
type: string
name_id:
type: string
name_en:
type: string
title_id:
type: string
title_en:
type: string
desc_id:
type: string
desc_en:
type: string
image:
type: object
properties:
url:
type: string
thumb:
type: object
properties:
url:
type: string
price:
type: string
ref_number:
type: 'null'
scheduleable:
type: boolean
seens_count:
type: integer
slug:
type: string
company:
type: object
properties:
id:
type: integer
name:
type: string
slug:
type: string
logo:
type: object
properties:
url:
type: string
thumb:
type: object
properties:
url:
type: string
hospital:
type: object
properties:
id:
type: integer
name:
type: string
address:
type: string
logo:
type: object
properties:
url:
type: string
thumb:
type: object
properties:
url:
type: string
slug:
type: string
doctor:
type: object
properties:
id:
type: integer
full_name:
type: string
gender:
type: string
avatar:
type: object
properties:
url:
type: string
webp:
type: object
properties:
url:
type: string
thumb:
type: object
properties:
url:
type: string
x-examples:
Example 1:
success: true
code: 200
status: OK
message: OK
data:
- id: '1'
type: attachment
attributes:
id: 1
attachment_number: null
guarantor: null
polyclinic: null
created_at: '2025-11-17T04:36:00.000+07:00'
updated_at: '2025-11-17T04:36:00.000+07:00'
file:
url: null
profile:
id: 22
full_name: John Pantau
date_of_birth: '1990-01-30'
email: john_pantau@gmail.corp
avatar:
url: 'https://hermina.s3.ap-southeast-1.amazonaws.com/assets/images/user.png'
thumb:
url: 'https://hermina.s3.ap-southeast-1.amazonaws.com/assets/images/user.png'
attachable:
id: 2
order_name: BATCH 01
status: in_progress
company_id: 3
participants_count: 151
start_date: '2025-10-10T07:00:00.000+07:00'
end_date: '2025-10-11T07:00:00.000+07:00'
service_package:
id: 4
name: Vessel
title: Vessel
description: <p>Ini vessel</p><p>Vessel adalah vessel</p>
short_desc: ' Ini vessel Vessel adalah vessel '
name_id: Vessel
name_en: Vessel
title_id: Vessel
title_en: Vessel
desc_id: <p>Ini vessel</p><p>Vessel adalah vessel</p>
desc_en: <p>Ini vessel</p><p>Vessel adalah vessel</p>
image:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/staging/uploads/support_service/image/3/messaging-thumbnail-7Hk2y8a7.png'
thumb:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/staging/uploads/support_service/image/3/messaging-thumbnail-7Hk2y8a7.png'
price: '0.0'
ref_number: null
scheduleable: false
seens_count: 0
slug: samudera-vessel
company:
id: 3
name: PT Samudera Indonesia
slug: samudera-indonesia
logo:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/staging/uploads/company/logo/419/unnamed.png'
thumb:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/staging/uploads/company/logo/419/unnamed.png'
hospital:
id: 19
name: Hermina Banyumanik
address: Banyumanik
logo:
url: 'https://hermina.s3-ap-southeast-1.amazonaws.com/assets/images/user.svg'
thumb:
url: 'https://hermina.s3-ap-southeast-1.amazonaws.com/assets/images/user.svg'
slug: hermina-banyumanik
doctor:
id: 1
full_name: Danang Saputra
gender: male
avatar:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/doctor/avatar/1/thumb_male-doctor.webp'
webp:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/doctor/avatar/1/thumb_male-doctor.webp'
thumb:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/doctor/avatar/1/thumb_male-doctor.webp'
examples:
Example 1:
value:
success: true
code: 200
status: OK
message: OK
data:
- id: '1'
type: attachment
attributes:
id: 1
attachment_number: null
guarantor: null
polyclinic: null
created_at: '2025-11-17T04:36:00.000+07:00'
updated_at: '2025-11-17T04:36:00.000+07:00'
file:
url: null
profile:
id: 22
full_name: John Pantau
date_of_birth: '1990-01-30'
email: john_pantau@gmail.corp
avatar:
url: 'https://hermina.s3.ap-southeast-1.amazonaws.com/assets/images/user.png'
thumb:
url: 'https://hermina.s3.ap-southeast-1.amazonaws.com/assets/images/user.png'
attachable:
id: 2
order_name: BATCH 01
status: in_progress
company_id: 3
participants_count: 151
start_date: '2025-10-10T07:00:00.000+07:00'
end_date: '2025-10-11T07:00:00.000+07:00'
service_package:
id: 4
name: Vessel
title: Vessel
description: <p>Ini vessel</p><p>Vessel adalah vessel</p>
short_desc: ' Ini vessel Vessel adalah vessel '
name_id: Vessel
name_en: Vessel
title_id: Vessel
title_en: Vessel
desc_id: <p>Ini vessel</p><p>Vessel adalah vessel</p>
desc_en: <p>Ini vessel</p><p>Vessel adalah vessel</p>
image:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/staging/uploads/support_service/image/3/messaging-thumbnail-7Hk2y8a7.png'
thumb:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/staging/uploads/support_service/image/3/messaging-thumbnail-7Hk2y8a7.png'
price: '0.0'
ref_number: null
scheduleable: false
seens_count: 0
slug: samudera-vessel
company:
id: 3
name: PT Samudera Indonesia
slug: samudera-indonesia
logo:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/staging/uploads/company/logo/419/unnamed.png'
thumb:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/staging/uploads/company/logo/419/unnamed.png'
hospital:
id: 19
name: Hermina Banyumanik
address: Banyumanik
logo:
url: 'https://hermina.s3-ap-southeast-1.amazonaws.com/assets/images/user.svg'
thumb:
url: 'https://hermina.s3-ap-southeast-1.amazonaws.com/assets/images/user.svg'
slug: hermina-banyumanik
doctor:
id: 1
full_name: Danang Saputra
gender: male
avatar:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/doctor/avatar/1/thumb_male-doctor.webp'
webp:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/doctor/avatar/1/thumb_male-doctor.webp'
thumb:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/doctor/avatar/1/thumb_male-doctor.webp'
operationId: get-ehc-medical-results
x-stoplight:
id: nxtkwe05sstiu
parameters:
- $ref: ./public-api.yaml#/components/parameters/per_page
- $ref: ./public-api.yaml#/components/parameters/page
parameters:
- name: Authorization
in: header
schema:
type: string
default: Bearer eyJhY2Nlc3MtdG9rZW4iOiJMeE56SVpxR0VuUWlFdUVFLWp6TERRIiwidG9rZW4tdHlwZSI6IkJlYXJlciIsImNsaWVudCI6Ik1wOHl3cHQ1NVRoZWpFMTRjTTRKckEiLCJleHBpcnkiOiIxNzYxOTIxMjQ5IiwidWlkIjoiMTExNjY4NzIwMDUzMDY0NjQ4OTc4In0=
description: Bearer token
required: true
/account:
delete:
summary: Delete account
tags:
- account
responses:
'200':
description: |-
```json
{
"success": true,
"code": 200,
"status": "OK",
"message": "Account successfully deleted",
"data": {
"deleted_at": "2025-10-15T22:47:24.053+07:00",
"message": "Your account has been deleted. You can no longer access this account."
}
}
```
content:
application/json:
schema:
type: object
properties:
success:
type: boolean
code:
type: integer
status:
type: string
message:
type: string
data:
type: object
properties:
deleted_at:
type: string
message:
type: string
x-examples:
Example 1:
success: true
code: 200
status: OK
message: Account successfully deleted
data:
deleted_at: '2025-10-15T22:47:24.053+07:00'
message: Your account has been deleted. You can no longer access this account.
examples:
Example 1:
value:
success: true
code: 200
status: OK
message: Account successfully deleted
data:
deleted_at: '2025-10-15T22:47:24.053+07:00'
message: Your account has been deleted. You can no longer access this account.
operationId: delete-account
x-stoplight:
id: tvnhiqt164ke2
requestBody:
description: |-
```json
{
"delete_reason": "No longer use this app"
}
```
content:
application/json:
schema:
type: object
properties:
delete_reason:
type: string
x-examples:
Example 1:
delete_reason: No longer use this app
examples:
Example 1:
value:
delete_reason: No longer use this app
parameters:
- $ref: '#/components/parameters/Authorization'
components:
schemas:
Account:
title: Account
x-stoplight:
id: kpma17cavqgii
type: object
properties:
id:
type: string
x-stoplight:
id: uyg1suzewkedn
responses:
success-create-customer-feedback:
description: Example response
content:
application/json:
schema:
type: object
properties:
success:
type: boolean
code:
type: integer
status:
type: string
message:
type: string
data:
type: object
properties:
id:
type: string
type:
type: string
attributes:
type: object
properties:
id:
type: integer
name:
type: string
message:
type: string
visit_date:
type: string
status:
type: string
email:
type: string
mobile_phone:
type: string
patient_type:
type: string
account_id:
type: integer
hospital_id:
type: integer
payment_method:
type: 'null'
service_departemen:
type: array
items:
type: object
properties: {}
created_at:
type: string
updated_at:
type: string
x-examples:
Example 1:
success: true
code: 200
status: Success
message: 'We appreciate the time that you spend sending us feedback. Your feedback goes directly to our Hospital Management and we will use it to make service improvements and address issues. We might contact you in the future for detailed informations if needed. While we may not respond to every report, we are reviewing and working to address issues as fast as we can.'
data:
id: '37'
type: complaint
attributes:
id: 37
name: Muhammad Yana
message: 'Mohon diperbaikin pelayanannya, pengalaman menggunakan seringnya sih pribadi dan asuransi dan baru sekali dengan BPJS. Sungguh menyedihkan pelayanan BPJS nya sangat tidak direkomendasikan. Mau pelayanan nyaman dan ramah ? jangan harap ramah tamah kesini pake BPJS. Mulai dari dokter, beberapa suster, satpam dan pelayanan administrasi sama sekali tidak ramah. Yth BPJS Kesehatan tolonglah dievaluasi & diperbaiki kasus seperti ini agar setidaknya fasilitas setara dengan asuransi swasta. Slogannya setara tapi aktual tidak setara. Sifat aslinya keluar jika bukan pribadi. Kalau pribadi ramah sekali dan sopan. Kalau BPJS boro boro'
visit_date: '2024-01-20'
status: unreplied
email: muhammadyana.works@gmail.com
mobile_phone: '085714757247'
patient_type: non_jkn
account_id: 7
hospital_id: 1
payment_method: null
service_departemen: []
created_at: '2024-01-20T14:30:05.933+07:00'
updated_at: '2024-01-20T14:30:05.933+07:00'
examples:
success:
value:
success: true
code: 200
status: Success
message: 'We appreciate the time that you spend sending us feedback. Your feedback goes directly to our Hospital Management and we will use it to make service improvements and address issues. We might contact you in the future for detailed informations if needed. While we may not respond to every report, we are reviewing and working to address issues as fast as we can.'
data:
id: '37'
type: complaint
attributes:
id: 37
name: Muhammad Yana
message: 'Mohon diperbaikin pelayanannya, pengalaman menggunakan seringnya sih pribadi dan asuransi dan baru sekali dengan BPJS. Sungguh menyedihkan pelayanan BPJS nya sangat tidak direkomendasikan. Mau pelayanan nyaman dan ramah ? jangan harap ramah tamah kesini pake BPJS. Mulai dari dokter, beberapa suster, satpam dan pelayanan administrasi sama sekali tidak ramah. Yth BPJS Kesehatan tolonglah dievaluasi & diperbaiki kasus seperti ini agar setidaknya fasilitas setara dengan asuransi swasta. Slogannya setara tapi aktual tidak setara. Sifat aslinya keluar jika bukan pribadi. Kalau pribadi ramah sekali dan sopan. Kalau BPJS boro boro'
visit_date: '2024-01-20'
status: unreplied
email: muhammadyana.works@gmail.com
mobile_phone: '085714757247'
patient_type: non_jkn
account_id: 7
hospital_id: 1
payment_method: null
service_departemen: []
created_at: '2024-01-20T14:30:05.933+07:00'
updated_at: '2024-01-20T14:30:05.933+07:00'
failure-create-customer-feedback:
description: Example response
content:
application/json:
schema:
type: object
properties:
success:
type: boolean
code:
type: integer
status:
type: string
message:
type: string
errors:
type: object
properties:
email:
type: array
items:
type: string
message:
type: array
items:
type: string
mobile_phone:
type: array
items:
type: string
visit_date:
type: array
items:
type: string
name:
type: array
items:
type: string
x-examples:
Example 1:
success: false
code: 422
status: Unprocessable Entity
message: 'Email can''t be blank, Message can''t be blank, Mobile phone can''t be blank, Visit date can''t be blank, and Name can''t be blank'
errors:
email:
- can't be blank
message:
- can't be blank
mobile_phone:
- can't be blank
visit_date:
- can't be blank
name:
- can't be blank
examples:
failure:
value:
success: false
code: 422
status: Unprocessable Entity
message: 'Email can''t be blank, Message can''t be blank, Mobile phone can''t be blank, Visit date can''t be blank, and Name can''t be blank'
errors:
email:
- can't be blank
message:
- can't be blank
mobile_phone:
- can't be blank
visit_date:
- can't be blank
name:
- can't be blank
error-ask-doctors:
description: Example response
content:
application/json:
schema:
type: object
properties:
success:
type: boolean
code:
type: integer
status:
type: string
message:
type: string
errors:
type: object
properties:
title:
type: array
items:
type: string
question:
type: array
items:
type: string
x-examples:
Example 1:
success: false
code: 422
status: Unprocessable Entity
message: Title Judul pertanyaan tidak boleh kosong and Question Isi pertanyaan tidak boleh kosong
errors:
title:
- Judul pertanyaan tidak boleh kosong
question:
- Isi pertanyaan tidak boleh kosong
examples:
errors:
value:
success: false
code: 422
status: Unprocessable Entity
message: Title Judul pertanyaan tidak boleh kosong and Question Isi pertanyaan tidak boleh kosong
errors:
title:
- Judul pertanyaan tidak boleh kosong
question:
- Isi pertanyaan tidak boleh kosong
success-ask-doctor:
description: Example response
content:
application/json:
schema:
type: object
properties:
success:
type: boolean
code:
type: integer
status:
type: string
message:
type: string
data:
type: object
properties:
id:
type: string
type:
type: string
attributes:
type: object
properties:
id:
type: integer
title:
type: string
slug:
type: string
question:
type: string
status:
type: string
created_at:
type: string
updated_at:
type: string
account_id:
type: integer
x-examples:
Example 1:
success: true
code: 200
status: Success
message: OK
data:
id: '3'
type: ask_doctor
attributes:
id: 3
title: Cara mengetahui gula dara
slug: cara-mengetahui-gula-dara
question: Continually cultivate cutting-edge information and resource maximizing results. Interactively harness process-centric innovation vis-a-vis standardized interfaces. Seamlessly evolve fully researched opportunities vis-a-vis revolutionary schemas. Appropriately generate economically.
status: unanswered
created_at: '2024-01-24T18:01:32.276+07:00'
updated_at: '2024-01-24T18:01:32.276+07:00'
account_id: 7
examples:
success:
value:
success: true
code: 200
status: Success
message: OK
data:
id: '3'
type: ask_doctor
attributes:
id: 3
title: Cara mengetahui gula dara
slug: cara-mengetahui-gula-dara
question: Continually cultivate cutting-edge information and resource maximizing results. Interactively harness process-centric innovation vis-a-vis standardized interfaces. Seamlessly evolve fully researched opportunities vis-a-vis revolutionary schemas. Appropriately generate economically.
status: unanswered
created_at: '2024-01-24T18:01:32.276+07:00'
updated_at: '2024-01-24T18:01:32.276+07:00'
account_id: 7
check-patient-data-simrs:
description: Example response
content:
application/json:
schema:
type: object
properties:
success:
type: boolean
code:
type: integer
status:
type: string
message:
type: string
data:
type: object
properties:
simrs:
type: object
properties:
metadata:
type: object
properties:
code:
type: string
message:
type: string
count_data:
type: integer
response:
type: object
properties:
list:
type: array
items:
type: object
properties:
patientId:
type: string
MRN:
type: string
prefix:
type: string
patient_name:
type: string
dob:
type: string
gender:
type: string
mobileNo:
type: string
profile:
type: object
properties:
id:
type: integer
full_name:
type: string
gender:
type: string
date_of_birth:
type: string
marital_status:
type: string
blood_type:
type: string
avatar:
type: object
properties:
url:
type: string
thumb:
type: object
properties:
url:
type: string
mobile_phone:
type: string
email:
type: string
account_id:
type: integer
created_at:
type: string
updated_at:
type: string
primary_profile:
type: boolean
deleted_at:
type: 'null'
address:
type: string
nationality:
type: string
medical_record_number:
type: string
birth_place:
type: string
nik:
type: string
phone_verified:
type: boolean
authy_id:
type: integer
otp_sent_at:
type: 'null'
title:
type: 'null'
bpjs_number:
type: 'null'
father_name:
type: string
mother_name:
type: string
ethnic:
type: 'null'
metadata:
type: 'null'
x-examples:
Example 1:
success: true
code: 200
status: Success
message: Patient already registered in SIMRS
data:
simrs:
metadata:
code: '200'
message: SUCCESS
count_data: 2
response:
list:
- patientId: '4344852'
MRN: '1150232908'
prefix: Tn.
patient_name: Vozu Narapati
dob: '1994-04-07'
gender: Laki-Laki
mobileNo: '081289522695'
- patientId: '5219700'
MRN: '1140003034'
prefix: Tn.
patient_name: Vozu Narapati
dob: '1994-04-07'
gender: Laki-Laki
mobileNo: '081289522695'
profile:
id: 7
full_name: Muhammad Yana
gender: Perempuan
date_of_birth: '1994-04-07'
marital_status: married
blood_type: B
avatar:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/profile/avatar/7/a.jpg'
thumb:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/profile/avatar/7/thumb_a.jpg'
mobile_phone: '+6285714757247'
email: muhammadyana.works@gmail.com
account_id: 7
created_at: '2020-04-26T07:14:56.537+07:00'
updated_at: '2024-03-26T14:21:27.358+07:00'
primary_profile: true
deleted_at: null
address: 'Menes, Pandeglang Banten'
nationality: ID
medical_record_number: '1111111111'
birth_place: Pandeglang
nik: '1671080704940007'
phone_verified: true
authy_id: 61401651
otp_sent_at: null
title: null
bpjs_number: null
father_name: Ahmad
mother_name: Maryam
ethnic: null
metadata: null
examples:
Example 1:
value:
success: true
code: 200
status: Success
message: Patient already registered in SIMRS
data:
simrs:
metadata:
code: '200'
message: SUCCESS
count_data: 2
response:
list:
- patientId: '4344852'
MRN: '1150232908'
prefix: Tn.
patient_name: Vozu Narapati
dob: '1994-04-07'
gender: Laki-Laki
mobileNo: '081289522695'
- patientId: '5219700'
MRN: '1140003034'
prefix: Tn.
patient_name: Vozu Narapati
dob: '1994-04-07'
gender: Laki-Laki
mobileNo: '081289522695'
profile:
id: 7
full_name: Muhammad Yana
gender: Perempuan
date_of_birth: '1994-04-07'
marital_status: married
blood_type: B
avatar:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/profile/avatar/7/a.jpg'
thumb:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/profile/avatar/7/thumb_a.jpg'
mobile_phone: '+6285714757247'
email: muhammadyana.works@gmail.com
account_id: 7
created_at: '2020-04-26T07:14:56.537+07:00'
updated_at: '2024-03-26T14:21:27.358+07:00'
primary_profile: true
deleted_at: null
address: 'Menes, Pandeglang Banten'
nationality: ID
medical_record_number: '1111111111'
birth_place: Pandeglang
nik: '1671080704940007'
phone_verified: true
authy_id: 61401651
otp_sent_at: null
title: null
bpjs_number: null
father_name: Ahmad
mother_name: Maryam
ethnic: null
metadata: null
success-generate-otp:
description: Example response
content:
application/json:
schema:
type: object
properties:
success:
type: boolean
code:
type: integer
status:
type: string
message:
type: string
data:
type: object
properties:
table:
type: object
properties:
contacts:
type: array
items:
type: object
properties:
table:
type: object
properties:
input:
type: string
wa_id:
type: string
modifiable:
type: boolean
messages:
type: array
items:
type: object
properties:
table:
type: object
properties:
id:
type: string
modifiable:
type: boolean
meta:
type: object
properties:
table:
type: object
properties:
api_status:
type: string
version:
type: string
modifiable:
type: boolean
modifiable:
type: boolean
x-examples:
Example 1:
success: true
code: 200
status: Success
message: OTP Sent to 6285714757247
data:
table:
contacts:
- table:
input: '6285714757247'
wa_id: '6285714757247'
modifiable: true
messages:
- table:
id: gBGHYoVxR1ckfwIJ9Y_hUKdq-PDh
modifiable: true
meta:
table:
api_status: stable
version: 2.49.6
modifiable: true
modifiable: true
examples:
success:
value:
success: true
code: 200
status: Success
message: OTP Sent to 6285714757247
data:
table:
contacts:
- table:
input: '6285714757247'
wa_id: '6285714757247'
modifiable: true
messages:
- table:
id: gBGHYoVxR1ckfwIJ9Y_hUKdq-PDh
modifiable: true
meta:
table:
api_status: stable
version: 2.49.6
modifiable: true
modifiable: true
failed-send-otp:
description: Example response
content:
application/json:
schema:
type: object
properties:
success:
type: boolean
code:
type: integer
status:
type: string
message:
type: string
data:
type: object
properties:
table:
type: object
properties:
meta:
type: object
properties:
table:
type: object
properties:
api_status:
type: string
version:
type: string
modifiable:
type: boolean
errors:
type: array
items:
type: object
properties:
table:
type: object
properties:
code:
type: integer
title:
type: string
details:
type: string
modifiable:
type: boolean
modifiable:
type: boolean
x-examples:
Example 1:
success: false
code: 422
status: Unprocessable Entity
message: Provided WhatsApp ID is not valid. Please provide a valid WhatsApp ID or a phone number with a country code
data:
table:
meta:
table:
api_status: stable
version: 2.49.6
modifiable: true
errors:
- table:
code: 1009
title: Parameter value is not valid
details: Provided WhatsApp ID is not valid. Please provide a valid WhatsApp ID or a phone number with a country code
modifiable: true
modifiable: true
examples:
fail:
value:
success: false
code: 422
status: Unprocessable Entity
message: Provided WhatsApp ID is not valid. Please provide a valid WhatsApp ID or a phone number with a country code
data:
table:
meta:
table:
api_status: stable
version: 2.49.6
modifiable: true
errors:
- table:
code: 1009
title: Parameter value is not valid
details: Provided WhatsApp ID is not valid. Please provide a valid WhatsApp ID or a phone number with a country code
modifiable: true
modifiable: true
invalid-otp:
description: Example response
content:
application/json:
schema:
type: object
properties:
success:
type: boolean
code:
type: integer
status:
type: string
message:
type: string
x-examples:
Example 1:
success: false
code: 422
status: Unprocessable Entity
message: Invalid OTP please try again
examples:
invalid:
value:
success: false
code: 422
status: Unprocessable Entity
message: Invalid OTP please try again
valid-otp:
description: Example response
content:
application/json:
schema:
type: object
properties:
success:
type: boolean
code:
type: integer
status:
type: string
message:
type: string
data:
type: object
properties:
id:
type: string
type:
type: string
attributes:
type: object
properties:
id:
type: integer
full_name:
type: string
avatar:
type: object
properties:
url:
type: string
thumb:
type: object
properties:
url:
type: string
blood_type:
type: string
date_of_birth:
type: string
email:
type: string
marital_status:
type: string
mobile_phone:
type: string
gender:
type: string
simrs_data:
type: object
properties:
table:
type: object
properties:
success?:
type: boolean
message:
type: string
otp_sent_at:
type: string
phone_verified:
type: boolean
title:
type: 'null'
metadata:
type: 'null'
primary_profile:
type: boolean
x-examples:
Example 1:
success: true
code: 200
status: Success
message: Phone verified
data:
id: '7'
type: profile
attributes:
id: 7
full_name: Muhammad Yana
avatar:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/profile/avatar/7/a.jpg'
thumb:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/profile/avatar/7/thumb_a.jpg'
blood_type: B
date_of_birth: '1994-04-07'
email: muhammadyana.works@gmail.com
marital_status: married
mobile_phone: '+6285714757247'
gender: Perempuan
simrs_data:
table:
success?: false
message: Failed to process response
otp_sent_at: '2024-03-27T12:47:54.901+07:00'
phone_verified: true
title: null
metadata: null
primary_profile: true
examples:
valid:
value:
success: true
code: 200
status: Success
message: Phone verified
data:
id: '7'
type: profile
attributes:
id: 7
full_name: Muhammad Yana
avatar:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/profile/avatar/7/a.jpg'
thumb:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/profile/avatar/7/thumb_a.jpg'
blood_type: B
date_of_birth: '1994-04-07'
email: muhammadyana.works@gmail.com
marital_status: married
mobile_phone: '+6285714757247'
gender: Perempuan
simrs_data:
table:
success?: false
message: Failed to process response
otp_sent_at: '2024-03-27T12:47:54.901+07:00'
phone_verified: true
title: null
metadata: null
primary_profile: true
phone-already-verified:
description: Example response
content:
application/json:
schema:
type: object
properties:
success:
type: boolean
code:
type: integer
status:
type: string
message:
type: string
x-examples:
Example 1:
success: false
code: 403
status: Forbidden
message: Phone number already verified
examples:
verified:
value:
success: false
code: 403
status: Forbidden
message: Phone number already verified
appointments:
description: Example response
content:
application/json:
schema:
type: object
properties:
success:
type: boolean
code:
type: integer
status:
type: string
message:
type: string
data:
type: array
items:
type: object
properties:
id:
type: string
type:
type: string
attributes:
type: object
properties:
id:
type: integer
date:
type: string
email:
type: string
dob:
type: string
name:
type: string
profile_gender:
type: string
profile_nik:
type: 'null'
mobile_phone:
type: string
is_bpjs:
type: boolean
old_patient:
type: boolean
slug:
type: string
time:
type: string
created_at:
type: string
account_id:
type: integer
profile_id:
type: integer
doctor_id:
type: integer
hospital_id:
type: integer
queue_number:
type:
- integer
- 'null'
appointment_time:
type: string
notes:
type: 'null'
schedule_type:
type: string
hospital_name:
type: string
hospital_logo:
type: object
properties:
url:
type: string
thumb:
type: object
properties:
url:
type: string
doctor_name:
type: string
doctor_avatar:
type: object
properties:
url:
type: string
thumb:
type: object
properties:
url:
type: string
doctor_speciality_name:
type: string
payment_method:
type: string
insurance_status:
type:
- 'null'
- string
old_patient?:
type: boolean
estimation_time:
type:
- 'null'
- string
metadata:
type: object
properties:
simrs_data:
type: object
properties:
MRN:
type: string
noted:
type: string
branch:
type: integer
eventid:
type: integer
queueno:
type: integer
visitid:
type: string
unit_name:
type: string
doctor_code:
type: string
doctor_name:
type: string
third_party:
type: string
encounter_id:
type: string
patient_name:
type: string
estimasi_time:
type: string
department_name:
type: string
date_appointment:
type: string
status:
type: string
profile_insurance:
type:
- 'null'
- object
properties:
id:
type: integer
policy_number:
type: string
policy_holder:
type: string
expired_date:
type: string
policy_card_back:
type: object
properties:
url:
type: string
thumb:
type: object
properties:
url:
type: string
policy_card_front:
type: object
properties:
url:
type: string
thumb:
type: object
properties:
url:
type: string
created_at:
type: string
status:
type: string
rejection_reason:
type: string
updated_at:
type: string
insurance_id:
type: integer
insurance:
type: object
properties:
id:
type: integer
name:
type: string
alias:
type: 'null'
description:
type: 'null'
logo:
type: object
properties:
url:
type: string
thumb:
type: object
properties:
url:
type: string
slug:
type: string
created_at:
type: string
updated_at:
type: string
pagination:
type: object
properties:
vars:
type: object
properties:
count_args:
type: array
items:
type: string
ends:
type: boolean
limit:
type: integer
outset:
type: integer
page:
type: integer
page_param:
type: string
size:
type: integer
steps:
type: boolean
trim_extra:
type: boolean
countless_minimal:
type: boolean
headers:
type: object
properties:
page:
type: string
limit:
type: string
count:
type: string
pages:
type: string
count:
type: integer
count:
type: integer
page:
type: integer
outset:
type: integer
limit:
type: integer
offset:
type: integer
last:
type: integer
from:
type: integer
to:
type: integer
in:
type: integer
prev:
type: 'null'
next:
type: 'null'
x-examples:
Example 1:
success: true
code: 200
status: OK
message: OK
data:
- id: '57'
type: appointment
attributes:
id: 57
date: '2022-06-06T00:00:00.000+07:00'
email: muhammadyanaa@gmail.com
dob: '1993-09-21'
name: Muhammad Yana Mulyana
profile_gender: Male
profile_nik: null
mobile_phone: '6281221344848'
is_bpjs: false
old_patient: false
slug: eb07bd0b-e60d-44ec-af7a-ea8f0b90513b
time: '13:00 - 14:00'
created_at: '2022-06-03T23:38:11.666+07:00'
account_id: 14
profile_id: 14
doctor_id: 179
hospital_id: 31
queue_number: null
appointment_time: 'Monday - 13:00 - 14:00'
notes: null
schedule_type: executive
hospital_name: Hermina Padang
hospital_logo:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/hospital/logo/31/RS-Hermina-Padang-1024x712.jpg'
thumb:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/hospital/logo/31/thumb_RS-Hermina-Padang-1024x712.jpg'
doctor_name: malika
doctor_avatar:
url: 'https://hermina.s3-ap-southeast-1.amazonaws.com/assets/images/user.svg'
thumb:
url: 'https://hermina.s3-ap-southeast-1.amazonaws.com/assets/images/user.svg'
doctor_speciality_name: AKUPUNTUR (EXC)
payment_method: Insurance
insurance_status: approved
old_patient?: false
estimation_time: null
metadata:
simrs_data:
MRN: '1350016825'
noted: 'Silahkan Lengkapi Informasi Penjaminan Anda, Hubungi Bagian Pendaftaran'
branch: 104
eventid: 13931016
queueno: 2
visitid: '18764958'
unit_name: Spesialis Kedokteran Fisik & Rehabilitasi Medik Eksekutif
doctor_code: 104201015SP
doctor_name: 'Tirza Z Tamin, Sp.KFR'
third_party: 'ASURANSI ASTRA BUANA, PT'
encounter_id: '10361255'
patient_name: MUHAMMAD GHIBRAN HAFIT
estimasi_time: '19:06-19:11'
department_name: Kedokteran Fisik dan Rehabilitasi Medik
date_appointment: 'Oct 27, 2023 7:06:00 PM'
status: confirmed
profile_insurance:
id: 13
policy_number: '2131233123123'
policy_holder: Yana
expired_date: '2025-09-04'
policy_card_back:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/assets/images/umbrella-insurance.svg'
thumb:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/assets/images/umbrella-insurance.svg'
policy_card_front:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/assets/images/umbrella-insurance.svg'
thumb:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/assets/images/umbrella-insurance.svg'
created_at: '2024-09-04T12:43:02.253+07:00'
status: rejected
rejection_reason: |-
Globally enable revolutionary potentialities vis-a-vis distributed users. Dynamically enhance leading-edge portals for alternative partnerships. Continually target cross-media outsourcing for enterprise functionalities. Phosfluorescently monetize progressive leadership skills after proactive partnerships. Competently maintain ethical testing procedures with transparent quality vectors.
Dynamically impact client-centric convergence before ethical content. Credibly deploy global value for an expanded array of e-business. Continually evisculate empowered ideas through strategic information. Conveniently benchmark accurate functionalities rather than fully researched imperatives. Rapidiously provide access to B2B synergy for future-proof relationships.
updated_at: '2025-02-02T00:57:34.076+07:00'
insurance_id: 84
insurance:
id: 84
name: |
Parolamas
alias: null
description: null
logo:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/assets/images/umbrella-insurance.svg'
thumb:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/assets/images/umbrella-insurance.svg'
slug: parolamas
created_at: '2020-02-20T09:33:19.353+07:00'
updated_at: '2020-02-20T09:33:19.353+07:00'
- id: '56'
type: appointment
attributes:
id: 56
date: '2022-06-20T00:00:00.000+07:00'
email: muhammadyanaa@gmail.com
dob: '1993-09-21'
name: Muhammad Yana Mulyana
profile_gender: Male
profile_nik: null
mobile_phone: '6281221344848'
is_bpjs: false
old_patient: false
slug: ce149706-995b-45a0-9825-6300ce4eb77d
time: '13:00 - 14:00'
created_at: '2022-06-03T23:37:32.866+07:00'
account_id: 14
profile_id: 14
doctor_id: 179
hospital_id: 31
queue_number: null
appointment_time: 'Monday - 13:00 - 14:00'
notes: null
schedule_type: executive
hospital_name: Hermina Padang
hospital_logo:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/hospital/logo/31/RS-Hermina-Padang-1024x712.jpg'
thumb:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/hospital/logo/31/thumb_RS-Hermina-Padang-1024x712.jpg'
doctor_name: malika
doctor_avatar:
url: 'https://hermina.s3-ap-southeast-1.amazonaws.com/assets/images/user.svg'
thumb:
url: 'https://hermina.s3-ap-southeast-1.amazonaws.com/assets/images/user.svg'
doctor_speciality_name: AKUPUNTUR (EXC)
payment_method: Personal
insurance_status: null
old_patient?: false
estimation_time: null
metadata: {}
status: upcoming
profile_insurance: null
- id: '55'
type: appointment
attributes:
id: 55
date: '2022-03-31T10:00:00.000+07:00'
email: muhammadyanaa@gmail.com
dob: '1993-09-21'
name: Muhammad Yana Mulyana
profile_gender: Male
profile_nik: null
mobile_phone: '6281221344848'
is_bpjs: false
old_patient: false
slug: 8d41d423-f29e-4e44-8303-347e30605b41
time: '11:00 - 12:00'
created_at: '2022-03-28T10:32:47.078+07:00'
account_id: 14
profile_id: 14
doctor_id: 153
hospital_id: 31
queue_number: 2
appointment_time: 'Thursday - 11:00 - 12:00'
notes: null
schedule_type: executive
hospital_name: Hermina Padang
hospital_logo:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/hospital/logo/31/RS-Hermina-Padang-1024x712.jpg'
thumb:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/hospital/logo/31/thumb_RS-Hermina-Padang-1024x712.jpg'
doctor_name: Anggun Juwita
doctor_avatar:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/doctor/avatar/153/female-doctor.jpg'
thumb:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/doctor/avatar/153/thumb_female-doctor.jpg'
doctor_speciality_name: BEDAH TULANG
payment_method: Personal
insurance_status: null
old_patient?: false
estimation_time: '2022-03-31T10:00:00.000+07:00'
metadata: {}
status: confirmed
profile_insurance: null
- id: '43'
type: appointment
attributes:
id: 43
date: '2020-12-07T00:00:00.000+07:00'
email: muhammadyanaa@gmail.com
dob: '1993-09-21'
name: Muhammad Yana Mulyana
profile_gender: Male
profile_nik: null
mobile_phone: '+6285714757247'
is_bpjs: false
old_patient: false
slug: 51d21127-f070-4f6d-924c-cb04aa0b4f8e
time: '13:00 - 14:00'
created_at: '2020-11-23T20:41:26.224+07:00'
account_id: 14
profile_id: 14
doctor_id: 179
hospital_id: 31
queue_number: null
appointment_time: 'Monday - 13:00 - 14:00'
notes: null
schedule_type: executive
hospital_name: Hermina Padang
hospital_logo:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/hospital/logo/31/RS-Hermina-Padang-1024x712.jpg'
thumb:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/hospital/logo/31/thumb_RS-Hermina-Padang-1024x712.jpg'
doctor_name: malika
doctor_avatar:
url: 'https://hermina.s3-ap-southeast-1.amazonaws.com/assets/images/user.svg'
thumb:
url: 'https://hermina.s3-ap-southeast-1.amazonaws.com/assets/images/user.svg'
doctor_speciality_name: AKUPUNTUR (EXC)
payment_method: Personal
insurance_status: null
old_patient?: false
estimation_time: null
metadata: {}
status: confirmed
profile_insurance: null
- id: '42'
type: appointment
attributes:
id: 42
date: '2020-11-30T00:00:00.000+07:00'
email: muhammadyanaa@gmail.com
dob: '1993-09-21'
name: Muhammad Yana Mulyana
profile_gender: Male
profile_nik: null
mobile_phone: '+6285714757247'
is_bpjs: false
old_patient: false
slug: 94b2eeb9-d783-46d6-93a0-1491e1a2df68
time: '13:00 - 14:00'
created_at: '2020-11-23T20:40:23.212+07:00'
account_id: 14
profile_id: 14
doctor_id: 179
hospital_id: 31
queue_number: null
appointment_time: 'Monday - 13:00 - 14:00'
notes: null
schedule_type: executive
hospital_name: Hermina Padang
hospital_logo:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/hospital/logo/31/RS-Hermina-Padang-1024x712.jpg'
thumb:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/hospital/logo/31/thumb_RS-Hermina-Padang-1024x712.jpg'
doctor_name: malika
doctor_avatar:
url: 'https://hermina.s3-ap-southeast-1.amazonaws.com/assets/images/user.svg'
thumb:
url: 'https://hermina.s3-ap-southeast-1.amazonaws.com/assets/images/user.svg'
doctor_speciality_name: AKUPUNTUR (EXC)
payment_method: Personal
insurance_status: null
old_patient?: false
estimation_time: null
metadata: {}
status: upcoming
profile_insurance: null
pagination:
vars:
count_args:
- all
ends: true
limit: 10
outset: 0
page: 1
page_param: page
size: 7
steps: false
trim_extra: true
countless_minimal: false
headers:
page: current-page
limit: page-items
count: total-count
pages: total-pages
count: 5
count: 5
page: 1
outset: 0
limit: 10
offset: 0
last: 1
from: 1
to: 5
in: 5
prev: null
next: null
examples:
Example 1:
value:
success: true
code: 200
status: OK
message: OK
data:
- id: '57'
type: appointment
attributes:
id: 57
date: '2022-06-06T00:00:00.000+07:00'
email: muhammadyanaa@gmail.com
dob: '1993-09-21'
name: Muhammad Yana Mulyana
profile_gender: Male
profile_nik: null
mobile_phone: '6281221344848'
is_bpjs: false
old_patient: false
slug: eb07bd0b-e60d-44ec-af7a-ea8f0b90513b
time: '13:00 - 14:00'
created_at: '2022-06-03T23:38:11.666+07:00'
account_id: 14
profile_id: 14
doctor_id: 179
hospital_id: 31
queue_number: null
appointment_time: 'Monday - 13:00 - 14:00'
notes: null
schedule_type: executive
hospital_name: Hermina Padang
hospital_logo:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/hospital/logo/31/RS-Hermina-Padang-1024x712.jpg'
thumb:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/hospital/logo/31/thumb_RS-Hermina-Padang-1024x712.jpg'
doctor_name: malika
doctor_avatar:
url: 'https://hermina.s3-ap-southeast-1.amazonaws.com/assets/images/user.svg'
thumb:
url: 'https://hermina.s3-ap-southeast-1.amazonaws.com/assets/images/user.svg'
doctor_speciality_name: AKUPUNTUR (EXC)
payment_method: Insurance
insurance_status: approved
old_patient?: false
estimation_time: null
metadata:
simrs_data:
MRN: '1350016825'
noted: 'Silahkan Lengkapi Informasi Penjaminan Anda, Hubungi Bagian Pendaftaran'
branch: 104
eventid: 13931016
queueno: 2
visitid: '18764958'
unit_name: Spesialis Kedokteran Fisik & Rehabilitasi Medik Eksekutif
doctor_code: 104201015SP
doctor_name: 'Tirza Z Tamin, Sp.KFR'
third_party: 'ASURANSI ASTRA BUANA, PT'
encounter_id: '10361255'
patient_name: MUHAMMAD GHIBRAN HAFIT
estimasi_time: '19:06-19:11'
department_name: Kedokteran Fisik dan Rehabilitasi Medik
date_appointment: 'Oct 27, 2023 7:06:00 PM'
status: confirmed
profile_insurance:
id: 13
policy_number: '2131233123123'
policy_holder: Yana
expired_date: '2025-09-04'
policy_card_back:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/assets/images/umbrella-insurance.svg'
thumb:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/assets/images/umbrella-insurance.svg'
policy_card_front:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/assets/images/umbrella-insurance.svg'
thumb:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/assets/images/umbrella-insurance.svg'
created_at: '2024-09-04T12:43:02.253+07:00'
status: rejected
rejection_reason: |-
Globally enable revolutionary potentialities vis-a-vis distributed users. Dynamically enhance leading-edge portals for alternative partnerships. Continually target cross-media outsourcing for enterprise functionalities. Phosfluorescently monetize progressive leadership skills after proactive partnerships. Competently maintain ethical testing procedures with transparent quality vectors.
Dynamically impact client-centric convergence before ethical content. Credibly deploy global value for an expanded array of e-business. Continually evisculate empowered ideas through strategic information. Conveniently benchmark accurate functionalities rather than fully researched imperatives. Rapidiously provide access to B2B synergy for future-proof relationships.
updated_at: '2025-02-02T00:57:34.076+07:00'
insurance_id: 84
insurance:
id: 84
name: |
Parolamas
alias: null
description: null
logo:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/assets/images/umbrella-insurance.svg'
thumb:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/assets/images/umbrella-insurance.svg'
slug: parolamas
created_at: '2020-02-20T09:33:19.353+07:00'
updated_at: '2020-02-20T09:33:19.353+07:00'
- id: '56'
type: appointment
attributes:
id: 56
date: '2022-06-20T00:00:00.000+07:00'
email: muhammadyanaa@gmail.com
dob: '1993-09-21'
name: Muhammad Yana Mulyana
profile_gender: Male
profile_nik: null
mobile_phone: '6281221344848'
is_bpjs: false
old_patient: false
slug: ce149706-995b-45a0-9825-6300ce4eb77d
time: '13:00 - 14:00'
created_at: '2022-06-03T23:37:32.866+07:00'
account_id: 14
profile_id: 14
doctor_id: 179
hospital_id: 31
queue_number: null
appointment_time: 'Monday - 13:00 - 14:00'
notes: null
schedule_type: executive
hospital_name: Hermina Padang
hospital_logo:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/hospital/logo/31/RS-Hermina-Padang-1024x712.jpg'
thumb:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/hospital/logo/31/thumb_RS-Hermina-Padang-1024x712.jpg'
doctor_name: malika
doctor_avatar:
url: 'https://hermina.s3-ap-southeast-1.amazonaws.com/assets/images/user.svg'
thumb:
url: 'https://hermina.s3-ap-southeast-1.amazonaws.com/assets/images/user.svg'
doctor_speciality_name: AKUPUNTUR (EXC)
payment_method: Personal
insurance_status: null
old_patient?: false
estimation_time: null
metadata: {}
status: upcoming
profile_insurance: null
- id: '55'
type: appointment
attributes:
id: 55
date: '2022-03-31T10:00:00.000+07:00'
email: muhammadyanaa@gmail.com
dob: '1993-09-21'
name: Muhammad Yana Mulyana
profile_gender: Male
profile_nik: null
mobile_phone: '6281221344848'
is_bpjs: false
old_patient: false
slug: 8d41d423-f29e-4e44-8303-347e30605b41
time: '11:00 - 12:00'
created_at: '2022-03-28T10:32:47.078+07:00'
account_id: 14
profile_id: 14
doctor_id: 153
hospital_id: 31
queue_number: 2
appointment_time: 'Thursday - 11:00 - 12:00'
notes: null
schedule_type: executive
hospital_name: Hermina Padang
hospital_logo:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/hospital/logo/31/RS-Hermina-Padang-1024x712.jpg'
thumb:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/hospital/logo/31/thumb_RS-Hermina-Padang-1024x712.jpg'
doctor_name: Anggun Juwita
doctor_avatar:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/doctor/avatar/153/female-doctor.jpg'
thumb:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/doctor/avatar/153/thumb_female-doctor.jpg'
doctor_speciality_name: BEDAH TULANG
payment_method: Personal
insurance_status: null
old_patient?: false
estimation_time: '2022-03-31T10:00:00.000+07:00'
metadata: {}
status: confirmed
profile_insurance: null
- id: '43'
type: appointment
attributes:
id: 43
date: '2020-12-07T00:00:00.000+07:00'
email: muhammadyanaa@gmail.com
dob: '1993-09-21'
name: Muhammad Yana Mulyana
profile_gender: Male
profile_nik: null
mobile_phone: '+6285714757247'
is_bpjs: false
old_patient: false
slug: 51d21127-f070-4f6d-924c-cb04aa0b4f8e
time: '13:00 - 14:00'
created_at: '2020-11-23T20:41:26.224+07:00'
account_id: 14
profile_id: 14
doctor_id: 179
hospital_id: 31
queue_number: null
appointment_time: 'Monday - 13:00 - 14:00'
notes: null
schedule_type: executive
hospital_name: Hermina Padang
hospital_logo:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/hospital/logo/31/RS-Hermina-Padang-1024x712.jpg'
thumb:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/hospital/logo/31/thumb_RS-Hermina-Padang-1024x712.jpg'
doctor_name: malika
doctor_avatar:
url: 'https://hermina.s3-ap-southeast-1.amazonaws.com/assets/images/user.svg'
thumb:
url: 'https://hermina.s3-ap-southeast-1.amazonaws.com/assets/images/user.svg'
doctor_speciality_name: AKUPUNTUR (EXC)
payment_method: Personal
insurance_status: null
old_patient?: false
estimation_time: null
metadata: {}
status: confirmed
profile_insurance: null
- id: '42'
type: appointment
attributes:
id: 42
date: '2020-11-30T00:00:00.000+07:00'
email: muhammadyanaa@gmail.com
dob: '1993-09-21'
name: Muhammad Yana Mulyana
profile_gender: Male
profile_nik: null
mobile_phone: '+6285714757247'
is_bpjs: false
old_patient: false
slug: 94b2eeb9-d783-46d6-93a0-1491e1a2df68
time: '13:00 - 14:00'
created_at: '2020-11-23T20:40:23.212+07:00'
account_id: 14
profile_id: 14
doctor_id: 179
hospital_id: 31
queue_number: null
appointment_time: 'Monday - 13:00 - 14:00'
notes: null
schedule_type: executive
hospital_name: Hermina Padang
hospital_logo:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/hospital/logo/31/RS-Hermina-Padang-1024x712.jpg'
thumb:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/hospital/logo/31/thumb_RS-Hermina-Padang-1024x712.jpg'
doctor_name: malika
doctor_avatar:
url: 'https://hermina.s3-ap-southeast-1.amazonaws.com/assets/images/user.svg'
thumb:
url: 'https://hermina.s3-ap-southeast-1.amazonaws.com/assets/images/user.svg'
doctor_speciality_name: AKUPUNTUR (EXC)
payment_method: Personal
insurance_status: null
old_patient?: false
estimation_time: null
metadata: {}
status: upcoming
profile_insurance: null
pagination:
vars:
count_args:
- all
ends: true
limit: 10
outset: 0
page: 1
page_param: page
size: 7
steps: false
trim_extra: true
countless_minimal: false
headers:
page: current-page
limit: page-items
count: total-count
pages: total-pages
count: 5
count: 5
page: 1
outset: 0
limit: 10
offset: 0
last: 1
from: 1
to: 5
in: 5
prev: null
next: null
appointment:
description: Example response
content:
application/json:
schema:
type: object
properties:
success:
type: boolean
code:
type: integer
status:
type: string
message:
type: string
data:
type: object
properties:
id:
type: string
type:
type: string
attributes:
type: object
properties:
id:
type: integer
date:
type: string
email:
type: string
dob:
type: string
name:
type: string
profile_gender:
type: string
profile_nik:
type: 'null'
mobile_phone:
type: string
is_bpjs:
type: boolean
old_patient:
type: boolean
slug:
type: string
time:
type: string
created_at:
type: string
account_id:
type: integer
profile_id:
type: integer
doctor_id:
type: integer
hospital_id:
type: integer
queue_number:
type: 'null'
appointment_time:
type: string
notes:
type: 'null'
schedule_type:
type: string
hospital_name:
type: string
hospital_logo:
type: object
properties:
url:
type: string
thumb:
type: object
properties:
url:
type: string
doctor_name:
type: string
doctor_avatar:
type: object
properties:
url:
type: string
thumb:
type: object
properties:
url:
type: string
doctor_speciality_name:
type: string
payment_method:
type: string
insurance_status:
type: string
old_patient?:
type: boolean
estimation_time:
type: 'null'
metadata:
type: object
properties:
simrs_data:
type: object
properties:
MRN:
type: string
noted:
type: string
branch:
type: integer
eventid:
type: integer
queueno:
type: integer
visitid:
type: string
unit_name:
type: string
doctor_code:
type: string
doctor_name:
type: string
third_party:
type: string
encounter_id:
type: string
patient_name:
type: string
estimasi_time:
type: string
department_name:
type: string
date_appointment:
type: string
status:
type: string
profile_insurance:
type: object
properties:
id:
type: integer
policy_number:
type: string
policy_holder:
type: string
expired_date:
type: string
policy_card_back:
type: object
properties:
url:
type: string
thumb:
type: object
properties:
url:
type: string
policy_card_front:
type: object
properties:
url:
type: string
thumb:
type: object
properties:
url:
type: string
created_at:
type: string
status:
type: string
rejection_reason:
type: string
updated_at:
type: string
insurance_id:
type: integer
insurance:
type: object
properties:
id:
type: integer
name:
type: string
alias:
type: 'null'
description:
type: 'null'
logo:
type: object
properties:
url:
type: string
thumb:
type: object
properties:
url:
type: string
slug:
type: string
created_at:
type: string
updated_at:
type: string
x-examples:
Example 1:
success: true
code: 200
status: OK
message: OK
data:
id: '57'
type: appointment
attributes:
id: 57
date: '2022-06-06T00:00:00.000+07:00'
email: muhammadyanaa@gmail.com
dob: '1993-09-21'
name: Muhammad Yana Mulyana
profile_gender: Male
profile_nik: null
mobile_phone: '6281221344848'
is_bpjs: false
old_patient: false
slug: eb07bd0b-e60d-44ec-af7a-ea8f0b90513b
time: '13:00 - 14:00'
created_at: '2022-06-03T23:38:11.666+07:00'
account_id: 14
profile_id: 14
doctor_id: 179
hospital_id: 31
queue_number: null
appointment_time: 'Monday - 13:00 - 14:00'
notes: null
schedule_type: executive
hospital_name: Hermina Padang
hospital_logo:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/hospital/logo/31/RS-Hermina-Padang-1024x712.jpg'
thumb:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/hospital/logo/31/thumb_RS-Hermina-Padang-1024x712.jpg'
doctor_name: malika
doctor_avatar:
url: 'https://hermina.s3-ap-southeast-1.amazonaws.com/assets/images/user.svg'
thumb:
url: 'https://hermina.s3-ap-southeast-1.amazonaws.com/assets/images/user.svg'
doctor_speciality_name: AKUPUNTUR (EXC)
payment_method: Insurance
insurance_status: approved
old_patient?: false
estimation_time: null
metadata:
simrs_data:
MRN: '1350016825'
noted: 'Silahkan Lengkapi Informasi Penjaminan Anda, Hubungi Bagian Pendaftaran'
branch: 104
eventid: 13931016
queueno: 2
visitid: '18764958'
unit_name: Spesialis Kedokteran Fisik & Rehabilitasi Medik Eksekutif
doctor_code: 104201015SP
doctor_name: 'Tirza Z Tamin, Sp.KFR'
third_party: 'ASURANSI ASTRA BUANA, PT'
encounter_id: '10361255'
patient_name: MUHAMMAD GHIBRAN HAFIT
estimasi_time: '19:06-19:11'
department_name: Kedokteran Fisik dan Rehabilitasi Medik
date_appointment: 'Oct 27, 2023 7:06:00 PM'
status: confirmed
profile_insurance:
id: 13
policy_number: '2131233123123'
policy_holder: Yana
expired_date: '2025-09-04'
policy_card_back:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/assets/images/umbrella-insurance.svg'
thumb:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/assets/images/umbrella-insurance.svg'
policy_card_front:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/assets/images/umbrella-insurance.svg'
thumb:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/assets/images/umbrella-insurance.svg'
created_at: '2024-09-04T12:43:02.253+07:00'
status: rejected
rejection_reason: |-
Globally enable revolutionary potentialities vis-a-vis distributed users. Dynamically enhance leading-edge portals for alternative partnerships. Continually target cross-media outsourcing for enterprise functionalities. Phosfluorescently monetize progressive leadership skills after proactive partnerships. Competently maintain ethical testing procedures with transparent quality vectors.
Dynamically impact client-centric convergence before ethical content. Credibly deploy global value for an expanded array of e-business. Continually evisculate empowered ideas through strategic information. Conveniently benchmark accurate functionalities rather than fully researched imperatives. Rapidiously provide access to B2B synergy for future-proof relationships.
updated_at: '2025-02-02T00:57:34.076+07:00'
insurance_id: 84
insurance:
id: 84
name: |
Parolamas
alias: null
description: null
logo:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/assets/images/umbrella-insurance.svg'
thumb:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/assets/images/umbrella-insurance.svg'
slug: parolamas
created_at: '2020-02-20T09:33:19.353+07:00'
updated_at: '2020-02-20T09:33:19.353+07:00'
examples:
Example 1:
value:
success: true
code: 200
status: OK
message: OK
data:
id: '57'
type: appointment
attributes:
id: 57
date: '2022-06-06T00:00:00.000+07:00'
email: muhammadyanaa@gmail.com
dob: '1993-09-21'
name: Muhammad Yana Mulyana
profile_gender: Male
profile_nik: null
mobile_phone: '6281221344848'
is_bpjs: false
old_patient: false
slug: eb07bd0b-e60d-44ec-af7a-ea8f0b90513b
time: '13:00 - 14:00'
created_at: '2022-06-03T23:38:11.666+07:00'
account_id: 14
profile_id: 14
doctor_id: 179
hospital_id: 31
queue_number: null
appointment_time: 'Monday - 13:00 - 14:00'
notes: null
schedule_type: executive
hospital_name: Hermina Padang
hospital_logo:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/hospital/logo/31/RS-Hermina-Padang-1024x712.jpg'
thumb:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/hospital/logo/31/thumb_RS-Hermina-Padang-1024x712.jpg'
doctor_name: malika
doctor_avatar:
url: 'https://hermina.s3-ap-southeast-1.amazonaws.com/assets/images/user.svg'
thumb:
url: 'https://hermina.s3-ap-southeast-1.amazonaws.com/assets/images/user.svg'
doctor_speciality_name: AKUPUNTUR (EXC)
payment_method: Insurance
insurance_status: approved
old_patient?: false
estimation_time: null
metadata:
simrs_data:
MRN: '1350016825'
noted: 'Silahkan Lengkapi Informasi Penjaminan Anda, Hubungi Bagian Pendaftaran'
branch: 104
eventid: 13931016
queueno: 2
visitid: '18764958'
unit_name: Spesialis Kedokteran Fisik & Rehabilitasi Medik Eksekutif
doctor_code: 104201015SP
doctor_name: 'Tirza Z Tamin, Sp.KFR'
third_party: 'ASURANSI ASTRA BUANA, PT'
encounter_id: '10361255'
patient_name: MUHAMMAD GHIBRAN HAFIT
estimasi_time: '19:06-19:11'
department_name: Kedokteran Fisik dan Rehabilitasi Medik
date_appointment: 'Oct 27, 2023 7:06:00 PM'
status: confirmed
profile_insurance:
id: 13
policy_number: '2131233123123'
policy_holder: Yana
expired_date: '2025-09-04'
policy_card_back:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/assets/images/umbrella-insurance.svg'
thumb:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/assets/images/umbrella-insurance.svg'
policy_card_front:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/assets/images/umbrella-insurance.svg'
thumb:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/assets/images/umbrella-insurance.svg'
created_at: '2024-09-04T12:43:02.253+07:00'
status: rejected
rejection_reason: |-
Globally enable revolutionary potentialities vis-a-vis distributed users. Dynamically enhance leading-edge portals for alternative partnerships. Continually target cross-media outsourcing for enterprise functionalities. Phosfluorescently monetize progressive leadership skills after proactive partnerships. Competently maintain ethical testing procedures with transparent quality vectors.
Dynamically impact client-centric convergence before ethical content. Credibly deploy global value for an expanded array of e-business. Continually evisculate empowered ideas through strategic information. Conveniently benchmark accurate functionalities rather than fully researched imperatives. Rapidiously provide access to B2B synergy for future-proof relationships.
updated_at: '2025-02-02T00:57:34.076+07:00'
insurance_id: 84
insurance:
id: 84
name: |
Parolamas
alias: null
description: null
logo:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/assets/images/umbrella-insurance.svg'
thumb:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/assets/images/umbrella-insurance.svg'
slug: parolamas
created_at: '2020-02-20T09:33:19.353+07:00'
updated_at: '2020-02-20T09:33:19.353+07:00'
success-like-doctor:
description: |-
`{
"success": true,
"code": 200,
"status": "Success",
"message": "Doctor liked successfully"
}`
content:
application/json:
schema:
type: object
properties:
success:
type: boolean
code:
type: integer
status:
type: string
message:
type: string
x-examples:
Example 1:
success: true
code: 200
status: Success
message: Doctor liked successfully
examples:
success-like:
value:
success: true
code: 200
status: Success
message: Doctor liked successfully
failed-like-doctor:
description: |-
`{
"success": false,
"code": 422,
"status": "Unprocessable Entity",
"message": "Validation failed: Account has already liked this item"
}`
content:
application/json:
schema:
type: object
properties:
success:
type: boolean
code:
type: integer
status:
type: string
message:
type: string
x-examples:
Example 1:
success: false
code: 422
status: Unprocessable Entity
message: 'Validation failed: Account has already liked this item'
examples:
fail:
value:
success: false
code: 422
status: Unprocessable Entity
message: 'Validation failed: Account has already liked this item'
success-unlike-doctor:
description: |-
```json
{
"success": true,
"code": 200,
"status": "Success",
"message": "Doctor unliked successfully"
}
```
content:
application/json:
schema:
type: object
properties:
success:
type: boolean
code:
type: integer
status:
type: string
message:
type: string
x-examples:
Example 1:
success: true
code: 200
status: Success
message: Doctor unliked successfully
examples:
Example 1:
value:
success: true
code: 200
status: Success
message: Doctor unliked successfully
liked_doctors:
description: |-
```json
{
"success": true,
"code": 200,
"status": "Success",
"message": "OK",
"data": [
{
"id": "185",
"type": "doctor",
"attributes": {
"id": 185,
"full_name": "Dea Ramadanti",
"about": "",
"slug": "dea-ramadanti",
"practic_locations": [
"Hermina Pasteur",
"Hermina Balikpapan"
],
"speciality": "ANAK",
"avatar": {
"url": "https://hermina.s3-ap-southeast-1.amazonaws.com/assets/images/user.svg",
"thumb": {
"url": "https://hermina.s3-ap-southeast-1.amazonaws.com/assets/images/user.svg"
}
},
"available_for_appointment": true,
"meta_tags": {
"title": "Dea Ramadanti",
"description": "Dea Ramadanti - Jadwal dokter Dea Ramadanti, ",
"keyword": "Dea Ramadanti, Jadwal Dokter Dea Ramadanti, Jadwal Dokter Hermina, Online Appointment, ANAK, Dea,Ramadanti",
"image": "https://hermina.s3-ap-southeast-1.amazonaws.com/assets/images/user.svg"
},
"educations": [
{
"year": "1996",
"school": "[\"SMA 8\", \"Universitas Kedokteran Indonesia\"]"
},
{
"year": "1993",
"school": "Brookville TAFE"
},
{
"year": "2011",
"school": "Brighthurst Technical College"
},
{
"year": "2018",
"school": "Ostbarrow TAFE"
},
{
"year": "1984",
"school": "Brighthurst University"
}
],
"hospitals": [
{
"id": 7,
"name": "Hermina Pasteur",
"address": "Hermina Pasteur Hospital, Jalan Doktor Djunjunan, Pasteur, Bandung City, West Java, Indonesia",
"about": "Voluptates cupiditate aut. Saepe dolorem tempora. Ut quasi est. Vero illum temporibus. Ea dignissimos et. Soluta debitis eaque. Voluptatem architecto consequatur. Voluptas explicabo mollitia. Neque odit quas. Minus qui ducimus. Ut ad ullam. Tempora id ani.",
"branch": "Pasteur",
"logo": {
"url": "https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/hospital/logo/7/icon-hermina.png",
"thumb": {
"url": "https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/hospital/logo/7/thumb_icon-hermina.png"
}
},
"slug": "hermina-pasteur",
"contact_phone": "1500488",
"instagram_username": null,
"call_center": null,
"meta_tags": {
"title": "Hermina Pasteur",
"author": "Hermina Pasteur",
"description": "rs Hermina Pasteur - Voluptates cupiditate aut. Saepe dolorem tempora. Ut quasi est. Vero illum temporibus. Ea dignissimos et. Soluta debitis eaque. Voluptatem architecto consequatur. Voluptas explicabo mollitia. Neque odit quas. Minus qui ducimus. Ut ad ullam. Tempora id ani.",
"image": "https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/hospital/logo/7/icon-hermina.png",
"keyword": "Hermina Pasteur, rs Hermina Pasteur, jadwal dokter Hermina Pasteur, daftar dokter RS Hermina Pasteur, fasilitas di Hermina Pasteur, jadwal poliklinik di Hermina Pasteur, buat janji di Hermina Pasteur"
}
},
{
"id": 25,
"name": "Hermina Balikpapan",
"address": "Hermina Balikpapan Hospital, Jalan MT Haryono Jalan Sepinggan Baru, Sepinggan, Balikpapan City, East Kalimantan, Indonesia",
"about": "Est animi est. Cum consectetur sint. Ad sapiente repellendus. Voluptatem sed quia. Voluptatum praesentium provident. Vel illo assumenda. Atque voluptatem labore. Eveniet quae qui. Ratione doloremque atque. Nemo sint sunt. Quis in repudiandae. Nisi aliquam.",
"branch": "Balikpapan",
"logo": {
"url": "https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/hospital/logo/25/Balikpapan.jpg",
"thumb": {
"url": "https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/hospital/logo/25/thumb_Balikpapan.jpg"
}
},
"slug": "hermina-balikpapan",
"contact_phone": "1500488",
"instagram_username": null,
"call_center": null,
"meta_tags": {
"title": "Hermina Balikpapan",
"author": "Hermina Balikpapan",
"description": "rs Hermina Balikpapan - Est animi est. Cum consectetur sint. Ad sapiente repellendus. Voluptatem sed quia. Voluptatum praesentium provident. Vel illo assumenda. Atque voluptatem labore. Eveniet quae qui. Ratione doloremque atque. Nemo sint sunt. Quis in repudiandae. Nisi aliquam.",
"image": "https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/hospital/logo/25/Balikpapan.jpg",
"keyword": "Hermina Balikpapan, rs Hermina Balikpapan, jadwal dokter Hermina Balikpapan, daftar dokter RS Hermina Balikpapan, fasilitas di Hermina Balikpapan, jadwal poliklinik di Hermina Balikpapan, buat janji di Hermina Balikpapan"
}
}
],
"liked?": true
}
},
{
"id": "112",
"type": "doctor",
"attributes": {
"id": 112,
"full_name": "Umar Basri",
"about": "Often people, especially computer engineers, focus on the machines. But in fact we need to focus on humans, on how humans care about doing programming or operating the application of the machines.",
"slug": "umar-basri",
"practic_locations": [
"Hermina Ciruas"
],
"speciality": "LANTAI 2 SPESIALIS PENYAKIT JANTUNG",
"avatar": {
"url": "https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/doctor/avatar/112/female-doctor.jpg",
"thumb": {
"url": "https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/doctor/avatar/112/thumb_female-doctor.jpg"
}
},
"available_for_appointment": true,
"meta_tags": {
"title": "Umar Basri",
"description": "Umar Basri - Jadwal dokter Umar Basri, Often people, especially computer engineers, focus on the machines. But in fact we need to focus on humans, on how humans care about doing programming or operating the application of the machines.",
"keyword": "Umar Basri, Jadwal Dokter Umar Basri, Jadwal Dokter Hermina, Online Appointment, LANTAI 2 SPESIALIS PENYAKIT JANTUNG, Umar,Basri",
"image": "https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/doctor/avatar/112/female-doctor.jpg"
},
"educations": [
{
"year": "1990",
"school": "[\"SMA 8\", \"Universitas Kedokteran Indonesia\"]"
},
{
"year": "2017",
"school": "Falconholt TAFE"
},
{
"year": "2018",
"school": "Mallowtown College"
},
{
"year": "2008",
"school": "Flowerlake TAFE"
},
{
"year": "1984",
"school": "Ironston TAFE"
}
],
"hospitals": [
{
"id": 21,
"name": "Hermina Ciruas",
"address": "Hermina Ciruas Hospital, Jalan Raya Serang - Jakarta Kampung, Ranjeng, Serang, Banten, Indonesia",
"about": "Itaque quia iure. Incidunt voluptas accusantium. Sequi molestias consequatur. Dolorem voluptate aliquid. Eveniet inventore libero. Voluptatum enim quod. Qui est iusto. Dignissimos voluptatum ipsa. Magni voluptas voluptatem. Error voluptate saepe. Consequa.",
"branch": "Ciruas",
"logo": {
"url": "https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/hospital/logo/21/Ciruas.jpg",
"thumb": {
"url": "https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/hospital/logo/21/thumb_Ciruas.jpg"
}
},
"slug": "hermina-ciruas",
"contact_phone": "1500488",
"instagram_username": null,
"call_center": null,
"meta_tags": {
"title": "Hermina Ciruas",
"author": "Hermina Ciruas",
"description": "rs Hermina Ciruas - Itaque quia iure. Incidunt voluptas accusantium. Sequi molestias consequatur. Dolorem voluptate aliquid. Eveniet inventore libero. Voluptatum enim quod. Qui est iusto. Dignissimos voluptatum ipsa. Magni voluptas voluptatem. Error voluptate saepe. Consequa.",
"image": "https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/hospital/logo/21/Ciruas.jpg",
"keyword": "Hermina Ciruas, rs Hermina Ciruas, jadwal dokter Hermina Ciruas, daftar dokter RS Hermina Ciruas, fasilitas di Hermina Ciruas, jadwal poliklinik di Hermina Ciruas, buat janji di Hermina Ciruas"
}
}
],
"liked?": true
}
}
]
}
```
content:
application/json:
schema:
type: object
properties:
success:
type: boolean
code:
type: integer
status:
type: string
message:
type: string
data:
type: array
items:
type: object
properties:
id:
type: string
type:
type: string
attributes:
type: object
properties:
id:
type: integer
full_name:
type: string
about:
type: string
slug:
type: string
practic_locations:
type: array
items:
type: string
speciality:
type: string
avatar:
type: object
properties:
url:
type: string
thumb:
type: object
properties:
url:
type: string
available_for_appointment:
type: boolean
meta_tags:
type: object
properties:
title:
type: string
description:
type: string
keyword:
type: string
image:
type: string
educations:
type: array
items:
type: object
properties:
year:
type: string
school:
type: string
hospitals:
type: array
items:
type: object
properties:
id:
type: integer
name:
type: string
address:
type: string
about:
type: string
branch:
type: string
logo:
type: object
properties:
url:
type: string
thumb:
type: object
properties:
url:
type: string
slug:
type: string
contact_phone:
type: string
instagram_username:
type: 'null'
call_center:
type: 'null'
meta_tags:
type: object
properties:
title:
type: string
author:
type: string
description:
type: string
image:
type: string
keyword:
type: string
liked?:
type: boolean
x-examples:
Example 1:
success: true
code: 200
status: Success
message: OK
data:
- id: '185'
type: doctor
attributes:
id: 185
full_name: Dea Ramadanti
about: ''
slug: dea-ramadanti
practic_locations:
- Hermina Pasteur
- Hermina Balikpapan
speciality: ANAK
avatar:
url: 'https://hermina.s3-ap-southeast-1.amazonaws.com/assets/images/user.svg'
thumb:
url: 'https://hermina.s3-ap-southeast-1.amazonaws.com/assets/images/user.svg'
available_for_appointment: true
meta_tags:
title: Dea Ramadanti
description: 'Dea Ramadanti - Jadwal dokter Dea Ramadanti, '
keyword: 'Dea Ramadanti, Jadwal Dokter Dea Ramadanti, Jadwal Dokter Hermina, Online Appointment, ANAK, Dea,Ramadanti'
image: 'https://hermina.s3-ap-southeast-1.amazonaws.com/assets/images/user.svg'
educations:
- year: '1996'
school: '["SMA 8", "Universitas Kedokteran Indonesia"]'
- year: '1993'
school: Brookville TAFE
- year: '2011'
school: Brighthurst Technical College
- year: '2018'
school: Ostbarrow TAFE
- year: '1984'
school: Brighthurst University
hospitals:
- id: 7
name: Hermina Pasteur
address: 'Hermina Pasteur Hospital, Jalan Doktor Djunjunan, Pasteur, Bandung City, West Java, Indonesia'
about: Voluptates cupiditate aut. Saepe dolorem tempora. Ut quasi est. Vero illum temporibus. Ea dignissimos et. Soluta debitis eaque. Voluptatem architecto consequatur. Voluptas explicabo mollitia. Neque odit quas. Minus qui ducimus. Ut ad ullam. Tempora id ani.
branch: Pasteur
logo:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/hospital/logo/7/icon-hermina.png'
thumb:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/hospital/logo/7/thumb_icon-hermina.png'
slug: hermina-pasteur
contact_phone: '1500488'
instagram_username: null
call_center: null
meta_tags:
title: Hermina Pasteur
author: Hermina Pasteur
description: rs Hermina Pasteur - Voluptates cupiditate aut. Saepe dolorem tempora. Ut quasi est. Vero illum temporibus. Ea dignissimos et. Soluta debitis eaque. Voluptatem architecto consequatur. Voluptas explicabo mollitia. Neque odit quas. Minus qui ducimus. Ut ad ullam. Tempora id ani.
image: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/hospital/logo/7/icon-hermina.png'
keyword: 'Hermina Pasteur, rs Hermina Pasteur, jadwal dokter Hermina Pasteur, daftar dokter RS Hermina Pasteur, fasilitas di Hermina Pasteur, jadwal poliklinik di Hermina Pasteur, buat janji di Hermina Pasteur'
- id: 25
name: Hermina Balikpapan
address: 'Hermina Balikpapan Hospital, Jalan MT Haryono Jalan Sepinggan Baru, Sepinggan, Balikpapan City, East Kalimantan, Indonesia'
about: Est animi est. Cum consectetur sint. Ad sapiente repellendus. Voluptatem sed quia. Voluptatum praesentium provident. Vel illo assumenda. Atque voluptatem labore. Eveniet quae qui. Ratione doloremque atque. Nemo sint sunt. Quis in repudiandae. Nisi aliquam.
branch: Balikpapan
logo:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/hospital/logo/25/Balikpapan.jpg'
thumb:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/hospital/logo/25/thumb_Balikpapan.jpg'
slug: hermina-balikpapan
contact_phone: '1500488'
instagram_username: null
call_center: null
meta_tags:
title: Hermina Balikpapan
author: Hermina Balikpapan
description: rs Hermina Balikpapan - Est animi est. Cum consectetur sint. Ad sapiente repellendus. Voluptatem sed quia. Voluptatum praesentium provident. Vel illo assumenda. Atque voluptatem labore. Eveniet quae qui. Ratione doloremque atque. Nemo sint sunt. Quis in repudiandae. Nisi aliquam.
image: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/hospital/logo/25/Balikpapan.jpg'
keyword: 'Hermina Balikpapan, rs Hermina Balikpapan, jadwal dokter Hermina Balikpapan, daftar dokter RS Hermina Balikpapan, fasilitas di Hermina Balikpapan, jadwal poliklinik di Hermina Balikpapan, buat janji di Hermina Balikpapan'
liked?: true
- id: '112'
type: doctor
attributes:
id: 112
full_name: Umar Basri
about: 'Often people, especially computer engineers, focus on the machines. But in fact we need to focus on humans, on how humans care about doing programming or operating the application of the machines.'
slug: umar-basri
practic_locations:
- Hermina Ciruas
speciality: LANTAI 2 SPESIALIS PENYAKIT JANTUNG
avatar:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/doctor/avatar/112/female-doctor.jpg'
thumb:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/doctor/avatar/112/thumb_female-doctor.jpg'
available_for_appointment: true
meta_tags:
title: Umar Basri
description: 'Umar Basri - Jadwal dokter Umar Basri, Often people, especially computer engineers, focus on the machines. But in fact we need to focus on humans, on how humans care about doing programming or operating the application of the machines.'
keyword: 'Umar Basri, Jadwal Dokter Umar Basri, Jadwal Dokter Hermina, Online Appointment, LANTAI 2 SPESIALIS PENYAKIT JANTUNG, Umar,Basri'
image: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/doctor/avatar/112/female-doctor.jpg'
educations:
- year: '1990'
school: '["SMA 8", "Universitas Kedokteran Indonesia"]'
- year: '2017'
school: Falconholt TAFE
- year: '2018'
school: Mallowtown College
- year: '2008'
school: Flowerlake TAFE
- year: '1984'
school: Ironston TAFE
hospitals:
- id: 21
name: Hermina Ciruas
address: 'Hermina Ciruas Hospital, Jalan Raya Serang - Jakarta Kampung, Ranjeng, Serang, Banten, Indonesia'
about: Itaque quia iure. Incidunt voluptas accusantium. Sequi molestias consequatur. Dolorem voluptate aliquid. Eveniet inventore libero. Voluptatum enim quod. Qui est iusto. Dignissimos voluptatum ipsa. Magni voluptas voluptatem. Error voluptate saepe. Consequa.
branch: Ciruas
logo:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/hospital/logo/21/Ciruas.jpg'
thumb:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/hospital/logo/21/thumb_Ciruas.jpg'
slug: hermina-ciruas
contact_phone: '1500488'
instagram_username: null
call_center: null
meta_tags:
title: Hermina Ciruas
author: Hermina Ciruas
description: rs Hermina Ciruas - Itaque quia iure. Incidunt voluptas accusantium. Sequi molestias consequatur. Dolorem voluptate aliquid. Eveniet inventore libero. Voluptatum enim quod. Qui est iusto. Dignissimos voluptatum ipsa. Magni voluptas voluptatem. Error voluptate saepe. Consequa.
image: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/hospital/logo/21/Ciruas.jpg'
keyword: 'Hermina Ciruas, rs Hermina Ciruas, jadwal dokter Hermina Ciruas, daftar dokter RS Hermina Ciruas, fasilitas di Hermina Ciruas, jadwal poliklinik di Hermina Ciruas, buat janji di Hermina Ciruas'
liked?: true
examples:
Example 1:
value:
success: true
code: 200
status: Success
message: OK
data:
- id: '185'
type: doctor
attributes:
id: 185
full_name: Dea Ramadanti
about: ''
slug: dea-ramadanti
practic_locations:
- Hermina Pasteur
- Hermina Balikpapan
speciality: ANAK
avatar:
url: 'https://hermina.s3-ap-southeast-1.amazonaws.com/assets/images/user.svg'
thumb:
url: 'https://hermina.s3-ap-southeast-1.amazonaws.com/assets/images/user.svg'
available_for_appointment: true
meta_tags:
title: Dea Ramadanti
description: 'Dea Ramadanti - Jadwal dokter Dea Ramadanti, '
keyword: 'Dea Ramadanti, Jadwal Dokter Dea Ramadanti, Jadwal Dokter Hermina, Online Appointment, ANAK, Dea,Ramadanti'
image: 'https://hermina.s3-ap-southeast-1.amazonaws.com/assets/images/user.svg'
educations:
- year: '1996'
school: '["SMA 8", "Universitas Kedokteran Indonesia"]'
- year: '1993'
school: Brookville TAFE
- year: '2011'
school: Brighthurst Technical College
- year: '2018'
school: Ostbarrow TAFE
- year: '1984'
school: Brighthurst University
hospitals:
- id: 7
name: Hermina Pasteur
address: 'Hermina Pasteur Hospital, Jalan Doktor Djunjunan, Pasteur, Bandung City, West Java, Indonesia'
about: Voluptates cupiditate aut. Saepe dolorem tempora. Ut quasi est. Vero illum temporibus. Ea dignissimos et. Soluta debitis eaque. Voluptatem architecto consequatur. Voluptas explicabo mollitia. Neque odit quas. Minus qui ducimus. Ut ad ullam. Tempora id ani.
branch: Pasteur
logo:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/hospital/logo/7/icon-hermina.png'
thumb:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/hospital/logo/7/thumb_icon-hermina.png'
slug: hermina-pasteur
contact_phone: '1500488'
instagram_username: null
call_center: null
meta_tags:
title: Hermina Pasteur
author: Hermina Pasteur
description: rs Hermina Pasteur - Voluptates cupiditate aut. Saepe dolorem tempora. Ut quasi est. Vero illum temporibus. Ea dignissimos et. Soluta debitis eaque. Voluptatem architecto consequatur. Voluptas explicabo mollitia. Neque odit quas. Minus qui ducimus. Ut ad ullam. Tempora id ani.
image: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/hospital/logo/7/icon-hermina.png'
keyword: 'Hermina Pasteur, rs Hermina Pasteur, jadwal dokter Hermina Pasteur, daftar dokter RS Hermina Pasteur, fasilitas di Hermina Pasteur, jadwal poliklinik di Hermina Pasteur, buat janji di Hermina Pasteur'
- id: 25
name: Hermina Balikpapan
address: 'Hermina Balikpapan Hospital, Jalan MT Haryono Jalan Sepinggan Baru, Sepinggan, Balikpapan City, East Kalimantan, Indonesia'
about: Est animi est. Cum consectetur sint. Ad sapiente repellendus. Voluptatem sed quia. Voluptatum praesentium provident. Vel illo assumenda. Atque voluptatem labore. Eveniet quae qui. Ratione doloremque atque. Nemo sint sunt. Quis in repudiandae. Nisi aliquam.
branch: Balikpapan
logo:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/hospital/logo/25/Balikpapan.jpg'
thumb:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/hospital/logo/25/thumb_Balikpapan.jpg'
slug: hermina-balikpapan
contact_phone: '1500488'
instagram_username: null
call_center: null
meta_tags:
title: Hermina Balikpapan
author: Hermina Balikpapan
description: rs Hermina Balikpapan - Est animi est. Cum consectetur sint. Ad sapiente repellendus. Voluptatem sed quia. Voluptatum praesentium provident. Vel illo assumenda. Atque voluptatem labore. Eveniet quae qui. Ratione doloremque atque. Nemo sint sunt. Quis in repudiandae. Nisi aliquam.
image: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/hospital/logo/25/Balikpapan.jpg'
keyword: 'Hermina Balikpapan, rs Hermina Balikpapan, jadwal dokter Hermina Balikpapan, daftar dokter RS Hermina Balikpapan, fasilitas di Hermina Balikpapan, jadwal poliklinik di Hermina Balikpapan, buat janji di Hermina Balikpapan'
liked?: true
- id: '112'
type: doctor
attributes:
id: 112
full_name: Umar Basri
about: 'Often people, especially computer engineers, focus on the machines. But in fact we need to focus on humans, on how humans care about doing programming or operating the application of the machines.'
slug: umar-basri
practic_locations:
- Hermina Ciruas
speciality: LANTAI 2 SPESIALIS PENYAKIT JANTUNG
avatar:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/doctor/avatar/112/female-doctor.jpg'
thumb:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/doctor/avatar/112/thumb_female-doctor.jpg'
available_for_appointment: true
meta_tags:
title: Umar Basri
description: 'Umar Basri - Jadwal dokter Umar Basri, Often people, especially computer engineers, focus on the machines. But in fact we need to focus on humans, on how humans care about doing programming or operating the application of the machines.'
keyword: 'Umar Basri, Jadwal Dokter Umar Basri, Jadwal Dokter Hermina, Online Appointment, LANTAI 2 SPESIALIS PENYAKIT JANTUNG, Umar,Basri'
image: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/doctor/avatar/112/female-doctor.jpg'
educations:
- year: '1990'
school: '["SMA 8", "Universitas Kedokteran Indonesia"]'
- year: '2017'
school: Falconholt TAFE
- year: '2018'
school: Mallowtown College
- year: '2008'
school: Flowerlake TAFE
- year: '1984'
school: Ironston TAFE
hospitals:
- id: 21
name: Hermina Ciruas
address: 'Hermina Ciruas Hospital, Jalan Raya Serang - Jakarta Kampung, Ranjeng, Serang, Banten, Indonesia'
about: Itaque quia iure. Incidunt voluptas accusantium. Sequi molestias consequatur. Dolorem voluptate aliquid. Eveniet inventore libero. Voluptatum enim quod. Qui est iusto. Dignissimos voluptatum ipsa. Magni voluptas voluptatem. Error voluptate saepe. Consequa.
branch: Ciruas
logo:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/hospital/logo/21/Ciruas.jpg'
thumb:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/hospital/logo/21/thumb_Ciruas.jpg'
slug: hermina-ciruas
contact_phone: '1500488'
instagram_username: null
call_center: null
meta_tags:
title: Hermina Ciruas
author: Hermina Ciruas
description: rs Hermina Ciruas - Itaque quia iure. Incidunt voluptas accusantium. Sequi molestias consequatur. Dolorem voluptate aliquid. Eveniet inventore libero. Voluptatum enim quod. Qui est iusto. Dignissimos voluptatum ipsa. Magni voluptas voluptatem. Error voluptate saepe. Consequa.
image: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/hospital/logo/21/Ciruas.jpg'
keyword: 'Hermina Ciruas, rs Hermina Ciruas, jadwal dokter Hermina Ciruas, daftar dokter RS Hermina Ciruas, fasilitas di Hermina Ciruas, jadwal poliklinik di Hermina Ciruas, buat janji di Hermina Ciruas'
liked?: true
success-create-profile-insurance:
description: |-
```json
{
"success": true,
"code": 201,
"status": "Resource created",
"message": "Insurance created",
"data": {
"id": "8",
"type": "insurance",
"attributes": {
"id": 8,
"policy_number": "232323234234",
"policy_holder": "Muhammad Yana Mulyana",
"expired_date": null,
"policy_card_back": {
"url": "https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/profiles/insurance/policy_card_back/8/IMG_8575.JPEG"
},
"policy_card_front": {
"url": "https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/profiles/insurance/policy_card_front/8/Screenshot_2024-05-14_at_10.59.47.png"
},
"created_at": "2024-09-03T23:06:35.786+07:00",
"updated_at": "2024-09-03T23:06:35.786+07:00",
"insurance": {
"id": 21,
"name": "Bumi Asih Jaya\n",
"alias": null,
"description": null,
"logo": null,
"slug": "bumi-asih-jaya",
"created_at": "2020-02-20T09:33:18.631+07:00",
"updated_at": "2020-02-20T09:33:18.631+07:00"
}
}
}
}
```
content:
application/json:
schema:
type: object
properties:
success:
type: boolean
code:
type: integer
status:
type: string
message:
type: string
data:
type: object
properties:
id:
type: string
type:
type: string
attributes:
type: object
properties:
id:
type: integer
policy_number:
type: string
policy_holder:
type: string
expired_date:
type: 'null'
policy_card_back:
type: object
properties:
url:
type: string
policy_card_front:
type: object
properties:
url:
type: string
created_at:
type: string
updated_at:
type: string
insurance:
type: object
properties:
id:
type: integer
name:
type: string
alias:
type: 'null'
description:
type: 'null'
logo:
type: 'null'
slug:
type: string
created_at:
type: string
updated_at:
type: string
x-examples:
Example 1:
success: true
code: 201
status: Resource created
message: Insurance created
data:
id: '8'
type: insurance
attributes:
id: 8
policy_number: '232323234234'
policy_holder: Muhammad Yana Mulyana
expired_date: null
policy_card_back:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/profiles/insurance/policy_card_back/8/IMG_8575.JPEG'
policy_card_front:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/profiles/insurance/policy_card_front/8/Screenshot_2024-05-14_at_10.59.47.png'
created_at: '2024-09-03T23:06:35.786+07:00'
updated_at: '2024-09-03T23:06:35.786+07:00'
insurance:
id: 21
name: |
Bumi Asih Jaya
alias: null
description: null
logo: null
slug: bumi-asih-jaya
created_at: '2020-02-20T09:33:18.631+07:00'
updated_at: '2020-02-20T09:33:18.631+07:00'
examples:
Example 1:
value:
success: true
code: 201
status: Resource created
message: Insurance created
data:
id: '8'
type: insurance
attributes:
id: 8
policy_number: '232323234234'
policy_holder: Muhammad Yana Mulyana
expired_date: null
policy_card_back:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/profiles/insurance/policy_card_back/8/IMG_8575.JPEG'
policy_card_front:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/profiles/insurance/policy_card_front/8/Screenshot_2024-05-14_at_10.59.47.png'
created_at: '2024-09-03T23:06:35.786+07:00'
updated_at: '2024-09-03T23:06:35.786+07:00'
insurance:
id: 21
name: |
Bumi Asih Jaya
alias: null
description: null
logo: null
slug: bumi-asih-jaya
created_at: '2020-02-20T09:33:18.631+07:00'
updated_at: '2020-02-20T09:33:18.631+07:00'
profile-insurances:
description: Example response
content:
application/json:
schema:
type: object
properties:
success:
type: boolean
code:
type: integer
status:
type: string
message:
type: string
data:
type: array
items:
type: object
properties:
id:
type: string
type:
type: string
attributes:
type: object
properties:
id:
type: integer
policy_number:
type: string
policy_holder:
type: string
expired_date:
type: 'null'
policy_card_back:
type: object
properties:
url:
type:
- 'null'
- string
policy_card_front:
type: object
properties:
url:
type:
- 'null'
- string
created_at:
type: string
updated_at:
type: string
insurance:
type: object
properties:
id:
type: integer
name:
type: string
alias:
type: 'null'
description:
type: 'null'
logo:
type: 'null'
slug:
type: string
created_at:
type: string
updated_at:
type: string
x-examples:
Example 1:
success: true
code: 200
status: Success
message: OK
data:
- id: '8'
type: insurance
attributes:
id: 8
policy_number: '232323234234'
policy_holder: Muhammad Yana Mulyana
expired_date: null
policy_card_back:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/profiles/insurance/policy_card_back/8/IMG_8575.JPEG'
policy_card_front:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/profiles/insurance/policy_card_front/8/Screenshot_2024-05-14_at_10.59.47.png'
created_at: '2024-09-03T23:06:35.786+07:00'
updated_at: '2024-09-03T23:06:35.786+07:00'
insurance:
id: 21
name: |
Bumi Asih Jaya
alias: null
description: null
logo: null
slug: bumi-asih-jaya
created_at: '2020-02-20T09:33:18.631+07:00'
updated_at: '2020-02-20T09:33:18.631+07:00'
- id: '7'
type: insurance
attributes:
id: 7
policy_number: '234324234'
policy_holder: Muhammad Yana Mulyana
expired_date: null
policy_card_back:
url: null
policy_card_front:
url: null
created_at: '2024-09-03T14:49:25.463+07:00'
updated_at: '2024-09-03T14:49:25.463+07:00'
insurance:
id: 22
name: |
Bumi Arta Reksatama
alias: null
description: null
logo: null
slug: bumi-arta-reksatama
created_at: '2020-02-20T09:33:18.638+07:00'
updated_at: '2020-02-20T09:33:18.638+07:00'
- id: '6'
type: insurance
attributes:
id: 6
policy_number: '234324234'
policy_holder: Muhammad Yana Mulyana
expired_date: null
policy_card_back:
url: null
policy_card_front:
url: null
created_at: '2024-09-03T14:47:38.477+07:00'
updated_at: '2024-09-03T14:47:38.477+07:00'
insurance:
id: 22
name: |
Bumi Arta Reksatama
alias: null
description: null
logo: null
slug: bumi-arta-reksatama
created_at: '2020-02-20T09:33:18.638+07:00'
updated_at: '2020-02-20T09:33:18.638+07:00'
examples:
Example 1:
value:
success: true
code: 200
status: Success
message: OK
data:
- id: '8'
type: insurance
attributes:
id: 8
policy_number: '232323234234'
policy_holder: Muhammad Yana Mulyana
expired_date: null
policy_card_back:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/profiles/insurance/policy_card_back/8/IMG_8575.JPEG'
policy_card_front:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/profiles/insurance/policy_card_front/8/Screenshot_2024-05-14_at_10.59.47.png'
created_at: '2024-09-03T23:06:35.786+07:00'
updated_at: '2024-09-03T23:06:35.786+07:00'
insurance:
id: 21
name: |
Bumi Asih Jaya
alias: null
description: null
logo: null
slug: bumi-asih-jaya
created_at: '2020-02-20T09:33:18.631+07:00'
updated_at: '2020-02-20T09:33:18.631+07:00'
- id: '7'
type: insurance
attributes:
id: 7
policy_number: '234324234'
policy_holder: Muhammad Yana Mulyana
expired_date: null
policy_card_back:
url: null
policy_card_front:
url: null
created_at: '2024-09-03T14:49:25.463+07:00'
updated_at: '2024-09-03T14:49:25.463+07:00'
insurance:
id: 22
name: |
Bumi Arta Reksatama
alias: null
description: null
logo: null
slug: bumi-arta-reksatama
created_at: '2020-02-20T09:33:18.638+07:00'
updated_at: '2020-02-20T09:33:18.638+07:00'
- id: '6'
type: insurance
attributes:
id: 6
policy_number: '234324234'
policy_holder: Muhammad Yana Mulyana
expired_date: null
policy_card_back:
url: null
policy_card_front:
url: null
created_at: '2024-09-03T14:47:38.477+07:00'
updated_at: '2024-09-03T14:47:38.477+07:00'
insurance:
id: 22
name: |
Bumi Arta Reksatama
alias: null
description: null
logo: null
slug: bumi-arta-reksatama
created_at: '2020-02-20T09:33:18.638+07:00'
updated_at: '2020-02-20T09:33:18.638+07:00'
success-create-address:
description: |-
```json
{
"success": true,
"code": 201,
"status": "Resource updated",
"message": "Address updated",
"data": {
"id": "117",
"type": "address",
"attributes": {
"id": 117,
"address": "Jl. Tubagus Ismail VIII No.11 A, Sekeloa, Kecamatan Coblong, Kota Bandung, Jawa Barat 40134, Indonesia",
"contact_name": "Muhammad Yana Mulyana",
"city": "Bandung",
"district": "Coblong",
"label": "Home",
"latitude": "-6.88417285407515",
"longitude": "107.62091653032",
"mobile_phone": "08571251757123",
"pin_location": "Jl. Tubagus Ismail VIII No.11 A",
"primary": true,
"province": "West Java",
"sub_district": "Sekeloa",
"zip_code": "40134"
}
}
}
```
content:
application/json:
schema:
type: object
properties:
success:
type: boolean
code:
type: integer
status:
type: string
message:
type: string
data:
type: object
properties:
id:
type: string
type:
type: string
attributes:
type: object
properties:
id:
type: integer
address:
type: string
contact_name:
type: string
city:
type: string
district:
type: string
label:
type: string
latitude:
type: string
longitude:
type: string
mobile_phone:
type: string
pin_location:
type: string
primary:
type: boolean
province:
type: string
sub_district:
type: string
zip_code:
type: string
x-examples:
Example 1:
success: true
code: 201
status: Resource created
message: Address created
data:
id: '117'
type: address
attributes:
id: 117
address: 'Jl. Tubagus Ismail VIII No.11 A, Sekeloa, Kecamatan Coblong, Kota Bandung, Jawa Barat 40134, Indonesia'
contact_name: Muhammad Yana Mulyana
city: Bandung
district: Coblong
label: Home
latitude: '-6.88417285407515'
longitude: '107.62091653032'
mobile_phone: '08571251757123'
pin_location: Jl. Tubagus Ismail VIII No.11 A
primary: true
province: West Java
sub_district: Sekeloa
zip_code: '40134'
examples:
Example 1:
value:
success: true
code: 201
status: Resource updated
message: Address updated
data:
id: '117'
type: address
attributes:
id: 117
address: 'Jl. Tubagus Ismail VIII No.11 A, Sekeloa, Kecamatan Coblong, Kota Bandung, Jawa Barat 40134, Indonesia'
contact_name: Muhammad Yana Mulyana
city: Bandung
district: Coblong
label: Home
latitude: '-6.88417285407515'
longitude: '107.62091653032'
mobile_phone: '08571251757123'
pin_location: Jl. Tubagus Ismail VIII No.11 A
primary: true
province: West Java
sub_district: Sekeloa
zip_code: '40134'
addresses:
description: |-
```json
{
"success": true,
"code": 200,
"status": "Success",
"message": "OK",
"data": [
{
"id": "118",
"type": "address",
"attributes": {
"id": 118,
"address": "Jl. Tubagus Ismail VIII No.11 A, Sekeloa, Kecamatan Coblong, Kota Bandung, Jawa Barat 40134, Indonesia",
"contact_name": "Muhammad Yana Mulyana",
"city": "Bandung",
"district": "Coblong",
"label": "Home",
"latitude": "-6.88417285407515",
"longitude": "107.62091653032",
"mobile_phone": "08571251757123",
"pin_location": "Jl. Tubagus Ismail VIII No.11 A",
"primary": true,
"province": "West Java",
"sub_district": "Sekeloa",
"zip_code": "40134"
}
}
]
}
```
content:
application/json:
schema:
type: object
properties:
success:
type: boolean
code:
type: integer
status:
type: string
message:
type: string
data:
type: array
items:
type: object
properties:
id:
type: string
type:
type: string
attributes:
type: object
properties:
id:
type: integer
address:
type: string
contact_name:
type: string
city:
type: string
district:
type: string
label:
type: string
latitude:
type: string
longitude:
type: string
mobile_phone:
type: string
pin_location:
type: string
primary:
type: boolean
province:
type: string
sub_district:
type: string
zip_code:
type: string
x-examples:
Example 1:
success: true
code: 200
status: Success
message: OK
data:
- id: '118'
type: address
attributes:
id: 118
address: 'Jl. Tubagus Ismail VIII No.11 A, Sekeloa, Kecamatan Coblong, Kota Bandung, Jawa Barat 40134, Indonesia'
contact_name: Muhammad Yana Mulyana
city: Bandung
district: Coblong
label: Home
latitude: '-6.88417285407515'
longitude: '107.62091653032'
mobile_phone: '08571251757123'
pin_location: Jl. Tubagus Ismail VIII No.11 A
primary: true
province: West Java
sub_district: Sekeloa
zip_code: '40134'
- id: '117'
type: address
attributes:
id: 117
address: 'Jl. Tubagus Ismail VIII No.11 A, Sekeloa, Kecamatan Coblong, Kota Bandung, Jawa Barat 40134, Indonesia'
contact_name: Muhammad Yana Mulyana
city: Bandung
district: Coblong
label: Home
latitude: '-6.88417285407515'
longitude: '107.62091653032'
mobile_phone: '08571251757123'
pin_location: Jl. Tubagus Ismail VIII No.11 A
primary: true
province: West Java
sub_district: Sekeloa
zip_code: '40134'
examples:
Example 1:
value:
success: true
code: 200
status: Success
message: OK
data:
- id: '118'
type: address
attributes:
id: 118
address: 'Jl. Tubagus Ismail VIII No.11 A, Sekeloa, Kecamatan Coblong, Kota Bandung, Jawa Barat 40134, Indonesia'
contact_name: Muhammad Yana Mulyana
city: Bandung
district: Coblong
label: Home
latitude: '-6.88417285407515'
longitude: '107.62091653032'
mobile_phone: '08571251757123'
pin_location: Jl. Tubagus Ismail VIII No.11 A
primary: true
province: West Java
sub_district: Sekeloa
zip_code: '40134'
- id: '117'
type: address
attributes:
id: 117
address: 'Jl. Tubagus Ismail VIII No.11 A, Sekeloa, Kecamatan Coblong, Kota Bandung, Jawa Barat 40134, Indonesia'
contact_name: Muhammad Yana Mulyana
city: Bandung
district: Coblong
label: Home
latitude: '-6.88417285407515'
longitude: '107.62091653032'
mobile_phone: '08571251757123'
pin_location: Jl. Tubagus Ismail VIII No.11 A
primary: true
province: West Java
sub_district: Sekeloa
zip_code: '40134'
failed-create-address:
description: |-
```json
{
"success": false,
"code": 400,
"status": "Bad request",
"message": "Zip code should be a 5-digit number"
}
```
content:
application/json:
schema:
type: object
properties:
success:
type: boolean
code:
type: integer
status:
type: string
message:
type: string
x-examples:
Example 1:
success: false
code: 400
status: Bad request
message: Zip code should be a 5-digit number
examples:
Example 1:
value:
success: false
code: 400
status: Bad request
message: Zip code should be a 5-digit number
success-update-profile:
description: |-
```json
{
"success": true,
"code": 200,
"status": "Success",
"message": "Profile updated",
"data": {
"id": "47",
"type": "profile",
"attributes": {
"id": 47,
"full_name": "Muhammad Abdussalam",
"avatar": {
"url": "https://hermina.s3.ap-southeast-1.amazonaws.com/assets/images/user.png",
"thumb": {
"url": "https://hermina.s3.ap-southeast-1.amazonaws.com/assets/images/user.png"
}
},
"blood_type": "A",
"nik": "1232134234324324",
"birth_place": "Bandung",
"date_of_birth": "2010-09-21",
"email": "salam@muhammadyana.me",
"marital_status": "single",
"mobile_phone": "243235434566",
"gender": "Male",
"simrs_data": {
"table": {
"success?": false,
"message": "Failed to process response"
}
},
"otp_sent_at": null,
"phone_verified": null,
"title": null,
"metadata": null,
"primary_profile": null
}
}
}
```
content:
application/json:
schema:
type: object
properties:
success:
type: boolean
code:
type: integer
status:
type: string
message:
type: string
data:
type: object
properties:
id:
type: string
type:
type: string
attributes:
type: object
properties:
id:
type: integer
full_name:
type: string
avatar:
type: object
properties:
url:
type: string
thumb:
type: object
properties:
url:
type: string
blood_type:
type: string
nik:
type: string
birth_place:
type: string
date_of_birth:
type: string
email:
type: string
marital_status:
type: string
mobile_phone:
type: string
gender:
type: string
simrs_data:
type: object
properties:
table:
type: object
properties:
success?:
type: boolean
message:
type: string
otp_sent_at:
type: 'null'
phone_verified:
type: 'null'
title:
type: 'null'
metadata:
type: 'null'
primary_profile:
type: 'null'
x-examples:
Example 1:
success: true
code: 200
status: Success
message: Profile updated
data:
id: '47'
type: profile
attributes:
id: 47
full_name: Muhammad Abdussalam
avatar:
url: 'https://hermina.s3.ap-southeast-1.amazonaws.com/assets/images/user.png'
thumb:
url: 'https://hermina.s3.ap-southeast-1.amazonaws.com/assets/images/user.png'
blood_type: A
nik: '1232134234324324'
birth_place: Bandung
date_of_birth: '2010-09-21'
email: salam@muhammadyana.me
marital_status: single
mobile_phone: '243235434566'
gender: Male
simrs_data:
table:
success?: false
message: Failed to process response
otp_sent_at: null
phone_verified: null
title: null
metadata: null
primary_profile: null
examples:
Example 1:
value:
success: true
code: 200
status: Success
message: Profile updated
data:
id: '47'
type: profile
attributes:
id: 47
full_name: Muhammad Abdussalam
avatar:
url: 'https://hermina.s3.ap-southeast-1.amazonaws.com/assets/images/user.png'
thumb:
url: 'https://hermina.s3.ap-southeast-1.amazonaws.com/assets/images/user.png'
blood_type: A
nik: '1232134234324324'
birth_place: Bandung
date_of_birth: '2010-09-21'
email: salam@muhammadyana.me
marital_status: single
mobile_phone: '243235434566'
gender: Male
simrs_data:
table:
success?: false
message: Failed to process response
otp_sent_at: null
phone_verified: null
title: null
metadata: null
primary_profile: null
profile-insurance:
description: |-
```json
{
"success": true,
"code": 200,
"status": "Success",
"message": "Insurance destroyed",
"data": {
"id": "14",
"type": "insurance",
"attributes": {
"id": 14,
"policy_number": "2222222",
"policy_holder": "Muhammad Yana Mulyana",
"expired_date": null,
"policy_card_back": {
"url": "https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/profiles/insurance/policy_card_back/14/IMG_8575.JPEG"
},
"policy_card_front": {
"url": "https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/profiles/insurance/policy_card_front/14/Screenshot_2024-05-14_at_10.59.47.png"
},
"created_at": "2024-09-04T12:43:51.920+07:00",
"updated_at": "2024-09-17T21:24:12.696+07:00",
"insurance_id": 20,
"insurance": {
"id": 20,
"name": "Bringin Jiwa Sejahtera\n",
"alias": null,
"description": null,
"logo": null,
"slug": "bringin-jiwa-sejahtera",
"created_at": "2020-02-20T09:33:18.623+07:00",
"updated_at": "2020-02-20T09:33:18.623+07:00"
}
}
}
}
```
content:
application/json:
schema:
type: object
properties:
success:
type: boolean
code:
type: integer
status:
type: string
message:
type: string
data:
type: object
properties:
id:
type: string
type:
type: string
attributes:
type: object
properties:
id:
type: integer
policy_number:
type: string
policy_holder:
type: string
expired_date:
type: 'null'
policy_card_back:
type: object
properties:
url:
type: string
policy_card_front:
type: object
properties:
url:
type: string
created_at:
type: string
updated_at:
type: string
insurance_id:
type: integer
insurance:
type: object
properties:
id:
type: integer
name:
type: string
alias:
type: 'null'
description:
type: 'null'
logo:
type: 'null'
slug:
type: string
created_at:
type: string
updated_at:
type: string
x-examples:
Example 1:
success: true
code: 200
status: Success
message: OK
data:
id: '14'
type: insurance
attributes:
id: 14
policy_number: '2222222'
policy_holder: Muhammad Yana Mulyana
expired_date: null
policy_card_back:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/profiles/insurance/policy_card_back/14/IMG_8575.JPEG'
policy_card_front:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/profiles/insurance/policy_card_front/14/Screenshot_2024-05-14_at_10.59.47.png'
created_at: '2024-09-04T12:43:51.920+07:00'
updated_at: '2024-09-17T21:24:12.696+07:00'
insurance_id: 20
insurance:
id: 20
name: |
Bringin Jiwa Sejahtera
alias: null
description: null
logo: null
slug: bringin-jiwa-sejahtera
created_at: '2020-02-20T09:33:18.623+07:00'
updated_at: '2020-02-20T09:33:18.623+07:00'
examples:
Example 1:
value:
success: true
code: 200
status: Success
message: OK
data:
id: '14'
type: insurance
attributes:
id: 14
policy_number: '2222222'
policy_holder: Muhammad Yana Mulyana
expired_date: null
policy_card_back:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/profiles/insurance/policy_card_back/14/IMG_8575.JPEG'
policy_card_front:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/profiles/insurance/policy_card_front/14/Screenshot_2024-05-14_at_10.59.47.png'
created_at: '2024-09-04T12:43:51.920+07:00'
updated_at: '2024-09-17T21:24:12.696+07:00'
insurance_id: 20
insurance:
id: 20
name: |
Bringin Jiwa Sejahtera
alias: null
description: null
logo: null
slug: bringin-jiwa-sejahtera
created_at: '2020-02-20T09:33:18.623+07:00'
updated_at: '2020-02-20T09:33:18.623+07:00'
not-found:
description: |-
```json
{
"success": false,
"code": 404,
"status": "Resource not found",
"message": "Record or object not found"
}
```
content:
application/json:
schema:
type: object
properties:
success:
type: boolean
code:
type: integer
status:
type: string
message:
type: string
x-examples:
Example 1:
success: false
code: 404
status: Resource not found
message: Record or object not found
examples:
Example 1:
value:
success: false
code: 404
status: Resource not found
message: Record or object not found
profiles:
description: |-
```json
{
"success": true,
"code": 200,
"status": "OK",
"message": "OK",
"data": [
{
"id": "14",
"type": "profile",
"attributes": {
"id": 14,
"full_name": "Muhammad Yana Mulyana",
"first_name": "Muhammad",
"last_name": "Yana Mulyana",
"avatar": {
"url": "https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/profile/avatar/14/unnamed.jpg",
"thumb": {
"url": "https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/profile/avatar/14/thumb_unnamed.jpg"
}
},
"blood_type": "B",
"nik": "1234567890111111",
"birth_place": "Pandeglang",
"date_of_birth": "1993-09-21",
"email": "muhammadyanaa@gmail.com",
"marital_status": "single",
"mobile_phone": "085714757247",
"gender": "Laki-Laki",
"otp_sent_at": null,
"phone_verified": true,
"title": null,
"nationality": "ID",
"metadata": null,
"primary_profile": true,
"simrs_tmp_data": null,
"bpjs_number": null,
"medical_record_number": "EXTAPPO-092520122",
"father_name": "Ahmad",
"mother_name": "Maryam",
"simrs_registered?": false,
"profile_complete?": true,
"incomplete_onboarding_steps": [],
"onboarding_steps": [
"date_of_birth?",
"first_name?",
"mobile_phone?",
"mobile_phone?"
],
"insurance_count": 0
}
},
{
"id": "145",
"type": "profile",
"attributes": {
"id": 145,
"full_name": "Imam Muttaqien",
"first_name": null,
"last_name": null,
"avatar": {
"url": "https://hermina.s3.ap-southeast-1.amazonaws.com/assets/images/user.png",
"thumb": {
"url": "https://hermina.s3.ap-southeast-1.amazonaws.com/assets/images/user.png"
}
},
"blood_type": "A-",
"nik": null,
"birth_place": "Pandeglang",
"date_of_birth": "2010-10-06",
"email": "asa@as",
"marital_status": null,
"mobile_phone": null,
"gender": "Laki-Laki",
"otp_sent_at": null,
"phone_verified": null,
"title": null,
"nationality": "ID",
"metadata": null,
"primary_profile": null,
"simrs_tmp_data": null,
"bpjs_number": null,
"medical_record_number": null,
"father_name": "Sri",
"mother_name": "Fajri",
"simrs_registered?": false,
"profile_complete?": false,
"incomplete_onboarding_steps": [
"first_name?",
"mobile_phone?"
],
"onboarding_steps": [
"date_of_birth?",
"first_name?",
"mobile_phone?"
],
"insurance_count": 0
}
}
],
"pagination": {
"overflow": false,
"vars": {
"count_args": [
"all"
],
"ends": true,
"limit": 10,
"outset": 0,
"page": 1,
"page_param": "page",
"size": 7,
"steps": false,
"trim_extra": true,
"countless_minimal": false,
"headers": {
"page": "current-page",
"limit": "page-items",
"count": "total-count",
"pages": "total-pages"
},
"overflow": "last_page",
"count": 2
},
"count": 2,
"page": 1,
"outset": 0,
"limit": 10,
"offset": 0,
"last": 1,
"from": 1,
"to": 2,
"in": 2,
"prev": null,
"next": null
}
}
```
content:
application/json:
schema:
type: object
properties:
success:
type: boolean
code:
type: integer
status:
type: string
message:
type: string
data:
type: array
items:
type: object
properties:
id:
type: string
type:
type: string
attributes:
type: object
properties:
id:
type: integer
full_name:
type: string
first_name:
type:
- 'null'
- string
last_name:
type:
- 'null'
- string
avatar:
type: object
properties:
url:
type: string
thumb:
type: object
properties:
url:
type: string
blood_type:
type: string
nik:
type:
- 'null'
- string
birth_place:
type: string
date_of_birth:
type: string
email:
type: string
marital_status:
type:
- 'null'
- string
mobile_phone:
type:
- 'null'
- string
gender:
type: string
otp_sent_at:
type: 'null'
phone_verified:
type:
- boolean
- 'null'
title:
type: 'null'
nationality:
type: string
metadata:
type: 'null'
primary_profile:
type:
- boolean
- 'null'
simrs_tmp_data:
type: 'null'
bpjs_number:
type: 'null'
medical_record_number:
type:
- 'null'
- string
father_name:
type: string
mother_name:
type: string
simrs_registered?:
type: boolean
profile_complete?:
type: boolean
incomplete_onboarding_steps:
type: array
items:
type: string
onboarding_steps:
type: array
items:
type: string
insurance_count:
type: integer
pagination:
type: object
properties:
overflow:
type: boolean
vars:
type: object
properties:
count_args:
type: array
items:
type: string
ends:
type: boolean
limit:
type: integer
outset:
type: integer
page:
type: integer
page_param:
type: string
size:
type: integer
steps:
type: boolean
trim_extra:
type: boolean
countless_minimal:
type: boolean
headers:
type: object
properties:
page:
type: string
limit:
type: string
count:
type: string
pages:
type: string
overflow:
type: string
count:
type: integer
count:
type: integer
page:
type: integer
outset:
type: integer
limit:
type: integer
offset:
type: integer
last:
type: integer
from:
type: integer
to:
type: integer
in:
type: integer
prev:
type: 'null'
next:
type: 'null'
x-examples:
Example 1:
success: true
code: 200
status: OK
message: OK
data:
- id: '14'
type: profile
attributes:
id: 14
full_name: Muhammad Yana Mulyana
first_name: Muhammad
last_name: Yana Mulyana
avatar:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/profile/avatar/14/unnamed.jpg'
thumb:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/profile/avatar/14/thumb_unnamed.jpg'
blood_type: B
nik: '1234567890111111'
birth_place: Pandeglang
date_of_birth: '1993-09-21'
email: muhammadyanaa@gmail.com
marital_status: single
mobile_phone: '085714757247'
gender: Laki-Laki
otp_sent_at: null
phone_verified: true
title: null
nationality: ID
metadata: null
primary_profile: true
simrs_tmp_data: null
bpjs_number: null
medical_record_number: EXTAPPO-092520122
father_name: Ahmad
mother_name: Maryam
simrs_registered?: false
profile_complete?: true
incomplete_onboarding_steps: []
onboarding_steps:
- date_of_birth?
- first_name?
- mobile_phone?
- mobile_phone?
insurance_count: 0
- id: '145'
type: profile
attributes:
id: 145
full_name: Imam Muttaqien
first_name: null
last_name: null
avatar:
url: 'https://hermina.s3.ap-southeast-1.amazonaws.com/assets/images/user.png'
thumb:
url: 'https://hermina.s3.ap-southeast-1.amazonaws.com/assets/images/user.png'
blood_type: A-
nik: null
birth_place: Pandeglang
date_of_birth: '2010-10-06'
email: asa@as
marital_status: null
mobile_phone: null
gender: Laki-Laki
otp_sent_at: null
phone_verified: null
title: null
nationality: ID
metadata: null
primary_profile: null
simrs_tmp_data: null
bpjs_number: null
medical_record_number: null
father_name: Sri
mother_name: Fajri
simrs_registered?: false
profile_complete?: false
incomplete_onboarding_steps:
- first_name?
- mobile_phone?
onboarding_steps:
- date_of_birth?
- first_name?
- mobile_phone?
insurance_count: 0
pagination:
overflow: false
vars:
count_args:
- all
ends: true
limit: 10
outset: 0
page: 1
page_param: page
size: 7
steps: false
trim_extra: true
countless_minimal: false
headers:
page: current-page
limit: page-items
count: total-count
pages: total-pages
overflow: last_page
count: 2
count: 2
page: 1
outset: 0
limit: 10
offset: 0
last: 1
from: 1
to: 2
in: 2
prev: null
next: null
examples:
Example 1:
value:
success: true
code: 200
status: OK
message: OK
data:
- id: '14'
type: profile
attributes:
id: 14
full_name: Muhammad Yana Mulyana
first_name: Muhammad
last_name: Yana Mulyana
avatar:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/profile/avatar/14/unnamed.jpg'
thumb:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/profile/avatar/14/thumb_unnamed.jpg'
blood_type: B
nik: '1234567890111111'
birth_place: Pandeglang
date_of_birth: '1993-09-21'
email: muhammadyanaa@gmail.com
marital_status: single
mobile_phone: '085714757247'
gender: Laki-Laki
otp_sent_at: null
phone_verified: true
title: null
nationality: ID
metadata: null
primary_profile: true
simrs_tmp_data: null
bpjs_number: null
medical_record_number: EXTAPPO-092520122
father_name: Ahmad
mother_name: Maryam
simrs_registered?: false
profile_complete?: true
incomplete_onboarding_steps: []
onboarding_steps:
- date_of_birth?
- first_name?
- mobile_phone?
- mobile_phone?
insurance_count: 0
- id: '145'
type: profile
attributes:
id: 145
full_name: Imam Muttaqien
first_name: null
last_name: null
avatar:
url: 'https://hermina.s3.ap-southeast-1.amazonaws.com/assets/images/user.png'
thumb:
url: 'https://hermina.s3.ap-southeast-1.amazonaws.com/assets/images/user.png'
blood_type: A-
nik: null
birth_place: Pandeglang
date_of_birth: '2010-10-06'
email: asa@as
marital_status: null
mobile_phone: null
gender: Laki-Laki
otp_sent_at: null
phone_verified: null
title: null
nationality: ID
metadata: null
primary_profile: null
simrs_tmp_data: null
bpjs_number: null
medical_record_number: null
father_name: Sri
mother_name: Fajri
simrs_registered?: false
profile_complete?: false
incomplete_onboarding_steps:
- first_name?
- mobile_phone?
onboarding_steps:
- date_of_birth?
- first_name?
- mobile_phone?
insurance_count: 0
pagination:
overflow: false
vars:
count_args:
- all
ends: true
limit: 10
outset: 0
page: 1
page_param: page
size: 7
steps: false
trim_extra: true
countless_minimal: false
headers:
page: current-page
limit: page-items
count: total-count
pages: total-pages
overflow: last_page
count: 2
count: 2
page: 1
outset: 0
limit: 10
offset: 0
last: 1
from: 1
to: 2
in: 2
prev: null
next: null
purchases:
description: ''
content:
application/json:
schema:
type: object
properties:
success:
type: boolean
code:
type: integer
status:
type: string
message:
type: string
data:
type: array
items:
type: object
properties:
id:
type: string
type:
type: string
attributes:
type: object
properties:
id:
type: integer
ref_number:
type: string
purchaseable_type:
type: string
purchaseable_id:
type: integer
created_at:
type: string
invoice:
type: object
properties:
id:
type: integer
ref_number:
type: string
due_date:
type: string
name:
type: string
payment_type:
type: 'null'
payment_url:
type: string
status:
type: string
sub_total:
type: string
total:
type: string
account_id:
type: integer
reject_reason:
type: 'null'
slug:
type: string
sourceable_type:
type: string
sourceable_id:
type: integer
midtrans_transaction_status:
type: 'null'
created_at:
type: string
hospital_id:
type: integer
billed_to_type:
type: string
billed_to_id:
type: integer
order_id:
type: string
payment_method_id:
type: 'null'
profile_id:
type: integer
purchaseable:
type: object
properties:
id:
type: string
type:
type: string
attributes:
type: object
properties:
id:
type: integer
name_en:
type: string
title_en:
type: string
desc_en:
type: string
price:
type: string
ref_number:
type:
- 'null'
- string
scheduleable:
type: boolean
seens_count:
type: integer
slug:
type: string
desc_id:
type: string
name_id:
type: string
title_id:
type: string
x-examples:
Example 1:
success: true
code: 200
status: OK
message: OK
data:
- id: '29'
type: purchase
attributes:
id: 29
ref_number: PRCHS0000029
purchaseable_type: SupportService
purchaseable_id: 2
created_at: '2023-02-06T16:27:03.145+07:00'
invoice:
id: 99
ref_number: PRCHS0000029
due_date: '2023-02-07T16:27:04.037+07:00'
name: Biaya Paket lahiran hermina
payment_type: null
payment_url: 'http://middleware.herminahospitals.com/api/payment/interface?oi=eyJpdiI6Ik9hQWxkdXJUam4zelBDejQ3YTgreFE9PSIsInZhbHVlIjoia050bFV5Q3lHUG9QOEdZVTNsZ1Q1VUZHVGlVc3ZmWW5cL09uemsyT2VpXC9nPSIsIm1hYyI6IjVlY2NlYmUzMzI2OGFmMDhlMmQ3ZTMzNmNkODFiYWMyYmViZDhlNjMyOTg4ZDRjM2JjYzljNTdmOWJjNjljYzAifQ==&st=eyJpdiI6ImdONjZUU2pHQmlZb2V2WE1adGlGdFE9PSIsInZhbHVlIjoibWg1aUVuc205Z2J2RzhcL3pzWjF1YzhHWHNmcXpYRlJSZWJcL1BNM1RFSjFsVzEyME56UDNybngydDh4T2FlUnVBIiwibWFjIjoiMjA0Mzc2NWJjZGVhZTAxNjJkYmMyZTRhNzkwZmIxNjY2OTkzZjU0OGY4ZGFhMWFhOWQwZGRiNjY2OGIwOGQ0MyJ9&ck=eyJpdiI6IllmVGtRYlNjVW0rNjNWV1lvNHBvUHc9PSIsInZhbHVlIjoiajRGMVAyXC8xU0Y5QUZwaGExd3dFSFIySU5vcDFjTzJaQVwvZmFKNHBhSnpDcmlGbzM2Z1B0R1Y1VHhBTVptcTBXIiwibWFjIjoiMTg2MzIwY2Y3YmE5NTJhMmVjOTAzZjRjOTM2ZjUyYWRjMTAxMjgwNTdiM2M0YzhiNzA4OTgzNDhhMzYwYWFkZCJ9'
status: pending
sub_total: '0.0'
total: '100000.0'
account_id: 14
reject_reason: null
slug: cd4380b7-aaf7-4e91-a156-87b5c60b9a69
sourceable_type: Purchase
sourceable_id: 29
midtrans_transaction_status: null
created_at: '2023-02-06T16:27:04.073+07:00'
hospital_id: 16
billed_to_type: Account
billed_to_id: 14
order_id: INVC167567562407399
payment_method_id: null
profile_id: 14
purchaseable:
id: '2'
type: support_service
attributes:
id: 2
name_en: Paket lahiran hermina
title_en: Let's buy this package
desc_en: "<p>Efficiently reinvent frictionless services after 24/365 functionalities. Competently reintermediate plug-and-play leadership with top-line leadership skills. Collaboratively initiate highly efficient scenarios for empowered e-markets. Efficiently simplify magnetic quality vectors whereas high-quality architectures. Dramatically pursue cutting-edge initiatives vis-a-vis high standards in potentialities.</p>\r\n\r\n<p>Seamlessly productize inexpensive expertise vis-a-vis state of the art markets. Seamlessly exploit extensive services rather than standardized web-readiness. Credibly actualize market-driven core competencies for top-line deliverables. Proactively enhance bricks-and-clicks methods of empowerment and an expanded array of value. Energistically deliver sustainable models for multifunctional infomediaries.</p>\r\n\r\n<p>Authoritatively develop robust e-tailers via sticky information. Interactively underwhelm covalent applications before high-payoff processes. Energistically underwhelm worldwide imperatives with low-risk high-yield systems. Dramatically morph technically sound models for standardized results. Proactively architect error-free collaboration and idea-sharing and resource sucking potentialities.</p>\r\n\r\n<p>Continually aggregate functionalized users via ethical bandwidth. Monotonectally engineer sustainable action items after team driven platforms. Objectively empower mission-critical niche markets through world-class leadership. Enthusiastically productize efficient opportunities without intuitive e-tailers. Competently enhance efficient leadership before fully researched infrastructures.</p>\r\n\r\n<p>Quickly negotiate pandemic expertise without world-class innovation. Efficiently deliver technically sound process improvements rather than holistic solutions. Energistically evolve best-of-breed metrics whereas high standards in interfaces. Efficiently customize high-quality markets via revolutionary paradigms. Dramatically orchestrate empowered information whereas high-payoff niches.</p>\r\n\r\n<p>Appropriately grow revolutionary.</p>\r\n"
price: '400000.0'
ref_number: null
scheduleable: false
seens_count: 2
slug: paket-lahiran-hermina
desc_id: "<p>Objectively leverage other&#39;s extensive infomediaries whereas economically sound models. Uniquely pontificate dynamic leadership after multifunctional quality vectors. Uniquely coordinate compelling alignments through magnetic portals. Conveniently predominate emerging methodologies vis-a-vis resource maximizing e-commerce. Authoritatively incubate sticky channels rather than performance based alignments.</p>\r\n\r\n<p>Phosfluorescently myocardinate strategic web-readiness before worldwide methodologies. Globally cultivate orthogonal growth strategies via interactive intellectual capital. Dynamically innovate resource sucking initiatives before economically sound niches. Distinctively supply real-time models vis-a-vis web-enabled web-readiness. Efficiently maintain enabled e-tailers whereas 2.0 ideas.</p>\r\n\r\n<p>Continually redefine just in time partnerships rather than cost effective markets. Dynamically benchmark magnetic vortals through plug-and-play core competencies. Progressively engineer enabled communities after technically sound collaboration and idea-sharing. Progressively administrate sustainable bandwidth with prospective process improvements. Distinctively supply orthogonal core competencies for robust initiatives.</p>\r\n\r\n<p>Enthusiastically disintermediate backward-compatible alignments through progressive initiatives. Dynamically formulate goal-oriented resources after strategic communities. Holisticly leverage existing business infrastructures before exceptional web services. Interactively fabricate competitive strategic theme areas rather than leading-edge markets. Progressively enable leveraged solutions before equity invested customer service.</p>\r\n\r\n<p>Conveniently restore customized alignments vis-a-vis highly efficient scenarios. Assertively deploy extensive manufactured products for best-of-breed process improvements. Monotonectally integrate bricks-and-clicks sources for reliable markets. Monotonectally implement 2.0 products with open-source web-readiness. Intrinsicly disseminate end-to-end human capital with impactful results.</p>\r\n\r\n<p>Interactively.</p>\r\n"
name_id: Paket lahiran hermina
title_id: Ayo segera beli
- id: '28'
type: purchase
attributes:
id: 28
ref_number: PRCHS0000028
purchaseable_type: SupportService
purchaseable_id: 1
created_at: '2022-03-24T01:09:14.045+07:00'
invoice:
id: 98
ref_number: PRCHS0000028
due_date: '2022-03-25T01:09:14.108+07:00'
name: Biaya Layanan Periksa dirumah
payment_type: null
payment_url: 'http://middleware.herminahospitals.com/api/payment/interface?oi=eyJpdiI6IlJONmNrSHpWXC9VajQ5bjVpMGhWV1JnPT0iLCJ2YWx1ZSI6Ilh6TUFMY0RkNURzN25YOXd2TGR5NGx0Y1p2VXdMZVhCTnphc1NUdVRkeWM9IiwibWFjIjoiNzhjOTJjOTg1NmYxYmEzOTE0NWU0ZDY5NDIyNjc4YjdhZTdiOGU4MjhmYjM1MTQ4OWRiMjFkNGYwOGFmMDE5NyJ9&st=eyJpdiI6IitiVEgwNXJHQk9QRDdIbVlNMElCZ1E9PSIsInZhbHVlIjoiOHQ2MGJOQklXejZYRnVxT1lYUUNJZVBOXC9saVVZOWpISGhrcDFWcTBFTGFpaHFMNTdvQXNCNEtTSkUyQXdNT2wiLCJtYWMiOiI0OGE5MmU1OGQwMTE1NDg5MTg2N2FmNzliNjNjOThkN2IxYmFlOWU4YjRlNTk4ZWZmYzVmZGQ4MzM4ZjA3NWIxIn0=&ck=eyJpdiI6InNCT1hCSHlzUUhQcCtTRm5hSlBDTVE9PSIsInZhbHVlIjoieVhMRXRlbDlzNGNpY1RTYVpwemRMdHlEenNzWnk0ajk0bjZCY0VGU3RsV3hmNktKUkNrT0N5aE4zWFlxVEYrYiIsIm1hYyI6ImQyMGQ2MTNjNDY0ZWM3ZjliMGM3MDNhNzhiZTFlYTljM2ZhMTAzMWIxNDc2Y2I4OTQ5YTQxZTM2NWI4OWRiMWEifQ=='
status: pending
sub_total: '0.0'
total: '310000.0'
account_id: 14
reject_reason: null
slug: 4eb5032a-2e82-45b7-b2bc-359c128f096e
sourceable_type: Purchase
sourceable_id: 28
midtrans_transaction_status: null
created_at: '2022-03-24T01:09:14.114+07:00'
hospital_id: 7
billed_to_type: Account
billed_to_id: 14
order_id: INVC164805895411498
payment_method_id: null
profile_id: 14
purchaseable:
id: '1'
type: support_service
attributes:
id: 1
name_en: Checkt at home
title_en: Let's buy this package
desc_en: "<p>Collaboratively utilize distributed &quot;outside the box&quot; thinking after synergistic e-business. Completely unleash multimedia based total linkage for ethical channels. Holisticly pursue prospective methods of empowerment for cutting-edge services. Proactively streamline strategic potentialities before dynamic.</p>\r\n\r\n<p>Seamlessly leverage existing focused leadership skills after leveraged supply chains. Dramatically scale revolutionary ROI for equity invested scenarios. Interactively transition open-source models without cost effective niche markets. Professionally facilitate technically sound process improvements with prospective bandwidth. Competently pursue exceptional process improvements before proactive supply chains.</p>\r\n\r\n<p>Professionally innovate global e-tailers with corporate partnerships. Intrinsicly customize unique schemas vis-a-vis visionary quality vectors. Dynamically conceptualize distributed processes whereas premier mindshare. Credibly myocardinate excellent value whereas goal-oriented architectures. Dramatically reconceptualize compelling e-commerce rather than resource maximizing technology.</p>\r\n\r\n<p>Uniquely strategize standards compliant web services for best-of-breed expertise. Authoritatively scale 2.0 technology vis-a-vis backend deliverables. Compellingly matrix client-centric infomediaries before high standards in experiences. Competently aggregate transparent.</p>\r\n"
price: '310000.0'
ref_number: null
scheduleable: true
seens_count: 2
slug: layanan-periksa-dirumah
desc_id: "<p>Dramatically build collaborative relationships with market positioning platforms. Phosfluorescently pontificate prospective core competencies rather than inexpensive best practices. Dynamically benchmark distributed channels with open-source communities. Synergistically benchmark user-centric human capital for wireless e-business. Conveniently.</p>\r\n\r\n<p>Dynamically formulate cross-media solutions for mission-critical ROI. Progressively negotiate an expanded array of testing procedures after value-added technology. Completely mesh top-line niche markets vis-a-vis fully tested value. Completely maximize front-end architectures via visionary innovation.</p>\r\n\r\n<p>Seamlessly leverage existing focused leadership skills after leveraged supply chains. Dramatically scale revolutionary ROI for equity invested scenarios. Interactively transition open-source models without cost effective niche markets. Professionally facilitate technically sound process improvements with prospective bandwidth. Competently pursue exceptional process improvements before proactive supply chains.</p>\r\n\r\n<p>Professionally innovate global e-tailers with corporate partnerships. Intrinsicly customize unique schemas vis-a-vis visionary quality vectors. Dynamically conceptualize distributed processes whereas premier mindshare. Credibly myocardinate excellent value whereas goal-oriented architectures. Dramatically reconceptualize compelling e-commerce rather than resource maximizing technology.</p>\r\n\r\n<p>Uniquely strategize standards compliant web services for best-of-breed expertise. Authoritatively scale 2.0 technology vis-a-vis backend deliverables. Compellingly matrix client-centric infomediaries before high standards in experiences. Competently aggregate transparent.</p>\r\n"
name_id: Layanan Periksa dirumah
title_id: Ayo segera beli
- id: '27'
type: purchase
attributes:
id: 27
ref_number: PRCHS0000027
purchaseable_type: SupportService
purchaseable_id: 3
created_at: '2022-03-23T21:24:15.866+07:00'
invoice:
id: 97
ref_number: PRCHS0000027
due_date: '2022-03-24T21:24:15.935+07:00'
name: Biaya Layanan Dokter Pribadi
payment_type: Credit Card
payment_url: 'http://middleware.herminahospitals.com/api/payment/interface?oi=eyJpdiI6IkFVcmxieEtTU2NSZm5YM2U3RmVnRGc9PSIsInZhbHVlIjoiMGhzVUI3ZGE2cEJrMjRYU2x2NUc3YUpsYit2bm81S3pZR2lzaW9BRG1qOD0iLCJtYWMiOiJiZDJlMGVhNzYyYzMyYWZiOGNhNzZkODE0ZDUwMDNkNWFlZmI2MjMxODI0ZDE1OTk0MGIwNTUyNTEwN2I2MjYwIn0=&st=eyJpdiI6IlhpdGJtTExVOGNvRjVjVFwvWk54ZGlRPT0iLCJ2YWx1ZSI6ImllYXhSamZxUGpJZUh3cDdXRTdSZVhSR3diaGVFQ1wvK1VuN0djbnk2NENGcDg1Qm5BeVlvOFNjTWM4NFNBajhKIiwibWFjIjoiOWQ5ZDRkMTYzMjRhMTk2ODc5N2JlMWRhYWQyODM1MTlmNDg1Y2VmZDEwMTgzMjZkNzNiMDFhMjI5Mzc0NTExYSJ9&ck=eyJpdiI6ImU0SlF2dFJlMG41QzhQNGtOVnBWOFE9PSIsInZhbHVlIjoiSnFmdDFVWmRrWktGSHlsd3NLa0xheStqa0Nxb3R3cnJCZkpzR0U4c0h1WHZrUHl5UVFGVlAzRXZwNU5aYWMzZSIsIm1hYyI6IjFiMjE2MThhYWJiZjhkNzQ3NWQwNzFiNDgwNjFjN2UzZjU0ZmNhOWIxMjk1ZjUxOWM3Y2Q0YTZmMjUyNjE4NTQifQ=='
status: paid
sub_total: '0.0'
total: '500000.0'
account_id: 14
reject_reason: null
slug: 843aee0b-be7d-47e9-a1c4-d47d5450ec24
sourceable_type: Purchase
sourceable_id: 27
midtrans_transaction_status: null
created_at: '2022-03-23T21:24:15.954+07:00'
hospital_id: 1
billed_to_type: Account
billed_to_id: 14
order_id: INVC164804545595497
payment_method_id: null
profile_id: 14
purchaseable:
id: '3'
type: support_service
attributes:
id: 3
name_en: Layanan Dokter Pribadi
title_en: Let's buy this package
desc_en: "<p>Conveniently generate high-quality models without client-based methodologies. Collaboratively visualize market-driven content through top-line metrics. Dramatically harness frictionless technology with plug-and-play web-readiness. Completely re-engineer progressive experiences with 24/7 vortals. Professionally transition premier e-business via client-focused solutions.</p>\r\n\r\n<p>Conveniently supply robust vortals without multimedia based methods of empowerment. Continually communicate interdependent networks and one-to-one methodologies. Distinctively pontificate one-to-one e-business before clicks-and-mortar niches. Conveniently harness state of the art total linkage before high-payoff partnerships. Credibly strategize top-line products before orthogonal networks.</p>\r\n\r\n<p>Appropriately fabricate best-of-breed functionalities whereas 2.0 core competencies. Compellingly drive timely processes without empowered outsourcing. Enthusiastically visualize magnetic internal or &quot;organic&quot; sources without stand-alone ROI. Globally benchmark turnkey ROI vis-a-vis front-end innovation. Synergistically underwhelm excellent systems with plug-and-play methodologies.</p>\r\n\r\n<p>Energistically impact user-centric strategic theme areas rather than distinctive infomediaries. Seamlessly incubate enabled architectures rather than worldwide internal or &quot;organic&quot; sources. Objectively redefine empowered platforms and maintainable markets. Rapidiously visualize prospective scenarios after maintainable methods of empowerment. Appropriately evolve cross-unit testing procedures and inexpensive process improvements.</p>\r\n\r\n<p>Distinctively actualize covalent value rather than parallel value. Conveniently re-engineer granular functionalities with effective synergy. Enthusiastically build.</p>\r\n"
price: '500000.0'
ref_number: SPPRTSRVC0000003
scheduleable: false
seens_count: 2
slug: layanan-dokter-pribadi
desc_id: "<p>Conveniently generate high-quality models without client-based methodologies. Collaboratively visualize market-driven content through top-line metrics. Dramatically harness frictionless technology with plug-and-play web-readiness. Completely re-engineer progressive experiences with 24/7 vortals. Professionally transition premier e-business via client-focused solutions.</p>\r\n\r\n<p>Conveniently supply robust vortals without multimedia based methods of empowerment. Continually communicate interdependent networks and one-to-one methodologies. Distinctively pontificate one-to-one e-business before clicks-and-mortar niches. Conveniently harness state of the art total linkage before high-payoff partnerships. Credibly strategize top-line products before orthogonal networks.</p>\r\n\r\n<p>Appropriately fabricate best-of-breed functionalities whereas 2.0 core competencies. Compellingly drive timely processes without empowered outsourcing. Enthusiastically visualize magnetic internal or &quot;organic&quot; sources without stand-alone ROI. Globally benchmark turnkey ROI vis-a-vis front-end innovation. Synergistically underwhelm excellent systems with plug-and-play methodologies.</p>\r\n\r\n<p>Energistically impact user-centric strategic theme areas rather than distinctive infomediaries. Seamlessly incubate enabled architectures rather than worldwide internal or &quot;organic&quot; sources. Objectively redefine empowered platforms and maintainable markets. Rapidiously visualize prospective scenarios after maintainable methods of empowerment. Appropriately evolve cross-unit testing procedures and inexpensive process improvements.</p>\r\n\r\n<p>Distinctively actualize covalent value rather than parallel value. Conveniently re-engineer granular functionalities with effective synergy. Enthusiastically build.</p>\r\n"
name_id: Layanan Dokter Pribadi
title_id: Ayo segera beli
- id: '26'
type: purchase
attributes:
id: 26
ref_number: PRCHS0000026
purchaseable_type: SupportService
purchaseable_id: 2
created_at: '2021-10-21T17:11:12.990+07:00'
invoice:
id: 96
ref_number: PRCHS0000026
due_date: '2021-10-22T17:11:13.004+07:00'
name: Biaya Paket lahiran hermina
payment_type: null
payment_url: 'http://middleware.herminahospitals.com/api/payment/interface?oi=eyJpdiI6IkxNZVBWTnEra3lQNUpCbkw4V21Ec1E9PSIsInZhbHVlIjoib0tGeWFQVWV6d0N1RTFIQmRGTVZFbXBQVjF2XC91RXM0T2JpM2VJTE9sUnM9IiwibWFjIjoiNTA5MGVlNzdlZTQ1YTEwM2JlY2QyZjQ3M2U4OWVkMWYzODVlMzhjYWM2Y2JiMDJjZTg5ZmJlODc5NjA5ODI1NSJ9&st=eyJpdiI6IjgrVmJiSjh2d0FcL2NkSXd4RkhwZVJnPT0iLCJ2YWx1ZSI6IlVQN2RyRVpMd2hcL0ZBTVNCT0w0YXY3Sm14SkNwKzZ2cURkZkdNTmdwOFUyamhpS2w3N1gyUTMyZFU0MWd3VjV1IiwibWFjIjoiNjY5ZmNkZTIxZTUyNWM0MDc5YjI4MWFlNTNlNzEzZWFmNmZkNjhlZDBjY2IwZDA3ZWI4NjQ2MWNlZTZmM2VkNSJ9&ck=eyJpdiI6Ik4rZVZFcFp2U0JIZTU0K3BqbVEzZEE9PSIsInZhbHVlIjoibDJXMVB4a2NJcFRlZmhpWmp5VzlBem5oN29VajNHTG8xZW9jUk9xMkU2eEU1YkZaS2lYVkFDMkd6V2VBY2VicSIsIm1hYyI6Ijk3ZmFiN2NjYzUyOTRmMmVlM2Y5OWFlM2E2NWQyNzE0NGUxNzJmY2I0NDUwYjJiYTIzZWRlYjA0N2FkYTdjYzEifQ=='
status: pending
sub_total: '0.0'
total: '400000.0'
account_id: 14
reject_reason: null
slug: 6999cc46-6847-4091-a66a-7a12419eb658
sourceable_type: Purchase
sourceable_id: 26
midtrans_transaction_status: null
created_at: '2021-10-21T17:11:13.009+07:00'
hospital_id: 23
billed_to_type: Account
billed_to_id: 14
order_id: INVC163481107300996
payment_method_id: null
profile_id: 14
purchaseable:
id: '2'
type: support_service
attributes:
id: 2
name_en: Paket lahiran hermina
title_en: Let's buy this package
desc_en: "<p>Efficiently reinvent frictionless services after 24/365 functionalities. Competently reintermediate plug-and-play leadership with top-line leadership skills. Collaboratively initiate highly efficient scenarios for empowered e-markets. Efficiently simplify magnetic quality vectors whereas high-quality architectures. Dramatically pursue cutting-edge initiatives vis-a-vis high standards in potentialities.</p>\r\n\r\n<p>Seamlessly productize inexpensive expertise vis-a-vis state of the art markets. Seamlessly exploit extensive services rather than standardized web-readiness. Credibly actualize market-driven core competencies for top-line deliverables. Proactively enhance bricks-and-clicks methods of empowerment and an expanded array of value. Energistically deliver sustainable models for multifunctional infomediaries.</p>\r\n\r\n<p>Authoritatively develop robust e-tailers via sticky information. Interactively underwhelm covalent applications before high-payoff processes. Energistically underwhelm worldwide imperatives with low-risk high-yield systems. Dramatically morph technically sound models for standardized results. Proactively architect error-free collaboration and idea-sharing and resource sucking potentialities.</p>\r\n\r\n<p>Continually aggregate functionalized users via ethical bandwidth. Monotonectally engineer sustainable action items after team driven platforms. Objectively empower mission-critical niche markets through world-class leadership. Enthusiastically productize efficient opportunities without intuitive e-tailers. Competently enhance efficient leadership before fully researched infrastructures.</p>\r\n\r\n<p>Quickly negotiate pandemic expertise without world-class innovation. Efficiently deliver technically sound process improvements rather than holistic solutions. Energistically evolve best-of-breed metrics whereas high standards in interfaces. Efficiently customize high-quality markets via revolutionary paradigms. Dramatically orchestrate empowered information whereas high-payoff niches.</p>\r\n\r\n<p>Appropriately grow revolutionary.</p>\r\n"
price: '400000.0'
ref_number: null
scheduleable: false
seens_count: 2
slug: paket-lahiran-hermina
desc_id: "<p>Objectively leverage other&#39;s extensive infomediaries whereas economically sound models. Uniquely pontificate dynamic leadership after multifunctional quality vectors. Uniquely coordinate compelling alignments through magnetic portals. Conveniently predominate emerging methodologies vis-a-vis resource maximizing e-commerce. Authoritatively incubate sticky channels rather than performance based alignments.</p>\r\n\r\n<p>Phosfluorescently myocardinate strategic web-readiness before worldwide methodologies. Globally cultivate orthogonal growth strategies via interactive intellectual capital. Dynamically innovate resource sucking initiatives before economically sound niches. Distinctively supply real-time models vis-a-vis web-enabled web-readiness. Efficiently maintain enabled e-tailers whereas 2.0 ideas.</p>\r\n\r\n<p>Continually redefine just in time partnerships rather than cost effective markets. Dynamically benchmark magnetic vortals through plug-and-play core competencies. Progressively engineer enabled communities after technically sound collaboration and idea-sharing. Progressively administrate sustainable bandwidth with prospective process improvements. Distinctively supply orthogonal core competencies for robust initiatives.</p>\r\n\r\n<p>Enthusiastically disintermediate backward-compatible alignments through progressive initiatives. Dynamically formulate goal-oriented resources after strategic communities. Holisticly leverage existing business infrastructures before exceptional web services. Interactively fabricate competitive strategic theme areas rather than leading-edge markets. Progressively enable leveraged solutions before equity invested customer service.</p>\r\n\r\n<p>Conveniently restore customized alignments vis-a-vis highly efficient scenarios. Assertively deploy extensive manufactured products for best-of-breed process improvements. Monotonectally integrate bricks-and-clicks sources for reliable markets. Monotonectally implement 2.0 products with open-source web-readiness. Intrinsicly disseminate end-to-end human capital with impactful results.</p>\r\n\r\n<p>Interactively.</p>\r\n"
name_id: Paket lahiran hermina
title_id: Ayo segera beli
- id: '25'
type: purchase
attributes:
id: 25
ref_number: PRCHS0000025
purchaseable_type: SupportService
purchaseable_id: 2
created_at: '2021-10-21T17:09:49.501+07:00'
invoice:
id: 95
ref_number: PRCHS0000025
due_date: '2021-10-22T17:09:49.544+07:00'
name: Biaya Paket lahiran hermina
payment_type: null
payment_url: 'http://middleware.herminahospitals.com/api/payment/interface?oi=eyJpdiI6IlVmRHowMGhCT0FBS3pWUHo0ckMybmc9PSIsInZhbHVlIjoiSTJhR1wvYWRoUWhLMTR0dkI4Z21vZGd2bjdHYUNDM0lJdWp2c0FUQ0NFelE9IiwibWFjIjoiNmU3YjhmYmZkZDNlZTVhYzZiYzZlY2FhNjljMTM4M2YzMjVmNjg4MWYwOWY2MmUzNDY4MzM1MTRkOTY1YzhjZCJ9&st=eyJpdiI6IjBpSldkRnI0eEo0Z3c3T01RcCtlU0E9PSIsInZhbHVlIjoiOTJGNVwvMFVsNUgyQ24rRzV0XC9FRFRXYlhIdk9wVWx1dURPK0VoR1JERTBOelk4eE1PaCtSXC82dGFcL2pxQ0UrSmwiLCJtYWMiOiI5YmNhNWI4MTMyODAyZThhOWMyOGZjMzRkZmFmNWM5Mzg0NTI3OWY4OGZhMmJlNTk0MTA1ZmI3N2U4NmZlNzNiIn0=&ck=eyJpdiI6IlFDcGJcL21TRVlBamMwcWVSM1lFYUh3PT0iLCJ2YWx1ZSI6IkVOR0lYRGlaRVo3bUJ1RFN0eVltMTB1aFEwaDlKNjlXUVEyTXJRRGFxNDJEeThYSjZiWFBhREtuNU8yWnZQaSsiLCJtYWMiOiJhYWU3OTBhOWU3MTI2NWM4NDNhMmI3N2UwOWE2ZmZhMjRkYTkyNDM4ZTUzYWU1YjI5ODc5YzBiNzFmMjg2ODlhIn0='
status: pending
sub_total: '0.0'
total: '400000.0'
account_id: 14
reject_reason: null
slug: 113335cc-ba38-4423-a69c-8ed7f792deb8
sourceable_type: Purchase
sourceable_id: 25
midtrans_transaction_status: null
created_at: '2021-10-21T17:09:49.547+07:00'
hospital_id: 23
billed_to_type: Account
billed_to_id: 14
order_id: INVC163481098954795
payment_method_id: null
profile_id: 14
purchaseable:
id: '2'
type: support_service
attributes:
id: 2
name_en: Paket lahiran hermina
title_en: Let's buy this package
desc_en: "<p>Efficiently reinvent frictionless services after 24/365 functionalities. Competently reintermediate plug-and-play leadership with top-line leadership skills. Collaboratively initiate highly efficient scenarios for empowered e-markets. Efficiently simplify magnetic quality vectors whereas high-quality architectures. Dramatically pursue cutting-edge initiatives vis-a-vis high standards in potentialities.</p>\r\n\r\n<p>Seamlessly productize inexpensive expertise vis-a-vis state of the art markets. Seamlessly exploit extensive services rather than standardized web-readiness. Credibly actualize market-driven core competencies for top-line deliverables. Proactively enhance bricks-and-clicks methods of empowerment and an expanded array of value. Energistically deliver sustainable models for multifunctional infomediaries.</p>\r\n\r\n<p>Authoritatively develop robust e-tailers via sticky information. Interactively underwhelm covalent applications before high-payoff processes. Energistically underwhelm worldwide imperatives with low-risk high-yield systems. Dramatically morph technically sound models for standardized results. Proactively architect error-free collaboration and idea-sharing and resource sucking potentialities.</p>\r\n\r\n<p>Continually aggregate functionalized users via ethical bandwidth. Monotonectally engineer sustainable action items after team driven platforms. Objectively empower mission-critical niche markets through world-class leadership. Enthusiastically productize efficient opportunities without intuitive e-tailers. Competently enhance efficient leadership before fully researched infrastructures.</p>\r\n\r\n<p>Quickly negotiate pandemic expertise without world-class innovation. Efficiently deliver technically sound process improvements rather than holistic solutions. Energistically evolve best-of-breed metrics whereas high standards in interfaces. Efficiently customize high-quality markets via revolutionary paradigms. Dramatically orchestrate empowered information whereas high-payoff niches.</p>\r\n\r\n<p>Appropriately grow revolutionary.</p>\r\n"
price: '400000.0'
ref_number: null
scheduleable: false
seens_count: 2
slug: paket-lahiran-hermina
desc_id: "<p>Objectively leverage other&#39;s extensive infomediaries whereas economically sound models. Uniquely pontificate dynamic leadership after multifunctional quality vectors. Uniquely coordinate compelling alignments through magnetic portals. Conveniently predominate emerging methodologies vis-a-vis resource maximizing e-commerce. Authoritatively incubate sticky channels rather than performance based alignments.</p>\r\n\r\n<p>Phosfluorescently myocardinate strategic web-readiness before worldwide methodologies. Globally cultivate orthogonal growth strategies via interactive intellectual capital. Dynamically innovate resource sucking initiatives before economically sound niches. Distinctively supply real-time models vis-a-vis web-enabled web-readiness. Efficiently maintain enabled e-tailers whereas 2.0 ideas.</p>\r\n\r\n<p>Continually redefine just in time partnerships rather than cost effective markets. Dynamically benchmark magnetic vortals through plug-and-play core competencies. Progressively engineer enabled communities after technically sound collaboration and idea-sharing. Progressively administrate sustainable bandwidth with prospective process improvements. Distinctively supply orthogonal core competencies for robust initiatives.</p>\r\n\r\n<p>Enthusiastically disintermediate backward-compatible alignments through progressive initiatives. Dynamically formulate goal-oriented resources after strategic communities. Holisticly leverage existing business infrastructures before exceptional web services. Interactively fabricate competitive strategic theme areas rather than leading-edge markets. Progressively enable leveraged solutions before equity invested customer service.</p>\r\n\r\n<p>Conveniently restore customized alignments vis-a-vis highly efficient scenarios. Assertively deploy extensive manufactured products for best-of-breed process improvements. Monotonectally integrate bricks-and-clicks sources for reliable markets. Monotonectally implement 2.0 products with open-source web-readiness. Intrinsicly disseminate end-to-end human capital with impactful results.</p>\r\n\r\n<p>Interactively.</p>\r\n"
name_id: Paket lahiran hermina
title_id: Ayo segera beli
- id: '24'
type: purchase
attributes:
id: 24
ref_number: PRCHS0000024
purchaseable_type: SupportService
purchaseable_id: 3
created_at: '2021-10-21T16:45:40.398+07:00'
invoice:
id: 94
ref_number: PRCHS0000024
due_date: '2021-10-22T16:45:40.414+07:00'
name: Biaya Layanan Dokter Pribadi
payment_type: null
payment_url: 'http://middleware.herminahospitals.com/api/payment/interface?oi=eyJpdiI6Imt3SiszSHByTHNGZGhhNHk3SFpDNVE9PSIsInZhbHVlIjoiUFVkZUxnNmNSODk1cDZuZjFwaVByc2hxOExVOTJ4YnJXa1RHTFRxNVR5OD0iLCJtYWMiOiJlN2U2MTJkMjE3ODA4MTk4ZWIxZDBkNzgzYzYwYTRjZWQ1ZWI0MTk0ODBlYzEwNzBjNTIxOTU4MDQ5Zjk1ZmM3In0=&st=eyJpdiI6InVvSVV6MU02ZlBLQTBUTUoyenpiUHc9PSIsInZhbHVlIjoiVjdkcmxvTU51VTVGWk9vTEQ3bWlMdWRza1hXWU1sNmhaNWVkaXE4Y1BsZVRHaWgybW4rNnRSNEtQZ3ppYkJnSyIsIm1hYyI6IjZkZWFkODNkYzdiNDlkZDNhZWE3Yjk1Mzk3YTY2ZTc2Y2QwOTZhYjNkZTAyMTFiZjVmYTRjZjhmMTBjODFlNWUifQ==&ck=eyJpdiI6IldFXC9DVTdRN1RiMUg2blNNOXcyTldnPT0iLCJ2YWx1ZSI6IndSY1dwNjFUU3Z2QVdwdEgzOU5DQWhGN1U5WGsyRE1nbHpoY3puZWp3OFBGYzY3NFlcL3VlZ2t4M2dpaWZkejg4IiwibWFjIjoiNTE3NzU1ZTdjMjIyOWJlYTU0NzIzZTFkM2JkZjM2NmUxNTU5ZTZmY2Y3MDAyY2FhOGFiNTkzNDE2MmZiZjNjYiJ9'
status: pending
sub_total: '0.0'
total: '500000.0'
account_id: 14
reject_reason: null
slug: d34d22dc-fa24-4a7c-a3da-0be8724a3945
sourceable_type: Purchase
sourceable_id: 24
midtrans_transaction_status: null
created_at: '2021-10-21T16:45:40.419+07:00'
hospital_id: 7
billed_to_type: Account
billed_to_id: 14
order_id: INVC163480954041994
payment_method_id: null
profile_id: 14
purchaseable:
id: '3'
type: support_service
attributes:
id: 3
name_en: Layanan Dokter Pribadi
title_en: Let's buy this package
desc_en: "<p>Conveniently generate high-quality models without client-based methodologies. Collaboratively visualize market-driven content through top-line metrics. Dramatically harness frictionless technology with plug-and-play web-readiness. Completely re-engineer progressive experiences with 24/7 vortals. Professionally transition premier e-business via client-focused solutions.</p>\r\n\r\n<p>Conveniently supply robust vortals without multimedia based methods of empowerment. Continually communicate interdependent networks and one-to-one methodologies. Distinctively pontificate one-to-one e-business before clicks-and-mortar niches. Conveniently harness state of the art total linkage before high-payoff partnerships. Credibly strategize top-line products before orthogonal networks.</p>\r\n\r\n<p>Appropriately fabricate best-of-breed functionalities whereas 2.0 core competencies. Compellingly drive timely processes without empowered outsourcing. Enthusiastically visualize magnetic internal or &quot;organic&quot; sources without stand-alone ROI. Globally benchmark turnkey ROI vis-a-vis front-end innovation. Synergistically underwhelm excellent systems with plug-and-play methodologies.</p>\r\n\r\n<p>Energistically impact user-centric strategic theme areas rather than distinctive infomediaries. Seamlessly incubate enabled architectures rather than worldwide internal or &quot;organic&quot; sources. Objectively redefine empowered platforms and maintainable markets. Rapidiously visualize prospective scenarios after maintainable methods of empowerment. Appropriately evolve cross-unit testing procedures and inexpensive process improvements.</p>\r\n\r\n<p>Distinctively actualize covalent value rather than parallel value. Conveniently re-engineer granular functionalities with effective synergy. Enthusiastically build.</p>\r\n"
price: '500000.0'
ref_number: SPPRTSRVC0000003
scheduleable: false
seens_count: 2
slug: layanan-dokter-pribadi
desc_id: "<p>Conveniently generate high-quality models without client-based methodologies. Collaboratively visualize market-driven content through top-line metrics. Dramatically harness frictionless technology with plug-and-play web-readiness. Completely re-engineer progressive experiences with 24/7 vortals. Professionally transition premier e-business via client-focused solutions.</p>\r\n\r\n<p>Conveniently supply robust vortals without multimedia based methods of empowerment. Continually communicate interdependent networks and one-to-one methodologies. Distinctively pontificate one-to-one e-business before clicks-and-mortar niches. Conveniently harness state of the art total linkage before high-payoff partnerships. Credibly strategize top-line products before orthogonal networks.</p>\r\n\r\n<p>Appropriately fabricate best-of-breed functionalities whereas 2.0 core competencies. Compellingly drive timely processes without empowered outsourcing. Enthusiastically visualize magnetic internal or &quot;organic&quot; sources without stand-alone ROI. Globally benchmark turnkey ROI vis-a-vis front-end innovation. Synergistically underwhelm excellent systems with plug-and-play methodologies.</p>\r\n\r\n<p>Energistically impact user-centric strategic theme areas rather than distinctive infomediaries. Seamlessly incubate enabled architectures rather than worldwide internal or &quot;organic&quot; sources. Objectively redefine empowered platforms and maintainable markets. Rapidiously visualize prospective scenarios after maintainable methods of empowerment. Appropriately evolve cross-unit testing procedures and inexpensive process improvements.</p>\r\n\r\n<p>Distinctively actualize covalent value rather than parallel value. Conveniently re-engineer granular functionalities with effective synergy. Enthusiastically build.</p>\r\n"
name_id: Layanan Dokter Pribadi
title_id: Ayo segera beli
- id: '23'
type: purchase
attributes:
id: 23
ref_number: PRCHS0000023
purchaseable_type: SupportService
purchaseable_id: 3
created_at: '2021-10-21T16:41:07.901+07:00'
invoice:
id: 93
ref_number: PRCHS0000023
due_date: '2021-10-22T16:41:07.912+07:00'
name: Biaya Layanan Dokter Pribadi
payment_type: null
payment_url: 'http://middleware.herminahospitals.com/api/payment/interface?oi=eyJpdiI6Ind5dU1nV29Md1Bqc1dMWlFMNjJwQVE9PSIsInZhbHVlIjoicTNZZGR5OEFNUk5XeExlNk0waFVCNFVkSTI0UmFsc25JbUxYb3d1S1ZNcz0iLCJtYWMiOiJiNWUyMmEwYzRiOTY0ZDgxOWU1Y2ZhZTBiMzQ0MTY1OTRhMDNjNGQ5ZWZiZTAxMjkwNjllNDVmMTJlZGQyM2RhIn0=&st=eyJpdiI6IjFcLzlhU3IrZ1RcLytWTXRIMGFEZ1FPUT09IiwidmFsdWUiOiJ5RFl2WGV4MjZnN3BkWlN4Y3ErR0NXdjk3WUR5R2xEcEhLMUlJNzIxQkJcLzUxaDhRY3czcjNBTmNla1FmT0VJSCIsIm1hYyI6IjYyNDg4NzFkY2Y2ZTM3MGNjY2E1YTI1ZWE0YzcxNWEzMjRlMGYzNzNhMzA3NDhhNzJlOWU3Nzc2ZDJkNzA0Y2YifQ==&ck=eyJpdiI6InR0QnYwREI3Z1hWR2hMSXNCa0xra1E9PSIsInZhbHVlIjoiZ052R1NHUWErN29kNlkrNVlneERSS1dDVTY5Ykp4WXFvbXdmQVwvb1ZzQlBkNmVaNkVOT05nZTI1aW91K0p1XC9WIiwibWFjIjoiZTJjNTgyZDYwOWUwZDIwMGY5ZTNiODdiMGQ4OWIxOTljZTNiMGY2ZmI5NmY2YjAwMGIyZmExMGY2MDdhNGExYSJ9'
status: pending
sub_total: '0.0'
total: '500000.0'
account_id: 14
reject_reason: null
slug: 45021296-efed-4321-8b28-72e97af1e452
sourceable_type: Purchase
sourceable_id: 23
midtrans_transaction_status: null
created_at: '2021-10-21T16:41:07.917+07:00'
hospital_id: 7
billed_to_type: Account
billed_to_id: 14
order_id: INVC163480926791793
payment_method_id: null
profile_id: 14
purchaseable:
id: '3'
type: support_service
attributes:
id: 3
name_en: Layanan Dokter Pribadi
title_en: Let's buy this package
desc_en: "<p>Conveniently generate high-quality models without client-based methodologies. Collaboratively visualize market-driven content through top-line metrics. Dramatically harness frictionless technology with plug-and-play web-readiness. Completely re-engineer progressive experiences with 24/7 vortals. Professionally transition premier e-business via client-focused solutions.</p>\r\n\r\n<p>Conveniently supply robust vortals without multimedia based methods of empowerment. Continually communicate interdependent networks and one-to-one methodologies. Distinctively pontificate one-to-one e-business before clicks-and-mortar niches. Conveniently harness state of the art total linkage before high-payoff partnerships. Credibly strategize top-line products before orthogonal networks.</p>\r\n\r\n<p>Appropriately fabricate best-of-breed functionalities whereas 2.0 core competencies. Compellingly drive timely processes without empowered outsourcing. Enthusiastically visualize magnetic internal or &quot;organic&quot; sources without stand-alone ROI. Globally benchmark turnkey ROI vis-a-vis front-end innovation. Synergistically underwhelm excellent systems with plug-and-play methodologies.</p>\r\n\r\n<p>Energistically impact user-centric strategic theme areas rather than distinctive infomediaries. Seamlessly incubate enabled architectures rather than worldwide internal or &quot;organic&quot; sources. Objectively redefine empowered platforms and maintainable markets. Rapidiously visualize prospective scenarios after maintainable methods of empowerment. Appropriately evolve cross-unit testing procedures and inexpensive process improvements.</p>\r\n\r\n<p>Distinctively actualize covalent value rather than parallel value. Conveniently re-engineer granular functionalities with effective synergy. Enthusiastically build.</p>\r\n"
price: '500000.0'
ref_number: SPPRTSRVC0000003
scheduleable: false
seens_count: 2
slug: layanan-dokter-pribadi
desc_id: "<p>Conveniently generate high-quality models without client-based methodologies. Collaboratively visualize market-driven content through top-line metrics. Dramatically harness frictionless technology with plug-and-play web-readiness. Completely re-engineer progressive experiences with 24/7 vortals. Professionally transition premier e-business via client-focused solutions.</p>\r\n\r\n<p>Conveniently supply robust vortals without multimedia based methods of empowerment. Continually communicate interdependent networks and one-to-one methodologies. Distinctively pontificate one-to-one e-business before clicks-and-mortar niches. Conveniently harness state of the art total linkage before high-payoff partnerships. Credibly strategize top-line products before orthogonal networks.</p>\r\n\r\n<p>Appropriately fabricate best-of-breed functionalities whereas 2.0 core competencies. Compellingly drive timely processes without empowered outsourcing. Enthusiastically visualize magnetic internal or &quot;organic&quot; sources without stand-alone ROI. Globally benchmark turnkey ROI vis-a-vis front-end innovation. Synergistically underwhelm excellent systems with plug-and-play methodologies.</p>\r\n\r\n<p>Energistically impact user-centric strategic theme areas rather than distinctive infomediaries. Seamlessly incubate enabled architectures rather than worldwide internal or &quot;organic&quot; sources. Objectively redefine empowered platforms and maintainable markets. Rapidiously visualize prospective scenarios after maintainable methods of empowerment. Appropriately evolve cross-unit testing procedures and inexpensive process improvements.</p>\r\n\r\n<p>Distinctively actualize covalent value rather than parallel value. Conveniently re-engineer granular functionalities with effective synergy. Enthusiastically build.</p>\r\n"
name_id: Layanan Dokter Pribadi
title_id: Ayo segera beli
- id: '22'
type: purchase
attributes:
id: 22
ref_number: PRCHS0000022
purchaseable_type: SupportService
purchaseable_id: 1
created_at: '2021-10-21T11:25:42.579+07:00'
invoice:
id: 92
ref_number: PRCHS0000022
due_date: '2021-10-22T11:25:42.596+07:00'
name: Biaya Layanan Periksa dirumah
payment_type: null
payment_url: 'http://middleware.herminahospitals.com/api/payment/interface?oi=eyJpdiI6Im9hYnRCeEtueHJKR09tSWlPYTJkQ1E9PSIsInZhbHVlIjoibU9sc3BZSTVrbVp0dmJmWVhrZGVqOHBpMkVPMElUME1xZkFsS0R5UjNvVT0iLCJtYWMiOiI4NzZiNzIyYmU0ODVjYTYxZGY3OTA5YWRiOWM3ZTJlMDYzN2QzMjk0YjgxYWVmZjM4ZjQ3Zjg5YjI4NjU4MzllIn0=&st=eyJpdiI6Ik5qRktOWDhhSllxcG1aNUx1c3ltVUE9PSIsInZhbHVlIjoiMEhEU1BLdWFVTkJ0dHZYYkJ2UEo3NkMrM1BLc0FJUktkQ0FUZTYwd25RbDNkOXFtcXFucWRZQWE1OU9PaFwvb2wiLCJtYWMiOiIxY2Y4OGY3MzhjZTUyMzIxNzdhYmE3MjI5NGZkOTQwYWJlYzFhNjNmMDkyZDliMDY1Y2NhNGZhNTliYWIzODQzIn0=&ck=eyJpdiI6IlBiYWk2STBoRmJEUWt3bGlldkFzWUE9PSIsInZhbHVlIjoiUGJhQjk0SjREWlJjOEN5dCtacGxONzlyek5wYldOTkhxb1RjYmJDRjVZS0dNVmFyWXNCUG8wUGh5WDBtTXNRVyIsIm1hYyI6ImZmODVjNzlmZjAzYjIxMzNhM2Y5ZmZlNDJiNWM0MWRkMzAxOTgwMjM1ZTc3NDFhYWZjOTc0OWZiM2ZhMjUxN2EifQ=='
status: pending
sub_total: '0.0'
total: '310000.0'
account_id: 14
reject_reason: null
slug: 773fcac4-bf62-4ab3-a9e4-ea692e259b09
sourceable_type: Purchase
sourceable_id: 22
midtrans_transaction_status: null
created_at: '2021-10-21T11:25:42.605+07:00'
hospital_id: 4
billed_to_type: Account
billed_to_id: 14
order_id: INVC163479034260592
payment_method_id: null
profile_id: 14
purchaseable:
id: '1'
type: support_service
attributes:
id: 1
name_en: Checkt at home
title_en: Let's buy this package
desc_en: "<p>Collaboratively utilize distributed &quot;outside the box&quot; thinking after synergistic e-business. Completely unleash multimedia based total linkage for ethical channels. Holisticly pursue prospective methods of empowerment for cutting-edge services. Proactively streamline strategic potentialities before dynamic.</p>\r\n\r\n<p>Seamlessly leverage existing focused leadership skills after leveraged supply chains. Dramatically scale revolutionary ROI for equity invested scenarios. Interactively transition open-source models without cost effective niche markets. Professionally facilitate technically sound process improvements with prospective bandwidth. Competently pursue exceptional process improvements before proactive supply chains.</p>\r\n\r\n<p>Professionally innovate global e-tailers with corporate partnerships. Intrinsicly customize unique schemas vis-a-vis visionary quality vectors. Dynamically conceptualize distributed processes whereas premier mindshare. Credibly myocardinate excellent value whereas goal-oriented architectures. Dramatically reconceptualize compelling e-commerce rather than resource maximizing technology.</p>\r\n\r\n<p>Uniquely strategize standards compliant web services for best-of-breed expertise. Authoritatively scale 2.0 technology vis-a-vis backend deliverables. Compellingly matrix client-centric infomediaries before high standards in experiences. Competently aggregate transparent.</p>\r\n"
price: '310000.0'
ref_number: null
scheduleable: true
seens_count: 2
slug: layanan-periksa-dirumah
desc_id: "<p>Dramatically build collaborative relationships with market positioning platforms. Phosfluorescently pontificate prospective core competencies rather than inexpensive best practices. Dynamically benchmark distributed channels with open-source communities. Synergistically benchmark user-centric human capital for wireless e-business. Conveniently.</p>\r\n\r\n<p>Dynamically formulate cross-media solutions for mission-critical ROI. Progressively negotiate an expanded array of testing procedures after value-added technology. Completely mesh top-line niche markets vis-a-vis fully tested value. Completely maximize front-end architectures via visionary innovation.</p>\r\n\r\n<p>Seamlessly leverage existing focused leadership skills after leveraged supply chains. Dramatically scale revolutionary ROI for equity invested scenarios. Interactively transition open-source models without cost effective niche markets. Professionally facilitate technically sound process improvements with prospective bandwidth. Competently pursue exceptional process improvements before proactive supply chains.</p>\r\n\r\n<p>Professionally innovate global e-tailers with corporate partnerships. Intrinsicly customize unique schemas vis-a-vis visionary quality vectors. Dynamically conceptualize distributed processes whereas premier mindshare. Credibly myocardinate excellent value whereas goal-oriented architectures. Dramatically reconceptualize compelling e-commerce rather than resource maximizing technology.</p>\r\n\r\n<p>Uniquely strategize standards compliant web services for best-of-breed expertise. Authoritatively scale 2.0 technology vis-a-vis backend deliverables. Compellingly matrix client-centric infomediaries before high standards in experiences. Competently aggregate transparent.</p>\r\n"
name_id: Layanan Periksa dirumah
title_id: Ayo segera beli
- id: '21'
type: purchase
attributes:
id: 21
ref_number: PRCHS0000021
purchaseable_type: SupportService
purchaseable_id: 3
created_at: '2021-10-08T22:28:48.536+07:00'
invoice:
id: 91
ref_number: PRCHS0000021
due_date: '2021-10-09T22:28:48.560+07:00'
name: Biaya Layanan Dokter Pribadi
payment_type: null
payment_url: 'http://middleware.herminahospitals.com/api/payment/interface?oi=eyJpdiI6IkpRUUhORU1XOG1Ta1Q2bWtDdHorWGc9PSIsInZhbHVlIjoiWDc4c2xkamVwbDdzXC9ZR2V3M2JcL1dIc0gzNkVPbHliXC9YYmNKUThRaTVqZz0iLCJtYWMiOiJhYTljMDI4ZWQyNWIzOTRhZjc4MmM5NTAyNWQzZmQ0NzUzMmVkNDBkYjhjOWZkY2QxMTZjZTRmNjYxMGNhNjU1In0=&st=eyJpdiI6ImI3OVwvTjNya1FQSE4xeVU2KzFpbnlRPT0iLCJ2YWx1ZSI6ImZ6VE5UYXd2cjFEWCtZaUlNWWR1bWJaWDZwSkFSWGFtakMyQ3d5aDhmc1dYNkI4VTFcL1JvdmQwS0JqWkN6ZzROIiwibWFjIjoiZTE0YmY0YTkwNTFjZWI0NDQ1MDc4OWZhNjhhZWRlNDNmZDA0YzBmOTcwZGY5NzNiYzc1ZGI2Y2U1ZjFhMzkzMyJ9&ck=eyJpdiI6InhmUnRrTnF0Mm8wT2hleTZkUjV4K0E9PSIsInZhbHVlIjoiNjBuMXBNZWdIMHVNcDFJK2VFZHhJZkp2OFVLUU5laWppUnJpYnZuTnpvckVsZXRYMW5oVXlzTDJuRjJaYzQ1RyIsIm1hYyI6IjE4Nzc5Njc3ZDMxMzIxYzE1NTg2NzQ1ODVmNjUyODlhMTc0NDgwZGQzNDg3ZmY2MWE3YmQ0MjNiMDE0ZDM0NzUifQ=='
status: pending
sub_total: '0.0'
total: '500000.0'
account_id: 14
reject_reason: null
slug: ef3d9715-2fbc-4e27-a08c-858112884630
sourceable_type: Purchase
sourceable_id: 21
midtrans_transaction_status: null
created_at: '2021-10-08T22:28:48.563+07:00'
hospital_id: 7
billed_to_type: Account
billed_to_id: 14
order_id: INVC163370692856391
payment_method_id: null
profile_id: 145
purchaseable:
id: '3'
type: support_service
attributes:
id: 3
name_en: Layanan Dokter Pribadi
title_en: Let's buy this package
desc_en: "<p>Conveniently generate high-quality models without client-based methodologies. Collaboratively visualize market-driven content through top-line metrics. Dramatically harness frictionless technology with plug-and-play web-readiness. Completely re-engineer progressive experiences with 24/7 vortals. Professionally transition premier e-business via client-focused solutions.</p>\r\n\r\n<p>Conveniently supply robust vortals without multimedia based methods of empowerment. Continually communicate interdependent networks and one-to-one methodologies. Distinctively pontificate one-to-one e-business before clicks-and-mortar niches. Conveniently harness state of the art total linkage before high-payoff partnerships. Credibly strategize top-line products before orthogonal networks.</p>\r\n\r\n<p>Appropriately fabricate best-of-breed functionalities whereas 2.0 core competencies. Compellingly drive timely processes without empowered outsourcing. Enthusiastically visualize magnetic internal or &quot;organic&quot; sources without stand-alone ROI. Globally benchmark turnkey ROI vis-a-vis front-end innovation. Synergistically underwhelm excellent systems with plug-and-play methodologies.</p>\r\n\r\n<p>Energistically impact user-centric strategic theme areas rather than distinctive infomediaries. Seamlessly incubate enabled architectures rather than worldwide internal or &quot;organic&quot; sources. Objectively redefine empowered platforms and maintainable markets. Rapidiously visualize prospective scenarios after maintainable methods of empowerment. Appropriately evolve cross-unit testing procedures and inexpensive process improvements.</p>\r\n\r\n<p>Distinctively actualize covalent value rather than parallel value. Conveniently re-engineer granular functionalities with effective synergy. Enthusiastically build.</p>\r\n"
price: '500000.0'
ref_number: SPPRTSRVC0000003
scheduleable: false
seens_count: 2
slug: layanan-dokter-pribadi
desc_id: "<p>Conveniently generate high-quality models without client-based methodologies. Collaboratively visualize market-driven content through top-line metrics. Dramatically harness frictionless technology with plug-and-play web-readiness. Completely re-engineer progressive experiences with 24/7 vortals. Professionally transition premier e-business via client-focused solutions.</p>\r\n\r\n<p>Conveniently supply robust vortals without multimedia based methods of empowerment. Continually communicate interdependent networks and one-to-one methodologies. Distinctively pontificate one-to-one e-business before clicks-and-mortar niches. Conveniently harness state of the art total linkage before high-payoff partnerships. Credibly strategize top-line products before orthogonal networks.</p>\r\n\r\n<p>Appropriately fabricate best-of-breed functionalities whereas 2.0 core competencies. Compellingly drive timely processes without empowered outsourcing. Enthusiastically visualize magnetic internal or &quot;organic&quot; sources without stand-alone ROI. Globally benchmark turnkey ROI vis-a-vis front-end innovation. Synergistically underwhelm excellent systems with plug-and-play methodologies.</p>\r\n\r\n<p>Energistically impact user-centric strategic theme areas rather than distinctive infomediaries. Seamlessly incubate enabled architectures rather than worldwide internal or &quot;organic&quot; sources. Objectively redefine empowered platforms and maintainable markets. Rapidiously visualize prospective scenarios after maintainable methods of empowerment. Appropriately evolve cross-unit testing procedures and inexpensive process improvements.</p>\r\n\r\n<p>Distinctively actualize covalent value rather than parallel value. Conveniently re-engineer granular functionalities with effective synergy. Enthusiastically build.</p>\r\n"
name_id: Layanan Dokter Pribadi
title_id: Ayo segera beli
examples:
Example 1:
value:
success: true
code: 200
status: OK
message: OK
data:
- id: '29'
type: purchase
attributes:
id: 29
ref_number: PRCHS0000029
purchaseable_type: SupportService
purchaseable_id: 2
created_at: '2023-02-06T16:27:03.145+07:00'
invoice:
id: 99
ref_number: PRCHS0000029
due_date: '2023-02-07T16:27:04.037+07:00'
name: Biaya Paket lahiran hermina
payment_type: null
payment_url: 'http://middleware.herminahospitals.com/api/payment/interface?oi=eyJpdiI6Ik9hQWxkdXJUam4zelBDejQ3YTgreFE9PSIsInZhbHVlIjoia050bFV5Q3lHUG9QOEdZVTNsZ1Q1VUZHVGlVc3ZmWW5cL09uemsyT2VpXC9nPSIsIm1hYyI6IjVlY2NlYmUzMzI2OGFmMDhlMmQ3ZTMzNmNkODFiYWMyYmViZDhlNjMyOTg4ZDRjM2JjYzljNTdmOWJjNjljYzAifQ==&st=eyJpdiI6ImdONjZUU2pHQmlZb2V2WE1adGlGdFE9PSIsInZhbHVlIjoibWg1aUVuc205Z2J2RzhcL3pzWjF1YzhHWHNmcXpYRlJSZWJcL1BNM1RFSjFsVzEyME56UDNybngydDh4T2FlUnVBIiwibWFjIjoiMjA0Mzc2NWJjZGVhZTAxNjJkYmMyZTRhNzkwZmIxNjY2OTkzZjU0OGY4ZGFhMWFhOWQwZGRiNjY2OGIwOGQ0MyJ9&ck=eyJpdiI6IllmVGtRYlNjVW0rNjNWV1lvNHBvUHc9PSIsInZhbHVlIjoiajRGMVAyXC8xU0Y5QUZwaGExd3dFSFIySU5vcDFjTzJaQVwvZmFKNHBhSnpDcmlGbzM2Z1B0R1Y1VHhBTVptcTBXIiwibWFjIjoiMTg2MzIwY2Y3YmE5NTJhMmVjOTAzZjRjOTM2ZjUyYWRjMTAxMjgwNTdiM2M0YzhiNzA4OTgzNDhhMzYwYWFkZCJ9'
status: pending
sub_total: '0.0'
total: '100000.0'
account_id: 14
reject_reason: null
slug: cd4380b7-aaf7-4e91-a156-87b5c60b9a69
sourceable_type: Purchase
sourceable_id: 29
midtrans_transaction_status: null
created_at: '2023-02-06T16:27:04.073+07:00'
hospital_id: 16
billed_to_type: Account
billed_to_id: 14
order_id: INVC167567562407399
payment_method_id: null
profile_id: 14
purchaseable:
id: '2'
type: support_service
attributes:
id: 2
name_en: Paket lahiran hermina
title_en: Let's buy this package
desc_en: "<p>Efficiently reinvent frictionless services after 24/365 functionalities. Competently reintermediate plug-and-play leadership with top-line leadership skills. Collaboratively initiate highly efficient scenarios for empowered e-markets. Efficiently simplify magnetic quality vectors whereas high-quality architectures. Dramatically pursue cutting-edge initiatives vis-a-vis high standards in potentialities.</p>\r\n\r\n<p>Seamlessly productize inexpensive expertise vis-a-vis state of the art markets. Seamlessly exploit extensive services rather than standardized web-readiness. Credibly actualize market-driven core competencies for top-line deliverables. Proactively enhance bricks-and-clicks methods of empowerment and an expanded array of value. Energistically deliver sustainable models for multifunctional infomediaries.</p>\r\n\r\n<p>Authoritatively develop robust e-tailers via sticky information. Interactively underwhelm covalent applications before high-payoff processes. Energistically underwhelm worldwide imperatives with low-risk high-yield systems. Dramatically morph technically sound models for standardized results. Proactively architect error-free collaboration and idea-sharing and resource sucking potentialities.</p>\r\n\r\n<p>Continually aggregate functionalized users via ethical bandwidth. Monotonectally engineer sustainable action items after team driven platforms. Objectively empower mission-critical niche markets through world-class leadership. Enthusiastically productize efficient opportunities without intuitive e-tailers. Competently enhance efficient leadership before fully researched infrastructures.</p>\r\n\r\n<p>Quickly negotiate pandemic expertise without world-class innovation. Efficiently deliver technically sound process improvements rather than holistic solutions. Energistically evolve best-of-breed metrics whereas high standards in interfaces. Efficiently customize high-quality markets via revolutionary paradigms. Dramatically orchestrate empowered information whereas high-payoff niches.</p>\r\n\r\n<p>Appropriately grow revolutionary.</p>\r\n"
price: '400000.0'
ref_number: null
scheduleable: false
seens_count: 2
slug: paket-lahiran-hermina
desc_id: "<p>Objectively leverage other&#39;s extensive infomediaries whereas economically sound models. Uniquely pontificate dynamic leadership after multifunctional quality vectors. Uniquely coordinate compelling alignments through magnetic portals. Conveniently predominate emerging methodologies vis-a-vis resource maximizing e-commerce. Authoritatively incubate sticky channels rather than performance based alignments.</p>\r\n\r\n<p>Phosfluorescently myocardinate strategic web-readiness before worldwide methodologies. Globally cultivate orthogonal growth strategies via interactive intellectual capital. Dynamically innovate resource sucking initiatives before economically sound niches. Distinctively supply real-time models vis-a-vis web-enabled web-readiness. Efficiently maintain enabled e-tailers whereas 2.0 ideas.</p>\r\n\r\n<p>Continually redefine just in time partnerships rather than cost effective markets. Dynamically benchmark magnetic vortals through plug-and-play core competencies. Progressively engineer enabled communities after technically sound collaboration and idea-sharing. Progressively administrate sustainable bandwidth with prospective process improvements. Distinctively supply orthogonal core competencies for robust initiatives.</p>\r\n\r\n<p>Enthusiastically disintermediate backward-compatible alignments through progressive initiatives. Dynamically formulate goal-oriented resources after strategic communities. Holisticly leverage existing business infrastructures before exceptional web services. Interactively fabricate competitive strategic theme areas rather than leading-edge markets. Progressively enable leveraged solutions before equity invested customer service.</p>\r\n\r\n<p>Conveniently restore customized alignments vis-a-vis highly efficient scenarios. Assertively deploy extensive manufactured products for best-of-breed process improvements. Monotonectally integrate bricks-and-clicks sources for reliable markets. Monotonectally implement 2.0 products with open-source web-readiness. Intrinsicly disseminate end-to-end human capital with impactful results.</p>\r\n\r\n<p>Interactively.</p>\r\n"
name_id: Paket lahiran hermina
title_id: Ayo segera beli
- id: '28'
type: purchase
attributes:
id: 28
ref_number: PRCHS0000028
purchaseable_type: SupportService
purchaseable_id: 1
created_at: '2022-03-24T01:09:14.045+07:00'
invoice:
id: 98
ref_number: PRCHS0000028
due_date: '2022-03-25T01:09:14.108+07:00'
name: Biaya Layanan Periksa dirumah
payment_type: null
payment_url: 'http://middleware.herminahospitals.com/api/payment/interface?oi=eyJpdiI6IlJONmNrSHpWXC9VajQ5bjVpMGhWV1JnPT0iLCJ2YWx1ZSI6Ilh6TUFMY0RkNURzN25YOXd2TGR5NGx0Y1p2VXdMZVhCTnphc1NUdVRkeWM9IiwibWFjIjoiNzhjOTJjOTg1NmYxYmEzOTE0NWU0ZDY5NDIyNjc4YjdhZTdiOGU4MjhmYjM1MTQ4OWRiMjFkNGYwOGFmMDE5NyJ9&st=eyJpdiI6IitiVEgwNXJHQk9QRDdIbVlNMElCZ1E9PSIsInZhbHVlIjoiOHQ2MGJOQklXejZYRnVxT1lYUUNJZVBOXC9saVVZOWpISGhrcDFWcTBFTGFpaHFMNTdvQXNCNEtTSkUyQXdNT2wiLCJtYWMiOiI0OGE5MmU1OGQwMTE1NDg5MTg2N2FmNzliNjNjOThkN2IxYmFlOWU4YjRlNTk4ZWZmYzVmZGQ4MzM4ZjA3NWIxIn0=&ck=eyJpdiI6InNCT1hCSHlzUUhQcCtTRm5hSlBDTVE9PSIsInZhbHVlIjoieVhMRXRlbDlzNGNpY1RTYVpwemRMdHlEenNzWnk0ajk0bjZCY0VGU3RsV3hmNktKUkNrT0N5aE4zWFlxVEYrYiIsIm1hYyI6ImQyMGQ2MTNjNDY0ZWM3ZjliMGM3MDNhNzhiZTFlYTljM2ZhMTAzMWIxNDc2Y2I4OTQ5YTQxZTM2NWI4OWRiMWEifQ=='
status: pending
sub_total: '0.0'
total: '310000.0'
account_id: 14
reject_reason: null
slug: 4eb5032a-2e82-45b7-b2bc-359c128f096e
sourceable_type: Purchase
sourceable_id: 28
midtrans_transaction_status: null
created_at: '2022-03-24T01:09:14.114+07:00'
hospital_id: 7
billed_to_type: Account
billed_to_id: 14
order_id: INVC164805895411498
payment_method_id: null
profile_id: 14
purchaseable:
id: '1'
type: support_service
attributes:
id: 1
name_en: Checkt at home
title_en: Let's buy this package
desc_en: "<p>Collaboratively utilize distributed &quot;outside the box&quot; thinking after synergistic e-business. Completely unleash multimedia based total linkage for ethical channels. Holisticly pursue prospective methods of empowerment for cutting-edge services. Proactively streamline strategic potentialities before dynamic.</p>\r\n\r\n<p>Seamlessly leverage existing focused leadership skills after leveraged supply chains. Dramatically scale revolutionary ROI for equity invested scenarios. Interactively transition open-source models without cost effective niche markets. Professionally facilitate technically sound process improvements with prospective bandwidth. Competently pursue exceptional process improvements before proactive supply chains.</p>\r\n\r\n<p>Professionally innovate global e-tailers with corporate partnerships. Intrinsicly customize unique schemas vis-a-vis visionary quality vectors. Dynamically conceptualize distributed processes whereas premier mindshare. Credibly myocardinate excellent value whereas goal-oriented architectures. Dramatically reconceptualize compelling e-commerce rather than resource maximizing technology.</p>\r\n\r\n<p>Uniquely strategize standards compliant web services for best-of-breed expertise. Authoritatively scale 2.0 technology vis-a-vis backend deliverables. Compellingly matrix client-centric infomediaries before high standards in experiences. Competently aggregate transparent.</p>\r\n"
price: '310000.0'
ref_number: null
scheduleable: true
seens_count: 2
slug: layanan-periksa-dirumah
desc_id: "<p>Dramatically build collaborative relationships with market positioning platforms. Phosfluorescently pontificate prospective core competencies rather than inexpensive best practices. Dynamically benchmark distributed channels with open-source communities. Synergistically benchmark user-centric human capital for wireless e-business. Conveniently.</p>\r\n\r\n<p>Dynamically formulate cross-media solutions for mission-critical ROI. Progressively negotiate an expanded array of testing procedures after value-added technology. Completely mesh top-line niche markets vis-a-vis fully tested value. Completely maximize front-end architectures via visionary innovation.</p>\r\n\r\n<p>Seamlessly leverage existing focused leadership skills after leveraged supply chains. Dramatically scale revolutionary ROI for equity invested scenarios. Interactively transition open-source models without cost effective niche markets. Professionally facilitate technically sound process improvements with prospective bandwidth. Competently pursue exceptional process improvements before proactive supply chains.</p>\r\n\r\n<p>Professionally innovate global e-tailers with corporate partnerships. Intrinsicly customize unique schemas vis-a-vis visionary quality vectors. Dynamically conceptualize distributed processes whereas premier mindshare. Credibly myocardinate excellent value whereas goal-oriented architectures. Dramatically reconceptualize compelling e-commerce rather than resource maximizing technology.</p>\r\n\r\n<p>Uniquely strategize standards compliant web services for best-of-breed expertise. Authoritatively scale 2.0 technology vis-a-vis backend deliverables. Compellingly matrix client-centric infomediaries before high standards in experiences. Competently aggregate transparent.</p>\r\n"
name_id: Layanan Periksa dirumah
title_id: Ayo segera beli
- id: '27'
type: purchase
attributes:
id: 27
ref_number: PRCHS0000027
purchaseable_type: SupportService
purchaseable_id: 3
created_at: '2022-03-23T21:24:15.866+07:00'
invoice:
id: 97
ref_number: PRCHS0000027
due_date: '2022-03-24T21:24:15.935+07:00'
name: Biaya Layanan Dokter Pribadi
payment_type: Credit Card
payment_url: 'http://middleware.herminahospitals.com/api/payment/interface?oi=eyJpdiI6IkFVcmxieEtTU2NSZm5YM2U3RmVnRGc9PSIsInZhbHVlIjoiMGhzVUI3ZGE2cEJrMjRYU2x2NUc3YUpsYit2bm81S3pZR2lzaW9BRG1qOD0iLCJtYWMiOiJiZDJlMGVhNzYyYzMyYWZiOGNhNzZkODE0ZDUwMDNkNWFlZmI2MjMxODI0ZDE1OTk0MGIwNTUyNTEwN2I2MjYwIn0=&st=eyJpdiI6IlhpdGJtTExVOGNvRjVjVFwvWk54ZGlRPT0iLCJ2YWx1ZSI6ImllYXhSamZxUGpJZUh3cDdXRTdSZVhSR3diaGVFQ1wvK1VuN0djbnk2NENGcDg1Qm5BeVlvOFNjTWM4NFNBajhKIiwibWFjIjoiOWQ5ZDRkMTYzMjRhMTk2ODc5N2JlMWRhYWQyODM1MTlmNDg1Y2VmZDEwMTgzMjZkNzNiMDFhMjI5Mzc0NTExYSJ9&ck=eyJpdiI6ImU0SlF2dFJlMG41QzhQNGtOVnBWOFE9PSIsInZhbHVlIjoiSnFmdDFVWmRrWktGSHlsd3NLa0xheStqa0Nxb3R3cnJCZkpzR0U4c0h1WHZrUHl5UVFGVlAzRXZwNU5aYWMzZSIsIm1hYyI6IjFiMjE2MThhYWJiZjhkNzQ3NWQwNzFiNDgwNjFjN2UzZjU0ZmNhOWIxMjk1ZjUxOWM3Y2Q0YTZmMjUyNjE4NTQifQ=='
status: paid
sub_total: '0.0'
total: '500000.0'
account_id: 14
reject_reason: null
slug: 843aee0b-be7d-47e9-a1c4-d47d5450ec24
sourceable_type: Purchase
sourceable_id: 27
midtrans_transaction_status: null
created_at: '2022-03-23T21:24:15.954+07:00'
hospital_id: 1
billed_to_type: Account
billed_to_id: 14
order_id: INVC164804545595497
payment_method_id: null
profile_id: 14
purchaseable:
id: '3'
type: support_service
attributes:
id: 3
name_en: Layanan Dokter Pribadi
title_en: Let's buy this package
desc_en: "<p>Conveniently generate high-quality models without client-based methodologies. Collaboratively visualize market-driven content through top-line metrics. Dramatically harness frictionless technology with plug-and-play web-readiness. Completely re-engineer progressive experiences with 24/7 vortals. Professionally transition premier e-business via client-focused solutions.</p>\r\n\r\n<p>Conveniently supply robust vortals without multimedia based methods of empowerment. Continually communicate interdependent networks and one-to-one methodologies. Distinctively pontificate one-to-one e-business before clicks-and-mortar niches. Conveniently harness state of the art total linkage before high-payoff partnerships. Credibly strategize top-line products before orthogonal networks.</p>\r\n\r\n<p>Appropriately fabricate best-of-breed functionalities whereas 2.0 core competencies. Compellingly drive timely processes without empowered outsourcing. Enthusiastically visualize magnetic internal or &quot;organic&quot; sources without stand-alone ROI. Globally benchmark turnkey ROI vis-a-vis front-end innovation. Synergistically underwhelm excellent systems with plug-and-play methodologies.</p>\r\n\r\n<p>Energistically impact user-centric strategic theme areas rather than distinctive infomediaries. Seamlessly incubate enabled architectures rather than worldwide internal or &quot;organic&quot; sources. Objectively redefine empowered platforms and maintainable markets. Rapidiously visualize prospective scenarios after maintainable methods of empowerment. Appropriately evolve cross-unit testing procedures and inexpensive process improvements.</p>\r\n\r\n<p>Distinctively actualize covalent value rather than parallel value. Conveniently re-engineer granular functionalities with effective synergy. Enthusiastically build.</p>\r\n"
price: '500000.0'
ref_number: SPPRTSRVC0000003
scheduleable: false
seens_count: 2
slug: layanan-dokter-pribadi
desc_id: "<p>Conveniently generate high-quality models without client-based methodologies. Collaboratively visualize market-driven content through top-line metrics. Dramatically harness frictionless technology with plug-and-play web-readiness. Completely re-engineer progressive experiences with 24/7 vortals. Professionally transition premier e-business via client-focused solutions.</p>\r\n\r\n<p>Conveniently supply robust vortals without multimedia based methods of empowerment. Continually communicate interdependent networks and one-to-one methodologies. Distinctively pontificate one-to-one e-business before clicks-and-mortar niches. Conveniently harness state of the art total linkage before high-payoff partnerships. Credibly strategize top-line products before orthogonal networks.</p>\r\n\r\n<p>Appropriately fabricate best-of-breed functionalities whereas 2.0 core competencies. Compellingly drive timely processes without empowered outsourcing. Enthusiastically visualize magnetic internal or &quot;organic&quot; sources without stand-alone ROI. Globally benchmark turnkey ROI vis-a-vis front-end innovation. Synergistically underwhelm excellent systems with plug-and-play methodologies.</p>\r\n\r\n<p>Energistically impact user-centric strategic theme areas rather than distinctive infomediaries. Seamlessly incubate enabled architectures rather than worldwide internal or &quot;organic&quot; sources. Objectively redefine empowered platforms and maintainable markets. Rapidiously visualize prospective scenarios after maintainable methods of empowerment. Appropriately evolve cross-unit testing procedures and inexpensive process improvements.</p>\r\n\r\n<p>Distinctively actualize covalent value rather than parallel value. Conveniently re-engineer granular functionalities with effective synergy. Enthusiastically build.</p>\r\n"
name_id: Layanan Dokter Pribadi
title_id: Ayo segera beli
- id: '26'
type: purchase
attributes:
id: 26
ref_number: PRCHS0000026
purchaseable_type: SupportService
purchaseable_id: 2
created_at: '2021-10-21T17:11:12.990+07:00'
invoice:
id: 96
ref_number: PRCHS0000026
due_date: '2021-10-22T17:11:13.004+07:00'
name: Biaya Paket lahiran hermina
payment_type: null
payment_url: 'http://middleware.herminahospitals.com/api/payment/interface?oi=eyJpdiI6IkxNZVBWTnEra3lQNUpCbkw4V21Ec1E9PSIsInZhbHVlIjoib0tGeWFQVWV6d0N1RTFIQmRGTVZFbXBQVjF2XC91RXM0T2JpM2VJTE9sUnM9IiwibWFjIjoiNTA5MGVlNzdlZTQ1YTEwM2JlY2QyZjQ3M2U4OWVkMWYzODVlMzhjYWM2Y2JiMDJjZTg5ZmJlODc5NjA5ODI1NSJ9&st=eyJpdiI6IjgrVmJiSjh2d0FcL2NkSXd4RkhwZVJnPT0iLCJ2YWx1ZSI6IlVQN2RyRVpMd2hcL0ZBTVNCT0w0YXY3Sm14SkNwKzZ2cURkZkdNTmdwOFUyamhpS2w3N1gyUTMyZFU0MWd3VjV1IiwibWFjIjoiNjY5ZmNkZTIxZTUyNWM0MDc5YjI4MWFlNTNlNzEzZWFmNmZkNjhlZDBjY2IwZDA3ZWI4NjQ2MWNlZTZmM2VkNSJ9&ck=eyJpdiI6Ik4rZVZFcFp2U0JIZTU0K3BqbVEzZEE9PSIsInZhbHVlIjoibDJXMVB4a2NJcFRlZmhpWmp5VzlBem5oN29VajNHTG8xZW9jUk9xMkU2eEU1YkZaS2lYVkFDMkd6V2VBY2VicSIsIm1hYyI6Ijk3ZmFiN2NjYzUyOTRmMmVlM2Y5OWFlM2E2NWQyNzE0NGUxNzJmY2I0NDUwYjJiYTIzZWRlYjA0N2FkYTdjYzEifQ=='
status: pending
sub_total: '0.0'
total: '400000.0'
account_id: 14
reject_reason: null
slug: 6999cc46-6847-4091-a66a-7a12419eb658
sourceable_type: Purchase
sourceable_id: 26
midtrans_transaction_status: null
created_at: '2021-10-21T17:11:13.009+07:00'
hospital_id: 23
billed_to_type: Account
billed_to_id: 14
order_id: INVC163481107300996
payment_method_id: null
profile_id: 14
purchaseable:
id: '2'
type: support_service
attributes:
id: 2
name_en: Paket lahiran hermina
title_en: Let's buy this package
desc_en: "<p>Efficiently reinvent frictionless services after 24/365 functionalities. Competently reintermediate plug-and-play leadership with top-line leadership skills. Collaboratively initiate highly efficient scenarios for empowered e-markets. Efficiently simplify magnetic quality vectors whereas high-quality architectures. Dramatically pursue cutting-edge initiatives vis-a-vis high standards in potentialities.</p>\r\n\r\n<p>Seamlessly productize inexpensive expertise vis-a-vis state of the art markets. Seamlessly exploit extensive services rather than standardized web-readiness. Credibly actualize market-driven core competencies for top-line deliverables. Proactively enhance bricks-and-clicks methods of empowerment and an expanded array of value. Energistically deliver sustainable models for multifunctional infomediaries.</p>\r\n\r\n<p>Authoritatively develop robust e-tailers via sticky information. Interactively underwhelm covalent applications before high-payoff processes. Energistically underwhelm worldwide imperatives with low-risk high-yield systems. Dramatically morph technically sound models for standardized results. Proactively architect error-free collaboration and idea-sharing and resource sucking potentialities.</p>\r\n\r\n<p>Continually aggregate functionalized users via ethical bandwidth. Monotonectally engineer sustainable action items after team driven platforms. Objectively empower mission-critical niche markets through world-class leadership. Enthusiastically productize efficient opportunities without intuitive e-tailers. Competently enhance efficient leadership before fully researched infrastructures.</p>\r\n\r\n<p>Quickly negotiate pandemic expertise without world-class innovation. Efficiently deliver technically sound process improvements rather than holistic solutions. Energistically evolve best-of-breed metrics whereas high standards in interfaces. Efficiently customize high-quality markets via revolutionary paradigms. Dramatically orchestrate empowered information whereas high-payoff niches.</p>\r\n\r\n<p>Appropriately grow revolutionary.</p>\r\n"
price: '400000.0'
ref_number: null
scheduleable: false
seens_count: 2
slug: paket-lahiran-hermina
desc_id: "<p>Objectively leverage other&#39;s extensive infomediaries whereas economically sound models. Uniquely pontificate dynamic leadership after multifunctional quality vectors. Uniquely coordinate compelling alignments through magnetic portals. Conveniently predominate emerging methodologies vis-a-vis resource maximizing e-commerce. Authoritatively incubate sticky channels rather than performance based alignments.</p>\r\n\r\n<p>Phosfluorescently myocardinate strategic web-readiness before worldwide methodologies. Globally cultivate orthogonal growth strategies via interactive intellectual capital. Dynamically innovate resource sucking initiatives before economically sound niches. Distinctively supply real-time models vis-a-vis web-enabled web-readiness. Efficiently maintain enabled e-tailers whereas 2.0 ideas.</p>\r\n\r\n<p>Continually redefine just in time partnerships rather than cost effective markets. Dynamically benchmark magnetic vortals through plug-and-play core competencies. Progressively engineer enabled communities after technically sound collaboration and idea-sharing. Progressively administrate sustainable bandwidth with prospective process improvements. Distinctively supply orthogonal core competencies for robust initiatives.</p>\r\n\r\n<p>Enthusiastically disintermediate backward-compatible alignments through progressive initiatives. Dynamically formulate goal-oriented resources after strategic communities. Holisticly leverage existing business infrastructures before exceptional web services. Interactively fabricate competitive strategic theme areas rather than leading-edge markets. Progressively enable leveraged solutions before equity invested customer service.</p>\r\n\r\n<p>Conveniently restore customized alignments vis-a-vis highly efficient scenarios. Assertively deploy extensive manufactured products for best-of-breed process improvements. Monotonectally integrate bricks-and-clicks sources for reliable markets. Monotonectally implement 2.0 products with open-source web-readiness. Intrinsicly disseminate end-to-end human capital with impactful results.</p>\r\n\r\n<p>Interactively.</p>\r\n"
name_id: Paket lahiran hermina
title_id: Ayo segera beli
- id: '25'
type: purchase
attributes:
id: 25
ref_number: PRCHS0000025
purchaseable_type: SupportService
purchaseable_id: 2
created_at: '2021-10-21T17:09:49.501+07:00'
invoice:
id: 95
ref_number: PRCHS0000025
due_date: '2021-10-22T17:09:49.544+07:00'
name: Biaya Paket lahiran hermina
payment_type: null
payment_url: 'http://middleware.herminahospitals.com/api/payment/interface?oi=eyJpdiI6IlVmRHowMGhCT0FBS3pWUHo0ckMybmc9PSIsInZhbHVlIjoiSTJhR1wvYWRoUWhLMTR0dkI4Z21vZGd2bjdHYUNDM0lJdWp2c0FUQ0NFelE9IiwibWFjIjoiNmU3YjhmYmZkZDNlZTVhYzZiYzZlY2FhNjljMTM4M2YzMjVmNjg4MWYwOWY2MmUzNDY4MzM1MTRkOTY1YzhjZCJ9&st=eyJpdiI6IjBpSldkRnI0eEo0Z3c3T01RcCtlU0E9PSIsInZhbHVlIjoiOTJGNVwvMFVsNUgyQ24rRzV0XC9FRFRXYlhIdk9wVWx1dURPK0VoR1JERTBOelk4eE1PaCtSXC82dGFcL2pxQ0UrSmwiLCJtYWMiOiI5YmNhNWI4MTMyODAyZThhOWMyOGZjMzRkZmFmNWM5Mzg0NTI3OWY4OGZhMmJlNTk0MTA1ZmI3N2U4NmZlNzNiIn0=&ck=eyJpdiI6IlFDcGJcL21TRVlBamMwcWVSM1lFYUh3PT0iLCJ2YWx1ZSI6IkVOR0lYRGlaRVo3bUJ1RFN0eVltMTB1aFEwaDlKNjlXUVEyTXJRRGFxNDJEeThYSjZiWFBhREtuNU8yWnZQaSsiLCJtYWMiOiJhYWU3OTBhOWU3MTI2NWM4NDNhMmI3N2UwOWE2ZmZhMjRkYTkyNDM4ZTUzYWU1YjI5ODc5YzBiNzFmMjg2ODlhIn0='
status: pending
sub_total: '0.0'
total: '400000.0'
account_id: 14
reject_reason: null
slug: 113335cc-ba38-4423-a69c-8ed7f792deb8
sourceable_type: Purchase
sourceable_id: 25
midtrans_transaction_status: null
created_at: '2021-10-21T17:09:49.547+07:00'
hospital_id: 23
billed_to_type: Account
billed_to_id: 14
order_id: INVC163481098954795
payment_method_id: null
profile_id: 14
purchaseable:
id: '2'
type: support_service
attributes:
id: 2
name_en: Paket lahiran hermina
title_en: Let's buy this package
desc_en: "<p>Efficiently reinvent frictionless services after 24/365 functionalities. Competently reintermediate plug-and-play leadership with top-line leadership skills. Collaboratively initiate highly efficient scenarios for empowered e-markets. Efficiently simplify magnetic quality vectors whereas high-quality architectures. Dramatically pursue cutting-edge initiatives vis-a-vis high standards in potentialities.</p>\r\n\r\n<p>Seamlessly productize inexpensive expertise vis-a-vis state of the art markets. Seamlessly exploit extensive services rather than standardized web-readiness. Credibly actualize market-driven core competencies for top-line deliverables. Proactively enhance bricks-and-clicks methods of empowerment and an expanded array of value. Energistically deliver sustainable models for multifunctional infomediaries.</p>\r\n\r\n<p>Authoritatively develop robust e-tailers via sticky information. Interactively underwhelm covalent applications before high-payoff processes. Energistically underwhelm worldwide imperatives with low-risk high-yield systems. Dramatically morph technically sound models for standardized results. Proactively architect error-free collaboration and idea-sharing and resource sucking potentialities.</p>\r\n\r\n<p>Continually aggregate functionalized users via ethical bandwidth. Monotonectally engineer sustainable action items after team driven platforms. Objectively empower mission-critical niche markets through world-class leadership. Enthusiastically productize efficient opportunities without intuitive e-tailers. Competently enhance efficient leadership before fully researched infrastructures.</p>\r\n\r\n<p>Quickly negotiate pandemic expertise without world-class innovation. Efficiently deliver technically sound process improvements rather than holistic solutions. Energistically evolve best-of-breed metrics whereas high standards in interfaces. Efficiently customize high-quality markets via revolutionary paradigms. Dramatically orchestrate empowered information whereas high-payoff niches.</p>\r\n\r\n<p>Appropriately grow revolutionary.</p>\r\n"
price: '400000.0'
ref_number: null
scheduleable: false
seens_count: 2
slug: paket-lahiran-hermina
desc_id: "<p>Objectively leverage other&#39;s extensive infomediaries whereas economically sound models. Uniquely pontificate dynamic leadership after multifunctional quality vectors. Uniquely coordinate compelling alignments through magnetic portals. Conveniently predominate emerging methodologies vis-a-vis resource maximizing e-commerce. Authoritatively incubate sticky channels rather than performance based alignments.</p>\r\n\r\n<p>Phosfluorescently myocardinate strategic web-readiness before worldwide methodologies. Globally cultivate orthogonal growth strategies via interactive intellectual capital. Dynamically innovate resource sucking initiatives before economically sound niches. Distinctively supply real-time models vis-a-vis web-enabled web-readiness. Efficiently maintain enabled e-tailers whereas 2.0 ideas.</p>\r\n\r\n<p>Continually redefine just in time partnerships rather than cost effective markets. Dynamically benchmark magnetic vortals through plug-and-play core competencies. Progressively engineer enabled communities after technically sound collaboration and idea-sharing. Progressively administrate sustainable bandwidth with prospective process improvements. Distinctively supply orthogonal core competencies for robust initiatives.</p>\r\n\r\n<p>Enthusiastically disintermediate backward-compatible alignments through progressive initiatives. Dynamically formulate goal-oriented resources after strategic communities. Holisticly leverage existing business infrastructures before exceptional web services. Interactively fabricate competitive strategic theme areas rather than leading-edge markets. Progressively enable leveraged solutions before equity invested customer service.</p>\r\n\r\n<p>Conveniently restore customized alignments vis-a-vis highly efficient scenarios. Assertively deploy extensive manufactured products for best-of-breed process improvements. Monotonectally integrate bricks-and-clicks sources for reliable markets. Monotonectally implement 2.0 products with open-source web-readiness. Intrinsicly disseminate end-to-end human capital with impactful results.</p>\r\n\r\n<p>Interactively.</p>\r\n"
name_id: Paket lahiran hermina
title_id: Ayo segera beli
- id: '24'
type: purchase
attributes:
id: 24
ref_number: PRCHS0000024
purchaseable_type: SupportService
purchaseable_id: 3
created_at: '2021-10-21T16:45:40.398+07:00'
invoice:
id: 94
ref_number: PRCHS0000024
due_date: '2021-10-22T16:45:40.414+07:00'
name: Biaya Layanan Dokter Pribadi
payment_type: null
payment_url: 'http://middleware.herminahospitals.com/api/payment/interface?oi=eyJpdiI6Imt3SiszSHByTHNGZGhhNHk3SFpDNVE9PSIsInZhbHVlIjoiUFVkZUxnNmNSODk1cDZuZjFwaVByc2hxOExVOTJ4YnJXa1RHTFRxNVR5OD0iLCJtYWMiOiJlN2U2MTJkMjE3ODA4MTk4ZWIxZDBkNzgzYzYwYTRjZWQ1ZWI0MTk0ODBlYzEwNzBjNTIxOTU4MDQ5Zjk1ZmM3In0=&st=eyJpdiI6InVvSVV6MU02ZlBLQTBUTUoyenpiUHc9PSIsInZhbHVlIjoiVjdkcmxvTU51VTVGWk9vTEQ3bWlMdWRza1hXWU1sNmhaNWVkaXE4Y1BsZVRHaWgybW4rNnRSNEtQZ3ppYkJnSyIsIm1hYyI6IjZkZWFkODNkYzdiNDlkZDNhZWE3Yjk1Mzk3YTY2ZTc2Y2QwOTZhYjNkZTAyMTFiZjVmYTRjZjhmMTBjODFlNWUifQ==&ck=eyJpdiI6IldFXC9DVTdRN1RiMUg2blNNOXcyTldnPT0iLCJ2YWx1ZSI6IndSY1dwNjFUU3Z2QVdwdEgzOU5DQWhGN1U5WGsyRE1nbHpoY3puZWp3OFBGYzY3NFlcL3VlZ2t4M2dpaWZkejg4IiwibWFjIjoiNTE3NzU1ZTdjMjIyOWJlYTU0NzIzZTFkM2JkZjM2NmUxNTU5ZTZmY2Y3MDAyY2FhOGFiNTkzNDE2MmZiZjNjYiJ9'
status: pending
sub_total: '0.0'
total: '500000.0'
account_id: 14
reject_reason: null
slug: d34d22dc-fa24-4a7c-a3da-0be8724a3945
sourceable_type: Purchase
sourceable_id: 24
midtrans_transaction_status: null
created_at: '2021-10-21T16:45:40.419+07:00'
hospital_id: 7
billed_to_type: Account
billed_to_id: 14
order_id: INVC163480954041994
payment_method_id: null
profile_id: 14
purchaseable:
id: '3'
type: support_service
attributes:
id: 3
name_en: Layanan Dokter Pribadi
title_en: Let's buy this package
desc_en: "<p>Conveniently generate high-quality models without client-based methodologies. Collaboratively visualize market-driven content through top-line metrics. Dramatically harness frictionless technology with plug-and-play web-readiness. Completely re-engineer progressive experiences with 24/7 vortals. Professionally transition premier e-business via client-focused solutions.</p>\r\n\r\n<p>Conveniently supply robust vortals without multimedia based methods of empowerment. Continually communicate interdependent networks and one-to-one methodologies. Distinctively pontificate one-to-one e-business before clicks-and-mortar niches. Conveniently harness state of the art total linkage before high-payoff partnerships. Credibly strategize top-line products before orthogonal networks.</p>\r\n\r\n<p>Appropriately fabricate best-of-breed functionalities whereas 2.0 core competencies. Compellingly drive timely processes without empowered outsourcing. Enthusiastically visualize magnetic internal or &quot;organic&quot; sources without stand-alone ROI. Globally benchmark turnkey ROI vis-a-vis front-end innovation. Synergistically underwhelm excellent systems with plug-and-play methodologies.</p>\r\n\r\n<p>Energistically impact user-centric strategic theme areas rather than distinctive infomediaries. Seamlessly incubate enabled architectures rather than worldwide internal or &quot;organic&quot; sources. Objectively redefine empowered platforms and maintainable markets. Rapidiously visualize prospective scenarios after maintainable methods of empowerment. Appropriately evolve cross-unit testing procedures and inexpensive process improvements.</p>\r\n\r\n<p>Distinctively actualize covalent value rather than parallel value. Conveniently re-engineer granular functionalities with effective synergy. Enthusiastically build.</p>\r\n"
price: '500000.0'
ref_number: SPPRTSRVC0000003
scheduleable: false
seens_count: 2
slug: layanan-dokter-pribadi
desc_id: "<p>Conveniently generate high-quality models without client-based methodologies. Collaboratively visualize market-driven content through top-line metrics. Dramatically harness frictionless technology with plug-and-play web-readiness. Completely re-engineer progressive experiences with 24/7 vortals. Professionally transition premier e-business via client-focused solutions.</p>\r\n\r\n<p>Conveniently supply robust vortals without multimedia based methods of empowerment. Continually communicate interdependent networks and one-to-one methodologies. Distinctively pontificate one-to-one e-business before clicks-and-mortar niches. Conveniently harness state of the art total linkage before high-payoff partnerships. Credibly strategize top-line products before orthogonal networks.</p>\r\n\r\n<p>Appropriately fabricate best-of-breed functionalities whereas 2.0 core competencies. Compellingly drive timely processes without empowered outsourcing. Enthusiastically visualize magnetic internal or &quot;organic&quot; sources without stand-alone ROI. Globally benchmark turnkey ROI vis-a-vis front-end innovation. Synergistically underwhelm excellent systems with plug-and-play methodologies.</p>\r\n\r\n<p>Energistically impact user-centric strategic theme areas rather than distinctive infomediaries. Seamlessly incubate enabled architectures rather than worldwide internal or &quot;organic&quot; sources. Objectively redefine empowered platforms and maintainable markets. Rapidiously visualize prospective scenarios after maintainable methods of empowerment. Appropriately evolve cross-unit testing procedures and inexpensive process improvements.</p>\r\n\r\n<p>Distinctively actualize covalent value rather than parallel value. Conveniently re-engineer granular functionalities with effective synergy. Enthusiastically build.</p>\r\n"
name_id: Layanan Dokter Pribadi
title_id: Ayo segera beli
- id: '23'
type: purchase
attributes:
id: 23
ref_number: PRCHS0000023
purchaseable_type: SupportService
purchaseable_id: 3
created_at: '2021-10-21T16:41:07.901+07:00'
invoice:
id: 93
ref_number: PRCHS0000023
due_date: '2021-10-22T16:41:07.912+07:00'
name: Biaya Layanan Dokter Pribadi
payment_type: null
payment_url: 'http://middleware.herminahospitals.com/api/payment/interface?oi=eyJpdiI6Ind5dU1nV29Md1Bqc1dMWlFMNjJwQVE9PSIsInZhbHVlIjoicTNZZGR5OEFNUk5XeExlNk0waFVCNFVkSTI0UmFsc25JbUxYb3d1S1ZNcz0iLCJtYWMiOiJiNWUyMmEwYzRiOTY0ZDgxOWU1Y2ZhZTBiMzQ0MTY1OTRhMDNjNGQ5ZWZiZTAxMjkwNjllNDVmMTJlZGQyM2RhIn0=&st=eyJpdiI6IjFcLzlhU3IrZ1RcLytWTXRIMGFEZ1FPUT09IiwidmFsdWUiOiJ5RFl2WGV4MjZnN3BkWlN4Y3ErR0NXdjk3WUR5R2xEcEhLMUlJNzIxQkJcLzUxaDhRY3czcjNBTmNla1FmT0VJSCIsIm1hYyI6IjYyNDg4NzFkY2Y2ZTM3MGNjY2E1YTI1ZWE0YzcxNWEzMjRlMGYzNzNhMzA3NDhhNzJlOWU3Nzc2ZDJkNzA0Y2YifQ==&ck=eyJpdiI6InR0QnYwREI3Z1hWR2hMSXNCa0xra1E9PSIsInZhbHVlIjoiZ052R1NHUWErN29kNlkrNVlneERSS1dDVTY5Ykp4WXFvbXdmQVwvb1ZzQlBkNmVaNkVOT05nZTI1aW91K0p1XC9WIiwibWFjIjoiZTJjNTgyZDYwOWUwZDIwMGY5ZTNiODdiMGQ4OWIxOTljZTNiMGY2ZmI5NmY2YjAwMGIyZmExMGY2MDdhNGExYSJ9'
status: pending
sub_total: '0.0'
total: '500000.0'
account_id: 14
reject_reason: null
slug: 45021296-efed-4321-8b28-72e97af1e452
sourceable_type: Purchase
sourceable_id: 23
midtrans_transaction_status: null
created_at: '2021-10-21T16:41:07.917+07:00'
hospital_id: 7
billed_to_type: Account
billed_to_id: 14
order_id: INVC163480926791793
payment_method_id: null
profile_id: 14
purchaseable:
id: '3'
type: support_service
attributes:
id: 3
name_en: Layanan Dokter Pribadi
title_en: Let's buy this package
desc_en: "<p>Conveniently generate high-quality models without client-based methodologies. Collaboratively visualize market-driven content through top-line metrics. Dramatically harness frictionless technology with plug-and-play web-readiness. Completely re-engineer progressive experiences with 24/7 vortals. Professionally transition premier e-business via client-focused solutions.</p>\r\n\r\n<p>Conveniently supply robust vortals without multimedia based methods of empowerment. Continually communicate interdependent networks and one-to-one methodologies. Distinctively pontificate one-to-one e-business before clicks-and-mortar niches. Conveniently harness state of the art total linkage before high-payoff partnerships. Credibly strategize top-line products before orthogonal networks.</p>\r\n\r\n<p>Appropriately fabricate best-of-breed functionalities whereas 2.0 core competencies. Compellingly drive timely processes without empowered outsourcing. Enthusiastically visualize magnetic internal or &quot;organic&quot; sources without stand-alone ROI. Globally benchmark turnkey ROI vis-a-vis front-end innovation. Synergistically underwhelm excellent systems with plug-and-play methodologies.</p>\r\n\r\n<p>Energistically impact user-centric strategic theme areas rather than distinctive infomediaries. Seamlessly incubate enabled architectures rather than worldwide internal or &quot;organic&quot; sources. Objectively redefine empowered platforms and maintainable markets. Rapidiously visualize prospective scenarios after maintainable methods of empowerment. Appropriately evolve cross-unit testing procedures and inexpensive process improvements.</p>\r\n\r\n<p>Distinctively actualize covalent value rather than parallel value. Conveniently re-engineer granular functionalities with effective synergy. Enthusiastically build.</p>\r\n"
price: '500000.0'
ref_number: SPPRTSRVC0000003
scheduleable: false
seens_count: 2
slug: layanan-dokter-pribadi
desc_id: "<p>Conveniently generate high-quality models without client-based methodologies. Collaboratively visualize market-driven content through top-line metrics. Dramatically harness frictionless technology with plug-and-play web-readiness. Completely re-engineer progressive experiences with 24/7 vortals. Professionally transition premier e-business via client-focused solutions.</p>\r\n\r\n<p>Conveniently supply robust vortals without multimedia based methods of empowerment. Continually communicate interdependent networks and one-to-one methodologies. Distinctively pontificate one-to-one e-business before clicks-and-mortar niches. Conveniently harness state of the art total linkage before high-payoff partnerships. Credibly strategize top-line products before orthogonal networks.</p>\r\n\r\n<p>Appropriately fabricate best-of-breed functionalities whereas 2.0 core competencies. Compellingly drive timely processes without empowered outsourcing. Enthusiastically visualize magnetic internal or &quot;organic&quot; sources without stand-alone ROI. Globally benchmark turnkey ROI vis-a-vis front-end innovation. Synergistically underwhelm excellent systems with plug-and-play methodologies.</p>\r\n\r\n<p>Energistically impact user-centric strategic theme areas rather than distinctive infomediaries. Seamlessly incubate enabled architectures rather than worldwide internal or &quot;organic&quot; sources. Objectively redefine empowered platforms and maintainable markets. Rapidiously visualize prospective scenarios after maintainable methods of empowerment. Appropriately evolve cross-unit testing procedures and inexpensive process improvements.</p>\r\n\r\n<p>Distinctively actualize covalent value rather than parallel value. Conveniently re-engineer granular functionalities with effective synergy. Enthusiastically build.</p>\r\n"
name_id: Layanan Dokter Pribadi
title_id: Ayo segera beli
- id: '22'
type: purchase
attributes:
id: 22
ref_number: PRCHS0000022
purchaseable_type: SupportService
purchaseable_id: 1
created_at: '2021-10-21T11:25:42.579+07:00'
invoice:
id: 92
ref_number: PRCHS0000022
due_date: '2021-10-22T11:25:42.596+07:00'
name: Biaya Layanan Periksa dirumah
payment_type: null
payment_url: 'http://middleware.herminahospitals.com/api/payment/interface?oi=eyJpdiI6Im9hYnRCeEtueHJKR09tSWlPYTJkQ1E9PSIsInZhbHVlIjoibU9sc3BZSTVrbVp0dmJmWVhrZGVqOHBpMkVPMElUME1xZkFsS0R5UjNvVT0iLCJtYWMiOiI4NzZiNzIyYmU0ODVjYTYxZGY3OTA5YWRiOWM3ZTJlMDYzN2QzMjk0YjgxYWVmZjM4ZjQ3Zjg5YjI4NjU4MzllIn0=&st=eyJpdiI6Ik5qRktOWDhhSllxcG1aNUx1c3ltVUE9PSIsInZhbHVlIjoiMEhEU1BLdWFVTkJ0dHZYYkJ2UEo3NkMrM1BLc0FJUktkQ0FUZTYwd25RbDNkOXFtcXFucWRZQWE1OU9PaFwvb2wiLCJtYWMiOiIxY2Y4OGY3MzhjZTUyMzIxNzdhYmE3MjI5NGZkOTQwYWJlYzFhNjNmMDkyZDliMDY1Y2NhNGZhNTliYWIzODQzIn0=&ck=eyJpdiI6IlBiYWk2STBoRmJEUWt3bGlldkFzWUE9PSIsInZhbHVlIjoiUGJhQjk0SjREWlJjOEN5dCtacGxONzlyek5wYldOTkhxb1RjYmJDRjVZS0dNVmFyWXNCUG8wUGh5WDBtTXNRVyIsIm1hYyI6ImZmODVjNzlmZjAzYjIxMzNhM2Y5ZmZlNDJiNWM0MWRkMzAxOTgwMjM1ZTc3NDFhYWZjOTc0OWZiM2ZhMjUxN2EifQ=='
status: pending
sub_total: '0.0'
total: '310000.0'
account_id: 14
reject_reason: null
slug: 773fcac4-bf62-4ab3-a9e4-ea692e259b09
sourceable_type: Purchase
sourceable_id: 22
midtrans_transaction_status: null
created_at: '2021-10-21T11:25:42.605+07:00'
hospital_id: 4
billed_to_type: Account
billed_to_id: 14
order_id: INVC163479034260592
payment_method_id: null
profile_id: 14
purchaseable:
id: '1'
type: support_service
attributes:
id: 1
name_en: Checkt at home
title_en: Let's buy this package
desc_en: "<p>Collaboratively utilize distributed &quot;outside the box&quot; thinking after synergistic e-business. Completely unleash multimedia based total linkage for ethical channels. Holisticly pursue prospective methods of empowerment for cutting-edge services. Proactively streamline strategic potentialities before dynamic.</p>\r\n\r\n<p>Seamlessly leverage existing focused leadership skills after leveraged supply chains. Dramatically scale revolutionary ROI for equity invested scenarios. Interactively transition open-source models without cost effective niche markets. Professionally facilitate technically sound process improvements with prospective bandwidth. Competently pursue exceptional process improvements before proactive supply chains.</p>\r\n\r\n<p>Professionally innovate global e-tailers with corporate partnerships. Intrinsicly customize unique schemas vis-a-vis visionary quality vectors. Dynamically conceptualize distributed processes whereas premier mindshare. Credibly myocardinate excellent value whereas goal-oriented architectures. Dramatically reconceptualize compelling e-commerce rather than resource maximizing technology.</p>\r\n\r\n<p>Uniquely strategize standards compliant web services for best-of-breed expertise. Authoritatively scale 2.0 technology vis-a-vis backend deliverables. Compellingly matrix client-centric infomediaries before high standards in experiences. Competently aggregate transparent.</p>\r\n"
price: '310000.0'
ref_number: null
scheduleable: true
seens_count: 2
slug: layanan-periksa-dirumah
desc_id: "<p>Dramatically build collaborative relationships with market positioning platforms. Phosfluorescently pontificate prospective core competencies rather than inexpensive best practices. Dynamically benchmark distributed channels with open-source communities. Synergistically benchmark user-centric human capital for wireless e-business. Conveniently.</p>\r\n\r\n<p>Dynamically formulate cross-media solutions for mission-critical ROI. Progressively negotiate an expanded array of testing procedures after value-added technology. Completely mesh top-line niche markets vis-a-vis fully tested value. Completely maximize front-end architectures via visionary innovation.</p>\r\n\r\n<p>Seamlessly leverage existing focused leadership skills after leveraged supply chains. Dramatically scale revolutionary ROI for equity invested scenarios. Interactively transition open-source models without cost effective niche markets. Professionally facilitate technically sound process improvements with prospective bandwidth. Competently pursue exceptional process improvements before proactive supply chains.</p>\r\n\r\n<p>Professionally innovate global e-tailers with corporate partnerships. Intrinsicly customize unique schemas vis-a-vis visionary quality vectors. Dynamically conceptualize distributed processes whereas premier mindshare. Credibly myocardinate excellent value whereas goal-oriented architectures. Dramatically reconceptualize compelling e-commerce rather than resource maximizing technology.</p>\r\n\r\n<p>Uniquely strategize standards compliant web services for best-of-breed expertise. Authoritatively scale 2.0 technology vis-a-vis backend deliverables. Compellingly matrix client-centric infomediaries before high standards in experiences. Competently aggregate transparent.</p>\r\n"
name_id: Layanan Periksa dirumah
title_id: Ayo segera beli
- id: '21'
type: purchase
attributes:
id: 21
ref_number: PRCHS0000021
purchaseable_type: SupportService
purchaseable_id: 3
created_at: '2021-10-08T22:28:48.536+07:00'
invoice:
id: 91
ref_number: PRCHS0000021
due_date: '2021-10-09T22:28:48.560+07:00'
name: Biaya Layanan Dokter Pribadi
payment_type: null
payment_url: 'http://middleware.herminahospitals.com/api/payment/interface?oi=eyJpdiI6IkpRUUhORU1XOG1Ta1Q2bWtDdHorWGc9PSIsInZhbHVlIjoiWDc4c2xkamVwbDdzXC9ZR2V3M2JcL1dIc0gzNkVPbHliXC9YYmNKUThRaTVqZz0iLCJtYWMiOiJhYTljMDI4ZWQyNWIzOTRhZjc4MmM5NTAyNWQzZmQ0NzUzMmVkNDBkYjhjOWZkY2QxMTZjZTRmNjYxMGNhNjU1In0=&st=eyJpdiI6ImI3OVwvTjNya1FQSE4xeVU2KzFpbnlRPT0iLCJ2YWx1ZSI6ImZ6VE5UYXd2cjFEWCtZaUlNWWR1bWJaWDZwSkFSWGFtakMyQ3d5aDhmc1dYNkI4VTFcL1JvdmQwS0JqWkN6ZzROIiwibWFjIjoiZTE0YmY0YTkwNTFjZWI0NDQ1MDc4OWZhNjhhZWRlNDNmZDA0YzBmOTcwZGY5NzNiYzc1ZGI2Y2U1ZjFhMzkzMyJ9&ck=eyJpdiI6InhmUnRrTnF0Mm8wT2hleTZkUjV4K0E9PSIsInZhbHVlIjoiNjBuMXBNZWdIMHVNcDFJK2VFZHhJZkp2OFVLUU5laWppUnJpYnZuTnpvckVsZXRYMW5oVXlzTDJuRjJaYzQ1RyIsIm1hYyI6IjE4Nzc5Njc3ZDMxMzIxYzE1NTg2NzQ1ODVmNjUyODlhMTc0NDgwZGQzNDg3ZmY2MWE3YmQ0MjNiMDE0ZDM0NzUifQ=='
status: pending
sub_total: '0.0'
total: '500000.0'
account_id: 14
reject_reason: null
slug: ef3d9715-2fbc-4e27-a08c-858112884630
sourceable_type: Purchase
sourceable_id: 21
midtrans_transaction_status: null
created_at: '2021-10-08T22:28:48.563+07:00'
hospital_id: 7
billed_to_type: Account
billed_to_id: 14
order_id: INVC163370692856391
payment_method_id: null
profile_id: 145
purchaseable:
id: '3'
type: support_service
attributes:
id: 3
name_en: Layanan Dokter Pribadi
title_en: Let's buy this package
desc_en: "<p>Conveniently generate high-quality models without client-based methodologies. Collaboratively visualize market-driven content through top-line metrics. Dramatically harness frictionless technology with plug-and-play web-readiness. Completely re-engineer progressive experiences with 24/7 vortals. Professionally transition premier e-business via client-focused solutions.</p>\r\n\r\n<p>Conveniently supply robust vortals without multimedia based methods of empowerment. Continually communicate interdependent networks and one-to-one methodologies. Distinctively pontificate one-to-one e-business before clicks-and-mortar niches. Conveniently harness state of the art total linkage before high-payoff partnerships. Credibly strategize top-line products before orthogonal networks.</p>\r\n\r\n<p>Appropriately fabricate best-of-breed functionalities whereas 2.0 core competencies. Compellingly drive timely processes without empowered outsourcing. Enthusiastically visualize magnetic internal or &quot;organic&quot; sources without stand-alone ROI. Globally benchmark turnkey ROI vis-a-vis front-end innovation. Synergistically underwhelm excellent systems with plug-and-play methodologies.</p>\r\n\r\n<p>Energistically impact user-centric strategic theme areas rather than distinctive infomediaries. Seamlessly incubate enabled architectures rather than worldwide internal or &quot;organic&quot; sources. Objectively redefine empowered platforms and maintainable markets. Rapidiously visualize prospective scenarios after maintainable methods of empowerment. Appropriately evolve cross-unit testing procedures and inexpensive process improvements.</p>\r\n\r\n<p>Distinctively actualize covalent value rather than parallel value. Conveniently re-engineer granular functionalities with effective synergy. Enthusiastically build.</p>\r\n"
price: '500000.0'
ref_number: SPPRTSRVC0000003
scheduleable: false
seens_count: 2
slug: layanan-dokter-pribadi
desc_id: "<p>Conveniently generate high-quality models without client-based methodologies. Collaboratively visualize market-driven content through top-line metrics. Dramatically harness frictionless technology with plug-and-play web-readiness. Completely re-engineer progressive experiences with 24/7 vortals. Professionally transition premier e-business via client-focused solutions.</p>\r\n\r\n<p>Conveniently supply robust vortals without multimedia based methods of empowerment. Continually communicate interdependent networks and one-to-one methodologies. Distinctively pontificate one-to-one e-business before clicks-and-mortar niches. Conveniently harness state of the art total linkage before high-payoff partnerships. Credibly strategize top-line products before orthogonal networks.</p>\r\n\r\n<p>Appropriately fabricate best-of-breed functionalities whereas 2.0 core competencies. Compellingly drive timely processes without empowered outsourcing. Enthusiastically visualize magnetic internal or &quot;organic&quot; sources without stand-alone ROI. Globally benchmark turnkey ROI vis-a-vis front-end innovation. Synergistically underwhelm excellent systems with plug-and-play methodologies.</p>\r\n\r\n<p>Energistically impact user-centric strategic theme areas rather than distinctive infomediaries. Seamlessly incubate enabled architectures rather than worldwide internal or &quot;organic&quot; sources. Objectively redefine empowered platforms and maintainable markets. Rapidiously visualize prospective scenarios after maintainable methods of empowerment. Appropriately evolve cross-unit testing procedures and inexpensive process improvements.</p>\r\n\r\n<p>Distinctively actualize covalent value rather than parallel value. Conveniently re-engineer granular functionalities with effective synergy. Enthusiastically build.</p>\r\n"
name_id: Layanan Dokter Pribadi
title_id: Ayo segera beli
purchase:
description: |-
```json
{
"success": true,
"code": 200,
"status": "OK",
"message": "OK",
"data": {
"id": "29",
"type": "purchase",
"attributes": {
"id": 29,
"ref_number": "PRCHS0000029",
"purchaseable_type": "SupportService",
"purchaseable_id": 2,
"slug": "6af54d49-14e8-412d-9b26-c04cc6149bd3",
"profile_name": "Muhammad Yana Mulyana",
"hospital_name": "Hermina Ciputat",
"created_at": "2023-02-06T16:27:03.145+07:00",
"profile_avatar": {
"url": "https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/profile/avatar/14/unnamed.jpg",
"thumb": {
"url": "https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/profile/avatar/14/thumb_unnamed.jpg"
}
},
"invoice": {
"id": 99,
"ref_number": "PRCHS0000029",
"due_date": "2023-02-07T16:27:04.037+07:00",
"name": "Biaya Paket lahiran hermina",
"payment_type": null,
"payment_url": "http://middleware.herminahospitals.com/api/payment/interface?oi=eyJpdiI6Ik9hQWxkdXJUam4zelBDejQ3YTgreFE9PSIsInZhbHVlIjoia050bFV5Q3lHUG9QOEdZVTNsZ1Q1VUZHVGlVc3ZmWW5cL09uemsyT2VpXC9nPSIsIm1hYyI6IjVlY2NlYmUzMzI2OGFmMDhlMmQ3ZTMzNmNkODFiYWMyYmViZDhlNjMyOTg4ZDRjM2JjYzljNTdmOWJjNjljYzAifQ==&st=eyJpdiI6ImdONjZUU2pHQmlZb2V2WE1adGlGdFE9PSIsInZhbHVlIjoibWg1aUVuc205Z2J2RzhcL3pzWjF1YzhHWHNmcXpYRlJSZWJcL1BNM1RFSjFsVzEyME56UDNybngydDh4T2FlUnVBIiwibWFjIjoiMjA0Mzc2NWJjZGVhZTAxNjJkYmMyZTRhNzkwZmIxNjY2OTkzZjU0OGY4ZGFhMWFhOWQwZGRiNjY2OGIwOGQ0MyJ9&ck=eyJpdiI6IllmVGtRYlNjVW0rNjNWV1lvNHBvUHc9PSIsInZhbHVlIjoiajRGMVAyXC8xU0Y5QUZwaGExd3dFSFIySU5vcDFjTzJaQVwvZmFKNHBhSnpDcmlGbzM2Z1B0R1Y1VHhBTVptcTBXIiwibWFjIjoiMTg2MzIwY2Y3YmE5NTJhMmVjOTAzZjRjOTM2ZjUyYWRjMTAxMjgwNTdiM2M0YzhiNzA4OTgzNDhhMzYwYWFkZCJ9",
"status": "pending",
"sub_total": "0.0",
"total": "100000.0",
"account_id": 14,
"reject_reason": null,
"slug": "cd4380b7-aaf7-4e91-a156-87b5c60b9a69",
"sourceable_type": "Purchase",
"sourceable_id": 29,
"midtrans_transaction_status": null,
"created_at": "2023-02-06T16:27:04.073+07:00",
"hospital_id": 16,
"billed_to_type": "Account",
"billed_to_id": 14,
"order_id": "INVC167567562407399",
"payment_method_id": null,
"profile_id": 14
},
"purchaseable": {
"id": "2",
"type": "support_service",
"attributes": {
"id": 2,
"name_en": "Paket lahiran hermina",
"title_en": "Let's buy this package",
"desc_en": "<p>Efficiently reinvent frictionless services after 24/365 functionalities. Competently reintermediate plug-and-play leadership with top-line leadership skills. Collaboratively initiate highly efficient scenarios for empowered e-markets. Efficiently simplify magnetic quality vectors whereas high-quality architectures. Dramatically pursue cutting-edge initiatives vis-a-vis high standards in potentialities.</p>\r\n\r\n<p>Seamlessly productize inexpensive expertise vis-a-vis state of the art markets. Seamlessly exploit extensive services rather than standardized web-readiness. Credibly actualize market-driven core competencies for top-line deliverables. Proactively enhance bricks-and-clicks methods of empowerment and an expanded array of value. Energistically deliver sustainable models for multifunctional infomediaries.</p>\r\n\r\n<p>Authoritatively develop robust e-tailers via sticky information. Interactively underwhelm covalent applications before high-payoff processes. Energistically underwhelm worldwide imperatives with low-risk high-yield systems. Dramatically morph technically sound models for standardized results. Proactively architect error-free collaboration and idea-sharing and resource sucking potentialities.</p>\r\n\r\n<p>Continually aggregate functionalized users via ethical bandwidth. Monotonectally engineer sustainable action items after team driven platforms. Objectively empower mission-critical niche markets through world-class leadership. Enthusiastically productize efficient opportunities without intuitive e-tailers. Competently enhance efficient leadership before fully researched infrastructures.</p>\r\n\r\n<p>Quickly negotiate pandemic expertise without world-class innovation. Efficiently deliver technically sound process improvements rather than holistic solutions. Energistically evolve best-of-breed metrics whereas high standards in interfaces. Efficiently customize high-quality markets via revolutionary paradigms. Dramatically orchestrate empowered information whereas high-payoff niches.</p>\r\n\r\n<p>Appropriately grow revolutionary.</p>\r\n",
"image": {
"url": "https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/support_service/image/2/package3.jpg",
"thumb": {
"url": "https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/support_service/image/2/thumb_package3.jpg"
}
},
"price": "400000.0",
"ref_number": null,
"scheduleable": false,
"seens_count": 2,
"slug": "paket-lahiran-hermina",
"desc_id": "<p>Objectively leverage other&#39;s extensive infomediaries whereas economically sound models. Uniquely pontificate dynamic leadership after multifunctional quality vectors. Uniquely coordinate compelling alignments through magnetic portals. Conveniently predominate emerging methodologies vis-a-vis resource maximizing e-commerce. Authoritatively incubate sticky channels rather than performance based alignments.</p>\r\n\r\n<p>Phosfluorescently myocardinate strategic web-readiness before worldwide methodologies. Globally cultivate orthogonal growth strategies via interactive intellectual capital. Dynamically innovate resource sucking initiatives before economically sound niches. Distinctively supply real-time models vis-a-vis web-enabled web-readiness. Efficiently maintain enabled e-tailers whereas 2.0 ideas.</p>\r\n\r\n<p>Continually redefine just in time partnerships rather than cost effective markets. Dynamically benchmark magnetic vortals through plug-and-play core competencies. Progressively engineer enabled communities after technically sound collaboration and idea-sharing. Progressively administrate sustainable bandwidth with prospective process improvements. Distinctively supply orthogonal core competencies for robust initiatives.</p>\r\n\r\n<p>Enthusiastically disintermediate backward-compatible alignments through progressive initiatives. Dynamically formulate goal-oriented resources after strategic communities. Holisticly leverage existing business infrastructures before exceptional web services. Interactively fabricate competitive strategic theme areas rather than leading-edge markets. Progressively enable leveraged solutions before equity invested customer service.</p>\r\n\r\n<p>Conveniently restore customized alignments vis-a-vis highly efficient scenarios. Assertively deploy extensive manufactured products for best-of-breed process improvements. Monotonectally integrate bricks-and-clicks sources for reliable markets. Monotonectally implement 2.0 products with open-source web-readiness. Intrinsicly disseminate end-to-end human capital with impactful results.</p>\r\n\r\n<p>Interactively.</p>\r\n",
"name_id": "Paket lahiran hermina",
"title_id": "Ayo segera beli"
}
}
}
}
}
```
content:
application/json:
schema:
type: object
properties:
success:
type: boolean
code:
type: integer
status:
type: string
message:
type: string
data:
type: object
properties:
id:
type: string
type:
type: string
attributes:
type: object
properties:
id:
type: integer
ref_number:
type: string
purchaseable_type:
type: string
purchaseable_id:
type: integer
slug:
type: string
profile_name:
type: string
hospital_name:
type: string
created_at:
type: string
profile_avatar:
type: object
properties:
url:
type: string
thumb:
type: object
properties:
url:
type: string
invoice:
type: object
properties:
id:
type: integer
ref_number:
type: string
due_date:
type: string
name:
type: string
payment_type:
type: 'null'
payment_url:
type: string
status:
type: string
sub_total:
type: string
total:
type: string
account_id:
type: integer
reject_reason:
type: 'null'
slug:
type: string
sourceable_type:
type: string
sourceable_id:
type: integer
midtrans_transaction_status:
type: 'null'
created_at:
type: string
hospital_id:
type: integer
billed_to_type:
type: string
billed_to_id:
type: integer
order_id:
type: string
payment_method_id:
type: 'null'
profile_id:
type: integer
purchaseable:
type: object
properties:
id:
type: string
type:
type: string
attributes:
type: object
properties:
id:
type: integer
name_en:
type: string
title_en:
type: string
desc_en:
type: string
image:
type: object
properties:
url:
type: string
thumb:
type: object
properties:
url:
type: string
price:
type: string
ref_number:
type: 'null'
scheduleable:
type: boolean
seens_count:
type: integer
slug:
type: string
desc_id:
type: string
name_id:
type: string
title_id:
type: string
x-examples:
Example 1:
success: true
code: 200
status: OK
message: OK
data:
id: '29'
type: purchase
attributes:
id: 29
ref_number: PRCHS0000029
purchaseable_type: SupportService
purchaseable_id: 2
slug: 6af54d49-14e8-412d-9b26-c04cc6149bd3
profile_name: Muhammad Yana Mulyana
hospital_name: Hermina Ciputat
created_at: '2023-02-06T16:27:03.145+07:00'
profile_avatar:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/profile/avatar/14/unnamed.jpg'
thumb:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/profile/avatar/14/thumb_unnamed.jpg'
invoice:
id: 99
ref_number: PRCHS0000029
due_date: '2023-02-07T16:27:04.037+07:00'
name: Biaya Paket lahiran hermina
payment_type: null
payment_url: 'http://middleware.herminahospitals.com/api/payment/interface?oi=eyJpdiI6Ik9hQWxkdXJUam4zelBDejQ3YTgreFE9PSIsInZhbHVlIjoia050bFV5Q3lHUG9QOEdZVTNsZ1Q1VUZHVGlVc3ZmWW5cL09uemsyT2VpXC9nPSIsIm1hYyI6IjVlY2NlYmUzMzI2OGFmMDhlMmQ3ZTMzNmNkODFiYWMyYmViZDhlNjMyOTg4ZDRjM2JjYzljNTdmOWJjNjljYzAifQ==&st=eyJpdiI6ImdONjZUU2pHQmlZb2V2WE1adGlGdFE9PSIsInZhbHVlIjoibWg1aUVuc205Z2J2RzhcL3pzWjF1YzhHWHNmcXpYRlJSZWJcL1BNM1RFSjFsVzEyME56UDNybngydDh4T2FlUnVBIiwibWFjIjoiMjA0Mzc2NWJjZGVhZTAxNjJkYmMyZTRhNzkwZmIxNjY2OTkzZjU0OGY4ZGFhMWFhOWQwZGRiNjY2OGIwOGQ0MyJ9&ck=eyJpdiI6IllmVGtRYlNjVW0rNjNWV1lvNHBvUHc9PSIsInZhbHVlIjoiajRGMVAyXC8xU0Y5QUZwaGExd3dFSFIySU5vcDFjTzJaQVwvZmFKNHBhSnpDcmlGbzM2Z1B0R1Y1VHhBTVptcTBXIiwibWFjIjoiMTg2MzIwY2Y3YmE5NTJhMmVjOTAzZjRjOTM2ZjUyYWRjMTAxMjgwNTdiM2M0YzhiNzA4OTgzNDhhMzYwYWFkZCJ9'
status: pending
sub_total: '0.0'
total: '100000.0'
account_id: 14
reject_reason: null
slug: cd4380b7-aaf7-4e91-a156-87b5c60b9a69
sourceable_type: Purchase
sourceable_id: 29
midtrans_transaction_status: null
created_at: '2023-02-06T16:27:04.073+07:00'
hospital_id: 16
billed_to_type: Account
billed_to_id: 14
order_id: INVC167567562407399
payment_method_id: null
profile_id: 14
purchaseable:
id: '2'
type: support_service
attributes:
id: 2
name_en: Paket lahiran hermina
title_en: Let's buy this package
desc_en: "<p>Efficiently reinvent frictionless services after 24/365 functionalities. Competently reintermediate plug-and-play leadership with top-line leadership skills. Collaboratively initiate highly efficient scenarios for empowered e-markets. Efficiently simplify magnetic quality vectors whereas high-quality architectures. Dramatically pursue cutting-edge initiatives vis-a-vis high standards in potentialities.</p>\r\n\r\n<p>Seamlessly productize inexpensive expertise vis-a-vis state of the art markets. Seamlessly exploit extensive services rather than standardized web-readiness. Credibly actualize market-driven core competencies for top-line deliverables. Proactively enhance bricks-and-clicks methods of empowerment and an expanded array of value. Energistically deliver sustainable models for multifunctional infomediaries.</p>\r\n\r\n<p>Authoritatively develop robust e-tailers via sticky information. Interactively underwhelm covalent applications before high-payoff processes. Energistically underwhelm worldwide imperatives with low-risk high-yield systems. Dramatically morph technically sound models for standardized results. Proactively architect error-free collaboration and idea-sharing and resource sucking potentialities.</p>\r\n\r\n<p>Continually aggregate functionalized users via ethical bandwidth. Monotonectally engineer sustainable action items after team driven platforms. Objectively empower mission-critical niche markets through world-class leadership. Enthusiastically productize efficient opportunities without intuitive e-tailers. Competently enhance efficient leadership before fully researched infrastructures.</p>\r\n\r\n<p>Quickly negotiate pandemic expertise without world-class innovation. Efficiently deliver technically sound process improvements rather than holistic solutions. Energistically evolve best-of-breed metrics whereas high standards in interfaces. Efficiently customize high-quality markets via revolutionary paradigms. Dramatically orchestrate empowered information whereas high-payoff niches.</p>\r\n\r\n<p>Appropriately grow revolutionary.</p>\r\n"
image:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/support_service/image/2/package3.jpg'
thumb:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/support_service/image/2/thumb_package3.jpg'
price: '400000.0'
ref_number: null
scheduleable: false
seens_count: 2
slug: paket-lahiran-hermina
desc_id: "<p>Objectively leverage other&#39;s extensive infomediaries whereas economically sound models. Uniquely pontificate dynamic leadership after multifunctional quality vectors. Uniquely coordinate compelling alignments through magnetic portals. Conveniently predominate emerging methodologies vis-a-vis resource maximizing e-commerce. Authoritatively incubate sticky channels rather than performance based alignments.</p>\r\n\r\n<p>Phosfluorescently myocardinate strategic web-readiness before worldwide methodologies. Globally cultivate orthogonal growth strategies via interactive intellectual capital. Dynamically innovate resource sucking initiatives before economically sound niches. Distinctively supply real-time models vis-a-vis web-enabled web-readiness. Efficiently maintain enabled e-tailers whereas 2.0 ideas.</p>\r\n\r\n<p>Continually redefine just in time partnerships rather than cost effective markets. Dynamically benchmark magnetic vortals through plug-and-play core competencies. Progressively engineer enabled communities after technically sound collaboration and idea-sharing. Progressively administrate sustainable bandwidth with prospective process improvements. Distinctively supply orthogonal core competencies for robust initiatives.</p>\r\n\r\n<p>Enthusiastically disintermediate backward-compatible alignments through progressive initiatives. Dynamically formulate goal-oriented resources after strategic communities. Holisticly leverage existing business infrastructures before exceptional web services. Interactively fabricate competitive strategic theme areas rather than leading-edge markets. Progressively enable leveraged solutions before equity invested customer service.</p>\r\n\r\n<p>Conveniently restore customized alignments vis-a-vis highly efficient scenarios. Assertively deploy extensive manufactured products for best-of-breed process improvements. Monotonectally integrate bricks-and-clicks sources for reliable markets. Monotonectally implement 2.0 products with open-source web-readiness. Intrinsicly disseminate end-to-end human capital with impactful results.</p>\r\n\r\n<p>Interactively.</p>\r\n"
name_id: Paket lahiran hermina
title_id: Ayo segera beli
examples:
Example 1:
value:
success: true
code: 200
status: OK
message: OK
data:
id: '29'
type: purchase
attributes:
id: 29
ref_number: PRCHS0000029
purchaseable_type: SupportService
purchaseable_id: 2
slug: 6af54d49-14e8-412d-9b26-c04cc6149bd3
profile_name: Muhammad Yana Mulyana
hospital_name: Hermina Ciputat
created_at: '2023-02-06T16:27:03.145+07:00'
profile_avatar:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/profile/avatar/14/unnamed.jpg'
thumb:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/profile/avatar/14/thumb_unnamed.jpg'
invoice:
id: 99
ref_number: PRCHS0000029
due_date: '2023-02-07T16:27:04.037+07:00'
name: Biaya Paket lahiran hermina
payment_type: null
payment_url: 'http://middleware.herminahospitals.com/api/payment/interface?oi=eyJpdiI6Ik9hQWxkdXJUam4zelBDejQ3YTgreFE9PSIsInZhbHVlIjoia050bFV5Q3lHUG9QOEdZVTNsZ1Q1VUZHVGlVc3ZmWW5cL09uemsyT2VpXC9nPSIsIm1hYyI6IjVlY2NlYmUzMzI2OGFmMDhlMmQ3ZTMzNmNkODFiYWMyYmViZDhlNjMyOTg4ZDRjM2JjYzljNTdmOWJjNjljYzAifQ==&st=eyJpdiI6ImdONjZUU2pHQmlZb2V2WE1adGlGdFE9PSIsInZhbHVlIjoibWg1aUVuc205Z2J2RzhcL3pzWjF1YzhHWHNmcXpYRlJSZWJcL1BNM1RFSjFsVzEyME56UDNybngydDh4T2FlUnVBIiwibWFjIjoiMjA0Mzc2NWJjZGVhZTAxNjJkYmMyZTRhNzkwZmIxNjY2OTkzZjU0OGY4ZGFhMWFhOWQwZGRiNjY2OGIwOGQ0MyJ9&ck=eyJpdiI6IllmVGtRYlNjVW0rNjNWV1lvNHBvUHc9PSIsInZhbHVlIjoiajRGMVAyXC8xU0Y5QUZwaGExd3dFSFIySU5vcDFjTzJaQVwvZmFKNHBhSnpDcmlGbzM2Z1B0R1Y1VHhBTVptcTBXIiwibWFjIjoiMTg2MzIwY2Y3YmE5NTJhMmVjOTAzZjRjOTM2ZjUyYWRjMTAxMjgwNTdiM2M0YzhiNzA4OTgzNDhhMzYwYWFkZCJ9'
status: pending
sub_total: '0.0'
total: '100000.0'
account_id: 14
reject_reason: null
slug: cd4380b7-aaf7-4e91-a156-87b5c60b9a69
sourceable_type: Purchase
sourceable_id: 29
midtrans_transaction_status: null
created_at: '2023-02-06T16:27:04.073+07:00'
hospital_id: 16
billed_to_type: Account
billed_to_id: 14
order_id: INVC167567562407399
payment_method_id: null
profile_id: 14
purchaseable:
id: '2'
type: support_service
attributes:
id: 2
name_en: Paket lahiran hermina
title_en: Let's buy this package
desc_en: "<p>Efficiently reinvent frictionless services after 24/365 functionalities. Competently reintermediate plug-and-play leadership with top-line leadership skills. Collaboratively initiate highly efficient scenarios for empowered e-markets. Efficiently simplify magnetic quality vectors whereas high-quality architectures. Dramatically pursue cutting-edge initiatives vis-a-vis high standards in potentialities.</p>\r\n\r\n<p>Seamlessly productize inexpensive expertise vis-a-vis state of the art markets. Seamlessly exploit extensive services rather than standardized web-readiness. Credibly actualize market-driven core competencies for top-line deliverables. Proactively enhance bricks-and-clicks methods of empowerment and an expanded array of value. Energistically deliver sustainable models for multifunctional infomediaries.</p>\r\n\r\n<p>Authoritatively develop robust e-tailers via sticky information. Interactively underwhelm covalent applications before high-payoff processes. Energistically underwhelm worldwide imperatives with low-risk high-yield systems. Dramatically morph technically sound models for standardized results. Proactively architect error-free collaboration and idea-sharing and resource sucking potentialities.</p>\r\n\r\n<p>Continually aggregate functionalized users via ethical bandwidth. Monotonectally engineer sustainable action items after team driven platforms. Objectively empower mission-critical niche markets through world-class leadership. Enthusiastically productize efficient opportunities without intuitive e-tailers. Competently enhance efficient leadership before fully researched infrastructures.</p>\r\n\r\n<p>Quickly negotiate pandemic expertise without world-class innovation. Efficiently deliver technically sound process improvements rather than holistic solutions. Energistically evolve best-of-breed metrics whereas high standards in interfaces. Efficiently customize high-quality markets via revolutionary paradigms. Dramatically orchestrate empowered information whereas high-payoff niches.</p>\r\n\r\n<p>Appropriately grow revolutionary.</p>\r\n"
image:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/support_service/image/2/package3.jpg'
thumb:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/support_service/image/2/thumb_package3.jpg'
price: '400000.0'
ref_number: null
scheduleable: false
seens_count: 2
slug: paket-lahiran-hermina
desc_id: "<p>Objectively leverage other&#39;s extensive infomediaries whereas economically sound models. Uniquely pontificate dynamic leadership after multifunctional quality vectors. Uniquely coordinate compelling alignments through magnetic portals. Conveniently predominate emerging methodologies vis-a-vis resource maximizing e-commerce. Authoritatively incubate sticky channels rather than performance based alignments.</p>\r\n\r\n<p>Phosfluorescently myocardinate strategic web-readiness before worldwide methodologies. Globally cultivate orthogonal growth strategies via interactive intellectual capital. Dynamically innovate resource sucking initiatives before economically sound niches. Distinctively supply real-time models vis-a-vis web-enabled web-readiness. Efficiently maintain enabled e-tailers whereas 2.0 ideas.</p>\r\n\r\n<p>Continually redefine just in time partnerships rather than cost effective markets. Dynamically benchmark magnetic vortals through plug-and-play core competencies. Progressively engineer enabled communities after technically sound collaboration and idea-sharing. Progressively administrate sustainable bandwidth with prospective process improvements. Distinctively supply orthogonal core competencies for robust initiatives.</p>\r\n\r\n<p>Enthusiastically disintermediate backward-compatible alignments through progressive initiatives. Dynamically formulate goal-oriented resources after strategic communities. Holisticly leverage existing business infrastructures before exceptional web services. Interactively fabricate competitive strategic theme areas rather than leading-edge markets. Progressively enable leveraged solutions before equity invested customer service.</p>\r\n\r\n<p>Conveniently restore customized alignments vis-a-vis highly efficient scenarios. Assertively deploy extensive manufactured products for best-of-breed process improvements. Monotonectally integrate bricks-and-clicks sources for reliable markets. Monotonectally implement 2.0 products with open-source web-readiness. Intrinsicly disseminate end-to-end human capital with impactful results.</p>\r\n\r\n<p>Interactively.</p>\r\n"
name_id: Paket lahiran hermina
title_id: Ayo segera beli
ask-doctors:
description: ''
content:
application/json:
schema:
type: object
properties:
success:
type: boolean
code:
type: integer
status:
type: string
message:
type: string
data:
type: array
items:
type: object
properties:
id:
type: string
type:
type: string
attributes:
type: object
properties:
id:
type: integer
title:
type: string
slug:
type: string
question:
type: string
status:
type: string
created_at:
type: string
updated_at:
type: string
account_id:
type: integer
seens_count:
type: integer
answered_by:
type: array
items:
type: string
answers:
type: array
items:
type: object
properties:
id:
type: integer
answer:
type: string
answered_by_type:
type: string
answered_by_id:
type: integer
doctor_id:
type: integer
answered_at:
type: string
pagination:
type: object
properties:
vars:
type: object
properties:
count_args:
type: array
items:
type: string
ends:
type: boolean
limit:
type: integer
outset:
type: integer
page:
type: integer
page_param:
type: string
size:
type: integer
steps:
type: boolean
trim_extra:
type: boolean
countless_minimal:
type: boolean
headers:
type: object
properties:
page:
type: string
limit:
type: string
count:
type: string
pages:
type: string
items:
type: integer
count:
type: integer
count:
type: integer
page:
type: integer
outset:
type: integer
limit:
type: integer
offset:
type: integer
last:
type: integer
from:
type: integer
to:
type: integer
in:
type: integer
prev:
type: 'null'
next:
type: integer
x-examples:
Example 1:
success: true
code: 200
status: OK
message: OK
data:
- id: '2149'
type: ask_doctor
attributes:
id: 2149
title: Eos qui sit vitae?
slug: 7092948e-6de3-4b6e-a483-10e6f1761eac
question: Cupiditate occaecati voluptatum. Et optio sit. Minima ex vero. Cumque similique dolorem. Non perspiciatis velit. Non in incidunt. Similique maxime iure. Sed ut quis. Quasi nostrum distinctio. Molestias fuga commodi. Ut quasi id. Voluptate enim deserunt. Omnis dolor aut. Commodi inventore ut. Dolorum corrupti saepe. Libero rerum ducimus. Mollitia odit optio. Architecto nisi velit. Officiis similique maxime. Enim ut impedit.
status: answered
created_at: '2024-08-23T17:24:19.062+07:00'
updated_at: '2024-08-23T17:24:19.069+07:00'
account_id: 14
seens_count: 0
answered_by:
- dr Yana Mulyana S.Kom
answers:
- id: 1476
answer: Voluptatem dolor ea. Quo dolor voluptas. Cum natus aliquid. Dolor sed voluptatem. Sit quia velit. Sunt molestiae iure. Itaque sed ratione. Quia laboriosam temporibus. Et perferendis inventore. Ut veniam dolores. Quos perspiciatis a. Incidunt velit vero. Veniam accusantium voluptas. Sunt molestias similique. Exercitationem eius enim. Cumque quibusdam et. Sed quas quia. Et ut est. Id sunt sit. Nemo voluptas id. Iure corrupti non. Natus nihil voluptatem. Hic accusamus est. Aliquam eveniet corrupti. Quaerat est atque. Velit aut labore. Excepturi rerum tempora. Dolorem cupiditate ut. Quis voluptate animi. A eaque esse.
answered_by_type: Hospital
answered_by_id: 5
doctor_id: 160
answered_at: '2024-08-23T17:24:19.066+07:00'
- id: '2059'
type: ask_doctor
attributes:
id: 2059
title: Suscipit ea deserunt rem?
slug: 6145b94c-7257-448b-bfeb-a5ef1cc601ac
question: Iusto fugiat perferendis. Nemo maiores deserunt. Sint eum repellendus. Dolores quia laboriosam. Id aut saepe. Dolores est optio. Accusamus et quibusdam. Non sapiente laboriosam. Assumenda nihil a. Modi iure quae. Quis earum mollitia. Rerum dignissimos laboriosam. Qui cumque consectetur. Neque corrupti aspernatur. Velit itaque ducimus. Et est beatae. Veniam mollitia ea. Ullam voluptas odit. Consequatur ut aut. Voluptas quas in.
status: answered
created_at: '2024-08-23T17:24:18.128+07:00'
updated_at: '2024-08-23T17:24:18.134+07:00'
account_id: 14
seens_count: 0
answered_by:
- Gugun Santoso
answers:
- id: 1386
answer: Adipisci magni aut. Voluptas laboriosam iusto. Molestiae vel fugiat. Voluptatem aspernatur dignissimos. Recusandae qui ab. Culpa quos et. Sint praesentium labore. Atque at quia. Temporibus dolores eos. Ut cum nemo. In autem id. Necessitatibus placeat sit. Earum ipsum omnis. Ipsam itaque sequi. Magni ipsum tempora. Qui ea labore. Et consequatur nemo. Harum deserunt ut. Quis aspernatur vero. Sint voluptas velit. Et iure omnis. Ipsam nesciunt hic. Sed autem pariatur. Blanditiis dolor repudiandae. Magnam porro ut. Laborum est dolores. Molestias tenetur laboriosam. Necessitatibus ipsum quia. Voluptatem nesciunt nisi. Voluptatem ea aut.
answered_by_type: Hospital
answered_by_id: 25
doctor_id: 125
answered_at: '2024-08-23T17:24:18.131+07:00'
- id: '2043'
type: ask_doctor
attributes:
id: 2043
title: Ratione sint magni eveniet?
slug: 2bc92843-82f4-4f38-8cf2-27739a006daf
question: Ex ut ut. Quis voluptas inventore. Quia dolore excepturi. Voluptas et totam. Qui rerum exercitationem. Culpa aut rerum. Est hic alias. Aut nihil animi. Voluptas rem eaque. Possimus non et. Omnis dicta autem. Delectus in nobis. Reprehenderit neque necessitatibus. Ipsam quo quibusdam. Rerum maiores velit. Id exercitationem dolorum. At laborum quod. Est eligendi voluptate. Libero similique dolorem. Perferendis quasi est.
status: answered
created_at: '2024-08-23T17:24:17.919+07:00'
updated_at: '2024-08-23T17:24:17.925+07:00'
account_id: 14
seens_count: 0
answered_by:
- Derry Ginting
answers:
- id: 1370
answer: Quam inventore qui. Praesentium nemo voluptatem. Et eos blanditiis. Aut a velit. Nostrum quis et. Quam tempora culpa. Quasi perferendis sapiente. Veniam dolor vel. Voluptatem dolores molestias. Sunt exercitationem hic. Qui sit et. Velit sit et. Nam dolorem illum. Odio sint velit. Itaque qui iusto. Distinctio impedit dicta. Et labore dolores. Sit consequatur et. Eius nihil atque. Nesciunt dolorem dolore. Deserunt placeat ut. Expedita iste ab. Ipsum debitis consequatur. Deserunt earum eum. Minima dolor et. Suscipit sit natus. Accusantium nobis ullam. Qui doloribus dolor. Voluptas architecto debitis. Soluta quaerat voluptas.
answered_by_type: Hospital
answered_by_id: 23
doctor_id: 119
answered_at: '2024-08-23T17:24:17.922+07:00'
- id: '2036'
type: ask_doctor
attributes:
id: 2036
title: Illum vel aut rem?
slug: 3079f4e3-9fc8-4023-ae70-565ba4188b31
question: Ipsam ut omnis. Molestiae eius dolore. Illo consequatur a. Deserunt omnis sed. Occaecati laborum ipsam. Non occaecati et. Expedita esse ad. Nisi ab temporibus. Sequi voluptatem sed. Cumque ex et. Enim quia asperiores. Iste sed sit. Autem ex architecto. Enim qui doloremque. Ipsa labore fugiat. Distinctio officiis dolor. Incidunt dolor minima. Aut veniam quisquam. Qui qui voluptatem. Commodi aut maxime.
status: answered
created_at: '2024-08-23T17:24:17.852+07:00'
updated_at: '2024-08-23T17:24:17.857+07:00'
account_id: 14
seens_count: 0
answered_by:
- Bima Qodir
answers:
- id: 1363
answer: Eius cum aut. Ut eum non. Architecto possimus pariatur. Quia tempora est. Sunt earum laudantium. Saepe culpa earum. Non est voluptas. Odit fuga est. Porro molestias nisi. Aut quae at. Nisi dolorum aliquid. Et aliquam a. Nulla aperiam omnis. Assumenda vitae nam. Aut aut nihil. Et commodi at. Aut repudiandae explicabo. Incidunt corrupti ex. Sint quia molestiae. Consectetur natus iure. Aut consequatur dicta. Et laborum autem. Corporis adipisci sint. Et quasi voluptas. Accusamus qui rerum. Culpa ratione architecto. Corporis natus et. Quibusdam vel laborum. Adipisci possimus voluptatibus. Qui molestiae esse.
answered_by_type: Hospital
answered_by_id: 19
doctor_id: 117
answered_at: '2024-08-23T17:24:17.855+07:00'
- id: '1988'
type: ask_doctor
attributes:
id: 1988
title: Quia itaque minima a?
slug: a596179c-e721-454c-a57b-626dacb290b8
question: Et ab voluptatum. Dicta eveniet consequatur. Non possimus qui. Tenetur fuga ut. Et consequuntur magnam. Perferendis libero non. Omnis voluptatem rerum. Suscipit est doloribus. Inventore nobis accusantium. Nostrum voluptatem voluptatum. Magni aliquid et. Debitis maiores voluptas. Voluptatum rem ipsa. Eos voluptatem ea. Voluptas explicabo ex. Hic atque fuga. Modi a neque. Rerum et exercitationem. Sit sed aliquam. Reprehenderit maiores optio.
status: answered
created_at: '2024-08-23T17:24:17.353+07:00'
updated_at: '2024-08-23T17:24:17.358+07:00'
account_id: 14
seens_count: 0
answered_by:
- Anita Wardhana
answers:
- id: 1315
answer: Voluptas assumenda quas. Sed voluptas autem. Impedit distinctio fuga. Quaerat cumque vitae. Repudiandae rem molestias. Voluptas possimus tempora. Soluta libero ea. Mollitia expedita animi. Sint quo voluptatem. Unde nostrum impedit. Fugiat ut quis. Quo sed blanditiis. Voluptas ipsum minima. Quibusdam fugit corporis. Labore repudiandae non. Numquam et nulla. Cumque facilis et. Aut quidem voluptatem. Distinctio eos nesciunt. Beatae voluptates voluptate. Ipsum velit similique. Incidunt excepturi consequatur. Sunt reiciendis doloribus. Nesciunt ut sit. Alias omnis enim. Et nisi eius. Et aut et. Eos ut fugit. Excepturi et tempore. Porro doloribus soluta.
answered_by_type: Hospital
answered_by_id: 15
doctor_id: 101
answered_at: '2024-08-23T17:24:17.355+07:00'
- id: '1977'
type: ask_doctor
attributes:
id: 1977
title: Quidem corrupti repellendus delectus?
slug: c4dddd27-8ba8-4114-ade4-f24af2d524c0
question: Vitae necessitatibus quia. Earum sunt nemo. Accusantium ex aut. Et voluptate molestiae. Rerum ipsa et. Quis aut dolorum. Et ea facilis. Omnis et ut. Quia consequatur sed. Accusantium consequatur quaerat. Eligendi et veniam. Nihil dolor architecto. Commodi veniam eligendi. Quo alias et. Delectus ea laborum. Modi suscipit dignissimos. Ut et porro. Rem qui eius. Excepturi doloribus sed. Reiciendis ab atque.
status: answered
created_at: '2024-08-23T17:24:17.160+07:00'
updated_at: '2024-08-23T17:24:17.165+07:00'
account_id: 14
seens_count: 0
answered_by:
- Topan Marzuki
answers:
- id: 1304
answer: Necessitatibus libero placeat. Aliquam at facilis. Est soluta quis. Non sint quis. Magnam labore qui. Expedita alias explicabo. Saepe harum fuga. Est quia aliquid. Neque ut nulla. Sed recusandae dolorem. Iste vero nihil. Odio quam voluptatem. Dolores necessitatibus accusantium. Dolorum dolor totam. Sint amet sapiente. Dolor repellendus ratione. Qui et odit. Ut consequuntur earum. Porro magnam libero. Qui optio unde. Optio et ut. Porro praesentium vel. Quo et ea. Autem ratione dolor. Molestiae aperiam nesciunt. Esse harum molestias. Architecto qui rerum. Tenetur fuga repellat. Voluptatum totam reprehenderit. Et totam repellendus.
answered_by_type: Hospital
answered_by_id: 17
doctor_id: 97
answered_at: '2024-08-23T17:24:17.163+07:00'
- id: '1954'
type: ask_doctor
attributes:
id: 1954
title: Distinctio minus adipisci eveniet?
slug: d8a03cec-fb1b-4947-823b-0c2035df6bfb
question: Rerum hic saepe. Ad sint harum. Et nesciunt neque. Aliquam aut magni. Voluptas eaque enim. Quis error dolore. Sunt non sit. Perspiciatis aperiam ea. Mollitia magni dolore. Perferendis quasi nobis. Placeat facere consectetur. Ut corporis quia. Voluptatem est voluptatum. Illo vitae officia. Reiciendis voluptates optio. Nemo maxime doloremque. Porro dolor ut. Enim accusamus sed. Dolores iure aliquid. Dolores exercitationem corrupti.
status: answered
created_at: '2024-08-23T17:24:16.912+07:00'
updated_at: '2024-08-23T17:24:16.918+07:00'
account_id: 14
seens_count: 0
answered_by:
- Tri Winardi
answers:
- id: 1281
answer: Dolore incidunt illo. Ea ut esse. Eveniet amet qui. Eos eaque numquam. Modi at ab. Vel velit nihil. Voluptatem dolorem nostrum. Debitis voluptatem incidunt. Ipsum excepturi veniam. Unde odit dolorem. Qui odit voluptates. Blanditiis earum reprehenderit. Dolore ratione laudantium. Vero quisquam ut. Voluptas debitis eveniet. Aut dolorum harum. Consequatur delectus animi. Hic numquam tempora. Non ullam quae. Velit quidem maiores. Consequatur eum ducimus. Veritatis quo facilis. Placeat dolor consequatur. Aut aliquid sunt. Nisi error non. Est dolores perferendis. Quia aut est. Impedit necessitatibus eos. Placeat quia dignissimos. Voluptatem laboriosam excepturi.
answered_by_type: Hospital
answered_by_id: 28
doctor_id: 90
answered_at: '2024-08-23T17:24:16.915+07:00'
- id: '1949'
type: ask_doctor
attributes:
id: 1949
title: Illo illum dicta consequatur?
slug: 60b08731-5332-4320-b445-1a6e305e5482
question: Est esse animi. Et dolorum velit. Sint autem architecto. Nesciunt ex accusantium. Qui eos vitae. Et totam ut. Harum accusantium laborum. Cum esse adipisci. Voluptatum quibusdam consequatur. Fugiat sequi ipsam. Officia iusto reiciendis. Quis error et. Magni debitis quidem. Ad ullam culpa. Qui omnis eos. Laboriosam quisquam vel. Quia velit voluptatem. Sunt aspernatur molestiae. Dolores dicta optio. Non mollitia et.
status: answered
created_at: '2024-08-23T17:24:16.850+07:00'
updated_at: '2024-08-23T17:24:16.855+07:00'
account_id: 14
seens_count: 0
answered_by:
- Lely Taslim
answers:
- id: 1276
answer: Praesentium et sapiente. Recusandae aliquid ea. Ut quis assumenda. Nisi aut voluptatem. Et vitae error. Sit atque sed. Et est doloremque. Doloribus expedita accusamus. Vel sit velit. Harum sed fugit. Error dolor in. Libero sit maiores. Quis earum adipisci. Maxime et aspernatur. Fuga hic esse. Maiores ut sit. Est perspiciatis ipsum. Ut ducimus sunt. Velit est natus. Quis accusamus provident. Dolore dolores temporibus. Totam commodi quasi. Aut amet sit. Distinctio consequatur id. Est odio rerum. Sunt architecto rerum. Consectetur voluptatem et. Culpa aut voluptas. Dolorem facilis ut. Sit et labore.
answered_by_type: Hospital
answered_by_id: 5
doctor_id: 88
answered_at: '2024-08-23T17:24:16.852+07:00'
- id: '1927'
type: ask_doctor
attributes:
id: 1927
title: Et perferendis cumque aperiam?
slug: 34b0b57d-5acb-4242-bedc-6e14b41457f4
question: Reprehenderit sed harum. Iusto non iure. Qui neque libero. Voluptas labore eius. Occaecati veniam sapiente. Ut impedit labore. Suscipit quisquam dolorem. Facilis quos et. Omnis vitae molestiae. Blanditiis qui natus. Hic assumenda voluptates. Consequuntur id molestias. Eligendi modi quis. Sunt ut quidem. Perspiciatis error assumenda. Aspernatur excepturi facere. Libero maiores aut. Voluptatum vitae iusto. Recusandae atque libero. Eaque qui voluptas.
status: answered
created_at: '2024-08-23T17:24:16.614+07:00'
updated_at: '2024-08-23T17:24:16.619+07:00'
account_id: 14
seens_count: 0
answered_by:
- Rosa Triwijaya
answers:
- id: 1254
answer: Optio atque quos. Esse sed ipsam. Animi tenetur dolor. Fuga excepturi accusantium. Aut odit magnam. Sunt aut inventore. Voluptatem ea necessitatibus. Fuga aut doloremque. Suscipit facere incidunt. Rem repudiandae qui. Id labore officiis. Delectus quia consectetur. Ipsam id dignissimos. Dignissimos in consequatur. Nam qui atque. Dolorem et omnis. Ratione eos eveniet. Ex sed et. Velit ad architecto. Exercitationem soluta ea. Fugit repellat quo. Id ipsa laborum. Recusandae officiis quos. Velit ut sint. Ut magni quidem. Rerum voluptatum sed. Eius sunt perspiciatis. Sed ea et. Et exercitationem atque. Sapiente quos est.
answered_by_type: Hospital
answered_by_id: 10
doctor_id: 81
answered_at: '2024-08-23T17:24:16.617+07:00'
- id: '1911'
type: ask_doctor
attributes:
id: 1911
title: Sed similique accusamus et?
slug: cbaa8655-f2b4-4b7c-8d3e-3f9b0c31fc60
question: Enim beatae facilis. Id et ut. Ut non ipsam. Illo non voluptatem. Id voluptatem deserunt. Cumque perferendis aut. Iure dignissimos ea. Dolores rerum sit. Sequi earum sed. In cupiditate qui. Aut corrupti est. Odio quasi odit. Adipisci explicabo esse. Porro excepturi eum. Eum perferendis aut. Qui ratione dolor. Repellendus accusamus cumque. Eveniet ullam eaque. Mollitia et debitis. Dignissimos eius veritatis.
status: answered
created_at: '2024-08-23T17:24:16.452+07:00'
updated_at: '2024-08-23T17:24:16.457+07:00'
account_id: 14
seens_count: 0
answered_by:
- Yudhistira Utama
answers:
- id: 1238
answer: Quaerat hic natus. Animi inventore est. Velit est est. Voluptatem ipsum occaecati. Quo consequatur numquam. At est est. Expedita voluptatem voluptates. Tempora cumque dolor. Molestiae rerum harum. Voluptates sequi est. Et sit sapiente. Ex ipsam aut. Alias dolorem ut. Blanditiis iusto sunt. Nihil veniam dolores. Qui officia nulla. Maiores repudiandae delectus. Saepe nam corrupti. Officiis vero rerum. Eos dolor nesciunt. Eos quam ut. Iure sed nulla. Natus repellendus aut. Id sit voluptas. Sint nostrum quasi. Sint culpa sit. Aut officia quisquam. Exercitationem itaque inventore. Inventore facere et. Illo nemo dolorem.
answered_by_type: Hospital
answered_by_id: 28
doctor_id: 75
answered_at: '2024-08-23T17:24:16.455+07:00'
pagination:
vars:
count_args:
- all
ends: true
limit: 10
outset: 0
page: 1
page_param: page
size: 7
steps: false
trim_extra: true
countless_minimal: false
headers:
page: current-page
limit: page-items
count: total-count
pages: total-pages
items: 10
count: 13
count: 13
page: 1
outset: 0
limit: 10
offset: 0
last: 2
from: 1
to: 10
in: 10
prev: null
next: 2
examples:
index:
value:
success: true
code: 200
status: OK
message: OK
data:
- id: '2149'
type: ask_doctor
attributes:
id: 2149
title: Eos qui sit vitae?
slug: 7092948e-6de3-4b6e-a483-10e6f1761eac
question: Cupiditate occaecati voluptatum. Et optio sit. Minima ex vero. Cumque similique dolorem. Non perspiciatis velit. Non in incidunt. Similique maxime iure. Sed ut quis. Quasi nostrum distinctio. Molestias fuga commodi. Ut quasi id. Voluptate enim deserunt. Omnis dolor aut. Commodi inventore ut. Dolorum corrupti saepe. Libero rerum ducimus. Mollitia odit optio. Architecto nisi velit. Officiis similique maxime. Enim ut impedit.
status: answered
created_at: '2024-08-23T17:24:19.062+07:00'
updated_at: '2024-08-23T17:24:19.069+07:00'
account_id: 14
seens_count: 0
answered_by:
- dr Yana Mulyana S.Kom
answers:
- id: 1476
answer: Voluptatem dolor ea. Quo dolor voluptas. Cum natus aliquid. Dolor sed voluptatem. Sit quia velit. Sunt molestiae iure. Itaque sed ratione. Quia laboriosam temporibus. Et perferendis inventore. Ut veniam dolores. Quos perspiciatis a. Incidunt velit vero. Veniam accusantium voluptas. Sunt molestias similique. Exercitationem eius enim. Cumque quibusdam et. Sed quas quia. Et ut est. Id sunt sit. Nemo voluptas id. Iure corrupti non. Natus nihil voluptatem. Hic accusamus est. Aliquam eveniet corrupti. Quaerat est atque. Velit aut labore. Excepturi rerum tempora. Dolorem cupiditate ut. Quis voluptate animi. A eaque esse.
answered_by_type: Hospital
answered_by_id: 5
doctor_id: 160
answered_at: '2024-08-23T17:24:19.066+07:00'
- id: '2059'
type: ask_doctor
attributes:
id: 2059
title: Suscipit ea deserunt rem?
slug: 6145b94c-7257-448b-bfeb-a5ef1cc601ac
question: Iusto fugiat perferendis. Nemo maiores deserunt. Sint eum repellendus. Dolores quia laboriosam. Id aut saepe. Dolores est optio. Accusamus et quibusdam. Non sapiente laboriosam. Assumenda nihil a. Modi iure quae. Quis earum mollitia. Rerum dignissimos laboriosam. Qui cumque consectetur. Neque corrupti aspernatur. Velit itaque ducimus. Et est beatae. Veniam mollitia ea. Ullam voluptas odit. Consequatur ut aut. Voluptas quas in.
status: answered
created_at: '2024-08-23T17:24:18.128+07:00'
updated_at: '2024-08-23T17:24:18.134+07:00'
account_id: 14
seens_count: 0
answered_by:
- Gugun Santoso
answers:
- id: 1386
answer: Adipisci magni aut. Voluptas laboriosam iusto. Molestiae vel fugiat. Voluptatem aspernatur dignissimos. Recusandae qui ab. Culpa quos et. Sint praesentium labore. Atque at quia. Temporibus dolores eos. Ut cum nemo. In autem id. Necessitatibus placeat sit. Earum ipsum omnis. Ipsam itaque sequi. Magni ipsum tempora. Qui ea labore. Et consequatur nemo. Harum deserunt ut. Quis aspernatur vero. Sint voluptas velit. Et iure omnis. Ipsam nesciunt hic. Sed autem pariatur. Blanditiis dolor repudiandae. Magnam porro ut. Laborum est dolores. Molestias tenetur laboriosam. Necessitatibus ipsum quia. Voluptatem nesciunt nisi. Voluptatem ea aut.
answered_by_type: Hospital
answered_by_id: 25
doctor_id: 125
answered_at: '2024-08-23T17:24:18.131+07:00'
- id: '2043'
type: ask_doctor
attributes:
id: 2043
title: Ratione sint magni eveniet?
slug: 2bc92843-82f4-4f38-8cf2-27739a006daf
question: Ex ut ut. Quis voluptas inventore. Quia dolore excepturi. Voluptas et totam. Qui rerum exercitationem. Culpa aut rerum. Est hic alias. Aut nihil animi. Voluptas rem eaque. Possimus non et. Omnis dicta autem. Delectus in nobis. Reprehenderit neque necessitatibus. Ipsam quo quibusdam. Rerum maiores velit. Id exercitationem dolorum. At laborum quod. Est eligendi voluptate. Libero similique dolorem. Perferendis quasi est.
status: answered
created_at: '2024-08-23T17:24:17.919+07:00'
updated_at: '2024-08-23T17:24:17.925+07:00'
account_id: 14
seens_count: 0
answered_by:
- Derry Ginting
answers:
- id: 1370
answer: Quam inventore qui. Praesentium nemo voluptatem. Et eos blanditiis. Aut a velit. Nostrum quis et. Quam tempora culpa. Quasi perferendis sapiente. Veniam dolor vel. Voluptatem dolores molestias. Sunt exercitationem hic. Qui sit et. Velit sit et. Nam dolorem illum. Odio sint velit. Itaque qui iusto. Distinctio impedit dicta. Et labore dolores. Sit consequatur et. Eius nihil atque. Nesciunt dolorem dolore. Deserunt placeat ut. Expedita iste ab. Ipsum debitis consequatur. Deserunt earum eum. Minima dolor et. Suscipit sit natus. Accusantium nobis ullam. Qui doloribus dolor. Voluptas architecto debitis. Soluta quaerat voluptas.
answered_by_type: Hospital
answered_by_id: 23
doctor_id: 119
answered_at: '2024-08-23T17:24:17.922+07:00'
- id: '2036'
type: ask_doctor
attributes:
id: 2036
title: Illum vel aut rem?
slug: 3079f4e3-9fc8-4023-ae70-565ba4188b31
question: Ipsam ut omnis. Molestiae eius dolore. Illo consequatur a. Deserunt omnis sed. Occaecati laborum ipsam. Non occaecati et. Expedita esse ad. Nisi ab temporibus. Sequi voluptatem sed. Cumque ex et. Enim quia asperiores. Iste sed sit. Autem ex architecto. Enim qui doloremque. Ipsa labore fugiat. Distinctio officiis dolor. Incidunt dolor minima. Aut veniam quisquam. Qui qui voluptatem. Commodi aut maxime.
status: answered
created_at: '2024-08-23T17:24:17.852+07:00'
updated_at: '2024-08-23T17:24:17.857+07:00'
account_id: 14
seens_count: 0
answered_by:
- Bima Qodir
answers:
- id: 1363
answer: Eius cum aut. Ut eum non. Architecto possimus pariatur. Quia tempora est. Sunt earum laudantium. Saepe culpa earum. Non est voluptas. Odit fuga est. Porro molestias nisi. Aut quae at. Nisi dolorum aliquid. Et aliquam a. Nulla aperiam omnis. Assumenda vitae nam. Aut aut nihil. Et commodi at. Aut repudiandae explicabo. Incidunt corrupti ex. Sint quia molestiae. Consectetur natus iure. Aut consequatur dicta. Et laborum autem. Corporis adipisci sint. Et quasi voluptas. Accusamus qui rerum. Culpa ratione architecto. Corporis natus et. Quibusdam vel laborum. Adipisci possimus voluptatibus. Qui molestiae esse.
answered_by_type: Hospital
answered_by_id: 19
doctor_id: 117
answered_at: '2024-08-23T17:24:17.855+07:00'
- id: '1988'
type: ask_doctor
attributes:
id: 1988
title: Quia itaque minima a?
slug: a596179c-e721-454c-a57b-626dacb290b8
question: Et ab voluptatum. Dicta eveniet consequatur. Non possimus qui. Tenetur fuga ut. Et consequuntur magnam. Perferendis libero non. Omnis voluptatem rerum. Suscipit est doloribus. Inventore nobis accusantium. Nostrum voluptatem voluptatum. Magni aliquid et. Debitis maiores voluptas. Voluptatum rem ipsa. Eos voluptatem ea. Voluptas explicabo ex. Hic atque fuga. Modi a neque. Rerum et exercitationem. Sit sed aliquam. Reprehenderit maiores optio.
status: answered
created_at: '2024-08-23T17:24:17.353+07:00'
updated_at: '2024-08-23T17:24:17.358+07:00'
account_id: 14
seens_count: 0
answered_by:
- Anita Wardhana
answers:
- id: 1315
answer: Voluptas assumenda quas. Sed voluptas autem. Impedit distinctio fuga. Quaerat cumque vitae. Repudiandae rem molestias. Voluptas possimus tempora. Soluta libero ea. Mollitia expedita animi. Sint quo voluptatem. Unde nostrum impedit. Fugiat ut quis. Quo sed blanditiis. Voluptas ipsum minima. Quibusdam fugit corporis. Labore repudiandae non. Numquam et nulla. Cumque facilis et. Aut quidem voluptatem. Distinctio eos nesciunt. Beatae voluptates voluptate. Ipsum velit similique. Incidunt excepturi consequatur. Sunt reiciendis doloribus. Nesciunt ut sit. Alias omnis enim. Et nisi eius. Et aut et. Eos ut fugit. Excepturi et tempore. Porro doloribus soluta.
answered_by_type: Hospital
answered_by_id: 15
doctor_id: 101
answered_at: '2024-08-23T17:24:17.355+07:00'
- id: '1977'
type: ask_doctor
attributes:
id: 1977
title: Quidem corrupti repellendus delectus?
slug: c4dddd27-8ba8-4114-ade4-f24af2d524c0
question: Vitae necessitatibus quia. Earum sunt nemo. Accusantium ex aut. Et voluptate molestiae. Rerum ipsa et. Quis aut dolorum. Et ea facilis. Omnis et ut. Quia consequatur sed. Accusantium consequatur quaerat. Eligendi et veniam. Nihil dolor architecto. Commodi veniam eligendi. Quo alias et. Delectus ea laborum. Modi suscipit dignissimos. Ut et porro. Rem qui eius. Excepturi doloribus sed. Reiciendis ab atque.
status: answered
created_at: '2024-08-23T17:24:17.160+07:00'
updated_at: '2024-08-23T17:24:17.165+07:00'
account_id: 14
seens_count: 0
answered_by:
- Topan Marzuki
answers:
- id: 1304
answer: Necessitatibus libero placeat. Aliquam at facilis. Est soluta quis. Non sint quis. Magnam labore qui. Expedita alias explicabo. Saepe harum fuga. Est quia aliquid. Neque ut nulla. Sed recusandae dolorem. Iste vero nihil. Odio quam voluptatem. Dolores necessitatibus accusantium. Dolorum dolor totam. Sint amet sapiente. Dolor repellendus ratione. Qui et odit. Ut consequuntur earum. Porro magnam libero. Qui optio unde. Optio et ut. Porro praesentium vel. Quo et ea. Autem ratione dolor. Molestiae aperiam nesciunt. Esse harum molestias. Architecto qui rerum. Tenetur fuga repellat. Voluptatum totam reprehenderit. Et totam repellendus.
answered_by_type: Hospital
answered_by_id: 17
doctor_id: 97
answered_at: '2024-08-23T17:24:17.163+07:00'
- id: '1954'
type: ask_doctor
attributes:
id: 1954
title: Distinctio minus adipisci eveniet?
slug: d8a03cec-fb1b-4947-823b-0c2035df6bfb
question: Rerum hic saepe. Ad sint harum. Et nesciunt neque. Aliquam aut magni. Voluptas eaque enim. Quis error dolore. Sunt non sit. Perspiciatis aperiam ea. Mollitia magni dolore. Perferendis quasi nobis. Placeat facere consectetur. Ut corporis quia. Voluptatem est voluptatum. Illo vitae officia. Reiciendis voluptates optio. Nemo maxime doloremque. Porro dolor ut. Enim accusamus sed. Dolores iure aliquid. Dolores exercitationem corrupti.
status: answered
created_at: '2024-08-23T17:24:16.912+07:00'
updated_at: '2024-08-23T17:24:16.918+07:00'
account_id: 14
seens_count: 0
answered_by:
- Tri Winardi
answers:
- id: 1281
answer: Dolore incidunt illo. Ea ut esse. Eveniet amet qui. Eos eaque numquam. Modi at ab. Vel velit nihil. Voluptatem dolorem nostrum. Debitis voluptatem incidunt. Ipsum excepturi veniam. Unde odit dolorem. Qui odit voluptates. Blanditiis earum reprehenderit. Dolore ratione laudantium. Vero quisquam ut. Voluptas debitis eveniet. Aut dolorum harum. Consequatur delectus animi. Hic numquam tempora. Non ullam quae. Velit quidem maiores. Consequatur eum ducimus. Veritatis quo facilis. Placeat dolor consequatur. Aut aliquid sunt. Nisi error non. Est dolores perferendis. Quia aut est. Impedit necessitatibus eos. Placeat quia dignissimos. Voluptatem laboriosam excepturi.
answered_by_type: Hospital
answered_by_id: 28
doctor_id: 90
answered_at: '2024-08-23T17:24:16.915+07:00'
- id: '1949'
type: ask_doctor
attributes:
id: 1949
title: Illo illum dicta consequatur?
slug: 60b08731-5332-4320-b445-1a6e305e5482
question: Est esse animi. Et dolorum velit. Sint autem architecto. Nesciunt ex accusantium. Qui eos vitae. Et totam ut. Harum accusantium laborum. Cum esse adipisci. Voluptatum quibusdam consequatur. Fugiat sequi ipsam. Officia iusto reiciendis. Quis error et. Magni debitis quidem. Ad ullam culpa. Qui omnis eos. Laboriosam quisquam vel. Quia velit voluptatem. Sunt aspernatur molestiae. Dolores dicta optio. Non mollitia et.
status: answered
created_at: '2024-08-23T17:24:16.850+07:00'
updated_at: '2024-08-23T17:24:16.855+07:00'
account_id: 14
seens_count: 0
answered_by:
- Lely Taslim
answers:
- id: 1276
answer: Praesentium et sapiente. Recusandae aliquid ea. Ut quis assumenda. Nisi aut voluptatem. Et vitae error. Sit atque sed. Et est doloremque. Doloribus expedita accusamus. Vel sit velit. Harum sed fugit. Error dolor in. Libero sit maiores. Quis earum adipisci. Maxime et aspernatur. Fuga hic esse. Maiores ut sit. Est perspiciatis ipsum. Ut ducimus sunt. Velit est natus. Quis accusamus provident. Dolore dolores temporibus. Totam commodi quasi. Aut amet sit. Distinctio consequatur id. Est odio rerum. Sunt architecto rerum. Consectetur voluptatem et. Culpa aut voluptas. Dolorem facilis ut. Sit et labore.
answered_by_type: Hospital
answered_by_id: 5
doctor_id: 88
answered_at: '2024-08-23T17:24:16.852+07:00'
- id: '1927'
type: ask_doctor
attributes:
id: 1927
title: Et perferendis cumque aperiam?
slug: 34b0b57d-5acb-4242-bedc-6e14b41457f4
question: Reprehenderit sed harum. Iusto non iure. Qui neque libero. Voluptas labore eius. Occaecati veniam sapiente. Ut impedit labore. Suscipit quisquam dolorem. Facilis quos et. Omnis vitae molestiae. Blanditiis qui natus. Hic assumenda voluptates. Consequuntur id molestias. Eligendi modi quis. Sunt ut quidem. Perspiciatis error assumenda. Aspernatur excepturi facere. Libero maiores aut. Voluptatum vitae iusto. Recusandae atque libero. Eaque qui voluptas.
status: answered
created_at: '2024-08-23T17:24:16.614+07:00'
updated_at: '2024-08-23T17:24:16.619+07:00'
account_id: 14
seens_count: 0
answered_by:
- Rosa Triwijaya
answers:
- id: 1254
answer: Optio atque quos. Esse sed ipsam. Animi tenetur dolor. Fuga excepturi accusantium. Aut odit magnam. Sunt aut inventore. Voluptatem ea necessitatibus. Fuga aut doloremque. Suscipit facere incidunt. Rem repudiandae qui. Id labore officiis. Delectus quia consectetur. Ipsam id dignissimos. Dignissimos in consequatur. Nam qui atque. Dolorem et omnis. Ratione eos eveniet. Ex sed et. Velit ad architecto. Exercitationem soluta ea. Fugit repellat quo. Id ipsa laborum. Recusandae officiis quos. Velit ut sint. Ut magni quidem. Rerum voluptatum sed. Eius sunt perspiciatis. Sed ea et. Et exercitationem atque. Sapiente quos est.
answered_by_type: Hospital
answered_by_id: 10
doctor_id: 81
answered_at: '2024-08-23T17:24:16.617+07:00'
- id: '1911'
type: ask_doctor
attributes:
id: 1911
title: Sed similique accusamus et?
slug: cbaa8655-f2b4-4b7c-8d3e-3f9b0c31fc60
question: Enim beatae facilis. Id et ut. Ut non ipsam. Illo non voluptatem. Id voluptatem deserunt. Cumque perferendis aut. Iure dignissimos ea. Dolores rerum sit. Sequi earum sed. In cupiditate qui. Aut corrupti est. Odio quasi odit. Adipisci explicabo esse. Porro excepturi eum. Eum perferendis aut. Qui ratione dolor. Repellendus accusamus cumque. Eveniet ullam eaque. Mollitia et debitis. Dignissimos eius veritatis.
status: answered
created_at: '2024-08-23T17:24:16.452+07:00'
updated_at: '2024-08-23T17:24:16.457+07:00'
account_id: 14
seens_count: 0
answered_by:
- Yudhistira Utama
answers:
- id: 1238
answer: Quaerat hic natus. Animi inventore est. Velit est est. Voluptatem ipsum occaecati. Quo consequatur numquam. At est est. Expedita voluptatem voluptates. Tempora cumque dolor. Molestiae rerum harum. Voluptates sequi est. Et sit sapiente. Ex ipsam aut. Alias dolorem ut. Blanditiis iusto sunt. Nihil veniam dolores. Qui officia nulla. Maiores repudiandae delectus. Saepe nam corrupti. Officiis vero rerum. Eos dolor nesciunt. Eos quam ut. Iure sed nulla. Natus repellendus aut. Id sit voluptas. Sint nostrum quasi. Sint culpa sit. Aut officia quisquam. Exercitationem itaque inventore. Inventore facere et. Illo nemo dolorem.
answered_by_type: Hospital
answered_by_id: 28
doctor_id: 75
answered_at: '2024-08-23T17:24:16.455+07:00'
pagination:
vars:
count_args:
- all
ends: true
limit: 10
outset: 0
page: 1
page_param: page
size: 7
steps: false
trim_extra: true
countless_minimal: false
headers:
page: current-page
limit: page-items
count: total-count
pages: total-pages
items: 10
count: 13
count: 13
page: 1
outset: 0
limit: 10
offset: 0
last: 2
from: 1
to: 10
in: 10
prev: null
next: 2
ask-doctor:
description: |-
```json
{
"success": true,
"code": 200,
"status": "OK",
"message": "OK",
"data": {
"id": "2149",
"type": "ask_doctor",
"attributes": {
"id": 2149,
"title": "Eos qui sit vitae?",
"slug": "7092948e-6de3-4b6e-a483-10e6f1761eac",
"question": "Cupiditate occaecati voluptatum. Et optio sit. Minima ex vero. Cumque similique dolorem. Non perspiciatis velit. Non in incidunt. Similique maxime iure. Sed ut quis. Quasi nostrum distinctio. Molestias fuga commodi. Ut quasi id. Voluptate enim deserunt. Omnis dolor aut. Commodi inventore ut. Dolorum corrupti saepe. Libero rerum ducimus. Mollitia odit optio. Architecto nisi velit. Officiis similique maxime. Enim ut impedit.",
"status": "answered",
"created_at": "2024-08-23T17:24:19.062+07:00",
"updated_at": "2024-08-23T17:24:19.069+07:00",
"account_id": 14,
"seens_count": 1,
"answered_by": [
"dr Yana Mulyana S.Kom"
],
"answers": [
{
"id": 1476,
"answer": "Voluptatem dolor ea. Quo dolor voluptas. Cum natus aliquid. Dolor sed voluptatem. Sit quia velit. Sunt molestiae iure. Itaque sed ratione. Quia laboriosam temporibus. Et perferendis inventore. Ut veniam dolores. Quos perspiciatis a. Incidunt velit vero. Veniam accusantium voluptas. Sunt molestias similique. Exercitationem eius enim. Cumque quibusdam et. Sed quas quia. Et ut est. Id sunt sit. Nemo voluptas id. Iure corrupti non. Natus nihil voluptatem. Hic accusamus est. Aliquam eveniet corrupti. Quaerat est atque. Velit aut labore. Excepturi rerum tempora. Dolorem cupiditate ut. Quis voluptate animi. A eaque esse.",
"answered_by_type": "Hospital",
"answered_by_id": 5,
"doctor_id": 160,
"answered_at": "2024-08-23T17:24:19.066+07:00"
}
]
}
}
}
```
content:
application/json:
schema:
type: object
properties:
success:
type: boolean
code:
type: integer
status:
type: string
message:
type: string
data:
type: object
properties:
id:
type: string
type:
type: string
attributes:
type: object
properties:
id:
type: integer
title:
type: string
slug:
type: string
question:
type: string
status:
type: string
created_at:
type: string
updated_at:
type: string
account_id:
type: integer
seens_count:
type: integer
answered_by:
type: array
items:
type: string
answers:
type: array
items:
type: object
properties:
id:
type: integer
answer:
type: string
answered_by_type:
type: string
answered_by_id:
type: integer
doctor_id:
type: integer
answered_at:
type: string
x-examples:
Example 1:
success: true
code: 200
status: OK
message: OK
data:
id: '2149'
type: ask_doctor
attributes:
id: 2149
title: Eos qui sit vitae?
slug: 7092948e-6de3-4b6e-a483-10e6f1761eac
question: Cupiditate occaecati voluptatum. Et optio sit. Minima ex vero. Cumque similique dolorem. Non perspiciatis velit. Non in incidunt. Similique maxime iure. Sed ut quis. Quasi nostrum distinctio. Molestias fuga commodi. Ut quasi id. Voluptate enim deserunt. Omnis dolor aut. Commodi inventore ut. Dolorum corrupti saepe. Libero rerum ducimus. Mollitia odit optio. Architecto nisi velit. Officiis similique maxime. Enim ut impedit.
status: answered
created_at: '2024-08-23T17:24:19.062+07:00'
updated_at: '2024-08-23T17:24:19.069+07:00'
account_id: 14
seens_count: 1
answered_by:
- dr Yana Mulyana S.Kom
answers:
- id: 1476
answer: Voluptatem dolor ea. Quo dolor voluptas. Cum natus aliquid. Dolor sed voluptatem. Sit quia velit. Sunt molestiae iure. Itaque sed ratione. Quia laboriosam temporibus. Et perferendis inventore. Ut veniam dolores. Quos perspiciatis a. Incidunt velit vero. Veniam accusantium voluptas. Sunt molestias similique. Exercitationem eius enim. Cumque quibusdam et. Sed quas quia. Et ut est. Id sunt sit. Nemo voluptas id. Iure corrupti non. Natus nihil voluptatem. Hic accusamus est. Aliquam eveniet corrupti. Quaerat est atque. Velit aut labore. Excepturi rerum tempora. Dolorem cupiditate ut. Quis voluptate animi. A eaque esse.
answered_by_type: Hospital
answered_by_id: 5
doctor_id: 160
answered_at: '2024-08-23T17:24:19.066+07:00'
examples:
show:
value:
success: true
code: 200
status: OK
message: OK
data:
id: '2149'
type: ask_doctor
attributes:
id: 2149
title: Eos qui sit vitae?
slug: 7092948e-6de3-4b6e-a483-10e6f1761eac
question: Cupiditate occaecati voluptatum. Et optio sit. Minima ex vero. Cumque similique dolorem. Non perspiciatis velit. Non in incidunt. Similique maxime iure. Sed ut quis. Quasi nostrum distinctio. Molestias fuga commodi. Ut quasi id. Voluptate enim deserunt. Omnis dolor aut. Commodi inventore ut. Dolorum corrupti saepe. Libero rerum ducimus. Mollitia odit optio. Architecto nisi velit. Officiis similique maxime. Enim ut impedit.
status: answered
created_at: '2024-08-23T17:24:19.062+07:00'
updated_at: '2024-08-23T17:24:19.069+07:00'
account_id: 14
seens_count: 1
answered_by:
- dr Yana Mulyana S.Kom
answers:
- id: 1476
answer: Voluptatem dolor ea. Quo dolor voluptas. Cum natus aliquid. Dolor sed voluptatem. Sit quia velit. Sunt molestiae iure. Itaque sed ratione. Quia laboriosam temporibus. Et perferendis inventore. Ut veniam dolores. Quos perspiciatis a. Incidunt velit vero. Veniam accusantium voluptas. Sunt molestias similique. Exercitationem eius enim. Cumque quibusdam et. Sed quas quia. Et ut est. Id sunt sit. Nemo voluptas id. Iure corrupti non. Natus nihil voluptatem. Hic accusamus est. Aliquam eveniet corrupti. Quaerat est atque. Velit aut labore. Excepturi rerum tempora. Dolorem cupiditate ut. Quis voluptate animi. A eaque esse.
answered_by_type: Hospital
answered_by_id: 5
doctor_id: 160
answered_at: '2024-08-23T17:24:19.066+07:00'
profile:
description: ''
content:
application/json:
schema:
type: object
properties:
success:
type: boolean
code:
type: integer
status:
type: string
message:
type: string
data:
type: object
properties:
id:
type: string
type:
type: string
attributes:
type: object
properties:
id:
type: integer
full_name:
type: string
first_name:
type: string
last_name:
type: string
avatar:
type: object
properties:
url:
type: string
thumb:
type: object
properties:
url:
type: string
blood_type:
type: string
nik:
type: 'null'
birth_place:
type: string
date_of_birth:
type: string
email:
type: string
marital_status:
type: string
mobile_phone:
type: string
gender:
type: string
otp_sent_at:
type: 'null'
phone_verified:
type: boolean
title:
type: 'null'
nationality:
type: string
metadata:
type: 'null'
primary_profile:
type: boolean
simrs_tmp_data:
type: 'null'
bpjs_number:
type: 'null'
medical_record_number:
type: string
father_name:
type: string
mother_name:
type: string
simrs_registered?:
type: boolean
profile_complete?:
type: boolean
incomplete_onboarding_steps:
type: array
items:
type: string
onboarding_steps:
type: array
items:
type: string
insurance_count:
type: integer
x-examples:
Example 1:
success: true
code: 200
status: OK
message: OK
data:
id: '14'
type: profile
attributes:
id: 14
full_name: Muhammad Yana Mulyana
first_name: Muhammad
last_name: Yana Mulyana
avatar:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/profile/avatar/14/unnamed.jpg'
thumb:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/profile/avatar/14/thumb_unnamed.jpg'
blood_type: B
nik: null
birth_place: Pandeglang
date_of_birth: '1993-09-21'
email: muhammadyanaa@gmail.com
marital_status: single
mobile_phone: '6281221344848'
gender: Male
otp_sent_at: null
phone_verified: true
title: null
nationality: ID
metadata: null
primary_profile: true
simrs_tmp_data: null
bpjs_number: null
medical_record_number: '1223121231'
father_name: Ahmad
mother_name: Maryam
simrs_registered?: true
profile_complete?: false
incomplete_onboarding_steps:
- simrs_tmp_data?
onboarding_steps:
- date_of_birth?
- full_name?
- simrs_tmp_data?
- mobile_phone?
insurance_count: 0
examples:
show:
value:
success: true
code: 200
status: OK
message: OK
data:
id: '14'
type: profile
attributes:
id: 14
full_name: Muhammad Yana Mulyana
first_name: Muhammad
last_name: Yana Mulyana
avatar:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/profile/avatar/14/unnamed.jpg'
thumb:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/profile/avatar/14/thumb_unnamed.jpg'
blood_type: B
nik: null
birth_place: Pandeglang
date_of_birth: '1993-09-21'
email: muhammadyanaa@gmail.com
marital_status: single
mobile_phone: '6281221344848'
gender: Male
otp_sent_at: null
phone_verified: true
title: null
nationality: ID
metadata: null
primary_profile: true
simrs_tmp_data: null
bpjs_number: null
medical_record_number: '1223121231'
father_name: Ahmad
mother_name: Maryam
simrs_registered?: true
profile_complete?: false
incomplete_onboarding_steps:
- simrs_tmp_data?
onboarding_steps:
- date_of_birth?
- full_name?
- simrs_tmp_data?
- mobile_phone?
insurance_count: 0
succees-doctors-feedback:
description: |-
```json
{
"success": true,
"code": 200,
"status": "OK",
"message": "Feedback submitted successfully",
"data": {
"id": "5",
"type": "feedback",
"attributes": {
"id": 5,
"slug": "a448a1e9-4c23-4a33-835c-e572ab6fe93e",
"feedback": "Assertively brand backend outsourcing without covalent systems. Authoritatively productivate bleeding-edge technology for value-added deliverables. Energistically recaptiualize multifunctional ideas via turnkey.",
"visibility": false,
"created_at": "2025-01-25T15:43:16.686+07:00",
"updated_at": "2025-01-25T15:43:16.686+07:00"
}
}
}
```
content:
application/json:
schema:
type: object
properties:
success:
type: boolean
code:
type: integer
status:
type: string
message:
type: string
data:
type: object
properties:
id:
type: string
type:
type: string
attributes:
type: object
properties:
id:
type: integer
slug:
type: string
feedback:
type: string
visibility:
type: boolean
created_at:
type: string
updated_at:
type: string
x-examples:
Example 1:
success: true
code: 200
status: OK
message: Feedback submitted successfully
data:
id: '5'
type: feedback
attributes:
id: 5
slug: a448a1e9-4c23-4a33-835c-e572ab6fe93e
feedback: Assertively brand backend outsourcing without covalent systems. Authoritatively productivate bleeding-edge technology for value-added deliverables. Energistically recaptiualize multifunctional ideas via turnkey.
visibility: false
created_at: '2025-01-25T15:43:16.686+07:00'
updated_at: '2025-01-25T15:43:16.686+07:00'
examples:
show:
value:
success: true
code: 200
status: OK
message: Feedback submitted successfully
data:
id: '5'
type: feedback
attributes:
id: 5
slug: a448a1e9-4c23-4a33-835c-e572ab6fe93e
feedback: Assertively brand backend outsourcing without covalent systems. Authoritatively productivate bleeding-edge technology for value-added deliverables. Energistically recaptiualize multifunctional ideas via turnkey.
visibility: false
created_at: '2025-01-25T15:43:16.686+07:00'
updated_at: '2025-01-25T15:43:16.686+07:00'
doctors-feedback:
description: ''
upcoming-events:
description: |-
```json
{
"success": true,
"code": 200,
"status": "OK",
"message": "Events retrieved successfully",
"data": {
"event_types": [
{
"appointments": [
{
"id": 57,
"date": "2025-08-29T19:58:29.986+07:00",
"email": "muhammadyanaa@gmail.com",
"dob": "1993-09-21",
"name": "Muhammad Yana Mulyana",
"profile_gender": "Male",
"profile_nik": null,
"mobile_phone": "6281221344848",
"is_bpjs": false,
"old_patient": false,
"slug": "eb07bd0b-e60d-44ec-af7a-ea8f0b90513b",
"time": "13:00 - 14:00",
"created_at": "2022-06-03T23:38:11.666+07:00",
"account_id": 14,
"profile_id": 14,
"doctor_id": 179,
"hospital_id": 31,
"queue_number": null,
"appointment_time": "Monday - 13:00 - 14:00",
"notes": null,
"schedule_type": "executive",
"hospital_name": "Hermina Padang",
"hospital_logo": {
"url": "https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/hospital/logo/31/RS-Hermina-Padang-1024x712.jpg",
"thumb": {
"url": "https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/hospital/logo/31/thumb_RS-Hermina-Padang-1024x712.jpg"
}
},
"doctor_name": "malika",
"doctor_avatar": {
"url": "https://hermina.s3.ap-southeast-1.amazonaws.com/assets/images/user.png",
"thumb": {
"url": "https://hermina.s3.ap-southeast-1.amazonaws.com/assets/images/user.png"
}
},
"doctor_speciality_name": "AKUPUNTUR (EXC)",
"payment_method": "Insurance",
"insurance_status": null,
"old_patient?": false,
"estimation_time": null,
"metadata": {
"simrs_data": {
"MRN": "1350016825",
"noted": "Silahkan Lengkapi Informasi Penjaminan Anda, Hubungi Bagian Pendaftaran",
"branch": 104,
"eventid": 13931016,
"queueno": 2,
"visitid": "18764958",
"unit_name": "Spesialis Kedokteran Fisik & Rehabilitasi Medik Eksekutif",
"doctor_code": "104201015SP",
"doctor_name": "Tirza Z Tamin, Sp.KFR",
"third_party": "ASURANSI ASTRA BUANA, PT",
"encounter_id": "10361255",
"patient_name": "MUHAMMAD GHIBRAN HAFIT",
"estimasi_time": "19:06-19:11",
"department_name": "Kedokteran Fisik dan Rehabilitasi Medik",
"date_appointment": "Oct 27, 2023 7:06:00 PM"
}
},
"status": "checked_in",
"medical_record_number": null,
"temporary_mrn?": false,
"appointment_method": "internal",
"profile_insurance": {
"id": 13,
"policy_number": "2131233123123",
"policy_holder": "Yana",
"expired_date": "2025-09-04",
"policy_card_back": {
"url": "https://dk4fkkwa4o9l0.cloudfront.net/assets/images/umbrella-insurance.png",
"thumb": {
"url": "https://dk4fkkwa4o9l0.cloudfront.net/assets/images/umbrella-insurance.png"
}
},
"policy_card_front": {
"url": "https://dk4fkkwa4o9l0.cloudfront.net/assets/images/umbrella-insurance.png",
"thumb": {
"url": "https://dk4fkkwa4o9l0.cloudfront.net/assets/images/umbrella-insurance.png"
}
},
"created_at": "2024-09-04T12:43:02.253+07:00",
"status": "pending",
"rejection_reason": null,
"updated_at": "2024-09-04T12:43:02.253+07:00",
"insurance_id": 84,
"insurance": {
"id": 84,
"name": "Parolamas\n",
"alias": null,
"description": null,
"logo": {
"url": "https://dk4fkkwa4o9l0.cloudfront.net/assets/images/umbrella-insurance.png",
"thumb": {
"url": "https://dk4fkkwa4o9l0.cloudfront.net/assets/images/umbrella-insurance.png"
}
},
"slug": "parolamas",
"created_at": "2020-02-20T09:33:19.353+07:00",
"updated_at": "2020-02-20T09:33:19.353+07:00"
}
},
"type": "appointments",
"event_date": "2025-08-29T19:58:29.986+07:00"
}
]
}
]
},
"meta": {
"total_count": 1,
"event_type_counts": {
"appointments": 1
},
"filters_applied": {}
}
}
```
content:
application/json:
schema:
type: object
properties:
success:
type: boolean
code:
type: integer
status:
type: string
message:
type: string
data:
type: object
properties:
event_types:
type: array
items:
type: object
properties:
appointments:
type: array
items:
type: object
properties:
id:
type: integer
date:
type: string
email:
type: string
dob:
type: string
name:
type: string
profile_gender:
type: string
profile_nik:
type: 'null'
mobile_phone:
type: string
is_bpjs:
type: boolean
old_patient:
type: boolean
slug:
type: string
time:
type: string
created_at:
type: string
account_id:
type: integer
profile_id:
type: integer
doctor_id:
type: integer
hospital_id:
type: integer
queue_number:
type: 'null'
appointment_time:
type: string
notes:
type: 'null'
schedule_type:
type: string
hospital_name:
type: string
hospital_logo:
type: object
properties:
url:
type: string
thumb:
type: object
properties:
url:
type: string
doctor_name:
type: string
doctor_avatar:
type: object
properties:
url:
type: string
thumb:
type: object
properties:
url:
type: string
doctor_speciality_name:
type: string
payment_method:
type: string
insurance_status:
type: 'null'
old_patient?:
type: boolean
estimation_time:
type: 'null'
metadata:
type: object
properties:
simrs_data:
type: object
properties:
MRN:
type: string
noted:
type: string
branch:
type: integer
eventid:
type: integer
queueno:
type: integer
visitid:
type: string
unit_name:
type: string
doctor_code:
type: string
doctor_name:
type: string
third_party:
type: string
encounter_id:
type: string
patient_name:
type: string
estimasi_time:
type: string
department_name:
type: string
date_appointment:
type: string
status:
type: string
medical_record_number:
type: 'null'
temporary_mrn?:
type: boolean
appointment_method:
type: string
profile_insurance:
type: object
properties:
id:
type: integer
policy_number:
type: string
policy_holder:
type: string
expired_date:
type: string
policy_card_back:
type: object
properties:
url:
type: string
thumb:
type: object
properties:
url:
type: string
policy_card_front:
type: object
properties:
url:
type: string
thumb:
type: object
properties:
url:
type: string
created_at:
type: string
status:
type: string
rejection_reason:
type: 'null'
updated_at:
type: string
insurance_id:
type: integer
insurance:
type: object
properties:
id:
type: integer
name:
type: string
alias:
type: 'null'
description:
type: 'null'
logo:
type: object
properties:
url:
type: string
thumb:
type: object
properties:
url:
type: string
slug:
type: string
created_at:
type: string
updated_at:
type: string
type:
type: string
event_date:
type: string
meta:
type: object
properties:
total_count:
type: integer
event_type_counts:
type: object
properties:
appointments:
type: integer
filters_applied:
type: object
properties: {}
x-examples:
Example 1:
success: true
code: 200
status: OK
message: Events retrieved successfully
data:
event_types:
- appointments:
- id: 57
date: '2025-08-29T19:58:29.986+07:00'
email: muhammadyanaa@gmail.com
dob: '1993-09-21'
name: Muhammad Yana Mulyana
profile_gender: Male
profile_nik: null
mobile_phone: '6281221344848'
is_bpjs: false
old_patient: false
slug: eb07bd0b-e60d-44ec-af7a-ea8f0b90513b
time: '13:00 - 14:00'
created_at: '2022-06-03T23:38:11.666+07:00'
account_id: 14
profile_id: 14
doctor_id: 179
hospital_id: 31
queue_number: null
appointment_time: 'Monday - 13:00 - 14:00'
notes: null
schedule_type: executive
hospital_name: Hermina Padang
hospital_logo:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/hospital/logo/31/RS-Hermina-Padang-1024x712.jpg'
thumb:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/hospital/logo/31/thumb_RS-Hermina-Padang-1024x712.jpg'
doctor_name: malika
doctor_avatar:
url: 'https://hermina.s3.ap-southeast-1.amazonaws.com/assets/images/user.png'
thumb:
url: 'https://hermina.s3.ap-southeast-1.amazonaws.com/assets/images/user.png'
doctor_speciality_name: AKUPUNTUR (EXC)
payment_method: Insurance
insurance_status: null
old_patient?: false
estimation_time: null
metadata:
simrs_data:
MRN: '1350016825'
noted: 'Silahkan Lengkapi Informasi Penjaminan Anda, Hubungi Bagian Pendaftaran'
branch: 104
eventid: 13931016
queueno: 2
visitid: '18764958'
unit_name: Spesialis Kedokteran Fisik & Rehabilitasi Medik Eksekutif
doctor_code: 104201015SP
doctor_name: 'Tirza Z Tamin, Sp.KFR'
third_party: 'ASURANSI ASTRA BUANA, PT'
encounter_id: '10361255'
patient_name: MUHAMMAD GHIBRAN HAFIT
estimasi_time: '19:06-19:11'
department_name: Kedokteran Fisik dan Rehabilitasi Medik
date_appointment: 'Oct 27, 2023 7:06:00 PM'
status: checked_in
medical_record_number: null
temporary_mrn?: false
appointment_method: internal
profile_insurance:
id: 13
policy_number: '2131233123123'
policy_holder: Yana
expired_date: '2025-09-04'
policy_card_back:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/assets/images/umbrella-insurance.png'
thumb:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/assets/images/umbrella-insurance.png'
policy_card_front:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/assets/images/umbrella-insurance.png'
thumb:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/assets/images/umbrella-insurance.png'
created_at: '2024-09-04T12:43:02.253+07:00'
status: pending
rejection_reason: null
updated_at: '2024-09-04T12:43:02.253+07:00'
insurance_id: 84
insurance:
id: 84
name: |
Parolamas
alias: null
description: null
logo:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/assets/images/umbrella-insurance.png'
thumb:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/assets/images/umbrella-insurance.png'
slug: parolamas
created_at: '2020-02-20T09:33:19.353+07:00'
updated_at: '2020-02-20T09:33:19.353+07:00'
type: appointments
event_date: '2025-08-29T19:58:29.986+07:00'
meta:
total_count: 1
event_type_counts:
appointments: 1
filters_applied: {}
examples:
Example 1:
value:
success: true
code: 200
status: OK
message: Events retrieved successfully
data:
event_types:
- appointments:
- id: 57
date: '2025-08-29T19:58:29.986+07:00'
email: muhammadyanaa@gmail.com
dob: '1993-09-21'
name: Muhammad Yana Mulyana
profile_gender: Male
profile_nik: null
mobile_phone: '6281221344848'
is_bpjs: false
old_patient: false
slug: eb07bd0b-e60d-44ec-af7a-ea8f0b90513b
time: '13:00 - 14:00'
created_at: '2022-06-03T23:38:11.666+07:00'
account_id: 14
profile_id: 14
doctor_id: 179
hospital_id: 31
queue_number: null
appointment_time: 'Monday - 13:00 - 14:00'
notes: null
schedule_type: executive
hospital_name: Hermina Padang
hospital_logo:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/hospital/logo/31/RS-Hermina-Padang-1024x712.jpg'
thumb:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/development/uploads/hospital/logo/31/thumb_RS-Hermina-Padang-1024x712.jpg'
doctor_name: malika
doctor_avatar:
url: 'https://hermina.s3.ap-southeast-1.amazonaws.com/assets/images/user.png'
thumb:
url: 'https://hermina.s3.ap-southeast-1.amazonaws.com/assets/images/user.png'
doctor_speciality_name: AKUPUNTUR (EXC)
payment_method: Insurance
insurance_status: null
old_patient?: false
estimation_time: null
metadata:
simrs_data:
MRN: '1350016825'
noted: 'Silahkan Lengkapi Informasi Penjaminan Anda, Hubungi Bagian Pendaftaran'
branch: 104
eventid: 13931016
queueno: 2
visitid: '18764958'
unit_name: Spesialis Kedokteran Fisik & Rehabilitasi Medik Eksekutif
doctor_code: 104201015SP
doctor_name: 'Tirza Z Tamin, Sp.KFR'
third_party: 'ASURANSI ASTRA BUANA, PT'
encounter_id: '10361255'
patient_name: MUHAMMAD GHIBRAN HAFIT
estimasi_time: '19:06-19:11'
department_name: Kedokteran Fisik dan Rehabilitasi Medik
date_appointment: 'Oct 27, 2023 7:06:00 PM'
status: checked_in
medical_record_number: null
temporary_mrn?: false
appointment_method: internal
profile_insurance:
id: 13
policy_number: '2131233123123'
policy_holder: Yana
expired_date: '2025-09-04'
policy_card_back:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/assets/images/umbrella-insurance.png'
thumb:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/assets/images/umbrella-insurance.png'
policy_card_front:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/assets/images/umbrella-insurance.png'
thumb:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/assets/images/umbrella-insurance.png'
created_at: '2024-09-04T12:43:02.253+07:00'
status: pending
rejection_reason: null
updated_at: '2024-09-04T12:43:02.253+07:00'
insurance_id: 84
insurance:
id: 84
name: |
Parolamas
alias: null
description: null
logo:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/assets/images/umbrella-insurance.png'
thumb:
url: 'https://dk4fkkwa4o9l0.cloudfront.net/assets/images/umbrella-insurance.png'
slug: parolamas
created_at: '2020-02-20T09:33:19.353+07:00'
updated_at: '2020-02-20T09:33:19.353+07:00'
type: appointments
event_date: '2025-08-29T19:58:29.986+07:00'
meta:
total_count: 1
event_type_counts:
appointments: 1
filters_applied: {}
unauthorized:
description: |-
```json
{
"success": false,
"message": "You need to sign in or sign up before continuing.",
"code": 401
}
```
content:
application/json:
schema:
type: object
properties:
success:
type: boolean
message:
type: string
code:
type: integer
x-examples:
Example 1:
success: false
message: You need to sign in or sign up before continuing.
code: 401
examples:
Example 1:
value:
success: false
message: You need to sign in or sign up before continuing.
code: 401
ehc-participant-not-found:
description: |-
```json
{
"success": false,
"code": 403,
"status": "Forbidden",
"message": "User is not eligible to see this service order"
}
```
content:
application/json:
schema:
type: object
properties:
success:
type: boolean
code:
type: integer
status:
type: string
message:
type: string
x-examples:
Example 1:
success: false
code: 403
status: Forbidden
message: No valid enrollment found for the provided credentials
examples:
Example 1:
value:
success: false
code: 403
status: Forbidden
message: No valid enrollment found for the provided credentials
ehc-user-eligible:
description: |-
```json
{
"success": true,
"code": 200,
"status": "OK",
"message": "Success get service orders",
"data": {
"id": "1",
"type": "service_order",
"attributes": [
{
"id": 1,
"company_id": 2,
"order_name": "Batch 01",
"start_date": "2025-11-21 08:00:00",
"end_date": "2025-11-27 17:00:00",
"status": "in_progress",
"participants_count": 170,
"created_at": "2025-11-20 10:00:00",
"updated_at": "2025-11-20 10:00:00",
"service_package": {
"id": 5,
"slug": "samudera-vessel-medical-check-up",
"name": "Vessel Medical Check-Up",
"title": "Vessel Medical Check-Up",
"desc": "<p>Ini adalah:<br/>Vessel Medical Check-Up</p>",
"created_at": "2025-11-15 10:00:00",
"updated_at": "2025-11-15 10:00:00"
}
}
]
}
}
```
content:
application/json:
schema:
type: object
properties:
success:
type: boolean
code:
type: integer
status:
type: string
message:
type: string
data:
type: object
properties:
id:
type: string
type:
type: string
attributes:
type: array
items:
type: object
properties:
id:
type: integer
company_id:
type: integer
order_name:
type: string
start_date:
type: string
end_date:
type: string
status:
type: string
participants_count:
type: integer
created_at:
type: string
updated_at:
type: string
service_package:
type: object
properties:
id:
type: integer
slug:
type: string
name:
type: string
title:
type: string
desc:
type: string
created_at:
type: string
updated_at:
type: string
x-examples:
Example 1:
success: true
code: 200
status: OK
message: Success get service orders
data:
id: '1'
type: service_order
attributes:
- id: 1
company_id: 2
order_name: Batch 01
start_date: '2025-11-21 08:00:00'
end_date: '2025-11-27 17:00:00'
status: in_progress
participants_count: 170
created_at: '2025-11-20 10:00:00'
updated_at: '2025-11-20 10:00:00'
service_package:
id: 5
slug: samudera-vessel-medical-check-up
name: Vessel Medical Check-Up
title: Vessel Medical Check-Up
desc: '<p>Ini adalah:<br/>Vessel Medical Check-Up</p>'
created_at: '2025-11-15 10:00:00'
updated_at: '2025-11-15 10:00:00'
examples:
Example 1:
value:
success: true
code: 200
status: OK
message: Success get service orders
data:
id: '1'
type: service_order
attributes:
- id: 1
company_id: 2
order_name: Batch 01
start_date: '2025-11-21 08:00:00'
end_date: '2025-11-27 17:00:00'
status: in_progress
participants_count: 170
created_at: '2025-11-20 10:00:00'
updated_at: '2025-11-20 10:00:00'
service_package:
id: 5
slug: samudera-vessel-medical-check-up
name: Vessel Medical Check-Up
title: Vessel Medical Check-Up
desc: '<p>Ini adalah:<br/>Vessel Medical Check-Up</p>'
created_at: '2025-11-15 10:00:00'
updated_at: '2025-11-15 10:00:00'
ehc-profile-notfound:
description: |-
```json
{
"success": false,
"code": 404,
"status": "Not Found",
"message": "Service order is not found"
}
```
content:
application/json:
schema:
type: object
properties:
success:
type: boolean
code:
type: integer
status:
type: string
message:
type: string
x-examples:
Example 1:
success: false
code: 404
status: Not Found
message: Profile does not belong to the current account
examples:
Example 1:
value:
success: false
code: 404
status: Not Found
message: Profile does not belong to the current account
requestBodies:
customer-feedback-params:
content:
application/json:
schema:
type: object
x-examples:
Example 1:
hospital_id: 1
mobile_phone: '085714757247'
visit_date: 20-01-2024
message: 'Mohon diperbaikin pelayanannya, pengalaman menggunakan seringnya sih pribadi dan asuransi dan baru sekali dengan BPJS. Sungguh menyedihkan pelayanan BPJS nya sangat tidak direkomendasikan. Mau pelayanan nyaman dan ramah ? jangan harap ramah tamah kesini pake BPJS. Mulai dari dokter, beberapa suster, satpam dan pelayanan administrasi sama sekali tidak ramah. Yth BPJS Kesehatan tolonglah dievaluasi & diperbaiki kasus seperti ini agar setidaknya fasilitas setara dengan asuransi swasta. Slogannya setara tapi aktual tidak setara. Sifat aslinya keluar jika bukan pribadi. Kalau pribadi ramah sekali dan sopan. Kalau BPJS boro boro'
service_departemen: 'suster,poli,satpam'
patient_type: non_jkn
properties:
hospital_id:
type: integer
mobile_phone:
type: string
visit_date:
type: string
message:
type: string
service_departement:
type: string
x-stoplight:
id: pq25zhb8zgz5i
patient_type:
type: string
examples:
params:
value:
hospital_id: 1
mobile_phone: '085714757247'
visit_date: 20-01-2024
message: 'Mohon diperbaikin pelayanannya, pengalaman menggunakan seringnya sih pribadi dan asuransi dan baru sekali dengan BPJS. Sungguh menyedihkan pelayanan BPJS nya sangat tidak direkomendasikan. Mau pelayanan nyaman dan ramah ? jangan harap ramah tamah kesini pake BPJS. Mulai dari dokter, beberapa suster, satpam dan pelayanan administrasi sama sekali tidak ramah. Yth BPJS Kesehatan tolonglah dievaluasi & diperbaiki kasus seperti ini agar setidaknya fasilitas setara dengan asuransi swasta. Slogannya setara tapi aktual tidak setara. Sifat aslinya keluar jika bukan pribadi. Kalau pribadi ramah sekali dan sopan. Kalau BPJS boro boro'
service_departement: 'suster,poli,satpam'
patient_type: non_jkn
description: |-
patient_type between `jkn` or `non_jkn`
service_departemen separated by comma
ask-doctor-params:
content:
application/json:
schema:
type: object
x-examples:
Example 1:
title: Cara mengetahui gula dara
question: Continually cultivate cutting-edge information and resource maximizing results. Interactively harness process-centric innovation vis-a-vis standardized interfaces. Seamlessly evolve fully researched opportunities vis-a-vis revolutionary schemas. Appropriately generate economically.
required:
- question
properties:
question:
type: string
examples:
params:
value:
question: Continually cultivate cutting-edge information and resource maximizing results. Interactively harness process-centric innovation vis-a-vis standardized interfaces. Seamlessly evolve fully researched opportunities vis-a-vis revolutionary schemas. Appropriately generate economically.
appointment:
content:
application/json:
schema:
type: object
x-examples:
Example 1:
profile_id: 1
doctor_id: 1
schedule_id: 1
hospital_id: 1
platform: ios
date: '2025-05-15'
time: '19:00-21:00'
schedule_type: executive
guarantee: LIPPOINSURANCE
insurance_number: '1234567890'
required:
- profile_id
- doctor_id
- schedule_id
- hospital_id
- platform
- time
properties:
profile_id:
type: integer
doctor_id:
type: integer
schedule_id:
type: integer
hospital_id:
type: integer
platform:
type: string
date:
type: string
time:
type: string
schedule_type:
type: string
guarantee:
type: string
insurance_number:
type: string
examples:
app:
value:
profile_id: 1
doctor_id: 1
schedule_id: 1
hospital_id: 1
platform: ios
date: '2025-05-15'
time: '19:00-21:00'
schedule_type: executive
guarantee: LIPPOINSURANCE
insurance_number: '1234567890'
address:
content:
application/json:
schema:
type: object
properties:
pin_location:
type: string
address:
type: string
label:
type: string
latitude:
type: number
longitude:
type: number
primary:
type: integer
contact_name:
type: string
mobile_phone:
type: string
city:
type: string
district:
type: string
province:
type: string
sub_district:
type: string
zip_code:
type: string
x-examples:
Example 1:
pin_location: Jl. Tubagus Ismail VIII No.11 A
address: 'Jl. Tubagus Ismail VIII No.11 A, Sekeloa, Kecamatan Coblong, Kota Bandung, Jawa Barat 40134, Indonesia'
label: Home
latitude: -6.884172854075151
longitude: 107.62091653032033
primary: 1
contact_name: Muhammad Yana Mulyana
mobile_phone: '08571251757123'
city: Bandung
district: Coblong
province: West Java
sub_district: Sekeloa
zip_code: '40134'
examples:
Example 1:
value:
pin_location: Jl. Tubagus Ismail VIII No.11 A
address: 'Jl. Tubagus Ismail VIII No.11 A, Sekeloa, Kecamatan Coblong, Kota Bandung, Jawa Barat 40134, Indonesia'
label: Home
latitude: -6.884172854075151
longitude: 107.62091653032033
primary: 1
contact_name: Muhammad Yana Mulyana
mobile_phone: '08571251757123'
city: Bandung
district: Coblong
province: West Java
sub_district: Sekeloa
zip_code: '40134'
description: |-
```json
{
"pin_location": "Jl. Tubagus Ismail VIII No.11 A",
"address": "Jl. Tubagus Ismail VIII No.11 A, Sekeloa, Kecamatan Coblong, Kota Bandung, Jawa Barat 40134, Indonesia",
"label": "Home",
"latitude": -6.884172854075151,
"longitude": 107.62091653032033,
"primary": 1,
"contact_name": "Muhammad Yana Mulyana",
"mobile_phone": "08571251757123",
"city": "Bandung",
"district": "Coblong",
"province": "West Java",
"sub_district": "Sekeloa",
"zip_code": "40134"
}
```
update-profile-params:
content:
application/json:
schema:
type: object
properties:
mobile_phone:
type: string
email:
type: string
first_name:
type: string
last_name:
type: string
blood_type:
type: string
bpjs_number:
type: string
address:
type: string
birth_place:
type: string
gender:
type: string
province_code:
type: string
district_code:
type: string
sub_district_code:
type: string
village_code:
type: string
province_name:
type: string
district_name:
type: string
sub_district_name:
type: string
village_name:
type: string
rt:
type: string
rw:
type: string
religion:
type: string
marital_status:
type: string
residence_status:
type: 'null'
education:
type: string
occupation:
type: string
prefix:
type: string
x-examples:
Example 1:
mobile_phone: '085714757241'
email: hi@muhammadyana.me
first_name: Abu
last_name: Ubaidah
blood_type: B
bpjs_number: '27836427842'
address: Bandung Jawa Barat Indonesia
birth_place: Bandung
gender: '1'
province_code: '655117'
district_code: '655554'
sub_district_code: '655995'
village_code: '662920'
province_name: BANTEN
district_name: MINAHASA TENGGARA
sub_district_name: GIRI MULIA
village_name: GULINGAN
rt: '01'
rw: '02'
religion: '350186'
marital_status: '350144'
residence_status: null
education: '354393'
occupation: '350148'
prefix: '655108'
examples:
Example 1:
value:
mobile_phone: '085714757241'
email: hi@muhammadyana.me
first_name: Abu
last_name: Ubaidah
blood_type: B
bpjs_number: '27836427842'
address: Bandung Jawa Barat Indonesia
birth_place: Bandung
gender: '1'
province_code: '655117'
district_code: '655554'
sub_district_code: '655995'
village_code: '662920'
province_name: BANTEN
district_name: MINAHASA TENGGARA
sub_district_name: GIRI MULIA
village_name: GULINGAN
rt: '01'
rw: '02'
religion: '350186'
marital_status: '350144'
residence_status: null
education: '354393'
occupation: '350148'
prefix: '655108'
description: |-
```json
{
"mobile_phone": "085714757241",
"email": "hi@muhammadyana.me",
"first_name": "Abu",
"last_name": "Ubaidah",
"blood_type": "B",
"bpjs_number": "27836427842",
"address": "Bandung Jawa Barat Indonesia",
"birth_place": "Bandung",
"gender": "1",
"province_code": "655117",
"district_code": "655554",
"sub_district_code": "655995",
"village_code": "662920",
"province_name": "BANTEN",
"district_name": "MINAHASA TENGGARA",
"sub_district_name": "GIRI MULIA",
"village_name": "GULINGAN",
"rt": "01",
"rw": "02",
"religion": "350186",
"marital_status": "350144",
"residence_status": null,
"education": "354393",
"occupation": "350148",
"prefix": "655108"
}
```
insurances-params:
content:
multipart/form-data:
schema:
type: object
x-examples:
Example 1:
insurance_id: 22
policy_number: '234324234'
policy_holder: Muhammad Yana Mulyana
policy_card_back: image file
policy_card_front: image file
other_insurance: 'true'
name: CAR From BCA
properties:
insurance_id:
type: integer
policy_number:
type: string
policy_holder:
type: string
policy_card_back:
type: string
policy_card_front:
type: string
other_insurance:
type: string
name:
type: string
examples:
Example 1:
value:
insurance_id: 0
policy_number: string
policy_holder: string
policy_card_back: string
policy_card_front: string
other_insurance: string
name: string
description: |-
Set `other_insurance` to `true` if the user selects an alternative insurance provider or wishes to create a new one. When `other_insurance` is set to true, omit the `insurance_id` parameter and include the name parameter with the name of the new insurance provider.
```json
{
"insurance_id": 22, # optional id other_insurance is true
"policy_number": "234324234",
"policy_holder": "Muhammad Yana Mulyana",
"policy_card_back": "image file",
"policy_card_front": "image file",
"other_insurance": "true", # optional
"name": "CAR From BCA" # optional
}
```
parameters:
uid:
name: uid
in: header
required: true
schema:
type: string
description: email or uid
client:
name: client
in: header
required: true
schema:
type: string
access-token:
name: access-token
in: header
required: true
schema:
type: string
Authorization:
name: Authorization
in: header
schema:
type: string
default: Bearer eyJhY2Nlc3MtdG9rZW4iOiJMeE56SVpxR0VuUWlFdUVFLWp6TERRIiwidG9rZW4tdHlwZSI6IkJlYXJlciIsImNsaWVudCI6Ik1wOHl3cHQ1NVRoZWpFMTRjTTRKckEiLCJleHBpcnkiOiIxNzYxOTIxMjQ5IiwidWlkIjoiMTExNjY4NzIwMDUzMDY0NjQ4OTc4In0=
description: Bearer token
required: true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment