{ "opencollection": "1.0.0", "info": { "name": "Majesco Insurance Policy Administration Billing Claims API", "version": "1.0.0" }, "request": { "auth": { "type": "oauth2", "flow": "client_credentials", "accessTokenUrl": "https://auth.majesco.example.com/oauth2/token", "credentials": { "clientId": "{{clientId}}", "clientSecret": "{{clientSecret}}" } } }, "items": [ { "info": { "name": "Claims", "type": "folder" }, "items": [ { "info": { "name": "List claims", "type": "http" }, "http": { "method": "GET", "url": "https://api.majesco.example.com/v1/claims", "params": [ { "name": "status", "value": "", "type": "query" }, { "name": "policyNumber", "value": "", "type": "query" }, { "name": "claimDateFrom", "value": "", "type": "query" }, { "name": "pageSize", "value": "", "type": "query" } ] }, "docs": "Retrieve a paginated list of claims with optional filters." }, { "info": { "name": "Create a new claim", "type": "http" }, "http": { "method": "POST", "url": "https://api.majesco.example.com/v1/claims", "body": { "type": "json", "data": "{}" } }, "docs": "Submit a first notice of loss (FNOL) for a policy." }, { "info": { "name": "Get claim details", "type": "http" }, "http": { "method": "GET", "url": "https://api.majesco.example.com/v1/claims/:claimNumber", "params": [ { "name": "claimNumber", "value": "", "type": "path" } ] }, "docs": "Retrieve full details of a claim including loss details, coverage, reserves, and payment history." } ] } ], "bundled": true }