Get open periods

GET /closeAPI/api/close/period/open

Responses

  • 200 application/json

    OK

    Hide response attributes Show response attributes object
    • id integer
    • name string
    • year string
    • frequency object
      Hide frequency attributes Show frequency attributes object
      • id integer
      • systemValueGroupId integer
      • name string
      • shortName string
      • exportValue string
      • order integer
      • status string

        Values are ACTIVE, INACTIVE, DISABLED, NOT_STARTED, IN_PROGRESS, COMPLETE, or DELETED.

    • statusType string

      Values are NOT_STARTED, IN_PROGRESS, COMPLETE, DELETED, or DISABLED.

    • startDate string(date)
    • endDate string(date)
    • closeDayStartDate string(date)
    • closeDayEndDate string(date)
    • completionDate string(date-time)
GET /closeAPI/api/close/period/open
curl \
 --request GET 'https://customer.trintech.com/closeAPI/api/close/period/open'
Response examples (200)
[
  {
    "id": 42,
    "name": "string",
    "year": "string",
    "frequency": {
      "id": 42,
      "systemValueGroupId": 42,
      "name": "string",
      "shortName": "string",
      "exportValue": "string",
      "order": 42,
      "status": "ACTIVE"
    },
    "statusType": "NOT_STARTED",
    "startDate": "2025-05-04",
    "endDate": "2025-05-04",
    "closeDayStartDate": "2025-05-04",
    "closeDayEndDate": "2025-05-04",
    "completionDate": "2025-05-04T09:42:00Z"
  }
]