Manager Out of Office List
The getTeAppOutOfOfficeList
API call retrieves a list of managers who are currently or scheduled to be out of the office within a specified date range. This call requires a start and end date to define the range.
Request Header
Include the API key in the header to authenticate the request.
{
"Content-Type": "application/json",
"api-key": "your_api_key"
}
Parameters
To specify the date range, provide the following parameters in YYYY-MM-DD
format:
{
"startDate1": "2024-01-01", // Start date of the out-of-office range
"endDate1": "2024-01-31" // End date of the out-of-office range
}
Example Request
https://api.data-basics.net/apihub/apis/getTeAppOutOfOfficeList?startDate1=2024-01-01&endDate1=2024-01-31
Response
The response will contain a list of managers and their out-of-office details within the specified date range, including names, dates, and any other relevant information.
Updated about 2 months ago