GET
/
tenant
/
{env_id}
/
{tenant}
/
snapshots
Get Snapshots
curl --request GET \
  --url https://client-api.hotglue.xyz/tenant/{env_id}/{tenant}/snapshots \
  --header 'x-api-key: <api-key>'
[
{
"file": "contacts_abcd.snapshot.parquet",
"last_updated": "2024-06-02T12:34:56Z"
},
{
"file": "companies_abcd.snapshot.parquet",
"last_updated": "2024-06-02T14:34:56Z"
}
]

Authorizations

x-api-key
string
header
required

Path Parameters

env_id
string
required

ID of environment

tenant
string
required

ID of tenant

Query Parameters

file
string

Name of the specific snapshot file to retrieve. If provided, the response will include the base64 encoded file contents. If not provided, a list of downloadable snapshot files will be returned.

folder
string

Folder within the snapshots directory to list files from. If not provided, all files will be returned.

Response

200 - application/json

Successful response

The response is of type object[].