{ "info": { "name": "test_project API", "description": "API collection for test_project (fastapi)", "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json" }, "item": [ { "name": "Health Check", "request": { "method": "GET", "header": [], "url": { "raw": "{{base_url}}/health", "host": [ "{{base_url}}" ], "path": [ "health" ] }, "description": "Health check endpoint" }, "response": [] }, { "name": "User", "item": [ { "name": "Find All", "request": { "method": "GET", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/users", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "users" ], "query": [ { "key": "page", "value": "1", "description": "Page number", "disabled": false }, { "key": "limit", "value": "20", "description": "Items per page", "disabled": false } ] }, "description": "Get all users" }, "response": [] }, { "name": "Find By Id", "request": { "method": "GET", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/users/{{id}}", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "users", "{{id}}" ], "variable": [ { "key": "id", "value": "123", "description": "Path parameter: id" } ], "query": [ { "key": "page", "value": "1", "description": "Page number", "disabled": false }, { "key": "limit", "value": "20", "description": "Items per page", "disabled": false } ] }, "description": "Get User by ID" }, "response": [] }, { "name": "Create", "request": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/users", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "users" ] }, "description": "Create new User", "body": { "mode": "raw", "raw": "{\n \"username\": \"Test Username\",\n \"email\": \"user@example.com\",\n \"password_hash\": \"test_password_hash\",\n \"first_name\": \"Test First_Name\",\n \"last_name\": \"Test Last_Name\",\n \"role\": \"surgeon\",\n \"specialty\": \"test_specialty\",\n \"npi\": \"test_npi\",\n \"is_active\": true,\n \"last_login_at\": \"2026-03-06T13:58:31.753178\"\n}", "options": { "raw": { "language": "json" } } } }, "response": [] }, { "name": "Update", "request": { "method": "PUT", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/users/{{id}}", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "users", "{{id}}" ], "variable": [ { "key": "id", "value": "123", "description": "Path parameter: id" } ] }, "description": "Update User", "body": { "mode": "raw", "raw": "{\n \"username\": \"Test Username\",\n \"email\": \"user@example.com\",\n \"password_hash\": \"test_password_hash\",\n \"first_name\": \"Test First_Name\",\n \"last_name\": \"Test Last_Name\",\n \"role\": \"surgeon\",\n \"specialty\": \"test_specialty\",\n \"npi\": \"test_npi\",\n \"is_active\": true,\n \"last_login_at\": \"2026-03-06T13:58:31.753313\"\n}", "options": { "raw": { "language": "json" } } } }, "response": [] }, { "name": "Delete", "request": { "method": "DELETE", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/users/{{id}}", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "users", "{{id}}" ], "variable": [ { "key": "id", "value": "123", "description": "Path parameter: id" } ] }, "description": "Delete User" }, "response": [] }, { "name": "Register", "request": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/auth/register", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "auth", "register" ] }, "description": "Register new user", "body": { "mode": "raw", "raw": "{\n \"username\": \"Test Username\",\n \"email\": \"user@example.com\",\n \"password_hash\": \"test_password_hash\",\n \"first_name\": \"Test First_Name\",\n \"last_name\": \"Test Last_Name\",\n \"role\": \"surgeon\",\n \"specialty\": \"test_specialty\",\n \"npi\": \"test_npi\",\n \"is_active\": true,\n \"last_login_at\": \"2026-03-06T13:58:31.753431\"\n}", "options": { "raw": { "language": "json" } } } }, "response": [] }, { "name": "Login", "request": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/auth/login", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "auth", "login" ] }, "description": "User login", "body": { "mode": "raw", "raw": "{\n \"username\": \"Test Username\",\n \"email\": \"user@example.com\",\n \"password_hash\": \"test_password_hash\",\n \"first_name\": \"Test First_Name\",\n \"last_name\": \"Test Last_Name\",\n \"role\": \"surgeon\",\n \"specialty\": \"test_specialty\",\n \"npi\": \"test_npi\",\n \"is_active\": true,\n \"last_login_at\": \"2026-03-06T13:58:31.753526\"\n}", "options": { "raw": { "language": "json" } } } }, "response": [] }, { "name": "Logout", "request": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/auth/logout", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "auth", "logout" ] }, "description": "User logout", "body": { "mode": "raw", "raw": "{\n \"username\": \"Test Username\",\n \"email\": \"user@example.com\",\n \"password_hash\": \"test_password_hash\",\n \"first_name\": \"Test First_Name\",\n \"last_name\": \"Test Last_Name\",\n \"role\": \"surgeon\",\n \"specialty\": \"test_specialty\",\n \"npi\": \"test_npi\",\n \"is_active\": true,\n \"last_login_at\": \"2026-03-06T13:58:31.753615\"\n}", "options": { "raw": { "language": "json" } } } }, "response": [] }, { "name": "Refresh Token", "request": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/auth/refresh", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "auth", "refresh" ] }, "description": "Refresh access token", "body": { "mode": "raw", "raw": "{\n \"username\": \"Test Username\",\n \"email\": \"user@example.com\",\n \"password_hash\": \"test_password_hash\",\n \"first_name\": \"Test First_Name\",\n \"last_name\": \"Test Last_Name\",\n \"role\": \"surgeon\",\n \"specialty\": \"test_specialty\",\n \"npi\": \"test_npi\",\n \"is_active\": true,\n \"last_login_at\": \"2026-03-06T13:58:31.753718\"\n}", "options": { "raw": { "language": "json" } } } }, "response": [] }, { "name": "Forgot Password", "request": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/auth/forgot-password", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "auth", "forgot-password" ] }, "description": "Request password reset", "body": { "mode": "raw", "raw": "{\n \"username\": \"Test Username\",\n \"email\": \"user@example.com\",\n \"password_hash\": \"test_password_hash\",\n \"first_name\": \"Test First_Name\",\n \"last_name\": \"Test Last_Name\",\n \"role\": \"surgeon\",\n \"specialty\": \"test_specialty\",\n \"npi\": \"test_npi\",\n \"is_active\": true,\n \"last_login_at\": \"2026-03-06T13:58:31.753817\"\n}", "options": { "raw": { "language": "json" } } } }, "response": [] }, { "name": "Reset Password", "request": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/auth/reset-password", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "auth", "reset-password" ] }, "description": "Reset password", "body": { "mode": "raw", "raw": "{\n \"username\": \"Test Username\",\n \"email\": \"user@example.com\",\n \"password_hash\": \"test_password_hash\",\n \"first_name\": \"Test First_Name\",\n \"last_name\": \"Test Last_Name\",\n \"role\": \"surgeon\",\n \"specialty\": \"test_specialty\",\n \"npi\": \"test_npi\",\n \"is_active\": true,\n \"last_login_at\": \"2026-03-06T13:58:31.753912\"\n}", "options": { "raw": { "language": "json" } } } }, "response": [] }, { "name": "Change Password", "request": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/auth/change-password", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "auth", "change-password" ] }, "description": "Change password", "body": { "mode": "raw", "raw": "{\n \"username\": \"Test Username\",\n \"email\": \"user@example.com\",\n \"password_hash\": \"test_password_hash\",\n \"first_name\": \"Test First_Name\",\n \"last_name\": \"Test Last_Name\",\n \"role\": \"surgeon\",\n \"specialty\": \"test_specialty\",\n \"npi\": \"test_npi\",\n \"is_active\": true,\n \"last_login_at\": \"2026-03-06T13:58:31.754165\"\n}", "options": { "raw": { "language": "json" } } } }, "response": [] }, { "name": "Get Current User", "request": { "method": "GET", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/auth/me", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "auth", "me" ], "query": [ { "key": "page", "value": "1", "description": "Page number", "disabled": false }, { "key": "limit", "value": "20", "description": "Items per page", "disabled": false } ] }, "description": "Get current user" }, "response": [] } ], "description": "API endpoints for User entity" }, { "name": "Patient", "item": [ { "name": "Find All", "request": { "method": "GET", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/patients", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "patients" ], "query": [ { "key": "page", "value": "1", "description": "Page number", "disabled": false }, { "key": "limit", "value": "20", "description": "Items per page", "disabled": false } ] }, "description": "Get all patients" }, "response": [] }, { "name": "Find By Id", "request": { "method": "GET", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/patients/{{id}}", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "patients", "{{id}}" ], "variable": [ { "key": "id", "value": "123", "description": "Path parameter: id" } ], "query": [ { "key": "page", "value": "1", "description": "Page number", "disabled": false }, { "key": "limit", "value": "20", "description": "Items per page", "disabled": false } ] }, "description": "Get Patient by ID" }, "response": [] }, { "name": "Create", "request": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/patients", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "patients" ] }, "description": "Create new Patient", "body": { "mode": "raw", "raw": "{\n \"mrn\": \"test_mrn\",\n \"first_name\": \"Test First_Name\",\n \"last_name\": \"Test Last_Name\",\n \"date_of_birth\": \"2026-03-06T13:58:31.754445\",\n \"gender\": \"male\",\n \"ssn\": \"test_ssn\",\n \"address_line1\": \"test_address_line1\",\n \"address_line2\": \"test_address_line2\",\n \"city\": \"test_city\",\n \"state\": \"test_state\",\n \"zip_code\": \"test_zip_code\",\n \"phone\": \"test_phone\",\n \"email\": \"user@example.com\",\n \"primary_payer_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"primary_insurance_member_id\": \"123\",\n \"secondary_payer_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"secondary_insurance_member_id\": \"123\",\n \"emr_patient_id\": \"123\",\n \"is_active\": true\n}", "options": { "raw": { "language": "json" } } } }, "response": [] }, { "name": "Update", "request": { "method": "PUT", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/patients/{{id}}", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "patients", "{{id}}" ], "variable": [ { "key": "id", "value": "123", "description": "Path parameter: id" } ] }, "description": "Update Patient", "body": { "mode": "raw", "raw": "{\n \"mrn\": \"test_mrn\",\n \"first_name\": \"Test First_Name\",\n \"last_name\": \"Test Last_Name\",\n \"date_of_birth\": \"2026-03-06T13:58:31.754572\",\n \"gender\": \"male\",\n \"ssn\": \"test_ssn\",\n \"address_line1\": \"test_address_line1\",\n \"address_line2\": \"test_address_line2\",\n \"city\": \"test_city\",\n \"state\": \"test_state\",\n \"zip_code\": \"test_zip_code\",\n \"phone\": \"test_phone\",\n \"email\": \"user@example.com\",\n \"primary_payer_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"primary_insurance_member_id\": \"123\",\n \"secondary_payer_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"secondary_insurance_member_id\": \"123\",\n \"emr_patient_id\": \"123\",\n \"is_active\": true\n}", "options": { "raw": { "language": "json" } } } }, "response": [] }, { "name": "Delete", "request": { "method": "DELETE", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/patients/{{id}}", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "patients", "{{id}}" ], "variable": [ { "key": "id", "value": "123", "description": "Path parameter: id" } ] }, "description": "Delete Patient" }, "response": [] }, { "name": "Create", "request": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/patients", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "patients" ] }, "description": "Create patient record", "body": { "mode": "raw", "raw": "{\n \"mrn\": \"test_mrn\",\n \"first_name\": \"Test First_Name\",\n \"last_name\": \"Test Last_Name\",\n \"date_of_birth\": \"2026-03-06T13:58:31.754885\",\n \"gender\": \"male\",\n \"ssn\": \"test_ssn\",\n \"address_line1\": \"test_address_line1\",\n \"address_line2\": \"test_address_line2\",\n \"city\": \"test_city\",\n \"state\": \"test_state\",\n \"zip_code\": \"test_zip_code\",\n \"phone\": \"test_phone\",\n \"email\": \"user@example.com\",\n \"primary_payer_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"primary_insurance_member_id\": \"123\",\n \"secondary_payer_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"secondary_insurance_member_id\": \"123\",\n \"emr_patient_id\": \"123\",\n \"is_active\": true\n}", "options": { "raw": { "language": "json" } } } }, "response": [] }, { "name": "Find One", "request": { "method": "GET", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/patients/{{id}}", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "patients", "{{id}}" ], "variable": [ { "key": "id", "value": "123", "description": "Path parameter: id" } ], "query": [ { "key": "page", "value": "1", "description": "Page number", "disabled": false }, { "key": "limit", "value": "20", "description": "Items per page", "disabled": false } ] }, "description": "Get patient by ID" }, "response": [] }, { "name": "Find All", "request": { "method": "GET", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/patients", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "patients" ], "query": [ { "key": "mrn", "value": "", "description": "", "disabled": true }, { "key": "last_name", "value": "", "description": "", "disabled": true }, { "key": "page", "value": "", "description": "", "disabled": true }, { "key": "limit", "value": "", "description": "", "disabled": true } ] }, "description": "List patients" }, "response": [] }, { "name": "Update", "request": { "method": "PATCH", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/patients/{{id}}", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "patients", "{{id}}" ], "variable": [ { "key": "id", "value": "123", "description": "Path parameter: id" } ] }, "description": "Update patient", "body": { "mode": "raw", "raw": "{\n \"mrn\": \"test_mrn\",\n \"first_name\": \"Test First_Name\",\n \"last_name\": \"Test Last_Name\",\n \"date_of_birth\": \"2026-03-06T13:58:31.755041\",\n \"gender\": \"male\",\n \"ssn\": \"test_ssn\",\n \"address_line1\": \"test_address_line1\",\n \"address_line2\": \"test_address_line2\",\n \"city\": \"test_city\",\n \"state\": \"test_state\",\n \"zip_code\": \"test_zip_code\",\n \"phone\": \"test_phone\",\n \"email\": \"user@example.com\",\n \"primary_payer_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"primary_insurance_member_id\": \"123\",\n \"secondary_payer_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"secondary_insurance_member_id\": \"123\",\n \"emr_patient_id\": \"123\",\n \"is_active\": true\n}", "options": { "raw": { "language": "json" } } } }, "response": [] }, { "name": "Delete", "request": { "method": "DELETE", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/patients/{{id}}", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "patients", "{{id}}" ], "variable": [ { "key": "id", "value": "123", "description": "Path parameter: id" } ] }, "description": "Delete patient" }, "response": [] }, { "name": "Search", "request": { "method": "GET", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/patients/search", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "patients", "search" ], "query": [ { "key": "page", "value": "1", "description": "Page number", "disabled": false }, { "key": "limit", "value": "20", "description": "Items per page", "disabled": false }, { "key": "query", "value": "", "description": "", "disabled": false } ] }, "description": "Search patients" }, "response": [] }, { "name": "Get Patient Claims", "request": { "method": "GET", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/patients/{{id}}/claims", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "patients", "{{id}}", "claims" ], "variable": [ { "key": "id", "value": "123", "description": "Path parameter: id" } ], "query": [ { "key": "status", "value": "", "description": "", "disabled": true }, { "key": "page", "value": "", "description": "", "disabled": true }, { "key": "limit", "value": "", "description": "", "disabled": true } ] }, "description": "Get patient claims" }, "response": [] }, { "name": "Get Patient Encounters", "request": { "method": "GET", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/patients/{{id}}/encounters", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "patients", "{{id}}", "encounters" ], "variable": [ { "key": "id", "value": "123", "description": "Path parameter: id" } ], "query": [ { "key": "page", "value": "1", "description": "Page number", "disabled": false }, { "key": "limit", "value": "20", "description": "Items per page", "disabled": false }, { "key": "date_from", "value": "", "description": "", "disabled": true }, { "key": "date_to", "value": "", "description": "", "disabled": true } ] }, "description": "Get patient encounters" }, "response": [] } ], "description": "API endpoints for Patient entity" }, { "name": "AudioRecording", "item": [ { "name": "Find All", "request": { "method": "GET", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/audio-recordings", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "audio-recordings" ], "query": [ { "key": "page", "value": "1", "description": "Page number", "disabled": false }, { "key": "limit", "value": "20", "description": "Items per page", "disabled": false } ] }, "description": "Get all audio-recordings" }, "response": [] }, { "name": "Find By Id", "request": { "method": "GET", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/audio-recordings/{{id}}", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "audio-recordings", "{{id}}" ], "variable": [ { "key": "id", "value": "123", "description": "Path parameter: id" } ], "query": [ { "key": "page", "value": "1", "description": "Page number", "disabled": false }, { "key": "limit", "value": "20", "description": "Items per page", "disabled": false } ] }, "description": "Get AudioRecording by ID" }, "response": [] }, { "name": "Create", "request": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/audio-recordings", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "audio-recordings" ] }, "description": "Create new AudioRecording", "body": { "mode": "raw", "raw": "{\n \"user_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"patient_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"encounter_id\": \"123\",\n \"file_path\": \"test_file_path\",\n \"file_name\": \"Test File_Name\",\n \"file_format\": \"AAC\",\n \"file_size_bytes\": 1,\n \"duration_seconds\": 1,\n \"recording_date\": \"2026-03-06T13:58:31.755389\",\n \"upload_date\": \"CURRENT_TIMESTAMP\",\n \"is_encrypted\": true,\n \"encryption_key_id\": \"123\",\n \"status\": \"uploaded\",\n \"device_info\": {},\n \"noise_level\": \"low\",\n \"template_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"is_template_based\": true\n}", "options": { "raw": { "language": "json" } } } }, "response": [] }, { "name": "Update", "request": { "method": "PUT", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/audio-recordings/{{id}}", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "audio-recordings", "{{id}}" ], "variable": [ { "key": "id", "value": "123", "description": "Path parameter: id" } ] }, "description": "Update AudioRecording", "body": { "mode": "raw", "raw": "{\n \"user_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"patient_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"encounter_id\": \"123\",\n \"file_path\": \"test_file_path\",\n \"file_name\": \"Test File_Name\",\n \"file_format\": \"AAC\",\n \"file_size_bytes\": 1,\n \"duration_seconds\": 1,\n \"recording_date\": \"2026-03-06T13:58:31.755509\",\n \"upload_date\": \"CURRENT_TIMESTAMP\",\n \"is_encrypted\": true,\n \"encryption_key_id\": \"123\",\n \"status\": \"uploaded\",\n \"device_info\": {},\n \"noise_level\": \"low\",\n \"template_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"is_template_based\": true\n}", "options": { "raw": { "language": "json" } } } }, "response": [] }, { "name": "Delete", "request": { "method": "DELETE", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/audio-recordings/{{id}}", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "audio-recordings", "{{id}}" ], "variable": [ { "key": "id", "value": "123", "description": "Path parameter: id" } ] }, "description": "Delete AudioRecording" }, "response": [] }, { "name": "Create", "request": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/audio/recordings", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "audio", "recordings" ] }, "description": "Upload audio recording", "body": { "mode": "raw", "raw": "{\n \"user_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"patient_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"encounter_id\": \"123\",\n \"file_path\": \"test_file_path\",\n \"file_name\": \"Test File_Name\",\n \"file_format\": \"AAC\",\n \"file_size_bytes\": 1,\n \"duration_seconds\": 1,\n \"recording_date\": \"2026-03-06T13:58:31.755624\",\n \"upload_date\": \"CURRENT_TIMESTAMP\",\n \"is_encrypted\": true,\n \"encryption_key_id\": \"123\",\n \"status\": \"uploaded\",\n \"device_info\": {},\n \"noise_level\": \"low\",\n \"template_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"is_template_based\": true\n}", "options": { "raw": { "language": "json" } } } }, "response": [] }, { "name": "Find One", "request": { "method": "GET", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/audio/recordings/{{id}}", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "audio", "recordings", "{{id}}" ], "variable": [ { "key": "id", "value": "123", "description": "Path parameter: id" } ], "query": [ { "key": "page", "value": "1", "description": "Page number", "disabled": false }, { "key": "limit", "value": "20", "description": "Items per page", "disabled": false } ] }, "description": "Get audio recording by ID" }, "response": [] }, { "name": "Find All", "request": { "method": "GET", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/audio/recordings", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "audio", "recordings" ], "query": [ { "key": "patient_id", "value": "", "description": "", "disabled": true }, { "key": "encounter_id", "value": "", "description": "", "disabled": true }, { "key": "status", "value": "", "description": "", "disabled": true }, { "key": "page", "value": "", "description": "", "disabled": true }, { "key": "limit", "value": "", "description": "", "disabled": true } ] }, "description": "List audio recordings" }, "response": [] }, { "name": "Update", "request": { "method": "PATCH", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/audio/recordings/{{id}}", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "audio", "recordings", "{{id}}" ], "variable": [ { "key": "id", "value": "123", "description": "Path parameter: id" } ] }, "description": "Update recording metadata", "body": { "mode": "raw", "raw": "{\n \"user_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"patient_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"encounter_id\": \"123\",\n \"file_path\": \"test_file_path\",\n \"file_name\": \"Test File_Name\",\n \"file_format\": \"AAC\",\n \"file_size_bytes\": 1,\n \"duration_seconds\": 1,\n \"recording_date\": \"2026-03-06T13:58:31.755767\",\n \"upload_date\": \"CURRENT_TIMESTAMP\",\n \"is_encrypted\": true,\n \"encryption_key_id\": \"123\",\n \"status\": \"uploaded\",\n \"device_info\": {},\n \"noise_level\": \"low\",\n \"template_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"is_template_based\": true\n}", "options": { "raw": { "language": "json" } } } }, "response": [] }, { "name": "Delete", "request": { "method": "DELETE", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/audio/recordings/{{id}}", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "audio", "recordings", "{{id}}" ], "variable": [ { "key": "id", "value": "123", "description": "Path parameter: id" } ] }, "description": "Delete audio recording" }, "response": [] }, { "name": "Upload Audio", "request": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/audio/recordings/{{id}}/upload", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "audio", "recordings", "{{id}}", "upload" ], "variable": [ { "key": "id", "value": "123", "description": "Path parameter: id" } ] }, "description": "Upload audio file", "body": { "mode": "raw", "raw": "{\n \"user_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"patient_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"encounter_id\": \"123\",\n \"file_path\": \"test_file_path\",\n \"file_name\": \"Test File_Name\",\n \"file_format\": \"AAC\",\n \"file_size_bytes\": 1,\n \"duration_seconds\": 1,\n \"recording_date\": \"2026-03-06T13:58:31.755890\",\n \"upload_date\": \"CURRENT_TIMESTAMP\",\n \"is_encrypted\": true,\n \"encryption_key_id\": \"123\",\n \"status\": \"uploaded\",\n \"device_info\": {},\n \"noise_level\": \"low\",\n \"template_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"is_template_based\": true\n}", "options": { "raw": { "language": "json" } } } }, "response": [] }, { "name": "Download Audio", "request": { "method": "GET", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/audio/recordings/{{id}}/download", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "audio", "recordings", "{{id}}", "download" ], "variable": [ { "key": "id", "value": "123", "description": "Path parameter: id" } ], "query": [ { "key": "page", "value": "1", "description": "Page number", "disabled": false }, { "key": "limit", "value": "20", "description": "Items per page", "disabled": false } ] }, "description": "Download audio file" }, "response": [] } ], "description": "API endpoints for AudioRecording entity" }, { "name": "Transcript", "item": [ { "name": "Find All", "request": { "method": "GET", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/transcripts", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "transcripts" ], "query": [ { "key": "page", "value": "1", "description": "Page number", "disabled": false }, { "key": "limit", "value": "20", "description": "Items per page", "disabled": false } ] }, "description": "Get all transcripts" }, "response": [] }, { "name": "Find By Id", "request": { "method": "GET", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/transcripts/{{id}}", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "transcripts", "{{id}}" ], "variable": [ { "key": "id", "value": "123", "description": "Path parameter: id" } ], "query": [ { "key": "page", "value": "1", "description": "Page number", "disabled": false }, { "key": "limit", "value": "20", "description": "Items per page", "disabled": false } ] }, "description": "Get Transcript by ID" }, "response": [] }, { "name": "Create", "request": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/transcripts", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "transcripts" ] }, "description": "Create new Transcript", "body": { "mode": "raw", "raw": "{\n \"audio_recording_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"raw_text\": \"test_raw_text\",\n \"corrected_text\": \"test_corrected_text\",\n \"word_error_rate\": 1.0,\n \"confidence_score\": 1.0,\n \"timestamps\": {},\n \"low_confidence_segments\": {},\n \"processing_time_seconds\": 1,\n \"model_version\": \"test_model_version\",\n \"is_manually_corrected\": true,\n \"corrected_by_user_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"corrected_at\": \"2026-03-06T13:58:31.756170\",\n \"status\": \"processing\"\n}", "options": { "raw": { "language": "json" } } } }, "response": [] }, { "name": "Update", "request": { "method": "PUT", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/transcripts/{{id}}", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "transcripts", "{{id}}" ], "variable": [ { "key": "id", "value": "123", "description": "Path parameter: id" } ] }, "description": "Update Transcript", "body": { "mode": "raw", "raw": "{\n \"audio_recording_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"raw_text\": \"test_raw_text\",\n \"corrected_text\": \"test_corrected_text\",\n \"word_error_rate\": 1.0,\n \"confidence_score\": 1.0,\n \"timestamps\": {},\n \"low_confidence_segments\": {},\n \"processing_time_seconds\": 1,\n \"model_version\": \"test_model_version\",\n \"is_manually_corrected\": true,\n \"corrected_by_user_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"corrected_at\": \"2026-03-06T13:58:31.756290\",\n \"status\": \"processing\"\n}", "options": { "raw": { "language": "json" } } } }, "response": [] }, { "name": "Delete", "request": { "method": "DELETE", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/transcripts/{{id}}", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "transcripts", "{{id}}" ], "variable": [ { "key": "id", "value": "123", "description": "Path parameter: id" } ] }, "description": "Delete Transcript" }, "response": [] }, { "name": "Create", "request": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/transcripts", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "transcripts" ] }, "description": "Create transcript from audio", "body": { "mode": "raw", "raw": "{\n \"audio_recording_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"raw_text\": \"test_raw_text\",\n \"corrected_text\": \"test_corrected_text\",\n \"word_error_rate\": 1.0,\n \"confidence_score\": 1.0,\n \"timestamps\": {},\n \"low_confidence_segments\": {},\n \"processing_time_seconds\": 1,\n \"model_version\": \"test_model_version\",\n \"is_manually_corrected\": true,\n \"corrected_by_user_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"corrected_at\": \"2026-03-06T13:58:31.756471\",\n \"status\": \"processing\"\n}", "options": { "raw": { "language": "json" } } } }, "response": [] }, { "name": "Find One", "request": { "method": "GET", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/transcripts/{{id}}", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "transcripts", "{{id}}" ], "variable": [ { "key": "id", "value": "123", "description": "Path parameter: id" } ], "query": [ { "key": "page", "value": "1", "description": "Page number", "disabled": false }, { "key": "limit", "value": "20", "description": "Items per page", "disabled": false } ] }, "description": "Get transcript by ID" }, "response": [] }, { "name": "Find All", "request": { "method": "GET", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/transcripts", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "transcripts" ], "query": [ { "key": "audio_recording_id", "value": "", "description": "", "disabled": true }, { "key": "patient_id", "value": "", "description": "", "disabled": true }, { "key": "status", "value": "", "description": "", "disabled": true }, { "key": "page", "value": "", "description": "", "disabled": true }, { "key": "limit", "value": "", "description": "", "disabled": true } ] }, "description": "List transcripts" }, "response": [] }, { "name": "Update", "request": { "method": "PATCH", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/transcripts/{{id}}", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "transcripts", "{{id}}" ], "variable": [ { "key": "id", "value": "123", "description": "Path parameter: id" } ] }, "description": "Update transcript text", "body": { "mode": "raw", "raw": "{\n \"audio_recording_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"raw_text\": \"test_raw_text\",\n \"corrected_text\": \"test_corrected_text\",\n \"word_error_rate\": 1.0,\n \"confidence_score\": 1.0,\n \"timestamps\": {},\n \"low_confidence_segments\": {},\n \"processing_time_seconds\": 1,\n \"model_version\": \"test_model_version\",\n \"is_manually_corrected\": true,\n \"corrected_by_user_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"corrected_at\": \"2026-03-06T13:58:31.756637\",\n \"status\": \"processing\"\n}", "options": { "raw": { "language": "json" } } } }, "response": [] }, { "name": "Process Transcript", "request": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/transcripts/{{id}}/process", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "transcripts", "{{id}}", "process" ], "variable": [ { "key": "id", "value": "123", "description": "Path parameter: id" } ] }, "description": "Process audio to text", "body": { "mode": "raw", "raw": "{\n \"audio_recording_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"raw_text\": \"test_raw_text\",\n \"corrected_text\": \"test_corrected_text\",\n \"word_error_rate\": 1.0,\n \"confidence_score\": 1.0,\n \"timestamps\": {},\n \"low_confidence_segments\": {},\n \"processing_time_seconds\": 1,\n \"model_version\": \"test_model_version\",\n \"is_manually_corrected\": true,\n \"corrected_by_user_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"corrected_at\": \"2026-03-06T13:58:31.756769\",\n \"status\": \"processing\"\n}", "options": { "raw": { "language": "json" } } } }, "response": [] }, { "name": "Get Confidence", "request": { "method": "GET", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/transcripts/{{id}}/confidence", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "transcripts", "{{id}}", "confidence" ], "variable": [ { "key": "id", "value": "123", "description": "Path parameter: id" } ], "query": [ { "key": "page", "value": "1", "description": "Page number", "disabled": false }, { "key": "limit", "value": "20", "description": "Items per page", "disabled": false } ] }, "description": "Get confidence scores" }, "response": [] }, { "name": "Correct Transcript", "request": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/transcripts/{{id}}/correct", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "transcripts", "{{id}}", "correct" ], "variable": [ { "key": "id", "value": "123", "description": "Path parameter: id" } ] }, "description": "Manually correct transcript", "body": { "mode": "raw", "raw": "{\n \"audio_recording_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"raw_text\": \"test_raw_text\",\n \"corrected_text\": \"test_corrected_text\",\n \"word_error_rate\": 1.0,\n \"confidence_score\": 1.0,\n \"timestamps\": {},\n \"low_confidence_segments\": {},\n \"processing_time_seconds\": 1,\n \"model_version\": \"test_model_version\",\n \"is_manually_corrected\": true,\n \"corrected_by_user_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"corrected_at\": \"2026-03-06T13:58:31.756899\",\n \"status\": \"processing\"\n}", "options": { "raw": { "language": "json" } } } }, "response": [] } ], "description": "API endpoints for Transcript entity" }, { "name": "ClinicalEntity", "item": [ { "name": "Find All", "request": { "method": "GET", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/clinical-entities", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "clinical-entities" ], "query": [ { "key": "page", "value": "1", "description": "Page number", "disabled": false }, { "key": "limit", "value": "20", "description": "Items per page", "disabled": false } ] }, "description": "Get all clinical-entities" }, "response": [] }, { "name": "Find By Id", "request": { "method": "GET", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/clinical-entities/{{id}}", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "clinical-entities", "{{id}}" ], "variable": [ { "key": "id", "value": "123", "description": "Path parameter: id" } ], "query": [ { "key": "page", "value": "1", "description": "Page number", "disabled": false }, { "key": "limit", "value": "20", "description": "Items per page", "disabled": false } ] }, "description": "Get ClinicalEntity by ID" }, "response": [] }, { "name": "Create", "request": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/clinical-entities", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "clinical-entities" ] }, "description": "Create new ClinicalEntity", "body": { "mode": "raw", "raw": "{\n \"transcript_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"entity_type\": \"diagnosis\",\n \"entity_text\": \"test_entity_text\",\n \"normalized_text\": \"test_normalized_text\",\n \"confidence_score\": 1.0,\n \"start_position\": 1,\n \"end_position\": 1,\n \"context\": \"test_context\",\n \"metadata\": {},\n \"is_negated\": true,\n \"is_historical\": true,\n \"is_verified\": true,\n \"verified_by_user_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"verified_at\": \"2026-03-06T13:58:31.757170\"\n}", "options": { "raw": { "language": "json" } } } }, "response": [] }, { "name": "Update", "request": { "method": "PUT", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/clinical-entities/{{id}}", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "clinical-entities", "{{id}}" ], "variable": [ { "key": "id", "value": "123", "description": "Path parameter: id" } ] }, "description": "Update ClinicalEntity", "body": { "mode": "raw", "raw": "{\n \"transcript_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"entity_type\": \"diagnosis\",\n \"entity_text\": \"test_entity_text\",\n \"normalized_text\": \"test_normalized_text\",\n \"confidence_score\": 1.0,\n \"start_position\": 1,\n \"end_position\": 1,\n \"context\": \"test_context\",\n \"metadata\": {},\n \"is_negated\": true,\n \"is_historical\": true,\n \"is_verified\": true,\n \"verified_by_user_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"verified_at\": \"2026-03-06T13:58:31.757278\"\n}", "options": { "raw": { "language": "json" } } } }, "response": [] }, { "name": "Delete", "request": { "method": "DELETE", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/clinical-entities/{{id}}", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "clinical-entities", "{{id}}" ], "variable": [ { "key": "id", "value": "123", "description": "Path parameter: id" } ] }, "description": "Delete ClinicalEntity" }, "response": [] }, { "name": "Extract", "request": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/entities/extract", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "entities", "extract" ] }, "description": "Extract clinical entities", "body": { "mode": "raw", "raw": "{\n \"transcript_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"entity_type\": \"diagnosis\",\n \"entity_text\": \"test_entity_text\",\n \"normalized_text\": \"test_normalized_text\",\n \"confidence_score\": 1.0,\n \"start_position\": 1,\n \"end_position\": 1,\n \"context\": \"test_context\",\n \"metadata\": {},\n \"is_negated\": true,\n \"is_historical\": true,\n \"is_verified\": true,\n \"verified_by_user_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"verified_at\": \"2026-03-06T13:58:31.757391\"\n}", "options": { "raw": { "language": "json" } } } }, "response": [] }, { "name": "Find One", "request": { "method": "GET", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/entities/{{id}}", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "entities", "{{id}}" ], "variable": [ { "key": "id", "value": "123", "description": "Path parameter: id" } ], "query": [ { "key": "page", "value": "1", "description": "Page number", "disabled": false }, { "key": "limit", "value": "20", "description": "Items per page", "disabled": false } ] }, "description": "Get entity by ID" }, "response": [] }, { "name": "Find All", "request": { "method": "GET", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/entities", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "entities" ], "query": [ { "key": "transcript_id", "value": "", "description": "", "disabled": true }, { "key": "entity_type", "value": "", "description": "", "disabled": true }, { "key": "confidence_min", "value": "", "description": "", "disabled": true }, { "key": "page", "value": "", "description": "", "disabled": true }, { "key": "limit", "value": "", "description": "", "disabled": true } ] }, "description": "List clinical entities" }, "response": [] }, { "name": "Update", "request": { "method": "PATCH", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/entities/{{id}}", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "entities", "{{id}}" ], "variable": [ { "key": "id", "value": "123", "description": "Path parameter: id" } ] }, "description": "Update entity", "body": { "mode": "raw", "raw": "{\n \"transcript_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"entity_type\": \"diagnosis\",\n \"entity_text\": \"test_entity_text\",\n \"normalized_text\": \"test_normalized_text\",\n \"confidence_score\": 1.0,\n \"start_position\": 1,\n \"end_position\": 1,\n \"context\": \"test_context\",\n \"metadata\": {},\n \"is_negated\": true,\n \"is_historical\": true,\n \"is_verified\": true,\n \"verified_by_user_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"verified_at\": \"2026-03-06T13:58:31.757531\"\n}", "options": { "raw": { "language": "json" } } } }, "response": [] }, { "name": "Delete", "request": { "method": "DELETE", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/entities/{{id}}", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "entities", "{{id}}" ], "variable": [ { "key": "id", "value": "123", "description": "Path parameter: id" } ] }, "description": "Delete entity" }, "response": [] }, { "name": "Verify", "request": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/entities/{{id}}/verify", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "entities", "{{id}}", "verify" ], "variable": [ { "key": "id", "value": "123", "description": "Path parameter: id" } ] }, "description": "Verify entity", "body": { "mode": "raw", "raw": "{\n \"transcript_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"entity_type\": \"diagnosis\",\n \"entity_text\": \"test_entity_text\",\n \"normalized_text\": \"test_normalized_text\",\n \"confidence_score\": 1.0,\n \"start_position\": 1,\n \"end_position\": 1,\n \"context\": \"test_context\",\n \"metadata\": {},\n \"is_negated\": true,\n \"is_historical\": true,\n \"is_verified\": true,\n \"verified_by_user_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"verified_at\": \"2026-03-06T13:58:31.757640\"\n}", "options": { "raw": { "language": "json" } } } }, "response": [] } ], "description": "API endpoints for ClinicalEntity entity" }, { "name": "PayerRule", "item": [ { "name": "Find All", "request": { "method": "GET", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/payer-rules", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "payer-rules" ], "query": [ { "key": "page", "value": "1", "description": "Page number", "disabled": false }, { "key": "limit", "value": "20", "description": "Items per page", "disabled": false } ] }, "description": "Get all payer-rules" }, "response": [] }, { "name": "Find By Id", "request": { "method": "GET", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/payer-rules/{{id}}", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "payer-rules", "{{id}}" ], "variable": [ { "key": "id", "value": "123", "description": "Path parameter: id" } ], "query": [ { "key": "page", "value": "1", "description": "Page number", "disabled": false }, { "key": "limit", "value": "20", "description": "Items per page", "disabled": false } ] }, "description": "Get PayerRule by ID" }, "response": [] }, { "name": "Create", "request": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/payer-rules", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "payer-rules" ] }, "description": "Create new PayerRule", "body": { "mode": "raw", "raw": "{\n \"payer_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"rule_name\": \"Test Rule_Name\",\n \"rule_type\": \"code_pairing\",\n \"rule_description\": \"Test description for rule_description\",\n \"rule_logic\": {},\n \"affected_cpt_codes\": {},\n \"affected_icd10_codes\": {},\n \"severity\": \"medium\",\n \"is_active\": true,\n \"effective_date\": \"2026-03-06T13:58:31.757998\",\n \"termination_date\": \"2026-03-06T13:58:31.758003\",\n \"version\": 1,\n \"created_by_user_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"updated_by_user_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"denial_count\": 1,\n \"last_denial_date\": \"2026-03-06T13:58:31.758011\"\n}", "options": { "raw": { "language": "json" } } } }, "response": [] }, { "name": "Update", "request": { "method": "PUT", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/payer-rules/{{id}}", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "payer-rules", "{{id}}" ], "variable": [ { "key": "id", "value": "123", "description": "Path parameter: id" } ] }, "description": "Update PayerRule", "body": { "mode": "raw", "raw": "{\n \"payer_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"rule_name\": \"Test Rule_Name\",\n \"rule_type\": \"code_pairing\",\n \"rule_description\": \"Test description for rule_description\",\n \"rule_logic\": {},\n \"affected_cpt_codes\": {},\n \"affected_icd10_codes\": {},\n \"severity\": \"medium\",\n \"is_active\": true,\n \"effective_date\": \"2026-03-06T13:58:31.758118\",\n \"termination_date\": \"2026-03-06T13:58:31.758121\",\n \"version\": 1,\n \"created_by_user_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"updated_by_user_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"denial_count\": 1,\n \"last_denial_date\": \"2026-03-06T13:58:31.758127\"\n}", "options": { "raw": { "language": "json" } } } }, "response": [] }, { "name": "Delete", "request": { "method": "DELETE", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/payer-rules/{{id}}", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "payer-rules", "{{id}}" ], "variable": [ { "key": "id", "value": "123", "description": "Path parameter: id" } ] }, "description": "Delete PayerRule" }, "response": [] }, { "name": "Create", "request": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/payer-rules", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "payer-rules" ] }, "description": "Create payer rule", "body": { "mode": "raw", "raw": "{\n \"payer_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"rule_name\": \"Test Rule_Name\",\n \"rule_type\": \"code_pairing\",\n \"rule_description\": \"Test description for rule_description\",\n \"rule_logic\": {},\n \"affected_cpt_codes\": {},\n \"affected_icd10_codes\": {},\n \"severity\": \"medium\",\n \"is_active\": true,\n \"effective_date\": \"2026-03-06T13:58:31.758232\",\n \"termination_date\": \"2026-03-06T13:58:31.758235\",\n \"version\": 1,\n \"created_by_user_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"updated_by_user_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"denial_count\": 1,\n \"last_denial_date\": \"2026-03-06T13:58:31.758239\"\n}", "options": { "raw": { "language": "json" } } } }, "response": [] }, { "name": "Find One", "request": { "method": "GET", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/payer-rules/{{id}}", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "payer-rules", "{{id}}" ], "variable": [ { "key": "id", "value": "123", "description": "Path parameter: id" } ], "query": [ { "key": "page", "value": "1", "description": "Page number", "disabled": false }, { "key": "limit", "value": "20", "description": "Items per page", "disabled": false } ] }, "description": "Get rule by ID" }, "response": [] }, { "name": "Find All", "request": { "method": "GET", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/payer-rules", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "payer-rules" ], "query": [ { "key": "payer_id", "value": "", "description": "", "disabled": true }, { "key": "rule_type", "value": "", "description": "", "disabled": true }, { "key": "active", "value": "", "description": "", "disabled": true }, { "key": "page", "value": "", "description": "", "disabled": true }, { "key": "limit", "value": "", "description": "", "disabled": true } ] }, "description": "List payer rules" }, "response": [] }, { "name": "Update", "request": { "method": "PATCH", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/payer-rules/{{id}}", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "payer-rules", "{{id}}" ], "variable": [ { "key": "id", "value": "123", "description": "Path parameter: id" } ] }, "description": "Update payer rule", "body": { "mode": "raw", "raw": "{\n \"payer_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"rule_name\": \"Test Rule_Name\",\n \"rule_type\": \"code_pairing\",\n \"rule_description\": \"Test description for rule_description\",\n \"rule_logic\": {},\n \"affected_cpt_codes\": {},\n \"affected_icd10_codes\": {},\n \"severity\": \"medium\",\n \"is_active\": true,\n \"effective_date\": \"2026-03-06T13:58:31.758427\",\n \"termination_date\": \"2026-03-06T13:58:31.758430\",\n \"version\": 1,\n \"created_by_user_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"updated_by_user_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"denial_count\": 1,\n \"last_denial_date\": \"2026-03-06T13:58:31.758435\"\n}", "options": { "raw": { "language": "json" } } } }, "response": [] }, { "name": "Delete", "request": { "method": "DELETE", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/payer-rules/{{id}}", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "payer-rules", "{{id}}" ], "variable": [ { "key": "id", "value": "123", "description": "Path parameter: id" } ] }, "description": "Delete payer rule" }, "response": [] }, { "name": "Bulk Import", "request": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/payer-rules/bulk-import", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "payer-rules", "bulk-import" ] }, "description": "Bulk import rules", "body": { "mode": "raw", "raw": "{\n \"payer_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"rule_name\": \"Test Rule_Name\",\n \"rule_type\": \"code_pairing\",\n \"rule_description\": \"Test description for rule_description\",\n \"rule_logic\": {},\n \"affected_cpt_codes\": {},\n \"affected_icd10_codes\": {},\n \"severity\": \"medium\",\n \"is_active\": true,\n \"effective_date\": \"2026-03-06T13:58:31.758558\",\n \"termination_date\": \"2026-03-06T13:58:31.758561\",\n \"version\": 1,\n \"created_by_user_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"updated_by_user_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"denial_count\": 1,\n \"last_denial_date\": \"2026-03-06T13:58:31.758567\"\n}", "options": { "raw": { "language": "json" } } } }, "response": [] }, { "name": "Search", "request": { "method": "GET", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/payer-rules/search", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "payer-rules", "search" ], "query": [ { "key": "page", "value": "1", "description": "Page number", "disabled": false }, { "key": "limit", "value": "20", "description": "Items per page", "disabled": false }, { "key": "query", "value": "", "description": "", "disabled": false }, { "key": "payer_id", "value": "", "description": "", "disabled": true } ] }, "description": "Search payer rules" }, "response": [] } ], "description": "API endpoints for PayerRule entity" }, { "name": "ProcedureTemplate", "item": [ { "name": "Find All", "request": { "method": "GET", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/procedure-templates", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "procedure-templates" ], "query": [ { "key": "page", "value": "1", "description": "Page number", "disabled": false }, { "key": "limit", "value": "20", "description": "Items per page", "disabled": false } ] }, "description": "Get all procedure-templates" }, "response": [] }, { "name": "Find By Id", "request": { "method": "GET", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/procedure-templates/{{id}}", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "procedure-templates", "{{id}}" ], "variable": [ { "key": "id", "value": "123", "description": "Path parameter: id" } ], "query": [ { "key": "page", "value": "1", "description": "Page number", "disabled": false }, { "key": "limit", "value": "20", "description": "Items per page", "disabled": false } ] }, "description": "Get ProcedureTemplate by ID" }, "response": [] }, { "name": "Create", "request": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/procedure-templates", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "procedure-templates" ] }, "description": "Create new ProcedureTemplate", "body": { "mode": "raw", "raw": "{\n \"template_name\": \"Test Template_Name\",\n \"specialty\": \"test_specialty\",\n \"procedure_type\": \"test_procedure_type\",\n \"description\": \"Test description for description\",\n \"default_cpt_codes\": {},\n \"default_icd10_codes\": {},\n \"default_modifiers\": {},\n \"medical_necessity_template\": \"test_medical_necessity_template\",\n \"documentation_requirements\": \"test_documentation_requirements\",\n \"mdm_level\": \"straightforward\",\n \"is_active\": true,\n \"usage_count\": 1,\n \"created_by_user_id\": \"550e8400-e29b-41d4-a716-446655440000\"\n}", "options": { "raw": { "language": "json" } } } }, "response": [] }, { "name": "Update", "request": { "method": "PUT", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/procedure-templates/{{id}}", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "procedure-templates", "{{id}}" ], "variable": [ { "key": "id", "value": "123", "description": "Path parameter: id" } ] }, "description": "Update ProcedureTemplate", "body": { "mode": "raw", "raw": "{\n \"template_name\": \"Test Template_Name\",\n \"specialty\": \"test_specialty\",\n \"procedure_type\": \"test_procedure_type\",\n \"description\": \"Test description for description\",\n \"default_cpt_codes\": {},\n \"default_icd10_codes\": {},\n \"default_modifiers\": {},\n \"medical_necessity_template\": \"test_medical_necessity_template\",\n \"documentation_requirements\": \"test_documentation_requirements\",\n \"mdm_level\": \"straightforward\",\n \"is_active\": true,\n \"usage_count\": 1,\n \"created_by_user_id\": \"550e8400-e29b-41d4-a716-446655440000\"\n}", "options": { "raw": { "language": "json" } } } }, "response": [] }, { "name": "Delete", "request": { "method": "DELETE", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/procedure-templates/{{id}}", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "procedure-templates", "{{id}}" ], "variable": [ { "key": "id", "value": "123", "description": "Path parameter: id" } ] }, "description": "Delete ProcedureTemplate" }, "response": [] }, { "name": "Create", "request": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/templates", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "templates" ] }, "description": "Create procedure template", "body": { "mode": "raw", "raw": "{\n \"template_name\": \"Test Template_Name\",\n \"specialty\": \"test_specialty\",\n \"procedure_type\": \"test_procedure_type\",\n \"description\": \"Test description for description\",\n \"default_cpt_codes\": {},\n \"default_icd10_codes\": {},\n \"default_modifiers\": {},\n \"medical_necessity_template\": \"test_medical_necessity_template\",\n \"documentation_requirements\": \"test_documentation_requirements\",\n \"mdm_level\": \"straightforward\",\n \"is_active\": true,\n \"usage_count\": 1,\n \"created_by_user_id\": \"550e8400-e29b-41d4-a716-446655440000\"\n}", "options": { "raw": { "language": "json" } } } }, "response": [] }, { "name": "Find One", "request": { "method": "GET", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/templates/{{id}}", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "templates", "{{id}}" ], "variable": [ { "key": "id", "value": "123", "description": "Path parameter: id" } ], "query": [ { "key": "page", "value": "1", "description": "Page number", "disabled": false }, { "key": "limit", "value": "20", "description": "Items per page", "disabled": false } ] }, "description": "Get template by ID" }, "response": [] }, { "name": "Find All", "request": { "method": "GET", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/templates", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "templates" ], "query": [ { "key": "specialty", "value": "", "description": "", "disabled": true }, { "key": "procedure_type", "value": "", "description": "", "disabled": true }, { "key": "active", "value": "", "description": "", "disabled": true }, { "key": "page", "value": "", "description": "", "disabled": true }, { "key": "limit", "value": "", "description": "", "disabled": true } ] }, "description": "List templates" }, "response": [] }, { "name": "Update", "request": { "method": "PATCH", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/templates/{{id}}", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "templates", "{{id}}" ], "variable": [ { "key": "id", "value": "123", "description": "Path parameter: id" } ] }, "description": "Update template", "body": { "mode": "raw", "raw": "{\n \"template_name\": \"Test Template_Name\",\n \"specialty\": \"test_specialty\",\n \"procedure_type\": \"test_procedure_type\",\n \"description\": \"Test description for description\",\n \"default_cpt_codes\": {},\n \"default_icd10_codes\": {},\n \"default_modifiers\": {},\n \"medical_necessity_template\": \"test_medical_necessity_template\",\n \"documentation_requirements\": \"test_documentation_requirements\",\n \"mdm_level\": \"straightforward\",\n \"is_active\": true,\n \"usage_count\": 1,\n \"created_by_user_id\": \"550e8400-e29b-41d4-a716-446655440000\"\n}", "options": { "raw": { "language": "json" } } } }, "response": [] }, { "name": "Delete", "request": { "method": "DELETE", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/templates/{{id}}", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "templates", "{{id}}" ], "variable": [ { "key": "id", "value": "123", "description": "Path parameter: id" } ] }, "description": "Delete template" }, "response": [] }, { "name": "Apply Template", "request": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/templates/{{id}}/apply", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "templates", "{{id}}", "apply" ], "variable": [ { "key": "id", "value": "123", "description": "Path parameter: id" } ] }, "description": "Apply template to claim", "body": { "mode": "raw", "raw": "{\n \"template_name\": \"Test Template_Name\",\n \"specialty\": \"test_specialty\",\n \"procedure_type\": \"test_procedure_type\",\n \"description\": \"Test description for description\",\n \"default_cpt_codes\": {},\n \"default_icd10_codes\": {},\n \"default_modifiers\": {},\n \"medical_necessity_template\": \"test_medical_necessity_template\",\n \"documentation_requirements\": \"test_documentation_requirements\",\n \"mdm_level\": \"straightforward\",\n \"is_active\": true,\n \"usage_count\": 1,\n \"created_by_user_id\": \"550e8400-e29b-41d4-a716-446655440000\"\n}", "options": { "raw": { "language": "json" } } } }, "response": [] }, { "name": "Search", "request": { "method": "GET", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/templates/search", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "templates", "search" ], "query": [ { "key": "page", "value": "1", "description": "Page number", "disabled": false }, { "key": "limit", "value": "20", "description": "Items per page", "disabled": false }, { "key": "query", "value": "", "description": "", "disabled": false }, { "key": "specialty", "value": "", "description": "", "disabled": true } ] }, "description": "Search templates" }, "response": [] } ], "description": "API endpoints for ProcedureTemplate entity" }, { "name": "Claim", "item": [ { "name": "Find All", "request": { "method": "GET", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/claims", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "claims" ], "query": [ { "key": "page", "value": "1", "description": "Page number", "disabled": false }, { "key": "limit", "value": "20", "description": "Items per page", "disabled": false } ] }, "description": "Get all claims" }, "response": [] }, { "name": "Find By Id", "request": { "method": "GET", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/claims/{{id}}", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "claims", "{{id}}" ], "variable": [ { "key": "id", "value": "123", "description": "Path parameter: id" } ], "query": [ { "key": "page", "value": "1", "description": "Page number", "disabled": false }, { "key": "limit", "value": "20", "description": "Items per page", "disabled": false } ] }, "description": "Get Claim by ID" }, "response": [] }, { "name": "Create", "request": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/claims", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "claims" ] }, "description": "Create new Claim", "body": { "mode": "raw", "raw": "{\n \"claim_number\": \"test_claim_number\",\n \"patient_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"audio_recording_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"transcript_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"payer_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"encounter_id\": \"123\",\n \"service_date\": \"2026-03-06T13:58:31.759988\",\n \"created_by_user_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"status\": \"draft\",\n \"claim_type\": \"professional\",\n \"diagnosis_codes\": {},\n \"procedure_codes\": {},\n \"modifiers\": {},\n \"mdm_level\": \"straightforward\",\n \"medical_necessity_justification\": \"test_medical_necessity_justification\",\n \"total_charge_amount\": 1.0,\n \"expected_reimbursement\": 1.0,\n \"actual_reimbursement\": 1.0,\n \"scrubbing_status\": \"not_scrubbed\",\n \"scrubbing_results\": {},\n \"scrubbing_failures\": {},\n \"corrective_actions\": {},\n \"confidence_score\": 1.0,\n \"is_template_based\": true,\n \"template_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"reviewed_by_user_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"reviewed_at\": \"2026-03-06T13:58:31.760020\",\n \"submitted_at\": \"2026-03-06T13:58:31.760023\",\n \"paid_at\": \"2026-03-06T13:58:31.760026\",\n \"denial_reason\": \"test_denial_reason\",\n \"denial_code\": \"test_denial_code\",\n \"notes\": \"test_notes\"\n}", "options": { "raw": { "language": "json" } } } }, "response": [] }, { "name": "Update", "request": { "method": "PUT", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/claims/{{id}}", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "claims", "{{id}}" ], "variable": [ { "key": "id", "value": "123", "description": "Path parameter: id" } ] }, "description": "Update Claim", "body": { "mode": "raw", "raw": "{\n \"claim_number\": \"test_claim_number\",\n \"patient_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"audio_recording_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"transcript_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"payer_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"encounter_id\": \"123\",\n \"service_date\": \"2026-03-06T13:58:31.760159\",\n \"created_by_user_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"status\": \"draft\",\n \"claim_type\": \"professional\",\n \"diagnosis_codes\": {},\n \"procedure_codes\": {},\n \"modifiers\": {},\n \"mdm_level\": \"straightforward\",\n \"medical_necessity_justification\": \"test_medical_necessity_justification\",\n \"total_charge_amount\": 1.0,\n \"expected_reimbursement\": 1.0,\n \"actual_reimbursement\": 1.0,\n \"scrubbing_status\": \"not_scrubbed\",\n \"scrubbing_results\": {},\n \"scrubbing_failures\": {},\n \"corrective_actions\": {},\n \"confidence_score\": 1.0,\n \"is_template_based\": true,\n \"template_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"reviewed_by_user_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"reviewed_at\": \"2026-03-06T13:58:31.760181\",\n \"submitted_at\": \"2026-03-06T13:58:31.760183\",\n \"paid_at\": \"2026-03-06T13:58:31.760186\",\n \"denial_reason\": \"test_denial_reason\",\n \"denial_code\": \"test_denial_code\",\n \"notes\": \"test_notes\"\n}", "options": { "raw": { "language": "json" } } } }, "response": [] }, { "name": "Delete", "request": { "method": "DELETE", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/claims/{{id}}", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "claims", "{{id}}" ], "variable": [ { "key": "id", "value": "123", "description": "Path parameter: id" } ] }, "description": "Delete Claim" }, "response": [] }, { "name": "Map Codes", "request": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/codes/map", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "codes", "map" ] }, "description": "Map entities to codes", "body": { "mode": "raw", "raw": "{\n \"claim_number\": \"test_claim_number\",\n \"patient_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"audio_recording_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"transcript_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"payer_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"encounter_id\": \"123\",\n \"service_date\": \"2026-03-06T13:58:31.760313\",\n \"created_by_user_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"status\": \"draft\",\n \"claim_type\": \"professional\",\n \"diagnosis_codes\": {},\n \"procedure_codes\": {},\n \"modifiers\": {},\n \"mdm_level\": \"straightforward\",\n \"medical_necessity_justification\": \"test_medical_necessity_justification\",\n \"total_charge_amount\": 1.0,\n \"expected_reimbursement\": 1.0,\n \"actual_reimbursement\": 1.0,\n \"scrubbing_status\": \"not_scrubbed\",\n \"scrubbing_results\": {},\n \"scrubbing_failures\": {},\n \"corrective_actions\": {},\n \"confidence_score\": 1.0,\n \"is_template_based\": true,\n \"template_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"reviewed_by_user_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"reviewed_at\": \"2026-03-06T13:58:31.760333\",\n \"submitted_at\": \"2026-03-06T13:58:31.760336\",\n \"paid_at\": \"2026-03-06T13:58:31.760338\",\n \"denial_reason\": \"test_denial_reason\",\n \"denial_code\": \"test_denial_code\",\n \"notes\": \"test_notes\"\n}", "options": { "raw": { "language": "json" } } } }, "response": [] }, { "name": "Search Icd10", "request": { "method": "GET", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/codes/icd10", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "codes", "icd10" ], "query": [ { "key": "page", "value": "1", "description": "Page number", "disabled": false }, { "key": "query", "value": "", "description": "", "disabled": false }, { "key": "limit", "value": "", "description": "", "disabled": true } ] }, "description": "Search ICD-10 codes" }, "response": [] }, { "name": "Search Cpt", "request": { "method": "GET", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/codes/cpt", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "codes", "cpt" ], "query": [ { "key": "page", "value": "1", "description": "Page number", "disabled": false }, { "key": "query", "value": "", "description": "", "disabled": false }, { "key": "specialty", "value": "", "description": "", "disabled": true }, { "key": "limit", "value": "", "description": "", "disabled": true } ] }, "description": "Search CPT codes" }, "response": [] }, { "name": "Get Modifiers", "request": { "method": "GET", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/codes/modifiers", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "codes", "modifiers" ], "query": [ { "key": "page", "value": "1", "description": "Page number", "disabled": false }, { "key": "limit", "value": "20", "description": "Items per page", "disabled": false }, { "key": "cpt_code", "value": "", "description": "", "disabled": true } ] }, "description": "Get CPT modifiers" }, "response": [] }, { "name": "Validate Codes", "request": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/codes/validate", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "codes", "validate" ] }, "description": "Validate code combinations", "body": { "mode": "raw", "raw": "{\n \"claim_number\": \"test_claim_number\",\n \"patient_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"audio_recording_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"transcript_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"payer_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"encounter_id\": \"123\",\n \"service_date\": \"2026-03-06T13:58:31.760496\",\n \"created_by_user_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"status\": \"draft\",\n \"claim_type\": \"professional\",\n \"diagnosis_codes\": {},\n \"procedure_codes\": {},\n \"modifiers\": {},\n \"mdm_level\": \"straightforward\",\n \"medical_necessity_justification\": \"test_medical_necessity_justification\",\n \"total_charge_amount\": 1.0,\n \"expected_reimbursement\": 1.0,\n \"actual_reimbursement\": 1.0,\n \"scrubbing_status\": \"not_scrubbed\",\n \"scrubbing_results\": {},\n \"scrubbing_failures\": {},\n \"corrective_actions\": {},\n \"confidence_score\": 1.0,\n \"is_template_based\": true,\n \"template_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"reviewed_by_user_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"reviewed_at\": \"2026-03-06T13:58:31.760515\",\n \"submitted_at\": \"2026-03-06T13:58:31.760517\",\n \"paid_at\": \"2026-03-06T13:58:31.760520\",\n \"denial_reason\": \"test_denial_reason\",\n \"denial_code\": \"test_denial_code\",\n \"notes\": \"test_notes\"\n}", "options": { "raw": { "language": "json" } } } }, "response": [] }, { "name": "Get Alternatives", "request": { "method": "GET", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/codes/alternatives", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "codes", "alternatives" ], "query": [ { "key": "page", "value": "1", "description": "Page number", "disabled": false }, { "key": "limit", "value": "20", "description": "Items per page", "disabled": false }, { "key": "code", "value": "", "description": "", "disabled": false }, { "key": "code_type", "value": "", "description": "", "disabled": false } ] }, "description": "Get alternative codes" }, "response": [] }, { "name": "Determine Mdm", "request": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/codes/mdm", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "codes", "mdm" ] }, "description": "Determine MDM level", "body": { "mode": "raw", "raw": "{\n \"claim_number\": \"test_claim_number\",\n \"patient_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"audio_recording_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"transcript_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"payer_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"encounter_id\": \"123\",\n \"service_date\": \"2026-03-06T13:58:31.760704\",\n \"created_by_user_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"status\": \"draft\",\n \"claim_type\": \"professional\",\n \"diagnosis_codes\": {},\n \"procedure_codes\": {},\n \"modifiers\": {},\n \"mdm_level\": \"straightforward\",\n \"medical_necessity_justification\": \"test_medical_necessity_justification\",\n \"total_charge_amount\": 1.0,\n \"expected_reimbursement\": 1.0,\n \"actual_reimbursement\": 1.0,\n \"scrubbing_status\": \"not_scrubbed\",\n \"scrubbing_results\": {},\n \"scrubbing_failures\": {},\n \"corrective_actions\": {},\n \"confidence_score\": 1.0,\n \"is_template_based\": true,\n \"template_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"reviewed_by_user_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"reviewed_at\": \"2026-03-06T13:58:31.760725\",\n \"submitted_at\": \"2026-03-06T13:58:31.760728\",\n \"paid_at\": \"2026-03-06T13:58:31.760730\",\n \"denial_reason\": \"test_denial_reason\",\n \"denial_code\": \"test_denial_code\",\n \"notes\": \"test_notes\"\n}", "options": { "raw": { "language": "json" } } } }, "response": [] } ], "description": "API endpoints for Claim entity" }, { "name": "ClaimReview", "item": [ { "name": "Find All", "request": { "method": "GET", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/claim-reviews", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "claim-reviews" ], "query": [ { "key": "page", "value": "1", "description": "Page number", "disabled": false }, { "key": "limit", "value": "20", "description": "Items per page", "disabled": false } ] }, "description": "Get all claim-reviews" }, "response": [] }, { "name": "Find By Id", "request": { "method": "GET", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/claim-reviews/{{id}}", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "claim-reviews", "{{id}}" ], "variable": [ { "key": "id", "value": "123", "description": "Path parameter: id" } ], "query": [ { "key": "page", "value": "1", "description": "Page number", "disabled": false }, { "key": "limit", "value": "20", "description": "Items per page", "disabled": false } ] }, "description": "Get ClaimReview by ID" }, "response": [] }, { "name": "Create", "request": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/claim-reviews", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "claim-reviews" ] }, "description": "Create new ClaimReview", "body": { "mode": "raw", "raw": "{\n \"claim_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"reviewer_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"review_status\": \"pending\",\n \"review_type\": \"low_confidence\",\n \"confidence_threshold_triggered\": true,\n \"original_icd10_codes\": {},\n \"original_cpt_codes\": {},\n \"revised_icd10_codes\": {},\n \"revised_cpt_codes\": {},\n \"reviewer_notes\": \"test_reviewer_notes\",\n \"flagged_issues\": {},\n \"corrective_actions\": {},\n \"review_duration_seconds\": 1,\n \"escalation_reason\": \"test_escalation_reason\",\n \"escalated_to_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"escalated_at\": \"2026-03-06T13:58:31.761031\",\n \"reviewed_at\": \"2026-03-06T13:58:31.761034\"\n}", "options": { "raw": { "language": "json" } } } }, "response": [] }, { "name": "Update", "request": { "method": "PUT", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/claim-reviews/{{id}}", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "claim-reviews", "{{id}}" ], "variable": [ { "key": "id", "value": "123", "description": "Path parameter: id" } ] }, "description": "Update ClaimReview", "body": { "mode": "raw", "raw": "{\n \"claim_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"reviewer_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"review_status\": \"pending\",\n \"review_type\": \"low_confidence\",\n \"confidence_threshold_triggered\": true,\n \"original_icd10_codes\": {},\n \"original_cpt_codes\": {},\n \"revised_icd10_codes\": {},\n \"revised_cpt_codes\": {},\n \"reviewer_notes\": \"test_reviewer_notes\",\n \"flagged_issues\": {},\n \"corrective_actions\": {},\n \"review_duration_seconds\": 1,\n \"escalation_reason\": \"test_escalation_reason\",\n \"escalated_to_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"escalated_at\": \"2026-03-06T13:58:31.761144\",\n \"reviewed_at\": \"2026-03-06T13:58:31.761147\"\n}", "options": { "raw": { "language": "json" } } } }, "response": [] }, { "name": "Delete", "request": { "method": "DELETE", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/claim-reviews/{{id}}", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "claim-reviews", "{{id}}" ], "variable": [ { "key": "id", "value": "123", "description": "Path parameter: id" } ] }, "description": "Delete ClaimReview" }, "response": [] }, { "name": "Create", "request": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/reviews", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "reviews" ] }, "description": "Create review task", "body": { "mode": "raw", "raw": "{\n \"claim_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"reviewer_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"review_status\": \"pending\",\n \"review_type\": \"low_confidence\",\n \"confidence_threshold_triggered\": true,\n \"original_icd10_codes\": {},\n \"original_cpt_codes\": {},\n \"revised_icd10_codes\": {},\n \"revised_cpt_codes\": {},\n \"reviewer_notes\": \"test_reviewer_notes\",\n \"flagged_issues\": {},\n \"corrective_actions\": {},\n \"review_duration_seconds\": 1,\n \"escalation_reason\": \"test_escalation_reason\",\n \"escalated_to_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"escalated_at\": \"2026-03-06T13:58:31.761262\",\n \"reviewed_at\": \"2026-03-06T13:58:31.761265\"\n}", "options": { "raw": { "language": "json" } } } }, "response": [] }, { "name": "Find One", "request": { "method": "GET", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/reviews/{{id}}", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "reviews", "{{id}}" ], "variable": [ { "key": "id", "value": "123", "description": "Path parameter: id" } ], "query": [ { "key": "page", "value": "1", "description": "Page number", "disabled": false }, { "key": "limit", "value": "20", "description": "Items per page", "disabled": false } ] }, "description": "Get review by ID" }, "response": [] }, { "name": "Find All", "request": { "method": "GET", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/reviews", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "reviews" ], "query": [ { "key": "claim_id", "value": "", "description": "", "disabled": true }, { "key": "assigned_to", "value": "", "description": "", "disabled": true }, { "key": "status", "value": "", "description": "", "disabled": true }, { "key": "priority", "value": "", "description": "", "disabled": true }, { "key": "page", "value": "", "description": "", "disabled": true }, { "key": "limit", "value": "", "description": "", "disabled": true } ] }, "description": "List reviews" }, "response": [] }, { "name": "Update", "request": { "method": "PATCH", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/reviews/{{id}}", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "reviews", "{{id}}" ], "variable": [ { "key": "id", "value": "123", "description": "Path parameter: id" } ] }, "description": "Update review", "body": { "mode": "raw", "raw": "{\n \"claim_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"reviewer_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"review_status\": \"pending\",\n \"review_type\": \"low_confidence\",\n \"confidence_threshold_triggered\": true,\n \"original_icd10_codes\": {},\n \"original_cpt_codes\": {},\n \"revised_icd10_codes\": {},\n \"revised_cpt_codes\": {},\n \"reviewer_notes\": \"test_reviewer_notes\",\n \"flagged_issues\": {},\n \"corrective_actions\": {},\n \"review_duration_seconds\": 1,\n \"escalation_reason\": \"test_escalation_reason\",\n \"escalated_to_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"escalated_at\": \"2026-03-06T13:58:31.761406\",\n \"reviewed_at\": \"2026-03-06T13:58:31.761409\"\n}", "options": { "raw": { "language": "json" } } } }, "response": [] }, { "name": "Approve", "request": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/reviews/{{id}}/approve", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "reviews", "{{id}}", "approve" ], "variable": [ { "key": "id", "value": "123", "description": "Path parameter: id" } ] }, "description": "Approve claim", "body": { "mode": "raw", "raw": "{\n \"claim_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"reviewer_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"review_status\": \"pending\",\n \"review_type\": \"low_confidence\",\n \"confidence_threshold_triggered\": true,\n \"original_icd10_codes\": {},\n \"original_cpt_codes\": {},\n \"revised_icd10_codes\": {},\n \"revised_cpt_codes\": {},\n \"reviewer_notes\": \"test_reviewer_notes\",\n \"flagged_issues\": {},\n \"corrective_actions\": {},\n \"review_duration_seconds\": 1,\n \"escalation_reason\": \"test_escalation_reason\",\n \"escalated_to_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"escalated_at\": \"2026-03-06T13:58:31.761513\",\n \"reviewed_at\": \"2026-03-06T13:58:31.761516\"\n}", "options": { "raw": { "language": "json" } } } }, "response": [] }, { "name": "Reject", "request": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/reviews/{{id}}/reject", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "reviews", "{{id}}", "reject" ], "variable": [ { "key": "id", "value": "123", "description": "Path parameter: id" } ] }, "description": "Reject claim", "body": { "mode": "raw", "raw": "{\n \"claim_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"reviewer_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"review_status\": \"pending\",\n \"review_type\": \"low_confidence\",\n \"confidence_threshold_triggered\": true,\n \"original_icd10_codes\": {},\n \"original_cpt_codes\": {},\n \"revised_icd10_codes\": {},\n \"revised_cpt_codes\": {},\n \"reviewer_notes\": \"test_reviewer_notes\",\n \"flagged_issues\": {},\n \"corrective_actions\": {},\n \"review_duration_seconds\": 1,\n \"escalation_reason\": \"test_escalation_reason\",\n \"escalated_to_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"escalated_at\": \"2026-03-06T13:58:31.761617\",\n \"reviewed_at\": \"2026-03-06T13:58:31.761620\"\n}", "options": { "raw": { "language": "json" } } } }, "response": [] }, { "name": "Escalate", "request": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/reviews/{{id}}/escalate", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "reviews", "{{id}}", "escalate" ], "variable": [ { "key": "id", "value": "123", "description": "Path parameter: id" } ] }, "description": "Escalate review", "body": { "mode": "raw", "raw": "{\n \"claim_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"reviewer_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"review_status\": \"pending\",\n \"review_type\": \"low_confidence\",\n \"confidence_threshold_triggered\": true,\n \"original_icd10_codes\": {},\n \"original_cpt_codes\": {},\n \"revised_icd10_codes\": {},\n \"revised_cpt_codes\": {},\n \"reviewer_notes\": \"test_reviewer_notes\",\n \"flagged_issues\": {},\n \"corrective_actions\": {},\n \"review_duration_seconds\": 1,\n \"escalation_reason\": \"test_escalation_reason\",\n \"escalated_to_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"escalated_at\": \"2026-03-06T13:58:31.761729\",\n \"reviewed_at\": \"2026-03-06T13:58:31.761732\"\n}", "options": { "raw": { "language": "json" } } } }, "response": [] }, { "name": "Get Queue", "request": { "method": "GET", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/reviews/queue", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "reviews", "queue" ], "query": [ { "key": "page", "value": "1", "description": "Page number", "disabled": false }, { "key": "limit", "value": "20", "description": "Items per page", "disabled": false }, { "key": "assigned_to", "value": "", "description": "", "disabled": true }, { "key": "priority", "value": "", "description": "", "disabled": true } ] }, "description": "Get review queue" }, "response": [] } ], "description": "API endpoints for ClaimReview entity" }, { "name": "AuditLog", "item": [ { "name": "Find All", "request": { "method": "GET", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/audit-logs", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "audit-logs" ], "query": [ { "key": "page", "value": "1", "description": "Page number", "disabled": false }, { "key": "limit", "value": "20", "description": "Items per page", "disabled": false } ] }, "description": "Get all audit-logs" }, "response": [] }, { "name": "Find By Id", "request": { "method": "GET", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/audit-logs/{{id}}", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "audit-logs", "{{id}}" ], "variable": [ { "key": "id", "value": "123", "description": "Path parameter: id" } ], "query": [ { "key": "page", "value": "1", "description": "Page number", "disabled": false }, { "key": "limit", "value": "20", "description": "Items per page", "disabled": false } ] }, "description": "Get AuditLog by ID" }, "response": [] }, { "name": "Create", "request": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/audit-logs", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "audit-logs" ] }, "description": "Create new AuditLog", "body": { "mode": "raw", "raw": "{\n \"user_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"entity_type\": \"test_entity_type\",\n \"entity_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"action\": \"create\",\n \"action_category\": \"claim\",\n \"old_values\": {},\n \"new_values\": {},\n \"changes_summary\": \"test_changes_summary\",\n \"ip_address\": \"test_ip_address\",\n \"user_agent\": \"test_user_agent\",\n \"session_id\": \"123\",\n \"request_id\": \"123\",\n \"status\": \"success\",\n \"error_message\": \"test_error_message\",\n \"metadata\": {},\n \"phi_accessed\": true,\n \"compliance_flag\": true\n}", "options": { "raw": { "language": "json" } } } }, "response": [] }, { "name": "Update", "request": { "method": "PUT", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/audit-logs/{{id}}", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "audit-logs", "{{id}}" ], "variable": [ { "key": "id", "value": "123", "description": "Path parameter: id" } ] }, "description": "Update AuditLog", "body": { "mode": "raw", "raw": "{\n \"user_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"entity_type\": \"test_entity_type\",\n \"entity_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"action\": \"create\",\n \"action_category\": \"claim\",\n \"old_values\": {},\n \"new_values\": {},\n \"changes_summary\": \"test_changes_summary\",\n \"ip_address\": \"test_ip_address\",\n \"user_agent\": \"test_user_agent\",\n \"session_id\": \"123\",\n \"request_id\": \"123\",\n \"status\": \"success\",\n \"error_message\": \"test_error_message\",\n \"metadata\": {},\n \"phi_accessed\": true,\n \"compliance_flag\": true\n}", "options": { "raw": { "language": "json" } } } }, "response": [] }, { "name": "Delete", "request": { "method": "DELETE", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/audit-logs/{{id}}", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "audit-logs", "{{id}}" ], "variable": [ { "key": "id", "value": "123", "description": "Path parameter: id" } ] }, "description": "Delete AuditLog" }, "response": [] }, { "name": "Create", "request": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/audit/logs", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "audit", "logs" ] }, "description": "Create audit log", "body": { "mode": "raw", "raw": "{\n \"user_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"entity_type\": \"test_entity_type\",\n \"entity_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"action\": \"create\",\n \"action_category\": \"claim\",\n \"old_values\": {},\n \"new_values\": {},\n \"changes_summary\": \"test_changes_summary\",\n \"ip_address\": \"test_ip_address\",\n \"user_agent\": \"test_user_agent\",\n \"session_id\": \"123\",\n \"request_id\": \"123\",\n \"status\": \"success\",\n \"error_message\": \"test_error_message\",\n \"metadata\": {},\n \"phi_accessed\": true,\n \"compliance_flag\": true\n}", "options": { "raw": { "language": "json" } } } }, "response": [] }, { "name": "Find One", "request": { "method": "GET", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/audit/logs/{{id}}", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "audit", "logs", "{{id}}" ], "variable": [ { "key": "id", "value": "123", "description": "Path parameter: id" } ], "query": [ { "key": "page", "value": "1", "description": "Page number", "disabled": false }, { "key": "limit", "value": "20", "description": "Items per page", "disabled": false } ] }, "description": "Get audit log by ID" }, "response": [] }, { "name": "Find All", "request": { "method": "GET", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/audit/logs", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "audit", "logs" ], "query": [ { "key": "user_id", "value": "", "description": "", "disabled": true }, { "key": "action", "value": "", "description": "", "disabled": true }, { "key": "entity_type", "value": "", "description": "", "disabled": true }, { "key": "entity_id", "value": "", "description": "", "disabled": true }, { "key": "date_from", "value": "", "description": "", "disabled": true }, { "key": "date_to", "value": "", "description": "", "disabled": true }, { "key": "page", "value": "", "description": "", "disabled": true }, { "key": "limit", "value": "", "description": "", "disabled": true } ] }, "description": "List audit logs" }, "response": [] }, { "name": "Get Entity History", "request": { "method": "GET", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/audit/logs/entity/{{entity_type}}/{{entity_id}}", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "audit", "logs", "entity", "{{entity_type}}", "{{entity_id}}" ], "variable": [ { "key": "entity_type", "value": "example", "description": "Path parameter: entity_type" }, { "key": "entity_id", "value": "123", "description": "Path parameter: entity_id" } ], "query": [ { "key": "page", "value": "1", "description": "Page number", "disabled": false }, { "key": "limit", "value": "20", "description": "Items per page", "disabled": false } ] }, "description": "Get entity audit history" }, "response": [] }, { "name": "Get User Activity", "request": { "method": "GET", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/audit/logs/user/{{user_id}}", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "audit", "logs", "user", "{{user_id}}" ], "variable": [ { "key": "user_id", "value": "123", "description": "Path parameter: user_id" } ], "query": [ { "key": "page", "value": "1", "description": "Page number", "disabled": false }, { "key": "limit", "value": "20", "description": "Items per page", "disabled": false }, { "key": "date_from", "value": "", "description": "", "disabled": true }, { "key": "date_to", "value": "", "description": "", "disabled": true } ] }, "description": "Get user activity" }, "response": [] }, { "name": "Export Logs", "request": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/audit/logs/export", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "audit", "logs", "export" ] }, "description": "Export audit logs", "body": { "mode": "raw", "raw": "{\n \"user_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"entity_type\": \"test_entity_type\",\n \"entity_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"action\": \"create\",\n \"action_category\": \"claim\",\n \"old_values\": {},\n \"new_values\": {},\n \"changes_summary\": \"test_changes_summary\",\n \"ip_address\": \"test_ip_address\",\n \"user_agent\": \"test_user_agent\",\n \"session_id\": \"123\",\n \"request_id\": \"123\",\n \"status\": \"success\",\n \"error_message\": \"test_error_message\",\n \"metadata\": {},\n \"phi_accessed\": true,\n \"compliance_flag\": true\n}", "options": { "raw": { "language": "json" } } } }, "response": [] } ], "description": "API endpoints for AuditLog entity" }, { "name": "DenialPattern", "item": [ { "name": "Find All", "request": { "method": "GET", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/denial-patterns", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "denial-patterns" ], "query": [ { "key": "page", "value": "1", "description": "Page number", "disabled": false }, { "key": "limit", "value": "20", "description": "Items per page", "disabled": false } ] }, "description": "Get all denial-patterns" }, "response": [] }, { "name": "Find By Id", "request": { "method": "GET", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/denial-patterns/{{id}}", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "denial-patterns", "{{id}}" ], "variable": [ { "key": "id", "value": "123", "description": "Path parameter: id" } ], "query": [ { "key": "page", "value": "1", "description": "Page number", "disabled": false }, { "key": "limit", "value": "20", "description": "Items per page", "disabled": false } ] }, "description": "Get DenialPattern by ID" }, "response": [] }, { "name": "Create", "request": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/denial-patterns", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "denial-patterns" ] }, "description": "Create new DenialPattern", "body": { "mode": "raw", "raw": "{\n \"payer_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"payer_name\": \"Test Payer_Name\",\n \"denial_code\": \"test_denial_code\",\n \"denial_reason\": \"test_denial_reason\",\n \"denial_category\": \"medical_necessity\",\n \"icd10_code\": \"test_icd10_code\",\n \"cpt_code\": \"test_cpt_code\",\n \"modifier\": \"test_modifier\",\n \"procedure_type\": \"test_procedure_type\",\n \"specialty\": \"neurosurgery\",\n \"occurrence_count\": 1,\n \"total_denied_amount\": 1.0,\n \"first_occurrence_date\": \"2026-03-06T13:58:31.763041\",\n \"last_occurrence_date\": \"2026-03-06T13:58:31.763048\",\n \"risk_score\": 1.0,\n \"resolution_strategy\": \"test_resolution_strategy\",\n \"preventive_actions\": {},\n \"related_lcd_ncd\": {},\n \"is_active\": true,\n \"notes\": \"test_notes\"\n}", "options": { "raw": { "language": "json" } } } }, "response": [] }, { "name": "Update", "request": { "method": "PUT", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/denial-patterns/{{id}}", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "denial-patterns", "{{id}}" ], "variable": [ { "key": "id", "value": "123", "description": "Path parameter: id" } ] }, "description": "Update DenialPattern", "body": { "mode": "raw", "raw": "{\n \"payer_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"payer_name\": \"Test Payer_Name\",\n \"denial_code\": \"test_denial_code\",\n \"denial_reason\": \"test_denial_reason\",\n \"denial_category\": \"medical_necessity\",\n \"icd10_code\": \"test_icd10_code\",\n \"cpt_code\": \"test_cpt_code\",\n \"modifier\": \"test_modifier\",\n \"procedure_type\": \"test_procedure_type\",\n \"specialty\": \"neurosurgery\",\n \"occurrence_count\": 1,\n \"total_denied_amount\": 1.0,\n \"first_occurrence_date\": \"2026-03-06T13:58:31.763205\",\n \"last_occurrence_date\": \"2026-03-06T13:58:31.763209\",\n \"risk_score\": 1.0,\n \"resolution_strategy\": \"test_resolution_strategy\",\n \"preventive_actions\": {},\n \"related_lcd_ncd\": {},\n \"is_active\": true,\n \"notes\": \"test_notes\"\n}", "options": { "raw": { "language": "json" } } } }, "response": [] }, { "name": "Delete", "request": { "method": "DELETE", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/denial-patterns/{{id}}", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "denial-patterns", "{{id}}" ], "variable": [ { "key": "id", "value": "123", "description": "Path parameter: id" } ] }, "description": "Delete DenialPattern" }, "response": [] }, { "name": "Get Metrics", "request": { "method": "GET", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/dashboard/metrics", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "dashboard", "metrics" ], "query": [ { "key": "page", "value": "1", "description": "Page number", "disabled": false }, { "key": "limit", "value": "20", "description": "Items per page", "disabled": false }, { "key": "date_from", "value": "", "description": "", "disabled": true }, { "key": "date_to", "value": "", "description": "", "disabled": true }, { "key": "payer_id", "value": "", "description": "", "disabled": true } ] }, "description": "Get dashboard metrics" }, "response": [] }, { "name": "Get Denial Patterns", "request": { "method": "GET", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/dashboard/denials", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "dashboard", "denials" ], "query": [ { "key": "page", "value": "1", "description": "Page number", "disabled": false }, { "key": "limit", "value": "20", "description": "Items per page", "disabled": false }, { "key": "date_from", "value": "", "description": "", "disabled": true }, { "key": "date_to", "value": "", "description": "", "disabled": true }, { "key": "payer_id", "value": "", "description": "", "disabled": true }, { "key": "code", "value": "", "description": "", "disabled": true } ] }, "description": "Get denial patterns" }, "response": [] }, { "name": "Get Accuracy Metrics", "request": { "method": "GET", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/dashboard/accuracy", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "dashboard", "accuracy" ], "query": [ { "key": "page", "value": "1", "description": "Page number", "disabled": false }, { "key": "limit", "value": "20", "description": "Items per page", "disabled": false }, { "key": "date_from", "value": "", "description": "", "disabled": true }, { "key": "date_to", "value": "", "description": "", "disabled": true } ] }, "description": "Get coding accuracy metrics" }, "response": [] }, { "name": "Get Throughput", "request": { "method": "GET", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/dashboard/throughput", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "dashboard", "throughput" ], "query": [ { "key": "page", "value": "1", "description": "Page number", "disabled": false }, { "key": "limit", "value": "20", "description": "Items per page", "disabled": false }, { "key": "date_from", "value": "", "description": "", "disabled": true }, { "key": "date_to", "value": "", "description": "", "disabled": true }, { "key": "granularity", "value": "", "description": "", "disabled": true } ] }, "description": "Get claim throughput" }, "response": [] }, { "name": "Get Revenue Metrics", "request": { "method": "GET", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/dashboard/revenue", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "dashboard", "revenue" ], "query": [ { "key": "page", "value": "1", "description": "Page number", "disabled": false }, { "key": "limit", "value": "20", "description": "Items per page", "disabled": false }, { "key": "date_from", "value": "", "description": "", "disabled": true }, { "key": "date_to", "value": "", "description": "", "disabled": true } ] }, "description": "Get revenue metrics" }, "response": [] }, { "name": "Get Payer Performance", "request": { "method": "GET", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/dashboard/payer-performance", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "dashboard", "payer-performance" ], "query": [ { "key": "page", "value": "1", "description": "Page number", "disabled": false }, { "key": "limit", "value": "20", "description": "Items per page", "disabled": false }, { "key": "date_from", "value": "", "description": "", "disabled": true }, { "key": "date_to", "value": "", "description": "", "disabled": true } ] }, "description": "Get payer performance" }, "response": [] }, { "name": "Get Code Usage", "request": { "method": "GET", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/dashboard/code-usage", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "dashboard", "code-usage" ], "query": [ { "key": "page", "value": "1", "description": "Page number", "disabled": false }, { "key": "limit", "value": "20", "description": "Items per page", "disabled": false }, { "key": "date_from", "value": "", "description": "", "disabled": true }, { "key": "date_to", "value": "", "description": "", "disabled": true }, { "key": "code_type", "value": "", "description": "", "disabled": true } ] }, "description": "Get code usage stats" }, "response": [] } ], "description": "API endpoints for DenialPattern entity" }, { "name": "EMRIntegration", "item": [ { "name": "Find All", "request": { "method": "GET", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/emr-integrations", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "emr-integrations" ], "query": [ { "key": "page", "value": "1", "description": "Page number", "disabled": false }, { "key": "limit", "value": "20", "description": "Items per page", "disabled": false } ] }, "description": "Get all emr-integrations" }, "response": [] }, { "name": "Find By Id", "request": { "method": "GET", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/emr-integrations/{{id}}", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "emr-integrations", "{{id}}" ], "variable": [ { "key": "id", "value": "123", "description": "Path parameter: id" } ], "query": [ { "key": "page", "value": "1", "description": "Page number", "disabled": false }, { "key": "limit", "value": "20", "description": "Items per page", "disabled": false } ] }, "description": "Get EMRIntegration by ID" }, "response": [] }, { "name": "Create", "request": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/emr-integrations", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "emr-integrations" ] }, "description": "Create new EMRIntegration", "body": { "mode": "raw", "raw": "{\n \"organization_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"emr_system\": \"epic\",\n \"emr_version\": \"test_emr_version\",\n \"integration_type\": \"fhir\",\n \"fhir_base_url\": \"test_fhir_base_url\",\n \"api_endpoint\": \"test_api_endpoint\",\n \"auth_type\": \"oauth2\",\n \"client_id\": \"123\",\n \"client_secret_encrypted\": \"test_client_secret_encrypted\",\n \"api_key_encrypted\": \"test_api_key_encrypted\",\n \"token_url\": \"test_token_url\",\n \"scopes\": {},\n \"connection_status\": \"pending_approval\",\n \"approval_status\": \"pending\",\n \"approval_date\": \"2026-03-06T13:58:31.763666\",\n \"epic_approval_months_estimate\": 1,\n \"data_mappings\": {},\n \"supported_resources\": {},\n \"sync_frequency_minutes\": 15,\n \"last_sync_at\": \"2026-03-06T13:58:31.763677\",\n \"last_sync_status\": \"success\",\n \"last_error_message\": \"test_last_error_message\",\n \"retry_count\": 1,\n \"max_retries\": 3,\n \"timeout_seconds\": 30,\n \"rate_limit_per_minute\": 1,\n \"use_mock_data\": true,\n \"configuration_notes\": \"test_configuration_notes\",\n \"created_by_id\": \"550e8400-e29b-41d4-a716-446655440000\"\n}", "options": { "raw": { "language": "json" } } } }, "response": [] }, { "name": "Update", "request": { "method": "PUT", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/emr-integrations/{{id}}", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "emr-integrations", "{{id}}" ], "variable": [ { "key": "id", "value": "123", "description": "Path parameter: id" } ] }, "description": "Update EMRIntegration", "body": { "mode": "raw", "raw": "{\n \"organization_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"emr_system\": \"epic\",\n \"emr_version\": \"test_emr_version\",\n \"integration_type\": \"fhir\",\n \"fhir_base_url\": \"test_fhir_base_url\",\n \"api_endpoint\": \"test_api_endpoint\",\n \"auth_type\": \"oauth2\",\n \"client_id\": \"123\",\n \"client_secret_encrypted\": \"test_client_secret_encrypted\",\n \"api_key_encrypted\": \"test_api_key_encrypted\",\n \"token_url\": \"test_token_url\",\n \"scopes\": {},\n \"connection_status\": \"pending_approval\",\n \"approval_status\": \"pending\",\n \"approval_date\": \"2026-03-06T13:58:31.763822\",\n \"epic_approval_months_estimate\": 1,\n \"data_mappings\": {},\n \"supported_resources\": {},\n \"sync_frequency_minutes\": 15,\n \"last_sync_at\": \"2026-03-06T13:58:31.763830\",\n \"last_sync_status\": \"success\",\n \"last_error_message\": \"test_last_error_message\",\n \"retry_count\": 1,\n \"max_retries\": 3,\n \"timeout_seconds\": 30,\n \"rate_limit_per_minute\": 1,\n \"use_mock_data\": true,\n \"configuration_notes\": \"test_configuration_notes\",\n \"created_by_id\": \"550e8400-e29b-41d4-a716-446655440000\"\n}", "options": { "raw": { "language": "json" } } } }, "response": [] }, { "name": "Delete", "request": { "method": "DELETE", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/emr-integrations/{{id}}", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "emr-integrations", "{{id}}" ], "variable": [ { "key": "id", "value": "123", "description": "Path parameter: id" } ] }, "description": "Delete EMRIntegration" }, "response": [] }, { "name": "Create", "request": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/emr/integrations", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "emr", "integrations" ] }, "description": "Create EMR integration", "body": { "mode": "raw", "raw": "{\n \"organization_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"emr_system\": \"epic\",\n \"emr_version\": \"test_emr_version\",\n \"integration_type\": \"fhir\",\n \"fhir_base_url\": \"test_fhir_base_url\",\n \"api_endpoint\": \"test_api_endpoint\",\n \"auth_type\": \"oauth2\",\n \"client_id\": \"123\",\n \"client_secret_encrypted\": \"test_client_secret_encrypted\",\n \"api_key_encrypted\": \"test_api_key_encrypted\",\n \"token_url\": \"test_token_url\",\n \"scopes\": {},\n \"connection_status\": \"pending_approval\",\n \"approval_status\": \"pending\",\n \"approval_date\": \"2026-03-06T13:58:31.763966\",\n \"epic_approval_months_estimate\": 1,\n \"data_mappings\": {},\n \"supported_resources\": {},\n \"sync_frequency_minutes\": 15,\n \"last_sync_at\": \"2026-03-06T13:58:31.763973\",\n \"last_sync_status\": \"success\",\n \"last_error_message\": \"test_last_error_message\",\n \"retry_count\": 1,\n \"max_retries\": 3,\n \"timeout_seconds\": 30,\n \"rate_limit_per_minute\": 1,\n \"use_mock_data\": true,\n \"configuration_notes\": \"test_configuration_notes\",\n \"created_by_id\": \"550e8400-e29b-41d4-a716-446655440000\"\n}", "options": { "raw": { "language": "json" } } } }, "response": [] }, { "name": "Find One", "request": { "method": "GET", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/emr/integrations/{{id}}", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "emr", "integrations", "{{id}}" ], "variable": [ { "key": "id", "value": "123", "description": "Path parameter: id" } ], "query": [ { "key": "page", "value": "1", "description": "Page number", "disabled": false }, { "key": "limit", "value": "20", "description": "Items per page", "disabled": false } ] }, "description": "Get integration by ID" }, "response": [] }, { "name": "Find All", "request": { "method": "GET", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/emr/integrations", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "emr", "integrations" ], "query": [ { "key": "page", "value": "1", "description": "Page number", "disabled": false }, { "key": "limit", "value": "20", "description": "Items per page", "disabled": false }, { "key": "emr_system", "value": "", "description": "", "disabled": true }, { "key": "active", "value": "", "description": "", "disabled": true } ] }, "description": "List EMR integrations" }, "response": [] }, { "name": "Update", "request": { "method": "PATCH", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/emr/integrations/{{id}}", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "emr", "integrations", "{{id}}" ], "variable": [ { "key": "id", "value": "123", "description": "Path parameter: id" } ] }, "description": "Update integration", "body": { "mode": "raw", "raw": "{\n \"organization_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"emr_system\": \"epic\",\n \"emr_version\": \"test_emr_version\",\n \"integration_type\": \"fhir\",\n \"fhir_base_url\": \"test_fhir_base_url\",\n \"api_endpoint\": \"test_api_endpoint\",\n \"auth_type\": \"oauth2\",\n \"client_id\": \"123\",\n \"client_secret_encrypted\": \"test_client_secret_encrypted\",\n \"api_key_encrypted\": \"test_api_key_encrypted\",\n \"token_url\": \"test_token_url\",\n \"scopes\": {},\n \"connection_status\": \"pending_approval\",\n \"approval_status\": \"pending\",\n \"approval_date\": \"2026-03-06T13:58:31.764133\",\n \"epic_approval_months_estimate\": 1,\n \"data_mappings\": {},\n \"supported_resources\": {},\n \"sync_frequency_minutes\": 15,\n \"last_sync_at\": \"2026-03-06T13:58:31.764140\",\n \"last_sync_status\": \"success\",\n \"last_error_message\": \"test_last_error_message\",\n \"retry_count\": 1,\n \"max_retries\": 3,\n \"timeout_seconds\": 30,\n \"rate_limit_per_minute\": 1,\n \"use_mock_data\": true,\n \"configuration_notes\": \"test_configuration_notes\",\n \"created_by_id\": \"550e8400-e29b-41d4-a716-446655440000\"\n}", "options": { "raw": { "language": "json" } } } }, "response": [] }, { "name": "Test Connection", "request": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/emr/integrations/{{id}}/test", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "emr", "integrations", "{{id}}", "test" ], "variable": [ { "key": "id", "value": "123", "description": "Path parameter: id" } ] }, "description": "Test EMR connection", "body": { "mode": "raw", "raw": "{\n \"organization_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"emr_system\": \"epic\",\n \"emr_version\": \"test_emr_version\",\n \"integration_type\": \"fhir\",\n \"fhir_base_url\": \"test_fhir_base_url\",\n \"api_endpoint\": \"test_api_endpoint\",\n \"auth_type\": \"oauth2\",\n \"client_id\": \"123\",\n \"client_secret_encrypted\": \"test_client_secret_encrypted\",\n \"api_key_encrypted\": \"test_api_key_encrypted\",\n \"token_url\": \"test_token_url\",\n \"scopes\": {},\n \"connection_status\": \"pending_approval\",\n \"approval_status\": \"pending\",\n \"approval_date\": \"2026-03-06T13:58:31.764266\",\n \"epic_approval_months_estimate\": 1,\n \"data_mappings\": {},\n \"supported_resources\": {},\n \"sync_frequency_minutes\": 15,\n \"last_sync_at\": \"2026-03-06T13:58:31.764272\",\n \"last_sync_status\": \"success\",\n \"last_error_message\": \"test_last_error_message\",\n \"retry_count\": 1,\n \"max_retries\": 3,\n \"timeout_seconds\": 30,\n \"rate_limit_per_minute\": 1,\n \"use_mock_data\": true,\n \"configuration_notes\": \"test_configuration_notes\",\n \"created_by_id\": \"550e8400-e29b-41d4-a716-446655440000\"\n}", "options": { "raw": { "language": "json" } } } }, "response": [] }, { "name": "Get Patient", "request": { "method": "GET", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/emr/patients/{{mrn}}", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "emr", "patients", "{{mrn}}" ], "variable": [ { "key": "mrn", "value": "example", "description": "Path parameter: mrn" } ], "query": [ { "key": "page", "value": "1", "description": "Page number", "disabled": false }, { "key": "limit", "value": "20", "description": "Items per page", "disabled": false }, { "key": "emr_system", "value": "", "description": "", "disabled": true } ] }, "description": "Get patient from EMR" }, "response": [] }, { "name": "Get Encounter", "request": { "method": "GET", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/emr/encounters/{{encounter_id}}", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "emr", "encounters", "{{encounter_id}}" ], "variable": [ { "key": "encounter_id", "value": "123", "description": "Path parameter: encounter_id" } ], "query": [ { "key": "page", "value": "1", "description": "Page number", "disabled": false }, { "key": "limit", "value": "20", "description": "Items per page", "disabled": false }, { "key": "emr_system", "value": "", "description": "", "disabled": true } ] }, "description": "Get encounter from EMR" }, "response": [] }, { "name": "Export Claim", "request": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/emr/claims/export", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "emr", "claims", "export" ] }, "description": "Export claim to EMR", "body": { "mode": "raw", "raw": "{\n \"organization_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"emr_system\": \"epic\",\n \"emr_version\": \"test_emr_version\",\n \"integration_type\": \"fhir\",\n \"fhir_base_url\": \"test_fhir_base_url\",\n \"api_endpoint\": \"test_api_endpoint\",\n \"auth_type\": \"oauth2\",\n \"client_id\": \"123\",\n \"client_secret_encrypted\": \"test_client_secret_encrypted\",\n \"api_key_encrypted\": \"test_api_key_encrypted\",\n \"token_url\": \"test_token_url\",\n \"scopes\": {},\n \"connection_status\": \"pending_approval\",\n \"approval_status\": \"pending\",\n \"approval_date\": \"2026-03-06T13:58:31.764598\",\n \"epic_approval_months_estimate\": 1,\n \"data_mappings\": {},\n \"supported_resources\": {},\n \"sync_frequency_minutes\": 15,\n \"last_sync_at\": \"2026-03-06T13:58:31.764605\",\n \"last_sync_status\": \"success\",\n \"last_error_message\": \"test_last_error_message\",\n \"retry_count\": 1,\n \"max_retries\": 3,\n \"timeout_seconds\": 30,\n \"rate_limit_per_minute\": 1,\n \"use_mock_data\": true,\n \"configuration_notes\": \"test_configuration_notes\",\n \"created_by_id\": \"550e8400-e29b-41d4-a716-446655440000\"\n}", "options": { "raw": { "language": "json" } } } }, "response": [] }, { "name": "Search Patients", "request": { "method": "GET", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/emr/patients/search", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "emr", "patients", "search" ], "query": [ { "key": "page", "value": "1", "description": "Page number", "disabled": false }, { "key": "limit", "value": "20", "description": "Items per page", "disabled": false }, { "key": "query", "value": "", "description": "", "disabled": false }, { "key": "emr_system", "value": "", "description": "", "disabled": true } ] }, "description": "Search patients in EMR" }, "response": [] } ], "description": "API endpoints for EMRIntegration entity" }, { "name": "ClaimScrubResult", "item": [ { "name": "Find All", "request": { "method": "GET", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/claim-scrub-results", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "claim-scrub-results" ], "query": [ { "key": "page", "value": "1", "description": "Page number", "disabled": false }, { "key": "limit", "value": "20", "description": "Items per page", "disabled": false } ] }, "description": "Get all claim-scrub-results" }, "response": [] }, { "name": "Find By Id", "request": { "method": "GET", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/claim-scrub-results/{{id}}", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "claim-scrub-results", "{{id}}" ], "variable": [ { "key": "id", "value": "123", "description": "Path parameter: id" } ], "query": [ { "key": "page", "value": "1", "description": "Page number", "disabled": false }, { "key": "limit", "value": "20", "description": "Items per page", "disabled": false } ] }, "description": "Get ClaimScrubResult by ID" }, "response": [] }, { "name": "Create", "request": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/claim-scrub-results", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "claim-scrub-results" ] }, "description": "Create new ClaimScrubResult", "body": { "mode": "raw", "raw": "{\n \"claim_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"scrub_status\": \"passed\",\n \"overall_risk_level\": \"low\",\n \"total_checks\": 1,\n \"passed_checks\": 1,\n \"failed_checks\": 1,\n \"warning_checks\": 1,\n \"ncci_violations\": {},\n \"lcd_violations\": {},\n \"ncd_violations\": {},\n \"payer_rule_violations\": {},\n \"coding_errors\": {},\n \"medical_necessity_issues\": {},\n \"modifier_issues\": {},\n \"bundling_issues\": {},\n \"denial_risk_patterns\": {},\n \"corrective_actions\": {},\n \"suggested_codes\": {},\n \"rag_documents_used\": {},\n \"scrub_engine_version\": \"test_scrub_engine_version\",\n \"processing_time_ms\": 1,\n \"auto_fix_applied\": true,\n \"auto_fix_details\": {},\n \"requires_manual_review\": true,\n \"review_priority\": \"low\",\n \"scrubbed_at\": \"CURRENT_TIMESTAMP\"\n}", "options": { "raw": { "language": "json" } } } }, "response": [] }, { "name": "Update", "request": { "method": "PUT", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/claim-scrub-results/{{id}}", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "claim-scrub-results", "{{id}}" ], "variable": [ { "key": "id", "value": "123", "description": "Path parameter: id" } ] }, "description": "Update ClaimScrubResult", "body": { "mode": "raw", "raw": "{\n \"claim_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"scrub_status\": \"passed\",\n \"overall_risk_level\": \"low\",\n \"total_checks\": 1,\n \"passed_checks\": 1,\n \"failed_checks\": 1,\n \"warning_checks\": 1,\n \"ncci_violations\": {},\n \"lcd_violations\": {},\n \"ncd_violations\": {},\n \"payer_rule_violations\": {},\n \"coding_errors\": {},\n \"medical_necessity_issues\": {},\n \"modifier_issues\": {},\n \"bundling_issues\": {},\n \"denial_risk_patterns\": {},\n \"corrective_actions\": {},\n \"suggested_codes\": {},\n \"rag_documents_used\": {},\n \"scrub_engine_version\": \"test_scrub_engine_version\",\n \"processing_time_ms\": 1,\n \"auto_fix_applied\": true,\n \"auto_fix_details\": {},\n \"requires_manual_review\": true,\n \"review_priority\": \"low\",\n \"scrubbed_at\": \"CURRENT_TIMESTAMP\"\n}", "options": { "raw": { "language": "json" } } } }, "response": [] }, { "name": "Delete", "request": { "method": "DELETE", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/claim-scrub-results/{{id}}", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "claim-scrub-results", "{{id}}" ], "variable": [ { "key": "id", "value": "123", "description": "Path parameter: id" } ] }, "description": "Delete ClaimScrubResult" }, "response": [] }, { "name": "Scrub Claim", "request": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/claims/scrub", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "claims", "scrub" ] }, "description": "Scrub claim against rules", "body": { "mode": "raw", "raw": "{\n \"claim_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"scrub_status\": \"passed\",\n \"overall_risk_level\": \"low\",\n \"total_checks\": 1,\n \"passed_checks\": 1,\n \"failed_checks\": 1,\n \"warning_checks\": 1,\n \"ncci_violations\": {},\n \"lcd_violations\": {},\n \"ncd_violations\": {},\n \"payer_rule_violations\": {},\n \"coding_errors\": {},\n \"medical_necessity_issues\": {},\n \"modifier_issues\": {},\n \"bundling_issues\": {},\n \"denial_risk_patterns\": {},\n \"corrective_actions\": {},\n \"suggested_codes\": {},\n \"rag_documents_used\": {},\n \"scrub_engine_version\": \"test_scrub_engine_version\",\n \"processing_time_ms\": 1,\n \"auto_fix_applied\": true,\n \"auto_fix_details\": {},\n \"requires_manual_review\": true,\n \"review_priority\": \"low\",\n \"scrubbed_at\": \"CURRENT_TIMESTAMP\"\n}", "options": { "raw": { "language": "json" } } } }, "response": [] }, { "name": "Get Scrub Result", "request": { "method": "GET", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/claims/scrub/{{id}}", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "claims", "scrub", "{{id}}" ], "variable": [ { "key": "id", "value": "123", "description": "Path parameter: id" } ], "query": [ { "key": "page", "value": "1", "description": "Page number", "disabled": false }, { "key": "limit", "value": "20", "description": "Items per page", "disabled": false } ] }, "description": "Get scrub result" }, "response": [] }, { "name": "Rerun Scrub", "request": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/claims/scrub/{{id}}/rerun", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "claims", "scrub", "{{id}}", "rerun" ], "variable": [ { "key": "id", "value": "123", "description": "Path parameter: id" } ] }, "description": "Rerun claim scrubbing", "body": { "mode": "raw", "raw": "{\n \"claim_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"scrub_status\": \"passed\",\n \"overall_risk_level\": \"low\",\n \"total_checks\": 1,\n \"passed_checks\": 1,\n \"failed_checks\": 1,\n \"warning_checks\": 1,\n \"ncci_violations\": {},\n \"lcd_violations\": {},\n \"ncd_violations\": {},\n \"payer_rule_violations\": {},\n \"coding_errors\": {},\n \"medical_necessity_issues\": {},\n \"modifier_issues\": {},\n \"bundling_issues\": {},\n \"denial_risk_patterns\": {},\n \"corrective_actions\": {},\n \"suggested_codes\": {},\n \"rag_documents_used\": {},\n \"scrub_engine_version\": \"test_scrub_engine_version\",\n \"processing_time_ms\": 1,\n \"auto_fix_applied\": true,\n \"auto_fix_details\": {},\n \"requires_manual_review\": true,\n \"review_priority\": \"low\",\n \"scrubbed_at\": \"CURRENT_TIMESTAMP\"\n}", "options": { "raw": { "language": "json" } } } }, "response": [] }, { "name": "Validate Ncci", "request": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/claims/validate/ncci", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "claims", "validate", "ncci" ] }, "description": "Validate NCCI edits", "body": { "mode": "raw", "raw": "{\n \"claim_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"scrub_status\": \"passed\",\n \"overall_risk_level\": \"low\",\n \"total_checks\": 1,\n \"passed_checks\": 1,\n \"failed_checks\": 1,\n \"warning_checks\": 1,\n \"ncci_violations\": {},\n \"lcd_violations\": {},\n \"ncd_violations\": {},\n \"payer_rule_violations\": {},\n \"coding_errors\": {},\n \"medical_necessity_issues\": {},\n \"modifier_issues\": {},\n \"bundling_issues\": {},\n \"denial_risk_patterns\": {},\n \"corrective_actions\": {},\n \"suggested_codes\": {},\n \"rag_documents_used\": {},\n \"scrub_engine_version\": \"test_scrub_engine_version\",\n \"processing_time_ms\": 1,\n \"auto_fix_applied\": true,\n \"auto_fix_details\": {},\n \"requires_manual_review\": true,\n \"review_priority\": \"low\",\n \"scrubbed_at\": \"CURRENT_TIMESTAMP\"\n}", "options": { "raw": { "language": "json" } } } }, "response": [] }, { "name": "Validate Lcd", "request": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/claims/validate/lcd", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "claims", "validate", "lcd" ] }, "description": "Validate LCD coverage", "body": { "mode": "raw", "raw": "{\n \"claim_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"scrub_status\": \"passed\",\n \"overall_risk_level\": \"low\",\n \"total_checks\": 1,\n \"passed_checks\": 1,\n \"failed_checks\": 1,\n \"warning_checks\": 1,\n \"ncci_violations\": {},\n \"lcd_violations\": {},\n \"ncd_violations\": {},\n \"payer_rule_violations\": {},\n \"coding_errors\": {},\n \"medical_necessity_issues\": {},\n \"modifier_issues\": {},\n \"bundling_issues\": {},\n \"denial_risk_patterns\": {},\n \"corrective_actions\": {},\n \"suggested_codes\": {},\n \"rag_documents_used\": {},\n \"scrub_engine_version\": \"test_scrub_engine_version\",\n \"processing_time_ms\": 1,\n \"auto_fix_applied\": true,\n \"auto_fix_details\": {},\n \"requires_manual_review\": true,\n \"review_priority\": \"low\",\n \"scrubbed_at\": \"CURRENT_TIMESTAMP\"\n}", "options": { "raw": { "language": "json" } } } }, "response": [] }, { "name": "Validate Ncd", "request": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/claims/validate/ncd", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "claims", "validate", "ncd" ] }, "description": "Validate NCD coverage", "body": { "mode": "raw", "raw": "{\n \"claim_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n \"scrub_status\": \"passed\",\n \"overall_risk_level\": \"low\",\n \"total_checks\": 1,\n \"passed_checks\": 1,\n \"failed_checks\": 1,\n \"warning_checks\": 1,\n \"ncci_violations\": {},\n \"lcd_violations\": {},\n \"ncd_violations\": {},\n \"payer_rule_violations\": {},\n \"coding_errors\": {},\n \"medical_necessity_issues\": {},\n \"modifier_issues\": {},\n \"bundling_issues\": {},\n \"denial_risk_patterns\": {},\n \"corrective_actions\": {},\n \"suggested_codes\": {},\n \"rag_documents_used\": {},\n \"scrub_engine_version\": \"test_scrub_engine_version\",\n \"processing_time_ms\": 1,\n \"auto_fix_applied\": true,\n \"auto_fix_details\": {},\n \"requires_manual_review\": true,\n \"review_priority\": \"low\",\n \"scrubbed_at\": \"CURRENT_TIMESTAMP\"\n}", "options": { "raw": { "language": "json" } } } }, "response": [] }, { "name": "Get Failures", "request": { "method": "GET", "header": [ { "key": "Content-Type", "value": "application/json", "type": "text" }, { "key": "Authorization", "value": "Bearer {{access_token}}", "type": "text", "description": "JWT access token" } ], "url": { "raw": "{{base_url}}/api/v1/claims/scrub/failures", "host": [ "{{base_url}}" ], "path": [ "api", "v1", "claims", "scrub", "failures" ], "query": [ { "key": "claim_id", "value": "", "description": "", "disabled": true }, { "key": "payer_id", "value": "", "description": "", "disabled": true }, { "key": "page", "value": "", "description": "", "disabled": true }, { "key": "limit", "value": "", "description": "", "disabled": true } ] }, "description": "Get scrub failures" }, "response": [] } ], "description": "API endpoints for ClaimScrubResult entity" } ], "variable": [ { "key": "base_url", "value": "http://localhost:3000", "type": "string" }, { "key": "api_prefix", "value": "/api/v1", "type": "string" } ] }