Skip to main content
GET
/
service
/
general-ledger
/
accounting-periods
/
{period_id}
curl -X GET https://kube.acho.io/service/general-ledger/accounting-periods/a3UM4R8nYh33A6hgda \
  -H "Authorization: jwt YOUR_TOKEN"
{
  "period_id": "a3UM4R8nYh33A6hgda",
  "period_name": "January 2024",
  "fiscal_year_id": "FY2024",
  "start_date": "2024-01-01",
  "end_date": "2024-01-31",
  "quarter": 1,
  "is_adjustment_period": false,
  "is_closed": false,
  "created_at": "2024-01-01T00:00:00Z",
  "updated_at": "2024-01-01T00:00:00Z"
}

Request

Retrieve details for a specific accounting period.

Headers

Authorization
string
required
JWT authentication token. Format: jwt YOUR_TOKEN

Path Parameters

period_id
string
required
The unique identifier of the accounting period
curl -X GET https://kube.acho.io/service/general-ledger/accounting-periods/a3UM4R8nYh33A6hgda \
  -H "Authorization: jwt YOUR_TOKEN"
{
  "period_id": "a3UM4R8nYh33A6hgda",
  "period_name": "January 2024",
  "fiscal_year_id": "FY2024",
  "start_date": "2024-01-01",
  "end_date": "2024-01-31",
  "quarter": 1,
  "is_adjustment_period": false,
  "is_closed": false,
  "created_at": "2024-01-01T00:00:00Z",
  "updated_at": "2024-01-01T00:00:00Z"
}