GET
/
schedules
/
v1
/
cron-jobs
/
{id}
/
cURL
curl --request GET \
  --url https://api.cekura.ai/schedules/v1/cron-jobs/{id}/ \
  --header 'X-CEKURA-API-KEY: <api-key>'
{
  "id": 123,
  "agent": 123,
  "name": "<string>",
  "crontab_expression": "<string>",
  "timezone": "Africa/Abidjan",
  "scenario_ids": [
    123
  ],
  "scenarios_data": [
    {
      "id": 123,
      "agent": 123,
      "name": "<string>",
      "personality": 123,
      "personality_name": "<string>"
    }
  ],
  "tags": [
    "<string>"
  ],
  "frequency": 50,
  "notify_on": "never",
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z"
}

Authorizations

X-CEKURA-API-KEY
string
header
required

API Key Authentication. It should be included in the header of each request.

Path Parameters

id
integer
required

A unique integer value identifying this cron job.

Response

200 - application/json

The response is of type object.