Skip to main content
GET
/
v1
/
invoice-audits
/
{audit_id}
/
line-items
List invoice audit line items
curl --request GET \
  --url https://api.opereit.com/v1/invoice-audits/{audit_id}/line-items \
  --header 'Authorization: Basic <encoded-value>'
{
  "data": [
    {
      "id": "<string>",
      "audit_id": "<string>",
      "tracking_number": "<string>",
      "charge_type": "RATE",
      "amount": "12.50",
      "has_finding": true,
      "created_at": "2023-11-07T05:31:56Z",
      "charge_description": "<string>",
      "service_type": "<string>",
      "weight": "<string>",
      "billed_weight": "<string>",
      "container_type": "<string>",
      "origin_country": "<string>",
      "destination_country": "<string>",
      "zone": "<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.

charge_type
enum<string>

Filter by the kind of charge.

Available options:
RATE,
SURCHARGE,
ADJUSTMENT
tracking_number
string

Return only line items associated with this tracking number.

has_finding
boolean

If true, return only line items that have at least one finding.

Response

Cursor-paginated list of line items.

data
object[]
required
pagination
object
required