Skip to main content
POST
/
schedule
/
infos
Batch get schedules
curl --request POST \
  --url 'https://api.flashcat.cloud/schedule/infos?app_key=' \
  --header 'Content-Type: application/json' \
  --data '
{
  "schedule_ids": [
    2001,
    2002,
    2003
  ]
}
'
{
  "request_id": "01HK8XQE3Z7JM2NTFQ5YJ8P9R4",
  "data": {
    "items": [
      {
        "id": 5789640530410,
        "name": "test-000001",
        "account_id": 2451002751131,
        "group_id": 4291079133131,
        "disabled": 0,
        "create_at": 1766110836,
        "create_by": 2476123212131,
        "update_at": 1775205795,
        "update_by": 2476123212131,
        "layers": null,
        "schedule_layers": null,
        "final_schedule": {
          "layer_name": "",
          "name": "",
          "mode": 0,
          "schedules": null
        },
        "notify": {
          "advance_in_time": 300,
          "fixed_time": null,
          "by": {
            "follow_preference": false,
            "personal_channels": [
              "email"
            ]
          },
          "webhooks": [
            {
              "type": "feishu_app",
              "settings": {
                "token": "",
                "alias": "",
                "data_source_id": 5427276014131,
                "chat_ids": [
                  "oc_60a6dc4c6e4e5cbc4934ef08aa7ff76d"
                ],
                "verify_token": "",
                "sign_secret": ""
              }
            }
          ]
        },
        "schedule_id": 5789640530410,
        "schedule_name": "test-000001",
        "team_id": 4291079133131,
        "description": "abc",
        "layer_schedules": null,
        "status": 0,
        "cur_oncall": null,
        "next_oncall": null
      }
    ]
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.flashcat.cloud/llms.txt

Use this file to discover all available pages before exploring further.

Restrictions

AspectValue
Rate limits1,000 requests/minute; 50 requests/second per account
PermissionsSchedules Read (on-call) or Schedules Manage (on-call)

Authorizations

app_key
string
query
required

App key issued from the Flashduty console under Account → APP Keys. Required on every public API call. Keep it secret — it grants the same access as the owning account.

Body

application/json

Request carrying a list of schedule IDs (used by batch info).

schedule_ids
integer<int64>[]
required

Schedule ID list.

Response

Success

Success response envelope. On every 2xx response, request_id identifies the call (also mirrored in the Flashcat-Request-Id header) and data holds the endpoint-specific payload. Failure responses use a different shape — see ErrorResponse.

request_id
string
required

Unique ID for this request. Mirrored in the Flashcat-Request-Id response header. Include it when reporting issues.

Example:

"01HK8XQE3Z7JM2NTFQ5YJ8P9R4"

data
object
required

Response of /schedule/self and /schedule/infos. Only the items field is populated.