Schedule Details
API Explorer: /schedules/{scheduleId}
To return the details of a test schedule, a scheduleId is required. The sample code returns the details of the schedule with a scheduleId of 5c83ec4a7b12f573685c5f36. Use the actual ID value for the test schedule to return the details of that test schedule.
If you do not know the scheduleId of the test schedule, use List Schedules to return a list of your created test schedules.
Schedule Details Parameters
Parameters
-
nextExecutionsintegerDenotes the number of timestamps that is returned in the
nextExecutionsattribute in the response
Schedule Details
curl 'https://a.blazemeter.com/api/v4/schedules/5c83ec4a7b12f573685c5f36' \
--user 'api_key_id:api_key_secret'
Schedule Details Response Attributes
To see a breakdown of the attributes, refer to The Schedule Object section.
Response200 OK
{
"api_version": 4,
"error": null,
"result": {
"id": "5c83ec4a7b12f573685c5f36",
"cron": "0 0 * * 1-5",
"nextRun": 1553126400,
"enabled": false,
"type": "testRun",
"created": 1552149578,
"updated": 1553117534,
"testCollectionId": 12345678,
"createdById": 123456,
"lastUpdatedById": 123456,
"nextExecutions": [
1593043200,
1593129600,
1593388800,
1593475200,
1593561600,
1593648000,
1593734400,
1593993600,
1594080000,
1594166400
]
},
"request_id": "5ef3b1640a13a"
}