# \DbtApi
All URIs are relative to */api*
[**dbt_warehouse_exists**](DbtApi.md#dbt_warehouse_exists) | **GET** /w/{workspace}/dbt/warehouse_exists/{name} | check that a dbt warehouse is configured, without resolving it
[**get_dbt_warehouse**](DbtApi.md#get_dbt_warehouse) | **GET** /w/{workspace}/dbt/warehouse/{name} | resolve a dbt warehouse to the connection it names
[**record_dbt_run_progress**](DbtApi.md#record_dbt_run_progress) | **POST** /w/{workspace}/dbt/run_progress | record the running job's settled dbt nodes
## dbt_warehouse_exists
> dbt_warehouse_exists(workspace, name)
check that a dbt warehouse is configured, without resolving it
Job-scoped: needs a job token. For a project bringing its own `profiles.yml`, which names a warehouse only to say where its assets belong and never opens the connection.
### Parameters
**workspace** | **String** | | [required] |
**name** | **String** | | [required] |
### Return type
(empty response body)
### Authorization
[cookieAuth](../README.md#cookieAuth), [bearerAuth](../README.md#bearerAuth)
### HTTP request headers
- **Content-Type**: Not defined
- **Accept**: Not defined
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
## get_dbt_warehouse
> models::DbtWarehouseConnection get_dbt_warehouse(workspace, name)
resolve a dbt warehouse to the connection it names
Job-scoped: needs a job token, because the response carries the warehouse's credentials. dbt is unpermissioned by design, so a running job reaches any warehouse the workspace configures.
### Parameters
**workspace** | **String** | | [required] |
**name** | **String** | | [required] |
### Return type
[**models::DbtWarehouseConnection**](DbtWarehouseConnection.md)
### Authorization
[cookieAuth](../README.md#cookieAuth), [bearerAuth](../README.md#bearerAuth)
### HTTP request headers
- **Content-Type**: Not defined
- **Accept**: application/json
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
## record_dbt_run_progress
> record_dbt_run_progress(workspace, record_dbt_run_progress_request_inner)
record the running job's settled dbt nodes
Job-scoped: needs a job token, and the job is taken from the token rather than the body. For workers with no database access.
### Parameters
**workspace** | **String** | | [required] |
**record_dbt_run_progress_request_inner** | [**Vec<models::RecordDbtRunProgressRequestInner>**](recordDbtRunProgress_request_inner.md) | | [required] |
### Return type
(empty response body)
### Authorization
[cookieAuth](../README.md#cookieAuth), [bearerAuth](../README.md#bearerAuth)
### HTTP request headers
- **Content-Type**: application/json
- **Accept**: Not defined
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)