cURL
curl --request GET \ --url https://faisalshop.mvp-apps.ae/api/v2/admin/products \ --header 'Authorization: Bearer <token>' \ --header 'X-Tenant-ID: <x-tenant-id>'
{ "data": [ { "id": 123, "name": "<string>", "description": "<string>", "price": 123, "stock": 123, "category_id": 123 } ], "current_page": 123, "per_page": 123, "total": 123 }
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Tenant ID for multi-tenancy
List of products
Show child attributes