Profit & Loss
Minimum access level: Tax, Accounting & Users
, unless stated otherwise.
Attributes
Attribute | Description | Kind |
---|---|---|
from | Start date of the P&L report | Date |
to | End date of the P&L report | Date |
income | Income at the end of the report's period, in the company's native currency | Decimal |
expenses | Expenses at the end of the report's priod, in the company's native currency | Decimal |
operating_profit | Profit from the business' day-to-day trading and activities, at the end of the report's period, in the company's native currency | Decimal |
less |
Totals which are subtracted from the operating profit in order to calculate the retained profit. Each item has the following elements:
|
Array |
retained_profit | Retained profit at the end of the report's period | Decimal |
retained_profit_brought_forward | Retained profit brought forward from previous year | Decimal |
retained_profit_carried_forward | Distributable profit at the end of the report's period | Decimal |
Get the P&L summary
GET https://api.freeagent.com/v2/accounting/profit_and_loss/summary
Response
The profit and loss for the current accounting period.
Status: 200 OK
{
"profit_and_loss_summary": {
"from": "2016-06-01",
"to": "2016-09-05",
"income": "3800",
"expenses": "8200",
"operating_profit": "-4400",
"less": [
{
"title": "Corp. Tax",
"total": "0"
},
{
"title": "Dividends",
"total": "50"
},
{
"title": "Adjustments",
"total": "0"
}
],
"retained_profit": "-4450",
"retained_profit_brought_forward": "15817",
"retained_profit_carried_forward": "11367"
}
}
Show as XML<?xml version="1.0" encoding="UTF-8"?>
<freeagent>
<profit-and-loss-summary>
<from type="date">2016-06-01</from>
<to type="date">2016-09-05</to>
<income>3800</income>
<expenses>8200</expenses>
<operating-profit>-4400</operating-profit>
<less type="array">
<less>
<title>Corp. Tax</title>
<total>0</total>
</less>
<less>
<title>Dividends</title>
<total>50</total>
</less>
<less>
<title>Adjustments</title>
<total>0</total>
</less>
</less>
<retained-profit>-4450</retained-profit>
<retained-profit-brought-forward>15817</retained-profit-brought-forward>
<retained-profit-carried-forward>11367</retained-profit-carried-forward>
</profit-and-loss-summary>
</freeagent>
Show as JSON