Back to Manual Pricing

The claim can be brought back into the "Manual Pricing" status by the "Back to Manual Pricing" operation. The "Back to Manual Pricing" operation is available for claims in one of those statuses:

  1. Manual Adjudication

  2. Manual Benefits

  3. Manual Pricing Adjudication

When a claim is in one of those statuses, an addition link is added to the resource representation:

 ... claim properties ...
 "links": [
    {
      "href": "http://<host>:<port>/api/generic/claims/<id>",
      "rel": "self"
    },
    {
      "href": "http://<host>:<port>/api/claims/<claim id>/tomanualpricing",
      "rel": "claim:tomanualpricing",
      "httpMethod": "POST"
    }
  ]
}

Calling POST on this link will bring the claim in the "Manual Pricing" status. HTTP Status 200 is returned together with a resource representation of the updated claim.

Authorization

This operation is protected by access restriction "claims.tomanualpricing IP". Read grant must also be given to the access restriction "claims API".

Response Message

Success

HTTP 303 SEE OTHER after the operation gets completed successfully, request is redirected to claims API.

Failure

Response Description

HTTP 401

Unauthorized

HTTP 404

Claim is unknown

HTTP 409

Cannot bring claim to the status manual pricing from its current status.

Please refer to the "Response Messages" section in the HTTP API Integration Points part of the Common Features book for more details.