{ "opencollection": "1.0.0", "info": { "name": "Billing API", "version": "2.0.0" }, "items": [ { "info": { "name": "Billing Codes", "type": "folder" }, "items": [ { "info": { "name": "List Billing Codes", "type": "http" }, "http": { "method": "GET", "url": "https://sandbox.elationemr.com/api/2.0/billing_codes/", "params": [ { "name": "code", "value": "", "type": "query", "description": "Multiple values may be separated by commas." }, { "name": "description", "value": "", "type": "query", "description": "Multiple values may be separated by commas." }, { "name": "limit", "value": "", "type": "query", "description": "Number of results to return per page." }, { "name": "offset", "value": "", "type": "query", "description": "The initial index from which to return the results." }, { "name": "order_by", "value": "", "type": "query", "description": "Which field to use when ordering the results." }, { "name": "practice", "value": "", "type": "query", "description": "Multiple values may be separated by commas." } ], "auth": { "type": "oauth2", "flow": "client_credentials", "accessTokenUrl": "/api/2.0/oauth2/token/", "credentials": { "clientId": "{{clientId}}", "clientSecret": "{{clientSecret}}" } } }, "docs": "Get the CPT codes that the practice has set up. To view them in the app, go to Practice Settings - Billing." }, { "info": { "name": "Create Billing Code", "type": "http" }, "http": { "method": "POST", "url": "https://sandbox.elationemr.com/api/2.0/billing_codes/", "body": { "type": "json", "data": "{}" }, "auth": { "type": "oauth2", "flow": "client_credentials", "accessTokenUrl": "/api/2.0/oauth2/token/", "credentials": { "clientId": "{{clientId}}", "clientSecret": "{{clientSecret}}" } } }, "docs": "Create a CPT code that users can add to bills. To view them in the app, go to Practice Settings - Billing." }, { "info": { "name": "Retrieve Billing Code", "type": "http" }, "http": { "method": "GET", "url": "https://sandbox.elationemr.com/api/2.0/billing_codes/:id/", "params": [ { "name": "id", "value": "", "type": "path" } ], "auth": { "type": "oauth2", "flow": "client_credentials", "accessTokenUrl": "/api/2.0/oauth2/token/", "credentials": { "clientId": "{{clientId}}", "clientSecret": "{{clientSecret}}" } } }, "docs": "Get a CPT code that the practice has set up. To view all codes in the app, go to Practice Settings - Billing." }, { "info": { "name": "Update Billing Code", "type": "http" }, "http": { "method": "PUT", "url": "https://sandbox.elationemr.com/api/2.0/billing_codes/:id/", "params": [ { "name": "id", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "oauth2", "flow": "client_credentials", "accessTokenUrl": "/api/2.0/oauth2/token/", "credentials": { "clientId": "{{clientId}}", "clientSecret": "{{clientSecret}}" } } }, "docs": "Update a CPT code that users can add to bills. To view them in the app, go to Practice Settings - Billing." }, { "info": { "name": "Partially Update Billing Code", "type": "http" }, "http": { "method": "PATCH", "url": "https://sandbox.elationemr.com/api/2.0/billing_codes/:id/", "params": [ { "name": "id", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "oauth2", "flow": "client_credentials", "accessTokenUrl": "/api/2.0/oauth2/token/", "credentials": { "clientId": "{{clientId}}", "clientSecret": "{{clientSecret}}" } } }, "docs": "Partially Update Billing Code" }, { "info": { "name": "Delete Billing Code", "type": "http" }, "http": { "method": "DELETE", "url": "https://sandbox.elationemr.com/api/2.0/billing_codes/:id/", "params": [ { "name": "id", "value": "", "type": "path" } ], "auth": { "type": "oauth2", "flow": "client_credentials", "accessTokenUrl": "/api/2.0/oauth2/token/", "credentials": { "clientId": "{{clientId}}", "clientSecret": "{{clientSecret}}" } } }, "docs": "Delete a CPT code that the practice has set up. To view them in the app, go to Practice Settings - Billing." } ] }, { "info": { "name": "Bills", "type": "folder" }, "items": [ { "info": { "name": "List Bills", "type": "http" }, "http": { "method": "GET", "url": "https://sandbox.elationemr.com/api/2.0/bills/", "params": [ { "name": "assigned_physician", "value": "", "type": "query", "description": "The id of the physician who is assigned to this bill, could be different from the signer." }, { "name": "bill_id", "value": "", "type": "query", "description": "Multiple values may be separated by commas." }, { "name": "from_service_date", "value": "", "type": "query" }, { "name": "limit", "value": "", "type": "query", "description": "Number of results to return per page." }, { "name": "offset", "value": "", "type": "query", "description": "The initial index from which to return the results." }, { "name": "order_by", "value": "", "type": "query", "description": "Which field to use when ordering the results." }, { "name": "patient", "value": "", "type": "query", "description": "Multiple values may be separated by commas." }, { "name": "practice", "value": "", "type": "query", "description": "The id of the practice that is responsible for the bill." }, { "name": "signing_physician", "value": "", "type": "query", "description": "The id of the physician who signed off on the visit note that is associated with this bill." }, { "name": "to_service_date", "value": "", "type": "query" }, { "name": "visit_note_id", "value": "", "type": "query", "description": "The id of the visit note this bill is attached to." } ], "auth": { "type": "oauth2", "flow": "client_credentials", "accessTokenUrl": "/api/2.0/oauth2/token/", "credentials": { "clientId": "{{clientId}}", "clientSecret": "{{clientSecret}}" } } }, "docs": "List Bills" }, { "info": { "name": "Create Bill", "type": "http" }, "http": { "method": "POST", "url": "https://sandbox.elationemr.com/api/2.0/bills/", "body": { "type": "json", "data": "{}" }, "auth": { "type": "oauth2", "flow": "client_credentials", "accessTokenUrl": "/api/2.0/oauth2/token/", "credentials": { "clientId": "{{clientId}}", "clientSecret": "{{clientSecret}}" } } }, "docs": "Create Bill" }, { "info": { "name": "Retrieve Bill", "type": "http" }, "http": { "method": "GET", "url": "https://sandbox.elationemr.com/api/2.0/bills/:id/", "params": [ { "name": "id", "value": "", "type": "path" } ], "auth": { "type": "oauth2", "flow": "client_credentials", "accessTokenUrl": "/api/2.0/oauth2/token/", "credentials": { "clientId": "{{clientId}}", "clientSecret": "{{clientSecret}}" } } }, "docs": "Retrieve Bill" }, { "info": { "name": "Partially Update Bill", "type": "http" }, "http": { "method": "PATCH", "url": "https://sandbox.elationemr.com/api/2.0/bills/:id/", "params": [ { "name": "id", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "oauth2", "flow": "client_credentials", "accessTokenUrl": "/api/2.0/oauth2/token/", "credentials": { "clientId": "{{clientId}}", "clientSecret": "{{clientSecret}}" } } }, "docs": "Partially Update Bill" }, { "info": { "name": "Release a Bill to PMS", "type": "http" }, "http": { "method": "PATCH", "url": "https://sandbox.elationemr.com/api/2.0/bills/:id/actions/release-to-pms/", "params": [ { "name": "id", "value": "", "type": "path" } ], "auth": { "type": "oauth2", "flow": "client_credentials", "accessTokenUrl": "/api/2.0/oauth2/token/", "credentials": { "clientId": "{{clientId}}", "clientSecret": "{{clientSecret}}" } } }, "docs": "This is a simple PATCH endpoint that allows you to release a bill to your connected PMS. It accomplishes the same goal as pressing the \"Send to PMS\" button on the Elation Billing Report for a bill." } ] }, { "info": { "name": "Outstanding Balance", "type": "folder" }, "items": [ { "info": { "name": "Update Outstanding Balance", "type": "http" }, "http": { "method": "POST", "url": "https://sandbox.elationemr.com/api/2.0/patients/:id/outstanding_balance/", "params": [ { "name": "id", "value": "", "type": "path", "description": "The id of the patient" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "oauth2", "flow": "client_credentials", "accessTokenUrl": "/api/2.0/oauth2/token/", "credentials": { "clientId": "{{clientId}}", "clientSecret": "{{clientSecret}}" } } }, "docs": "The outstanding balance is a write-only resource that can be used to update the balance of a specific patient. It requires that the OutstandingBalance feature must be enabled for the practice." } ] } ], "bundled": true }