For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Logo
Resources
Log inGet a demo
Get startedAPI referenceImplementation
Get startedAPI referenceImplementation
    • Overview
          • The IncomeStatement object
          • GET/income-statements
          • GET/income-statements/{id}
UnifiedAgent HandlerGateway
UnifiedAgent HandlerGateway
Resources
Log inGet a demo
Common ModelsIncome Statements

The IncomeStatement object

The IncomeStatement Object
1{
2 "id": "string",
3 "remote_id": "string",
4 "created_at": "2023-01-01T00:00:00Z",
5 "modified_at": "2023-01-01T00:00:00Z",
6 "name": "string",
7 "currency": "XUA",
8 "company": "string",
9 "start_period": "2023-01-01T00:00:00Z",
10 "end_period": "2023-01-01T00:00:00Z",
11 "income": [
12 {
13 "remote_id": "string",
14 "created_at": "2023-01-01T00:00:00Z",
15 "modified_at": "2023-01-01T00:00:00Z",
16 "name": "string",
17 "value": 1,
18 "sub_items": {
19 "string": {}
20 },
21 "company": "string",
22 "remote_was_deleted": true
23 }
24 ],
25 "cost_of_sales": [
26 {
27 "remote_id": "string",
28 "created_at": "2023-01-01T00:00:00Z",
29 "modified_at": "2023-01-01T00:00:00Z",
30 "name": "string",
31 "value": 1,
32 "sub_items": {
33 "string": {}
34 },
35 "company": "string",
36 "remote_was_deleted": true
37 }
38 ],
39 "gross_profit": 1,
40 "operating_expenses": [
41 {
42 "remote_id": "string",
43 "created_at": "2023-01-01T00:00:00Z",
44 "modified_at": "2023-01-01T00:00:00Z",
45 "name": "string",
46 "value": 1,
47 "sub_items": {
48 "string": {}
49 },
50 "company": "string",
51 "remote_was_deleted": true
52 }
53 ],
54 "net_operating_income": 1,
55 "non_operating_expenses": [
56 {
57 "remote_id": "string",
58 "created_at": "2023-01-01T00:00:00Z",
59 "modified_at": "2023-01-01T00:00:00Z",
60 "name": "string",
61 "value": 1,
62 "sub_items": {
63 "string": {}
64 },
65 "company": "string",
66 "remote_was_deleted": true
67 }
68 ],
69 "net_income": 1,
70 "remote_was_deleted": true,
71 "field_mappings": {},
72 "remote_data": [
73 {
74 "path": "string",
75 "data": {}
76 }
77 ]
78}
Was this page helpful?
Previous

/general-ledger-transactions/{id}

Next

/income-statements

Built with

The IncomeStatement object is used to represent a company’s income, the cost of sales, operating expenses, and other non-operating expenses. The object also includes other important values like gross profit, gross operating profit, and net income. This represents a period of time (month, quarter, or year).

idstringOptionalRead-onlyformat: "uuid"
remote_idstring or nullOptional

The third-party API ID of the matching object.

created_atdatetimeOptionalRead-only
The datetime that this object was created by Merge.
modified_atdatetimeOptionalRead-only
The datetime that this object was modified by Merge.
namestring or nullOptional
The income statement's name.
currencyenum or nullOptional
The income statement's currency. The currency code in ISO 4217 format.
companystring or nullOptionalformat: "uuid"
The company the income statement belongs to.
start_perioddatetime or nullOptional
The income statement's start period.
end_perioddatetime or nullOptional
The income statement's end period.
incomelist of objectsOptionalRead-only
cost_of_saleslist of objectsOptionalRead-only
gross_profitdouble or nullOptional
The revenue minus the cost of sale.
operating_expenseslist of objectsOptionalRead-only
net_operating_incomedouble or nullOptional
The revenue minus the operating expenses.
non_operating_expenseslist of objectsOptionalRead-only
net_incomedouble or nullOptional
The gross profit minus the total expenses.
remote_was_deletedbooleanOptionalRead-only

Indicates whether or not this object has been deleted in the third party platform. Full coverage deletion detection is a premium add-on. Native deletion detection is offered for free with limited coverage. Learn more.

field_mappingsobject or nullOptionalRead-only
remote_datalist of objects or nullOptionalRead-only