Skip to main content
GET
/
price-levels
/
{levelId}
Price Level
curl --request GET \
  --url https://{companyName}.api.joinluminous.com/external/api/v1/price-levels/{levelId} \
  --header 'Authorization: Bearer <token>'
{
  "id": 123,
  "created_at": "2023-03-15T14:30:00Z",
  "updated_at": "2023-03-15T14:30:00Z",
  "status": "active",
  "name": "Wholesale",
  "type": "percentage",
  "percent_increase": 15.5
}

Authorizations

Authorization
string
header
required

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

Path Parameters

levelId
string
required

The unique identifier of the price level

Response

Price level details

id
number

Unique identifier for the price level

Example:

123

created_at
string<date-time>

When the price level was created

Example:

"2023-03-15T14:30:00Z"

updated_at
string<date-time>

When the price level was last updated

Example:

"2023-03-15T14:30:00Z"

status
enum<string>

Status of the price level

Available options:
active,
inactive
Example:

"active"

name
string

Name of the price level

Example:

"Wholesale"

type
string

Type of the price level

Example:

"percentage"

percent_increase
number<float>

Percentage increase (or decrease) for this price level

Example:

15.5