data
dbt Cloud MCP, CLI, and Lua Integration for AI Agents
dbt Cloud integration docs for AI agents: MCP gateway setup, dbt Cloud CLI commands, Lua API reference, credentials, and function schemas.dbt Cloud for agents
Credentials can be configured manually in web or CLI hosts.
Use this integration from Lua code mode, the headless integrations CLI, or the KosmoKrator MCP gateway. The same package metadata powers all three surfaces.
Agent Surfaces
Machine-Readable Metadata
Function Catalog
| Function | Type | Parameters | Description |
|---|---|---|---|
dbt-cloud.dbt_cloud_v2_list_accounts | Read read | 0 | List Accounts Official dbt Cloud v2 endpoint: GET /api/v2/accounts/ Deprecated. Consider using the v3 API instead. |
dbt-cloud.dbt_cloud_v2_retrieve_account | Read read | 0 | Retrieve Account Official dbt Cloud v2 endpoint: GET /api/v2/accounts/{account_id}/ Retrieve an Account |
dbt-cloud.dbt_cloud_v2_update_account | Write write | 0 | Update Account Official dbt Cloud v2 endpoint: POST /api/v2/accounts/{account_id}/ Update an account |
dbt-cloud.dbt_cloud_v2_partial_update_account | Write write | 0 | Partial Update Account Official dbt Cloud v2 endpoint: PATCH /api/v2/accounts/{account_id}/ Partial Account update |
dbt-cloud.dbt_cloud_v2_list_ssh_tunnels | Read read | 0 | List SSH Tunnels Official dbt Cloud v2 endpoint: GET /api/v2/accounts/{account_id}/encryptions/ List SSH tunnels |
dbt-cloud.dbt_cloud_v2_create_ssh_tunnel | Write write | 0 | 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 |
dbt-cloud.dbt_cloud_v2_retrieve_ssh_tunnel | Read read | 0 | Retrieve SSH Tunnel Official dbt Cloud v2 endpoint: GET /api/v2/accounts/{account_id}/encryptions/{id}/ Retrieve an SSH tunnel |
dbt-cloud.dbt_cloud_v2_update_ssh_tunnel | Write write | 0 | Update SSH Tunnel Official dbt Cloud v2 endpoint: POST /api/v2/accounts/{account_id}/encryptions/{id}/ Update an SSH tunnel |
dbt-cloud.dbt_cloud_v2_destroy_ssh_tunnel | Write write | 0 | Destroy SSH Tunnel Official dbt Cloud v2 endpoint: DELETE /api/v2/accounts/{account_id}/encryptions/{id}/ Delete an SSH tunnel |
dbt-cloud.dbt_cloud_v2_list_environments | Read read | 0 | List Environments Official dbt Cloud v2 endpoint: GET /api/v2/accounts/{account_id}/environments/ Deprecated. Consider using the v3 API instead. |
dbt-cloud.dbt_cloud_v2_create_environment | Write write | 0 | Create Environment Official dbt Cloud v2 endpoint: POST /api/v2/accounts/{account_id}/environments/ Deprecated. Consider using the v3 API instead. |
dbt-cloud.dbt_cloud_v2_retrieve_environment | Read read | 0 | Retrieve Environment Official dbt Cloud v2 endpoint: GET /api/v2/accounts/{account_id}/environments/{id}/ Deprecated. Consider using the v3 API instead. |
dbt-cloud.dbt_cloud_v2_update_environment | Write write | 0 | Update Environment Official dbt Cloud v2 endpoint: POST /api/v2/accounts/{account_id}/environments/{id}/ Deprecated. Consider using the v3 API instead. |
dbt-cloud.dbt_cloud_v2_destroy_environment | Write write | 0 | Destroy Environment Official dbt Cloud v2 endpoint: DELETE /api/v2/accounts/{account_id}/environments/{id}/ Deprecated. Consider using the v3 API instead. |
dbt-cloud.dbt_cloud_v2_list_invites | Read read | 0 | List Invites Official dbt Cloud v2 endpoint: GET /api/v2/accounts/{account_id}/invites/ |
dbt-cloud.dbt_cloud_v2_retrieve_invite | Read read | 0 | Retrieve Invite Official dbt Cloud v2 endpoint: GET /api/v2/accounts/{account_id}/invites/{id}/ |
dbt-cloud.dbt_cloud_v2_list_jobs | Read read | 0 | List Jobs Official dbt Cloud v2 endpoint: GET /api/v2/accounts/{account_id}/jobs/ List jobs for the given account |
dbt-cloud.dbt_cloud_v2_create_job | Write write | 0 | Create Job Official dbt Cloud v2 endpoint: POST /api/v2/accounts/{account_id}/jobs/ Create a new job. |
dbt-cloud.dbt_cloud_v2_retrieve_job_artifact | Read read | 0 | 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. |
dbt-cloud.dbt_cloud_v2_retry_failed_job | Write write | 0 | 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 |
dbt-cloud.dbt_cloud_v2_trigger_job_run | Write write | 0 | 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 |
dbt-cloud.dbt_cloud_v2_retrieve_job | Read read | 0 | Retrieve Job Official dbt Cloud v2 endpoint: GET /api/v2/accounts/{account_id}/jobs/{id}/ Retrieve the details of a job. |
dbt-cloud.dbt_cloud_v2_update_job | Write write | 0 | Update Job Official dbt Cloud v2 endpoint: POST /api/v2/accounts/{account_id}/jobs/{id}/ Update a job. |
dbt-cloud.dbt_cloud_v2_destroy_job | Write write | 0 | Destroy Job Official dbt Cloud v2 endpoint: DELETE /api/v2/accounts/{account_id}/jobs/{id}/ Delete a job |
dbt-cloud.dbt_cloud_v2_list_account_license_allocations | Read read | 0 | List Account License Allocations Official dbt Cloud v2 endpoint: GET /api/v2/accounts/{account_id}/licenses/ |
dbt-cloud.dbt_cloud_v2_list_notifications | Read read | 0 | List Notifications Official dbt Cloud v2 endpoint: GET /api/v2/accounts/{account_id}/notifications/ List notification configurations |
dbt-cloud.dbt_cloud_v2_create_notification | Write write | 0 | 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 |
dbt-cloud.dbt_cloud_v2_retrieve_notification | Read read | 0 | Retrieve Notification Official dbt Cloud v2 endpoint: GET /api/v2/accounts/{account_id}/notifications/{id}/ Fetch notification configurations |
dbt-cloud.dbt_cloud_v2_update_notification | Write write | 0 | Update Notification Official dbt Cloud v2 endpoint: POST /api/v2/accounts/{account_id}/notifications/{id}/ Update an existing Job Notification configuration. |
dbt-cloud.dbt_cloud_v2_destroy_notification | Write write | 0 | Destroy Notification Official dbt Cloud v2 endpoint: DELETE /api/v2/accounts/{account_id}/notifications/{id}/ |
dbt-cloud.dbt_cloud_v2_update_license_permissions | Write write | 0 | Update License Permissions Official dbt Cloud v2 endpoint: POST /api/v2/accounts/{account_id}/permissions/{id}/ |
dbt-cloud.dbt_cloud_v2_list_projects | Read read | 0 | List Projects Official dbt Cloud v2 endpoint: GET /api/v2/accounts/{account_id}/projects/ Deprecated. Consider using the v3 API instead. |
dbt-cloud.dbt_cloud_v2_create_project | Write write | 0 | Create Project Official dbt Cloud v2 endpoint: POST /api/v2/accounts/{account_id}/projects/ Deprecated. Consider using the v3 API instead. |
dbt-cloud.dbt_cloud_v2_retrieve_project | Read read | 0 | Retrieve Project Official dbt Cloud v2 endpoint: GET /api/v2/accounts/{account_id}/projects/{id}/ Deprecated. Consider using the v3 API instead. |
dbt-cloud.dbt_cloud_v2_update_project | Write write | 0 | Update Project Official dbt Cloud v2 endpoint: POST /api/v2/accounts/{account_id}/projects/{id}/ Deprecated. Consider using the v3 API instead. |
dbt-cloud.dbt_cloud_v2_destroy_project | Write write | 0 | Destroy Project Official dbt Cloud v2 endpoint: DELETE /api/v2/accounts/{account_id}/projects/{id}/ Deprecated. Consider using the v3 API instead. |
dbt-cloud.dbt_cloud_v2_list_repositories | Read read | 0 | List Repositories Official dbt Cloud v2 endpoint: GET /api/v2/accounts/{account_id}/repositories/ Deprecated. Consider using the v3 API instead. |
dbt-cloud.dbt_cloud_v2_create_repository | Write write | 0 | Create Repository Official dbt Cloud v2 endpoint: POST /api/v2/accounts/{account_id}/repositories/ Deprecated. Consider using the v3 API instead. |
dbt-cloud.dbt_cloud_v2_retrieve_repository | Read read | 0 | Retrieve Repository Official dbt Cloud v2 endpoint: GET /api/v2/accounts/{account_id}/repositories/{id}/ Deprecated. Consider using the v3 API instead. |
dbt-cloud.dbt_cloud_v2_destroy_repository | Write write | 0 | Destroy Repository Official dbt Cloud v2 endpoint: DELETE /api/v2/accounts/{account_id}/repositories/{id}/ Deprecated. Consider using the v3 API instead. |
dbt-cloud.dbt_cloud_v2_list_runs | Read read | 0 | List Runs Official dbt Cloud v2 endpoint: GET /api/v2/accounts/{account_id}/runs/ List runs for an account. |
dbt-cloud.dbt_cloud_v2_retrieve_run | Read read | 0 | Retrieve Run Official dbt Cloud v2 endpoint: GET /api/v2/accounts/{account_id}/runs/{id}/ Retrieve details of a run. |
dbt-cloud.dbt_cloud_v2_list_run_artifacts | Read read | 0 | 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. |
dbt-cloud.dbt_cloud_v2_retrieve_run_artifact | Read read | 0 | 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 |
dbt-cloud.dbt_cloud_v2_cancel_run | Write write | 0 | Cancel Run Official dbt Cloud v2 endpoint: POST /api/v2/accounts/{account_id}/runs/{run_id}/cancel/ Cancel a run. |
dbt-cloud.dbt_cloud_v2_retrieve_run_failure_details | Read read | 0 | 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. |
dbt-cloud.dbt_cloud_v2_retry_run | Write write | 0 | 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 |
dbt-cloud.dbt_cloud_v2_retrieve_run_step | Read read | 0 | 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. |
dbt-cloud.dbt_cloud_v2_list_users | Read read | 0 | List Users Official dbt Cloud v2 endpoint: GET /api/v2/accounts/{account_id}/users/ List the Users associated with the specified Account. |
dbt-cloud.dbt_cloud_v2_unsubscribe_from_notifications | Write write | 0 | 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. |
dbt-cloud.dbt_cloud_v2_retrieve_user | Read read | 0 | Retrieve User Official dbt Cloud v2 endpoint: GET /api/v2/users/{id}/ |
dbt-cloud.dbt_cloud_v2_update_user | Write write | 0 | Update User Official dbt Cloud v2 endpoint: POST /api/v2/users/{id}/ |
dbt-cloud.dbt_cloud_v3_list_accounts | Read read | 0 | List Accounts Official dbt Cloud v3 endpoint: GET /api/v3/accounts/ List the Accounts that your API Token is authorized to access. |
dbt-cloud.dbt_cloud_v3_assign_user_to_groups | Write write | 0 | Assign User to Groups Official dbt Cloud v3 endpoint: POST /api/v3/accounts/{account_id}/assign-groups/ |
dbt-cloud.dbt_cloud_v3_list_recent_audit_log_events | Read read | 0 | 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. |
dbt-cloud.dbt_cloud_v3_get_recent_audit_log_events_csv | Read read | 0 | 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. |
dbt-cloud.dbt_cloud_v3_get_bulk_audit_log_export_status | Read read | 0 | 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. |
dbt-cloud.dbt_cloud_v3_submit_bulk_audit_log_export_request | Write write | 0 | 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. |
dbt-cloud.dbt_cloud_v3_download_bulk_audit_log_export | Read read | 0 | 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 |
dbt-cloud.dbt_cloud_v3_list_account_connections | Read read | 0 | List Account Connections Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/connections/ List all Account Connections. |
dbt-cloud.dbt_cloud_v3_create_account_connection | Write write | 0 | Create Account Connection Official dbt Cloud v3 endpoint: POST /api/v3/accounts/{account_id}/connections/ Create a new Account Connection. |
dbt-cloud.dbt_cloud_v3_retrieve_account_connection | Read read | 0 | Retrieve Account Connection Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/connections/{id}/ Retrieve details of a specific Account Connection. |
dbt-cloud.dbt_cloud_v3_update_account_connection | Write write | 0 | Update Account Connection Official dbt Cloud v3 endpoint: PATCH /api/v3/accounts/{account_id}/connections/{id}/ Update an existing Account Connection. |
dbt-cloud.dbt_cloud_v3_delete_account_connection_delete | Write write | 0 | Delete Account Connection Delete Official dbt Cloud v3 endpoint: DELETE /api/v3/accounts/{account_id}/connections/{id}/ Delete an existing Account Connection Delete. |
dbt-cloud.dbt_cloud_v3_delete_environment_sao_cache | Write write | 0 | 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 |
dbt-cloud.dbt_cloud_v3_list_favorite_asset_responses | Read read | 0 | List Favorite Asset Responses Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/favorite-assets/ List all Favorite Asset Responses. |
dbt-cloud.dbt_cloud_v3_assign_group_permissions | Write write | 0 | Assign Group Permissions Official dbt Cloud v3 endpoint: POST /api/v3/accounts/{account_id}/group-permissions/{group_id}/ |
dbt-cloud.dbt_cloud_v3_list_groups | Read read | 0 | List Groups Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/groups/ |
dbt-cloud.dbt_cloud_v3_create_group | Write write | 0 | Create Group Official dbt Cloud v3 endpoint: POST /api/v3/accounts/{account_id}/groups/ |
dbt-cloud.dbt_cloud_v3_retrieve_group | Read read | 0 | Retrieve Group Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/groups/{id}/ |
dbt-cloud.dbt_cloud_v3_update_group | Write write | 0 | Update Group Official dbt Cloud v3 endpoint: POST /api/v3/accounts/{account_id}/groups/{id}/ |
dbt-cloud.dbt_cloud_v3_send_user_invites | Write write | 0 | 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 |
dbt-cloud.dbt_cloud_v3_list_ip_restrictions | Read read | 0 | List IP Restrictions Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/ip-restrictions/ |
dbt-cloud.dbt_cloud_v3_save_ip_restriction | Write write | 0 | 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 |
dbt-cloud.dbt_cloud_v3_enable_ip_restrictions | Write write | 0 | 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. |
dbt-cloud.dbt_cloud_v3_validate_client_ip_against_ip_restrictions | Read read | 0 | 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 |
dbt-cloud.dbt_cloud_v3_validate_client_ip_against_ip_restrictions_excluding_specified_ip_rule | Read read | 0 | 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 |
dbt-cloud.dbt_cloud_v3_retrieve_ip_restriction | Read read | 0 | Retrieve IP Restriction Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/ip-restrictions/{id} |
dbt-cloud.dbt_cloud_v3_update_ip_restriction | Write write | 0 | 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 |
dbt-cloud.dbt_cloud_v3_delete_ip_restriction | Write write | 0 | Delete IP Restriction Official dbt Cloud v3 endpoint: DELETE /api/v3/accounts/{account_id}/ip-restrictions/{id} |
dbt-cloud.dbt_cloud_v3_list_license_maps | Read read | 0 | List License Maps Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/license-maps/ |
dbt-cloud.dbt_cloud_v3_create_license_map | Write write | 0 | Create License Map Official dbt Cloud v3 endpoint: POST /api/v3/accounts/{account_id}/license-maps/ |
dbt-cloud.dbt_cloud_v3_retrieve_license_map | Read read | 0 | Retrieve License Map Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/license-maps/{id}/ |
dbt-cloud.dbt_cloud_v3_update_license_map | Write write | 0 | Update License Map Official dbt Cloud v3 endpoint: POST /api/v3/accounts/{account_id}/license-maps/{id}/ |
dbt-cloud.dbt_cloud_v3_destroy_license_map | Write write | 0 | Destroy License Map Official dbt Cloud v3 endpoint: DELETE /api/v3/accounts/{account_id}/license-maps/{id}/ |
dbt-cloud.dbt_cloud_v3_list_oauth_configurations | Read read | 0 | List OAuthConfigurations Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/oauth-configurations/ List OAuthConfigurations |
dbt-cloud.dbt_cloud_v3_create_oauth_configuration | Write write | 0 | Create OAuthConfiguration Official dbt Cloud v3 endpoint: POST /api/v3/accounts/{account_id}/oauth-configurations/ Create a new OAuthConfiguration |
dbt-cloud.dbt_cloud_v3_retrieve_oauth_configuration | Read read | 0 | Retrieve OAuth Configuration Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/oauth-configurations/{id}/ Retrieve an OAuth Configuration |
dbt-cloud.dbt_cloud_v3_update_oauth_configuration | Write write | 0 | Update OAuth Configuration Official dbt Cloud v3 endpoint: POST /api/v3/accounts/{account_id}/oauth-configurations/{id}/ Update an OAuthConfiguration |
dbt-cloud.dbt_cloud_v3_destroy_oauth_configuration | Write write | 0 | Destroy OAuth Configuration Official dbt Cloud v3 endpoint: DELETE /api/v3/accounts/{account_id}/oauth-configurations/{id}/ Delete an OAuth Configuration |
dbt-cloud.dbt_cloud_v3_list_projects | Read read | 0 | List Projects Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/projects/ List Projects |
dbt-cloud.dbt_cloud_v3_create_project | Write write | 0 | Create Project Official dbt Cloud v3 endpoint: POST /api/v3/accounts/{account_id}/projects/ Create a new Project |
dbt-cloud.dbt_cloud_v3_retrieve_project | Read read | 0 | Retrieve Project Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/projects/{id}/ Retrieve a Project |
dbt-cloud.dbt_cloud_v3_update_project | Write write | 0 | Update Project Official dbt Cloud v3 endpoint: POST /api/v3/accounts/{account_id}/projects/{id}/ Update a Project |
dbt-cloud.dbt_cloud_v3_destroy_project | Write write | 0 | Destroy Project Official dbt Cloud v3 endpoint: DELETE /api/v3/accounts/{account_id}/projects/{id}/ Delete Project |
dbt-cloud.dbt_cloud_v3_create_adapter | Write write | 0 | 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. |
dbt-cloud.dbt_cloud_v3_retrieve_adapter | Read read | 0 | Retrieve Adapter Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/projects/{project_id}/adapters/{id}/ Get an adapter by ID. |
dbt-cloud.dbt_cloud_v3_update_adapter | Write write | 0 | Update Adapter Official dbt Cloud v3 endpoint: POST /api/v3/accounts/{account_id}/projects/{project_id}/adapters/{id}/ Update an adapter. |
dbt-cloud.dbt_cloud_v3_destroy_adapter | Write write | 0 | Destroy Adapter Official dbt Cloud v3 endpoint: DELETE /api/v3/accounts/{account_id}/projects/{project_id}/adapters/{id}/ Delete an adapter. |
dbt-cloud.dbt_cloud_v3_list_connections | Read read | 0 | List Connections Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/projects/{project_id}/connections/ List Connections |
dbt-cloud.dbt_cloud_v3_create_connection | Write write | 0 | Create Connection Official dbt Cloud v3 endpoint: POST /api/v3/accounts/{account_id}/projects/{project_id}/connections/ Create a new Connection |
dbt-cloud.dbt_cloud_v3_retrieve_connection | Read read | 0 | Retrieve Connection Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/projects/{project_id}/connections/{id}/ Retrieve a Connection |
dbt-cloud.dbt_cloud_v3_update_connection | Write write | 0 | Update Connection Official dbt Cloud v3 endpoint: POST /api/v3/accounts/{account_id}/projects/{project_id}/connections/{id}/ Update a Connection |
dbt-cloud.dbt_cloud_v3_destroy_connection | Write write | 0 | Destroy Connection Official dbt Cloud v3 endpoint: DELETE /api/v3/accounts/{account_id}/projects/{project_id}/connections/{id}/ Delete a Connection |
dbt-cloud.dbt_cloud_v3_list_credentials | Read read | 0 | List Credentials Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/projects/{project_id}/credentials/ List the credentials for a given project. |
dbt-cloud.dbt_cloud_v3_create_credentials | Write write | 0 | 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. |
dbt-cloud.dbt_cloud_v3_get_credentials | Read read | 0 | Get Credentials Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/projects/{project_id}/credentials/{id}/ Fetch a specific set of credentials. |
dbt-cloud.dbt_cloud_v3_update_credentials | Write write | 0 | Update Credentials Official dbt Cloud v3 endpoint: POST /api/v3/accounts/{account_id}/projects/{project_id}/credentials/{id}/ Update a set of credentials. |
dbt-cloud.dbt_cloud_v3_partial_update_credentials | Write write | 0 | 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. |
dbt-cloud.dbt_cloud_v3_delete_credentials | Write write | 0 | Delete Credentials Official dbt Cloud v3 endpoint: DELETE /api/v3/accounts/{account_id}/projects/{project_id}/credentials/{id}/ Delete a set of credentials. |
dbt-cloud.dbt_cloud_v3_create_projects_environment_variable | Write write | 0 | Create Projects Environment Variable Official dbt Cloud v3 endpoint: POST /api/v3/accounts/{account_id}/projects/{project_id}/environment-variables/ |
dbt-cloud.dbt_cloud_v3_update_projects_environment_variable | Write write | 0 | Update Projects Environment Variable Official dbt Cloud v3 endpoint: POST /api/v3/accounts/{account_id}/projects/{project_id}/environment-variables/{id}/ |
dbt-cloud.dbt_cloud_v3_destroy_projects_environment_variable | Write write | 0 | Destroy Projects Environment Variable Official dbt Cloud v3 endpoint: DELETE /api/v3/accounts/{account_id}/projects/{project_id}/environment-variables/{id}/ |
dbt-cloud.dbt_cloud_v3_create_projects_environment_variables_bulk | Write write | 0 | Create Projects Environment Variables Bulk Official dbt Cloud v3 endpoint: POST /api/v3/accounts/{account_id}/projects/{project_id}/environment-variables/bulk/ |
dbt-cloud.dbt_cloud_v3_update_projects_environment_variables_bulk | Write write | 0 | Update Projects Environment Variables Bulk Official dbt Cloud v3 endpoint: PUT /api/v3/accounts/{account_id}/projects/{project_id}/environment-variables/bulk/ |
dbt-cloud.dbt_cloud_v3_destroy_projects_environment_variables_bulk | Write write | 0 | Destroy Projects Environment Variables Bulk Official dbt Cloud v3 endpoint: DELETE /api/v3/accounts/{account_id}/projects/{project_id}/environment-variables/bulk/ |
dbt-cloud.dbt_cloud_v3_retrieve_projects_environment_variables_environment | Read read | 0 | Retrieve Projects Environment Variables Environment Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/projects/{project_id}/environment-variables/environment/ |
dbt-cloud.dbt_cloud_v3_retrieve_projects_environment_variables_job | Read read | 0 | Retrieve Projects Environment Variables Job Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/projects/{project_id}/environment-variables/job/ |
dbt-cloud.dbt_cloud_v3_retrieve_projects_environment_variables_user | Read read | 0 | Retrieve Projects Environment Variables User Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/projects/{project_id}/environment-variables/user/ |
dbt-cloud.dbt_cloud_v3_list_environments | Read read | 0 | List Environments Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/projects/{project_id}/environments/ List Environments |
dbt-cloud.dbt_cloud_v3_create_environment | Write write | 0 | Create Environment Official dbt Cloud v3 endpoint: POST /api/v3/accounts/{account_id}/projects/{project_id}/environments/ Create a new Environment |
dbt-cloud.dbt_cloud_v3_retrieve_environment | Read read | 0 | Retrieve Environment Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/projects/{project_id}/environments/{id}/ Retrieve an Environment |
dbt-cloud.dbt_cloud_v3_update_environment | Write write | 0 | 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 |
dbt-cloud.dbt_cloud_v3_destroy_environment | Write write | 0 | Destroy Environment Official dbt Cloud v3 endpoint: DELETE /api/v3/accounts/{account_id}/projects/{project_id}/environments/{id}/ Delete an Environment |
dbt-cloud.dbt_cloud_v3_create_extended_attributes | Write write | 0 | 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. |
dbt-cloud.dbt_cloud_v3_retrieve_extended_attributes | Read read | 0 | 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 |
dbt-cloud.dbt_cloud_v3_update_extended_attributes | Write write | 0 | 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. |
dbt-cloud.dbt_cloud_v3_destroy_extended_attributes | Write write | 0 | 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. |
dbt-cloud.dbt_cloud_v3_list_lineage_integrations | Read read | 0 | List Lineage Integrations Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/projects/{project_id}/integrations/lineage/ |
dbt-cloud.dbt_cloud_v3_create_lineage_integration | Write write | 0 | Create Lineage Integration Official dbt Cloud v3 endpoint: POST /api/v3/accounts/{account_id}/projects/{project_id}/integrations/lineage/ |
dbt-cloud.dbt_cloud_v3_get_lineage_integration | Read read | 0 | Get Lineage Integration Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/projects/{project_id}/integrations/lineage/{id}/ |
dbt-cloud.dbt_cloud_v3_update_lineage_integration | Write write | 0 | Update Lineage Integration Official dbt Cloud v3 endpoint: PATCH /api/v3/accounts/{account_id}/projects/{project_id}/integrations/lineage/{id}/ |
dbt-cloud.dbt_cloud_v3_delete_lineage_integration | Write write | 0 | Delete Lineage Integration Official dbt Cloud v3 endpoint: DELETE /api/v3/accounts/{account_id}/projects/{project_id}/integrations/lineage/{id}/ |
dbt-cloud.dbt_cloud_v3_list_collections_from_bi_tool | Read read | 0 | List collections from BI tool Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/projects/{project_id}/integrations/lineage/{id}/collections/ |
dbt-cloud.dbt_cloud_v3_list_collections_from_bi_tool_2 | Read read | 0 | 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}/ |
dbt-cloud.dbt_cloud_v3_update_lineage_integration_selections | Write write | 0 | Update Lineage Integration Selections Official dbt Cloud v3 endpoint: POST /api/v3/accounts/{account_id}/projects/{project_id}/integrations/lineage/{id}/selections |
dbt-cloud.dbt_cloud_v3_create_managed_repository | Write write | 0 | 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. |
dbt-cloud.dbt_cloud_v3_retrieve_projects_managed_repositories_download | Read read | 0 | 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 |
dbt-cloud.dbt_cloud_v3_list_profiles | Read read | 0 | 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 |
dbt-cloud.dbt_cloud_v3_create_profile | Write write | 0 | 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 |
dbt-cloud.dbt_cloud_v3_retrieve_profile | Read read | 0 | 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 |
dbt-cloud.dbt_cloud_v3_update_profile | Write write | 0 | 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 |
dbt-cloud.dbt_cloud_v3_delete_profile | Write write | 0 | 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 |
dbt-cloud.dbt_cloud_v3_list_repositories | Read read | 0 | List Repositories Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/projects/{project_id}/repositories/ List repositories for the given project |
dbt-cloud.dbt_cloud_v3_create_repository | Write write | 0 | 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 |
dbt-cloud.dbt_cloud_v3_retrieve_repository | Read read | 0 | Retrieve Repository Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/projects/{project_id}/repositories/{id}/ Get a repository by ID |
dbt-cloud.dbt_cloud_v3_update_repository | Write write | 0 | Update Repository Official dbt Cloud v3 endpoint: POST /api/v3/accounts/{account_id}/projects/{project_id}/repositories/{id}/ Update a repository |
dbt-cloud.dbt_cloud_v3_destroy_repository | Write write | 0 | Destroy Repository Official dbt Cloud v3 endpoint: DELETE /api/v3/accounts/{account_id}/projects/{project_id}/repositories/{id}/ Delete a repository |
dbt-cloud.dbt_cloud_v3_retrieve_scim_configuration | Read read | 0 | Retrieve SCIM configuration Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/scim-config/ Retrieve the SCIM configuration for the account |
dbt-cloud.dbt_cloud_v3_create_scim_configuration | Write write | 0 | Create SCIM configuration Official dbt Cloud v3 endpoint: POST /api/v3/accounts/{account_id}/scim-config/ Create SCIM configuration for the account |
dbt-cloud.dbt_cloud_v3_retrieve_scim_tokens | Read read | 0 | Retrieve SCIM tokens Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/scim-config/tokens/ Retrieve all SCIM tokens |
dbt-cloud.dbt_cloud_v3_create_scim_token | Write write | 0 | Create SCIM token Official dbt Cloud v3 endpoint: POST /api/v3/accounts/{account_id}/scim-config/tokens/ Create a SCIM token |
dbt-cloud.dbt_cloud_v3_retrieve_scim_token | Read read | 0 | Retrieve SCIM token Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/scim-config/tokens/{id}/ Retrieve the specified SCIM token |
dbt-cloud.dbt_cloud_v3_delete_scim_token | Write write | 0 | Delete SCIM token Official dbt Cloud v3 endpoint: DELETE /api/v3/accounts/{account_id}/scim-config/tokens/{id}/ Delete the specified SCIM token |
dbt-cloud.dbt_cloud_v3_list_scim_groups | Read read | 0 | List SCIM Groups Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/scim/v2/Groups List all groups via SCIM |
dbt-cloud.dbt_cloud_v3_create_scim_group | Write write | 0 | Create SCIM Group Official dbt Cloud v3 endpoint: POST /api/v3/accounts/{account_id}/scim/v2/Groups Create a group via SCIM |
dbt-cloud.dbt_cloud_v3_get_scim_group | Read read | 0 | Get SCIM Group Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/scim/v2/Groups/{group_id} Get a group via SCIM |
dbt-cloud.dbt_cloud_v3_update_scim_group | Write write | 0 | 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 |
dbt-cloud.dbt_cloud_v3_patch_scim_group | Write write | 0 | 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 |
dbt-cloud.dbt_cloud_v3_delete_scim_group | Write write | 0 | Delete SCIM Group Official dbt Cloud v3 endpoint: DELETE /api/v3/accounts/{account_id}/scim/v2/Groups/{group_id} Delete a group via SCIM |
dbt-cloud.dbt_cloud_v3_get_scim_resource_types | Read read | 0 | Get SCIM Resource Types Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/scim/v2/ResourceTypes Get Supported SCIM Resource Types |
dbt-cloud.dbt_cloud_v3_get_scim_resource_type_details | Read read | 0 | 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 |
dbt-cloud.dbt_cloud_v3_get_scim_schemas | Read read | 0 | Get SCIM Schemas Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/scim/v2/Schemas Get Supported SCIM Schemas |
dbt-cloud.dbt_cloud_v3_get_scim_schema_details | Read read | 0 | 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 |
dbt-cloud.dbt_cloud_v3_retrieve_scim_v2_serviceproviderconfig | Read read | 0 | Retrieve Scim V2 Serviceproviderconfig Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/scim/v2/ServiceProviderConfig Get the SCIM Service Provider Config |
dbt-cloud.dbt_cloud_v3_list_scim_users | Read read | 0 | List SCIM Users Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/scim/v2/Users List all users via SCIM |
dbt-cloud.dbt_cloud_v3_create_scim_user | Write write | 0 | Create SCIM User Official dbt Cloud v3 endpoint: POST /api/v3/accounts/{account_id}/scim/v2/Users Create a user via SCIM |
dbt-cloud.dbt_cloud_v3_get_scim_user | Read read | 0 | Get SCIM User Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/scim/v2/Users/{user_id} Get a user via SCIM |
dbt-cloud.dbt_cloud_v3_replace_scim_user | Write write | 0 | 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 |
dbt-cloud.dbt_cloud_v3_update_scim_user | Write write | 0 | 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 |
dbt-cloud.dbt_cloud_v3_delete_scim_user | Write write | 0 | 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. |
dbt-cloud.dbt_cloud_v3_list_semantic_layer_credentials | Read read | 0 | List Semantic Layer Credentials Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/semantic-layer-credentials/ |
dbt-cloud.dbt_cloud_v3_list_service_tokens | Read read | 0 | List Service Tokens Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/service-tokens/ |
dbt-cloud.dbt_cloud_v3_create_service_token | Write write | 0 | 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. |
dbt-cloud.dbt_cloud_v3_retrieve_service_token | Read read | 0 | Retrieve Service Token Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/service-tokens/{id}/ |
dbt-cloud.dbt_cloud_v3_update_service_token | Write write | 0 | Update Service Token Official dbt Cloud v3 endpoint: PUT /api/v3/accounts/{account_id}/service-tokens/{id}/ |
dbt-cloud.dbt_cloud_v3_destroy_service_token | Write write | 0 | Destroy Service Token Official dbt Cloud v3 endpoint: DELETE /api/v3/accounts/{account_id}/service-tokens/{id}/ |
dbt-cloud.dbt_cloud_v3_retrieve_service_tokens_permission | Read read | 0 | 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. |
dbt-cloud.dbt_cloud_v3_list_users | Read read | 0 | List Users Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/users/ List users for a given account. |
dbt-cloud.dbt_cloud_v3_retrieve_user | Read read | 0 | Retrieve User Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/users/{id}/ |
dbt-cloud.dbt_cloud_v3_list_account_scoped_pats | Read read | 0 | List Account Scoped PATs Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/users/{user_id}/account-apikeys/ |
dbt-cloud.dbt_cloud_v3_create_account_scoped_pat | Write write | 0 | Create Account Scoped PAT Official dbt Cloud v3 endpoint: POST /api/v3/accounts/{account_id}/users/{user_id}/account-apikeys/ |
dbt-cloud.dbt_cloud_v3_get_account_scoped_pat | Read read | 0 | Get Account Scoped PAT Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/users/{user_id}/account-apikeys/{id}/ |
dbt-cloud.dbt_cloud_v3_rotate_account_scoped_pat | Write write | 0 | Rotate Account Scoped PAT Official dbt Cloud v3 endpoint: POST /api/v3/accounts/{account_id}/users/{user_id}/account-apikeys/{id}/ |
dbt-cloud.dbt_cloud_v3_delete_account_scoped_pat | Write write | 0 | Delete Account Scoped PAT Official dbt Cloud v3 endpoint: DELETE /api/v3/accounts/{account_id}/users/{user_id}/account-apikeys/{id}/ |
dbt-cloud.dbt_cloud_v3_retrieve_webhooks_event | Read read | 0 | 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. |
dbt-cloud.dbt_cloud_v3_list_webhooks_event_receipts | Read read | 0 | 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 |
dbt-cloud.dbt_cloud_v3_retrieve_webhooks_receipt | Read read | 0 | 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. |
dbt-cloud.dbt_cloud_v3_retrieve_webhooks_subscription | Read read | 0 | 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 |
dbt-cloud.dbt_cloud_v3_update_webhooks_subscription | Write write | 0 | 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 |
dbt-cloud.dbt_cloud_v3_destroy_webhooks_subscription | Write write | 0 | Destroy Webhooks Subscription Official dbt Cloud v3 endpoint: DELETE /api/v3/accounts/{account_id}/webhooks/subscription/{subscription_id} Delete a specific subscription |
dbt-cloud.dbt_cloud_v3_list_webhooks_subscription_event_receipt | Read read | 0 | 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 |
dbt-cloud.dbt_cloud_v3_list_webhooks_events | Read read | 0 | 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 |
dbt-cloud.dbt_cloud_v3_test_webhooks_subscription | Read read | 0 | 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 |
dbt-cloud.dbt_cloud_v3_list_webhooks_subscriptions | Read read | 0 | List Webhooks Subscriptions Official dbt Cloud v3 endpoint: GET /api/v3/accounts/{account_id}/webhooks/subscriptions Given an account id list all webhook subscriptions |
dbt-cloud.dbt_cloud_v3_create_webhooks_subscription | Write write | 0 | Create Webhooks Subscription Official dbt Cloud v3 endpoint: POST /api/v3/accounts/{account_id}/webhooks/subscriptions Create a new webhook subscription |
dbt-cloud.dbt_cloud_v3_retrieve_adapter_schema | Read read | 0 | 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 |
dbt-cloud.dbt_cloud_v3_list_user_credentials | Read read | 0 | List User Credentials Official dbt Cloud v3 endpoint: GET /api/v3/users/{user_id}/credentials/ List the development credentials associated with a given user. |
dbt-cloud.dbt_cloud_v3_create_user_credentials | Write write | 0 | 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. |
dbt-cloud.dbt_cloud_v3_get_user_credentials | Read read | 0 | 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. |
dbt-cloud.dbt_cloud_v3_update_user_credentials | Write write | 0 | 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. |
dbt-cloud.dbt_cloud_v3_delete_user_credentials | Write write | 0 | Delete User Credentials Official dbt Cloud v3 endpoint: DELETE /api/v3/users/{user_id}/credentials/{id}/ Delete a development credentials / user association. |