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 Reports

GET
/claim/report/get_user_reports/
Reports
This endpoint retrieves an array of reports associated with a specific member ID member_id
and the date processed date_processed.
The returned array contains all reports linked to the provided member ID and date processed,
facilitating comprehensive access to relevant information for analysis and review.
NB processed parameter can be left out to retrieve all claims under the specified member_id.

Request

Path Params
member_id
string 
Member Id
required
Unique id used to identify processed claim
Query Params
processed
Processed
optional
Date claim processed/submitted
Any of

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_user_reports/'

Responses

🟢200OK
application/json
Successful Response
Body
status
boolean 
Status
required
msg
string 
Msg
required
data
array[object (ResGRUIData) {4}] 
Data
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
Get Claim Report
Next
Get All Reports
Built with