Get Feed by ID
GET /v1/feeds/{feedId}Request
Header
Required
Description
Parameter
Type
Required
Description
Example Request
curl -X GET https://api.violet.io/v1/feeds/cat_a1b2c3d4-e5f6-7890-abcd-ef1234567890 \
-H 'Authorization: Bearer msk_12345abc11094a44800d84017c593e22'Response
{
"feed_id": "cat_a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"merchant_id": 12345,
"merchant_name": "Acme Electronics",
"feed_name": "Summer 2024 Product Catalog",
"description": "Complete product catalog with seasonal items",
"feed_type": "CATALOG",
"status": "ACTIVE",
"upload_method": "FILE_UPLOAD",
"original_filename": "catalog.xml",
"file_size_bytes": 2048576,
"total_products": 1250,
"date_created": "2024-03-15T10:30:00Z",
"date_last_processed": "2024-03-15T10:45:00Z",
"date_last_modified": "2024-03-15T10:45:00Z",
"processing_stats": {
"total_products": 1250,
"successful_products": 1200,
"failed_products": 50,
"processing_duration_ms": 45000,
"processing_started_at": "2024-03-15T10:30:05Z",
"processing_completed_at": "2024-03-15T10:45:00Z"
},
"errors": [
{
"error_code": "MISSING_PRICE",
"message": "Price missing for product ID: ABC123",
"field": "ABC123",
"severity": "WARNING",
"timestamp": "2024-03-15T10:35:00Z",
"product_id": "ABC123"
}
],
"configuration": {
"auto_approve_products": true,
"enable_inventory_tracking": true,
"low_stock_threshold": 10,
"feed_processing_notifications": true,
"duplicate_product_handling": "MERGE",
"price_validation_enabled": true,
"refresh_frequency_minutes": 360,
"retention_policy_days": 90,
"default_currency": "USD",
"default_country": "US",
"default_language": "en_US",
"timezone": "America/New_York",
"removal_detection": {
"enabled": true,
"action": "ARCHIVE",
"bulk_removal_threshold_percent": 50,
"grace_period_versions": 0,
"notify_on_removal": true,
"notify_removal_threshold": 1
}
}
}Response Fields
Field
Type
Description
Processing Stats
Field
Type
Description
Errors
Field
Type
Description
Configuration
Field
Type
Description
Removal Detection
Field
Type
Description
Error Responses
Last updated
Was this helpful?

