Squashed commit of the following:
commitd2ec8c0f07Author: mario <dev.mario@sismedika@gmail.com> Date: Thu May 15 15:42:33 2025 +0700 add: db tx commit and rollback implementation commit264435f67eAuthor: mario <dev.mario@sismedika@gmail.com> Date: Thu May 15 14:34:20 2025 +0700 fix: shortlink generation logic update/create commit047ab1937aAuthor: mario <dev.mario@sismedika@gmail.com> Date: Thu May 15 11:06:04 2025 +0700 fix: if multiple studies patient, show first study by default commitc13f834b92Author: mario <dev.mario@sismedika@gmail.com> Date: Thu May 15 09:46:32 2025 +0700 add: register and login with DB query AND some struct type correction commitdd4451c2a8Author: mario <dev.mario@sismedika@gmail.com> Date: Wed May 14 10:23:33 2025 +0700 new file structure & koneksi ke DB commit8289881df3Author: mario <dev.mario@sismedika@gmail.com> Date: Tue May 13 16:49:07 2025 +0700 edit: rm debug route commitdd784da232Author: mario <dev.mario@sismedika@gmail.com> Date: Tue May 13 15:44:11 2025 +0700 add: implement shortlink commit2687a761ccAuthor: mario <dev.mario@sismedika@gmail.com> Date: Tue May 13 11:47:19 2025 +0700 add new dummy doctor user commiteb67eaca46Author: mario <dev.mario@sismedika@gmail.com> Date: Tue May 13 11:46:28 2025 +0700 add: ref_doctor studylist filter commit0d4825d152Author: mario <dev.mario@sismedika@gmail.com> Date: Tue May 13 10:07:16 2025 +0700 edit study_iuids & accNum in patient jwt to array commit2d1f135fdaAuthor: mario <dev.mario@sismedika@gmail.com> Date: Tue May 13 09:52:45 2025 +0700 patient see their multiple studies commit13bb380f51Author: mario <dev.mario@sismedika@gmail.com> Date: Fri May 9 10:13:16 2025 +0700 add: cors handler route and readme commit6c9ab574ceAuthor: mario <dev.mario@sismedika@gmail.com> Date: Mon May 5 11:50:36 2025 +0700 add: login & token validation tapi belum connect ke DB commit297c9a6a01Author: mario <dev.mario@sismedika@gmail.com> Date: Mon Apr 28 15:37:02 2025 +0700 add readme.md commit9b8e0260f3Author: mario <dev.mario@sismedika@gmail.com> Date: Mon Apr 7 15:46:07 2025 +0700 connected-to-google commitf340bc5916Author: mario <dev.mario@sismedika.com> Date: Mon Apr 7 11:14:18 2025 +0700 init
This commit is contained in:
79
test/http/dicom-proxy.http
Normal file
79
test/http/dicom-proxy.http
Normal file
@@ -0,0 +1,79 @@
|
||||
### Local OHIF Proxy Test File
|
||||
@token = eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyX2lkIjoiMSIsImVtYWlsIjoiYWRtaW5AZXhhbXBsZS5jb20iLCJyb2xlIjoiYWRtaW4iLCJ1c2VyX25hbWUiOiJBZG1pbiBVc2VyIiwidG9rZW5fdHlwZSI6ImFjY2VzcyIsImhvbWVfdXJsIjoiLyIsInN0dWR5X2xpc3QiOiJlbmFibGVkIiwiZXhwIjoxNzQ3Mzg0MDE2LCJpYXQiOjE3NDcyOTc2MTZ9.Ak1DECP1MXzQAPyU-AJM6Tsu6-sw04UtWYvY37-SaT4
|
||||
@baseUrl = http://localhost:5555
|
||||
|
||||
# @baseUrl = http://devone.aplikasi.web.id:5555
|
||||
# @baseUrl = http://152.42.173.210:5555
|
||||
|
||||
### 1. Health Check
|
||||
# Verifies that the proxy server is running
|
||||
GET {{baseUrl}}/health
|
||||
Accept: application/json
|
||||
|
||||
### 2. QIDO-RS: Search for Studies
|
||||
# Returns all studies (should return a list of DICOM studies if any exist)
|
||||
GET {{baseUrl}}/dicomWeb/studies
|
||||
Accept: application/dicom+json
|
||||
Authorization: Bearer {{token}}
|
||||
|
||||
### 3. QIDO-RS: Search for Studies with Patient Name
|
||||
# Returns studies matching patient name (replace SMITH with a name in your dataset)
|
||||
GET {{baseUrl}}/dicomWeb/studies?limit=10&offset=0&fuzzymatching=true&includefield=00081030%2C00080060%2C00080090&00080090=DR.%20HERWINDO%20RIDWAN%2C%20SP.OT
|
||||
Accept: application/dicom+json
|
||||
Authorization: Bearer {{token}}
|
||||
|
||||
### 4. QIDO-RS: Search for Studies with Date Range
|
||||
# Returns studies within a date range
|
||||
GET {{baseUrl}}/dicomWeb/studies?StudyDate=20250301-20250415
|
||||
Accept: application/dicom+json
|
||||
Authorization: Bearer {{ token }}
|
||||
|
||||
### 5. QIDO-RS: Search for Series in a Study
|
||||
# Replace STUDY_INSTANCE_UID with an actual Study UID from your data
|
||||
# (Run test #2 first and copy a StudyInstanceUID from the response)
|
||||
GET {{baseUrl}}/dicomWeb/studies/STUDY_INSTANCE_UID/series
|
||||
Accept: application/dicom+json
|
||||
|
||||
### 6. QIDO-RS: Search for Instances in a Series
|
||||
# Replace STUDY_INSTANCE_UID and SERIES_INSTANCE_UID with actual values
|
||||
GET {{baseUrl}}/dicomWeb/studies/STUDY_INSTANCE_UID/series/SERIES_INSTANCE_UID/instances
|
||||
Accept: application/dicom+json
|
||||
|
||||
### 7. WADO-RS: Retrieve Study Metadata
|
||||
# Replace STUDY_INSTANCE_UID with an actual Study UID
|
||||
GET {{baseUrl}}/dicomWeb/studies/STUDY_INSTANCE_UID/metadata
|
||||
Accept: application/dicom+json
|
||||
|
||||
### 8. WADO-RS: Retrieve Series Metadata
|
||||
# Replace STUDY_INSTANCE_UID and SERIES_INSTANCE_UID with actual values
|
||||
GET {{baseUrl}}/dicomWeb/studies/STUDY_INSTANCE_UID/series/SERIES_INSTANCE_UID/metadata
|
||||
Accept: application/dicom+json
|
||||
|
||||
### 9. WADO-RS: Retrieve Instance Metadata
|
||||
# Replace STUDY_INSTANCE_UID, SERIES_INSTANCE_UID and SOP_INSTANCE_UID with actual values
|
||||
GET {{baseUrl}}/dicomWeb/studies/1.2.826.0.1.3680043.9.7307.1.202503196393.01/series/1.2.826.0.1.3680043.2.1545.1.2.1.7.20250319.100353.734.4/metadata
|
||||
Accept: */*
|
||||
Authorization: Bearer {{token}}
|
||||
|
||||
### 10. WADO-RS: Retrieve Instance
|
||||
# Replace STUDY_INSTANCE_UID, SERIES_INSTANCE_UID and SOP_INSTANCE_UID with actual values
|
||||
GET {{baseUrl}}/dicomWeb/studies/STUDY_INSTANCE_UID/series/SERIES_INSTANCE_UID/instances/SOP_INSTANCE_UID
|
||||
Accept: application/dicom
|
||||
|
||||
### 11. WADO-RS: Retrieve Frame
|
||||
# Replace STUDY_INSTANCE_UID, SERIES_INSTANCE_UID, SOP_INSTANCE_UID with actual values
|
||||
# This retrieves frame #1 from a multiframe image
|
||||
GET {{baseUrl}}/dicomWeb/studies/1.2.826.0.1.3680043.9.7307.1.202503196393.01/series/1.2.826.0.1.3680043.2.1545.1.2.1.7.20250319.100353.734.4/instances/1.2.826.0.1.3680043.2.1545.1.2.1.7.20250319.100353.1.5/frames/1
|
||||
Accept: */*
|
||||
|
||||
### 12. WADO-RS: Retrieve Frame as JPEG
|
||||
# Replace STUDY_INSTANCE_UID, SERIES_INSTANCE_UID, SOP_INSTANCE_UID with actual values
|
||||
# This retrieves frame #1 as a rendered JPEG image
|
||||
GET {{baseUrl}}/dicomWeb/studies/1.2.826.0.1.3680043.9.7307.1.202503196393.01/series/1.2.826.0.1.3680043.2.1545.1.2.1.7.20250319.100353.734.4/instances/1.2.826.0.1.3680043.2.1545.1.2.1.7.20250319.100353.1.5/frames/1/rendered
|
||||
Accept: image/jpeg
|
||||
|
||||
|
||||
####
|
||||
GET {{baseUrl}}/dicomWeb/studies?limit=101&offset=0&fuzzymatching=true&includefield=00081030,00080060&StudyInstanceUID=1.2.826.0.1.3680043.9.7307.1.202503196393.01
|
||||
|
||||
|
||||
57
test/http/ohif-flow.http
Normal file
57
test/http/ohif-flow.http
Normal file
@@ -0,0 +1,57 @@
|
||||
@token = eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyX2lkIjoiMSIsImVtYWlsIjoiYWRtaW5AZXhhbXBsZS5jb20iLCJyb2xlIjoiYWRtaW4iLCJ1c2VyX25hbWUiOiJBZG1pbiBVc2VyIiwidG9rZW5fdHlwZSI6ImFjY2VzcyIsImhvbWVfdXJsIjoiLyIsInN0dWR5X2xpc3QiOiJlbmFibGVkIiwiZXhwIjoxNzQ3Mzg0MDE2LCJpYXQiOjE3NDcyOTc2MTZ9.Ak1DECP1MXzQAPyU-AJM6Tsu6-sw04UtWYvY37-SaT4
|
||||
@token_exp_doctor = eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyX2lkIjoiMSIsImVtYWlsIjoiYWRtaW4iLCJyb2xlIjoiZXhwZXJ0aXNlX2RvY3RvciIsInRva2VuX3R5cGUiOiJhY2Nlc3MiLCJleHAiOjE3NDY1MDQ1MTYsImlhdCI6MTc0NjQxODExNn0.vlDrns1oPFXHE5--TmWqwzvzxnfcCPcV2UW8_4GwDwE
|
||||
@baseUrl = http://localhost:5555
|
||||
|
||||
### Login Patient
|
||||
POST {{baseUrl}}/auth/login
|
||||
Content-Type: application/json
|
||||
|
||||
{
|
||||
"email": "doctor@example.com",
|
||||
"password": "password123"
|
||||
}
|
||||
|
||||
### Login Admin / Exp_doctor (ALL ACCESS)
|
||||
POST {{baseUrl}}/auth/login
|
||||
Content-Type: application/json
|
||||
|
||||
{
|
||||
"email": "admin",
|
||||
"password": "admin"
|
||||
}
|
||||
|
||||
### * === PATIENT === *
|
||||
|
||||
# Destination URL / OHIF Viewer URL: http://152.42.173.210:3000/viewer?StudyInstanceUIDs=1.2.826.0.1.3680043.9.7307.1.202503196393.01
|
||||
|
||||
### Study where StudyIUID
|
||||
GET {{baseUrl}}/dicomWeb/studies?limit=101&offset=0&fuzzymatching=true&includefield=00081030,00080060&StudyInstanceUID=1.2.826.0.1.3680043.9.7307.1.20180530066
|
||||
Authorization: Bearer {{token}}
|
||||
|
||||
### Series List
|
||||
GET {{baseUrl}}/dicomWeb/studies/1.2.826.0.1.3680043.9.7307.1.20180530066/series?includefield=00080021,00080031,0008103E,00200011
|
||||
Authorization: Bearer {{token}}
|
||||
|
||||
### Semua Study dari Patient ID
|
||||
GET {{baseUrl}}/dicomWeb/studies?00100020=MR00000359&limit=101&offset=0&fuzzymatching=true&includefield=00081030,00080060
|
||||
Authorization: Bearer {{token}}
|
||||
|
||||
### Metadata
|
||||
GET {{baseUrl}}/dicomWeb/studies/1.2.826.0.1.3680043.9.7307.1.202503196393.01/series/1.2.826.0.1.3680043.2.1545.1.2.1.7.20250319.100353.734.4/metadata
|
||||
Authorization: Bearer {{token}}
|
||||
|
||||
### Modality and Study Description untuk Study Instance UID = ...
|
||||
GET {{baseUrl}}/dicomWeb/studies?limit=101&offset=0&fuzzymatching=true&includefield=00081030,00080060&StudyInstanceUID=1.2.826.0.1.3680043.9.7307.1.202503196393.01
|
||||
Authorization: Bearer {{token}}
|
||||
|
||||
### DICOM Frames
|
||||
GET {{baseUrl}}/dicomWeb/studies/1.2.826.0.1.3680043.9.7307.1.202503196393.01/series/1.2.826.0.1.3680043.2.1545.1.2.1.7.20250319.100353.734.4/instances/1.2.826.0.1.3680043.2.1545.1.2.1.7.20250319.100353.1.5/frames/1
|
||||
Authorization: Bearer {{token}}
|
||||
|
||||
### Modality and Study Description untuk semua studies pada PatientID = ...
|
||||
GET {{baseUrl}}/dicomWeb/studies?00100020=MR00000359&limit=101&offset=0&fuzzymatching=true&includefield=00081030,00080060
|
||||
Authorization: Bearer {{token}}
|
||||
|
||||
### Accession, Deskripsi Studi, Umur, dan format nama pasien where StudyInstanceUID = ...
|
||||
GET {{baseUrl}}/dicomWeb/studies?limit=101&offset=0&fuzzymatching=false&includefield=00080050,00081030,00101010,0010004&StudyInstanceUID=1.2.826.0.1.3680043.9.7307.1.202503196393.01
|
||||
Authorization: Bearer {{token}}
|
||||
178
test/http/register-flow.http
Normal file
178
test/http/register-flow.http
Normal file
@@ -0,0 +1,178 @@
|
||||
### Register new user, patient, and doctor tests
|
||||
|
||||
# Base URL for the API
|
||||
@baseUrl = http://localhost:5555
|
||||
|
||||
|
||||
### Register an admin user
|
||||
POST {{baseUrl}}/auth/register
|
||||
Content-Type: application/json
|
||||
|
||||
{
|
||||
"email": "admin@example.com",
|
||||
"password": "password123",
|
||||
"name": "Admin User",
|
||||
"role": "admin"
|
||||
}
|
||||
|
||||
### Register a new patient with multiple studies
|
||||
POST {{baseUrl}}/auth/register
|
||||
Content-Type: application/json
|
||||
|
||||
{
|
||||
"email": "patient1@example.com",
|
||||
"password": "password123",
|
||||
"name": "DIDIT SUYATNA^R.10049.18",
|
||||
"role": "patient",
|
||||
"patient": {
|
||||
"patient_id": "00211622",
|
||||
"patient_name": "DIDIT SUYATNA^R.10049.18",
|
||||
"date_of_birth": "1980-01-01"
|
||||
},
|
||||
"studies": [
|
||||
{
|
||||
"study_instance_uid": "1.2.826.0.1.3680043.9.7307.1.20180530066",
|
||||
"accession_number": "CR.180530.066",
|
||||
"study_date": "2018-05-30",
|
||||
"study_description": "Chest X-Ray"
|
||||
}
|
||||
]
|
||||
}
|
||||
###
|
||||
POST {{baseUrl}}/auth/register
|
||||
Content-Type: application/json
|
||||
|
||||
{
|
||||
"email": "patient1@example.com",
|
||||
"password": "password123",
|
||||
"name": "DIDIT SUYATNA^R.10049.18",
|
||||
"role": "patient",
|
||||
"patient": {
|
||||
"patient_id": "00211622",
|
||||
"patient_name": "DIDIT SUYATNA^R.10049.18",
|
||||
"date_of_birth": "1980-01-01"
|
||||
},
|
||||
"studies": [
|
||||
{
|
||||
"study_instance_uid": "1.2.826.0.1.3680043.9.7307.1.20180713036",
|
||||
"accession_number": "CR.180713.036",
|
||||
"study_date": "2018-07-13",
|
||||
"study_description": "Follow-up X-Ray"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
### Register another patient with one study
|
||||
POST {{baseUrl}}/auth/register
|
||||
Content-Type: application/json
|
||||
|
||||
{
|
||||
"email": "patient2@example.com",
|
||||
"password": "password123",
|
||||
"name": "Bobon Santoso",
|
||||
"role": "patient",
|
||||
"patient": {
|
||||
"patient_id": "MR00000359",
|
||||
"patient_name": "Bobon Santoso",
|
||||
"date_of_birth": "1985-01-01"
|
||||
},
|
||||
"studies": [
|
||||
{
|
||||
"study_instance_uid": "1.2.826.0.1.3680043.9.7307.1.202503196393.01",
|
||||
"accession_number": "CR.250319.6393.01",
|
||||
"study_date": "2025-03-19",
|
||||
"study_description": "MRI Scan"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
### Register another referring doctor
|
||||
POST {{baseUrl}}/auth/register
|
||||
Content-Type: application/json
|
||||
|
||||
{
|
||||
"email": "doctor@example.com",
|
||||
"password": "password123",
|
||||
"name": "DR. HERWINDO RIDWAN, SP.OT",
|
||||
"role": "ref_doctor",
|
||||
"doctor": {
|
||||
"doctor_id": "DOC002",
|
||||
"doctor_name": "DR. HERWINDO RIDWAN, SP.OT"
|
||||
}
|
||||
}
|
||||
|
||||
### Register another referring doctor
|
||||
POST {{baseUrl}}/auth/register
|
||||
Content-Type: application/json
|
||||
|
||||
{
|
||||
"email": "doctor2@example.com",
|
||||
"password": "password123",
|
||||
"name": "Referring^Physician",
|
||||
"role": "ref_doctor",
|
||||
"doctor": {
|
||||
"doctor_id": "DOC003",
|
||||
"doctor_name": "Referring^Physician"
|
||||
}
|
||||
}
|
||||
|
||||
### Register a new expertise doctor
|
||||
POST {{baseUrl}}/auth/register
|
||||
Content-Type: application/json
|
||||
|
||||
{
|
||||
"email": "expert@example.com",
|
||||
"password": "password123",
|
||||
"name": "Dr. Expertise",
|
||||
"role": "expertise_doctor",
|
||||
"doctor": {
|
||||
"doctor_id": "EX456",
|
||||
"doctor_name": "Dr. Expertise"
|
||||
}
|
||||
}
|
||||
|
||||
### Login with registered user
|
||||
POST {{baseUrl}}/auth/login
|
||||
Content-Type: application/json
|
||||
|
||||
{
|
||||
"email": "patient1@example.com",
|
||||
"password": "password123"
|
||||
}
|
||||
|
||||
### Login with admin user
|
||||
POST {{baseUrl}}/auth/login
|
||||
Content-Type: application/json
|
||||
|
||||
{
|
||||
"email": "admin@example.com",
|
||||
"password": "password123"
|
||||
}
|
||||
|
||||
### Login with patient user
|
||||
POST {{baseUrl}}/auth/login
|
||||
Content-Type: application/json
|
||||
|
||||
{
|
||||
"email": "patient2@example.com",
|
||||
"password": "password123"
|
||||
}
|
||||
|
||||
### Login with doctor user
|
||||
POST {{baseUrl}}/auth/login
|
||||
Content-Type: application/json
|
||||
|
||||
{
|
||||
"email": "doctor@example.com",
|
||||
"password": "password123"
|
||||
}
|
||||
|
||||
@refresh_token = "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyX2lkIjoiNCIsImVtYWlsIjoiZG9jdG9yQGV4YW1wbGUuY29tIiwicm9sZSI6InJlZl9kb2N0b3IiLCJ1c2VyX25hbWUiOiJEUi4gSEVSV0lORE8gUklEV0FOLCBTUC5PVCIsInRva2VuX3R5cGUiOiJyZWZyZXNoIiwiaG9tZV91cmwiOiIvIiwic3R1ZHlfbGlzdCI6ImVuYWJsZWQiLCJmaWx0ZXJfdXJsIjoic3R1ZGllcz9saW1pdD0xMDFcdTAwMjZvZmZzZXQ9MFx1MDAyNmZ1enp5bWF0Y2hpbmc9ZmFsc2VcdTAwMjZpbmNsdWRlZmllbGQ9MDAwODEwMzAsMDAwODAwNjAsMDAwODAwOTBcdTAwMjYwMDA4MDA5MD1EUi4rSEVSV0lORE8rUklEV0FOJTJDK1NQLk9UIiwiZXhwIjoxNzQ3OTAxMzI5LCJpYXQiOjE3NDcyOTY1Mjl9.M7khgg8eZHk20qGsdPDmUojdBvItXOE-834R6t_AF9Q"
|
||||
|
||||
### Refresh TOken
|
||||
POST {{baseUrl}}/auth/refresh
|
||||
Content-Type: application/json
|
||||
|
||||
{
|
||||
"refresh_token" : {{refresh_token}}
|
||||
}
|
||||
64
test/http/shortlink-flow.http
Normal file
64
test/http/shortlink-flow.http
Normal file
@@ -0,0 +1,64 @@
|
||||
### Shortlink Authentication Test File
|
||||
@baseUrl = http://localhost:5555
|
||||
@adminToken = eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyX2lkIjoiNiIsImVtYWlsIjoiYWRtaW5AZXhhbXBsZS5jb20iLCJyb2xlIjoiYWRtaW4iLCJ1c2VyX25hbWUiOiJBZG1pbiBVc2VyIiwidG9rZW5fdHlwZSI6ImFjY2VzcyIsImhvbWVfdXJsIjoiLyIsInN0dWR5X2xpc3QiOiJlbmFibGVkIiwiZXhwIjoxNzQ3MzY0NjgxLCJpYXQiOjE3NDcyNzgyODF9.bkzxV8f26wN_r6uI5T6o58TNX4U0z-Wel1hCAl5-8ag
|
||||
|
||||
### 1. Generate Short Link Single Study
|
||||
POST {{baseUrl}}/generate-link
|
||||
Content-Type: application/json
|
||||
Authorization: Bearer {{adminToken}}
|
||||
|
||||
{
|
||||
"patient_id": "MR00000359",
|
||||
"study_uid": "1.2.826.0.1.3680043.9.7307.1.202503196393.01",
|
||||
"dob": "2001-10-07",
|
||||
"expires_in": 48
|
||||
}
|
||||
|
||||
### 2. Generate Short Link Multiple Studies
|
||||
POST {{baseUrl}}/generate-link
|
||||
Content-Type: application/json
|
||||
Authorization: Bearer {{adminToken}}
|
||||
|
||||
{
|
||||
"patient_id": "00211622",
|
||||
"study_uid": "1.2.826.0.1.3680043.9.7307.1.20180713036",
|
||||
"dob": "1980-01-01",
|
||||
"expires_in": 48
|
||||
}
|
||||
|
||||
###
|
||||
POST {{baseUrl}}/generate-link
|
||||
Content-Type: application/json
|
||||
Authorization: Bearer {{adminToken}}
|
||||
|
||||
{
|
||||
"patient_id": "00211622",
|
||||
"study_uid": "1.2.826.0.1.3680043.9.7307.1.20180530066",
|
||||
"dob": "1980-01-01",
|
||||
"expires_in": 48
|
||||
}
|
||||
|
||||
### Authenticate correct
|
||||
POST {{baseUrl}}/auth/shortlink
|
||||
Content-Type: application/json
|
||||
|
||||
{
|
||||
"short_token": "aePWCTrU",
|
||||
"dob": "1980-01-01"
|
||||
}
|
||||
|
||||
### Authenticate with Incorrect DOB
|
||||
POST {{baseUrl}}/auth/shortlink
|
||||
Content-Type: application/json
|
||||
|
||||
{
|
||||
"short_token": "HNHh_zem",
|
||||
"dob": "2001-10-00"
|
||||
}
|
||||
|
||||
|
||||
### 4. Access DICOM data with the JWT from successful shortlink auth
|
||||
# Replace with token from successful auth in request #2
|
||||
GET {{baseUrl}}/dicomWeb/studies/1.2.826.0.1.3680043.9.7307.1.20180713036
|
||||
Content-Type: application/json
|
||||
Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyX2lkIjoic2hvcnRsaW5rXzIiLCJlbWFpbCI6InBhdGllbnRfMkBzaG9ydGxpbmsubG9jYWwiLCJyb2xlIjoicGF0aWVudCIsInVzZXJfbmFtZSI6IlBhdGllbnQiLCJ0b2tlbl90eXBlIjoiYWNjZXNzIiwicGF0aWVudF9pZCI6IjAwMjExNjIyIiwicGF0aWVudF9uYW1lIjoiUGF0aWVudCIsInN0dWR5X2l1aWRzIjpbIjEuMi44MjYuMC4xLjM2ODAwNDMuOS43MzA3LjEuMjAxODA3MTMwMzYiXSwiaG9tZV91cmwiOiJ2aWV3ZXI_U3R1ZHlJbnN0YW5jZVVJRHM9MS4yLjgyNi4wLjEuMzY4MDA0My45LjczMDcuMS4yMDE4MDcxMzAzNiIsInN0dWR5X2xpc3QiOiJkaXNhYmxlZCIsImV4cCI6MTc0NzM2OTc1NSwiaWF0IjoxNzQ3MjgzMzU1fQ.rj1Xr7StW_O3rE2Pwq6L-WGBAW1tFcUq8bt5nu4u050
|
||||
Reference in New Issue
Block a user