Skip to content
This repository has been archived by the owner on Mar 29, 2021. It is now read-only.

Latest commit

 

History

History
29 lines (26 loc) · 463 Bytes

README.md

File metadata and controls

29 lines (26 loc) · 463 Bytes

Serverless Tableau

Purpose

Repo for Lambda functions related to our Tableau servers.

Endpoints

  1. /queue_extracts PUT
    For queuing Tableau extracts to run.
    Expected payload:
{
  "payload": [
    {
      "server": "reporting",
      "extracts": [
        "Employee Metrics"
      ]
    },
    {
      "server": "analyst",
      "extracts": [
        "Employee Timesheet by Day Metrics",
        "Transfer Summary"
      ]
    }
  ]
}