GET /v1/reseller_stores/{rst_id}/source_stores/{id}/health

Get source store health

Returns sync health metrics for a source store.

Returns aggregated sync job metrics for the source store, including total jobs, completed/failed/dead counts, and the computed error rate.

The error_rate is calculated as (failed + dead) / total * 100 expressed as a percentage.

Path parameters

id string REQUIRED
rst_id object REQUIRED

Responses

200

404

Request

curl https://api.example.com/v1/reseller_stores/:id/source_stores/:id/health \
  -H "Authorization: Bearer sk_test_..."

Response

200 200 OK
{
  "source_store_id": "example_source_store_id",
  "total_jobs": 0,
  "completed_jobs": 0,
  "failed_jobs": 0,
  "dead_jobs": 0,
  "error_rate": 0,
  "request_id": "example_request_id"
}