Daily Functions
This endpoint gets all daily functions for the given date range, in JSON format. Often used by digital signage systems or by anyone who wants to know function space availability for a given range.
HTTP Request
GET https://stscloud.com/interfaces/reporting/daily_functions.json?username=USERNAME&key=API_KEY&start_date=START_DATE&end_date=END_DATE
Make sure to replace
USERNAMEwith your STS Cloud username, andAPI_KEYwith your API key.
Query Parameters
Parameter
Required
Description
start_date
Yes
The start date for records to return, in ISO-8601 format (YYYY-MM-DD)
end_date
Yes
The end date for records to return, in ISO-8601 format (YYYY-MM-DD)
Sample Response
[
{
"date": "2019-01-01",
"functions": [
{
"meeting_names": ["Leadership Retreat"],
"function_id": "999999-123456",
"status": "definite",
"complete": false,
"meeting_room": "Pine Room",
"function": "Breakfast",
"post_as": "Leadership Retreat - Breakfast",
"time_range": [
"2019-01-01T07:00:00.000-05:00",
"2019-01-01T08:00:00.000-05:00"
],
"setup": "Existing",
"seating_count": 95,
"user_name": "Smith"
}
]
}
]Last updated