For the complete documentation index, see llms.txt. This page is also available as Markdown.

Revenue Contract Search

get
/apis/rc-search/v1/search

To retrieve the Revenue Contract details.

Path parameters
searchTermstringRequired

Using this parameter user can fetch Revenue Contract ID details. Values can be used to search are Revenue Contract ID , Order Number, Invoice Number or Customer Name.

qstringRequired

This Parameter is used to fetch recently created, recently viewed, on hold, most valued contracts, modified contracts or manually created Revenue Contract details.

view_cntstringOptional

This parameter will fetch recently created 50 Revenue contract details.

Responses
200

RC Search

application/json
countintegerRequired

This count is no of Revenue Contracts fetched by using the APIs.

messagestringRequired

Message of the search. For e.g. RC Search Successfully returned

get/apis/rc-search/v1/search
GET /apis/rc-search/v1/search HTTP/1.1
Host: {realm}.{env}.rightrev.cloud/
Accept: */*
200

RC Search

{
  "count": 1,
  "data_items": [
    {
      "allocation_type": "retrospective",
      "amendment_version": 1,
      "billed": 0,
      "ca_cl_position": "contract_asset",
      "created_date": "2025-11-18 05:56:15.371",
      "created_period": "Jan-21",
      "customer": "Right Systems",
      "isonhold": null,
      "modified_date": "2025-11-18 08:39:29.457",
      "modified_period": null,
      "name": "RC-9457",
      "recognized": 8000000,
      "scheduled": 0,
      "stage": "Recognize Revenue",
      "transactional_currency_code": "USD",
      "value": 8000000,
      "version": 1
    }
  ],
  "message": "RC Search Successfully returned"
}

Last updated

Was this helpful?