Products
Pariette API ile ürünlerinizi kolayca listeleyebilir ve arayabilirsiniz. Kategori, durum ve metin araması ile özelleştirilmiş ürün katalogları oluşturun.
1) List Products
Ürünleri listelemek için bu endpointi kullanın.
Request Example
cURL Requestbash
curl --location --request GET 'https://live.pariette.com/api/public/products'
--header 'Authorization: Bearer {YOUR_API_TOKEN}'Response Examplejson
{
"status": "success",
"data": {
"current_page": 1,
"data": [
{
"id": 101,
"title": "iPhone 15 Pro",
"sku": "IP15PRO-128",
"price": 999.00,
"status": "active"
}
],
"total": 50
}
}