Data sources
Get data source testing results
Audit Logs
Data sources
Data diffs
Explore
BI
- GETList all integrations
- POSTCreate a DBT BI integration
- PUTUpdate a DBT BI integration
- POSTCreate a Hightouch integration
- PUTUpdate a Hightouch integration
- POSTCreate a Looker integration
- PUTUpdate a Looker integration
- POSTCreate a Mode Analytics integration
- PUTUpdate a Mode Analytics integration
- POSTCreate a Power BI integration
- PUTRename a Power BI integration
- POSTCreate a Tableau integration
- PUTUpdate a Tableau integration
- GETGet an integration
- DELRemove an integration
- GETSync a BI integration
Data sources
Get data source testing results
GET
/
api
/
v1
/
data_sources
/
test
/
{job_id}
curl --request GET \
--url https://app.datafold.com/api/v1/data_sources/test/{job_id} \
--header 'Authorization: <api-key>'
{
"id": 123,
"results": [
{
"result": "<any>",
"status": "needs_confirmation",
"step": "connection"
}
],
"status": "needs_confirmation"
}
Authorizations
Use the 'Authorization' header with the format 'Key <api-key>'
Path Parameters
Response
200
application/json
Successful Response
The response is of type object
.
curl --request GET \
--url https://app.datafold.com/api/v1/data_sources/test/{job_id} \
--header 'Authorization: <api-key>'
{
"id": 123,
"results": [
{
"result": "<any>",
"status": "needs_confirmation",
"step": "connection"
}
],
"status": "needs_confirmation"
}