Skip to content

Revenue Recognition Methods

Revenue recognition methods determine how revenue is recognized. Methods are configured at the account level, then each project can have an available method applied.

Available only when the early access feature Revenue Management is activated.

Fetching a list of Revenue Recognition Methods

Request

Gets a list of revenue recognition methods that are available to apply to projects.

This endpoint returns structured Revenue Recognition Method objects. As with all Kantata OX API endpoints, the returned data will be referenced in sorted order in the results array and will be indexed by ID in the revenue_recognition_methods top-level JSON key. Please see our Response Format section for more information.

Query
activestring

Return only active (true) or inactive (false) methods.

onlystring

Allows you to get one or more methods directly by ID. The ID is in the following format: id:revenue_recognition_method_type. For example, 42:percent_complete. Multiple IDs can be supplied in a comma separated list, like GET /api/v1/revenue_recognition_methods?only=42:percent_complete,43:time_and_materials.

GET
/revenue_recognition_methods
curl -i -X GET \
  'https://api.mavenlink.com/api/v1/revenue_recognition_methods?active=string&only=string'

Responses

A list of Revenue Recognition Methods have been retrieved.

Bodyapplication/json
countinteger, (int32)
metaobject
resultsArray of objects

An array of ordered pointers for the items in the revenue_recognition_methods top-level object.

revenue_recognition_methodsobject

Revenue recognition methods determine how revenue is recognized. Methods are configured at the account level, then each project can have an available method applied.

Response
{ "count": 0, "meta": { "count": 0, "page_count": 0, "page_number": 0, "page_size": 0 }, "results": [ { "key": "string", "id": "string", "name": "string" } ], "revenue_recognition_methods": { "property1": { "id": "string", "account_id": 0, "name": "string", "revenue_to_date_formula": "string", "revenue_in_period_formula": "string", "created_at": "2019-08-24T14:15:22Z", "updated_at": "2019-08-24T14:15:22Z", "active": true, "type": "string", "percent_complete_formula": "string" }, "property2": { "id": "string", "account_id": 0, "name": "string", "revenue_to_date_formula": "string", "revenue_in_period_formula": "string", "created_at": "2019-08-24T14:15:22Z", "updated_at": "2019-08-24T14:15:22Z", "active": true, "type": "string", "percent_complete_formula": "string" } } }