---
title: "List revenue recognitions"
method: GET
path: "/revenue-recognitions/"
tags: ["Revenue Recognitions"]
---

# List revenue recognitions

`GET /revenue-recognitions/`

Endpoint for retrieving a list of revenue recognitions.

## Query parameters

- `duration` '12_MONTHS' | '24_MONTHS' | '3_MONTHS' | '4_MONTHS' | '6_MONTHS' | 'CUSTOM' | '__null__'
- `end_date_after` string, date
- `end_date_before` string, date
- `page` integer
- `page_size` integer
- `recognition_type` 'DAILY' | 'MONTHLY' | '__null__'
- `start_date_after` string, date
- `start_date_before` string, date
- `status__in` string[]

## Response `200`

- PaginatedRevenueRecognitionList
  - `count` integer, required
  - `next` string, uri, nullable
  - `previous` string, uri, nullable
  - `results` RevenueRecognition[], required
    - `account` string, required — The revenue account used for revenue recognition.
    - `amount` number, double, required — The total amount being recognized.
    - `balance` number, double, nullable, required — The remaining un-recognized balance.
    - `created_ts` string, date-time, required — The timestamp in UTC when the revenue recognition was created.
    - `currency` 'AED' | 'SAR' | 'USD' | 'EUR' | 'CAD' | 'AFN' | 'ALL' | 'AMD' | 'ARS' | 'AUD' | 'AZN' | 'BAM' | 'BDT' | 'BGN' | 'BHD' | 'BIF' | 'BND' | 'BOB' | 'BRL' | 'BWP' | 'BYN' | 'BZD' | 'CDF' | 'CHF' | 'CLP' | 'CNY' | 'COP' | 'CRC' | 'CVE' | 'CZK' | 'DJF' | 'DKK' | 'DOP' | 'DZD' | 'EGP' | 'ERN' | 'ETB' | 'GBP' | 'GEL' | 'GHS' | 'GNF' | 'GTQ' | 'HKD' | 'HNL' | 'HRK' | 'HUF' | 'IDR' | 'ILS' | 'INR' | 'IQD' | 'IRR' | 'ISK' | 'JMD' | 'JOD' | 'JPY' | 'KES' | 'KHR' | 'KMF' | 'KRW' | 'KWD' | 'KZT' | 'LBP' | 'LKR' | 'LYD' | 'MAD' | 'MDL' | 'MGA' | 'MKD' | 'MMK' | 'MOP' | 'MUR' | 'MXN' | 'MYR' | 'MZN' | 'NAD' | 'NGN' | 'NIO' | 'NOK' | 'NPR' | 'NZD' | 'OMR' | 'PAB' | 'PEN' | 'PHP' | 'PKR' | 'PLN' | 'PYG' | 'QAR' | 'RON' | 'RSD' | 'RUB' | 'RWF' | 'SDG' | 'SEK' | 'SGD' | 'SOS' | 'SYP' | 'THB' | 'TND' | 'TOP' | 'TRY' | 'TTD' | 'TWD' | 'TZS' | 'UAH' | 'UGX' | 'UYU' | 'UZS' | 'VES' | 'VND' | 'XAF' | 'XOF' | 'YER' | 'ZAR' | 'ZMW', required — * `AED` - AED ⃱ * `SAR` - SAR ⃁ * `USD` - USD $ * `EUR` - EUR € * `CAD` - CAD $ * `AFN` - AFN ؋ * `ALL` - ALL Lek * `AMD` - AMD դր. * `ARS` - ARS $ * `AUD` - AUD $ * `...` Full information for [CurrencyEnum](currencyenum)
    - `description` string, required — The description of the revenue recognition.
    - `duration` '3_MONTHS' | '4_MONTHS' | '6_MONTHS' | '12_MONTHS' | '24_MONTHS' | 'CUSTOM', required — * `3_MONTHS` - 3 Months * `4_MONTHS` - 4 Months * `6_MONTHS` - 6 Months * `12_MONTHS` - 12 Months * `24_MONTHS` - 24 Months * `CUSTOM` - Custom Full information for [DurationEnum](durationenum)
    - `end_date` string, date, required — The end date of the revenue recognition schedule.
    - `end_early_account` string, required — The revenue account used to recognize the early termination, if any.
    - `end_early_date` string, date, nullable, required — The date when the revenue recognition was terminated early, if applicable.
    - `end_early_ts` string, date-time, nullable, required — The timestamp in UTC when the revenue recognition was terminated early, if applicable.
    - `events` RevenueRecognitionEvent[], required — The list of revenue recognition events generated by this revenue recognition.
      - `amount` number, double, required — The amount recognized for this event.
      - `amount_to_bcy` number, double, nullable, required — The amount converted to the organization base currency.
      - `balance` number, double, required — The remaining balance after this event.
      - `date` string, date, required — The date when this event is recognized.
      - `description` string, required — The description of the event.
      - `id` string, required — The unique identifier of the revenue recognition event.
      - `journal` string, nullable, required — The journal entry generated by this revenue recognition event, if posted.
      - `legacy_id` string, required — [Deprecated] The legacy identifier of the revenue recognition event.
    - `id` string, required — The unique identifier of the revenue recognition.
    - `invoice` string, required — The invoice that this revenue recognition belongs to.
    - `legacy_id` string, required — [Deprecated] The legacy identifier of the revenue recognition.
    - `modified_ts` string, date-time, required — The timestamp in UTC when the revenue recognition was last modified.
    - `notes` string, required — Free-form notes about the revenue recognition.
    - `recognition_type` 'DAILY' | 'MONTHLY', required — * `DAILY` - Daily * `MONTHLY` - Monthly Full information for [RecognitionTypeEnum](recognitiontypeenum)
    - `start_date` string, date, required — The start date of the revenue recognition schedule.
    - `status` 'DRAFT' | 'ENDED_EARLY' | 'FULLY_RECOGNIZED' | 'INACTIVE' | 'RECOGNIZING' | 'SCHEDULED', required — * `DRAFT` - Draft * `ENDED_EARLY` - Ended Early * `FULLY_RECOGNIZED` - Fully Recognized * `INACTIVE` - Inactive * `RECOGNIZING` - Recognizing * `SCHEDULED` - Scheduled Full information for [RevenueRecognitionStatusEnum](revenuerecognitionstatusenum)
    - `use_entity_date` boolean, required — Whether the revenue recognition start date follows the invoice date.

---

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