Get the list of account periods
Request Headers
| Header | Value | Required | Description |
|---|---|---|---|
| ECI-ApiKey | string | Yes | Your API key. See Authentication. |
| Content-Type | application/json | Yes | All requests must specify JSON content type. |
Responses
200
OK
The request succeeded and the response body contains the requested data.
Response Body Parameters
Array of:
AccountPeriodResponse
| Property | Description | Type |
|---|---|---|
| accountPeriodId | The account period identifier | integer (int32) |
| name | The name of the period | string |
| periodNumber | The period number | integer (int32) |
Example Response
[
{ "accountPeriodId": 1, "name": "string", "periodNumber": 1
}
]