Get references
Question
Question Message
API Reference
Datasets
- GETGet datasets
- POSTCreate dataset
- GETGet dataset
- PUTUpdate dataset
- DELDelete dataset
- GETGet dataset files counts
- GETGet dataset files
- PUTUpdate dataset file
- POSTAdd file to dataset
- DELDelete dataset file
- PUTRefresh dataset file list
- PUTRefresh dataset upload file list
- PUTRefresh dataset upload file list
- POSTAdd link to dataset
- POSTUpdate Dataset Configs
- POSTBind dataset to ai
- DELUnbind dataset to ai
- GETGet ai datasets
- POSTAdd Lark files to dataset by appid, app secret and share urls
- GETget integration rules
Datasets
get integration rules
获取指定数据集的集成规则,支持按类型过滤和分页。
GET
/
v1
/
datasets
/
{dataset_id}
/
integrations
Copy
curl --request GET \
--url https://api.gbase.ai/v1/datasets/{dataset_id}/integrations
Copy
{
"items": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"name": "",
"type": "<string>",
"file_list_sync_status": "waiting",
"created_by": {
"user_id": "<string>",
"email": "<string>",
"name": "<string>",
"salt": "<string>",
"picture": "<string>",
"locale": "<string>",
"corporate": false,
"is_independent": false
},
"notification_emails": "<any>",
"sync_interval": -1,
"last_synced_at": "2023-11-07T05:31:56Z",
"file_count": 123,
"detail": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"app_id": "<string>",
"app_secret": "<string>",
"share_urls": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"url": "<string>",
"recursive": true
}
]
}
}
],
"total": 123,
"page": 123,
"size": 123,
"pages": 123
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Query Parameters
Required range:
x >= 1
Required range:
1 <= x <= 1000
Sort order, allowing order by multiple columns, separated by ,
, use -
for reverse order.
Response
200
application/json
Successful Response
The response is of type object
.
Copy
curl --request GET \
--url https://api.gbase.ai/v1/datasets/{dataset_id}/integrations
Copy
{
"items": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"name": "",
"type": "<string>",
"file_list_sync_status": "waiting",
"created_by": {
"user_id": "<string>",
"email": "<string>",
"name": "<string>",
"salt": "<string>",
"picture": "<string>",
"locale": "<string>",
"corporate": false,
"is_independent": false
},
"notification_emails": "<any>",
"sync_interval": -1,
"last_synced_at": "2023-11-07T05:31:56Z",
"file_count": 123,
"detail": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"app_id": "<string>",
"app_secret": "<string>",
"share_urls": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"url": "<string>",
"recursive": true
}
]
}
}
],
"total": 123,
"page": 123,
"size": 123,
"pages": 123
}
Assistant
Responses are generated using AI and may contain mistakes.