Status API can be used to modify or retrieve status of invoices.  Following services are available within status API.

I. Search invoices for status

We can search for invoices by filtering using various parameters as listed below:

  1. Submission ID
  2. Invoice ID
  3. Matter ID
  4. Payor Org Id
  5. Payor Org Ebilling Id/Consumer Id
  6. Invoice active state (active/inactive invoices)
  7. Invoice start and end date range

All the invoices matching the filtering criteria and their respective status will be received as response. Multiple filtering criteria can be added in single request, for example the below will fetch all the active invoices with Payor Org Ebilling Id 4028 between January 1st- 10th.


                                             image

  

II. Update status

We can update a status of an invoice via this service. We would have to specify the invoice id, PayerOrgId and PayorOrgEbillingId of the invoice we would be updating.

image

And mentioning which status to move the invoice to along with comments.

And mentioning

image

The service will validate the request and check if the status update is valid. For example moving a invoice from status ‘dead’ to any other status is not possible. Once the validating is complete the status will be updated, a 200-ok message will be sent back as confirmation.

 

III. Gets the invoice status details

We can get more information on invoices via this service by providing an invoice id producer or multiple ids in one go to get the details. The details received in response will include the following fields for each invoice ids requested:

 

IV. Gets the invoice status history

We can view an invoice’s status history change logs using this service. This service will give information of every status changed date time along with the user who updated the status of an invoice. We can either pass a submission id or invoice id to fetch the status history details.

The response will have the status change details with below fields:

 

{Invoice ID}

status

Date time

comment

User name

New

20-01-2020

 

John

Received

20-01-2020

 

John

In review

21-01-2020

Under review

Annie

Approved

22-01-2020

 

Annie

EBilled

23-01-2020

Invoice Acknowledged

Patrick