Lodol Docs

Looker

API actions for the Looker integration.

Looker

Explore saved looks and dashboards, and run queries in your Looker workspace.


Get look

Retrieve details for a Looker look by ID.

Parameters

ParameterTypeRequiredDescription
look_idnumberYesThe ID of the look to retrieve, for example 123.

Response

{
  "description": "mock_value",
  "id": {},
  "query_id": "mock_value",
  "status": "mock_value",
  "title": "mock_value"
}

List dashboards

List dashboards in Looker with optional title filtering.

Parameters

ParameterTypeRequiredDescription
titlestringNoOptional text to match dashboard titles.
limitnumberNoMaximum number of dashboards to return.

Response

{
  "dashboards": [
    {}
  ],
  "status": "mock_value"
}

Run query

Run a saved Looker query and return the results.

Parameters

ParameterTypeRequiredDescription
query_idstringYesID of the Looker query to run.
result_formatstringNoFormat for the results: json, csv, or sql.

Response

{
  "result": {},
  "status": "mock_value"
}

Search looks

Search Looker looks by title or description.

Parameters

ParameterTypeRequiredDescription
titlestringNoOptional text to match look titles.
limitnumberNoMaximum number of looks to return.

Response

{
  "looks": [
    {}
  ],
  "status": "mock_value"
}

On this page