List All dbt Projects
Returns a list of all dbt Projects within your Fivetran account.
Request schema
Query parameters
group_id
string
The unique identifier for the Group within the Fivetran system.
example:
cursor
string
Paging cursor, read more about pagination
example:
limit
integer
Number of records to fetch per page. Accepts a number in the range 1..1000; the default value is 100.
format:
example:
Header parameters
Authorization
stringrequired
HTTP: basicAuth
HTTP AuthorizationScheme: basic
Accept
string
default:
example:
Http + 1.1
GET
https://api.fivetran.com/v1/dbt/projects
GET /v1/dbt/projects?group_id=group_id&cursor=ghyYGuYg8gg8G&limit=100 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
items
arrayrequired
The collection of return items
id
stringrequired
The unique identifier for the dbt Model within the Fivetran system.
example:
created_at
stringrequired
The timestamp when dbt project was created.
format:
example:
created_by_id
stringrequired
The unique identifier for the User within the Fivetran system.
example:
group_id
stringrequired
The unique identifier for the Group within the Fivetran system.
example:
nextCursor
string
The value of the cursor parameter for the next page
example:
{
"code": "Success",
"message": "Operation performed.",
"data": {
"items": [
{
"id": "project_id",
"created_at": "2023-01-02T00:00:00.743708Z",
"created_by_id": "user_id",
"group_id": "group_id"
}
],
"nextCursor": "cursor_value"
}
}