curl --request GET \
--url https://api.trieve.ai/api/chunk_group/tracking_id/{tracking_id} \
--header 'Authorization: <api-key>' \
--header 'TR-Dataset: <tr-dataset>'
{
"created_at": "2021-01-01 00:00:00.000",
"dataset_id": "e3e3e3e3-e3e3-e3e3-e3e3-e3e3e3e3e3e3",
"description": "A group of chunks",
"file_id": "e3e3e3e3-e3e3-e3e3-e3e3-e3e3e3e3e3e3",
"id": "e3e3e3e3-e3e3-e3e3-e3e3-e3e3e3e3e3e3",
"name": "Trieve",
"tracking_id": "3",
"updated_at": "2021-01-01 00:00:00.000"
}
Fetch the group with the given tracking id. get_group_by_tracking_id
curl --request GET \
--url https://api.trieve.ai/api/chunk_group/tracking_id/{tracking_id} \
--header 'Authorization: <api-key>' \
--header 'TR-Dataset: <tr-dataset>'
{
"created_at": "2021-01-01 00:00:00.000",
"dataset_id": "e3e3e3e3-e3e3-e3e3-e3e3-e3e3e3e3e3e3",
"description": "A group of chunks",
"file_id": "e3e3e3e3-e3e3-e3e3-e3e3-e3e3e3e3e3e3",
"id": "e3e3e3e3-e3e3-e3e3-e3e3-e3e3e3e3e3e3",
"name": "Trieve",
"tracking_id": "3",
"updated_at": "2021-01-01 00:00:00.000"
}
The dataset id or tracking_id to use for the request. We assume you intend to use an id if the value is a valid uuid.
The tracking id of the group to fetch.
JSON body representing the group with the given tracking id
The response is of type object
.
Was this page helpful?