curl --request GET \
--url https://api.getcargo.io/v1/storage/datasets/list \
--header 'Authorization: Bearer <token>'{
"datasets": [
{
"uuid": "<string>",
"workspaceUuid": "<string>",
"slug": "<string>",
"config": {
"kind": "<string>",
"connectorUuid": "<string>"
},
"createdAt": "<string>",
"updatedAt": "<string>",
"deletedAt": "<string>"
}
]
}List all datasets in the workspace
curl --request GET \
--url https://api.getcargo.io/v1/storage/datasets/list \
--header 'Authorization: Bearer <token>'{
"datasets": [
{
"uuid": "<string>",
"workspaceUuid": "<string>",
"slug": "<string>",
"config": {
"kind": "<string>",
"connectorUuid": "<string>"
},
"createdAt": "<string>",
"updatedAt": "<string>",
"deletedAt": "<string>"
}
]
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Filter datasets by connector identifier.
Successful response
List of datasets.
Show child attributes
Was this page helpful?