GET api/Periods/CurrentPeriod

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

PeriodModel
NameDescriptionTypeAdditional information
PeriodName

string

string

None.

PeriodStartDate

date

date

None.

PeriodEndDate

date

date

None.

PeriodStatus

PeriodStatus

None.

Response Formats

application/json, text/json

Sample:
{
  "PeriodName": "sample string 1",
  "PeriodStartDate": "2026-08-07T10:46:26.3657618-06:00",
  "PeriodEndDate": "2026-08-07T10:46:26.3657618-06:00",
  "PeriodStatus": 0
}

application/xml, text/xml

Sample:
<PeriodModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CCIntegration.Models">
  <PeriodEndDate>2026-08-07T10:46:26.3657618-06:00</PeriodEndDate>
  <PeriodName>sample string 1</PeriodName>
  <PeriodStartDate>2026-08-07T10:46:26.3657618-06:00</PeriodStartDate>
  <PeriodStatus>CUR</PeriodStatus>
</PeriodModel>