Skip to main content
GET
https://api.folkyn.com
/
api
/
v1
/
accounting
/
entries
List accounting entries
curl --request GET \
  --url https://api.folkyn.com/api/v1/accounting/entries \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "items": [
      {
        "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "activity_report_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "type": "invoice",
        "status": "waiting_payment",
        "amount_excl_vat": 123,
        "vat_amount": 123,
        "amount_incl_vat": 123,
        "paid_at": "2023-11-07T05:31:56Z",
        "created_at": "2023-11-07T05:31:56Z"
      }
    ],
    "total": 123,
    "current_page": 123,
    "per_page": 123
  }
}

Authorizations

Authorization
string
header
required

Use Authorization: Bearer <your_api_key>

Query Parameters

page
integer
default:1
Required range: x >= 1
per_page
integer
default:10
Required range: 1 <= x <= 100
status
enum<string>
Available options:
paid,
waiting_payment
type
enum<string>
Available options:
invoice,
expenses
activity_report_id
string<uuid>

Filter by CRA UUID (must be validated and in team scope).

Response

Success

data
object