Jupiter ERP
Account API

Get depreciation plan for a receipt position

/api/account/depreciations/{receiptPositionId}/plan

GETHTTP
get/api/account/depreciations/{receiptPositionId}/plan

Beispielanfrage

GET https://api.jupiter-erp.com/api/account/depreciations/example-id/plan

Code
curl -X GET 'https://api.jupiter-erp.com/api/account/depreciations/example-id/plan' \
  -H 'Authorization: Bearer YOUR_API_TOKEN' \
  -H 'X-Account-Uuid: YOUR_ACCOUNT_UUID' \
  -H 'Accept: application/json'

Parameter

NameInPflichtBeschreibung
receiptPositionIdpathja

Antworten

200OK
FeldTypBeschreibung
plan*object[]

array

Elemente

FeldTypBeschreibung
amount*integer
book_value_end*integer
book_value_start*integer
period_end*string (date)
period_start*string (date)
period_year*integer
Beispiel Response
{
  "plan": [
    {
      "period_start": "2026-01-15",
      "period_end": "2026-01-15",
      "period_year": 0,
      "amount": 0,
      "book_value_start": 0,
      "book_value_end": 0
    }
  ]
}
Depreciations

Fragen zur Integration?

GET /api/account/depreciations/{receiptPositionId}/plan · Jupiter ERP