data
dbt Cloud CLI for AI Agents
Use the dbt Cloud CLI from KosmoKrator to call dbt Cloud tools headlessly, return JSON, inspect schemas, and automate workflows from coding agents, scripts, and CI.dbt Cloud CLI Setup
dbt Cloud can be configured headlessly with `kosmokrator integrations:configure dbt-cloud`.
# Install KosmoKrator first if it is not available on PATH.
curl -fsSL https://raw.githubusercontent.com/OpenCompanyApp/kosmokrator/main/install.sh | bash
# Configure and verify this integration.
kosmokrator integrations:configure dbt-cloud --set access_token="$DBT_CLOUD_ACCESS_TOKEN" --enable --read allow --write ask --json
kosmokrator integrations:doctor dbt-cloud --json
kosmokrator integrations:status --json Credentials
Authentication type: API token api_token. Configure credentials once, then reuse the same stored profile from scripts, coding CLIs, Lua, and MCP.
| Key | Env var | Type | Required | Label |
|---|---|---|---|---|
access_token | DBT_CLOUD_ACCESS_TOKEN | Secret secret | yes | Access Token |
url | DBT_CLOUD_URL | URL url | no | API Base URL |
Command Patterns
The generic command is stable across every integration. The provider shortcut is shorter for humans.
kosmo integrations:call dbt-cloud.dbt_cloud_v2_list_accounts '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v2_list_accounts '{}' --json Discovery
These commands return structured output for coding agents that need to inspect capabilities before choosing a function.
kosmo integrations:docs dbt-cloud --json
kosmo integrations:docs dbt-cloud.dbt_cloud_v2_list_accounts --json
kosmo integrations:schema dbt-cloud.dbt_cloud_v2_list_accounts --json
kosmo integrations:search "dbt Cloud" --json
kosmo integrations:list --json Automation Contexts
The same configured command surface works in these environments. The command does not change unless the host wrapper, credentials, or permissions change.
CLI Functions
Every function below can be called headlessly. Commands are highlighted, copyable, and scroll horizontally when payloads are long.
dbt-cloud.dbt_cloud_v2_list_accounts
List Accounts Official dbt Cloud v2 endpoint: GET /api/v2/accounts/ Deprecated. Consider using the v3 API instead.
read - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v2_list_accounts '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v2_list_accounts '{}' --json dbt-cloud.dbt_cloud_v2_retrieve_account
Retrieve Account Official dbt Cloud v2 endpoint: GET /api/v2/accounts/{account_id}/ Retrieve an Account
read - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v2_retrieve_account '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v2_retrieve_account '{}' --json dbt-cloud.dbt_cloud_v2_update_account
Update Account Official dbt Cloud v2 endpoint: POST /api/v2/accounts/{account_id}/ Update an account
write - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v2_update_account '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v2_update_account '{}' --json dbt-cloud.dbt_cloud_v2_partial_update_account
Partial Update Account Official dbt Cloud v2 endpoint: PATCH /api/v2/accounts/{account_id}/ Partial Account update
write - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v2_partial_update_account '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v2_partial_update_account '{}' --json dbt-cloud.dbt_cloud_v2_list_ssh_tunnels
List SSH Tunnels Official dbt Cloud v2 endpoint: GET /api/v2/accounts/{account_id}/encryptions/ List SSH tunnels
read - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v2_list_ssh_tunnels '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v2_list_ssh_tunnels '{}' --json dbt-cloud.dbt_cloud_v2_create_ssh_tunnel
Create SSH Tunnel Official dbt Cloud v2 endpoint: POST /api/v2/accounts/{account_id}/encryptions/ Create a new SSH tunnel to encrypt traffic for a given connection
write - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v2_create_ssh_tunnel '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v2_create_ssh_tunnel '{}' --json dbt-cloud.dbt_cloud_v2_retrieve_ssh_tunnel
Retrieve SSH Tunnel Official dbt Cloud v2 endpoint: GET /api/v2/accounts/{account_id}/encryptions/{id}/ Retrieve an SSH tunnel
read - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v2_retrieve_ssh_tunnel '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v2_retrieve_ssh_tunnel '{}' --json dbt-cloud.dbt_cloud_v2_update_ssh_tunnel
Update SSH Tunnel Official dbt Cloud v2 endpoint: POST /api/v2/accounts/{account_id}/encryptions/{id}/ Update an SSH tunnel
write - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v2_update_ssh_tunnel '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v2_update_ssh_tunnel '{}' --json dbt-cloud.dbt_cloud_v2_destroy_ssh_tunnel
Destroy SSH Tunnel Official dbt Cloud v2 endpoint: DELETE /api/v2/accounts/{account_id}/encryptions/{id}/ Delete an SSH tunnel
write - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v2_destroy_ssh_tunnel '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v2_destroy_ssh_tunnel '{}' --json dbt-cloud.dbt_cloud_v2_list_environments
List Environments Official dbt Cloud v2 endpoint: GET /api/v2/accounts/{account_id}/environments/ Deprecated. Consider using the v3 API instead.
read - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v2_list_environments '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v2_list_environments '{}' --json dbt-cloud.dbt_cloud_v2_create_environment
Create Environment Official dbt Cloud v2 endpoint: POST /api/v2/accounts/{account_id}/environments/ Deprecated. Consider using the v3 API instead.
write - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v2_create_environment '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v2_create_environment '{}' --json dbt-cloud.dbt_cloud_v2_retrieve_environment
Retrieve Environment Official dbt Cloud v2 endpoint: GET /api/v2/accounts/{account_id}/environments/{id}/ Deprecated. Consider using the v3 API instead.
read - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v2_retrieve_environment '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v2_retrieve_environment '{}' --json dbt-cloud.dbt_cloud_v2_update_environment
Update Environment Official dbt Cloud v2 endpoint: POST /api/v2/accounts/{account_id}/environments/{id}/ Deprecated. Consider using the v3 API instead.
write - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v2_update_environment '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v2_update_environment '{}' --json dbt-cloud.dbt_cloud_v2_destroy_environment
Destroy Environment Official dbt Cloud v2 endpoint: DELETE /api/v2/accounts/{account_id}/environments/{id}/ Deprecated. Consider using the v3 API instead.
write - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v2_destroy_environment '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v2_destroy_environment '{}' --json dbt-cloud.dbt_cloud_v2_list_invites
List Invites Official dbt Cloud v2 endpoint: GET /api/v2/accounts/{account_id}/invites/
read - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v2_list_invites '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v2_list_invites '{}' --json dbt-cloud.dbt_cloud_v2_retrieve_invite
Retrieve Invite Official dbt Cloud v2 endpoint: GET /api/v2/accounts/{account_id}/invites/{id}/
read - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v2_retrieve_invite '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v2_retrieve_invite '{}' --json dbt-cloud.dbt_cloud_v2_list_jobs
List Jobs Official dbt Cloud v2 endpoint: GET /api/v2/accounts/{account_id}/jobs/ List jobs for the given account
read - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v2_list_jobs '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v2_list_jobs '{}' --json dbt-cloud.dbt_cloud_v2_create_job
Create Job Official dbt Cloud v2 endpoint: POST /api/v2/accounts/{account_id}/jobs/ Create a new job.
write - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v2_create_job '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v2_create_job '{}' --json dbt-cloud.dbt_cloud_v2_retrieve_job_artifact
Retrieve Job Artifact Official dbt Cloud v2 endpoint: GET /api/v2/accounts/{account_id}/jobs/{job_id}/artifacts/{remainder} Given a job id and *a set of Run filters* return the latest matching artifact for that job.
read - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v2_retrieve_job_artifact '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v2_retrieve_job_artifact '{}' --json dbt-cloud.dbt_cloud_v2_retry_failed_job
Retry Failed Job Official dbt Cloud v2 endpoint: POST /api/v2/accounts/{account_id}/jobs/{job_id}/rerun/ Use this endpoint to retry a failed run for a job from the point of failure, if the run failed. Otherwise trigger a new run. When this
write - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v2_retry_failed_job '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v2_retry_failed_job '{}' --json dbt-cloud.dbt_cloud_v2_trigger_job_run
Trigger Job Run Official dbt Cloud v2 endpoint: POST /api/v2/accounts/{account_id}/jobs/{job_id}/run/ Use this endpoint to kick off a run for a job. When this endpoint returns a successful response, a new run will be enqueued for the accoun
write - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v2_trigger_job_run '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v2_trigger_job_run '{}' --json dbt-cloud.dbt_cloud_v2_retrieve_job
Retrieve Job Official dbt Cloud v2 endpoint: GET /api/v2/accounts/{account_id}/jobs/{id}/ Retrieve the details of a job.
read - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v2_retrieve_job '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v2_retrieve_job '{}' --json dbt-cloud.dbt_cloud_v2_update_job
Update Job Official dbt Cloud v2 endpoint: POST /api/v2/accounts/{account_id}/jobs/{id}/ Update a job.
write - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v2_update_job '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v2_update_job '{}' --json dbt-cloud.dbt_cloud_v2_destroy_job
Destroy Job Official dbt Cloud v2 endpoint: DELETE /api/v2/accounts/{account_id}/jobs/{id}/ Delete a job
write - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v2_destroy_job '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v2_destroy_job '{}' --json dbt-cloud.dbt_cloud_v2_list_account_license_allocations
List Account License Allocations Official dbt Cloud v2 endpoint: GET /api/v2/accounts/{account_id}/licenses/
read - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v2_list_account_license_allocations '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v2_list_account_license_allocations '{}' --json dbt-cloud.dbt_cloud_v2_list_notifications
List Notifications Official dbt Cloud v2 endpoint: GET /api/v2/accounts/{account_id}/notifications/ List notification configurations
read - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v2_list_notifications '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v2_list_notifications '{}' --json dbt-cloud.dbt_cloud_v2_create_notification
Create Notification Official dbt Cloud v2 endpoint: POST /api/v2/accounts/{account_id}/notifications/ Create a new Job Notification configuration to trigger notifications for job successes, failures, or cancelations. Notifications can be se
write - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v2_create_notification '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v2_create_notification '{}' --json dbt-cloud.dbt_cloud_v2_retrieve_notification
Retrieve Notification Official dbt Cloud v2 endpoint: GET /api/v2/accounts/{account_id}/notifications/{id}/ Fetch notification configurations
read - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v2_retrieve_notification '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v2_retrieve_notification '{}' --json dbt-cloud.dbt_cloud_v2_update_notification
Update Notification Official dbt Cloud v2 endpoint: POST /api/v2/accounts/{account_id}/notifications/{id}/ Update an existing Job Notification configuration.
write - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v2_update_notification '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v2_update_notification '{}' --json dbt-cloud.dbt_cloud_v2_destroy_notification
Destroy Notification Official dbt Cloud v2 endpoint: DELETE /api/v2/accounts/{account_id}/notifications/{id}/
write - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v2_destroy_notification '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v2_destroy_notification '{}' --json dbt-cloud.dbt_cloud_v2_update_license_permissions
Update License Permissions Official dbt Cloud v2 endpoint: POST /api/v2/accounts/{account_id}/permissions/{id}/
write - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v2_update_license_permissions '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v2_update_license_permissions '{}' --json dbt-cloud.dbt_cloud_v2_list_projects
List Projects Official dbt Cloud v2 endpoint: GET /api/v2/accounts/{account_id}/projects/ Deprecated. Consider using the v3 API instead.
read - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v2_list_projects '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v2_list_projects '{}' --json dbt-cloud.dbt_cloud_v2_create_project
Create Project Official dbt Cloud v2 endpoint: POST /api/v2/accounts/{account_id}/projects/ Deprecated. Consider using the v3 API instead.
write - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v2_create_project '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v2_create_project '{}' --json dbt-cloud.dbt_cloud_v2_retrieve_project
Retrieve Project Official dbt Cloud v2 endpoint: GET /api/v2/accounts/{account_id}/projects/{id}/ Deprecated. Consider using the v3 API instead.
read - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v2_retrieve_project '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v2_retrieve_project '{}' --json dbt-cloud.dbt_cloud_v2_update_project
Update Project Official dbt Cloud v2 endpoint: POST /api/v2/accounts/{account_id}/projects/{id}/ Deprecated. Consider using the v3 API instead.
write - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v2_update_project '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v2_update_project '{}' --json dbt-cloud.dbt_cloud_v2_destroy_project
Destroy Project Official dbt Cloud v2 endpoint: DELETE /api/v2/accounts/{account_id}/projects/{id}/ Deprecated. Consider using the v3 API instead.
write - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v2_destroy_project '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v2_destroy_project '{}' --json dbt-cloud.dbt_cloud_v2_list_repositories
List Repositories Official dbt Cloud v2 endpoint: GET /api/v2/accounts/{account_id}/repositories/ Deprecated. Consider using the v3 API instead.
read - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v2_list_repositories '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v2_list_repositories '{}' --json dbt-cloud.dbt_cloud_v2_create_repository
Create Repository Official dbt Cloud v2 endpoint: POST /api/v2/accounts/{account_id}/repositories/ Deprecated. Consider using the v3 API instead.
write - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v2_create_repository '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v2_create_repository '{}' --json dbt-cloud.dbt_cloud_v2_retrieve_repository
Retrieve Repository Official dbt Cloud v2 endpoint: GET /api/v2/accounts/{account_id}/repositories/{id}/ Deprecated. Consider using the v3 API instead.
read - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v2_retrieve_repository '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v2_retrieve_repository '{}' --json dbt-cloud.dbt_cloud_v2_destroy_repository
Destroy Repository Official dbt Cloud v2 endpoint: DELETE /api/v2/accounts/{account_id}/repositories/{id}/ Deprecated. Consider using the v3 API instead.
write - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v2_destroy_repository '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v2_destroy_repository '{}' --json dbt-cloud.dbt_cloud_v2_list_runs
List Runs Official dbt Cloud v2 endpoint: GET /api/v2/accounts/{account_id}/runs/ List runs for an account.
read - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v2_list_runs '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v2_list_runs '{}' --json dbt-cloud.dbt_cloud_v2_retrieve_run
Retrieve Run Official dbt Cloud v2 endpoint: GET /api/v2/accounts/{account_id}/runs/{id}/ Retrieve details of a run.
read - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v2_retrieve_run '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v2_retrieve_run '{}' --json dbt-cloud.dbt_cloud_v2_list_run_artifacts
List Run Artifacts Official dbt Cloud v2 endpoint: GET /api/v2/accounts/{account_id}/runs/{run_id}/artifacts/ Retrieve the list of artifacts generated for a run.
read - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v2_list_run_artifacts '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v2_list_run_artifacts '{}' --json dbt-cloud.dbt_cloud_v2_retrieve_run_artifact
Retrieve Run Artifact Official dbt Cloud v2 endpoint: GET /api/v2/accounts/{account_id}/runs/{run_id}/artifacts/{remainder} Use this endpoint to fetch artifacts from a completed run. Once a run has been completed, you can use this endpoint
read - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v2_retrieve_run_artifact '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v2_retrieve_run_artifact '{}' --json dbt-cloud.dbt_cloud_v2_cancel_run
Cancel Run Official dbt Cloud v2 endpoint: POST /api/v2/accounts/{account_id}/runs/{run_id}/cancel/ Cancel a run.
write - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v2_cancel_run '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v2_cancel_run '{}' --json dbt-cloud.dbt_cloud_v2_retrieve_run_failure_details
Retrieve Run Failure Details Official dbt Cloud v2 endpoint: GET /api/v2/accounts/{account_id}/runs/{run_id}/retry/ Use this endpoint to get details about a retryable run that has failed.
read - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v2_retrieve_run_failure_details '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v2_retrieve_run_failure_details '{}' --json dbt-cloud.dbt_cloud_v2_retry_run
Retry Run Official dbt Cloud v2 endpoint: POST /api/v2/accounts/{account_id}/runs/{run_id}/retry/ Use this endpoint to retry a failed run. When this endpoint returns a successful response, a new run will be enqueued. Users can poll the Get
write - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v2_retry_run '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v2_retry_run '{}' --json dbt-cloud.dbt_cloud_v2_retrieve_run_step
Retrieve Run Step Official dbt Cloud v2 endpoint: GET /api/v2/accounts/{account_id}/steps/{id}/ Retrieve the details of a specific step of a run.
read - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v2_retrieve_run_step '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v2_retrieve_run_step '{}' --json dbt-cloud.dbt_cloud_v2_list_users
List Users Official dbt Cloud v2 endpoint: GET /api/v2/accounts/{account_id}/users/ List the Users associated with the specified Account.
read - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v2_list_users '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v2_list_users '{}' --json dbt-cloud.dbt_cloud_v2_unsubscribe_from_notifications
Unsubscribe from Notifications Official dbt Cloud v2 endpoint: POST /api/v2/notifications/unsubscribe/ Clear out all email notification configurations for the user making the request.
write - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v2_unsubscribe_from_notifications '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v2_unsubscribe_from_notifications '{}' --json dbt-cloud.dbt_cloud_v2_retrieve_user
Retrieve User Official dbt Cloud v2 endpoint: GET /api/v2/users/{id}/
read - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v2_retrieve_user '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v2_retrieve_user '{}' --json dbt-cloud.dbt_cloud_v2_update_user
Update User Official dbt Cloud v2 endpoint: POST /api/v2/users/{id}/
write - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v2_update_user '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v2_update_user '{}' --json dbt-cloud.dbt_cloud_v3_list_accounts
List Accounts Official dbt Cloud v3 endpoint: GET /api/v3/accounts/ List the Accounts that your API Token is authorized to access.
read - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_list_accounts '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_list_accounts '{}' --json dbt-cloud.dbt_cloud_v3_assign_user_to_groups
Assign User to Groups Official dbt Cloud v3 endpoint: POST /api/v3/accounts/{account_id}/assign-groups/
write - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_assign_user_to_groups '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_assign_user_to_groups '{}' --json dbt-cloud.dbt_cloud_v3_list_recent_audit_log_events
List Recent Audit Log Events Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/audit-logs/ Fetch paginated audit log events. Note: This API is only available to enterprise customers.
read - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_list_recent_audit_log_events '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_list_recent_audit_log_events '{}' --json dbt-cloud.dbt_cloud_v3_get_recent_audit_log_events_csv
Get Recent Audit Log Events CSV Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/audit-logs/download/ Generate audit log CSV Note: This API is only available to enterprise customers.
read - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_get_recent_audit_log_events_csv '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_get_recent_audit_log_events_csv '{}' --json dbt-cloud.dbt_cloud_v3_get_bulk_audit_log_export_status
Get Bulk Audit Log Export Status Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/audit-logs/export/ Check the status of a bulk export request. Note: This API is only available to enterprise customers.
read - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_get_bulk_audit_log_export_status '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_get_bulk_audit_log_export_status '{}' --json dbt-cloud.dbt_cloud_v3_submit_bulk_audit_log_export_request
Submit Bulk Audit Log Export Request Official dbt Cloud v3 endpoint: POST /api/v3/accounts/{account_id}/audit-logs/export/ Submit a bulk export request. Note: This API is only available to enterprise customers.
write - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_submit_bulk_audit_log_export_request '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_submit_bulk_audit_log_export_request '{}' --json dbt-cloud.dbt_cloud_v3_download_bulk_audit_log_export
Download Bulk Audit Log Export Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/audit-logs/export/{job_identifier}/download/ Download a bulk export of audit log events. Note: This API is only available to enterprise custome
read - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_download_bulk_audit_log_export '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_download_bulk_audit_log_export '{}' --json dbt-cloud.dbt_cloud_v3_list_account_connections
List Account Connections Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/connections/ List all Account Connections.
read - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_list_account_connections '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_list_account_connections '{}' --json dbt-cloud.dbt_cloud_v3_create_account_connection
Create Account Connection Official dbt Cloud v3 endpoint: POST /api/v3/accounts/{account_id}/connections/ Create a new Account Connection.
write - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_create_account_connection '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_create_account_connection '{}' --json dbt-cloud.dbt_cloud_v3_retrieve_account_connection
Retrieve Account Connection Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/connections/{id}/ Retrieve details of a specific Account Connection.
read - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_retrieve_account_connection '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_retrieve_account_connection '{}' --json dbt-cloud.dbt_cloud_v3_update_account_connection
Update Account Connection Official dbt Cloud v3 endpoint: PATCH /api/v3/accounts/{account_id}/connections/{id}/ Update an existing Account Connection.
write - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_update_account_connection '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_update_account_connection '{}' --json dbt-cloud.dbt_cloud_v3_delete_account_connection_delete
Delete Account Connection Delete Official dbt Cloud v3 endpoint: DELETE /api/v3/accounts/{account_id}/connections/{id}/ Delete an existing Account Connection Delete.
write - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_delete_account_connection_delete '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_delete_account_connection_delete '{}' --json dbt-cloud.dbt_cloud_v3_delete_environment_sao_cache
Delete Environment SAO Cache Official dbt Cloud v3 endpoint: DELETE /api/v3/accounts/{account_id}/environments/{environment_id}/sao-cache/ Clear the environment SAO (State Aware Orchestration) cache in Redis for the given environment
write - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_delete_environment_sao_cache '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_delete_environment_sao_cache '{}' --json dbt-cloud.dbt_cloud_v3_list_favorite_asset_responses
List Favorite Asset Responses Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/favorite-assets/ List all Favorite Asset Responses.
read - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_list_favorite_asset_responses '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_list_favorite_asset_responses '{}' --json dbt-cloud.dbt_cloud_v3_assign_group_permissions
Assign Group Permissions Official dbt Cloud v3 endpoint: POST /api/v3/accounts/{account_id}/group-permissions/{group_id}/
write - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_assign_group_permissions '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_assign_group_permissions '{}' --json dbt-cloud.dbt_cloud_v3_list_groups
List Groups Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/groups/
read - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_list_groups '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_list_groups '{}' --json dbt-cloud.dbt_cloud_v3_create_group
Create Group Official dbt Cloud v3 endpoint: POST /api/v3/accounts/{account_id}/groups/
write - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_create_group '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_create_group '{}' --json dbt-cloud.dbt_cloud_v3_retrieve_group
Retrieve Group Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/groups/{id}/
read - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_retrieve_group '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_retrieve_group '{}' --json dbt-cloud.dbt_cloud_v3_update_group
Update Group Official dbt Cloud v3 endpoint: POST /api/v3/accounts/{account_id}/groups/{id}/
write - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_update_group '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_update_group '{}' --json dbt-cloud.dbt_cloud_v3_send_user_invites
Send user invites Official dbt Cloud v3 endpoint: POST /api/v3/accounts/{account_id}/invites/ Send email invites to users who you wish to add to this account
write - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_send_user_invites '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_send_user_invites '{}' --json dbt-cloud.dbt_cloud_v3_list_ip_restrictions
List IP Restrictions Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/ip-restrictions/
read - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_list_ip_restrictions '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_list_ip_restrictions '{}' --json dbt-cloud.dbt_cloud_v3_save_ip_restriction
Save IP Restriction Official dbt Cloud v3 endpoint: POST /api/v3/accounts/{account_id}/ip-restrictions/ Save net-new ip restriction rule Note: As long as at least one cidr was successfully saved a 2XX will be returned. Check the `extra` key
write - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_save_ip_restriction '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_save_ip_restriction '{}' --json dbt-cloud.dbt_cloud_v3_enable_ip_restrictions
Enable IP Restrictions Official dbt Cloud v3 endpoint: POST /api/v3/accounts/{account_id}/ip-restrictions-set/ Toggle the enablement of the IP restriction feature.
write - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_enable_ip_restrictions '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_enable_ip_restrictions '{}' --json dbt-cloud.dbt_cloud_v3_validate_client_ip_against_ip_restrictions
Validate Client IP Against IP Restrictions Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/ip-restrictions-set/{id}/validate/ This endpoint returns whether the client ip is acceptable based on the configured ip restriction
read - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_validate_client_ip_against_ip_restrictions '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_validate_client_ip_against_ip_restrictions '{}' --json dbt-cloud.dbt_cloud_v3_validate_client_ip_against_ip_restrictions_excluding_specified_ip_rule
Validate Client IP Against IP Restrictions Excluding Specified IP Rule Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/ip-restrictions-set/{id}/validate/{rule_id} This endpoint returns whether the client ip is acceptable b
read - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_validate_client_ip_against_ip_restrictions_excluding_specified_ip_rule '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_validate_client_ip_against_ip_restrictions_excluding_specified_ip_rule '{}' --json dbt-cloud.dbt_cloud_v3_retrieve_ip_restriction
Retrieve IP Restriction Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/ip-restrictions/{id}
read - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_retrieve_ip_restriction '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_retrieve_ip_restriction '{}' --json dbt-cloud.dbt_cloud_v3_update_ip_restriction
Update IP Restriction Official dbt Cloud v3 endpoint: PUT /api/v3/accounts/{account_id}/ip-restrictions/{id} Update an existing ip restriction rule Note: As long as at least one cidr was successfully saved a 2XX will be returned. Check the
write - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_update_ip_restriction '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_update_ip_restriction '{}' --json dbt-cloud.dbt_cloud_v3_delete_ip_restriction
Delete IP Restriction Official dbt Cloud v3 endpoint: DELETE /api/v3/accounts/{account_id}/ip-restrictions/{id}
write - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_delete_ip_restriction '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_delete_ip_restriction '{}' --json dbt-cloud.dbt_cloud_v3_list_license_maps
List License Maps Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/license-maps/
read - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_list_license_maps '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_list_license_maps '{}' --json dbt-cloud.dbt_cloud_v3_create_license_map
Create License Map Official dbt Cloud v3 endpoint: POST /api/v3/accounts/{account_id}/license-maps/
write - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_create_license_map '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_create_license_map '{}' --json dbt-cloud.dbt_cloud_v3_retrieve_license_map
Retrieve License Map Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/license-maps/{id}/
read - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_retrieve_license_map '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_retrieve_license_map '{}' --json dbt-cloud.dbt_cloud_v3_update_license_map
Update License Map Official dbt Cloud v3 endpoint: POST /api/v3/accounts/{account_id}/license-maps/{id}/
write - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_update_license_map '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_update_license_map '{}' --json dbt-cloud.dbt_cloud_v3_destroy_license_map
Destroy License Map Official dbt Cloud v3 endpoint: DELETE /api/v3/accounts/{account_id}/license-maps/{id}/
write - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_destroy_license_map '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_destroy_license_map '{}' --json dbt-cloud.dbt_cloud_v3_list_oauth_configurations
List OAuthConfigurations Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/oauth-configurations/ List OAuthConfigurations
read - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_list_oauth_configurations '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_list_oauth_configurations '{}' --json dbt-cloud.dbt_cloud_v3_create_oauth_configuration
Create OAuthConfiguration Official dbt Cloud v3 endpoint: POST /api/v3/accounts/{account_id}/oauth-configurations/ Create a new OAuthConfiguration
write - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_create_oauth_configuration '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_create_oauth_configuration '{}' --json dbt-cloud.dbt_cloud_v3_retrieve_oauth_configuration
Retrieve OAuth Configuration Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/oauth-configurations/{id}/ Retrieve an OAuth Configuration
read - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_retrieve_oauth_configuration '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_retrieve_oauth_configuration '{}' --json dbt-cloud.dbt_cloud_v3_update_oauth_configuration
Update OAuth Configuration Official dbt Cloud v3 endpoint: POST /api/v3/accounts/{account_id}/oauth-configurations/{id}/ Update an OAuthConfiguration
write - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_update_oauth_configuration '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_update_oauth_configuration '{}' --json dbt-cloud.dbt_cloud_v3_destroy_oauth_configuration
Destroy OAuth Configuration Official dbt Cloud v3 endpoint: DELETE /api/v3/accounts/{account_id}/oauth-configurations/{id}/ Delete an OAuth Configuration
write - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_destroy_oauth_configuration '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_destroy_oauth_configuration '{}' --json dbt-cloud.dbt_cloud_v3_list_projects
List Projects Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/projects/ List Projects
read - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_list_projects '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_list_projects '{}' --json dbt-cloud.dbt_cloud_v3_create_project
Create Project Official dbt Cloud v3 endpoint: POST /api/v3/accounts/{account_id}/projects/ Create a new Project
write - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_create_project '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_create_project '{}' --json dbt-cloud.dbt_cloud_v3_retrieve_project
Retrieve Project Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/projects/{id}/ Retrieve a Project
read - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_retrieve_project '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_retrieve_project '{}' --json dbt-cloud.dbt_cloud_v3_update_project
Update Project Official dbt Cloud v3 endpoint: POST /api/v3/accounts/{account_id}/projects/{id}/ Update a Project
write - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_update_project '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_update_project '{}' --json dbt-cloud.dbt_cloud_v3_destroy_project
Destroy Project Official dbt Cloud v3 endpoint: DELETE /api/v3/accounts/{account_id}/projects/{id}/ Delete Project
write - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_destroy_project '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_destroy_project '{}' --json dbt-cloud.dbt_cloud_v3_create_adapter
Create Adapter Official dbt Cloud v3 endpoint: POST /api/v3/accounts/{account_id}/projects/{project_id}/adapters/ Create a new adapter for a project. The ID from this adapter can be used to create Connections or Credentials when necessary.
write - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_create_adapter '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_create_adapter '{}' --json dbt-cloud.dbt_cloud_v3_retrieve_adapter
Retrieve Adapter Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/projects/{project_id}/adapters/{id}/ Get an adapter by ID.
read - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_retrieve_adapter '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_retrieve_adapter '{}' --json dbt-cloud.dbt_cloud_v3_update_adapter
Update Adapter Official dbt Cloud v3 endpoint: POST /api/v3/accounts/{account_id}/projects/{project_id}/adapters/{id}/ Update an adapter.
write - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_update_adapter '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_update_adapter '{}' --json dbt-cloud.dbt_cloud_v3_destroy_adapter
Destroy Adapter Official dbt Cloud v3 endpoint: DELETE /api/v3/accounts/{account_id}/projects/{project_id}/adapters/{id}/ Delete an adapter.
write - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_destroy_adapter '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_destroy_adapter '{}' --json dbt-cloud.dbt_cloud_v3_list_connections
List Connections Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/projects/{project_id}/connections/ List Connections
read - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_list_connections '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_list_connections '{}' --json dbt-cloud.dbt_cloud_v3_create_connection
Create Connection Official dbt Cloud v3 endpoint: POST /api/v3/accounts/{account_id}/projects/{project_id}/connections/ Create a new Connection
write - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_create_connection '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_create_connection '{}' --json dbt-cloud.dbt_cloud_v3_retrieve_connection
Retrieve Connection Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/projects/{project_id}/connections/{id}/ Retrieve a Connection
read - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_retrieve_connection '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_retrieve_connection '{}' --json dbt-cloud.dbt_cloud_v3_update_connection
Update Connection Official dbt Cloud v3 endpoint: POST /api/v3/accounts/{account_id}/projects/{project_id}/connections/{id}/ Update a Connection
write - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_update_connection '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_update_connection '{}' --json dbt-cloud.dbt_cloud_v3_destroy_connection
Destroy Connection Official dbt Cloud v3 endpoint: DELETE /api/v3/accounts/{account_id}/projects/{project_id}/connections/{id}/ Delete a Connection
write - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_destroy_connection '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_destroy_connection '{}' --json dbt-cloud.dbt_cloud_v3_list_credentials
List Credentials Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/projects/{project_id}/credentials/ List the credentials for a given project.
read - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_list_credentials '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_list_credentials '{}' --json dbt-cloud.dbt_cloud_v3_create_credentials
Create Credentials Official dbt Cloud v3 endpoint: POST /api/v3/accounts/{account_id}/projects/{project_id}/credentials/ Create a new set of credentials to associate with a user or environment.
write - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_create_credentials '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_create_credentials '{}' --json dbt-cloud.dbt_cloud_v3_get_credentials
Get Credentials Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/projects/{project_id}/credentials/{id}/ Fetch a specific set of credentials.
read - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_get_credentials '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_get_credentials '{}' --json dbt-cloud.dbt_cloud_v3_update_credentials
Update Credentials Official dbt Cloud v3 endpoint: POST /api/v3/accounts/{account_id}/projects/{project_id}/credentials/{id}/ Update a set of credentials.
write - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_update_credentials '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_update_credentials '{}' --json dbt-cloud.dbt_cloud_v3_partial_update_credentials
Partial Update Credentials Official dbt Cloud v3 endpoint: PATCH /api/v3/accounts/{account_id}/projects/{project_id}/credentials/{id}/ Partially update a set of credentials.
write - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_partial_update_credentials '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_partial_update_credentials '{}' --json dbt-cloud.dbt_cloud_v3_delete_credentials
Delete Credentials Official dbt Cloud v3 endpoint: DELETE /api/v3/accounts/{account_id}/projects/{project_id}/credentials/{id}/ Delete a set of credentials.
write - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_delete_credentials '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_delete_credentials '{}' --json dbt-cloud.dbt_cloud_v3_create_projects_environment_variable
Create Projects Environment Variable Official dbt Cloud v3 endpoint: POST /api/v3/accounts/{account_id}/projects/{project_id}/environment-variables/
write - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_create_projects_environment_variable '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_create_projects_environment_variable '{}' --json dbt-cloud.dbt_cloud_v3_update_projects_environment_variable
Update Projects Environment Variable Official dbt Cloud v3 endpoint: POST /api/v3/accounts/{account_id}/projects/{project_id}/environment-variables/{id}/
write - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_update_projects_environment_variable '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_update_projects_environment_variable '{}' --json dbt-cloud.dbt_cloud_v3_destroy_projects_environment_variable
Destroy Projects Environment Variable Official dbt Cloud v3 endpoint: DELETE /api/v3/accounts/{account_id}/projects/{project_id}/environment-variables/{id}/
write - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_destroy_projects_environment_variable '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_destroy_projects_environment_variable '{}' --json dbt-cloud.dbt_cloud_v3_create_projects_environment_variables_bulk
Create Projects Environment Variables Bulk Official dbt Cloud v3 endpoint: POST /api/v3/accounts/{account_id}/projects/{project_id}/environment-variables/bulk/
write - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_create_projects_environment_variables_bulk '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_create_projects_environment_variables_bulk '{}' --json dbt-cloud.dbt_cloud_v3_update_projects_environment_variables_bulk
Update Projects Environment Variables Bulk Official dbt Cloud v3 endpoint: PUT /api/v3/accounts/{account_id}/projects/{project_id}/environment-variables/bulk/
write - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_update_projects_environment_variables_bulk '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_update_projects_environment_variables_bulk '{}' --json dbt-cloud.dbt_cloud_v3_destroy_projects_environment_variables_bulk
Destroy Projects Environment Variables Bulk Official dbt Cloud v3 endpoint: DELETE /api/v3/accounts/{account_id}/projects/{project_id}/environment-variables/bulk/
write - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_destroy_projects_environment_variables_bulk '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_destroy_projects_environment_variables_bulk '{}' --json dbt-cloud.dbt_cloud_v3_retrieve_projects_environment_variables_environment
Retrieve Projects Environment Variables Environment Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/projects/{project_id}/environment-variables/environment/
read - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_retrieve_projects_environment_variables_environment '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_retrieve_projects_environment_variables_environment '{}' --json dbt-cloud.dbt_cloud_v3_retrieve_projects_environment_variables_job
Retrieve Projects Environment Variables Job Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/projects/{project_id}/environment-variables/job/
read - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_retrieve_projects_environment_variables_job '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_retrieve_projects_environment_variables_job '{}' --json dbt-cloud.dbt_cloud_v3_retrieve_projects_environment_variables_user
Retrieve Projects Environment Variables User Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/projects/{project_id}/environment-variables/user/
read - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_retrieve_projects_environment_variables_user '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_retrieve_projects_environment_variables_user '{}' --json dbt-cloud.dbt_cloud_v3_list_environments
List Environments Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/projects/{project_id}/environments/ List Environments
read - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_list_environments '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_list_environments '{}' --json dbt-cloud.dbt_cloud_v3_create_environment
Create Environment Official dbt Cloud v3 endpoint: POST /api/v3/accounts/{account_id}/projects/{project_id}/environments/ Create a new Environment
write - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_create_environment '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_create_environment '{}' --json dbt-cloud.dbt_cloud_v3_retrieve_environment
Retrieve Environment Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/projects/{project_id}/environments/{id}/ Retrieve an Environment
read - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_retrieve_environment '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_retrieve_environment '{}' --json dbt-cloud.dbt_cloud_v3_update_environment
Update Environment Official dbt Cloud v3 endpoint: POST /api/v3/accounts/{account_id}/projects/{project_id}/environments/{id}/ Replace an Environment. This is a full replace operation — all fields must be provided. Any omitted fields will
write - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_update_environment '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_update_environment '{}' --json dbt-cloud.dbt_cloud_v3_destroy_environment
Destroy Environment Official dbt Cloud v3 endpoint: DELETE /api/v3/accounts/{account_id}/projects/{project_id}/environments/{id}/ Delete an Environment
write - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_destroy_environment '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_destroy_environment '{}' --json dbt-cloud.dbt_cloud_v3_create_extended_attributes
Create Extended Attributes Official dbt Cloud v3 endpoint: POST /api/v3/accounts/{account_id}/projects/{project_id}/extended-attributes/ Create a new Extended Attributes record.
write - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_create_extended_attributes '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_create_extended_attributes '{}' --json dbt-cloud.dbt_cloud_v3_retrieve_extended_attributes
Retrieve Extended Attributes Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/projects/{project_id}/extended-attributes/{id}/ Given an account_id, project_id, and primary key: retrieve an existing Extended Attributes record
read - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_retrieve_extended_attributes '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_retrieve_extended_attributes '{}' --json dbt-cloud.dbt_cloud_v3_update_extended_attributes
Update Extended Attributes Official dbt Cloud v3 endpoint: PATCH /api/v3/accounts/{account_id}/projects/{project_id}/extended-attributes/{id}/ Update an existing Extended Attributes record by ID.
write - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_update_extended_attributes '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_update_extended_attributes '{}' --json dbt-cloud.dbt_cloud_v3_destroy_extended_attributes
Destroy Extended Attributes Official dbt Cloud v3 endpoint: DELETE /api/v3/accounts/{account_id}/projects/{project_id}/extended-attributes/{id}/ Delete an existing Extended Attributes record by ID.
write - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_destroy_extended_attributes '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_destroy_extended_attributes '{}' --json dbt-cloud.dbt_cloud_v3_list_lineage_integrations
List Lineage Integrations Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/projects/{project_id}/integrations/lineage/
read - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_list_lineage_integrations '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_list_lineage_integrations '{}' --json dbt-cloud.dbt_cloud_v3_create_lineage_integration
Create Lineage Integration Official dbt Cloud v3 endpoint: POST /api/v3/accounts/{account_id}/projects/{project_id}/integrations/lineage/
write - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_create_lineage_integration '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_create_lineage_integration '{}' --json dbt-cloud.dbt_cloud_v3_get_lineage_integration
Get Lineage Integration Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/projects/{project_id}/integrations/lineage/{id}/
read - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_get_lineage_integration '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_get_lineage_integration '{}' --json dbt-cloud.dbt_cloud_v3_update_lineage_integration
Update Lineage Integration Official dbt Cloud v3 endpoint: PATCH /api/v3/accounts/{account_id}/projects/{project_id}/integrations/lineage/{id}/
write - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_update_lineage_integration '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_update_lineage_integration '{}' --json dbt-cloud.dbt_cloud_v3_delete_lineage_integration
Delete Lineage Integration Official dbt Cloud v3 endpoint: DELETE /api/v3/accounts/{account_id}/projects/{project_id}/integrations/lineage/{id}/
write - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_delete_lineage_integration '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_delete_lineage_integration '{}' --json dbt-cloud.dbt_cloud_v3_list_collections_from_bi_tool
List collections from BI tool Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/projects/{project_id}/integrations/lineage/{id}/collections/
read - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_list_collections_from_bi_tool '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_list_collections_from_bi_tool '{}' --json dbt-cloud.dbt_cloud_v3_list_collections_from_bi_tool_2
List collections from BI tool_2 Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/projects/{project_id}/integrations/lineage/{id}/collections/{collection_id}/
read - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_list_collections_from_bi_tool_2 '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_list_collections_from_bi_tool_2 '{}' --json dbt-cloud.dbt_cloud_v3_update_lineage_integration_selections
Update Lineage Integration Selections Official dbt Cloud v3 endpoint: POST /api/v3/accounts/{account_id}/projects/{project_id}/integrations/lineage/{id}/selections
write - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_update_lineage_integration_selections '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_update_lineage_integration_selections '{}' --json dbt-cloud.dbt_cloud_v3_create_managed_repository
Create Managed Repository Official dbt Cloud v3 endpoint: POST /api/v3/accounts/{account_id}/projects/{project_id}/managed-repositories/ Create a new dbt Cloud managed repository.
write - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_create_managed_repository '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_create_managed_repository '{}' --json dbt-cloud.dbt_cloud_v3_retrieve_projects_managed_repositories_download
Retrieve Projects Managed Repositories Download Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/projects/{project_id}/managed-repositories/{repository_id}/download/ Download a managed repository as a ZIP archive
read - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_retrieve_projects_managed_repositories_download '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_retrieve_projects_managed_repositories_download '{}' --json dbt-cloud.dbt_cloud_v3_list_profiles
List Profiles Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/projects/{project_id}/profiles/ List profiles. Note: Profiles are in the process of being rolled out and may not be available for your account yet. Profiles are
read - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_list_profiles '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_list_profiles '{}' --json dbt-cloud.dbt_cloud_v3_create_profile
Create Profile Official dbt Cloud v3 endpoint: POST /api/v3/accounts/{account_id}/projects/{project_id}/profiles/ Create a new profile. Note: Profiles are in the process of being rolled out and may not be available for your account yet. Pro
write - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_create_profile '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_create_profile '{}' --json dbt-cloud.dbt_cloud_v3_retrieve_profile
Retrieve Profile Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/projects/{project_id}/profiles/{id}/ Retrieve a specific profile. Note: Profiles are in the process of being rolled out and may not be available for your acc
read - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_retrieve_profile '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_retrieve_profile '{}' --json dbt-cloud.dbt_cloud_v3_update_profile
Update Profile Official dbt Cloud v3 endpoint: PATCH /api/v3/accounts/{account_id}/projects/{project_id}/profiles/{id}/ Update an existing profile. Note: Profiles are in the process of being rolled out and may not be available for your acco
write - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_update_profile '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_update_profile '{}' --json dbt-cloud.dbt_cloud_v3_delete_profile
Delete Profile Official dbt Cloud v3 endpoint: DELETE /api/v3/accounts/{account_id}/projects/{project_id}/profiles/{id}/ Delete an existing profile. The profile must not be assigned to any deployment environments in order to be deleted. Not
write - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_delete_profile '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_delete_profile '{}' --json dbt-cloud.dbt_cloud_v3_list_repositories
List Repositories Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/projects/{project_id}/repositories/ List repositories for the given project
read - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_list_repositories '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_list_repositories '{}' --json dbt-cloud.dbt_cloud_v3_create_repository
Create Repository Official dbt Cloud v3 endpoint: POST /api/v3/accounts/{account_id}/projects/{project_id}/repositories/ Create a new repository for the given project
write - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_create_repository '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_create_repository '{}' --json dbt-cloud.dbt_cloud_v3_retrieve_repository
Retrieve Repository Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/projects/{project_id}/repositories/{id}/ Get a repository by ID
read - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_retrieve_repository '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_retrieve_repository '{}' --json dbt-cloud.dbt_cloud_v3_update_repository
Update Repository Official dbt Cloud v3 endpoint: POST /api/v3/accounts/{account_id}/projects/{project_id}/repositories/{id}/ Update a repository
write - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_update_repository '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_update_repository '{}' --json dbt-cloud.dbt_cloud_v3_destroy_repository
Destroy Repository Official dbt Cloud v3 endpoint: DELETE /api/v3/accounts/{account_id}/projects/{project_id}/repositories/{id}/ Delete a repository
write - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_destroy_repository '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_destroy_repository '{}' --json dbt-cloud.dbt_cloud_v3_retrieve_scim_configuration
Retrieve SCIM configuration Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/scim-config/ Retrieve the SCIM configuration for the account
read - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_retrieve_scim_configuration '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_retrieve_scim_configuration '{}' --json dbt-cloud.dbt_cloud_v3_create_scim_configuration
Create SCIM configuration Official dbt Cloud v3 endpoint: POST /api/v3/accounts/{account_id}/scim-config/ Create SCIM configuration for the account
write - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_create_scim_configuration '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_create_scim_configuration '{}' --json dbt-cloud.dbt_cloud_v3_retrieve_scim_tokens
Retrieve SCIM tokens Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/scim-config/tokens/ Retrieve all SCIM tokens
read - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_retrieve_scim_tokens '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_retrieve_scim_tokens '{}' --json dbt-cloud.dbt_cloud_v3_create_scim_token
Create SCIM token Official dbt Cloud v3 endpoint: POST /api/v3/accounts/{account_id}/scim-config/tokens/ Create a SCIM token
write - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_create_scim_token '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_create_scim_token '{}' --json dbt-cloud.dbt_cloud_v3_retrieve_scim_token
Retrieve SCIM token Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/scim-config/tokens/{id}/ Retrieve the specified SCIM token
read - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_retrieve_scim_token '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_retrieve_scim_token '{}' --json dbt-cloud.dbt_cloud_v3_delete_scim_token
Delete SCIM token Official dbt Cloud v3 endpoint: DELETE /api/v3/accounts/{account_id}/scim-config/tokens/{id}/ Delete the specified SCIM token
write - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_delete_scim_token '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_delete_scim_token '{}' --json dbt-cloud.dbt_cloud_v3_list_scim_groups
List SCIM Groups Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/scim/v2/Groups List all groups via SCIM
read - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_list_scim_groups '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_list_scim_groups '{}' --json dbt-cloud.dbt_cloud_v3_create_scim_group
Create SCIM Group Official dbt Cloud v3 endpoint: POST /api/v3/accounts/{account_id}/scim/v2/Groups Create a group via SCIM
write - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_create_scim_group '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_create_scim_group '{}' --json dbt-cloud.dbt_cloud_v3_get_scim_group
Get SCIM Group Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/scim/v2/Groups/{group_id} Get a group via SCIM
read - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_get_scim_group '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_get_scim_group '{}' --json dbt-cloud.dbt_cloud_v3_update_scim_group
Update SCIM Group Official dbt Cloud v3 endpoint: PUT /api/v3/accounts/{account_id}/scim/v2/Groups/{group_id} Update a group via SCIM using PUT
write - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_update_scim_group '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_update_scim_group '{}' --json dbt-cloud.dbt_cloud_v3_patch_scim_group
Patch SCIM Group Official dbt Cloud v3 endpoint: PATCH /api/v3/accounts/{account_id}/scim/v2/Groups/{group_id} Update a group via SCIM using PATCH
write - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_patch_scim_group '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_patch_scim_group '{}' --json dbt-cloud.dbt_cloud_v3_delete_scim_group
Delete SCIM Group Official dbt Cloud v3 endpoint: DELETE /api/v3/accounts/{account_id}/scim/v2/Groups/{group_id} Delete a group via SCIM
write - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_delete_scim_group '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_delete_scim_group '{}' --json dbt-cloud.dbt_cloud_v3_get_scim_resource_types
Get SCIM Resource Types Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/scim/v2/ResourceTypes Get Supported SCIM Resource Types
read - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_get_scim_resource_types '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_get_scim_resource_types '{}' --json dbt-cloud.dbt_cloud_v3_get_scim_resource_type_details
Get SCIM Resource Type Details Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/scim/v2/ResourceTypes/{resource_type} Get Supported SCIM Resource Type Details
read - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_get_scim_resource_type_details '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_get_scim_resource_type_details '{}' --json dbt-cloud.dbt_cloud_v3_get_scim_schemas
Get SCIM Schemas Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/scim/v2/Schemas Get Supported SCIM Schemas
read - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_get_scim_schemas '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_get_scim_schemas '{}' --json dbt-cloud.dbt_cloud_v3_get_scim_schema_details
Get SCIM Schema Details Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/scim/v2/Schemas/{schema_uri} Get Supported SCIM Schema Details
read - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_get_scim_schema_details '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_get_scim_schema_details '{}' --json dbt-cloud.dbt_cloud_v3_retrieve_scim_v2_serviceproviderconfig
Retrieve Scim V2 Serviceproviderconfig Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/scim/v2/ServiceProviderConfig Get the SCIM Service Provider Config
read - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_retrieve_scim_v2_serviceproviderconfig '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_retrieve_scim_v2_serviceproviderconfig '{}' --json dbt-cloud.dbt_cloud_v3_list_scim_users
List SCIM Users Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/scim/v2/Users List all users via SCIM
read - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_list_scim_users '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_list_scim_users '{}' --json dbt-cloud.dbt_cloud_v3_create_scim_user
Create SCIM User Official dbt Cloud v3 endpoint: POST /api/v3/accounts/{account_id}/scim/v2/Users Create a user via SCIM
write - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_create_scim_user '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_create_scim_user '{}' --json dbt-cloud.dbt_cloud_v3_get_scim_user
Get SCIM User Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/scim/v2/Users/{user_id} Get a user via SCIM
read - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_get_scim_user '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_get_scim_user '{}' --json dbt-cloud.dbt_cloud_v3_replace_scim_user
Replace SCIM User Official dbt Cloud v3 endpoint: PUT /api/v3/accounts/{account_id}/scim/v2/Users/{user_id} Replace a user via SCIM using PUT
write - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_replace_scim_user '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_replace_scim_user '{}' --json dbt-cloud.dbt_cloud_v3_update_scim_user
Update SCIM User Official dbt Cloud v3 endpoint: PATCH /api/v3/accounts/{account_id}/scim/v2/Users/{user_id} Update a user attribute(s) via SCIM
write - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_update_scim_user '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_update_scim_user '{}' --json dbt-cloud.dbt_cloud_v3_delete_scim_user
Delete SCIM User Official dbt Cloud v3 endpoint: DELETE /api/v3/accounts/{account_id}/scim/v2/Users/{user_id} Delete a user via SCIM. This endpoint will remove the users license from the account.
write - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_delete_scim_user '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_delete_scim_user '{}' --json dbt-cloud.dbt_cloud_v3_list_semantic_layer_credentials
List Semantic Layer Credentials Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/semantic-layer-credentials/
read - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_list_semantic_layer_credentials '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_list_semantic_layer_credentials '{}' --json dbt-cloud.dbt_cloud_v3_list_service_tokens
List Service Tokens Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/service-tokens/
read - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_list_service_tokens '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_list_service_tokens '{}' --json dbt-cloud.dbt_cloud_v3_create_service_token
Create Service Token Official dbt Cloud v3 endpoint: POST /api/v3/accounts/{account_id}/service-tokens/ This endpoint is used to generate a new service token for the account.
write - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_create_service_token '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_create_service_token '{}' --json dbt-cloud.dbt_cloud_v3_retrieve_service_token
Retrieve Service Token Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/service-tokens/{id}/
read - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_retrieve_service_token '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_retrieve_service_token '{}' --json dbt-cloud.dbt_cloud_v3_update_service_token
Update Service Token Official dbt Cloud v3 endpoint: PUT /api/v3/accounts/{account_id}/service-tokens/{id}/
write - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_update_service_token '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_update_service_token '{}' --json dbt-cloud.dbt_cloud_v3_destroy_service_token
Destroy Service Token Official dbt Cloud v3 endpoint: DELETE /api/v3/accounts/{account_id}/service-tokens/{id}/
write - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_destroy_service_token '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_destroy_service_token '{}' --json dbt-cloud.dbt_cloud_v3_retrieve_service_tokens_permission
Retrieve Service Tokens Permission Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/service-tokens/{service_token_id}/permissions/ List permissions of a given ServiceToken for an account.
read - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_retrieve_service_tokens_permission '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_retrieve_service_tokens_permission '{}' --json dbt-cloud.dbt_cloud_v3_list_users
List Users Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/users/ List users for a given account.
read - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_list_users '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_list_users '{}' --json dbt-cloud.dbt_cloud_v3_retrieve_user
Retrieve User Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/users/{id}/
read - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_retrieve_user '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_retrieve_user '{}' --json dbt-cloud.dbt_cloud_v3_list_account_scoped_pats
List Account Scoped PATs Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/users/{user_id}/account-apikeys/
read - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_list_account_scoped_pats '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_list_account_scoped_pats '{}' --json dbt-cloud.dbt_cloud_v3_create_account_scoped_pat
Create Account Scoped PAT Official dbt Cloud v3 endpoint: POST /api/v3/accounts/{account_id}/users/{user_id}/account-apikeys/
write - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_create_account_scoped_pat '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_create_account_scoped_pat '{}' --json dbt-cloud.dbt_cloud_v3_get_account_scoped_pat
Get Account Scoped PAT Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/users/{user_id}/account-apikeys/{id}/
read - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_get_account_scoped_pat '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_get_account_scoped_pat '{}' --json dbt-cloud.dbt_cloud_v3_rotate_account_scoped_pat
Rotate Account Scoped PAT Official dbt Cloud v3 endpoint: POST /api/v3/accounts/{account_id}/users/{user_id}/account-apikeys/{id}/
write - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_rotate_account_scoped_pat '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_rotate_account_scoped_pat '{}' --json dbt-cloud.dbt_cloud_v3_delete_account_scoped_pat
Delete Account Scoped PAT Official dbt Cloud v3 endpoint: DELETE /api/v3/accounts/{account_id}/users/{user_id}/account-apikeys/{id}/
write - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_delete_account_scoped_pat '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_delete_account_scoped_pat '{}' --json dbt-cloud.dbt_cloud_v3_retrieve_webhooks_event
Retrieve Webhooks Event Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/webhooks/event/{event_id} Get a specific event given an event_id. This endpoint is deprecated and should not be called anymore.
read - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_retrieve_webhooks_event '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_retrieve_webhooks_event '{}' --json dbt-cloud.dbt_cloud_v3_list_webhooks_event_receipts
List Webhooks Event Receipts Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/webhooks/event/{event_id}/receipts Get all receipts for a given event id
read - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_list_webhooks_event_receipts '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_list_webhooks_event_receipts '{}' --json dbt-cloud.dbt_cloud_v3_retrieve_webhooks_receipt
Retrieve Webhooks Receipt Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/webhooks/receipt/{receipt_id} Get a specific receipt given its id. This endpoint is deprecated and should not be called anymore.
read - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_retrieve_webhooks_receipt '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_retrieve_webhooks_receipt '{}' --json dbt-cloud.dbt_cloud_v3_retrieve_webhooks_subscription
Retrieve Webhooks Subscription Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/webhooks/subscription/{subscription_id} Get a specific subscription with a subscription id
read - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_retrieve_webhooks_subscription '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_retrieve_webhooks_subscription '{}' --json dbt-cloud.dbt_cloud_v3_update_webhooks_subscription
Update Webhooks Subscription Official dbt Cloud v3 endpoint: PUT /api/v3/accounts/{account_id}/webhooks/subscription/{subscription_id} Edit a subscription given a subscription id
write - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_update_webhooks_subscription '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_update_webhooks_subscription '{}' --json dbt-cloud.dbt_cloud_v3_destroy_webhooks_subscription
Destroy Webhooks Subscription Official dbt Cloud v3 endpoint: DELETE /api/v3/accounts/{account_id}/webhooks/subscription/{subscription_id} Delete a specific subscription
write - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_destroy_webhooks_subscription '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_destroy_webhooks_subscription '{}' --json dbt-cloud.dbt_cloud_v3_list_webhooks_subscription_event_receipt
List Webhooks Subscription Event Receipt Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/webhooks/subscription/{subscription_id}/event/{event_id}/receipt Get the receipt for a given subscription id and event id. This endpo
read - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_list_webhooks_subscription_event_receipt '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_list_webhooks_subscription_event_receipt '{}' --json dbt-cloud.dbt_cloud_v3_list_webhooks_events
List Webhooks Events Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/webhooks/subscription/{subscription_id}/events Get all events for a specific subscription
read - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_list_webhooks_events '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_list_webhooks_events '{}' --json dbt-cloud.dbt_cloud_v3_test_webhooks_subscription
Test Webhooks Subscription Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/webhooks/subscription/{subscription_id}/test Test the client endpoint for a given subscription
read - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_test_webhooks_subscription '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_test_webhooks_subscription '{}' --json dbt-cloud.dbt_cloud_v3_list_webhooks_subscriptions
List Webhooks Subscriptions Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/webhooks/subscriptions Given an account id list all webhook subscriptions
read - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_list_webhooks_subscriptions '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_list_webhooks_subscriptions '{}' --json dbt-cloud.dbt_cloud_v3_create_webhooks_subscription
Create Webhooks Subscription Official dbt Cloud v3 endpoint: POST /api/v3/accounts/{account_id}/webhooks/subscriptions Create a new webhook subscription
write - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_create_webhooks_subscription '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_create_webhooks_subscription '{}' --json dbt-cloud.dbt_cloud_v3_retrieve_adapter_schema
Retrieve Adapter Schema Official dbt Cloud v3 endpoint: GET /api/v3/adapter-schema/ \" Fetch the schema for a given adapter. The schema will include details on available fields for connections and credentials. Notes: - salesforce_v0 is curre
read - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_retrieve_adapter_schema '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_retrieve_adapter_schema '{}' --json dbt-cloud.dbt_cloud_v3_list_user_credentials
List User Credentials Official dbt Cloud v3 endpoint: GET /api/v3/users/{user_id}/credentials/ List the development credentials associated with a given user.
read - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_list_user_credentials '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_list_user_credentials '{}' --json dbt-cloud.dbt_cloud_v3_create_user_credentials
Create User Credentials Official dbt Cloud v3 endpoint: POST /api/v3/users/{user_id}/credentials/ Associate a set of development credentials with a given user.
write - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_create_user_credentials '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_create_user_credentials '{}' --json dbt-cloud.dbt_cloud_v3_get_user_credentials
Get User Credentials Official dbt Cloud v3 endpoint: GET /api/v3/users/{user_id}/credentials/{id}/ Get a development credentials association for a given user.
read - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_get_user_credentials '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_get_user_credentials '{}' --json dbt-cloud.dbt_cloud_v3_update_user_credentials
Update User Credentials Official dbt Cloud v3 endpoint: POST /api/v3/users/{user_id}/credentials/{id}/ Update which development credentials are associated with a specific user.
write - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_update_user_credentials '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_update_user_credentials '{}' --json dbt-cloud.dbt_cloud_v3_delete_user_credentials
Delete User Credentials Official dbt Cloud v3 endpoint: DELETE /api/v3/users/{user_id}/credentials/{id}/ Delete a development credentials / user association.
write - Parameters
- none
kosmo integrations:call dbt-cloud.dbt_cloud_v3_delete_user_credentials '{}' --json kosmo integrations:dbt-cloud dbt_cloud_v3_delete_user_credentials '{}' --json Function Schemas
Use these parameter tables when building CLI payloads without calling integrations:schema first.
dbt-cloud.dbt_cloud_v2_list_accounts 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v2_list_accounts --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v2_retrieve_account 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v2_retrieve_account --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v2_update_account 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v2_update_account --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v2_partial_update_account 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v2_partial_update_account --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v2_list_ssh_tunnels 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v2_list_ssh_tunnels --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v2_create_ssh_tunnel 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v2_create_ssh_tunnel --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v2_retrieve_ssh_tunnel 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v2_retrieve_ssh_tunnel --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v2_update_ssh_tunnel 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v2_update_ssh_tunnel --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v2_destroy_ssh_tunnel 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v2_destroy_ssh_tunnel --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v2_list_environments 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v2_list_environments --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v2_create_environment 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v2_create_environment --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v2_retrieve_environment 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v2_retrieve_environment --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v2_update_environment 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v2_update_environment --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v2_destroy_environment 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v2_destroy_environment --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v2_list_invites 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v2_list_invites --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v2_retrieve_invite 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v2_retrieve_invite --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v2_list_jobs 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v2_list_jobs --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v2_create_job 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v2_create_job --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v2_retrieve_job_artifact 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v2_retrieve_job_artifact --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v2_retry_failed_job 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v2_retry_failed_job --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v2_trigger_job_run 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v2_trigger_job_run --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v2_retrieve_job 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v2_retrieve_job --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v2_update_job 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v2_update_job --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v2_destroy_job 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v2_destroy_job --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v2_list_account_license_allocations 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v2_list_account_license_allocations --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v2_list_notifications 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v2_list_notifications --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v2_create_notification 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v2_create_notification --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v2_retrieve_notification 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v2_retrieve_notification --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v2_update_notification 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v2_update_notification --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v2_destroy_notification 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v2_destroy_notification --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v2_update_license_permissions 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v2_update_license_permissions --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v2_list_projects 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v2_list_projects --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v2_create_project 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v2_create_project --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v2_retrieve_project 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v2_retrieve_project --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v2_update_project 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v2_update_project --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v2_destroy_project 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v2_destroy_project --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v2_list_repositories 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v2_list_repositories --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v2_create_repository 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v2_create_repository --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v2_retrieve_repository 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v2_retrieve_repository --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v2_destroy_repository 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v2_destroy_repository --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v2_list_runs 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v2_list_runs --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v2_retrieve_run 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v2_retrieve_run --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v2_list_run_artifacts 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v2_list_run_artifacts --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v2_retrieve_run_artifact 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v2_retrieve_run_artifact --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v2_cancel_run 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v2_cancel_run --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v2_retrieve_run_failure_details 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v2_retrieve_run_failure_details --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v2_retry_run 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v2_retry_run --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v2_retrieve_run_step 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v2_retrieve_run_step --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v2_list_users 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v2_list_users --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v2_unsubscribe_from_notifications 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v2_unsubscribe_from_notifications --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v2_retrieve_user 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v2_retrieve_user --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v2_update_user 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v2_update_user --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_list_accounts 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_list_accounts --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_assign_user_to_groups 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_assign_user_to_groups --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_list_recent_audit_log_events 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_list_recent_audit_log_events --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_get_recent_audit_log_events_csv 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_get_recent_audit_log_events_csv --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_get_bulk_audit_log_export_status 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_get_bulk_audit_log_export_status --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_submit_bulk_audit_log_export_request 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_submit_bulk_audit_log_export_request --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_download_bulk_audit_log_export 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_download_bulk_audit_log_export --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_list_account_connections 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_list_account_connections --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_create_account_connection 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_create_account_connection --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_retrieve_account_connection 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_retrieve_account_connection --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_update_account_connection 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_update_account_connection --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_delete_account_connection_delete 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_delete_account_connection_delete --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_delete_environment_sao_cache 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_delete_environment_sao_cache --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_list_favorite_asset_responses 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_list_favorite_asset_responses --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_assign_group_permissions 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_assign_group_permissions --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_list_groups 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_list_groups --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_create_group 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_create_group --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_retrieve_group 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_retrieve_group --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_update_group 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_update_group --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_send_user_invites 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_send_user_invites --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_list_ip_restrictions 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_list_ip_restrictions --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_save_ip_restriction 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_save_ip_restriction --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_enable_ip_restrictions 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_enable_ip_restrictions --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_validate_client_ip_against_ip_restrictions 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_validate_client_ip_against_ip_restrictions --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_validate_client_ip_against_ip_restrictions_excluding_specified_ip_rule 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_validate_client_ip_against_ip_restrictions_excluding_specified_ip_rule --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_retrieve_ip_restriction 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_retrieve_ip_restriction --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_update_ip_restriction 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_update_ip_restriction --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_delete_ip_restriction 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_delete_ip_restriction --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_list_license_maps 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_list_license_maps --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_create_license_map 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_create_license_map --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_retrieve_license_map 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_retrieve_license_map --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_update_license_map 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_update_license_map --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_destroy_license_map 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_destroy_license_map --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_list_oauth_configurations 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_list_oauth_configurations --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_create_oauth_configuration 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_create_oauth_configuration --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_retrieve_oauth_configuration 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_retrieve_oauth_configuration --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_update_oauth_configuration 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_update_oauth_configuration --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_destroy_oauth_configuration 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_destroy_oauth_configuration --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_list_projects 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_list_projects --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_create_project 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_create_project --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_retrieve_project 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_retrieve_project --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_update_project 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_update_project --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_destroy_project 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_destroy_project --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_create_adapter 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_create_adapter --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_retrieve_adapter 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_retrieve_adapter --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_update_adapter 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_update_adapter --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_destroy_adapter 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_destroy_adapter --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_list_connections 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_list_connections --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_create_connection 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_create_connection --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_retrieve_connection 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_retrieve_connection --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_update_connection 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_update_connection --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_destroy_connection 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_destroy_connection --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_list_credentials 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_list_credentials --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_create_credentials 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_create_credentials --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_get_credentials 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_get_credentials --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_update_credentials 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_update_credentials --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_partial_update_credentials 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_partial_update_credentials --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_delete_credentials 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_delete_credentials --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_create_projects_environment_variable 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_create_projects_environment_variable --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_update_projects_environment_variable 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_update_projects_environment_variable --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_destroy_projects_environment_variable 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_destroy_projects_environment_variable --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_create_projects_environment_variables_bulk 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_create_projects_environment_variables_bulk --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_update_projects_environment_variables_bulk 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_update_projects_environment_variables_bulk --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_destroy_projects_environment_variables_bulk 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_destroy_projects_environment_variables_bulk --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_retrieve_projects_environment_variables_environment 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_retrieve_projects_environment_variables_environment --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_retrieve_projects_environment_variables_job 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_retrieve_projects_environment_variables_job --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_retrieve_projects_environment_variables_user 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_retrieve_projects_environment_variables_user --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_list_environments 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_list_environments --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_create_environment 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_create_environment --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_retrieve_environment 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_retrieve_environment --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_update_environment 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_update_environment --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_destroy_environment 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_destroy_environment --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_create_extended_attributes 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_create_extended_attributes --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_retrieve_extended_attributes 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_retrieve_extended_attributes --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_update_extended_attributes 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_update_extended_attributes --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_destroy_extended_attributes 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_destroy_extended_attributes --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_list_lineage_integrations 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_list_lineage_integrations --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_create_lineage_integration 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_create_lineage_integration --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_get_lineage_integration 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_get_lineage_integration --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_update_lineage_integration 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_update_lineage_integration --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_delete_lineage_integration 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_delete_lineage_integration --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_list_collections_from_bi_tool 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_list_collections_from_bi_tool --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_list_collections_from_bi_tool_2 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_list_collections_from_bi_tool_2 --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_update_lineage_integration_selections 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_update_lineage_integration_selections --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_create_managed_repository 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_create_managed_repository --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_retrieve_projects_managed_repositories_download 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_retrieve_projects_managed_repositories_download --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_list_profiles 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_list_profiles --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_create_profile 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_create_profile --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_retrieve_profile 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_retrieve_profile --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_update_profile 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_update_profile --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_delete_profile 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_delete_profile --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_list_repositories 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_list_repositories --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_create_repository 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_create_repository --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_retrieve_repository 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_retrieve_repository --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_update_repository 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_update_repository --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_destroy_repository 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_destroy_repository --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_retrieve_scim_configuration 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_retrieve_scim_configuration --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_create_scim_configuration 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_create_scim_configuration --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_retrieve_scim_tokens 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_retrieve_scim_tokens --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_create_scim_token 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_create_scim_token --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_retrieve_scim_token 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_retrieve_scim_token --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_delete_scim_token 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_delete_scim_token --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_list_scim_groups 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_list_scim_groups --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_create_scim_group 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_create_scim_group --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_get_scim_group 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_get_scim_group --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_update_scim_group 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_update_scim_group --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_patch_scim_group 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_patch_scim_group --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_delete_scim_group 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_delete_scim_group --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_get_scim_resource_types 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_get_scim_resource_types --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_get_scim_resource_type_details 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_get_scim_resource_type_details --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_get_scim_schemas 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_get_scim_schemas --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_get_scim_schema_details 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_get_scim_schema_details --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_retrieve_scim_v2_serviceproviderconfig 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_retrieve_scim_v2_serviceproviderconfig --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_list_scim_users 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_list_scim_users --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_create_scim_user 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_create_scim_user --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_get_scim_user 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_get_scim_user --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_replace_scim_user 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_replace_scim_user --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_update_scim_user 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_update_scim_user --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_delete_scim_user 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_delete_scim_user --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_list_semantic_layer_credentials 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_list_semantic_layer_credentials --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_list_service_tokens 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_list_service_tokens --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_create_service_token 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_create_service_token --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_retrieve_service_token 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_retrieve_service_token --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_update_service_token 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_update_service_token --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_destroy_service_token 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_destroy_service_token --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_retrieve_service_tokens_permission 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_retrieve_service_tokens_permission --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_list_users 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_list_users --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_retrieve_user 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_retrieve_user --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_list_account_scoped_pats 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_list_account_scoped_pats --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_create_account_scoped_pat 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_create_account_scoped_pat --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_get_account_scoped_pat 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_get_account_scoped_pat --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_rotate_account_scoped_pat 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_rotate_account_scoped_pat --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_delete_account_scoped_pat 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_delete_account_scoped_pat --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_retrieve_webhooks_event 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_retrieve_webhooks_event --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_list_webhooks_event_receipts 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_list_webhooks_event_receipts --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_retrieve_webhooks_receipt 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_retrieve_webhooks_receipt --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_retrieve_webhooks_subscription 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_retrieve_webhooks_subscription --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_update_webhooks_subscription 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_update_webhooks_subscription --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_destroy_webhooks_subscription 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_destroy_webhooks_subscription --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_list_webhooks_subscription_event_receipt 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_list_webhooks_subscription_event_receipt --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_list_webhooks_events 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_list_webhooks_events --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_test_webhooks_subscription 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_test_webhooks_subscription --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_list_webhooks_subscriptions 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_list_webhooks_subscriptions --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_create_webhooks_subscription 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_create_webhooks_subscription --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_retrieve_adapter_schema 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_retrieve_adapter_schema --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_list_user_credentials 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_list_user_credentials --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_create_user_credentials 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_create_user_credentials --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_get_user_credentials 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_get_user_credentials --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_update_user_credentials 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_update_user_credentials --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
dbt-cloud.dbt_cloud_v3_delete_user_credentials 0 parameters
kosmo integrations:schema dbt-cloud.dbt_cloud_v3_delete_user_credentials --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
Permissions
Headless calls still follow the integration read/write permission policy. Configure read/write defaults with
integrations:configure. Add --force only for trusted automation that should bypass that policy.