Skip to main content
GET
/
v1
/
invoice-audits
/
{audit_id}
/
findings
List invoice audit findings
curl --request GET \
  --url https://api.opereit.com/v1/invoice-audits/{audit_id}/findings \
  --header 'Authorization: Basic <encoded-value>'
{
  "data": [
    {
      "id": "<string>",
      "audit_id": "<string>",
      "line_item_id": "<string>",
      "tracking_number": "<string>",
      "type": "RATE_MISMATCH",
      "description": "<string>",
      "charge_type": "RATE",
      "amount": "<string>",
      "excluded": true,
      "created_at": "2023-11-07T05:31:56Z",
      "expected_value": "<unknown>",
      "actual_value": "<unknown>",
      "charge_description": "<string>",
      "service_type": "<string>",
      "auditor": "<string>",
      "confidence": "<string>"
    }
  ],
  "pagination": {
    "cursor": "<string>",
    "has_more": true
  }
}

Documentation Index

Fetch the complete documentation index at: https://developers.opereit.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

HTTP Basic Auth using your API key. Send Authorization: Basic base64(key_id:key_secret).

Path Parameters

audit_id
string
required

ID of the invoice audit.

Query Parameters

limit
integer
default:50

Number of items to return per request.

Required range: 1 <= x <= 100
cursor
string

Opaque cursor from a previous response. Omit on the first request.

type
enum<string>

Filter by finding type.

Available options:
RATE_MISMATCH,
RATE_NOT_FOUND,
SURCHARGE_MISMATCH,
SURCHARGE_NOT_FOUND,
WAIVED_SURCHARGE_BILLED,
DUPLICATE_CHARGE
tracking_number
string

Return only findings tied to this tracking number.

excluded
boolean

If false, return only active (non-excluded) findings. If true, return only excluded findings. Omit to return both.

Response

Cursor-paginated list of findings.

data
object[]
required
pagination
object
required