curl --request GET \
--url https://api.autype.com/api/v1/dev/images \
--header 'X-API-Key: <api-key>'{
"images": [
{
"id": "550e8400-e29b-41d4-a716-446655440000",
"filename": "company-logo.png",
"mimeType": "image/png",
"sizeBytes": 102400,
"refPath": "/temp-image/550e8400-e29b-41d4-a716-446655440000",
"expiresAt": "2024-01-16T12:00:00.000Z",
"createdAt": "2024-01-15T12:00:00.000Z"
}
],
"total": 5
}List all non-expired temporary images for the organization.
curl --request GET \
--url https://api.autype.com/api/v1/dev/images \
--header 'X-API-Key: <api-key>'{
"images": [
{
"id": "550e8400-e29b-41d4-a716-446655440000",
"filename": "company-logo.png",
"mimeType": "image/png",
"sizeBytes": 102400,
"refPath": "/temp-image/550e8400-e29b-41d4-a716-446655440000",
"expiresAt": "2024-01-16T12:00:00.000Z",
"createdAt": "2024-01-15T12:00:00.000Z"
}
],
"total": 5
}