client.functions.schedules.get_input_data(id=123){
"id": 4503599627370496,
"data": {
"timeSeriesId1": 13435351,
"maxValue": 4
}
}Required capabilities:
functionsAcl:READ
Retrieve the input data to the associated function.
client.functions.schedules.get_input_data(id=123){
"id": 4503599627370496,
"data": {
"timeSeriesId1": 13435351,
"maxValue": 4
}
}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.
The function schedule id.
Input data to the associated function.
A server-generated ID for the object.
1 <= x <= 9007199254740991Input 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.'
{ "timeSeriesId1": 13435351, "maxValue": 4 }Was this page helpful?