Configurators

Retrieve detailed information about a specific configurator

GET /configurator/{id}

Endpoint

GET /open-api/v1/configurator/{id}

Description

Retrieve detailed information about a specific configurator identified by the unique id.

Parameters

  • id (required): A unique identifier for the configurator you want to retrieve.

Request Example

GET /api/configurators/12345 HTTP/1.1
Host: api.simplio3d.com
Authorization: Bearer {access_token}
Accept: application/json

Response

  • 200 OK: The request was successful, and the configurator details are returned.

  • 404 Not Found: No configurator was found with the specified id.

Response Example

Error Handling

  • Ensure the id provided is correct and exists.

  • Verify authentication token is valid and has adequate permissions.

Notes

  • Make sure to replace {id} with the actual configurator ID you need.

  • Ensure you have the necessary authorization credentials (e.g., Bearer Token) to access this endpoint.

Get configurator by ID

get
/api/open-api/v1/configurator/show

Get a specific configurator by ID.

Authorizations
AuthorizationstringRequired

Enter token in format (Bearer <your_token>)

Responses
chevron-right
200

Successful response

application/json

Schema for configurator data

idintegerOptionalExample: 1
namestringOptionalExample: 3D Product Configurator
configurator_typestringOptionalExample: Advanced
configurator_templatestringOptionalExample: Default Template
configurator_integrationstringOptionalExample: Shopify
created_atstring · date-timeOptionalExample: 2024-02-25T12:00:00Z
updated_atstring · date-timeOptionalExample: 2024-02-25T12:30:00Z
created_bystringOptionalExample: John Doe
get
/api/open-api/v1/configurator/show

Last updated