List report schedules
GET https://{{host}}/etp-report/v3/configs/:configId/schedules
Lists all configured report schedules for a given configuration.
Body
PARAM
Key | Datatype | Required | Description |
accountSwitchKey
|
string | (Optional) For customers who manage more than one account, this [runs the operation from another account](https://techdocs.akamai.com/developer/docs/manage-many-accounts-with-one-api-client). The Identity and Access Management API provides a [list of available account switch keys](https://techdocs.akamai.com/iam-api/reference/get-client-account-switch-keys). |
HEADERS
Key | Datatype | Required | Description |
Accept
|
string |
RESPONSES
status OK
[
{
"createdBy": "jsmith",
"creationDate": "2017-06-22T11:12:55Z",
"dayOfWeek": "MONDAY",
"emails": [
"user1@akamai.com",
"user2@akamai.com"
],
"filters": {
"isAlert": {
"in": [
"true"
]
}
},
"modifiedBy": "jsmith",
"modifiedDate": "2017-06-28T11:12:55Z",
"recurrence": "WEEKLY",
"reportTemplate": "THREAT_EVENTS_BY_LOCATION_AND_DOMAIN",
"scheduleId": 100,
"status": "ENABLED",
"userTimeZone": "+05:30"
},
{
"createdBy": "jkowalski",
"creationDate": "2017-06-23T11:12:55Z",
"dayOfWeek": null,
"emails": [
"user1@akamai.com"
],
"modifiedBy": "tyamada",
"modifiedDate": "2017-06-23T11:12:55Z",
"recurrence": "DAILY",
"reportTemplate": "THREAT_EVENTS_BY_LOCATION_AND_DOMAIN",
"scheduleId": 110,
"status": "ENABLED",
"userTimeZone": "+05:30"
}
] |
ENDPOINTS