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/jsonResponse
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
idprovided 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 a specific configurator by ID.
Enter token in format (Bearer <your_token>)
Successful response
Unauthorized
No content
Configurator not found
Internal Server Error
Last updated
Was this helpful?