UNPKG

openhim-core

Version:

The OpenHIM core application that provides logging and routing of http requests

989 lines (659 loc) 32.3 kB
# RESTful API Each and every API call that is made to the OpenHIM has to be authenticated. The authentication mechanism that is used can be fairly complex to work with however it provides decent security. The authentication mechanism is based on <http://stackoverflow.com/a/9387289/588776>. ## Initial authentication notification The user notifies the API that it wants to use its authenticated service: `GET https://<server>:8080/authenticate/<user_email>` If you don't have a user account yet, you can use the root user. The default root user details are as follows: username: root password: openhim-password (you should change this on a production installation!) The server will respond with the salt that was used to calculate the clients passwordHash (during user registration): ```json { "salt": "xxx", "ts": "xxx" } ``` You must calculate a passwordhash using the received salt and the supplied user password. `passwordhash = (sha512(salt + password))` ## For subsequent requests to the API For every request you must add the following additional HTTP headers to the request: ```http auth-username: <username> auth-ts: <the current timestamp - in the following format '2014-10-20T13:19:32.380Z' - user time must be in sync with server time for request to work> auth-salt: <random uuid salt that you generate> auth-token: <= sha512(passwordhash + auth-salt + auth-ts) > ``` The server will authorise this request by calculating sha512(passwordhash + auth-salt + auth-ts) using the passwordhash from its own database and ensuring that: - this is equal to auth-token - the auth-ts isn't more than 2 seconds old If these 2 conditions true the request is allowed. ## Example implementations An example of how this authentication mechanism can implemented for use with curl is show here: https://github.com/jembi/openhim-core-js/blob/master/resources/openhim-api-curl.sh An example of how this is implemented in the OpenHIM Console see: <https://github.com/jembi/openhim-console/blob/master/app/scripts/services/login.js#L12-L39> and <https://github.com/jembi/openhim-console/blob/master/app/scripts/services/authinterceptor.js#L20-L50> ## API Reference ### Channels resource Channels represent configuration setting of how to route requests through the OpenHIM. `https://<server>:<api_port>/channels` #### Fetch all channels `GET /channels` The response status code will be `200` if successful and the response body will contain an array of channel objects. See the [channel schema](https://github.com/jembi/openhim-core-js/blob/master/src/model/channels.js). #### Add a channel `POST /channels` with a json body representing the channel to be added. See the [channel schema](https://github.com/jembi/openhim-core-js/blob/master/src/model/channels.js). The response code will be `201` if successful. #### Fetch a specific channel `GET /channels/:channelId` where `:channelId` is the `_id` property of the channel to fetch. The response status code will be `200` if successful and the response body will contain a channel object. See the [channel schema](https://github.com/jembi/openhim-core-js/blob/master/src/model/channels.js). #### Update a channel `PUT /channels/:channelId` where `:channelId` is the `_id` property of the channel to update and with a json body representing the channel updates. See the [channel schema](https://github.com/jembi/openhim-core-js/blob/master/src/model/channels.js). The response code will be `200` if successful. #### Delete a channel `DELETE /channels/:channelId` where `:channelId` is the `_id` property of the channel to delete. The response code will be `200` if successful. #### Manually Trigger Polling Channel 'POST /channels/:channelId/trigger' where ':channelId' is the '\_id' property of the channel to manually trigger. ### Clients resource Other system that send request for the OpenHIM to forward. `https://<server>:<api_port>/clients` #### Fetch all clients `GET /clients` The response status code will be `200` if successful and the response body will contain an array of client objects. See the [clients schema](https://github.com/jembi/openhim-core-js/blob/master/src/model/clients.js). #### Add a client `POST /clients` with a json body representing the client to be added. See the [clients schema](https://github.com/jembi/openhim-core-js/blob/master/src/model/clients.js). The response code will be `201` if successful. #### Fetch a specific client `GET /clients/:clientId` where `:clientId` is the `_id` property of the client to fetch. The response status code will be `200` if successful and the response body will contain a client object. See the [client schema](https://github.com/jembi/openhim-core-js/blob/master/src/model/clients.js). #### Fetch a specific client by domain `GET /clients/domain/:clientDomain` where `:clientDomain` is the `domain` property of the client to fetch. The response status code will be `200` if successful and the response body will contain a client object. See the [client schema](https://github.com/jembi/openhim-core-js/blob/master/src/model/clients.js). #### Update a client `PUT /clients/:clientId` where `:clientId` is the `_id` property of the client to update. The response code will be `200` if successful. #### Delete a client `DELETE /clients/:clientId` where `:clientId` is the `_id` property of the client to delete. The response code will be `200` if successful. ### Roles resource Allows for the management of client access control to channels. It should be noted that there is no actual roles collection in the database. The API is a facade on top of the `allow` and `roles` fields from Channels and Clients respectively. Roles can therefore also be altered by changing values for those fields directly. #### Fetch all roles `GET /roles` The response status will be `200` if successful and the response body will contain an array of role objects, each consisting of a `name`, an array of `channels` and an array of `clients`, e.g.: ```json [ { "name": "Role1", "channels": [ { "_id": "56d56f34131d779a3f220d6d", "name": "channel1" }, { "_id": "56dfff5ef51fbdc660fe6722", "name": "channel2" } ], "clients": [ { "_id": "56d43e584582beae226d8226", "clientID": "jembi" } ] }, { "name": "Role2", "channels": [ { "_id": "56d43e424582beae226d8224", "name": "Channel3" } ], "clients": [ { "_id": "56d43e584582beae226d8226", "clientID": "jembi" } ] }, { "name": "internal", "channels": [ { "_id": "56e116d9beabfb406e0e7c91", "name": "Daily Task" } ], "clients": [] } ] ``` #### Fetch a specific role by role name `GET /roles/:name` The response status code will be `200` if successful and the response body will contain a role object in the same format as the role elements in the _Fetch all roles_ operation response above. E.g. ```json { "name": "Role1", "channels": [ { "_id": "56d56f34131d779a3f220d6d", "name": "channel1" }, { "_id": "56dfff5ef51fbdc660fe6722", "name": "channel2" } ], "clients": [ { "_id": "56d43e584582beae226d8226", "clientID": "jembi" } ] } ``` #### Add a new role `POST /roles` with a json body containing the role name and channels and clients to apply to. At least one channel or client has to be specified. Channels and clients can be specified either by their `_id` or `name` for a channel and `clientID` for a client. An example role that will give a client named _jembi_ permission to access _channel1_ and _channel2_. ```json { "name": "Role1", "channels": [ { "name": "channel1" }, { "name": "channel2" } ], "clients": [ { "clientID": "jembi" } ] } ``` The response status code will be `201` if successful. #### Update an existing role `PUT /roles/:name` with a json body containing any updates to channels and clients. As with the _Add a new role_ operation, channels and clients can be specified either by their `_id` or `name` for a channel and `clientID` for a client. Note that the channel and client arrays, if specified, must contain the complete list of items to apply to, i.e. roles will be removed if they exist on any channels and clients that are not contained in the respective arrays. This also means that if `channels` and `clients` are specified as empty arrays, the result will be the same as deleting the role. If the fields are not specified, then the existing setup will be left as is. The following example will change `Role1` by giving the clients _jembi_ and _client-service_ permission to access _channel1_. Any other channels will be removed, e.g. following from the _Add a new role_ example above, access to _channel2_ will be removed: ```json { "channels": [ { "name": "channel1" } ], "clients": [ { "clientID": "jembi" }, { "clientID": "client-service" } ] } ``` Roles can also be renamed by specifying the `name` field. The response status code will be `200` if successful. #### Delete an existing role `DELETE /roles/:name` Remove an existing role from all channels and clients. The response status code will be `200` if successful. ### Users resource Console and API Users of the system. `https://<server>:<api_port>/users` #### Fetch all users `GET /users` The response status code will be `200` if successful and the response body will contain an array of users objects. See the [user schema](https://github.com/jembi/openhim-core-js/blob/master/src/model/users.js). #### Add a user `POST /users` with a json body representing the user to be added. See the [users schema](https://github.com/jembi/openhim-core-js/blob/master/src/model/users.js). The response code will be `201` if successful. #### Fetch a specific user by email address `GET /users/:email` where `:email` is the `email` property of the user to fetch. The response status code will be `200` if successful and the response body will contain a user object. See the [user schema](https://github.com/jembi/openhim-core-js/blob/master/src/model/users.js). #### Update a user `PUT /users/:email` where `:email` is the `email` property of the user to update and with a json body representing the user updates. See the [user schema](https://github.com/jembi/openhim-core-js/blob/master/src/model/users.js). The response code will be `200` if successful. #### Delete a user `DELETE /users/:email` where `:email` is the `email` property of the user to delete. The response code will be `200` if successful. ### Transactions resource Transactions store details about request and responses send through specifc channels. `https://<server>:<api_port>/transactions` An important concept to grasp with a transaction is the meaning of a transactions status. Here is a description of what each state means: - Processing - We are waiting for responses from one or more routes - Successful - The primary route and all other routes returned successful http response codes (2xx). - Failed - The primary route has returned a failed http response code (5xx) - Completed - The primary route and the other routes did not return a failure http response code (5xx) but some weren't successful (2xx). - Completed with error(s) - The primary route did not return a failure http response code (5xx) but one of the routes did. #### Fetch all transactions `GET /transactions` The response status code will be `200` if successful and the response body will contain an array of transaction objects. See the [transaction schema](https://github.com/jembi/openhim-core-js/blob/master/src/model/transactions.js). The following query parameters are supported: - `filterLimit`: The max number of transactions to return - `filterPage`: The page to return (used in conjunction with `filterLimit`) - `filterRepresentation`: Determines how much information for a transaction to return; options are - `simple`: minimal transaction information - `simpledetails`: minimal transaction information, but with more fields than simple - `bulkrerun`: minimal transaction information required in order to determine rerun status - `full`: Full transaction information - `fulltruncate`: The same as full except that large transaction bodies will be truncated - `channelID`: Only return transactions that are linked to the specified channel - `filters`: Advanced filters specified as an object. Transaction fields can be specified based on the [transaction schema](https://github.com/jembi/openhim-core-js/blob/master/src/model/transactions.js#L40-L56). For example, in order to filter by response status 200 and a property called `prop` with a value `val`, the following query could be used: `/transactions?filterLimit=100&filterPage=0&filters=%7B%22response.status%22:%22200%22,%22properties%22:%7B%22prop%22:%22val%22%7D%7D` #### Add a transaction `POST /transactions` with a json body representing the transaction to be added. See the [transactions schema](https://github.com/jembi/openhim-core-js/blob/master/src/model/transactions.js). The response code will be `201` if successful. #### Fetch a specific transaction `GET /transactions/:transactionId` where `:transactionId` is the `_id` property of the user to fetch. The response status code will be `200` if successful and the response body will contain a transaction object. See the [transaction schema](https://github.com/jembi/openhim-core-js/blob/master/src/model/transactions.js). #### Find transactions by client Id `GET /transactions/clients/:clientId` where `:clientId` is the `clientID` property of the client we wish to find transaction for. The response status code will be `200` if successful and the response body will contain an array of transaction objects. See the [transaction schema](https://github.com/jembi/openhim-core-js/blob/master/src/model/transactions.js). #### Update a transaction `PUT /transactions/:transactionId` where `:transactionId` is the `_id` property of the transaction to update and with a json body representing the transaction updates. See the [transaction schema](https://github.com/jembi/openhim-core-js/blob/master/src/model/transactions.js). The response code will be `200` if successful. #### Delete a transaction `DELETE /transactions/:transactionId` where `:transactionId` is the `_id` property of the transaction to delete. The response code will be `200` if successful. ### Contact groups resource A contact group (or contact list) defines logical groups of users used for contacting users en masse. `https://<server>:<api_port>/groups` #### Fetch all groups `GET /groups` The response status code will be `200` if successful and the response body will contain an array of group objects. See the [contact groups schema](https://github.com/jembi/openhim-core-js/blob/master/src/model/contactGroups.js). #### Add a group `POST /groups` with a json body representing the group to be added. See the [contact groups schema](https://github.com/jembi/openhim-core-js/blob/master/src/model/contactGroups.js). The response code will be `201` if successful. #### Fetch a specific group `GET /groups/:groupId` where `:groupId` is the `_id` property of the group to fetch. The response status code will be `200` if successful and the response body will contain a group object. See the [contact group schema](https://github.com/jembi/openhim-core-js/blob/master/src/model/contactGroups.js). #### Update a group `PUT /groups/:groupId` where `:groupId` is the `_id` property of the group to update. The response code will be `200` if successful. #### Delete a group `DELETE /groups/:groupId` where `:groupId` is the `_id` property of the group to delete. The response code will be `200` if successful. ### Tasks resource Tasks are used to submit transactions to be re-run. `https://<server>:<api_port>/tasks` #### Fetch all tasks `GET /tasks` The response status code will be `200` if successful and the response body will contain an array of task objects. See the [tasks schema](https://github.com/jembi/openhim-core-js/blob/master/src/model/tasks.js). #### Add a task `POST /tasks` with a json body representing the task to be added in the following format: ```json { "tids": [ "id#1", "id#2", ... "id#N" ], "batchSize": 4, //optional "paused": true //optional } ``` The `tids` field should contain an array of transaction identifiers indicating the transactions that need to be rerun. The `batchSize` field indicates the number of transactions that the core should run concurrently. To prevent a task from immediately starting upon add, the `paused` field can be added. In this case the task will simply be scheduled with a `Paused` status, ready to be started at any later stage. The response code will be `201` if successful. #### Fetch a specific task `GET /tasks/:taskId` where `:taskId` is the `_id` property of the task to fetch. The response status code will be `200` if successful and the response body will contain a task object. See the [task schema](https://github.com/jembi/openhim-core-js/blob/master/src/model/tasks.js). #### Update a task `PUT /tasks/:taskId` where `:taskId` is the `_id` property of the task to update. Tasks can be paused, resumed or cancelled by sending through an update with status equal to `Paused`, `Queued` or `Cancelled` respectively. The response code will be `200` if successful. #### Delete a task `DELETE /tasks/:taskId` where `:taskId` is the `_id` property of the task to delete. The response code will be `200` if successful. ### Mediators `https://<server>:<api_port>/mediators` #### Fetch all mediators `GET /mediators` The response status code will be `200` if successful and the response body will contain an array of mediator objects. See the [mediators schema](https://github.com/jembi/openhim-core-js/blob/master/src/model/mediators.js). **Note:** All password types returned in a mediator's config will be masked. To view the password, the heartbeat endpoint must be used by a mediator to retrieve config. #### Add a mediator `POST /mediators` with a json body representing the mediator to be added. See the [mediators schema](https://github.com/jembi/openhim-core-js/blob/master/src/model/mediators.js). The response code will be `201` if successful. #### Fetch a specific mediator `GET /mediators/:urn` where `:urn` is the `urn` property of the mediator to fetch. The response status code will be `200` if successful and the response body will contain a mediator object. See the [mediator schema](https://github.com/jembi/openhim-core-js/blob/master/src/model/mediators.js). **Note:** All password types returned in a mediator's config will be masked. To view the password, the heartbeat endpoint must be used by a mediator to retrieve config. #### Mediator heartbeat endpoint This endpoint allows a mediator to send a heartbeat to the OpenHIM-core. This serves two purposes: 1. It allows the mediator to demonstrate its alive-ness and submit an uptime property 2. It allows the mediator to fetch the latest configuration from the OpenHIM-core This endpoint only returns mediator config if the config has changed between the time the previous heartbeat was received and the current time. You may force the endpoint to return the latest config via the `config: true` property. `POST /mediators/:urn/heartbeat` where `:urn` is the `urn` property of the mediator that is sending in a heartbeat. with an http body of: ```js { "uptime": 50.25 // The uptime is seconds "config": true // (Optional) a flag to force the OpenHIM-core to send back the latest config } ``` The response will always have a `200` status if successful or a `404` if the mediator specified by the urn cannot be found. The response body will contain the latest mediator config that has been set on the OpenHIM-core server only if the config has changed since the last time a heartbeat was received from this mediator. Otherwise, the response body is left empty. This endpoint can only be called by an admin user. #### Set mediator config Sets the current configuration values for this mediator. The received configuration must conform to the configuration definition that the mediator defined in its registration message. `POST /mediators/:urn/config` where `:urn` is the `urn` property of the mediator that is sending in the heartbeat. with an http body of: ```js { paramName: "value", paramName: "value" } ``` The response will have an http status code of `201` if successful, `404` if the mediator referenced by urn cannot be found and `400` if the config supplied cannot be validated against the configuration definition supplied in the mediator registration message. This endpoint can only be called by an admin user. #### Install mediator channels Installs channels that are listed in the mediator's config (`defaultChannelConfig` property). This endpoint can install all listed channels or a subset of channels depending on the post body the of request. `POST /mediators/:urn/channels` where `:urn` is the `urn` property of the mediator that is installing the channels. with an http body that contains a JSON array of channel names to install. These names must match the names of channels in the mediators `defaultChannelConfig` property. If no body is sent, all channel are added by default. e.g. ```js ;['Channel 1', 'Channel 2'] ``` The response will be an http status code of `201` if the channels were successfully created and `400` if you provide a channel name that doesn't exist. ### Metrics resource This resource enables transaction metrics to be extracted from the OpenHIM in a flexible way. There are various forms of this endpoint depending on the format of the metrics that you want to get out. Metrics will only be returned for the channels that the API user has access to. The base url is `https://<server>:<api_port>/metrics` All calls to the metrics API **MUST** include request parameter with both the start date and end date for the metrics query. E.g. `/metrics?startDate=2014-07-15T00:00:00.000Z&endDate=2014-07-19T00:00:00.000Z` There are a few different forms of this endpoint that returns metrics broken down in different ways: - Use `/metrics` to get overall metrics about every transaction. - Use `/metrics/channels` to get metrics broken down by each channel. - Use `/metrics/channels/:channelID` to get metrics for a specific channel. - Use `/metrics/timeseries/:timeSeries` to get overall metrics returned in the specified time series. Time series values are one of 'minute', 'hour', 'day', 'month', 'year'. - Use `/metrics/timeseries/:timeSeries/channels` to get metrics broken down by each channel returned in the specified time series. Time series values are one of 'minute', 'hour', 'day', 'month', 'year'. - Use `/metrics/timeseries/:timeSeries/channels/:channelID` to get metrics for a specific channel returned in the specified time series. Time series values are one of 'minute', 'hour', 'day', 'month', 'year'. The metrics API always returns a JSON array, even if it is returning just one metrics object. It returns a `200` response along with the metrics array. A `401` response will be returned if a specified channel doesn't exist. Each metrics object in the array has the following format: ```js { _id: { channelID: '222222222222222222222222', // Only if breaking down by channels day: 15, // Only the approporiate time components will be returned when week: 28, // breaking down in time series, these will not appear if not month: 7, // breaking down by time series. These are always UTC values. year: 2014 }, total: 1, avgResp: 100, minResp: 100, maxResp: 100, failed: 0, successful: 0, processing: 0, completed: 1, completedWErrors: 0, timestamp: '2014-08-14T22:00:00.000Z' // This will appear only for time series // data as a convenience. It represents // the start of this time series period } ``` ### Keystore resource The keystore resource allows you to set and fetch the server certificate and key and set and query trusted certificates. #### Get the current HIM server cert `GET keystore/cert` returns 200 ok with `{ subject: '', issuer: '', validity: '', cert: '<pem string>' }` #### Gets the array of trusted ca certs `GET keystore/ca` returns 200 ok with `[ { subject: '', issuer: '', validity: '', cert: '<pem string>' }, ... ]` #### gets a ca cert by its \_id `GET keystore/ca/_id` returns 200 ok with `{ subject: '', issuer: '', validity: '', cert: '<pem string>' }` #### Sets the HIM server key `POST keystore/key` data `{ key: '<pem string>' }` returns 201 ok #### Sets the HIM server cert `POST keystore/cert` data `{ cert: '<pem string>' }` returns 201 ok #### Adds a cert to the list of ca certs `POST keystore/ca/cert` data `{ cert: '<pem string>' }` returns 201 ok #### Removes a ca cert by its \_id `DELETE keystore/ca/_id` returns 200 ok #### Queries the validity of the server cert and private key `GET keystore/validity` return 200 ok with `{ valid: true|false}` ### Logs resource The logs resource allows you to get access to the server logs. This resource is only accessible by admin users and only works if you have [database logging](https://github.com/jembi/openhim-core-js/blob/master/config/config.md) enabled (This is enabled by default). #### Get logs `GET logs?[filters]` Fetches server logs. You may apply a number of filters to fetch the logs that you require. By default the logs with level `info` and above for the last 5 mins with be returned. The logs will be returned as an ordered array with the latest message at the end of the array. A maximum of 100 000 log messages will ever be returned. So don't make unreasonable queries as you won't get all the results (hint: use pagination). The following filters are available: - `from` - an ISO8601 formatted date to query from. Defaults to 5 mins ago. - `until` - an ISO8601 formatted date to query until. Defaults to now. - `start` - a number n: the log message to start from, if specified the first `n` message are NOT returned. Useful along with limit for pagination. Defaults to 0. - `limit` - a number n: the max number of log messages to return. Useful along with `start` for pagination. Defaults to 100 000. - `level` - The log level to return. Possible values are `debug`, `info`, `warn` and `error`. All messages with a level equal to or of higher severity to the specified value will be returned. Defaults to `info`. The logs will be returned in the following format with a `200` status code: ```js ;[ { label: 'worker1', meta: {}, level: 'info', timestamp: '2015-10-29T09:40:31.536Z', message: 'Some message' }, { label: 'worker1', meta: {}, level: 'info', timestamp: '2015-10-29T09:40:39.128Z', message: 'Another message' } // ... ] ``` For example a sample request could look like this: ```http https://localhost:8080/logs?from=2015-10-28T12:31:46&until=2015-10-28T12:38:55&limit=100&start=10&level=error` ``` ### Server uptime `GET heartbeat` returns 200 ok with `{ master: <core-uptime>, mediators: { <urn>: <mediator-uptime> ... }}` Returns the server uptime in seconds. Includes a list of all registered mediators and if heartbeats have been received for them, will include their uptimes as well. Note that this is a public endpoint that does not require any authorization. It is convenient for integrating with external monitoring tools. ### Metadata resource The metadata resource allows the user to export and import Channels, Clients, Mediators, Users and ContactGroups. Use `GET` to retrieve all available metadata, and `POST` to import metadata. The import checks for conflicts in the database and either updates or inserts based on the result. For more control over the import, the validate endpoint accepts the same payload as the import endpoint and returns a validation status per metadata record. #### Export Metadata `Get /metadata` Returns `200` and an object with the following format: ```json [ { "Channels": [ { ChannelObject1 } ] "Clients": [ { ClientObject1 }, { ClientObject2 } ], "Mediators": [], "Users": [], "ContactGroups:": [] } ] ``` #### Validate Metadata `Post /metadata/validate` Returns `201` and an object with the following format: ```js [ { model: 'Channel' record: { ChannelObject1 } status: 'Valid' message: '' uid: 'ChannelName' }, { model: 'Client' record: { ClientObject1 } status: 'Conflict' message: '' uid: "ClientId" }, { model: 'Client' record: { ClientObject2 } status: 'Error' message: 'Error Message' uid: 'ClientId' }, //... ] ``` #### Import Metadata `Post /metadata` Returns `201` and an object with the following format: ```js [ { model: 'Channel' record: { ChannelObject1 } status: 'Inserted' message: '' uid: 'ChannelName' }, { model: 'Client' record: { ClientObject1 } status: 'Updated' message: '' uid: 'ClientId' }, { model: 'Client' record: { ClientObject2 } status: 'Error' message: 'Error Message' uid: 'ClientId' }, //... ] ``` ### Visualizer resource The visualizer resource allows the user to manage the visualizers that are present in the system. Visualizers are only accessible by admin users and all saved visualizers can be viewed by all admin users. An example visualizer object conforming to the [visualizer schema](https://github.com/jembi/openhim-core-js/blob/master/src/model/visualizer.js): ```json [ { "_id": "57a4a09078ae562b26d5b2b0", "name": "Visualizer1", "__v": 0, "time": { "updatePeriod": 200 }, "size": { "padding": 20, "height": 400, "width": 1000, "responsive": true }, "color": { "text": "#4a4254", "error": "#a84b5c", "active": "#10e057", "inactive": "#c8cacf" }, "mediators": [ { "mediator": "urn:mediator:fhir-proxy", "name": "OpenHIM Mediator FHIR Proxy", "display": "OpenHIM Mediator FHIR Proxy", "_id": "57a4a09078ae562b26d5b2b2" }, { "mediator": "urn:mediator:shell-script", "name": "OpenHIM Shell Script Mediator", "display": "OpenHIM Shell Script Mediator", "_id": "57a4a09078ae562b26d5b2b1" } ], "channels": [ { "eventType": "channel", "eventName": "FHIR Proxy", "display": "FHIR Proxy", "_id": "57a4a09078ae562b26d5b2b4" }, { "eventType": "channel", "eventName": "Echo", "display": "Echo", "_id": "57a4a09078ae562b26d5b2b3" } ], "components": [ { "eventType": "primary", "eventName": "OpenHIM Mediator FHIR Proxy Route", "display": "FHIR Server", "_id": "57a4a09078ae562b26d5b2b6" }, { "eventType": "primary", "eventName": "echo", "display": "Echo", "_id": "57a4a09078ae562b26d5b2b5" } ] }, { ... } ] ``` #### Fetch all visualizers `GET /visualizers` This request will return a `200` response code and an array of visualizer objects. #### Fetch a specific visualizer by mongo id `GET /visualizers/:visualizerId` This request will return a `200` response code and a visualizer object. #### Add new visualizer `POST /visualizers` with a json body representing the new visualizer to be added. The response status code will be `201` if successful. #### Update an existing visualizer by mongo id `PUT /visualizers/:visualizerId` with a json body representing the changes to the visualizer. The response status code will be `200` if successful. #### Delete an existing visualizer by mongo id `DELETE /visualizers/:visualizerId` Remove an existing visualizer. The response status code will be `200` if successful.