Get Periods based on Identifier

GET /cs-close-api/periods/{id}

Obtain precise period information by specifying the ID provided. This allows for targeted retrieval of the desired period's details.

Path parameters

  • id integer Required

    Filters periods by their unique identifier.

Responses

GET /cs-close-api/periods/{id}
curl \
 --request GET 'http://close-service:8082/cs-close-api/periods/{id}'
Response examples (200)
{
    "id": 37,
    "name": "Sep",
    "year": "2018",
    "status": "IN_PROGRESS",
    "startDate": "2017-09-01",
    "endDate": "2017-09-30",
    "closeDayStartDate": "2017-09-01",
    "closeDayEndDate": "2017-09-30,
    "completionDate": null
}