---
title: "List all items"
method: GET
path: "/creditors/{creditor_id}/receivables/{receivable_id}/items"
tags: ["Receivables"]
---

# List all items

`GET /creditors/{creditor_id}/receivables/{receivable_id}/items`

## Path parameters

- `creditor_id` string, required — An object id with prefix
- `receivable_id` string, required — An object id with prefix

## Query parameters

- `skip` integer — For pagination, skip a number of results
- `take` integer — Only take up to a number of results.
- `id` string — A cursor (bookmark) used to only return results equal or lower than the given id. More efficient than skip for large result sets.
- `type` 'disbursement' | 'interest' | 'late_fee' | 'origination_fee' | 'periodic_fee' | 'principal' | 'refund' | 'other' — Type of the transaction being reported

## Response `200`

Successful operation

- object — List of items
  - `data` object[], required
    - `date` string, date, required — Date on which the transaction occurred
    - `amount` integer, required — Amount for the transaction
    - `balance` integer, required — Receivable balance including the amount in this transaction
    - `type` 'disbursement' | 'interest' | 'late_fee' | 'origination_fee' | 'periodic_fee' | 'principal' | 'refund' | 'other', required — Type of the transaction being reported
    - `receivable_status` 'active' | 'closed', required — Status of the receivable at the time the transaction occurred
    - `description` string — Description associated with this transaction
    - `metadata` object — Additional custom data associated with this receivable item
    - `id` string, required — An object id with prefix
    - `created_at` string, date-time, required — Creation date and time
    - `created_by` string, required — ID of the user that created this object
    - `updated_at` string, date-time, required — Last update date and time
    - `updated_by` string, required — ID of the user that last updated this object

---

[API](https://skmtc.net/sivo/apis/sivo-advance-api.md) · [All operations](https://skmtc.net/sivo/apis/sivo-advance-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/sivo/sivo-advance-api/revisions/bfbcd2bfed61/schema)
