Get a list of all available report subscription schedule types, and their day indicator values
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"
}
]