Secoda Docs
Sign up
Book a demo
Community
Search…
What is Secoda?
Getting Started
Secoda for Business Users
Integrations
Features
User Management
Change notifications
Self-Hosted Secoda Guide
Secoda API
Authentication
Managing invitations
Tables
Dictionary Terms
Collections
DBT Integration
FAQ
Policies
Security & Compliance
System Status
Powered By
GitBook
DBT Integration
How to manage dbt with the Secoda API
Extract From Manifest File
Endpoint
https://api.secoda.co/integration/dbt/manifest/
Method
POST
Sample Response
{
"message"
:
"Successfully ran extraction for dbt"
}
Python Example
import
requests
headers
=
{
"Authorization"
:
"Bearer <Your Key>"
}
response
=
requests
.
post
(
"<https://api.secoda.co/integration/dbt/manifest/>"
,
files
=
{
"manifest_file"
:
open
(
"manifest.json"
,
"rb"
)},
data
=
{
"integration_id"
:
"km1dhjql3xgxy9p8"
},
headers
=
headers
)
print
(
response
.
json
())
Previous
Collections
Next
FAQ
Last modified
3mo ago
Copy link