i-Claim
  1. Policy Management
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. Policy Management

Get Schema

GET
/policy/get/{schema_id}
Policy Management
This endpoint retrieves a schema based on the provided policy_id. Users must specify the
policy_id of the desired schema to obtain its details. This endpoint enables users to access
specific schema information by supplying the corresponding policy_id as a parameter.

Request

Path Params
policy_id
string 
Policy Id
required
Unique ID used to identify policy used by patient
schema_id
string 
required

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 '/policy/get/'

Responses

🟢200OK
application/json
Successful Response
Body
status
boolean 
Status
required
msg
string 
Msg
required
data
object (RuleBook) 
required
rulePackage
string 
Rulepackage
required
grades
array[string]
Grades
required
currency
string 
Currency
required
limit
number 
Limit
required
limits
object (Limits) 
required
rules
array[object (Rules) {2}] 
Rules
required
Example
{
    "status": true,
    "msg": "string",
    "data": {
        "rulePackage": "string",
        "grades": [
            "string"
        ],
        "currency": "string",
        "limit": 0,
        "limits": {
            "hospitalization": 0,
            "pathology": 0,
            "radiology": 0,
            "physiotherapy": 0,
            "dental": 0,
            "optical": 0,
            "drugs": 0,
            "anesthetic": 0,
            "consultation": 0,
            "gynaecology": 0,
            "maternity": 0,
            "hearing_aids": 0
        },
        "rules": [
            {
                "id": 0,
                "rule": "string"
            }
        ]
    }
}
🟠422Parameter Error
Modified at 2024-12-07 17:10:47
Previous
Converse Stream
Next
Get All Schema
Built with