Undo Accounting Details

Undo Accounting Details for a Registration

Oracle Health Insurance applications allow the sending of accounting details from registration.

Accounting details are created after multiple settings on the registration are taken into account. In a scenario when registration is required to be corrected, accounting details must be created again. This operation on registrations allows users to mark all the accounting details related to the registration as void so they can be regenerated. The system also clears the accounting detail grouping table for the given registration, so that accounting details can be re-generated.

The user can start this operation through the following POST request:

http://[hostName]:[portNumber]/[api-context-root]/registrations/{id}/accountingdetails/undo

Following is a resource representation of resource representation of a registration.

  ...  ...
 "links": [
    {
      "href": "http://[hostName]:[portNumber]/[api-context-root]/generic/registrations/{id}",
      "rel": "self"
    },
    {
      "href": "http://[hostName]:[portNumber]/[api-context-root]/registrations/{id}/accountingdetails/undo",
      "rel": "registration:undoaccounting",
      "httpMethod": "POST"
    }
  ]
}

Authorization

A user authorization configuration requires access to this operation. The relevant access restriction is registrations.undoaccountingdetail IP.

Response

The response is the appropriate HTTP Status code defined in Response Messages.

Possible Message Codes

The possibility of the following message codes may return in response:

  • HTTP Status 204: When the registration is found, and the operation did not end up in error.

  • HTTP Status 404: Is returned if the registration is not found.