Retrieves all available report subscription schedule types and their valid day indicator values.
Use this endpoint to get the list of schedule types (Daily, Weekly, Monthly, Quarterly) and their
valid day indicator ranges before creating or editing a subscription.
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:
ReportSubscriptionScheduleTypeResponse
| Property | Description | Type | |||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| dayIndicators | Available day indicators for this schedule type | ReportSubscriptionDayIndicatorChild[] | |||||||||
|
ReportSubscriptionDayIndicatorChild properties
|
|||||||||||
| reportSubscriptionScheduleTypeId | The identifier of the schedule type | integer (int32) | |||||||||
| reportSubscriptionScheduleTypeName | The name of the schedule type | string | |||||||||
Example Response
[
{ "dayIndicators": [
{ "dayIndicatorInfo": "string", "dayIndicatorValue": 1
}
], "reportSubscriptionScheduleTypeId": 1, "reportSubscriptionScheduleTypeName": "string"
}
]