Product Details
Get detailed information of a product
HTTP Request
[GET] /api/v6/products/{id}
Query Parameters
Fields
| Fields | Type | Description |
|---|---|---|
| id | integer | Identifier |
| category_id | integer | Product category |
| origin_id | integer | Origin |
| unit_id | integer | Unit of measurement |
| manufacturer_id | integer | Manufacturer |
| services | bool | Is service product |
| saleoff_price | float | Online discount |
| created_at | timestamp | Creation date |
| updated_at | timestamp | Modification date |
| featured_image | string | Product logo |
| product_name | string | Product name |
| product_code | string | Product code |
| last_active | timestamp | Last active time |
| description | string | Description |
| cover_price | float | Retail price |
| price_wholesale | float | Wholesale price |
| discount | float | Product discount |
| short_description | string | Short description |
| discount_wholesale | float | Wholesale discount |
| price_online | float | Online selling price |
| discount_online | float | Online selling discount |
| price_average_in | float | Purchase price |
| discount_in | float | Purchase discount |
| product_vat | float | Product VAT |
| images | string[] | Product images |
| custom_fields | object | Data definition |
Example
HTTP Request
GET api/v6/products/4?fields=product_name HTTP/1.1
Host: example.getflycrm.com
Content-Type: application/json
Status
200 OK
Response
{
"id": 4,
"product_name": "TEST PRODUCT API"
}