v1
latestOpenAPI 3.1.02026-07-2414103.5 MBGet All Integration Tables
This endpoint lists all the tables created under a certain S3 integration or shared with it.
get/v3/batch/s3-connector/list-tables
Path parameters
integration_namestring required
The name of the client's integration
Query parameters
delivery_methodstring
Must be one of 'bucket_access', 'google_bucket_access' or 'snowflake'.
Response
200
Example response
{
"shared_tables": [
{
"location": "s3://dummy_bucket/12345678/sharing_integration/global_daily",
"table_name": "global_daily"
}
],
"tables": [
{
"columns": {
"names": [
"domain"
]
},
"granularity": "daily",
"location": "s3://dummy_bucket/11122233/my_integration/site_visits",
"metrics": [
"all_traffic_visits"
],
"table_name": "site_visits",
"vtable": "traffic_and_engagement"
}
]
}