Base URL
https://{tenant}.logzi.com/api/product_feed_source/
Every request returns a JSON response. On success result.code == 1, on error result.code == 0. The product feed source API is used to manage the data sources for product feed imports (URL, FTP, API endpoint).
/api/product_feed_source/get
Retrieve a single feed source record by ID.
Query parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
id | int | Feed source ID |
Example request
GET /api/product_feed_source/get?id=1
X-API-KEY: {your_api_key}
/api/product_feed_source/list
Paginated list of feed source records.
Query parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
list_offset | int | Pagination offset (default: 0) | |
list_condition | object | Filter conditions object |
Example request
GET /api/product_feed_source/list?list_offset=0
X-API-KEY: {your_api_key}
/api/product_feed_source/save
Create or update a feed source record.
POST fields — data object
Provide the feed source details in the data object (source name, URL, authentication credentials).
Example request
POST /api/product_feed_source/save
X-API-KEY: {your_api_key}
Content-Type: application/json
{ "data": { "id": 1 } }
/api/product_feed_source/delete
Delete a feed source record.
POST fields — data object
Provide the details of the feed source to delete in the data object.
Example request
POST /api/product_feed_source/delete
X-API-KEY: {your_api_key}
Content-Type: application/json
{ "data": { "id": 1 } }
Create your account now,
pay later!