Reviews API
Create a bill review
Create a Second Bill Review or Independent Bill Review draft with selected evidence.
https://app.mindbill.org/partner/v2/bills/{billId}/reviewsUse second_review for a denial or partial payment; use independent_bill_review when escalating an eligible dispute after SBR.
Use this URL with a server API key or a browser session and its exact allowed Origin. Both credentials use the same request and response contract. See the component API inventory for exact paths and SDK methods.
Path parameters
billIdRequiredstringThe MindBill bill identifier returned after atomic submission.
Request body
externalIdstringYour review or appeal identifier.
typeRequired"second_review" | "independent_bill_review"Review stage.
reasonRequiredstringReason and argument submitted to the payer.
disputedAmountnumberAmount in dispute.
payerClaimControlNumberstringOriginal EOR/835 claim control number.
attachmentIdsstring[]Supporting documents intentionally included with the review.
Examples
curl https://app.mindbill.org/partner/v2/bills/$BILL_ID/reviews \
--request POST \
--header "Authorization: Bearer $MINDBILL_API_KEY" \
--header "Content-Type: application/json" \
--header "Idempotency-Key: sbr_case_17" \
--data '{
"type": "second_review",
"reason": "The report meets the med-legal criteria and supports the billed service.",
"disputedAmount": 415,
"payerClaimControlNumber": "835-REF-F8-10042",
"attachmentIds": ["doc_01J6Z1"]
}'Response
201 Created
{ "data": { "id": "review_01J6Z4", "billId": "bill_01J6Y7", "originalBillId": "bill_01J6Y7", "externalId": null, "type": "second_review", "state": "draft", "reason": "The report meets the med-legal criteria and supports the billed service.", "disputedAmount": 415, "payerClaimControlNumber": "835-REF-F8-10042", "attachmentIds": ["doc_01J6Z1"], "submittedAt": null } }data.idRequiredstringReview identifier.
data.typeRequiredBillReviewTypeReview stage.
data.stateRequired"draft" | "submitted"Review lifecycle state.
data.attachmentIdsRequiredstring[]Evidence included in the review.