File upload
How to build a custom integration in Secoda using a CSV or JSONL file.
1. Create an Integration
Using an API Request
import requests
headers = dict(
Authorization="Bearer <your-api-token>"
)
integration_type = "custom"
response = requests.post(
"https://api.secoda.co/integration/integrations/",
json=dict(type=integration_type, name="My Custom Integration", credentials={}),
headers=headers
).json()
print("Integration ID", response.get("id"))2. Prepare your files
CSV file formatJSONL file format3. Upload your resources
Using an API Request
Last updated
Was this helpful?