i-Claim
  1. Reports
i-Claim
  • Process Claim
    • Process Claim Indepth
      POST
  • Reports
    • Get Claim Report
      GET
    • Get Claim Reports
      GET
    • Get All Reports
      GET
  • Converse
    • Converse General
      POST
    • Converse Stream
      POST
  • Policy Management
    • Get Schema
      GET
    • Get All Schema
      GET
    • Create Schema
      POST
    • Update Policy
      POST
    • Delete Policy
      DELETE
  • Insights
    • Total Processed Claims
      GET
    • Total Discrepancies Found
      GET
    • Get Error Insights
      POST
  • Tariff Management
    • Update Tariff Pricing
      POST
    • Update Tariff By Percentage
      POST
    • Rebase Tariffs
      POST
    • Get Tariff Types
      GET
    • Get All Tariffs
      GET
    • Check Custom Tariff Use
      GET
    • Use Default Tariffs
      GET
  • Provider Management
    • Add Provider
      POST
    • Add Providers
      POST
    • Get Provider
      GET
    • Get All Providers
      GET
    • Update Provider
      POST
    • Remove Provider
      DELETE
  • Neural Center
    • Add Revision
    • List Revisions
    • Get Revision
    • Remove Revision
    • Create Chronos
    • Astra
    • Create Chronos
    • Astra
    • Create Chronos
    • Astra
  • Index
    GET
  1. Reports

Get Claim Report

GET
/claim/report/get_report/{report_id}/
Reports
This endpoint retrieves a claim report using the report_id. The returned report will contain details of the
original claim and the report

Request

Path Params
report_id
string 
Report Id
required
Unique id used to identify processed claim, returns report with original claim

Request samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/claim/report/get_report//'

Responses

🟢200OK
application/json
Successful Response
Body
status
boolean 
Status
required
msg
string 
Msg
required
data
object (ResGRUIData) 
required
report_id
string 
Report Id
required
processed
string 
Processed
required
report
string 
Report
required
original_claim
object (ClaimFormSchema) 
required
Example
{
    "status": true,
    "msg": "string",
    "data": {
        "report_id": "string",
        "processed": "string",
        "report": "string",
        "original_claim": {
            "claim_id": "string",
            "provider": "string",
            "period": "string",
            "schema_id": "string",
            "auth_code": "string",
            "claim_details": [
                {
                    "tariff_code": 0,
                    "start_date": "string",
                    "end_date": "string",
                    "units": 0,
                    "amount_charged": 0,
                    "mods": "string"
                }
            ],
            "icd_coding": [
                "string"
            ],
            "date_submitted": "string",
            "reason": "string"
        }
    }
}
🟠422Parameter Error
Modified at 2024-12-07 17:10:47
Previous
Process Claim Indepth
Next
Get Claim Reports
Built with