ℹ️ These docs are for the free version of Galileo. Documentation for current customers can be found here.
curl --request GET \
--url https://api.galileo.ai/v2/datasets/{dataset_id}/users \
--header 'Galileo-API-Key: <api-key>'
{
"starting_token": 0,
"limit": 100,
"paginated": false,
"next_starting_token": 123,
"collaborators": [
{
"id": "<string>",
"permissions": [],
"role": "owner",
"created_at": "2023-11-07T05:31:56Z",
"user_id": "<string>",
"first_name": "<string>",
"last_name": "<string>",
"email": "<string>"
}
]
}
List the users with which the dataset has been shared.
curl --request GET \
--url https://api.galileo.ai/v2/datasets/{dataset_id}/users \
--header 'Galileo-API-Key: <api-key>'
{
"starting_token": 0,
"limit": 100,
"paginated": false,
"next_starting_token": 123,
"collaborators": [
{
"id": "<string>",
"permissions": [],
"role": "owner",
"created_at": "2023-11-07T05:31:56Z",
"user_id": "<string>",
"first_name": "<string>",
"last_name": "<string>",
"email": "<string>"
}
]
}
Successful Response
The response is of type object
.
Was this page helpful?