Skip to main content
GET
/
functions
/
schedules
/
{scheduleId}
/
input_data
Python SDK
client.functions.schedules.get_input_data(id=123)
{
  "id": 4503599627370496,
  "data": {
    "timeSeriesId1": 13435351,
    "maxValue": 4
  }
}

Authorizations

Authorization
string
header
required

Access token issued by the CDF project's configured identity provider. Access token must be an OpenID Connect token, and the project must be configured to accept OpenID Connect tokens. Use a header key of 'Authorization' with a value of 'Bearer $accesstoken'. The token can be obtained through any flow supported by the identity provider.

Path Parameters

scheduleId
integer
required

The function schedule id.

Response

Input data to the associated function.

id
integer<int64>
required

A server-generated ID for the object.

Required range: 1 <= x <= 9007199254740991
data
object

Input data to the function (only present if provided on the schedule). This data is passed deserialized into the function through one of the arguments called data. WARNING: Secrets or other confidential information should not be passed via the data object. There is a dedicated secrets object in the request body to "Create functions" for this purpose.'

Example:
{ "timeSeriesId1": 13435351, "maxValue": 4 }
Last modified on April 23, 2026