Skip to main content
GET
/
{locale}
/
shop
/
sync-status
curl -X GET "https://staging-api.loyalty.lt/en/shop/sync-status" \
  -H "X-API-Key: your_api_key" \
  -H "X-API-Secret: your_api_secret"
{
  "success": true,
  "code": 200,
  "request_id": "550e8400-e29b-41d4-a716-446655440000",
  "data": {
    "total_offers": 150,
    "active_offers": 120,
    "expired_offers": 30,
    "last_sync": "2024-12-08T14:30:00Z"
  }
}

Sync Status

Get the current synchronization status for partner’s offers and products.

Endpoint

GET /{locale}/shop/sync-status

Authentication

X-API-Key
string
required
API key
X-API-Secret
string
required
API secret

Response

data
object
curl -X GET "https://staging-api.loyalty.lt/en/shop/sync-status" \
  -H "X-API-Key: your_api_key" \
  -H "X-API-Secret: your_api_secret"
{
  "success": true,
  "code": 200,
  "request_id": "550e8400-e29b-41d4-a716-446655440000",
  "data": {
    "total_offers": 150,
    "active_offers": 120,
    "expired_offers": 30,
    "last_sync": "2024-12-08T14:30:00Z"
  }
}