The API allows you to check account status, refresh tokens, submit bills, validate claim numbers and enroll providers - all through a simple & secure HTTPS REST service interface.
Resource | Description |
---|---|
GET api/account/status | Returns the status of the account. |
Resource | Description |
---|---|
GET api/claim/ID/{claimNumber} | Returns claim details for Claim Number provided in path... |
POST api/claim/ssn4 | Returns claim details for given last four digits SSN and Last Name of patient... |
POST api/claim/doi | Returns claim details for given date of injury and Last Name of patient... |
Resource | Description |
---|---|
POST api/bill/new | Submits new bill and returns submitted bill details with assigned BillID... |
POST api/bill/ID/{billID}/attach | Uploads attachment(s) for billID provided in path... |
POST api/bill/ID/{billID}/wcb | Submits the NYSIF Accepted bills to WCB for the given billID... |
POST api/bill/status | Returns Bill IDs and their statuses for recent 1000 bills... |
GET api/bill/status/{billID} | Returns status json for given Bill ID |
GET api/bill/ID/{billID} | Returns bill details for BillID provided in path... |
GET api/bill/claimID/{claimNumber} | Returns bill details for a claim number provided in path... |
PUT api/bill/ID/{billID} | Re-submits/Updates existing bill and returns bill details with assigned BIllID... |
GET api/bill/ID/{billID}/attachment | Returns attachments details for a billID provided in path... |
DELETE api/bill/ID/{billID}/attachment/{attachmentID} | Deletes a particular attachment for BillID using BillID and AttachmentID provided in path... |
PUT api/bill/ID/{billID}/release | Releases bill from authenticated user... |
Resource | Description |
---|---|
GET api/provider/lookup/npi | Returns provider details for NPI Number if enrolled, otherwise it returns from data source... |
GET api/provider/lookup/wcb | Returns provider details for WCB Authorization number if enrolled, otherwise it returns from data source... |
POST api/provider/lookup/ein | Returns provider details for EIN if enrolled, otherwise it returns from data source... |
POST api/provider/enroll/provider | Enrolls new provider for given NPI Number... |
POST api/provider/enroll/individual | Enrolls new provider for given WCB Authorization Number... |
Resource | Description |
---|---|
POST oauth/token | Refreshes Access token... |