Skip to main content
GET
/
companies
/
{companyId}
/
product-price-overrides
Company Product Price Overrides
curl --request GET \
  --url https://{companyName}.api.joinluminous.com/external/api/v1/companies/{companyId}/product-price-overrides \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": 123,
      "created_at": "2023-03-15T14:30:00Z",
      "updated_at": "2023-03-15T14:30:00Z",
      "status": "active",
      "company_id": 5567,
      "product_id": 567890,
      "price": 42.5,
      "product": {
        "id": 567890,
        "sku": "WIDGET-123",
        "name": "Deluxe Widget",
        "retail_price": 59.99,
        "wholesale_price": 49.99,
        "variant_parent_id": null,
        "is_variant": false
      }
    }
  ],
  "meta": {
    "current_page": 1,
    "from": 1,
    "last_page": 5,
    "per_page": 10,
    "to": 10,
    "total": 50
  }
}

Authorizations

Authorization
string
header
required

Authenticate using a bearer token. To obtain a token, contact [email protected]

Path Parameters

companyId
string
required

The unique identifier of the company

Query Parameters

page
integer
default:1

Page number for pagination (starts at 1)

Required range: x >= 1
limit
integer
default:10

Number of items per page (max 100)

Required range: 1 <= x <= 100

Response

A list of product price overrides for the company

data
object[]
meta
object