LogicTrade API
  1. Configurator
LogicTrade API
  • Authentication
  • Pagination
  • Rate limits
  • Error codes
  • Changelog
  • Configuration Service
  • Endpoints
    • Authentication
      • Introspection
    • Customer
      • Authenticate a customer user account
      • List all customers
      • Retrieve a customer by id
      • Create a customer
      • Update a customer
      • Remove the customer
    • Supplier
      • List all suppliers
      • Retrieve a supplier by id
      • Create a supplier
      • Update a supplier
      • Remove the supplier
    • Product
      • Product
        • List all products
        • Retrieve a product by id
        • Create a product
        • Remove the products
        • Update a product
        • Search products
        • List all variants
        • Retrieve a variant by id
        • Create a variant
        • Update a variant
        • Delete a variant
      • Groups
        • List all product groups
      • Discount
        • List all discounts for products
        • Get all discounts for product by id
        • List all discounts for customers
        • Get all discounts for a customer by id
      • Stock
        • Get stock for products
        • Search stock for products
      • Prices
        • Get product prices
      • Descriptions
        • Get the descriptions for a product
      • References
        • Get the product references
      • Compositions
        • Get product compositions
      • Configurator
        • List all configuration steps
          GET
        • List all configuration step values
          GET
        • Get configuration step value image
          GET
        • List all product configuration steps
          GET
    • Quote
      • List all quotes
      • Retrieve a quote by id
      • Create a quote
      • Update a quote
    • Sales order
      • Lines
        • Create an order line
        • Retrieve an order line by id
        • Update an order line
        • Delete an order line
      • List all orders
      • Retrieve an orders by id
      • Create an order
      • Update an order
    • Invoice
      • List all invoices
      • Retrieve a invoice by id
      • Create a invoice
      • Update a invoice
    • Delivery
      • Get list of orders that can be delivered
      • Update the order with delivery information
    • Purchase order
      • List all purchase orders
      • Retrieve a purchase orders by id
      • Create a purchase order
      • Update a purchase order
  1. Configurator

List all configuration steps

GET
/rest/v1/products/configurator/options
List all configuration steps

Request

Authorization
Add parameter in header
api-key
Example:
api-key: ********************
Query Params

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.logictrade.cloud/rest/v1/products/configurator/options?pageSize=100&pageNumber=1&modifiedAfter&customFields=true' \
--header 'api-key: <api-key>'

Responses

🟢200Success
application/json
Body

Example
{
    "id": 0,
    "description": "string",
    "barcode": "string",
    "code": "string",
    "kind": 0,
    "typeDescription": "string",
    "configurationQuantity": 0,
    "isInternal": true,
    "repeatCount": 0,
    "endDate": "2019-08-24T14:15:22Z",
    "webshop": true,
    "webshopStartDate": "2019-08-24T14:15:22Z",
    "webshopEndDate": "2019-08-24T14:15:22Z",
    "content": {
        "plain": "string",
        "html": "string"
    },
    "customFields": [
        {
            "configurationStepId": "string",
            "name": "string",
            "externNumber": "string",
            "code": "string",
            "description": "string",
            "value": "string",
            "required": true,
            "group": {
                "id": 0,
                "code": "string",
                "name": "string"
            }
        }
    ]
}
Modified at 2025-09-08 08:37:32
Previous
Get product compositions
Next
List all configuration step values