List
List the Merchants Syncs
Path Parameters
- merchantId int64 required
The Merchant's
id
Query Parameters
- cursor string required
The cursor
- limit integer required
Default value:
10
The maximum number of results
- sort string required
Default value:
+id
The sorting,
+id
or-id
- 200
- 401
Found
- application/json
- Schema
- Example (from schema)
Schema
- first string nullable required
The link to the first page.
items object[] required
An array of objects.
Array [created_at date-time requiredThe create date-time.
has_errors boolean requiredWhether the sync encountered errors.
id int64 requiredThe unique id.
merchant_id int64 requiredThe parent Merchant id.
modified_at date-time requiredThe last modified date-time.
products_created int32 requiredThe number of created products
products_deleted int32 requiredThe number of deleted products
products_errored int32 requiredThe number of errored products
products_skipped int32 requiredThe number of skipped products
products_total int32 requiredThe total number of processed products, including the skipped and errored.
products_updated int32 requiredThe number of update products
started_at date-time requiredThe started date-time.
stopped_at date-time requiredThe stopped date-time.
]- last string nullable required
The link to the last page.
- next string nullable required
The link to the next page or
null
if there's no page. - prev string nullable required
The link to the previous page or
null
if there's no page. - self string nullable required
The link to the current page.
{
"first": "string",
"items": [
{
"created_at": "2023-08-16T14:24:18.765Z",
"has_errors": true,
"id": 0,
"merchant_id": 0,
"modified_at": "2023-08-16T14:24:18.765Z",
"products_created": 0,
"products_deleted": 0,
"products_errored": 0,
"products_skipped": 0,
"products_total": 0,
"products_updated": 0,
"started_at": "2023-08-16T14:24:18.765Z",
"stopped_at": "2023-08-16T14:24:18.765Z"
}
],
"last": "string",
"next": "string",
"prev": "string",
"self": "string"
}
Authentication Failure