Retrieve dbt Model Details
Returns a dbt Model details if a valid identifier was provided.
Request schema
Path parameters
modelId
stringrequired
The unique identifier for the dbt Model within the Fivetran system.
example:
Header parameters
Authorization
stringrequired
HTTP: basicAuth
HTTP AuthorizationScheme: basic
Accept
string
default:
example:
Http + 1.1
GET
https://api.fivetran.com/v1/dbt/models/model_id
GET /v1/dbt/models/model_id HTTP/1.1
Accept: application/json
Authorization: Basic REPLACE_BASIC_AUTH
Host: api.fivetran.com
Responses
200
Successful response
Successful response schema
code
stringrequired
Response status code
example:
message
string
Response status text
example:
data
objectrequired
id
stringrequired
The unique identifier for the dbt Model within the Fivetran system.
example:
scheduled
boolean
Boolean specifying whether the model is selected for execution in the dashboard
example:
model_name
string
The dbt Model name.
example:
{
"code": "Success",
"message": "Operation performed.",
"data": {
"id": "model_id",
"scheduled": true,
"model_name": "dbt_model_name"
}
}