Product Feed API

Manage and import product data feeds

Base URL

https://{tenant}.logzi.com/api/product_feed/

Every request returns a JSON response. On success result.code == 1, on failure result.code == 0. The product feed API is used to receive, manage, and bulk import product catalog data from external sources (partners, web stores).

GET /api/product_feed/get

Retrieve a single product feed record by partner or item number.

Query parameters

ParameterTypeRequiredDescription
partner_idintID of the partner
product_partnumberstringItem number of the product

Example request

GET /api/product_feed/get?partner_id=1&product_partnumber=PROD-001
X-API-KEY: {your_api_key}
GET /api/product_feed/list

Paginated list of product feed records.

Query parameters

ParameterTypeRequiredDescription
list_countintMaximum number of records to return
list_offsetintPagination offset (default: 0)
list_conditionobjectObject of filter conditions

Example request

GET /api/product_feed/list?list_offset=0&list_count=100
X-API-KEY: {your_api_key}
POST /api/product_feed/save

Create or update a product feed record.

POST fields — data object

Provide the product feed data (partner, item number, product data) in the data object.

Example request

POST /api/product_feed/save
X-API-KEY: {your_api_key}
Content-Type: application/json

{ "data": { "partner_id": 1, "product_partnumber": "PROD-001" } }
POST /api/product_feed/save_bulk

Save multiple product feed records at once.

POST fields — data array

The data array can hold multiple products' data for bulk recording.

Example request

POST /api/product_feed/save_bulk
X-API-KEY: {your_api_key}
Content-Type: application/json

{ "data": [ { "product_partnumber": "PROD-001" }, { "product_partnumber": "PROD-002" } ] }
POST /api/product_feed/delete

Delete a product feed record.

POST fields — data object

Provide the data of the record to delete in the data object.

Example request

POST /api/product_feed/delete
X-API-KEY: {your_api_key}
Content-Type: application/json

{ "data": { "id": 1 } }

Get in touch with us

Interested in our software? Feel free to write to us!

Need help?

If you can't find the answer and need assistance

Create your account now,
pay later!

Try it free for 3 days, no risk, no obligation!