List projects
Fetches the projects for a source. Currently, only Looker projects are fetched. Please reach out to support@getcensus.com if you'd like to manage Dbt or Sigma projects via API.
Request schema
Path parameters
Header parameters
HTTP: basicAuth
HTTP AuthorizationScheme: basic
GET /api/v1/sources/{source_id}/projects HTTP/1.1 Authorization: Bearer REPLACE_BEARER_TOKEN Host: app.getcensus.com
Responses
200
Outcome of the operation.
Unique identifier for the looker project, to be used when accessing/updating/refreshing the looker project.
The client ID for this looker project
The domain for this looker project
The looker folder this project uses
The type of project. Currently, only Looker projects are supported. Please reach out to support@getcensus.com if you'd like to manage Dbt or Sigma projects via API.
When the looker project was last successfully refreshed.
When the looker project was last attempted to be refreshed.
Whether an error occurred during the last refresh attempt
Details of the last refresh attempt error, if an error occurred
Details on the error that occurred
Details on the error that occurred
404
HTTP status code.
{ "status": "success", "data": [ { "id": 90967, "looker_client_id": "string", "looker_api_endpoint": "string", "looker_folder": "string", "type": "Looker", "latest_upgrade_at": "2024-06-28T21:33:54Z", "last_upgrade_attempt_at": "2024-06-28T21:33:54Z", "last_upgrade_attempt_error": true, "last_upgrade_attempt_output": { "stderr": "string", "stdout": "string" } } ] }