POST GetCurrentPeriod

No documentation available.

Request Information

Parameters

NameDescriptionAdditional information
request
No documentation available.

Define this parameter in the request body.

Request body formats

application/json, text/json

Sample:
{
  "token": "sample string 1",
  "function": 0
}

application/x-www-form-urlencoded

Sample:

Sample not available.

application/xml, text/xml

Sample:
<GetCurrentPeriodRequest>
  <token>sample string 1</token>
  <function>AddCleanBag</function>
</GetCurrentPeriodRequest>

Response Information

No documentation available.

Response body formats

application/json, text/json

Sample:
{
  "data": [
    {
      "beginDate": "sample string 1",
      "endDate": "sample string 2"
    },
    {
      "beginDate": "sample string 1",
      "endDate": "sample string 2"
    },
    {
      "beginDate": "sample string 1",
      "endDate": "sample string 2"
    }
  ],
  "valid": true,
  "message": "sample string 2"
}

application/xml, text/xml

Sample:
<GetCurrentPeriodResponse>
  <valid>true</valid>
  <message>sample string 2</message>
  <data>
    <CurrentPeriod>
      <beginDate>sample string 1</beginDate>
      <endDate>sample string 2</endDate>
    </CurrentPeriod>
    <CurrentPeriod>
      <beginDate>sample string 1</beginDate>
      <endDate>sample string 2</endDate>
    </CurrentPeriod>
    <CurrentPeriod>
      <beginDate>sample string 1</beginDate>
      <endDate>sample string 2</endDate>
    </CurrentPeriod>
  </data>
</GetCurrentPeriodResponse>