3D Assets

Get a list of configurator 3D asset models.

GET /configurator-assets-models

Description

Retrieves a list of configurator asset models. Each model represents the configuration details of a specific asset.

URL

GET /configurator-assets-models

Query Parameters

  • page (optional): The page number of results to retrieve.

  • limit (optional): The number of results per page.

  • sort (optional): The field by which to sort the results.

Response

  • 200 OK: A successful response will return a JSON object containing:

    • models: An array of configurator asset models.

    • total: The total number of available models.

    • page: The current page number.

    • limit: The number of results per page as requested.

    Example Request

    GET /configurator-assets-models?page=1&limit=10&sort=name

    Example Response

    {
      "models": [
        {
          "id": "123",
          "name": "Model A",
          "description": "Description of Model A"
        },
        {
          "id": "124",
          "name": "Model B",
          "description": "Description of Model B"
        }
      ],
      "total": 25,
      "page": 1,
      "limit": 10
    }

    Error Responses

    • 400 Bad Request: Invalid request parameters.

    • 500 Internal Server Error: A server error occurred while processing the request.

NOTE: Ensure you have the necessary authorization credentials (e.g., Bearer Token) to access this endpoint which is taken from the 'Share' tab encryption token found at the bottom of the page.

Fetch all configurator 3D asset models

get

Get a list of configurator 3D asset models.

Authorizations
Responses
200
Successful response
application/json
get
GET /api/open-api/v1/configurator-assets-models HTTP/1.1
Host: app.simplio3d.com
Authorization: Bearer JWT
Accept: */*
{
  "data": [
    {
      "id": 1,
      "name": "Car Model",
      "models_url": "https://example.com/models/car.fbx",
      "preview_models_url": "https://example.com/previews/car.png",
      "models_orientation": "XYZ",
      "meshes_list": [
        "body",
        "wheels",
        "lights"
      ],
      "category_id": 5,
      "status": "active",
      "created_at": "2024-02-25T12:00:00Z",
      "updated_at": "2024-02-25T12:30:00Z",
      "created_by": "John Doe"
    }
  ]
}

Last updated

Was this helpful?