{ "opencollection": "1.0.0", "info": { "name": "Orion Health FHIR Alerts Lookup Tables API", "version": "1.0.0" }, "request": { "auth": { "type": "oauth2", "flow": "authorization_code", "authorizationUrl": "https://auth.orionhealth.com/oauth2/authorize", "accessTokenUrl": "https://auth.orionhealth.com/oauth2/token", "credentials": { "clientId": "{{clientId}}", "clientSecret": "{{clientSecret}}" } } }, "items": [ { "info": { "name": "Lookup Tables", "type": "folder" }, "items": [ { "info": { "name": "Orion Health List lookup tables", "type": "http" }, "http": { "method": "GET", "url": "https://api.orionhealth.com/fhir/lookup-tables", "params": [ { "name": "search", "value": "", "type": "query", "description": "Search by table name" }, { "name": "offset", "value": "", "type": "query", "description": "Number of items to skip" }, { "name": "limit", "value": "", "type": "query", "description": "Maximum number of items to return" } ] }, "docs": "Retrieve lookup tables used for data transformation and mapping within integration routes." }, { "info": { "name": "Orion Health Get lookup table contents", "type": "http" }, "http": { "method": "GET", "url": "https://api.orionhealth.com/fhir/lookup-tables/:tableId", "params": [ { "name": "tableId", "value": "", "type": "path" } ] }, "docs": "Retrieve the contents of a specific lookup table." }, { "info": { "name": "Orion Health Update lookup table contents", "type": "http" }, "http": { "method": "PUT", "url": "https://api.orionhealth.com/fhir/lookup-tables/:tableId", "params": [ { "name": "tableId", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Replace the contents of a lookup table." }, { "info": { "name": "Orion Health Look up a value", "type": "http" }, "http": { "method": "GET", "url": "https://api.orionhealth.com/fhir/lookup-tables/:tableId/lookup", "params": [ { "name": "tableId", "value": "", "type": "path" }, { "name": "key", "value": "", "type": "query", "description": "Lookup key" }, { "name": "column", "value": "", "type": "query", "description": "Column name to return" } ] }, "docs": "Look up a value in a specific lookup table by key." } ] } ], "bundled": true }