curl --request POST \
--url https://api.getcargo.io/v1/storage/records/list \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"modelUuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"fromIngest": true,
"limit": 50,
"offset": 4503599627370495
}
'{
"records": [
{}
]
}List records for a model
curl --request POST \
--url https://api.getcargo.io/v1/storage/records/list \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"modelUuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"fromIngest": true,
"limit": 50,
"offset": 4503599627370495
}
'{
"records": [
{}
]
}Documentation Index
Fetch the complete documentation index at: https://docs.getcargo.ai/llms.txt
Use this file to discover all available pages before exploring further.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Request body schema.
Model identifier.
^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-4[0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12})$When true, returns records from ingest cache.
Maximum number of records to return.
1 <= x <= 100Number of records to skip.
0 <= x <= 9007199254740991Sorting options.
Show child attributes
Successful response
Listed records.
Show child attributes
Was this page helpful?