Used to retrieve details about a particular scheduled event instance. Every time a scheduled event runs an instance record is created that represents the outcome.
Request Fields
These are passed in at the top level of the request.
Key | Type | Description |
---|---|---|
uid | string | A scheduled event instance UID. |
Request Example
{
"api_key" : "__PROJECT_API__KEY__",
"uid": "__SCHEDULED_EVENT_INSTANCE_UID__"
}
Response 200 OK
{
"response": {
"status": "ok",
"uid": "811585c1-43e2-4f2c-b726-9ff07933e9b1"
},
"data": {
"uid": "811585c1-43e2-4f2c-b726-9ff07933e9b1",
"status": "succeeded",
"completed_at": "2018-12-18T19:22:00Z",
"content": "..."
}
}