Skip to main content
GET
/
api
/
v1
/
accounting
/
journal-entries
Listar asientos contables
curl --request GET \
  --url https://api.lapyme.com.ar/api/v1/accounting/journal-entries \
  --header 'Authorization: Bearer <token>'
{
  "request_id": "req_accounting_1",
  "object": "list",
  "url": "/api/v1/accounting/journal-entries",
  "data": [
    {
      "object": "journal_entry",
      "id": "550e8400-e29b-41d4-a716-446655440301",
      "entry_number": 12,
      "date": "2026-05-26",
      "description": "Venta FCB-00003-00001234",
      "reference": "FCB-00003-00001234",
      "source_type": "sale",
      "source_id": "550e8400-e29b-41d4-a716-446655440007",
      "currency": "PES",
      "exchange_rate": null,
      "created_at": "2026-05-26T12:00:00.000Z",
      "updated_at": "2026-05-26T12:00:00.000Z",
      "lines": []
    }
  ],
  "has_more": false,
  "next_cursor": null
}

Authorizations

Authorization
string
header
required

Incluí tu API key en el header Authorization con el prefijo Bearer.

Query Parameters

cursor
string

Valor de next_cursor recibido en la respuesta anterior

limit
integer
default:50

Cantidad máxima de resultados por respuesta

Required range: 1 <= x <= 100
source_type
string

Tipo de origen contable, por ejemplo sale o purchase

source_id
string<uuid>

ID del recurso de origen

account_id
string<uuid>

Filtra asientos que tengan al menos una línea en esta cuenta

date_from
string<date>

Fecha inicial del asiento

date_to
string<date>

Fecha final del asiento

Response

Asientos contables listados exitosamente

request_id
string
required
object
string
required
Allowed value: "list"
url
string
required
data
object[]
required
has_more
boolean
required
next_cursor
string | null
required