Option Variations
Get a list of configurator option variations
GET /configurator-option-variations
Retrieve a List of Configurator Option Variations
Endpoint:
GET /open-api/v1/configurator-option-variations
Description: This endpoint retrieves all available variations for a specific configurator option. It provides detailed information about each variation, including attributes and available customization options.
Request Parameters:
configurator_id(required): The unique identifier for the configurator.option_id(required): The unique identifier for the configurator option.
Response Format: Returns a JSON object containing an array of option variations.
Example Response:
{
"status": "success",
"data": [
{
"variation_id": "string",
"name": "string",
"description": "string",
"attributes": {
"color": "string",
"size": "string"
},
"available": true
}
]
}Notes:
Ensure proper authentication headers are included in the request to access the endpoint.
Check the response for the
statuskey to verify if the retrieval was successful.
Get a list of configurator option variations.
Enter token in format (Bearer <your_token>)
The ID of the configurator option for which to retrieve variations.
45List of configurator option variations
Invalid request parameters
Unauthorized request
Forbidden - user does not have permission
Internal server error
Last updated
Was this helpful?